diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml deleted file mode 100644 index bd76799c..00000000 --- a/.github/workflows/main.yaml +++ /dev/null @@ -1,69 +0,0 @@ -name: Test - -on: - push: - branches: - - 3.* - - main - pull_request: - -permissions: - contents: read - -jobs: - test: - name: Test - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - submodules: "true" - fetch-depth: 2 - - name: Setup python - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0 - with: - python-version: "3.12" - cache: "pip" - - name: Configure dpkg/apt - uses: abbbi/github-actions-tune@81fb919e588c20b7ab52b2cac097d2efd765c714 # v1 - - name: Disable triggers from postgresql-common - run: sudo sed -i '/postgresql-common/d' /var/lib/dpkg/triggers/File - - name: Install system deps - run: | - sudo apt-get update - sudo apt-get install -y hunspell hunspell-el gettext language-pack-el locales-all - - name: Install python deps - run: | - python -m pip install -r requirements.txt - - name: List packages and versions - run: | - pip list - pospell --version - powrap --version - - name: Get list with updated .po archives (PR-only) - if: github.event_name == 'pull_request' - id: changed-po-files - uses: tj-actions/changed-files@2d756ea4c53f7f6b397767d8723b3a10a9f35bf2 # v44 - with: - files: | - **/*.po - - name: Create list with .po files to check - id: po-files-to-check - env: - PO_FILES_TO_CHECK: ${{ steps.changed-po-files.conclusion == 'skipped' && '**/*.po' || steps.changed-po-files.outputs.all_changed_files }} - run: | - echo "po_files_to_check=$PO_FILES_TO_CHECK" >> $GITHUB_OUTPUT - echo "any_po_files_to_check=`test -n \"$PO_FILES_TO_CHECK\" && echo true || echo false`" >> $GITHUB_OUTPUT - - name: Show outputs of the previous steps for debuging purposes - env: - CHANGED_PO_FILES: ${{ toJson(steps.changed-po-files) }} - PO_FILES_TO_CHECK: ${{ toJson(steps.po-files-to-check) }} - run: | - echo "steps.changed-po-files=$PO_FILES_TO_CHECK" - echo "steps.po-files-to-change.$CHANGED_PO_FILES" - - name: Powrap - if: steps.po-files-to-check.outputs.any_po_files_to_check == 'true' - run: powrap --check --quiet ${{ steps.po-files-to-check.outputs.po_files_to_check }} - - name: Pospell - if: steps.po-files-to-check.outputs.any_po_files_to_check == 'true' - run: python scripts/check_spelling.py ${{ steps.po-files-to-check.outputs.po_files_to_check }} diff --git a/.github/workflows/precommit.yaml b/.github/workflows/precommit.yaml new file mode 100644 index 00000000..18c35af6 --- /dev/null +++ b/.github/workflows/precommit.yaml @@ -0,0 +1,29 @@ +name: Run pre-commit + +on: + push: + branches: + - 3.* + - main + pull_request: + +jobs: + test: + name: Run pre-commit.ci + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + with: + submodules: "true" + fetch-depth: 2 + - name: Setup python + uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 + with: + python-version: "3.x" + - name: Install system deps + run: | + sudo apt-get update + sudo apt-get install -y hunspell hunspell-el gettext language-pack-el locales-all + - uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 + - uses: pre-commit-ci/lite-action@9d882e7a565f7008d4faf128f27d1cb6503d4ebf # v1.0.2 + if: always() diff --git a/.gitignore b/.gitignore index 68bc17f9..c0ed3bfb 100644 --- a/.gitignore +++ b/.gitignore @@ -158,3 +158,9 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ + +locales/ +.potodo/ + +# VS Code +.vscode/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..3c8975fc --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "cpython"] + path = cpython + url = https://github.com/python/cpython diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 00000000..959a57ea --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,28 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: 2c9f875913ee60ca25ce70243dc24d5b6415598c # v4.6.0 + hooks: + - id: file-contents-sorter + files: "dictionaries/main.txt" + args: ["--unique"] + - id: trailing-whitespace + - id: check-yaml + - id: end-of-file-fixer + + - repo: https://git.afpy.org/AFPy/powrap + rev: df2a0a54804a6146cc9fbffb77464d4b5fe24f41 # v1.0.1 + hooks: + - id: powrap + + - repo: https://git.afpy.org/AFPy/pospell + rev: 8b753bde26fe612ba397a4b4aafa7a0560402805 # v1.3 + hooks: + - id: pospell + args: + - "--language=el_GR" + - "--personal-dict=dictionaries/main.txt" + + - repo: https://github.com/sphinx-contrib/sphinx-lint + rev: ce6d7aeab24d60b6119dbad180540bf3c9ff31da # v0.9.1 + hooks: + - id: sphinx-lint diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 00000000..145d5f71 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,24 @@ +# .readthedocs.yml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +build: + os: ubuntu-22.04 + tools: + python: "3" + + commands: + - python -m pip install -r requirements.txt + - make + - mkdir -p _readthedocs/html/ + - cp -r cpython/Doc/build/html/* _readthedocs/html/ + +python: + install: + - requirements: requirements.txt + +submodules: + include: all diff --git a/Makefile b/Makefile index 21d8782e..a11d757e 100644 --- a/Makefile +++ b/Makefile @@ -23,9 +23,10 @@ # .po files. CPYTHON_CURRENT_COMMIT := 9cbde7c6ce6f7b93301a37f03dfa0c0d45e00a39 -CPYTHON_PATH := /home/tpetkos/github.com/python/cpython/ +CPYTHON_PATH := ./cpython -LANGUAGE := gr +LANGUAGE := el +TRANSLATION_BRANCH := main BRANCH := 3.12 EXCLUDED := whatsnew/ c-api/ @@ -36,7 +37,7 @@ UPSTREAM := https://github.com/python/cpython PYTHON := $(shell which python3) MODE := html -POSPELL_TMP_DIR := .pospell/ +POSPELL_TMP_DIR := .pospell JOBS := auto # Detect OS @@ -58,7 +59,6 @@ endif .PHONY: all all: ensure_prerequisites - git -C $(CPYTHON_PATH) checkout $(CPYTHON_CURRENT_COMMIT) mkdir -p locales/$(LANGUAGE)/LC_MESSAGES/ $(CP_CMD) -u --parents *.po */*.po locales/$(LANGUAGE)/LC_MESSAGES/ $(MAKE) -C $(CPYTHON_PATH)/Doc/ \ @@ -70,7 +70,6 @@ all: ensure_prerequisites -D latex_elements.inputenc= \ -D latex_elements.fontenc=' \ $(MODE) - git -C $(CPYTHON_PATH) checkout - @echo "Build success, open file://$(abspath $(CPYTHON_PATH))/Doc/build/html/index.html or run 'make serve' to see them." @@ -83,10 +82,7 @@ ensure_prerequisites: @if ! [ -d $(CPYTHON_PATH) ]; then \ echo "Building the translation requires a cpython clone."; \ echo "Please provide the path to a clone using the CPYTHON_PATH variable."; \ - echo "(Currently CPYTHON_PATH is $(CPYTHON_PATH)."; \ - echo "So you may want to run:"; \ - echo ""; \ - echo " git clone $(UPSTREAM) $(CPYTHON_PATH)"; \ + echo "(Currently CPYTHON_PATH is $(CPYTHON_PATH).)"; \ exit 1; \ fi @if [ -n "$$(git -C $(CPYTHON_PATH) status --porcelain)" ]; then \ @@ -95,16 +91,16 @@ ensure_prerequisites: exit 1; \ fi @if ! (blurb help >/dev/null 2>&1 && sphinx-build --version >/dev/null 2>&1); then \ - git -C $(CPYTHON_PATH) checkout $(BRANCH); \ echo "You're missing dependencies, please enable a venv and install:"; \ echo ""; \ - echo " python -m pip install -r requirements.txt -r $(CPYTHON_PATH)/Doc/requirements.txt"; \ + echo " python -m pip install -r requirements.txt"; \ exit 1; \ fi + .PHONY: serve serve: - $(MAKE) -C $(CPYTHON_PATH)/Doc/ serve + $(PYTHON) -c "import os, webbrowser; webbrowser.open('file://' + os.path.realpath('cpython/Doc/build/html/index.html'))" .PHONY: progress @@ -123,7 +119,7 @@ wrap: ensure_prerequisites @echo "Verify wrapping" powrap --check --quiet *.po **/*.po -SRCS = $(shell git diff --name-only $(BRANCH) | grep '.po$$') +SRCS = $(shell git diff --name-only $(TRANSLATION_BRANCH) | grep '.po$$') # foo/bar.po => $(POSPELL_TMP_DIR)/foo/bar.po.out DESTS = $(addprefix $(POSPELL_TMP_DIR)/,$(addsuffix .out,$(SRCS))) diff --git a/README.md b/README.md index 500912fc..d9528a5d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ΣΗΜΕΙΩΣΗ ΓΙΑ ΤΗΝ ΑΔΕΙΑ ΧΡΗΣΗΣ ΤΩΝ ΜΕΤΑΦΡΑΣΕΩΝ Ο οδηγός χρήσης της Python συντηρείται από ένα παγκόσμιο δίκτυο -εθελοντών. +εθελοντών. Αυτό το έργο πρότζεκτ αποτελεί μια συνεργασία ανάμεσα σε εθελοντές μεταφραστές και της ομάδας python-docs-gr. Το παρόν έγγραφο καθορίζει τα δικαιώματα και τις ευθύνες diff --git a/TRANSLATORS b/TRANSLATORS index a0f1f214..c5d64d8e 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -2,4 +2,4 @@ Georgios Zisopoulos Lysandros Nikolaou Theofanis Petkos Panagiotis Skias -Dimitrios Papadopoulos \ No newline at end of file +Dimitrios Papadopoulos diff --git a/c-api/buffer.po b/c-api/buffer.po index 4ee16cbf..3f0fdc38 100644 --- a/c-api/buffer.po +++ b/c-api/buffer.po @@ -382,48 +382,34 @@ msgid "" "flags below it." msgstr "" -#: c-api/buffer.rst:306 -#: c-api/buffer.rst:331 +#: c-api/buffer.rst:306 c-api/buffer.rst:331 msgid "Request" msgstr "" -#: c-api/buffer.rst:306 -#: c-api/buffer.rst:331 +#: c-api/buffer.rst:306 c-api/buffer.rst:331 msgid "shape" msgstr "" -#: c-api/buffer.rst:306 -#: c-api/buffer.rst:331 +#: c-api/buffer.rst:306 c-api/buffer.rst:331 msgid "strides" msgstr "" -#: c-api/buffer.rst:306 -#: c-api/buffer.rst:331 +#: c-api/buffer.rst:306 c-api/buffer.rst:331 msgid "suboffsets" msgstr "" -#: c-api/buffer.rst:286 -#: c-api/buffer.rst:308 -#: c-api/buffer.rst:312 -#: c-api/buffer.rst:333 -#: c-api/buffer.rst:337 -#: c-api/buffer.rst:341 -#: c-api/buffer.rst:345 -#: c-api/buffer.rst:347 +#: c-api/buffer.rst:286 c-api/buffer.rst:308 c-api/buffer.rst:312 +#: c-api/buffer.rst:333 c-api/buffer.rst:337 c-api/buffer.rst:341 +#: c-api/buffer.rst:345 c-api/buffer.rst:347 msgid "yes" msgstr "" -#: c-api/buffer.rst:333 -#: c-api/buffer.rst:335 +#: c-api/buffer.rst:333 c-api/buffer.rst:335 msgid "if needed" msgstr "" -#: c-api/buffer.rst:288 -#: c-api/buffer.rst:308 -#: c-api/buffer.rst:312 -#: c-api/buffer.rst:337 -#: c-api/buffer.rst:341 -#: c-api/buffer.rst:345 +#: c-api/buffer.rst:288 c-api/buffer.rst:308 c-api/buffer.rst:312 +#: c-api/buffer.rst:337 c-api/buffer.rst:341 c-api/buffer.rst:345 #: c-api/buffer.rst:347 msgid "NULL" msgstr "" @@ -443,8 +429,7 @@ msgstr "" msgid "contig" msgstr "" -#: c-api/buffer.rst:314 -#: c-api/buffer.rst:347 +#: c-api/buffer.rst:314 c-api/buffer.rst:347 msgid "C" msgstr "" @@ -485,19 +470,15 @@ msgstr "" msgid "format" msgstr "" -#: c-api/buffer.rst:335 -#: c-api/buffer.rst:339 -#: c-api/buffer.rst:343 +#: c-api/buffer.rst:335 c-api/buffer.rst:339 c-api/buffer.rst:343 msgid "U" msgstr "" -#: c-api/buffer.rst:337 -#: c-api/buffer.rst:345 +#: c-api/buffer.rst:337 c-api/buffer.rst:345 msgid "0" msgstr "" -#: c-api/buffer.rst:339 -#: c-api/buffer.rst:347 +#: c-api/buffer.rst:339 c-api/buffer.rst:347 msgid "1 or 0" msgstr "" diff --git a/c-api/bytes.po b/c-api/bytes.po index 8436cd04..80a3d0a2 100644 --- a/c-api/bytes.po +++ b/c-api/bytes.po @@ -100,8 +100,7 @@ msgstr "" msgid "``%c``" msgstr "" -#: c-api/bytes.rst:72 -#: c-api/bytes.rst:93 +#: c-api/bytes.rst:72 c-api/bytes.rst:93 msgid "int" msgstr "" diff --git a/c-api/call.po b/c-api/call.po index 368f6ef7..7574569d 100644 --- a/c-api/call.po +++ b/c-api/call.po @@ -287,10 +287,7 @@ msgstr "" msgid ":c:func:`PyObject_Call`" msgstr "" -#: c-api/call.rst:204 -#: c-api/call.rst:208 -#: c-api/call.rst:214 -#: c-api/call.rst:224 +#: c-api/call.rst:204 c-api/call.rst:208 c-api/call.rst:214 c-api/call.rst:224 msgid "``PyObject *``" msgstr "" @@ -306,10 +303,7 @@ msgstr "" msgid ":c:func:`PyObject_CallNoArgs`" msgstr "" -#: c-api/call.rst:206 -#: c-api/call.rst:210 -#: c-api/call.rst:214 -#: c-api/call.rst:218 +#: c-api/call.rst:206 c-api/call.rst:210 c-api/call.rst:214 c-api/call.rst:218 #: c-api/call.rst:220 msgid "---" msgstr "" @@ -358,8 +352,7 @@ msgstr "" msgid ":c:func:`PyObject_CallMethodObjArgs`" msgstr "" -#: c-api/call.rst:218 -#: c-api/call.rst:220 +#: c-api/call.rst:218 c-api/call.rst:220 msgid "obj + name" msgstr "" @@ -375,8 +368,7 @@ msgstr "" msgid ":c:func:`PyObject_Vectorcall`" msgstr "" -#: c-api/call.rst:224 -#: c-api/call.rst:226 +#: c-api/call.rst:224 c-api/call.rst:226 msgid "vectorcall" msgstr "" @@ -404,12 +396,8 @@ msgid "" "no named arguments are needed, *kwargs* can be *NULL*." msgstr "" -#: c-api/call.rst:250 -#: c-api/call.rst:272 -#: c-api/call.rst:304 -#: c-api/call.rst:337 -#: c-api/call.rst:358 -#: c-api/call.rst:405 +#: c-api/call.rst:250 c-api/call.rst:272 c-api/call.rst:304 c-api/call.rst:337 +#: c-api/call.rst:358 c-api/call.rst:405 msgid "" "Return the result of the call on success, or raise an exception and return " "*NULL* on failure." diff --git a/c-api/capsule.po b/c-api/capsule.po index 2500ffda..3e2f66df 100644 --- a/c-api/capsule.po +++ b/c-api/capsule.po @@ -178,8 +178,7 @@ msgstr "" msgid "Set the context pointer inside *capsule* to *context*." msgstr "" -#: c-api/capsule.rst:142 -#: c-api/capsule.rst:159 +#: c-api/capsule.rst:142 c-api/capsule.rst:159 msgid "" "Return ``0`` on success. Return nonzero and set an exception on failure." msgstr "" diff --git a/c-api/concrete.po b/c-api/concrete.po index b10e156d..982c836e 100644 --- a/c-api/concrete.po +++ b/c-api/concrete.po @@ -75,8 +75,7 @@ msgstr "" msgid "Other Objects" msgstr "" -#: c-api/concrete.rst:58 -#: c-api/concrete.rst:80 +#: c-api/concrete.rst:58 c-api/concrete.rst:80 msgid "object" msgstr "" diff --git a/c-api/exceptions.po b/c-api/exceptions.po index f7607838..e4804e04 100644 --- a/c-api/exceptions.po +++ b/c-api/exceptions.po @@ -251,9 +251,7 @@ msgid "" "returns ``NULL``." msgstr "" -#: c-api/exceptions.rst:228 -#: c-api/exceptions.rst:249 -#: c-api/exceptions.rst:267 +#: c-api/exceptions.rst:228 c-api/exceptions.rst:249 c-api/exceptions.rst:267 msgid ":ref:`Availability `: Windows." msgstr "" @@ -992,8 +990,7 @@ msgid "" "all the variables:" msgstr "" -#: c-api/exceptions.rst:1146 -#: c-api/exceptions.rst:1191 +#: c-api/exceptions.rst:1146 c-api/exceptions.rst:1191 msgid "C Name" msgstr "" @@ -1001,8 +998,7 @@ msgstr "" msgid "Python Name" msgstr "" -#: c-api/exceptions.rst:1146 -#: c-api/exceptions.rst:1191 +#: c-api/exceptions.rst:1146 c-api/exceptions.rst:1191 msgid "Notes" msgstr "" @@ -1014,8 +1010,7 @@ msgstr "" msgid ":exc:`BaseException`" msgstr "" -#: c-api/exceptions.rst:1017 -#: c-api/exceptions.rst:1065 +#: c-api/exceptions.rst:1017 c-api/exceptions.rst:1065 #: c-api/exceptions.rst:1077 msgid "[1]_" msgstr "" @@ -1610,13 +1605,11 @@ msgstr "" msgid "strerror (C function)" msgstr "" -#: c-api/exceptions.rst:654 -#: c-api/exceptions.rst:669 +#: c-api/exceptions.rst:654 c-api/exceptions.rst:669 msgid "module" msgstr "" -#: c-api/exceptions.rst:654 -#: c-api/exceptions.rst:669 +#: c-api/exceptions.rst:654 c-api/exceptions.rst:669 msgid "signal" msgstr "" @@ -1624,8 +1617,7 @@ msgstr "" msgid "SIGINT (C macro)" msgstr "" -#: c-api/exceptions.rst:654 -#: c-api/exceptions.rst:669 +#: c-api/exceptions.rst:654 c-api/exceptions.rst:669 msgid "KeyboardInterrupt (built-in exception)" msgstr "" diff --git a/c-api/function.po b/c-api/function.po index 8430dad8..b05a610f 100644 --- a/c-api/function.po +++ b/c-api/function.po @@ -99,8 +99,7 @@ msgid "" "must be ``Py_None`` or a tuple." msgstr "" -#: c-api/function.rst:109 -#: c-api/function.rst:123 +#: c-api/function.rst:109 c-api/function.rst:123 msgid "Raises :exc:`SystemError` and returns ``-1`` on failure." msgstr "" diff --git a/c-api/init.po b/c-api/init.po index d2999654..9fcd351f 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -681,17 +681,13 @@ msgid "" "not modify its value." msgstr "" -#: c-api/init.rst:520 -#: c-api/init.rst:580 -#: c-api/init.rst:827 +#: c-api/init.rst:520 c-api/init.rst:580 c-api/init.rst:827 msgid "" "This function should not be called before :c:func:`Py_Initialize`, otherwise " "it returns ``NULL``." msgstr "" -#: c-api/init.rst:523 -#: c-api/init.rst:583 -#: c-api/init.rst:830 +#: c-api/init.rst:523 c-api/init.rst:583 c-api/init.rst:830 msgid "It now returns ``NULL`` if called before :c:func:`Py_Initialize`." msgstr "" @@ -803,8 +799,7 @@ msgid "" "required after calling :c:func:`Py_Initialize`." msgstr "" -#: c-api/init.rst:753 -#: c-api/init.rst:815 +#: c-api/init.rst:753 c-api/init.rst:815 msgid "" "Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a :c:expr:" "`wchar_*` string." @@ -1246,8 +1241,7 @@ msgid "" "ensues." msgstr "" -#: c-api/init.rst:1133 -#: c-api/init.rst:1415 +#: c-api/init.rst:1133 c-api/init.rst:1415 msgid "" "Calling this function from a thread when the runtime is finalizing will " "terminate the thread, even if the thread was not created by Python. You can " @@ -1466,8 +1460,7 @@ msgstr "" msgid "See also :c:func:`PyEval_GetFrame`." msgstr "" -#: c-api/init.rst:1288 -#: c-api/init.rst:1297 +#: c-api/init.rst:1288 c-api/init.rst:1297 msgid "*tstate* must not be ``NULL``." msgstr "" @@ -2111,8 +2104,7 @@ msgstr "" msgid ":c:data:`PyTrace_CALL`" msgstr "" -#: c-api/init.rst:1871 -#: c-api/init.rst:1882 +#: c-api/init.rst:1871 c-api/init.rst:1882 msgid "Always :c:data:`Py_None`." msgstr "" @@ -2141,8 +2133,7 @@ msgstr "" msgid ":c:data:`PyTrace_C_CALL`" msgstr "" -#: c-api/init.rst:1878 -#: c-api/init.rst:1880 +#: c-api/init.rst:1878 c-api/init.rst:1880 msgid "Function object being called." msgstr "" @@ -2233,8 +2224,7 @@ msgstr "" msgid "See also the :func:`sys.setprofile` function." msgstr "" -#: c-api/init.rst:1963 -#: c-api/init.rst:1989 +#: c-api/init.rst:1963 c-api/init.rst:1989 msgid "The caller must hold the :term:`GIL`." msgstr "" @@ -2489,8 +2479,7 @@ msgid "" "not be used in new code." msgstr "" -#: c-api/init.rst:495 -#: c-api/init.rst:570 +#: c-api/init.rst:495 c-api/init.rst:570 msgid "Py_SetProgramName()" msgstr "" @@ -2502,39 +2491,31 @@ msgstr "" msgid "modules (in module sys)" msgstr "" -#: c-api/init.rst:589 -#: c-api/init.rst:615 +#: c-api/init.rst:589 c-api/init.rst:615 msgid "path (in module sys)" msgstr "" -#: c-api/init.rst:589 -#: c-api/init.rst:1056 -#: c-api/init.rst:1682 +#: c-api/init.rst:589 c-api/init.rst:1056 c-api/init.rst:1682 msgid "module" msgstr "" -#: c-api/init.rst:1587 -#: c-api/init.rst:1682 +#: c-api/init.rst:1587 c-api/init.rst:1682 msgid "builtins" msgstr "" -#: c-api/init.rst:1587 -#: c-api/init.rst:1682 +#: c-api/init.rst:1587 c-api/init.rst:1682 msgid "__main__" msgstr "" -#: c-api/init.rst:1587 -#: c-api/init.rst:1682 +#: c-api/init.rst:1587 c-api/init.rst:1682 msgid "sys" msgstr "" -#: c-api/init.rst:589 -#: c-api/init.rst:615 +#: c-api/init.rst:589 c-api/init.rst:615 msgid "search" msgstr "" -#: c-api/init.rst:589 -#: c-api/init.rst:615 +#: c-api/init.rst:589 c-api/init.rst:615 msgid "path" msgstr "" @@ -2546,8 +2527,7 @@ msgstr "" msgid "PySys_SetArgvEx (C function)" msgstr "" -#: c-api/init.rst:1647 -#: c-api/init.rst:1700 +#: c-api/init.rst:1647 c-api/init.rst:1700 msgid "Py_FinalizeEx (C function)" msgstr "" @@ -2555,8 +2535,7 @@ msgstr "" msgid "Py_Initialize()" msgstr "" -#: c-api/init.rst:467 -#: c-api/init.rst:723 +#: c-api/init.rst:467 c-api/init.rst:723 msgid "main()" msgstr "" @@ -2584,8 +2563,7 @@ msgstr "" msgid "Py_SetPath()" msgstr "" -#: c-api/init.rst:700 -#: c-api/init.rst:714 +#: c-api/init.rst:700 c-api/init.rst:714 msgid "version (in module sys)" msgstr "" diff --git a/c-api/init_config.po b/c-api/init_config.po index e321a525..5fc09f62 100644 --- a/c-api/init_config.po +++ b/c-api/init_config.po @@ -110,8 +110,7 @@ msgstr "" msgid "*index* must be greater than or equal to ``0``." msgstr "" -#: c-api/init_config.rst:128 -#: c-api/init_config.rst:544 +#: c-api/init_config.rst:128 c-api/init_config.rst:544 msgid "Structure fields:" msgstr "" @@ -304,8 +303,7 @@ msgstr "" msgid "See the :term:`locale encoding`." msgstr "" -#: c-api/init_config.rst:329 -#: c-api/init_config.rst:684 +#: c-api/init_config.rst:329 c-api/init_config.rst:684 msgid "Default: ``1`` in Python config, ``0`` in isolated config." msgstr "" @@ -332,8 +330,7 @@ msgid "" ":ref:`Python Development Mode `: see :c:member:`PyConfig.dev_mode`." msgstr "" -#: c-api/init_config.rst:693 -#: c-api/init_config.rst:1188 +#: c-api/init_config.rst:693 c-api/init_config.rst:1188 msgid "Default: ``-1`` in Python mode, ``0`` in isolated mode." msgstr "" @@ -373,14 +370,10 @@ msgid "" "Windows specific code." msgstr "" -#: c-api/init_config.rst:632 -#: c-api/init_config.rst:706 -#: c-api/init_config.rst:829 -#: c-api/init_config.rst:897 -#: c-api/init_config.rst:971 -#: c-api/init_config.rst:1083 -#: c-api/init_config.rst:1152 -#: c-api/init_config.rst:1239 +#: c-api/init_config.rst:632 c-api/init_config.rst:706 +#: c-api/init_config.rst:829 c-api/init_config.rst:897 +#: c-api/init_config.rst:971 c-api/init_config.rst:1083 +#: c-api/init_config.rst:1152 c-api/init_config.rst:1239 msgid "Default: ``0``." msgstr "" @@ -452,13 +445,11 @@ msgstr "" msgid "Functions to preinitialize Python:" msgstr "" -#: c-api/init_config.rst:375 -#: c-api/init_config.rst:384 +#: c-api/init_config.rst:375 c-api/init_config.rst:384 msgid "Preinitialize Python from *preconfig* preconfiguration." msgstr "" -#: c-api/init_config.rst:380 -#: c-api/init_config.rst:389 +#: c-api/init_config.rst:380 c-api/init_config.rst:389 msgid "*preconfig* must not be ``NULL``." msgstr "" @@ -546,8 +537,7 @@ msgstr "" msgid "Copy the wide character string *str* into ``*config_str``." msgstr "" -#: c-api/init_config.rst:467 -#: c-api/init_config.rst:482 +#: c-api/init_config.rst:467 c-api/init_config.rst:482 #: c-api/init_config.rst:505 msgid ":ref:`Preinitialize Python ` if needed." msgstr "" @@ -672,12 +662,9 @@ msgid "" "that :data:`sys.argv` always exists and is never empty." msgstr "" -#: c-api/init_config.rst:585 -#: c-api/init_config.rst:605 -#: c-api/init_config.rst:722 -#: c-api/init_config.rst:941 -#: c-api/init_config.rst:1060 -#: c-api/init_config.rst:1091 +#: c-api/init_config.rst:585 c-api/init_config.rst:605 +#: c-api/init_config.rst:722 c-api/init_config.rst:941 +#: c-api/init_config.rst:1060 c-api/init_config.rst:1091 #: c-api/init_config.rst:1112 msgid "Default: ``NULL``." msgstr "" @@ -724,10 +711,8 @@ msgstr "" msgid ":data:`sys.base_exec_prefix`." msgstr "" -#: c-api/init_config.rst:599 -#: c-api/init_config.rst:715 -#: c-api/init_config.rst:958 -#: c-api/init_config.rst:1044 +#: c-api/init_config.rst:599 c-api/init_config.rst:715 +#: c-api/init_config.rst:958 c-api/init_config.rst:1044 msgid "Part of the :ref:`Python Path Configuration ` output." msgstr "" @@ -763,8 +748,7 @@ msgstr "" msgid "stdin is always opened in buffered mode." msgstr "" -#: c-api/init_config.rst:652 -#: c-api/init_config.rst:1271 +#: c-api/init_config.rst:652 c-api/init_config.rst:1271 msgid "Default: ``1``." msgstr "" @@ -1034,8 +1018,7 @@ msgstr "" msgid "Set by the :envvar:`PYTHONHOME` environment variable." msgstr "" -#: c-api/init_config.rst:923 -#: c-api/init_config.rst:1032 +#: c-api/init_config.rst:923 c-api/init_config.rst:1032 #: c-api/init_config.rst:1062 msgid "Part of the :ref:`Python Path Configuration ` input." msgstr "" @@ -1072,8 +1055,7 @@ msgstr "" msgid "Install Python signal handlers?" msgstr "" -#: c-api/init_config.rst:1006 -#: c-api/init_config.rst:1223 +#: c-api/init_config.rst:1006 c-api/init_config.rst:1223 msgid "Default: ``1`` in Python mode, ``0`` in isolated mode." msgstr "" @@ -1273,8 +1255,7 @@ msgid "" "`Py_GetArgcArgv` function." msgstr "" -#: c-api/init_config.rst:1258 -#: c-api/init_config.rst:1277 +#: c-api/init_config.rst:1258 c-api/init_config.rst:1277 msgid "Default: empty list." msgstr "" diff --git a/c-api/intro.po b/c-api/intro.po index 46eb7583..30b7485d 100644 --- a/c-api/intro.po +++ b/c-api/intro.po @@ -214,8 +214,7 @@ msgid "" "symbol name." msgstr "" -#: c-api/intro.rst:256 -#: c-api/intro.rst:274 +#: c-api/intro.rst:256 c-api/intro.rst:274 msgid "Example::" msgstr "" diff --git a/c-api/long.po b/c-api/long.po index 4757d7e8..371927e5 100644 --- a/c-api/long.po +++ b/c-api/long.po @@ -149,21 +149,15 @@ msgid "" "expr:`long`." msgstr "" -#: c-api/long.rst:150 -#: c-api/long.rst:191 -#: c-api/long.rst:214 +#: c-api/long.rst:150 c-api/long.rst:191 c-api/long.rst:214 msgid "Returns ``-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: c-api/long.rst:152 -#: c-api/long.rst:195 -#: c-api/long.rst:299 +#: c-api/long.rst:152 c-api/long.rst:195 c-api/long.rst:299 msgid "Use :meth:`~object.__index__` if available." msgstr "" -#: c-api/long.rst:155 -#: c-api/long.rst:198 -#: c-api/long.rst:302 +#: c-api/long.rst:155 c-api/long.rst:198 c-api/long.rst:302 msgid "This function will no longer use :meth:`~object.__int__`." msgstr "" @@ -384,9 +378,7 @@ msgstr "" msgid "LONG_MAX (C macro)" msgstr "" -#: c-api/long.rst:161 -#: c-api/long.rst:219 -#: c-api/long.rst:251 +#: c-api/long.rst:161 c-api/long.rst:219 c-api/long.rst:251 msgid "OverflowError (built-in exception)" msgstr "" diff --git a/c-api/mapping.po b/c-api/mapping.po index 27af90ab..2d9ecd31 100644 --- a/c-api/mapping.po +++ b/c-api/mapping.po @@ -100,8 +100,7 @@ msgid "" "``NULL``." msgstr "" -#: c-api/mapping.rst:96 -#: c-api/mapping.rst:105 +#: c-api/mapping.rst:96 c-api/mapping.rst:105 msgid "Previously, the function returned a list or a tuple." msgstr "" diff --git a/c-api/marshal.po b/c-api/marshal.po index f861cd15..108d1bc0 100644 --- a/c-api/marshal.po +++ b/c-api/marshal.po @@ -96,8 +96,7 @@ msgid "" "reading." msgstr "" -#: c-api/marshal.rst:87 -#: c-api/marshal.rst:96 +#: c-api/marshal.rst:87 c-api/marshal.rst:96 msgid "" "On error, sets the appropriate exception (:exc:`EOFError`, :exc:`ValueError` " "or :exc:`TypeError`) and returns ``NULL``." diff --git a/c-api/memory.po b/c-api/memory.po index 54237aaf..7b2acb72 100644 --- a/c-api/memory.po +++ b/c-api/memory.po @@ -179,8 +179,7 @@ msgid "" "requesting zero bytes." msgstr "" -#: c-api/memory.rst:217 -#: c-api/memory.rst:325 +#: c-api/memory.rst:217 c-api/memory.rst:325 msgid "" "Allocates *n* bytes and returns a pointer of type :c:expr:`void*` to the " "allocated memory, or ``NULL`` if the request fails." @@ -193,8 +192,7 @@ msgid "" "have been initialized in any way." msgstr "" -#: c-api/memory.rst:227 -#: c-api/memory.rst:335 +#: c-api/memory.rst:227 c-api/memory.rst:335 msgid "" "Allocates *nelem* elements each whose size in bytes is *elsize* and returns " "a pointer of type :c:expr:`void*` to the allocated memory, or ``NULL`` if " @@ -208,8 +206,7 @@ msgid "" "called instead." msgstr "" -#: c-api/memory.rst:240 -#: c-api/memory.rst:348 +#: c-api/memory.rst:240 c-api/memory.rst:348 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." @@ -243,8 +240,7 @@ msgid "" "called before, undefined behavior occurs." msgstr "" -#: c-api/memory.rst:261 -#: c-api/memory.rst:369 +#: c-api/memory.rst:261 c-api/memory.rst:369 msgid "If *p* is ``NULL``, no operation is performed." msgstr "" @@ -612,8 +608,7 @@ msgstr "" msgid "Enum used to identify an allocator domain. Domains:" msgstr "" -#: c-api/memory.rst:447 -#: c-api/memory.rst:456 +#: c-api/memory.rst:447 c-api/memory.rst:456 msgid "Functions:" msgstr "" diff --git a/c-api/module.po b/c-api/module.po index 52c90826..1649e47e 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -215,8 +215,7 @@ msgid "" "``NULL`` if not needed." msgstr "" -#: c-api/module.rst:217 -#: c-api/module.rst:238 +#: c-api/module.rst:217 c-api/module.rst:238 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 " @@ -226,8 +225,7 @@ msgid "" "`PyModule_GetState`) is ``NULL``." msgstr "" -#: c-api/module.rst:230 -#: c-api/module.rst:245 +#: c-api/module.rst:230 c-api/module.rst:245 msgid "No longer called before the module state is allocated." msgstr "" diff --git a/c-api/number.po b/c-api/number.po index 3f6ca6e2..d59b2015 100644 --- a/c-api/number.po +++ b/c-api/number.po @@ -299,9 +299,7 @@ msgid "" "always succeeds." msgstr "" -#: c-api/number.rst:75 -#: c-api/number.rst:195 -#: c-api/number.rst:249 +#: c-api/number.rst:75 c-api/number.rst:195 c-api/number.rst:249 msgid "built-in function" msgstr "" diff --git a/c-api/object.po b/c-api/object.po index 50751838..ee23c81c 100644 --- a/c-api/object.po +++ b/c-api/object.po @@ -486,9 +486,7 @@ msgid "" "raised if *o* does not have :c:macro:`Py_TPFLAGS_ITEMS_AT_END` set." msgstr "" -#: c-api/object.rst:213 -#: c-api/object.rst:289 -#: c-api/object.rst:344 +#: c-api/object.rst:213 c-api/object.rst:289 c-api/object.rst:344 msgid "built-in function" msgstr "" diff --git a/c-api/refcounting.po b/c-api/refcounting.po index 5f98b6f2..eca8df93 100644 --- a/c-api/refcounting.po +++ b/c-api/refcounting.po @@ -62,8 +62,7 @@ msgid "" "pep-0683/>`_ objects." msgstr "" -#: c-api/refcounting.rst:65 -#: c-api/refcounting.rst:142 +#: c-api/refcounting.rst:65 c-api/refcounting.rst:142 msgid "Immortal objects are not modified." msgstr "" diff --git a/c-api/structures.po b/c-api/structures.po index 678b7188..12265cd6 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -643,12 +643,8 @@ msgstr "" msgid ":c:expr:`char`" msgstr "" -#: c-api/structures.rst:607 -#: c-api/structures.rst:609 -#: c-api/structures.rst:611 -#: c-api/structures.rst:613 -#: c-api/structures.rst:615 -#: c-api/structures.rst:616 +#: c-api/structures.rst:607 c-api/structures.rst:609 c-api/structures.rst:611 +#: c-api/structures.rst:613 c-api/structures.rst:615 c-api/structures.rst:616 msgid ":py:class:`int`" msgstr "" diff --git a/c-api/type.po b/c-api/type.po index 9178c43f..e1d9569f 100644 --- a/c-api/type.po +++ b/c-api/type.po @@ -388,8 +388,7 @@ msgid "" "base classes. Previously, only :class:`type` instances were returned." msgstr "" -#: c-api/type.rst:347 -#: c-api/type.rst:363 +#: c-api/type.rst:347 c-api/type.rst:363 msgid "" "The :c:member:`~PyTypeObject.tp_new` of the metaclass is *ignored*. which " "may result in incomplete initialization. Creating classes whose metaclass " diff --git a/c-api/typeobj.po b/c-api/typeobj.po index f39a8946..6ede1e51 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -92,8 +92,7 @@ msgstr "" msgid " :c:member:`~PyTypeObject.tp_name`" msgstr "" -#: c-api/typeobj.rst:44 -#: c-api/typeobj.rst:86 +#: c-api/typeobj.rst:44 c-api/typeobj.rst:86 msgid "const char *" msgstr "" @@ -101,21 +100,11 @@ msgstr "" msgid "__name__" msgstr "" -#: c-api/typeobj.rst:46 -#: c-api/typeobj.rst:50 -#: c-api/typeobj.rst:62 -#: c-api/typeobj.rst:72 -#: c-api/typeobj.rst:76 -#: c-api/typeobj.rst:84 -#: c-api/typeobj.rst:88 -#: c-api/typeobj.rst:92 -#: c-api/typeobj.rst:101 -#: c-api/typeobj.rst:105 -#: c-api/typeobj.rst:109 -#: c-api/typeobj.rst:115 -#: c-api/typeobj.rst:120 -#: c-api/typeobj.rst:124 -#: c-api/typeobj.rst:128 +#: c-api/typeobj.rst:46 c-api/typeobj.rst:50 c-api/typeobj.rst:62 +#: c-api/typeobj.rst:72 c-api/typeobj.rst:76 c-api/typeobj.rst:84 +#: c-api/typeobj.rst:88 c-api/typeobj.rst:92 c-api/typeobj.rst:101 +#: c-api/typeobj.rst:105 c-api/typeobj.rst:109 c-api/typeobj.rst:115 +#: c-api/typeobj.rst:120 c-api/typeobj.rst:124 c-api/typeobj.rst:128 #: c-api/typeobj.rst:146 msgid "X" msgstr "" @@ -124,9 +113,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_basicsize`" msgstr "" -#: c-api/typeobj.rst:46 -#: c-api/typeobj.rst:52 -#: c-api/typeobj.rst:120 +#: c-api/typeobj.rst:46 c-api/typeobj.rst:52 c-api/typeobj.rst:120 #: c-api/typeobj.rst:416 msgid ":c:type:`Py_ssize_t`" msgstr "" @@ -139,8 +126,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_dealloc`" msgstr "" -#: c-api/typeobj.rst:142 -#: c-api/typeobj.rst:346 +#: c-api/typeobj.rst:142 c-api/typeobj.rst:346 msgid ":c:type:`destructor`" msgstr "" @@ -160,9 +146,7 @@ msgstr "" msgid "__getattribute__, __getattr__" msgstr "" -#: c-api/typeobj.rst:57 -#: c-api/typeobj.rst:76 -#: c-api/typeobj.rst:88 +#: c-api/typeobj.rst:57 c-api/typeobj.rst:76 c-api/typeobj.rst:88 #: c-api/typeobj.rst:92 msgid "G" msgstr "" @@ -187,14 +171,11 @@ msgstr "" msgid ":c:type:`PyAsyncMethods` *" msgstr "" -#: c-api/typeobj.rst:64 -#: c-api/typeobj.rst:68 +#: c-api/typeobj.rst:64 c-api/typeobj.rst:68 msgid ":ref:`sub-slots`" msgstr "" -#: c-api/typeobj.rst:64 -#: c-api/typeobj.rst:68 -#: c-api/typeobj.rst:82 +#: c-api/typeobj.rst:64 c-api/typeobj.rst:68 c-api/typeobj.rst:82 msgid "%" msgstr "" @@ -202,8 +183,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_repr`" msgstr "" -#: c-api/typeobj.rst:74 -#: c-api/typeobj.rst:368 +#: c-api/typeobj.rst:74 c-api/typeobj.rst:368 msgid ":c:type:`reprfunc`" msgstr "" @@ -251,8 +231,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_call`" msgstr "" -#: c-api/typeobj.rst:237 -#: c-api/typeobj.rst:440 +#: c-api/typeobj.rst:237 c-api/typeobj.rst:440 msgid ":c:type:`ternaryfunc`" msgstr "" @@ -300,9 +279,7 @@ msgstr "" msgid "unsigned long" msgstr "" -#: c-api/typeobj.rst:99 -#: c-api/typeobj.rst:120 -#: c-api/typeobj.rst:126 +#: c-api/typeobj.rst:99 c-api/typeobj.rst:120 c-api/typeobj.rst:126 #: c-api/typeobj.rst:128 msgid "?" msgstr "" @@ -327,8 +304,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_clear`" msgstr "" -#: c-api/typeobj.rst:130 -#: c-api/typeobj.rst:429 +#: c-api/typeobj.rst:130 c-api/typeobj.rst:429 msgid ":c:type:`inquiry`" msgstr "" @@ -412,18 +388,10 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_dict`" msgstr "" -#: c-api/typeobj.rst:113 -#: c-api/typeobj.rst:134 -#: c-api/typeobj.rst:140 -#: c-api/typeobj.rst:346 -#: c-api/typeobj.rst:368 -#: c-api/typeobj.rst:381 -#: c-api/typeobj.rst:404 -#: c-api/typeobj.rst:412 -#: c-api/typeobj.rst:416 -#: c-api/typeobj.rst:431 -#: c-api/typeobj.rst:440 -#: c-api/typeobj.rst:446 +#: c-api/typeobj.rst:113 c-api/typeobj.rst:134 c-api/typeobj.rst:140 +#: c-api/typeobj.rst:346 c-api/typeobj.rst:368 c-api/typeobj.rst:381 +#: c-api/typeobj.rst:404 c-api/typeobj.rst:412 c-api/typeobj.rst:416 +#: c-api/typeobj.rst:431 c-api/typeobj.rst:440 c-api/typeobj.rst:446 msgid ":c:type:`PyObject` *" msgstr "" @@ -531,8 +499,7 @@ msgstr "" msgid "[:c:member:`~PyTypeObject.tp_subclasses`]" msgstr "" -#: c-api/typeobj.rst:138 -#: c-api/typeobj.rst:348 +#: c-api/typeobj.rst:138 c-api/typeobj.rst:348 msgid "void *" msgstr "" @@ -642,12 +609,8 @@ msgstr "" msgid ":c:member:`~PyAsyncMethods.am_await`" msgstr "" -#: c-api/typeobj.rst:206 -#: c-api/typeobj.rst:242 -#: c-api/typeobj.rst:246 -#: c-api/typeobj.rst:277 -#: c-api/typeobj.rst:291 -#: c-api/typeobj.rst:431 +#: c-api/typeobj.rst:206 c-api/typeobj.rst:242 c-api/typeobj.rst:246 +#: c-api/typeobj.rst:277 c-api/typeobj.rst:291 c-api/typeobj.rst:431 msgid ":c:type:`unaryfunc`" msgstr "" @@ -683,21 +646,11 @@ msgstr "" msgid ":c:member:`~PyNumberMethods.nb_add`" msgstr "" -#: c-api/typeobj.rst:217 -#: c-api/typeobj.rst:222 -#: c-api/typeobj.rst:227 -#: c-api/typeobj.rst:232 -#: c-api/typeobj.rst:252 -#: c-api/typeobj.rst:257 -#: c-api/typeobj.rst:262 -#: c-api/typeobj.rst:267 -#: c-api/typeobj.rst:272 -#: c-api/typeobj.rst:283 -#: c-api/typeobj.rst:287 -#: c-api/typeobj.rst:293 -#: c-api/typeobj.rst:302 -#: c-api/typeobj.rst:322 -#: c-api/typeobj.rst:435 +#: c-api/typeobj.rst:217 c-api/typeobj.rst:222 c-api/typeobj.rst:227 +#: c-api/typeobj.rst:232 c-api/typeobj.rst:252 c-api/typeobj.rst:257 +#: c-api/typeobj.rst:262 c-api/typeobj.rst:267 c-api/typeobj.rst:272 +#: c-api/typeobj.rst:283 c-api/typeobj.rst:287 c-api/typeobj.rst:293 +#: c-api/typeobj.rst:302 c-api/typeobj.rst:322 c-api/typeobj.rst:435 msgid ":c:type:`binaryfunc`" msgstr "" @@ -985,8 +938,7 @@ msgstr "" msgid ":c:member:`~PyMappingMethods.mp_length`" msgstr "" -#: c-api/typeobj.rst:309 -#: c-api/typeobj.rst:416 +#: c-api/typeobj.rst:309 c-api/typeobj.rst:416 msgid ":c:type:`lenfunc`" msgstr "" @@ -1030,8 +982,7 @@ msgstr "" msgid ":c:member:`~PySequenceMethods.sq_repeat`" msgstr "" -#: c-api/typeobj.rst:315 -#: c-api/typeobj.rst:446 +#: c-api/typeobj.rst:315 c-api/typeobj.rst:446 msgid ":c:type:`ssizeargfunc`" msgstr "" @@ -1107,8 +1058,7 @@ msgstr "" msgid "Return Type" msgstr "" -#: c-api/typeobj.rst:348 -#: c-api/typeobj.rst:424 +#: c-api/typeobj.rst:348 c-api/typeobj.rst:424 msgid "void" msgstr "" @@ -1116,12 +1066,8 @@ msgstr "" msgid ":c:type:`visitproc`" msgstr "" -#: c-api/typeobj.rst:350 -#: c-api/typeobj.rst:375 -#: c-api/typeobj.rst:398 -#: c-api/typeobj.rst:429 -#: c-api/typeobj.rst:457 -#: c-api/typeobj.rst:462 +#: c-api/typeobj.rst:350 c-api/typeobj.rst:375 c-api/typeobj.rst:398 +#: c-api/typeobj.rst:429 c-api/typeobj.rst:457 c-api/typeobj.rst:462 msgid "int" msgstr "" @@ -1180,44 +1126,21 @@ msgid "" "instances *do* count as references." msgstr "" -#: c-api/typeobj.rst:526 -#: c-api/typeobj.rst:562 -#: c-api/typeobj.rst:649 -#: c-api/typeobj.rst:749 -#: c-api/typeobj.rst:783 -#: c-api/typeobj.rst:825 -#: c-api/typeobj.rst:854 -#: c-api/typeobj.rst:899 -#: c-api/typeobj.rst:937 -#: c-api/typeobj.rst:984 -#: c-api/typeobj.rst:1019 -#: c-api/typeobj.rst:1068 -#: c-api/typeobj.rst:1088 -#: c-api/typeobj.rst:1120 -#: c-api/typeobj.rst:1158 -#: c-api/typeobj.rst:1193 -#: c-api/typeobj.rst:1258 -#: c-api/typeobj.rst:1307 -#: c-api/typeobj.rst:1355 -#: c-api/typeobj.rst:1491 -#: c-api/typeobj.rst:1588 -#: c-api/typeobj.rst:1636 -#: c-api/typeobj.rst:1664 -#: c-api/typeobj.rst:1708 -#: c-api/typeobj.rst:1766 -#: c-api/typeobj.rst:1813 -#: c-api/typeobj.rst:1874 -#: c-api/typeobj.rst:1937 -#: c-api/typeobj.rst:1997 -#: c-api/typeobj.rst:2020 -#: c-api/typeobj.rst:2054 -#: c-api/typeobj.rst:2114 -#: c-api/typeobj.rst:2137 +#: c-api/typeobj.rst:526 c-api/typeobj.rst:562 c-api/typeobj.rst:649 +#: c-api/typeobj.rst:749 c-api/typeobj.rst:783 c-api/typeobj.rst:825 +#: c-api/typeobj.rst:854 c-api/typeobj.rst:899 c-api/typeobj.rst:937 +#: c-api/typeobj.rst:984 c-api/typeobj.rst:1019 c-api/typeobj.rst:1068 +#: c-api/typeobj.rst:1088 c-api/typeobj.rst:1120 c-api/typeobj.rst:1158 +#: c-api/typeobj.rst:1193 c-api/typeobj.rst:1258 c-api/typeobj.rst:1307 +#: c-api/typeobj.rst:1355 c-api/typeobj.rst:1491 c-api/typeobj.rst:1588 +#: c-api/typeobj.rst:1636 c-api/typeobj.rst:1664 c-api/typeobj.rst:1708 +#: c-api/typeobj.rst:1766 c-api/typeobj.rst:1813 c-api/typeobj.rst:1874 +#: c-api/typeobj.rst:1937 c-api/typeobj.rst:1997 c-api/typeobj.rst:2020 +#: c-api/typeobj.rst:2054 c-api/typeobj.rst:2114 c-api/typeobj.rst:2137 msgid "**Inheritance:**" msgstr "" -#: c-api/typeobj.rst:564 -#: c-api/typeobj.rst:608 +#: c-api/typeobj.rst:564 c-api/typeobj.rst:608 msgid "This field is not inherited by subtypes." msgstr "" @@ -1241,12 +1164,8 @@ msgid "" "class. :c:func:`PyType_Ready` will not change this field if it is non-zero." msgstr "" -#: c-api/typeobj.rst:710 -#: c-api/typeobj.rst:919 -#: c-api/typeobj.rst:1615 -#: c-api/typeobj.rst:1768 -#: c-api/typeobj.rst:1859 -#: c-api/typeobj.rst:2116 +#: c-api/typeobj.rst:710 c-api/typeobj.rst:919 c-api/typeobj.rst:1615 +#: c-api/typeobj.rst:1768 c-api/typeobj.rst:1859 c-api/typeobj.rst:2116 msgid "This field is inherited by subtypes." msgstr "" @@ -1595,14 +1514,9 @@ msgid "" "``'>'`` from which both the type and the value of the object can be deduced." msgstr "" -#: c-api/typeobj.rst:941 -#: c-api/typeobj.rst:992 -#: c-api/typeobj.rst:1561 -#: c-api/typeobj.rst:1712 -#: c-api/typeobj.rst:1820 -#: c-api/typeobj.rst:1879 -#: c-api/typeobj.rst:1942 -#: c-api/typeobj.rst:1973 +#: c-api/typeobj.rst:941 c-api/typeobj.rst:992 c-api/typeobj.rst:1561 +#: c-api/typeobj.rst:1712 c-api/typeobj.rst:1820 c-api/typeobj.rst:1879 +#: c-api/typeobj.rst:1942 c-api/typeobj.rst:1973 msgid "**Default:**" msgstr "" @@ -1861,9 +1775,7 @@ msgid "" "instance's ob_type gets INCREF'ed or DECREF'ed)." msgstr "" -#: c-api/typeobj.rst:1070 -#: c-api/typeobj.rst:1090 -#: c-api/typeobj.rst:1122 +#: c-api/typeobj.rst:1070 c-api/typeobj.rst:1090 c-api/typeobj.rst:1122 msgid "???" msgstr "" @@ -1896,8 +1808,7 @@ msgid "" "tp_clear` are present in the type object." msgstr "" -#: c-api/typeobj.rst:1425 -#: c-api/typeobj.rst:1493 +#: c-api/typeobj.rst:1425 c-api/typeobj.rst:1493 msgid "" "Group: :c:macro:`Py_TPFLAGS_HAVE_GC`, :c:member:`~PyTypeObject." "tp_traverse`, :c:member:`~PyTypeObject.tp_clear`" @@ -2634,9 +2545,7 @@ msgstr "" msgid "An optional pointer to a \"descriptor get\" function." msgstr "" -#: c-api/typeobj.rst:1776 -#: c-api/typeobj.rst:1870 -#: c-api/typeobj.rst:1894 +#: c-api/typeobj.rst:1776 c-api/typeobj.rst:1870 c-api/typeobj.rst:1894 msgid "The function signature is::" msgstr "" @@ -2904,9 +2813,7 @@ msgid "" "will only be inherited from the first base." msgstr "" -#: c-api/typeobj.rst:2022 -#: c-api/typeobj.rst:2056 -#: c-api/typeobj.rst:2070 +#: c-api/typeobj.rst:2022 c-api/typeobj.rst:2056 c-api/typeobj.rst:2070 msgid "This field is not inherited." msgstr "" @@ -3257,9 +3164,7 @@ msgid "" "expose its internal data to consumer objects." msgstr "" -#: c-api/typeobj.rst:2487 -#: c-api/typeobj.rst:2552 -#: c-api/typeobj.rst:2574 +#: c-api/typeobj.rst:2487 c-api/typeobj.rst:2552 c-api/typeobj.rst:2574 msgid "The signature of this function is::" msgstr "" diff --git a/c-api/unicode.po b/c-api/unicode.po index ae7369da..a8fedc46 100644 --- a/c-api/unicode.po +++ b/c-api/unicode.po @@ -269,8 +269,7 @@ msgstr "" msgid "Return the character *ch* converted to lower case." msgstr "" -#: c-api/unicode.rst:281 -#: c-api/unicode.rst:289 +#: c-api/unicode.rst:281 c-api/unicode.rst:289 msgid "This function uses simple case mappings." msgstr "" @@ -565,9 +564,7 @@ msgstr "" msgid "``d``, ``i``" msgstr "" -#: c-api/unicode.rst:476 -#: c-api/unicode.rst:484 -#: c-api/unicode.rst:488 +#: c-api/unicode.rst:476 c-api/unicode.rst:484 c-api/unicode.rst:488 msgid "Specified by the length modifier" msgstr "" @@ -650,8 +647,7 @@ msgstr "" msgid "``A``" msgstr "" -#: c-api/unicode.rst:511 -#: c-api/unicode.rst:525 +#: c-api/unicode.rst:511 c-api/unicode.rst:525 msgid ":c:expr:`PyObject*`" msgstr "" @@ -990,8 +986,7 @@ msgid "" "`PyUnicode_DecodeLocaleAndSize`." msgstr "" -#: c-api/unicode.rst:822 -#: c-api/unicode.rst:842 +#: c-api/unicode.rst:822 c-api/unicode.rst:842 msgid "" "The :term:`filesystem error handler ` " "is now used." diff --git a/c-api/veryhigh.po b/c-api/veryhigh.po index 1c28def5..f14b5372 100644 --- a/c-api/veryhigh.po +++ b/c-api/veryhigh.po @@ -418,7 +418,6 @@ msgid "" "interpreted as \"true division\" according to :pep:`238`." msgstr "" -#: c-api/veryhigh.rst:333 -#: c-api/veryhigh.rst:342 +#: c-api/veryhigh.rst:333 c-api/veryhigh.rst:342 msgid "Py_CompileString (C function)" msgstr "" diff --git a/cpython b/cpython new file mode 160000 index 00000000..9cbde7c6 --- /dev/null +++ b/cpython @@ -0,0 +1 @@ +Subproject commit 9cbde7c6ce6f7b93301a37f03dfa0c0d45e00a39 diff --git a/dictionaries/about.txt b/dictionaries/about.txt deleted file mode 100644 index 083b700b..00000000 --- a/dictionaries/about.txt +++ /dev/null @@ -1 +0,0 @@ -L \ No newline at end of file diff --git a/dictionaries/faq_programming.txt b/dictionaries/faq_programming.txt deleted file mode 100644 index dd506ee3..00000000 --- a/dictionaries/faq_programming.txt +++ /dev/null @@ -1,40 +0,0 @@ -εντοπιστές -x -y -z -C -a -i -s -o -I -pdb -gdb -O -Βλ -βλ -ό -λπ -συμβολοσειρές -συμβολοσειρά -συμβολοσειράς -συμβολοσειρών -επανεισάγω -αλληλοαποκλείονται -no -op -υποκλάση -υποκλάσης -υποκλάσεις -επαυξημένοι -ομαδοποιήστε -οκταδικό -οκταδικούς -οκταδική -οκταδικής -αναδιατάξετε -υποκατάλογος -υποαντικείμενα -αντικειμενοστρεφής -αναπαράξετε -παλαιώσουν \ No newline at end of file diff --git a/dictionaries/faq_windows.txt b/dictionaries/faq_windows.txt deleted file mode 100644 index 087b3d21..00000000 --- a/dictionaries/faq_windows.txt +++ /dev/null @@ -1,13 +0,0 @@ -py -Py -None -ms -l -μακροεντολή -μακροεντολές -Βλ -pyd -pyc -C -i -o diff --git a/dictionaries/glossary.txt b/dictionaries/glossary.txt deleted file mode 100644 index 27af2f1a..00000000 --- a/dictionaries/glossary.txt +++ /dev/null @@ -1,35 +0,0 @@ -x -Βλ -βλ -I -O -a -C -c -s -f -k -συμβολοσειρά -συμβολοσειράς -συμβολοσειρές -συμβολοσειρών -διαχειρίζοντας -υποκλάσεις -μετακλάσεων -γλωσσαρίου -διεπαφών -δηλ -σειριοποίηση -σειριοποίησης -σειριοποιηθεί -υποπακέτα -υποπακέτο -If -πολυμορφική -προσεταιριστικός -μετα -περικλειόμενο -συντηρησιμότητα -ευρετηριοποιηθούν -παραμετροποιηθεί -αντικειμενοστρεφείς \ No newline at end of file diff --git a/dictionaries/license.txt b/dictionaries/license.txt deleted file mode 100644 index 3e1bdea1..00000000 --- a/dictionaries/license.txt +++ /dev/null @@ -1,13 +0,0 @@ -βλ -U -C -M -V -W -N -g -υ -c -ιστότοπο -ρήτρων -v \ No newline at end of file diff --git a/dictionaries/main.txt b/dictionaries/main.txt new file mode 100644 index 00000000..bb44720c --- /dev/null +++ b/dictionaries/main.txt @@ -0,0 +1,361 @@ +A +Alternative +Apache +B +C +Centrum +Cheese +Command +Comment +Compaq +Compiled +Cookbook +Cookie +Corporation +Creations +Dan +David +Drake +Emacs +Foundation +Fred +Fredrik +I +If +Inc +Indent +Index +Initiatives +Input +Insert +Intra +L +Linux +Lisp +Local +Look +Looking +Ltd +M +Marek +Modules +Monty +Mountain +N +National +New +None +O +Packard +Pascal +Path +Perl +Py +Randal +Research +Reston +Search +Shop +Sign +Sox +Start +Stichting +Storage +Sun +Tab +Thread +Title +U +Ulf +Unix +V +Van +W +Windows +Zen +Zope +a +abstract +adding +amp +and +annotating +annotation +annotations +any +api +backslash +backslashes +backwards +base +bash +batch +be +bytecode +bytecodes +bytes +c +callable +callables +callbacks +cfg +chomp +class +classname +code +collection +com +command +comp +compile +compiled +compiler +component +comprehension +config +conflicts +context +contexts +contiguous +count +crt +decorator +decorators +del +delegation +descriptor +descriptors +dict +dispatch +dll +doc +dots +dotted +doubles +dtoa +duck +editor +editors +email +exe +expat +expressions +extension +f +finder +finders +foo +for +from +function +g +gdb +generator +hash +hints +home +hot +i +import +importer +importing +imports +in +indexed +init +initialization +initializations +initializers +initleo +initleoc +input +install +instance +int +interactive +interface +interfaces +interpreted +interpreter +introspective +ints +it +item +iterable +iterables +iterate +iterating +iteration +iterator +iterators +k +key +l +lang +leading +leap +leaping +leo +lib +libffi +like +liners +linters +list +literal +loader +loaders +looks +mailing +main +mangled +menu +meta +mode +module +modules +ms +mult +multi +must +name +named +names +namespace +namespaces +native +no +notation +o +op +operator +package +packages +page +pages +path +pdb +pip +pipes +prompt +prompts +py +pyc +pyd +quacks +raw +read +regressions +s +script +scripts +see +self +sep +site +size +spaces +spam +spot +stand +standard +strings +strtod +submodule +submodules +subscript +switch +switches +tab +tabs +tag +terminal +terminator +terminators +testing +the +threading +to +tracker +type +typing +unicode +uninitialized +uninstall +unit +up +user +v +van +web +whitespace +wiki +win +window +write +x +y +you +z +zlib +Βλ +Μετα +αίτημά +αγγίξετε +αλληλοαποκλείονται +αναδιατάξετε +αναπαράξετε +αντικειμενοστρεφής +αντικειμενοστρεφείς +βλ +γλωσσαρίου +δηλ +διαχειρίζοντας +διεπαφών +εντοπιστές +επανεισάγω +επανεκκινήσετε +επαυξημένοι +ευρετηριοποιηθούν +ηχούς +ισοσταθμιστή +ιστότοπο +ιστότοπος +λπ +μακροεντολές +μακροεντολή +μετα +μετακλάσεων +οκταδική +οκταδικής +οκταδικούς +οκταδικό +ομαδοποιήστε +παλαιώσουν +παραμετροποιηθεί +περιβάλλοντων +περικλειόμενο +πολυμορφική +προέκδοση +προεπισκόπηση +προσεταιριστικός +ρήτρων +σειριοποίηση +σειριοποίησης +σειριοποιηθεί +συμβολοσειρά +συμβολοσειράς +συμβολοσειρές +συμβολοσειρών +συντηρησιμότητα +υ +υποαντικείμενα +υποεντολών +υποενότητες +υποκατάλογος +υποκλάσεις +υποκλάση +υποκλάσης +υποπακέτα +υποπακέτο +ό diff --git a/dictionaries/sphinx.txt b/dictionaries/sphinx.txt deleted file mode 100644 index 9dd29813..00000000 --- a/dictionaries/sphinx.txt +++ /dev/null @@ -1,7 +0,0 @@ -s -προέκδοση -C -υποενότητες -προεπισκόπηση -βλ -Μετα \ No newline at end of file diff --git a/dictionaries/tutorial-modules.txt b/dictionaries/tutorial-modules.txt deleted file mode 100644 index 7e0fe5b1..00000000 --- a/dictionaries/tutorial-modules.txt +++ /dev/null @@ -1,13 +0,0 @@ -βλ -s -συμβολοσειρά -συμβολοσειρών -συμβολοσειρές -αγγίξετε -ό -υποπακέτο -υποπακέτα -ηχούς -επανεκκινήσετε -λπ -ισοσταθμιστή \ No newline at end of file diff --git a/dictionaries/tutorial-venv.txt b/dictionaries/tutorial-venv.txt deleted file mode 100644 index 5b154c90..00000000 --- a/dictionaries/tutorial-venv.txt +++ /dev/null @@ -1,6 +0,0 @@ -A -B -s -λπ -υποεντολών -περιβάλλοντων diff --git a/dictionaries/tutorial-whatnow.txt b/dictionaries/tutorial-whatnow.txt deleted file mode 100644 index 2e24856a..00000000 --- a/dictionaries/tutorial-whatnow.txt +++ /dev/null @@ -1,3 +0,0 @@ -ιστότοπος -O -ό \ No newline at end of file diff --git a/dictionaries/tutorial_interactive.txt b/dictionaries/tutorial_interactive.txt deleted file mode 100644 index f6ab64ac..00000000 --- a/dictionaries/tutorial_interactive.txt +++ /dev/null @@ -1 +0,0 @@ -λπ \ No newline at end of file diff --git a/faq/programming.po b/faq/programming.po index 348b1ad4..a52edd96 100644 --- a/faq/programming.po +++ b/faq/programming.po @@ -98,7 +98,7 @@ msgid "" "`Eric `_ is an IDE built on PyQt and " "the Scintilla editing component." msgstr "" -"Το Eric `_ είναι ένα IDE που " +"Το `Eric `_ είναι ένα IDE που " "βασίζεται στο PyQt και το component επεξεργασίας Scintilla." #: faq/programming.rst:42 @@ -114,7 +114,7 @@ msgid "" "`Visual Studio Code `_ is an IDE with " "debugging tools that integrates with version-control software." msgstr "" -"Το Visual Studio Code `_ είναι ένας IDE με " +"Το `Visual Studio Code `_ είναι ένας IDE με " "εργαλεία εντοπισμού σφαλμάτων που ενσωματώνεται με λογισμικό ελέγχου έκδοσης." #: faq/programming.rst:47 @@ -312,7 +312,7 @@ msgstr "" "μεταβλητή με παρόμοιο όνομα στο εξωτερικό εύρος. Εφόσον η τελευταία πρόταση " "στο foo εκχωρεί μια νέα τιμή στο ``x``, ο μεταγλωττιστής την αναγνωρίζει ως " "τοπική μεταβλητή. Κατά συνέπεια όταν η προηγούμενη ``print(x)`` επιχειρεί να " -"εκτυπώσει την unintialized τοπική μεταβλητή και προκύπτει σφάλμα." +"εκτυπώσει την uninitialized τοπική μεταβλητή και προκύπτει σφάλμα." #: faq/programming.rst:155 msgid "" @@ -1517,7 +1517,7 @@ msgstr "" "διαχωρισμός της γραμμής σε λέξεις οριοθετημένες με κενά διαστήματα " "χρησιμοποιώντας τη μέθοδο :meth:`~str.split` αντικειμένων συμβολοσειρών και " "στη συνέχεια μετατροπή δεκαδικών συμβολοσειρών σε αριθμητικές τιμές " -"χρησιμοποιώντας :func:`int` ή :func: `float`. :meth:`!split()` υποστηρίζει " +"χρησιμοποιώντας :func:`int` ή :func:`float`. :meth:`!split()` υποστηρίζει " "μια προαιρετική παράμετρο \"sep\" που είναι χρήσιμη εάν η γραμμή " "χρησιμοποιεί κάτι διαφορετικό από κενό διάστημα ως διαχωριστικό." @@ -1677,7 +1677,7 @@ msgid "" "types` and the :mod:`collections` module." msgstr "" "Χρησιμοποιήστε τις σωστές δομές δεδομένων. Μελετήστε την τεκμηρίωση για το :" -"ref:`bltin-και το module :mod:`collections`." +"ref:`bltin-types` και το module :mod:`collections`." #: faq/programming.rst:1101 msgid "" @@ -2396,7 +2396,7 @@ msgstr "" "μετατρέψει τη συμβολοσειρά ορίσματος σε κεφαλαία πριν καλέσει την υποκείμενη " "μέθοδο ``self._outfile.write()``. Όλες οι άλλες μέθοδοι εκχωρούνται στο " "υποκείμενο αντικείμενο ``self._outfile``. Το delegation ολοκληρώνεται μέσω " -"της μεθόδου :meth:`~object.__getattr__`∙ συμβουλευτείτε το :ref:`the " +"της μεθόδου :meth:`~object.__getattr__`. Συμβουλευτείτε το :ref:`the " "language reference ` για περισσότερες πληροφορίες σχετικά " "με τον έλεγχο της πρόσβασης." @@ -2842,12 +2842,12 @@ msgid "" "2) 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`::" +"implement a method that behaves like :meth:`dict.pop`:" msgstr "" "2) Ο εντοπισμός προαιρετικών ορισμάτων μπορεί να είναι δύσκολος όταν το " -"`None` είναι μια έγκυρη τιμή εισόδου. Σε αυτές τις περιπτώσεις, μπορείτε να " -"δημιουργήσετε ένα αντικείμενο μεμονωμένου φρουρού που είναι εγγυημένο ότι θα " -"διαφέρει από άλλα αντικείμενα. Για παράδειγμα, δείτε πως μπορείτε να " +"``None`` είναι μια έγκυρη τιμή εισόδου. Σε αυτές τις περιπτώσεις, μπορείτε " +"να δημιουργήσετε ένα αντικείμενο μεμονωμένου φρουρού που είναι εγγυημένο ότι " +"θα διαφέρει από άλλα αντικείμενα. Για παράδειγμα, δείτε πως μπορείτε να " "εφαρμόσετε μια μέθοδο που συμπεριφέρεται σαν :meth:`dict.pop`::" #: faq/programming.rst:1901 @@ -3037,8 +3037,8 @@ msgstr "" "Εκτός και αν έχει οριστεί η μεταβλητή περιβάλλοντος :envvar:" "`PYTHONDONTWRITEBYTECODE`, η δημιουργία ενός αρχείου .pyc είναι αυτόματη εάν " "εισάγετε ένα module και η Python έχει τη δυνατότητα (δικαιώματα, ελεύθερος " -"χώρος, κ.λπ...) να δημιουργήσει ένα __pycache__`` υποκατάλογο και γράψτε το " -"μεταγλωττισμένο module σε αυτόν τον υποκατάλογο." +"χώρος, κ.λπ...) να δημιουργήσει ένα ``__pycache__`` υποκατάλογο και γράψτε " +"το μεταγλωττισμένο module σε αυτόν τον υποκατάλογο." #: faq/programming.rst:2069 msgid "" diff --git a/glossary.po b/glossary.po index f50b74e7..cd5846f1 100644 --- a/glossary.po +++ b/glossary.po @@ -396,10 +396,9 @@ msgid "" msgstr "" "Ένα :term:`file object` ικανό να διαβάζει και να γράφει :term:`δυαδικού " "τύπου αντικείμενα `. Παραδείγματα δυαδικών αρχείων είναι " -"αρχεία που ανοίγουν σε δυαδική λειτουργία (``'rb'``, ``'wb'`` or " -"``'rb+'``), :data:`sys.stdin.buffer `, :data:`sys.stdout.buffer " -"`, και στιγμιοτύπων των :class:`io.BytesIO` και :class:`gzip." -"GzipFile`." +"αρχεία που ανοίγουν σε δυαδική λειτουργία (``'rb'``, ``'wb'`` ή ``'rb+'``), :" +"data:`sys.stdin.buffer `, :data:`sys.stdout.buffer `, " +"και στιγμιοτύπων των :class:`io.BytesIO` και :class:`gzip.GzipFile`." #: glossary.rst:167 msgid "" @@ -514,7 +513,7 @@ msgid "" "`the dis module `." msgstr "" "Μια λίστα από οδηγίες σχετικά με τα bytecode μπορεί να βρεθεί στην " -"τεκμηρίωση για :ref:`το module dis `." +"τεκμηρίωση για :ref:`το module dis `." #: glossary.rst:213 msgid "callable" @@ -689,7 +688,7 @@ msgid "" "These were introduced by :pep:`492`." msgstr "" "Μια συνάρτηση που επιστρέφει ένα :term:`coroutine` αντικείμενο. Μια " -"συνάρτηση coroutine μπορεί να ορίζεται από τη δήλωση :keyword:`async def, " +"συνάρτηση coroutine μπορεί να ορίζεται από τη δήλωση :keyword:`async def`, " "και μπορεί να περιέχει :keyword:`await`, :keyword:`async for`, και :keyword:" "`async with` λέξεις κλειδιά. Αυτές εισήχθησαν από το :pep:`492`." @@ -729,7 +728,7 @@ msgid "" "The decorator syntax is merely syntactic sugar, the following two function " "definitions are semantically equivalent::" msgstr "" -"Η σύνταξη του decrator είναι απλώς καλλωπιστική, οι ακόλουθοι δύο ορισμοί " +"Η σύνταξη του decorator είναι απλώς καλλωπιστική, οι ακόλουθοι δύο ορισμοί " "συναρτήσεων είναι σημασιολογικά ισοδύναμοι::" #: glossary.rst:311 @@ -739,7 +738,7 @@ msgid "" "definitions ` for more about decorators." msgstr "" "Η ίδια έννοια υπάρχει για τις κλάσεις, αλλά χρησιμοποιείται λιγότερο συχνά " -"εκεί. Βλ. την τεκμηρίωση για :ref:`function definitions και :ref:" +"εκεί. Βλ. την τεκμηρίωση για :ref:`function definitions ` και :ref:" "`class definitions ` για περισσότερα σχετικά με τους decorators." #: glossary.rst:314 @@ -891,7 +890,7 @@ msgstr "" "προγραμματισμού σε Python προϋποθέτει την ύπαρξη έγκυρων κλειδιών ή " "χαρακτηριστικών και συλλαμβάνει εξαιρέσεις εάν η υπόθεση αποδεχθεί " "εσφαλμένη. Αυτό το καθαρό και γρήγορο στυλ χαρακτηρίζεται από την παρουσία " -"πολλών δηλώσεων :keyword:`try` και :keyword:`except. Η τεχνική έρχεται σε " +"πολλών δηλώσεων :keyword:`try` και :keyword:`except`. Η τεχνική έρχεται σε " "αντίθεση με το στυλ που είναι :term:`LBYL` κοινό σε πολλές άλλες γλώσσες, " "όπως η C." @@ -1030,7 +1029,7 @@ msgstr "" "Ο :term:`filesystem encoding and error handler` διαμορφώνονται κατά την " "εκκίνηση της Python από τη συνάρτηση :c:func:`PyConfig_Read` βλ. :c:member:" "`~PyConfig.filesystem_encoding` και :c:member:`~PyConfig.filesystem_errors` " -"μέλη του c:type:`PyConfig`." +"μέλη του :c:type:`PyConfig`." #: glossary.rst:430 msgid "See also the :term:`locale encoding`." @@ -1055,7 +1054,7 @@ msgid "" "entry finders ` for use with :data:`sys.path_hooks`." msgstr "" "Από την Python 3.3, υπάρχουν δύο τύποι finder: :term:`finders μετα διαδρομής " -" για να χρήση με :data:`sys.meta_path`, και :term:`finders " +"` για χρήση με :data:`sys.meta_path`, και :term:`finders " "εισόδου διαδρομής ` για χρήση με :data:`sys.path_hooks`." #: glossary.rst:440 @@ -1532,7 +1531,7 @@ msgstr "" "Όταν ζητείται τερματισμός λειτουργίας, ο διερμηνέας της Python εισέρχεται σε " "μια ειδική φάση όπου απελευθερώνει σταδιακά όλους τους διατιθέμενους πόρους, " "όπως λειτουργικές μονάδες και πολλαπλές κρίσιμες εσωτερικές δομές. Επίσης " -"πραγματοποιεί αρκετές κλήσεις στο :term: `συλλέκτης σκουπιδιών `. Αυτό μπορεί να ενεργοποιήσει την εκτέλεση κώδικα σε " "καταστροφείς που ορίζονται από το χρήστη ή σε callbacks ασθενούς " "ανταποκρίσεις. Ο κώδικας που εκτελείται κατά τη φάση τερματισμού λειτουργίας " @@ -1686,10 +1685,10 @@ msgstr "" "Υπάρχουν διάφοροι τρόποι για να δημιουργήσετε μια συνάρτηση κλειδιού. Για " "παράδειγμα. η μέθοδος :meth:`str.lower` μπορεί να χρησιμεύσει ως συνάρτηση " "κλειδί για την περίπτωση μη διάκρισης πεζών-κεφαλαίων. Εναλλακτικά, μια " -"συνάρτηση κλειδιού μπορεί να δημιουργηθεί από μια :keyword:`lambda`έκφραση " +"συνάρτηση κλειδιού μπορεί να δημιουργηθεί από μια :keyword:`lambda` έκφραση " "όπως ``lambda r: (r[0], r[2])``. Επίσης, :func:`operator.attrgetter`, :func:" -"`operator.itemgetter` και :func:`operator.methodcaller`είναι τρεις " -"κατασκευαστές βασικών συναρτήσεων. Βλ. το :ref:`Sorting HOW " +"`operator.itemgetter` και :func:`operator.methodcaller` είναι τρεις " +"κατασκευαστές βασικών συναρτήσεων. Βλ. το :ref:`Ταξινόμηση HOW " "TO` για παραδείγματα δημιουργίας και χρήσης βασικών " "συναρτήσεων." @@ -1727,7 +1726,7 @@ msgid "" "approach and is characterized by the presence of many :keyword:`if` " "statements." msgstr "" -"Look before you leanp. Αυτό το στυλ κωδικοποίησης ελέγχει ρητά τις " +"Look before you leap. Αυτό το στυλ κωδικοποίησης ελέγχει ρητά τις " "προϋποθέσεις πριν πραγματοποιήσει κλήσεις ή αναζητήσεις. Αυτό το στυλ " "έρχεται σε αντίθεση με την προσέγγιση :term:`EAFP` και χαρακτηρίζεται από " "την παρουσία πολλών δηλώσεων :keyword:`if`." @@ -1853,7 +1852,7 @@ msgid "" msgstr "" "Ένα αντικείμενο κοντέινερ που υποστηρίζει αυθαίρετες αναζητήσεις κλειδιών " "και υλοποιεί τις μεθόδους που καθορίζονται στο :class:`collections.abc." -"Mapping` or :class:`collections.abc.MutableMapping` :ref:`abstract base " +"Mapping` ή :class:`collections.abc.MutableMapping` :ref:`abstract base " "classes `. Τα παραδείγματα περιλαμβάνουν :" "class:`dict`, :class:`collections.defaultdict`, :class:`collections." "OrderedDict` και :class:`collections.Counter`." @@ -2279,7 +2278,7 @@ msgid "" "`path entry`." msgstr "" "Ένας :term:`finder` που επιστρέφεται από έναν καλούμενο στο :data:`sys." -"path_hooks` (δηλαδή ένα term:`path entry hook`) που ξέρει πως να εντοπίζει " +"path_hooks` (δηλαδή ένα :term:`path entry hook`) που ξέρει πως να εντοπίζει " "modules με :term:`path entry`." #: glossary.rst:959 @@ -2332,11 +2331,11 @@ msgid "" "`519`." msgstr "" "Ένα αντικείμενο που αντιπροσωπεύει ένα path συστήματος αρχείων. Ένα " -"αντικείμενο path είναι είτε ένα αντικείμενο class:`str` ή :class:`bytes` που " -"αντιπροσωπεύει ένα path ή ένα αντικείμενο που υλοποιεί το πρωτόκολλο :class:" -"`os.PathLike`. Ένα αντικείμενο που υποστηρίζει το πρωτόκολλο :class:`os." -"PathLike` μπορεί να μετατραπεί σε path συστήματος αρχείων :class:`str` ή :" -"class:`bytes` καλώντας την συνάρτηση :func:`os.fspath`' τα :func:`os." +"αντικείμενο path είναι είτε ένα αντικείμενο :class:`str` ή :class:`bytes` " +"που αντιπροσωπεύει ένα path ή ένα αντικείμενο που υλοποιεί το πρωτόκολλο :" +"class:`os.PathLike`. Ένα αντικείμενο που υποστηρίζει το πρωτόκολλο :class:" +"`os.PathLike` μπορεί να μετατραπεί σε path συστήματος αρχείων :class:`str` " +"ή :class:`bytes` καλώντας την συνάρτηση :func:`os.fspath`' τα :func:`os." "fsdecode` και :func:`os.fsencode` μπορούν να χρησιμοποιηθούν για την εγγύηση " "ενός αποτελέσματος :class:`str` ή :class:`bytes`, αντίστοιχα. Εισήχθη από " "τον :pep:`519`." diff --git a/howto/argparse.po b/howto/argparse.po index 214e7ea3..96f13dfb 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -96,13 +96,11 @@ msgstr "" msgid "Let us start with a very simple example which does (almost) nothing::" msgstr "" -#: howto/argparse.rst:188 -#: howto/argparse.rst:209 +#: howto/argparse.rst:188 howto/argparse.rst:209 msgid "Following is a result of running the code:" msgstr "" -#: howto/argparse.rst:254 -#: howto/argparse.rst:298 +#: howto/argparse.rst:254 howto/argparse.rst:298 msgid "Here is what is happening:" msgstr "" @@ -208,8 +206,7 @@ msgid "" "how to add optional ones::" msgstr "" -#: howto/argparse.rst:282 -#: howto/argparse.rst:432 +#: howto/argparse.rst:282 howto/argparse.rst:432 msgid "And the output:" msgstr "" diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index 297961de..d9040d83 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -1060,33 +1060,27 @@ msgid "" "kinds of queues, for example a ZeroMQ 'subscribe' socket. Here's an example::" msgstr "" -#: howto/logging-cookbook.rst:1910 -#: howto/logging-cookbook.rst:3973 +#: howto/logging-cookbook.rst:1910 howto/logging-cookbook.rst:3973 msgid "Module :mod:`logging`" msgstr "" -#: howto/logging-cookbook.rst:1910 -#: howto/logging-cookbook.rst:3973 +#: howto/logging-cookbook.rst:1910 howto/logging-cookbook.rst:3973 msgid "API reference for the logging module." msgstr "" -#: howto/logging-cookbook.rst:1913 -#: howto/logging-cookbook.rst:3976 +#: howto/logging-cookbook.rst:1913 howto/logging-cookbook.rst:3976 msgid "Module :mod:`logging.config`" msgstr "" -#: howto/logging-cookbook.rst:1913 -#: howto/logging-cookbook.rst:3976 +#: howto/logging-cookbook.rst:1913 howto/logging-cookbook.rst:3976 msgid "Configuration API for the logging module." msgstr "" -#: howto/logging-cookbook.rst:1916 -#: howto/logging-cookbook.rst:3979 +#: howto/logging-cookbook.rst:1916 howto/logging-cookbook.rst:3979 msgid "Module :mod:`logging.handlers`" msgstr "" -#: howto/logging-cookbook.rst:1916 -#: howto/logging-cookbook.rst:3979 +#: howto/logging-cookbook.rst:1916 howto/logging-cookbook.rst:3979 msgid "Useful handlers included with the logging module." msgstr "" @@ -1248,8 +1242,7 @@ msgstr "" msgid "If the above script is run, it prints:" msgstr "" -#: howto/logging-cookbook.rst:2339 -#: howto/logging-cookbook.rst:2381 +#: howto/logging-cookbook.rst:2339 howto/logging-cookbook.rst:2381 msgid "" "Note that the order of items might be different according to the version of " "Python used." diff --git a/howto/regex.po b/howto/regex.po index 7480939b..a96b79b0 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -628,13 +628,11 @@ msgid "" "for a complete listing." msgstr "" -#: howto/regex.rst:417 -#: howto/regex.rst:1065 +#: howto/regex.rst:417 howto/regex.rst:1065 msgid "Method/Attribute" msgstr "" -#: howto/regex.rst:417 -#: howto/regex.rst:1065 +#: howto/regex.rst:417 howto/regex.rst:1065 msgid "Purpose" msgstr "" diff --git a/howto/unicode.po b/howto/unicode.po index 757c4621..721f19d0 100644 --- a/howto/unicode.po +++ b/howto/unicode.po @@ -225,8 +225,7 @@ msgid "" "varies depending on the hardware on which the string was encoded." msgstr "" -#: howto/unicode.rst:514 -#: howto/unicode.rst:735 +#: howto/unicode.rst:514 howto/unicode.rst:735 msgid "References" msgstr "" diff --git a/library/__future__.po b/library/__future__.po index 34228925..f483ba8f 100644 --- a/library/__future__.po +++ b/library/__future__.po @@ -129,8 +129,7 @@ msgstr "" msgid "2.2.0a2" msgstr "" -#: library/__future__.rst:52 -#: library/__future__.rst:61 +#: library/__future__.rst:52 library/__future__.rst:61 msgid "3.0" msgstr "" diff --git a/library/argparse.po b/library/argparse.po index 4e3e3a3c..97951801 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -2067,8 +2067,7 @@ msgstr "" msgid "? (question mark)" msgstr "" -#: library/argparse.rst:1014 -#: library/argparse.rst:1028 +#: library/argparse.rst:1014 library/argparse.rst:1028 msgid "in argparse module" msgstr "" diff --git a/library/array.po b/library/array.po index b24c2873..c0389520 100644 --- a/library/array.po +++ b/library/array.po @@ -58,11 +58,8 @@ msgstr "" msgid "signed char" msgstr "" -#: library/array.rst:23 -#: library/array.rst:29 -#: library/array.rst:33 -#: library/array.rst:37 -#: library/array.rst:41 +#: library/array.rst:23 library/array.rst:29 library/array.rst:33 +#: library/array.rst:37 library/array.rst:41 msgid "int" msgstr "" @@ -90,9 +87,7 @@ msgstr "" msgid "Unicode character" msgstr "" -#: library/array.rst:27 -#: library/array.rst:31 -#: library/array.rst:33 +#: library/array.rst:27 library/array.rst:31 library/array.rst:33 msgid "2" msgstr "" @@ -140,8 +135,7 @@ msgstr "" msgid "signed long" msgstr "" -#: library/array.rst:37 -#: library/array.rst:43 +#: library/array.rst:37 library/array.rst:43 msgid "4" msgstr "" @@ -161,8 +155,7 @@ msgstr "" msgid "signed long long" msgstr "" -#: library/array.rst:41 -#: library/array.rst:45 +#: library/array.rst:41 library/array.rst:45 msgid "8" msgstr "" diff --git a/library/ast.po b/library/ast.po index 35fd8dc3..d1d13730 100644 --- a/library/ast.po +++ b/library/ast.po @@ -521,8 +521,7 @@ msgid "" "``targets``." msgstr "" -#: library/ast.rst:1161 -#: library/ast.rst:1891 +#: library/ast.rst:1161 library/ast.rst:1891 msgid "" "``type_comment`` is an optional string with the type annotation as a comment." msgstr "" @@ -881,8 +880,7 @@ msgstr "" msgid "``type_params`` is a list of :ref:`type parameters `." msgstr "" -#: library/ast.rst:2093 -#: library/ast.rst:2104 +#: library/ast.rst:2093 library/ast.rst:2104 msgid "Added ``type_params``." msgstr "" diff --git a/library/asyncio-api-index.po b/library/asyncio-api-index.po index a45d6013..de3437e6 100644 --- a/library/asyncio-api-index.po +++ b/library/asyncio-api-index.po @@ -164,12 +164,9 @@ msgstr "" 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 +#: 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 "" diff --git a/library/asyncio-eventloop.po b/library/asyncio-eventloop.po index 2107516a..eaaa3707 100644 --- a/library/asyncio-eventloop.po +++ b/library/asyncio-eventloop.po @@ -252,8 +252,7 @@ msgid "" "used." msgstr "" -#: library/asyncio-eventloop.rst:176 -#: library/asyncio-eventloop.rst:1242 +#: library/asyncio-eventloop.rst:176 library/asyncio-eventloop.rst:1242 #: library/asyncio-eventloop.rst:1660 msgid "Example::" msgstr "" @@ -342,8 +341,7 @@ msgid "" "section of the documentation." msgstr "" -#: library/asyncio-eventloop.rst:246 -#: library/asyncio-eventloop.rst:296 +#: library/asyncio-eventloop.rst:246 library/asyncio-eventloop.rst:296 #: library/asyncio-eventloop.rst:316 msgid "" "The *context* keyword-only parameter was added. See :pep:`567` for more " @@ -378,8 +376,7 @@ msgid "" "(can be either an int or a float)." msgstr "" -#: library/asyncio-eventloop.rst:281 -#: library/asyncio-eventloop.rst:313 +#: library/asyncio-eventloop.rst:281 library/asyncio-eventloop.rst:313 msgid "" "An instance of :class:`asyncio.TimerHandle` is returned which can be used to " "cancel the callback." @@ -531,8 +528,7 @@ msgstr "" msgid "The socket type will be :py:const:`~socket.SOCK_STREAM`." msgstr "" -#: library/asyncio-eventloop.rst:412 -#: library/asyncio-eventloop.rst:1156 +#: library/asyncio-eventloop.rst:412 library/asyncio-eventloop.rst:1156 #: library/asyncio-eventloop.rst:1172 msgid "" "*protocol_factory* must be a callable returning an :ref:`asyncio protocol " @@ -576,8 +572,7 @@ msgid "" "The created transport is an implementation-dependent bidirectional stream." msgstr "" -#: library/asyncio-eventloop.rst:434 -#: library/asyncio-eventloop.rst:566 +#: library/asyncio-eventloop.rst:434 library/asyncio-eventloop.rst:566 msgid "Other arguments:" msgstr "" @@ -642,8 +637,7 @@ msgid "" "*interleave* and *local_addr* should be specified." msgstr "" -#: library/asyncio-eventloop.rst:482 -#: library/asyncio-eventloop.rst:597 +#: library/asyncio-eventloop.rst:482 library/asyncio-eventloop.rst:597 #: library/asyncio-eventloop.rst:825 msgid "" "The *sock* argument transfers ownership of the socket to the transport " @@ -658,18 +652,15 @@ msgid "" "``getaddrinfo()``, similarly to *host* and *port*." msgstr "" -#: library/asyncio-eventloop.rst:490 -#: library/asyncio-eventloop.rst:919 +#: library/asyncio-eventloop.rst:490 library/asyncio-eventloop.rst:919 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:494 -#: library/asyncio-eventloop.rst:742 -#: library/asyncio-eventloop.rst:836 -#: library/asyncio-eventloop.rst:923 +#: library/asyncio-eventloop.rst:494 library/asyncio-eventloop.rst:742 +#: library/asyncio-eventloop.rst:836 library/asyncio-eventloop.rst:923 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`` " @@ -686,8 +677,7 @@ msgid "" "(even if there is only one)." msgstr "" -#: library/asyncio-eventloop.rst:508 -#: library/asyncio-eventloop.rst:754 +#: library/asyncio-eventloop.rst:508 library/asyncio-eventloop.rst:754 msgid "Added support for SSL/TLS in :class:`ProactorEventLoop`." msgstr "" @@ -697,8 +687,7 @@ msgid "" "by default for all TCP connections." msgstr "" -#: library/asyncio-eventloop.rst:517 -#: library/asyncio-eventloop.rst:846 +#: library/asyncio-eventloop.rst:517 library/asyncio-eventloop.rst:846 msgid "Added the *ssl_handshake_timeout* parameter." msgstr "" @@ -721,12 +710,9 @@ msgstr "" msgid "For more information: https://datatracker.ietf.org/doc/html/rfc6555" msgstr "" -#: library/asyncio-eventloop.rst:536 -#: library/asyncio-eventloop.rst:660 -#: library/asyncio-eventloop.rst:768 -#: library/asyncio-eventloop.rst:803 -#: library/asyncio-eventloop.rst:850 -#: library/asyncio-eventloop.rst:931 +#: library/asyncio-eventloop.rst:536 library/asyncio-eventloop.rst:660 +#: library/asyncio-eventloop.rst:768 library/asyncio-eventloop.rst:803 +#: library/asyncio-eventloop.rst:850 library/asyncio-eventloop.rst:931 msgid "Added the *ssl_shutdown_timeout* parameter." msgstr "" @@ -756,16 +742,14 @@ msgstr "" msgid "The socket type will be :py:const:`~socket.SOCK_DGRAM`." msgstr "" -#: library/asyncio-eventloop.rst:561 -#: library/asyncio-eventloop.rst:685 +#: library/asyncio-eventloop.rst:561 library/asyncio-eventloop.rst:685 #: library/asyncio-eventloop.rst:817 msgid "" "*protocol_factory* must be a callable returning a :ref:`protocol ` implementation." msgstr "" -#: library/asyncio-eventloop.rst:564 -#: library/asyncio-eventloop.rst:642 +#: library/asyncio-eventloop.rst:564 library/asyncio-eventloop.rst:642 msgid "A tuple of ``(transport, protocol)`` is returned on success." msgstr "" @@ -881,8 +865,7 @@ msgid "" "information about arguments to this method." msgstr "" -#: library/asyncio-eventloop.rst:652 -#: library/asyncio-eventloop.rst:794 +#: library/asyncio-eventloop.rst:652 library/asyncio-eventloop.rst:794 #: library/asyncio-eventloop.rst:1225 msgid ":ref:`Availability `: Unix." msgstr "" @@ -1061,8 +1044,7 @@ msgid "" "asyncio but that use asyncio to handle them." msgstr "" -#: library/asyncio-eventloop.rst:815 -#: library/asyncio-eventloop.rst:905 +#: library/asyncio-eventloop.rst:815 library/asyncio-eventloop.rst:905 msgid "Parameters:" msgstr "" @@ -1106,8 +1088,7 @@ msgstr "" msgid "*file* must be a regular file object opened in binary mode." msgstr "" -#: library/asyncio-eventloop.rst:866 -#: library/asyncio-eventloop.rst:1111 +#: library/asyncio-eventloop.rst:866 library/asyncio-eventloop.rst:1111 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 " @@ -1202,8 +1183,7 @@ msgid "" "*callback* with the specified arguments once *fd* is available for writing." msgstr "" -#: library/asyncio-eventloop.rst:955 -#: library/asyncio-eventloop.rst:1212 +#: library/asyncio-eventloop.rst:955 library/asyncio-eventloop.rst:1212 msgid "" "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *callback*." @@ -1244,14 +1224,10 @@ msgstr "" msgid "Return the received data as a bytes object." msgstr "" -#: library/asyncio-eventloop.rst:984 -#: library/asyncio-eventloop.rst:998 -#: library/asyncio-eventloop.rst:1009 -#: library/asyncio-eventloop.rst:1021 -#: library/asyncio-eventloop.rst:1036 -#: library/asyncio-eventloop.rst:1051 -#: library/asyncio-eventloop.rst:1061 -#: library/asyncio-eventloop.rst:1087 +#: library/asyncio-eventloop.rst:984 library/asyncio-eventloop.rst:998 +#: library/asyncio-eventloop.rst:1009 library/asyncio-eventloop.rst:1021 +#: library/asyncio-eventloop.rst:1036 library/asyncio-eventloop.rst:1051 +#: library/asyncio-eventloop.rst:1061 library/asyncio-eventloop.rst:1087 #: library/asyncio-eventloop.rst:1125 msgid "*sock* must be a non-blocking socket." msgstr "" @@ -1308,8 +1284,7 @@ msgid "" "the connection." msgstr "" -#: library/asyncio-eventloop.rst:1038 -#: library/asyncio-eventloop.rst:1089 +#: library/asyncio-eventloop.rst:1038 library/asyncio-eventloop.rst:1089 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 " @@ -1440,8 +1415,7 @@ msgid "" "*protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1165 -#: library/asyncio-eventloop.rst:1181 +#: library/asyncio-eventloop.rst:1165 library/asyncio-eventloop.rst:1181 msgid "" "With :class:`SelectorEventLoop` event loop, the *pipe* is set to non-" "blocking mode." @@ -1785,8 +1759,7 @@ msgstr "" msgid "*stdin* can be any of these:" msgstr "" -#: library/asyncio-eventloop.rst:1460 -#: library/asyncio-eventloop.rst:1471 +#: library/asyncio-eventloop.rst:1460 library/asyncio-eventloop.rst:1471 #: library/asyncio-eventloop.rst:1481 msgid "a file-like object" msgstr "" @@ -1797,24 +1770,21 @@ msgid "" "with :meth:`os.pipe()`" msgstr "" -#: library/asyncio-eventloop.rst:1462 -#: library/asyncio-eventloop.rst:1472 +#: library/asyncio-eventloop.rst:1462 library/asyncio-eventloop.rst:1472 #: library/asyncio-eventloop.rst:1482 msgid "" "the :const:`subprocess.PIPE` constant (default) which will create a new pipe " "and connect it," msgstr "" -#: library/asyncio-eventloop.rst:1464 -#: library/asyncio-eventloop.rst:1474 +#: library/asyncio-eventloop.rst:1464 library/asyncio-eventloop.rst:1474 #: library/asyncio-eventloop.rst:1484 msgid "" "the value ``None`` which will make the subprocess inherit the file " "descriptor from this process" msgstr "" -#: library/asyncio-eventloop.rst:1466 -#: library/asyncio-eventloop.rst:1476 +#: library/asyncio-eventloop.rst:1466 library/asyncio-eventloop.rst:1476 #: library/asyncio-eventloop.rst:1486 msgid "" "the :const:`subprocess.DEVNULL` constant which indicates that the special :" diff --git a/library/asyncio-llapi-index.po b/library/asyncio-llapi-index.po index f0498a2d..14315d66 100644 --- a/library/asyncio-llapi-index.po +++ b/library/asyncio-llapi-index.po @@ -60,8 +60,7 @@ msgstr "" msgid "Create a new event loop." msgstr "" -#: library/asyncio-llapi-index.rst:32 -#: library/asyncio-llapi-index.rst:269 +#: library/asyncio-llapi-index.rst:32 library/asyncio-llapi-index.rst:269 msgid "Examples" msgstr "" @@ -711,8 +710,7 @@ msgstr "" msgid ":meth:`transport.abort() `" msgstr "" -#: library/asyncio-llapi-index.rst:357 -#: library/asyncio-llapi-index.rst:383 +#: library/asyncio-llapi-index.rst:357 library/asyncio-llapi-index.rst:383 msgid "Close the transport immediately." msgstr "" @@ -892,8 +890,7 @@ msgstr "" msgid "``callback`` :meth:`eof_received() `" msgstr "" -#: library/asyncio-llapi-index.rst:450 -#: library/asyncio-llapi-index.rst:465 +#: library/asyncio-llapi-index.rst:450 library/asyncio-llapi-index.rst:465 msgid "Called when an EOF is received." msgstr "" diff --git a/library/asyncio-protocol.po b/library/asyncio-protocol.po index 1a7f31de..20dd6720 100644 --- a/library/asyncio-protocol.po +++ b/library/asyncio-protocol.po @@ -452,8 +452,7 @@ msgstr "" msgid "Write some *data* bytes to the transport." msgstr "" -#: library/asyncio-protocol.rst:333 -#: library/asyncio-protocol.rst:362 +#: 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." @@ -777,8 +776,7 @@ msgid "" "being closed." msgstr "" -#: library/asyncio-protocol.rst:578 -#: library/asyncio-protocol.rst:636 +#: library/asyncio-protocol.rst:578 library/asyncio-protocol.rst:636 msgid "State machine:" msgstr "" diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index 2b1d63a0..2b276224 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -88,13 +88,11 @@ msgstr "" msgid "Added the *happy_eyeballs_delay* and *interleave* parameters." msgstr "" -#: library/asyncio-stream.rst:125 -#: library/asyncio-stream.rst:187 +#: library/asyncio-stream.rst:125 library/asyncio-stream.rst:187 msgid "Removed the *loop* parameter." msgstr "" -#: library/asyncio-stream.rst:128 -#: library/asyncio-stream.rst:190 +#: library/asyncio-stream.rst:128 library/asyncio-stream.rst:190 #: library/asyncio-stream.rst:372 msgid "Added the *ssl_shutdown_timeout* parameter." msgstr "" diff --git a/library/asyncio-subprocess.po b/library/asyncio-subprocess.po index c785d072..e74b0603 100644 --- a/library/asyncio-subprocess.po +++ b/library/asyncio-subprocess.po @@ -62,16 +62,14 @@ msgstr "" msgid "Create a subprocess." msgstr "" -#: library/asyncio-subprocess.rst:69 -#: library/asyncio-subprocess.rst:87 +#: library/asyncio-subprocess.rst:69 library/asyncio-subprocess.rst:87 msgid "" "The *limit* argument sets the buffer limit for :class:`StreamReader` " "wrappers for :attr:`Process.stdout` and :attr:`Process.stderr` (if :const:" "`subprocess.PIPE` is passed to *stdout* and *stderr* arguments)." msgstr "" -#: library/asyncio-subprocess.rst:73 -#: library/asyncio-subprocess.rst:91 +#: library/asyncio-subprocess.rst:73 library/asyncio-subprocess.rst:91 msgid "Return a :class:`~asyncio.subprocess.Process` instance." msgstr "" @@ -80,8 +78,7 @@ msgid "" "See the documentation of :meth:`loop.subprocess_exec` for other parameters." msgstr "" -#: library/asyncio-subprocess.rst:78 -#: library/asyncio-subprocess.rst:105 +#: library/asyncio-subprocess.rst:78 library/asyncio-subprocess.rst:105 msgid "Removed the *loop* parameter." msgstr "" diff --git a/library/asyncio-sync.po b/library/asyncio-sync.po index 20124261..e0cb42ce 100644 --- a/library/asyncio-sync.po +++ b/library/asyncio-sync.po @@ -89,13 +89,11 @@ msgstr "" msgid "The preferred way to use a Lock is an :keyword:`async with` statement::" msgstr "" -#: library/asyncio-sync.rst:199 -#: library/asyncio-sync.rst:298 +#: library/asyncio-sync.rst:199 library/asyncio-sync.rst:298 msgid "which is equivalent to::" msgstr "" -#: library/asyncio-sync.rst:112 -#: library/asyncio-sync.rst:286 +#: library/asyncio-sync.rst:112 library/asyncio-sync.rst:286 #: library/asyncio-sync.rst:341 msgid "Removed the *loop* parameter." msgstr "" diff --git a/library/asyncio-task.po b/library/asyncio-task.po index 7084e77c..59f36ed1 100644 --- a/library/asyncio-task.po +++ b/library/asyncio-task.po @@ -301,10 +301,8 @@ msgid "" "`asyncio.create_task`." msgstr "" -#: library/asyncio-task.rst:472 -#: library/asyncio-task.rst:703 -#: library/asyncio-task.rst:769 -#: library/asyncio-task.rst:868 +#: library/asyncio-task.rst:472 library/asyncio-task.rst:703 +#: library/asyncio-task.rst:769 library/asyncio-task.rst:868 msgid "Example::" msgstr "" @@ -389,8 +387,7 @@ msgid "" "Example of coroutine displaying the current date every second for 5 seconds::" msgstr "" -#: library/asyncio-task.rst:521 -#: library/asyncio-task.rst:794 +#: library/asyncio-task.rst:521 library/asyncio-task.rst:794 #: library/asyncio-task.rst:874 msgid "Removed the *loop* parameter." msgstr "" diff --git a/library/bisect.po b/library/bisect.po index 362009e7..7c4ce512 100644 --- a/library/bisect.po +++ b/library/bisect.po @@ -78,8 +78,7 @@ msgid "" "is called." msgstr "" -#: library/bisect.rst:67 -#: library/bisect.rst:105 +#: library/bisect.rst:67 library/bisect.rst:105 msgid "Added the *key* parameter." msgstr "" diff --git a/library/cgi.po b/library/cgi.po index 18be2808..2e7eeff5 100644 --- a/library/cgi.po +++ b/library/cgi.po @@ -706,8 +706,7 @@ msgstr "" msgid "server" msgstr "" -#: library/cgi.rst:389 -#: library/cgi.rst:462 +#: library/cgi.rst:389 library/cgi.rst:462 msgid "CGI" msgstr "" diff --git a/library/codecs.po b/library/codecs.po index 102254cc..1bbda107 100644 --- a/library/codecs.po +++ b/library/codecs.po @@ -132,8 +132,7 @@ msgid "" "Look up the codec for the given encoding and return its encoder function." msgstr "" -#: library/codecs.rst:120 -#: library/codecs.rst:154 +#: library/codecs.rst:120 library/codecs.rst:154 msgid "Raises a :exc:`LookupError` in case the encoding cannot be found." msgstr "" @@ -361,14 +360,11 @@ msgid "" "encodings` codecs:" msgstr "" -#: library/codecs.rst:373 -#: library/codecs.rst:393 +#: library/codecs.rst:373 library/codecs.rst:393 msgid "Value" msgstr "" -#: library/codecs.rst:373 -#: library/codecs.rst:1330 -#: library/codecs.rst:1455 +#: library/codecs.rst:373 library/codecs.rst:1330 library/codecs.rst:1455 msgid "Meaning" msgstr "" @@ -1367,13 +1363,11 @@ msgstr "" msgid "an IBM PC code page, which is ASCII compatible" msgstr "" -#: library/codecs.rst:1330 -#: library/codecs.rst:1455 +#: library/codecs.rst:1330 library/codecs.rst:1455 msgid "Codec" msgstr "" -#: library/codecs.rst:1330 -#: library/codecs.rst:1455 +#: library/codecs.rst:1330 library/codecs.rst:1455 msgid "Aliases" msgstr "" @@ -1389,8 +1383,7 @@ msgstr "" msgid "646, us-ascii" msgstr "" -#: library/codecs.rst:1083 -#: library/codecs.rst:1091 +#: library/codecs.rst:1083 library/codecs.rst:1091 msgid "English" msgstr "" @@ -1402,8 +1395,7 @@ msgstr "" msgid "big5-tw, csbig5" msgstr "" -#: library/codecs.rst:1081 -#: library/codecs.rst:1139 +#: library/codecs.rst:1081 library/codecs.rst:1139 msgid "Traditional Chinese" msgstr "" @@ -1443,9 +1435,7 @@ msgstr "" msgid "EBCDIC-CP-HE, IBM424" msgstr "" -#: library/codecs.rst:1109 -#: library/codecs.rst:1162 -#: library/codecs.rst:1225 +#: library/codecs.rst:1109 library/codecs.rst:1162 library/codecs.rst:1225 msgid "Hebrew" msgstr "" @@ -1465,9 +1455,7 @@ msgstr "" msgid "EBCDIC-CP-BE, EBCDIC-CP-CH, IBM500" msgstr "" -#: library/codecs.rst:1102 -#: library/codecs.rst:1149 -#: library/codecs.rst:1209 +#: library/codecs.rst:1102 library/codecs.rst:1149 library/codecs.rst:1209 #: library/codecs.rst:1265 msgid "Western Europe" msgstr "" @@ -1476,8 +1464,7 @@ msgstr "" msgid "cp720" msgstr "" -#: library/codecs.rst:1123 -#: library/codecs.rst:1221 +#: library/codecs.rst:1123 library/codecs.rst:1221 msgid "Arabic" msgstr "" @@ -1485,9 +1472,7 @@ msgstr "" msgid "cp737" msgstr "" -#: library/codecs.rst:1129 -#: library/codecs.rst:1158 -#: library/codecs.rst:1258 +#: library/codecs.rst:1129 library/codecs.rst:1158 library/codecs.rst:1258 msgid "Greek" msgstr "" @@ -1499,8 +1484,7 @@ msgstr "" msgid "IBM775" msgstr "" -#: library/codecs.rst:1166 -#: library/codecs.rst:1233 +#: library/codecs.rst:1166 library/codecs.rst:1233 msgid "Baltic languages" msgstr "" @@ -1520,8 +1504,7 @@ msgstr "" msgid "852, IBM852" msgstr "" -#: library/codecs.rst:1151 -#: library/codecs.rst:1262 +#: library/codecs.rst:1151 library/codecs.rst:1262 msgid "Central and Eastern Europe" msgstr "" @@ -1533,8 +1516,7 @@ msgstr "" msgid "855, IBM855" msgstr "" -#: library/codecs.rst:1153 -#: library/codecs.rst:1255 +#: library/codecs.rst:1153 library/codecs.rst:1255 msgid "Bulgarian, Byelorussian, Macedonian, Russian, Serbian" msgstr "" @@ -1550,9 +1532,7 @@ msgstr "" msgid "857, IBM857" msgstr "" -#: library/codecs.rst:1143 -#: library/codecs.rst:1227 -#: library/codecs.rst:1267 +#: library/codecs.rst:1143 library/codecs.rst:1227 library/codecs.rst:1267 msgid "Turkish" msgstr "" @@ -1668,12 +1648,8 @@ msgstr "" msgid "932, ms932, mskanji, ms-kanji" msgstr "" -#: library/codecs.rst:1170 -#: library/codecs.rst:1174 -#: library/codecs.rst:1194 -#: library/codecs.rst:1202 -#: library/codecs.rst:1272 -#: library/codecs.rst:1278 +#: library/codecs.rst:1170 library/codecs.rst:1174 library/codecs.rst:1194 +#: library/codecs.rst:1202 library/codecs.rst:1272 library/codecs.rst:1278 msgid "Japanese" msgstr "" @@ -1685,8 +1661,7 @@ msgstr "" msgid "949, ms949, uhc" msgstr "" -#: library/codecs.rst:1176 -#: library/codecs.rst:1241 +#: library/codecs.rst:1176 library/codecs.rst:1241 msgid "Korean" msgstr "" @@ -2208,11 +2183,8 @@ msgstr "" msgid "U32, utf32" msgstr "" -#: library/codecs.rst:1283 -#: library/codecs.rst:1287 -#: library/codecs.rst:1291 -#: library/codecs.rst:1295 -#: library/codecs.rst:1297 +#: library/codecs.rst:1283 library/codecs.rst:1287 library/codecs.rst:1291 +#: library/codecs.rst:1295 library/codecs.rst:1297 msgid "all languages" msgstr "" @@ -2702,8 +2674,7 @@ msgstr "" msgid "strict" msgstr "" -#: library/codecs.rst:364 -#: library/codecs.rst:387 +#: library/codecs.rst:364 library/codecs.rst:387 msgid "error handler's name" msgstr "" diff --git a/library/collections.abc.po b/library/collections.abc.po index 1287f4f5..781c5039 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -137,8 +137,7 @@ msgstr "" msgid ":class:`Iterable` [1]_ [2]_" msgstr "" -#: library/collections.abc.rst:125 -#: library/collections.abc.rst:126 +#: library/collections.abc.rst:125 library/collections.abc.rst:126 msgid "``__iter__``" msgstr "" @@ -146,8 +145,7 @@ msgstr "" msgid ":class:`Iterator` [1]_" msgstr "" -#: library/collections.abc.rst:126 -#: library/collections.abc.rst:127 +#: library/collections.abc.rst:126 library/collections.abc.rst:127 msgid ":class:`Iterable`" msgstr "" @@ -171,8 +169,7 @@ msgstr "" msgid ":class:`Iterator`" msgstr "" -#: library/collections.abc.rst:128 -#: library/collections.abc.rst:176 +#: library/collections.abc.rst:128 library/collections.abc.rst:176 msgid "``send``, ``throw``" msgstr "" @@ -184,8 +181,7 @@ msgstr "" msgid ":class:`Sized` [1]_" msgstr "" -#: library/collections.abc.rst:129 -#: library/collections.abc.rst:168 +#: library/collections.abc.rst:129 library/collections.abc.rst:168 msgid "``__len__``" msgstr "" @@ -205,13 +201,11 @@ msgstr "" msgid ":class:`Sized`, :class:`Iterable`, :class:`Container`" msgstr "" -#: library/collections.abc.rst:131 -#: library/collections.abc.rst:147 +#: library/collections.abc.rst:131 library/collections.abc.rst:147 msgid "``__contains__``, ``__iter__``, ``__len__``" msgstr "" -#: library/collections.abc.rst:135 -#: library/collections.abc.rst:138 +#: library/collections.abc.rst:135 library/collections.abc.rst:138 #: library/collections.abc.rst:144 msgid ":class:`Sequence`" msgstr "" @@ -220,8 +214,7 @@ msgstr "" msgid ":class:`Reversible`, :class:`Collection`" msgstr "" -#: library/collections.abc.rst:135 -#: library/collections.abc.rst:144 +#: library/collections.abc.rst:135 library/collections.abc.rst:144 msgid "``__getitem__``, ``__len__``" msgstr "" @@ -253,13 +246,11 @@ msgstr "" msgid "Inherited :class:`Sequence` methods" msgstr "" -#: library/collections.abc.rst:147 -#: library/collections.abc.rst:151 +#: library/collections.abc.rst:147 library/collections.abc.rst:151 msgid ":class:`Set`" msgstr "" -#: library/collections.abc.rst:147 -#: library/collections.abc.rst:157 +#: library/collections.abc.rst:147 library/collections.abc.rst:157 msgid ":class:`Collection`" msgstr "" @@ -283,8 +274,7 @@ msgid "" "``__ior__``, ``__iand__``, ``__ixor__``, and ``__isub__``" msgstr "" -#: library/collections.abc.rst:157 -#: library/collections.abc.rst:161 +#: library/collections.abc.rst:157 library/collections.abc.rst:161 msgid ":class:`Mapping`" msgstr "" @@ -325,13 +315,11 @@ msgstr "" msgid ":class:`ItemsView`" msgstr "" -#: library/collections.abc.rst:169 -#: library/collections.abc.rst:171 +#: 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:169 library/collections.abc.rst:171 #: library/collections.abc.rst:173 msgid "``__contains__``, ``__iter__``" msgstr "" @@ -372,8 +360,7 @@ msgstr "" msgid ":class:`AsyncIterable` [1]_" msgstr "" -#: library/collections.abc.rst:177 -#: library/collections.abc.rst:178 +#: library/collections.abc.rst:177 library/collections.abc.rst:178 msgid "``__aiter__``" msgstr "" diff --git a/library/compileall.po b/library/compileall.po index 9f47caae..cf4c49a8 100644 --- a/library/compileall.po +++ b/library/compileall.po @@ -297,13 +297,11 @@ msgstr "" msgid "Added the *workers* parameter." msgstr "" -#: library/compileall.rst:281 -#: library/compileall.rst:310 +#: library/compileall.rst:281 library/compileall.rst:310 msgid "*quiet* parameter was changed to a multilevel value." msgstr "" -#: library/compileall.rst:284 -#: library/compileall.rst:313 +#: library/compileall.rst:284 library/compileall.rst:313 msgid "" "The *legacy* parameter only writes out ``.pyc`` files, not ``.pyo`` files no " "matter what the value of *optimize* is." @@ -313,13 +311,11 @@ msgstr "" msgid "Accepts a :term:`path-like object`." msgstr "" -#: library/compileall.rst:288 -#: library/compileall.rst:317 +#: library/compileall.rst:288 library/compileall.rst:317 msgid "The *invalidation_mode* parameter was added." msgstr "" -#: library/compileall.rst:291 -#: library/compileall.rst:320 +#: library/compileall.rst:291 library/compileall.rst:320 msgid "The *invalidation_mode* parameter's default value is updated to None." msgstr "" diff --git a/library/concurrent.futures.po b/library/concurrent.futures.po index 87e122fd..a7b7b065 100644 --- a/library/concurrent.futures.po +++ b/library/concurrent.futures.po @@ -216,8 +216,7 @@ msgid "" "easier debugging." msgstr "" -#: library/concurrent.futures.rst:179 -#: library/concurrent.futures.rst:283 +#: library/concurrent.futures.rst:179 library/concurrent.futures.rst:283 msgid "Added the *initializer* and *initargs* arguments." msgstr "" @@ -392,8 +391,7 @@ msgid "" "no limit to the wait time." msgstr "" -#: library/concurrent.futures.rst:387 -#: library/concurrent.futures.rst:401 +#: library/concurrent.futures.rst:387 library/concurrent.futures.rst:401 msgid "" "If the future is cancelled before completing then :exc:`.CancelledError` " "will be raised." @@ -478,15 +476,13 @@ msgid "" "Sets the result of the work associated with the :class:`Future` to *result*." msgstr "" -#: library/concurrent.futures.rst:448 -#: library/concurrent.futures.rst:461 +#: library/concurrent.futures.rst:448 library/concurrent.futures.rst:461 msgid "" "This method should only be used by :class:`Executor` implementations and " "unit tests." msgstr "" -#: library/concurrent.futures.rst:451 -#: library/concurrent.futures.rst:464 +#: library/concurrent.futures.rst:451 library/concurrent.futures.rst:464 msgid "" "This method raises :exc:`concurrent.futures.InvalidStateError` if the :class:" "`Future` is already done." diff --git a/library/contextlib.po b/library/contextlib.po index 4d1464c6..62c6e6f8 100644 --- a/library/contextlib.po +++ b/library/contextlib.po @@ -252,8 +252,7 @@ msgstr "" msgid "This code is equivalent to::" msgstr "" -#: library/contextlib.rst:360 -#: library/contextlib.rst:387 +#: library/contextlib.rst:360 library/contextlib.rst:387 msgid "This context manager is :ref:`reentrant `." msgstr "" diff --git a/library/crypt.po b/library/crypt.po index 39dd21cf..6f216e7e 100644 --- a/library/crypt.po +++ b/library/crypt.po @@ -208,8 +208,7 @@ msgid "" "check it against the original::" msgstr "" -#: library/crypt.rst:33 -#: library/crypt.rst:119 +#: library/crypt.rst:33 library/crypt.rst:119 msgid "crypt(3)" msgstr "" diff --git a/library/csv.po b/library/csv.po index ff63d75f..3f1f9816 100644 --- a/library/csv.po +++ b/library/csv.po @@ -94,8 +94,7 @@ msgid "" "into floats)." msgstr "" -#: library/csv.rst:106 -#: library/csv.rst:217 +#: library/csv.rst:106 library/csv.rst:217 msgid "A short usage example::" msgstr "" diff --git a/library/ctypes.po b/library/ctypes.po index 6d2ba944..7edd1cba 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -267,12 +267,8 @@ msgstr "" msgid ":class:`c_byte`" msgstr "" -#: library/ctypes.rst:228 -#: library/ctypes.rst:232 -#: library/ctypes.rst:236 -#: library/ctypes.rst:240 -#: library/ctypes.rst:244 -#: library/ctypes.rst:249 +#: library/ctypes.rst:228 library/ctypes.rst:232 library/ctypes.rst:236 +#: library/ctypes.rst:240 library/ctypes.rst:244 library/ctypes.rst:249 #: library/ctypes.rst:252 msgid "int" msgstr "" @@ -381,8 +377,7 @@ msgstr "" msgid ":c:expr:`float`" msgstr "" -#: library/ctypes.rst:256 -#: library/ctypes.rst:258 +#: library/ctypes.rst:256 library/ctypes.rst:258 msgid "float" msgstr "" @@ -1309,8 +1304,7 @@ msgid "" "determine which one is not found using Windows debugging and tracing tools." msgstr "" -#: library/ctypes.rst:1407 -#: library/ctypes.rst:1435 +#: library/ctypes.rst:1407 library/ctypes.rst:1435 msgid "The *name* parameter can now be a :term:`path-like object`." msgstr "" diff --git a/library/curses.po b/library/curses.po index 41aaaece..2e17e551 100644 --- a/library/curses.po +++ b/library/curses.po @@ -1520,8 +1520,7 @@ msgstr "" msgid "Attribute" msgstr "" -#: library/curses.rst:1417 -#: library/curses.rst:1755 +#: library/curses.rst:1417 library/curses.rst:1755 msgid "Meaning" msgstr "" @@ -2025,8 +2024,7 @@ msgstr "" msgid "Keycap" msgstr "" -#: library/curses.rst:1781 -#: library/curses.rst:1905 +#: library/curses.rst:1781 library/curses.rst:1905 msgid "Constant" msgstr "" diff --git a/library/datetime.po b/library/datetime.po index e43cb256..addc0c4e 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -369,9 +369,7 @@ msgid "" "example::" msgstr "" -#: library/datetime.rst:546 -#: library/datetime.rst:1696 -#: library/datetime.rst:2298 +#: library/datetime.rst:546 library/datetime.rst:1696 library/datetime.rst:2298 msgid "Class attributes:" msgstr "" @@ -397,8 +395,7 @@ msgid "" "``-timedelta.max`` is not representable as a :class:`timedelta` object." msgstr "" -#: library/datetime.rst:564 -#: library/datetime.rst:1716 +#: library/datetime.rst:564 library/datetime.rst:1716 msgid "Instance attributes (read-only):" msgstr "" @@ -434,18 +431,15 @@ msgstr "" msgid "Between 0 and 999999 inclusive" msgstr "" -#: library/datetime.rst:581 -#: library/datetime.rst:1138 +#: library/datetime.rst:581 library/datetime.rst:1138 msgid "Supported operations:" msgstr "" -#: library/datetime.rst:584 -#: library/datetime.rst:1141 +#: library/datetime.rst:584 library/datetime.rst:1141 msgid "Operation" msgstr "" -#: library/datetime.rst:584 -#: library/datetime.rst:1141 +#: library/datetime.rst:584 library/datetime.rst:1141 msgid "Result" msgstr "" @@ -589,8 +583,7 @@ msgid "" "constructor call with canonical attribute values." msgstr "" -#: library/datetime.rst:603 -#: library/datetime.rst:2529 +#: library/datetime.rst:603 library/datetime.rst:2529 msgid "Notes:" msgstr "" @@ -649,8 +642,7 @@ msgid "" "and only if it isn't equal to ``timedelta(0)``." msgstr "" -#: library/datetime.rst:629 -#: library/datetime.rst:1823 +#: library/datetime.rst:629 library/datetime.rst:1823 msgid "Instance methods:" msgstr "" @@ -788,8 +780,7 @@ msgstr "" msgid "Ordinal dates are not currently supported (``YYYY-OOO``)." msgstr "" -#: library/datetime.rst:1011 -#: library/datetime.rst:1452 +#: library/datetime.rst:1011 library/datetime.rst:1452 msgid "Examples::" msgstr "" @@ -1115,8 +1106,7 @@ msgstr "" msgid "``fold in [0, 1]``." msgstr "" -#: library/datetime.rst:1258 -#: library/datetime.rst:1833 +#: library/datetime.rst:1258 library/datetime.rst:1833 msgid "Added the *fold* parameter." msgstr "" @@ -1377,8 +1367,7 @@ msgstr "" msgid "In ``range(24)``." msgstr "" -#: library/datetime.rst:1114 -#: library/datetime.rst:1730 +#: library/datetime.rst:1114 library/datetime.rst:1730 msgid "In ``range(60)``." msgstr "" @@ -1405,10 +1394,8 @@ msgstr "" msgid "``datetime2 = datetime1 + timedelta``" msgstr "" -#: library/datetime.rst:2356 -#: library/datetime.rst:2373 -#: library/datetime.rst:2438 -#: library/datetime.rst:2447 +#: library/datetime.rst:2356 library/datetime.rst:2373 +#: library/datetime.rst:2438 library/datetime.rst:2447 msgid "\\(1)" msgstr "" @@ -1635,8 +1622,7 @@ msgid "" "``None`` or a :class:`timedelta` object with magnitude less than one day." msgstr "" -#: library/datetime.rst:1906 -#: library/datetime.rst:2258 +#: library/datetime.rst:1906 library/datetime.rst:2258 #: library/datetime.rst:2582 msgid "The UTC offset is not restricted to a whole number of minutes." msgstr "" @@ -1648,8 +1634,7 @@ msgid "" "or a :class:`timedelta` object with magnitude less than one day." msgstr "" -#: library/datetime.rst:1916 -#: library/datetime.rst:2067 +#: library/datetime.rst:1916 library/datetime.rst:2067 msgid "The DST offset is not restricted to a whole number of minutes." msgstr "" @@ -2648,10 +2633,8 @@ msgstr "" msgid "01, 02, ..., 31" msgstr "" -#: library/datetime.rst:2383 -#: library/datetime.rst:2392 -#: library/datetime.rst:2401 -#: library/datetime.rst:2419 +#: library/datetime.rst:2383 library/datetime.rst:2392 +#: library/datetime.rst:2401 library/datetime.rst:2419 msgid "\\(9)" msgstr "" @@ -2817,8 +2800,7 @@ msgstr "" msgid "(empty), +0000, -0400, +1030, +063415, -030712.345216" msgstr "" -#: library/datetime.rst:2416 -#: library/datetime.rst:2473 +#: library/datetime.rst:2416 library/datetime.rst:2473 msgid "\\(6)" msgstr "" diff --git a/library/dbm.po b/library/dbm.po index c9f11998..7583e714 100644 --- a/library/dbm.po +++ b/library/dbm.po @@ -66,8 +66,7 @@ msgid "" "``'dbm.gnu'``" msgstr "" -#: library/dbm.rst:202 -#: library/dbm.rst:386 +#: library/dbm.rst:202 library/dbm.rst:386 msgid "*filename* accepts a :term:`path-like object`." msgstr "" @@ -104,28 +103,23 @@ msgid "" "``'n'``: |flag_n|" msgstr "" -#: library/dbm.rst:179 -#: library/dbm.rst:298 +#: library/dbm.rst:179 library/dbm.rst:298 msgid "``'r'`` (default): |flag_r|" msgstr "" -#: library/dbm.rst:180 -#: library/dbm.rst:367 +#: library/dbm.rst:180 library/dbm.rst:367 msgid "``'w'``: |flag_w|" msgstr "" -#: library/dbm.rst:181 -#: library/dbm.rst:300 +#: library/dbm.rst:181 library/dbm.rst:300 msgid "``'c'``: |flag_c|" msgstr "" -#: library/dbm.rst:182 -#: library/dbm.rst:369 +#: library/dbm.rst:182 library/dbm.rst:369 msgid "``'n'``: |flag_n|" msgstr "" -#: library/dbm.rst:196 -#: library/dbm.rst:371 +#: library/dbm.rst:196 library/dbm.rst:371 msgid "|mode_param_doc|" msgstr "" diff --git a/library/decimal.po b/library/decimal.po index 1d3055d4..dc70e6b1 100644 --- a/library/decimal.po +++ b/library/decimal.po @@ -452,8 +452,7 @@ msgid "" "details of the total order." msgstr "" -#: library/decimal.rst:531 -#: library/decimal.rst:846 +#: library/decimal.rst:531 library/decimal.rst:846 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 " diff --git a/library/dis.po b/library/dis.po index 1675255f..795f2b72 100644 --- a/library/dis.po +++ b/library/dis.po @@ -191,14 +191,11 @@ msgid "" "code object, like :func:`code_info`." msgstr "" -#: library/dis.rst:194 -#: library/dis.rst:246 +#: library/dis.rst:194 library/dis.rst:246 msgid "This can now handle coroutine and asynchronous generator objects." msgstr "" -#: library/dis.rst:249 -#: library/dis.rst:292 -#: library/dis.rst:313 +#: library/dis.rst:249 library/dis.rst:292 library/dis.rst:313 msgid "Added the *show_caches* and *adaptive* parameters." msgstr "" @@ -245,8 +242,7 @@ msgid "" "intended for interactive exploration at the interpreter prompt." msgstr "" -#: library/dis.rst:240 -#: library/dis.rst:289 +#: library/dis.rst:240 library/dis.rst:289 msgid "Added *file* parameter." msgstr "" @@ -266,8 +262,7 @@ msgid "" "disassembles the last traceback." msgstr "" -#: library/dis.rst:259 -#: library/dis.rst:286 +#: library/dis.rst:259 library/dis.rst:286 msgid "" "The disassembly is written as text to the supplied *file* argument if " "provided and to ``sys.stdout`` otherwise." @@ -589,12 +584,8 @@ msgid "" "*op*)::" msgstr "" -#: library/dis.rst:576 -#: library/dis.rst:594 -#: library/dis.rst:694 -#: library/dis.rst:714 -#: library/dis.rst:945 -#: library/dis.rst:1057 +#: library/dis.rst:576 library/dis.rst:594 library/dis.rst:694 +#: library/dis.rst:714 library/dis.rst:945 library/dis.rst:1057 #: library/dis.rst:1069 msgid "Implements::" msgstr "" @@ -651,8 +642,7 @@ msgid "" "is not :exc:`StopAsyncIteration`, it is re-raised." msgstr "" -#: library/dis.rst:770 -#: library/dis.rst:781 +#: library/dis.rst:770 library/dis.rst:781 msgid "" "Exception representation on the stack now consist of one, not three, items." msgstr "" @@ -1100,8 +1090,7 @@ msgid "" "versions (forward/backward)." msgstr "" -#: library/dis.rst:1205 -#: library/dis.rst:1232 +#: library/dis.rst:1205 library/dis.rst:1232 msgid "This is no longer a pseudo-instruction." msgstr "" @@ -1212,8 +1201,7 @@ msgid "" "Pushes a reference to the object the cell contains on the stack." msgstr "" -#: library/dis.rst:1334 -#: library/dis.rst:1345 +#: library/dis.rst:1334 library/dis.rst:1345 msgid "" "``i`` is no longer offset by the length of :attr:`~codeobject.co_varnames`." msgstr "" diff --git a/library/email.compat32-message.po b/library/email.compat32-message.po index c4fec44f..3ad63734 100644 --- a/library/email.compat32-message.po +++ b/library/email.compat32-message.po @@ -111,8 +111,7 @@ msgid "" "*policy* will be passed to the ``Generator``." msgstr "" -#: library/email.compat32-message.rst:79 -#: library/email.compat32-message.rst:121 +#: library/email.compat32-message.rst:79 library/email.compat32-message.rst:121 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 " diff --git a/library/email.generator.po b/library/email.generator.po index 059546e4..b655623c 100644 --- a/library/email.generator.po +++ b/library/email.generator.po @@ -139,8 +139,7 @@ msgid "" "rendering them RFC-compliant." msgstr "" -#: library/email.generator.rst:104 -#: library/email.generator.rst:197 +#: 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` " @@ -149,8 +148,7 @@ msgid "" "subparts, no envelope header is ever printed." msgstr "" -#: library/email.generator.rst:110 -#: library/email.generator.rst:203 +#: 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), " diff --git a/library/email.headerregistry.po b/library/email.headerregistry.po index 3c67adee..6343fade 100644 --- a/library/email.headerregistry.po +++ b/library/email.headerregistry.po @@ -183,8 +183,7 @@ msgid "" "wild\"." msgstr "" -#: library/email.headerregistry.rst:146 -#: library/email.headerregistry.rst:188 +#: library/email.headerregistry.rst:146 library/email.headerregistry.rst:188 msgid "This header type provides the following additional attributes:" msgstr "" @@ -381,8 +380,7 @@ msgstr "" msgid "date" msgstr "" -#: library/email.headerregistry.rst:325 -#: library/email.headerregistry.rst:327 +#: library/email.headerregistry.rst:325 library/email.headerregistry.rst:327 msgid "UniqueDateHeader" msgstr "" @@ -418,10 +416,8 @@ msgstr "" msgid "to" msgstr "" -#: library/email.headerregistry.rst:330 -#: library/email.headerregistry.rst:332 -#: library/email.headerregistry.rst:334 -#: library/email.headerregistry.rst:336 +#: library/email.headerregistry.rst:330 library/email.headerregistry.rst:332 +#: library/email.headerregistry.rst:334 library/email.headerregistry.rst:336 #: library/email.headerregistry.rst:338 msgid "UniqueAddressHeader" msgstr "" @@ -430,10 +426,8 @@ msgstr "" msgid "resent-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:331 library/email.headerregistry.rst:333 +#: library/email.headerregistry.rst:335 library/email.headerregistry.rst:337 msgid "AddressHeader" msgstr "" diff --git a/library/email.mime.po b/library/email.mime.po index c074b64a..1b1e56aa 100644 --- a/library/email.mime.po +++ b/library/email.mime.po @@ -90,10 +90,8 @@ msgid "" "Version` header (always set to ``1.0``)." msgstr "" -#: library/email.mime.rst:104 -#: library/email.mime.rst:169 -#: library/email.mime.rst:225 -#: library/email.mime.rst:259 +#: library/email.mime.rst:104 library/email.mime.rst:169 +#: library/email.mime.rst:225 library/email.mime.rst:259 msgid "Added *policy* keyword-only parameter." msgstr "" @@ -140,8 +138,7 @@ msgid "" "Message.attach>` method." msgstr "" -#: library/email.mime.rst:131 -#: library/email.mime.rst:200 +#: library/email.mime.rst:131 library/email.mime.rst:200 #: library/email.mime.rst:254 msgid "" "Optional *policy* argument defaults to :class:`compat32 ` shows this warning." @@ -1134,8 +1133,7 @@ msgstr "" msgid "The class hierarchy for built-in exceptions is:" msgstr "" -#: library/exceptions.rst:17 -#: library/exceptions.rst:196 +#: library/exceptions.rst:17 library/exceptions.rst:196 msgid "statement" msgstr "" diff --git a/library/faulthandler.po b/library/faulthandler.po index a8300871..b004df08 100644 --- a/library/faulthandler.po +++ b/library/faulthandler.po @@ -123,8 +123,7 @@ msgid "" ":func:`traceback.print_tb`, which can be used to print a traceback object." msgstr "" -#: library/faulthandler.rst:82 -#: library/faulthandler.rst:146 +#: library/faulthandler.rst:82 library/faulthandler.rst:146 msgid "Added support for passing file descriptor to this function." msgstr "" diff --git a/library/fileinput.po b/library/fileinput.po index 59770dd4..2b8d01f3 100644 --- a/library/fileinput.po +++ b/library/fileinput.po @@ -115,8 +115,7 @@ msgstr "" msgid "The keyword parameters *mode* and *openhook* are now keyword-only." msgstr "" -#: library/fileinput.rst:176 -#: library/fileinput.rst:210 +#: library/fileinput.rst:176 library/fileinput.rst:210 msgid "The keyword-only parameter *encoding* and *errors* are added." msgstr "" diff --git a/library/ftplib.po b/library/ftplib.po index 5f25035e..9ceaefca 100644 --- a/library/ftplib.po +++ b/library/ftplib.po @@ -81,13 +81,11 @@ msgid "" "called by the constructor." msgstr "" -#: library/ftplib.rst:212 -#: library/ftplib.rst:470 +#: library/ftplib.rst:212 library/ftplib.rst:470 msgid "|param_doc_passwd|" msgstr "" -#: library/ftplib.rst:215 -#: library/ftplib.rst:473 +#: library/ftplib.rst:215 library/ftplib.rst:473 msgid "|param_doc_acct|" msgstr "" @@ -97,8 +95,7 @@ msgid "" "the global default timeout setting)." msgstr "" -#: library/ftplib.rst:183 -#: library/ftplib.rst:488 +#: library/ftplib.rst:183 library/ftplib.rst:488 msgid "|param_doc_source_address|" msgstr "" diff --git a/library/functions.po b/library/functions.po index c6b227de..6ac68088 100644 --- a/library/functions.po +++ b/library/functions.po @@ -460,8 +460,7 @@ msgid "" "ways." msgstr "" -#: library/functions.rst:845 -#: library/functions.rst:1163 +#: library/functions.rst:845 library/functions.rst:1163 msgid "See also :func:`format` for more information." msgstr "" @@ -475,8 +474,7 @@ msgid "" "``True`` (see :ref:`typebool`)." msgstr "" -#: library/functions.rst:710 -#: library/functions.rst:934 +#: library/functions.rst:710 library/functions.rst:934 msgid "*x* is now a positional-only parameter." msgstr "" @@ -806,8 +804,7 @@ msgstr "" msgid "The complex type is described in :ref:`typesnumeric`." msgstr "" -#: library/functions.rst:707 -#: library/functions.rst:931 +#: library/functions.rst:707 library/functions.rst:931 msgid "Grouping digits with underscores as in code literals is allowed." msgstr "" diff --git a/library/functools.po b/library/functools.po index 895bbfe2..d02b519f 100644 --- a/library/functools.po +++ b/library/functools.po @@ -77,8 +77,7 @@ msgid "" "computed properties of instances that are otherwise effectively immutable." msgstr "" -#: library/functools.rst:142 -#: library/functools.rst:383 +#: library/functools.rst:142 library/functools.rst:383 msgid "Example::" msgstr "" diff --git a/library/http.client.po b/library/http.client.po index 6394c1a6..2c8a4683 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -196,8 +196,7 @@ msgid "" "exc:`Exception`." msgstr "" -#: library/http.client.rst:164 -#: library/http.client.rst:174 +#: library/http.client.rst:164 library/http.client.rst:174 #: library/http.client.rst:184 msgid "A subclass of :exc:`HTTPException`." msgstr "" @@ -208,8 +207,7 @@ msgid "" "non-numeric or empty." msgstr "" -#: library/http.client.rst:194 -#: library/http.client.rst:199 +#: library/http.client.rst:194 library/http.client.rst:199 msgid "A subclass of :exc:`ImproperConnectionState`." msgstr "" diff --git a/library/http.cookies.po b/library/http.cookies.po index 71560e20..149b851e 100644 --- a/library/http.cookies.po +++ b/library/http.cookies.po @@ -143,8 +143,7 @@ msgid "" "supports JavaScript, will act the same as if the HTTP headers was sent." msgstr "" -#: library/http.cookies.rst:207 -#: library/http.cookies.rst:215 +#: library/http.cookies.rst:207 library/http.cookies.rst:215 msgid "The meaning for *attrs* is the same as in :meth:`output`." msgstr "" diff --git a/library/http.po b/library/http.po index dd5816c7..24e4e4bd 100644 --- a/library/http.po +++ b/library/http.po @@ -64,8 +64,7 @@ msgid "" "reason phrases and long descriptions written in English." msgstr "" -#: library/http.rst:157 -#: library/http.rst:171 +#: library/http.rst:157 library/http.rst:171 msgid "Usage::" msgstr "" @@ -88,8 +87,7 @@ msgstr "" msgid "Enum Name" msgstr "" -#: library/http.rst:148 -#: library/http.rst:204 +#: library/http.rst:148 library/http.rst:204 msgid "Details" msgstr "" @@ -665,8 +663,7 @@ msgstr "" msgid "``PRECONDITION_REQUIRED``" msgstr "" -#: library/http.rst:110 -#: library/http.rst:111 +#: library/http.rst:110 library/http.rst:111 msgid "Additional HTTP Status Codes :rfc:`6585`" msgstr "" @@ -879,9 +876,7 @@ msgstr "" msgid "``100 <= status <= 199``" msgstr "" -#: library/http.rst:151 -#: library/http.rst:153 -#: library/http.rst:154 +#: library/http.rst:151 library/http.rst:153 library/http.rst:154 msgid "HTTP/1.1 :rfc:`7231`, Section 6" msgstr "" diff --git a/library/idle.po b/library/idle.po index f5515e56..1d9ed1a8 100644 --- a/library/idle.po +++ b/library/idle.po @@ -238,8 +238,7 @@ msgstr "" msgid "Select the entire contents of the current window." msgstr "" -#: library/idle.rst:353 -#: library/idle.rst:368 +#: library/idle.rst:353 library/idle.rst:368 msgid "Cut" msgstr "" @@ -248,8 +247,7 @@ msgid "" "Copy selection into the system-wide clipboard; then delete the selection." msgstr "" -#: library/idle.rst:353 -#: library/idle.rst:371 +#: library/idle.rst:353 library/idle.rst:371 msgid "Copy" msgstr "" @@ -257,8 +255,7 @@ msgstr "" msgid "Copy selection into the system-wide clipboard." msgstr "" -#: library/idle.rst:353 -#: library/idle.rst:374 +#: library/idle.rst:353 library/idle.rst:374 msgid "Paste" msgstr "" diff --git a/library/importlib.po b/library/importlib.po index 9ab1f42e..81aff00c 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -632,8 +632,7 @@ msgid "" "cannot find the module specified." msgstr "" -#: library/importlib.rst:466 -#: library/importlib.rst:516 +#: library/importlib.rst:466 library/importlib.rst:516 msgid "Raises :exc:`ImportError` instead of :exc:`NotImplementedError`." msgstr "" @@ -1093,8 +1092,7 @@ msgid "" "`importlib.abc.MetaPathFinder` and :class:`importlib.abc.InspectLoader` ABCs." msgstr "" -#: library/importlib.rst:892 -#: library/importlib.rst:920 +#: library/importlib.rst:892 library/importlib.rst:920 msgid "" "Only class methods are defined by this class to alleviate the need for " "instantiation." @@ -1523,8 +1521,7 @@ msgid "" "was deprecated." msgstr "" -#: library/importlib.rst:1312 -#: library/importlib.rst:1401 +#: library/importlib.rst:1312 library/importlib.rst:1401 msgid "Accepts a :term:`path-like object`." msgstr "" diff --git a/library/importlib.resources.po b/library/importlib.resources.po index 4ae30ba8..9b20c5c9 100644 --- a/library/importlib.resources.po +++ b/library/importlib.resources.po @@ -183,12 +183,9 @@ msgid "" "BinaryIO`` instance, a binary I/O stream open for reading." msgstr "" -#: library/importlib.resources.rst:143 -#: library/importlib.resources.rst:164 -#: library/importlib.resources.rst:182 -#: library/importlib.resources.rst:201 -#: library/importlib.resources.rst:237 -#: library/importlib.resources.rst:253 +#: library/importlib.resources.rst:143 library/importlib.resources.rst:164 +#: library/importlib.resources.rst:182 library/importlib.resources.rst:201 +#: library/importlib.resources.rst:237 library/importlib.resources.rst:253 msgid "Calls to this function can be replaced by::" msgstr "" diff --git a/library/inspect.po b/library/inspect.po index a9688f90..14917434 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -71,19 +71,15 @@ msgstr "" msgid "class" msgstr "" -#: library/inspect.rst:58 -#: library/inspect.rst:238 +#: library/inspect.rst:58 library/inspect.rst:238 msgid "__doc__" msgstr "" -#: library/inspect.rst:58 -#: library/inspect.rst:238 +#: library/inspect.rst:58 library/inspect.rst:238 msgid "documentation string" msgstr "" -#: library/inspect.rst:60 -#: library/inspect.rst:207 -#: library/inspect.rst:240 +#: library/inspect.rst:60 library/inspect.rst:207 library/inspect.rst:240 msgid "__name__" msgstr "" @@ -91,20 +87,15 @@ msgstr "" msgid "name with which this class was defined" msgstr "" -#: library/inspect.rst:63 -#: library/inspect.rst:209 -#: library/inspect.rst:243 +#: library/inspect.rst:63 library/inspect.rst:209 library/inspect.rst:243 msgid "__qualname__" msgstr "" -#: library/inspect.rst:63 -#: library/inspect.rst:209 -#: library/inspect.rst:243 +#: library/inspect.rst:63 library/inspect.rst:209 library/inspect.rst:243 msgid "qualified name" msgstr "" -#: library/inspect.rst:73 -#: library/inspect.rst:106 +#: library/inspect.rst:73 library/inspect.rst:106 msgid "__module__" msgstr "" @@ -238,8 +229,7 @@ msgstr "" msgid "next inner traceback object (called by this level)" msgstr "" -#: library/inspect.rst:211 -#: library/inspect.rst:228 +#: library/inspect.rst:211 library/inspect.rst:228 msgid "frame" msgstr "" @@ -299,8 +289,7 @@ msgstr "" msgid "tracing function for this frame, or ``None``" msgstr "" -#: library/inspect.rst:215 -#: library/inspect.rst:232 +#: library/inspect.rst:215 library/inspect.rst:232 msgid "code" msgstr "" @@ -1672,15 +1661,13 @@ msgid "" "represents the outermost call on *frame*'s stack." msgstr "" -#: library/inspect.rst:1378 -#: library/inspect.rst:1419 +#: library/inspect.rst:1378 library/inspect.rst:1419 msgid "" "A list of :term:`named tuples ` ``FrameInfo(frame, filename, " "lineno, function, code_context, index)`` is returned." msgstr "" -#: library/inspect.rst:1383 -#: library/inspect.rst:1424 +#: library/inspect.rst:1383 library/inspect.rst:1424 msgid "A list of :class:`FrameInfo` objects is returned." msgstr "" @@ -1789,8 +1776,7 @@ msgstr "" msgid "Get current state of a generator-iterator." msgstr "" -#: library/inspect.rst:1516 -#: library/inspect.rst:1533 +#: library/inspect.rst:1516 library/inspect.rst:1533 msgid "Possible states are:" msgstr "" diff --git a/library/io.po b/library/io.po index 0153c5e5..0a5991aa 100644 --- a/library/io.po +++ b/library/io.po @@ -61,8 +61,7 @@ msgid "" "since :exc:`IOError` is now an alias of :exc:`OSError`." msgstr "" -#: library/io.rst:855 -#: library/io.rst:1149 +#: library/io.rst:855 library/io.rst:1149 msgid "Text I/O" msgstr "" @@ -401,8 +400,7 @@ msgstr "" msgid "Mixin Methods and Properties" msgstr "" -#: library/io.rst:301 -#: library/io.rst:305 +#: library/io.rst:301 library/io.rst:305 msgid ":class:`IOBase`" msgstr "" @@ -804,8 +802,7 @@ msgid "" "imminent." msgstr "" -#: library/io.rst:598 -#: library/io.rst:608 +#: library/io.rst:598 library/io.rst:608 msgid "" "A :exc:`BlockingIOError` is raised if the underlying raw stream is in non " "blocking-mode, and has no data available at the moment." diff --git a/library/ipaddress.po b/library/ipaddress.po index 04115b4c..7f084059 100644 --- a/library/ipaddress.po +++ b/library/ipaddress.po @@ -375,8 +375,7 @@ msgid "" "ID." msgstr "" -#: library/ipaddress.rst:747 -#: library/ipaddress.rst:883 +#: library/ipaddress.rst:747 library/ipaddress.rst:883 msgid "Operators" msgstr "" diff --git a/library/itertools.po b/library/itertools.po index acb84405..9af90363 100644 --- a/library/itertools.po +++ b/library/itertools.po @@ -55,18 +55,15 @@ msgstr "" msgid "**Infinite iterators:**" msgstr "" -#: library/itertools.rst:52 -#: library/itertools.rst:73 +#: library/itertools.rst:52 library/itertools.rst:73 msgid "Iterator" msgstr "" -#: library/itertools.rst:52 -#: library/itertools.rst:73 +#: library/itertools.rst:52 library/itertools.rst:73 msgid "Arguments" msgstr "" -#: library/itertools.rst:52 -#: library/itertools.rst:82 +#: library/itertools.rst:52 library/itertools.rst:82 msgid "Results" msgstr "" @@ -206,8 +203,7 @@ msgstr "" msgid ":func:`dropwhile`" msgstr "" -#: library/itertools.rst:60 -#: library/itertools.rst:65 +#: library/itertools.rst:60 library/itertools.rst:65 msgid "predicate, seq" msgstr "" @@ -441,10 +437,8 @@ msgid "" "input iterable." msgstr "" -#: library/itertools.rst:191 -#: library/itertools.rst:291 -#: library/itertools.rst:527 -#: library/itertools.rst:634 +#: library/itertools.rst:191 library/itertools.rst:291 +#: library/itertools.rst:527 library/itertools.rst:634 msgid "Roughly equivalent to::" msgstr "" diff --git a/library/json.po b/library/json.po index 99ed3dee..68d6cb53 100644 --- a/library/json.po +++ b/library/json.po @@ -285,8 +285,7 @@ msgid "" "will be passed to the constructor of the class." msgstr "" -#: library/json.rst:292 -#: library/json.rst:371 +#: library/json.rst:292 library/json.rst:371 msgid "" "If the data being deserialized is not a valid JSON document, a :exc:" "`JSONDecodeError` will be raised." diff --git a/library/logging.handlers.po b/library/logging.handlers.po index dc1c12ab..91fd66ed 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -143,19 +143,15 @@ msgid "" "handled." msgstr "" -#: library/logging.handlers.rst:105 -#: library/logging.handlers.rst:190 -#: library/logging.handlers.rst:338 -#: library/logging.handlers.rst:444 +#: library/logging.handlers.rst:105 library/logging.handlers.rst:190 +#: library/logging.handlers.rst:338 library/logging.handlers.rst:444 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:448 +#: library/logging.handlers.rst:109 library/logging.handlers.rst:194 +#: library/logging.handlers.rst:342 library/logging.handlers.rst:448 msgid "The *errors* parameter was added." msgstr "" @@ -188,8 +184,7 @@ msgstr "" msgid "Returns a new instance of the :class:`NullHandler` class." msgstr "" -#: library/logging.handlers.rst:141 -#: library/logging.handlers.rst:145 +#: library/logging.handlers.rst:141 library/logging.handlers.rst:145 msgid "This method does nothing." msgstr "" @@ -417,8 +412,7 @@ msgid "" "they are renamed to :file:`app.log.2`, :file:`app.log.3` etc. respectively." msgstr "" -#: library/logging.handlers.rst:347 -#: library/logging.handlers.rst:453 +#: library/logging.handlers.rst:347 library/logging.handlers.rst:453 msgid "Does a rollover, as described above." msgstr "" @@ -473,10 +467,8 @@ msgstr "" msgid "Seconds" msgstr "" -#: library/logging.handlers.rst:378 -#: library/logging.handlers.rst:380 -#: library/logging.handlers.rst:382 -#: library/logging.handlers.rst:384 +#: library/logging.handlers.rst:378 library/logging.handlers.rst:380 +#: library/logging.handlers.rst:382 library/logging.handlers.rst:384 msgid "Ignored" msgstr "" @@ -512,8 +504,7 @@ msgstr "" msgid "Weekday (0=Monday)" msgstr "" -#: library/logging.handlers.rst:386 -#: library/logging.handlers.rst:389 +#: library/logging.handlers.rst:386 library/logging.handlers.rst:389 msgid "Used to compute initial rollover time" msgstr "" @@ -902,13 +893,11 @@ msgstr "" msgid "**Priorities**" msgstr "" -#: library/logging.handlers.rst:705 -#: library/logging.handlers.rst:727 +#: library/logging.handlers.rst:705 library/logging.handlers.rst:727 msgid "Name (string)" msgstr "" -#: library/logging.handlers.rst:705 -#: library/logging.handlers.rst:727 +#: library/logging.handlers.rst:705 library/logging.handlers.rst:727 msgid "Symbolic value" msgstr "" @@ -1437,8 +1426,7 @@ msgid "" "instances for *queue*." msgstr "" -#: library/logging.handlers.rst:1044 -#: library/logging.handlers.rst:1133 +#: library/logging.handlers.rst:1044 library/logging.handlers.rst:1133 msgid "" "If you are using :mod:`multiprocessing`, you should avoid using :class:" "`~queue.SimpleQueue` and instead use :class:`multiprocessing.Queue`." diff --git a/library/logging.po b/library/logging.po index 13887660..c3ebf195 100644 --- a/library/logging.po +++ b/library/logging.po @@ -1201,8 +1201,7 @@ msgstr "" msgid "args" msgstr "" -#: library/logging.rst:1007 -#: library/logging.rst:1053 +#: library/logging.rst:1007 library/logging.rst:1053 msgid "You shouldn't need to format this yourself." msgstr "" diff --git a/library/mailbox.po b/library/mailbox.po index 24dd5232..85f38981 100644 --- a/library/mailbox.po +++ b/library/mailbox.po @@ -550,8 +550,7 @@ msgid "" "raise an exception." msgstr "" -#: library/mailbox.rst:704 -#: library/mailbox.rst:755 +#: library/mailbox.rst:704 library/mailbox.rst:755 msgid "" "Three locking mechanisms are used---dot locking and, if available, the :c:" "func:`!flock` and :c:func:`!lockf` system calls." @@ -944,24 +943,19 @@ msgid "" "flags for Maildir messages are as follows:" msgstr "" -#: library/mailbox.rst:997 -#: library/mailbox.rst:1368 +#: library/mailbox.rst:997 library/mailbox.rst:1368 msgid "Flag" msgstr "" -#: library/mailbox.rst:997 -#: library/mailbox.rst:1368 +#: library/mailbox.rst:997 library/mailbox.rst:1368 msgid "Meaning" msgstr "" -#: library/mailbox.rst:997 -#: library/mailbox.rst:1235 -#: library/mailbox.rst:1368 +#: library/mailbox.rst:997 library/mailbox.rst:1235 library/mailbox.rst:1368 msgid "Explanation" msgstr "" -#: library/mailbox.rst:1003 -#: library/mailbox.rst:1374 +#: library/mailbox.rst:1003 library/mailbox.rst:1374 msgid "D" msgstr "" @@ -973,18 +967,15 @@ msgstr "" msgid "Under composition" msgstr "" -#: library/mailbox.rst:1005 -#: library/mailbox.rst:1376 +#: library/mailbox.rst:1005 library/mailbox.rst:1376 msgid "F" msgstr "" -#: library/mailbox.rst:1005 -#: library/mailbox.rst:1376 +#: library/mailbox.rst:1005 library/mailbox.rst:1376 msgid "Flagged" msgstr "" -#: library/mailbox.rst:1005 -#: library/mailbox.rst:1376 +#: library/mailbox.rst:1005 library/mailbox.rst:1376 msgid "Marked as important" msgstr "" @@ -1000,8 +991,7 @@ msgstr "" msgid "Forwarded, resent, or bounced" msgstr "" -#: library/mailbox.rst:999 -#: library/mailbox.rst:1370 +#: library/mailbox.rst:999 library/mailbox.rst:1370 msgid "R" msgstr "" @@ -1009,9 +999,7 @@ msgstr "" msgid "Replied" msgstr "" -#: library/mailbox.rst:1007 -#: library/mailbox.rst:1243 -#: library/mailbox.rst:1378 +#: library/mailbox.rst:1007 library/mailbox.rst:1243 library/mailbox.rst:1378 msgid "Replied to" msgstr "" @@ -1023,8 +1011,7 @@ msgstr "" msgid "Seen" msgstr "" -#: library/mailbox.rst:999 -#: library/mailbox.rst:1370 +#: library/mailbox.rst:999 library/mailbox.rst:1370 msgid "Read" msgstr "" @@ -1036,8 +1023,7 @@ msgstr "" msgid "Trashed" msgstr "" -#: library/mailbox.rst:1003 -#: library/mailbox.rst:1374 +#: library/mailbox.rst:1003 library/mailbox.rst:1374 msgid "Marked for subsequent deletion" msgstr "" @@ -1125,77 +1111,49 @@ msgid "" "take place:" msgstr "" -#: library/mailbox.rst:946 -#: library/mailbox.rst:1068 -#: library/mailbox.rst:1100 -#: library/mailbox.rst:1183 -#: library/mailbox.rst:1212 -#: library/mailbox.rst:1326 -#: library/mailbox.rst:1440 -#: library/mailbox.rst:1472 -#: library/mailbox.rst:1488 +#: library/mailbox.rst:946 library/mailbox.rst:1068 library/mailbox.rst:1100 +#: library/mailbox.rst:1183 library/mailbox.rst:1212 library/mailbox.rst:1326 +#: library/mailbox.rst:1440 library/mailbox.rst:1472 library/mailbox.rst:1488 msgid "Resulting state" msgstr "" -#: library/mailbox.rst:1198 -#: library/mailbox.rst:1326 +#: library/mailbox.rst:1198 library/mailbox.rst:1326 msgid ":class:`mboxMessage` or :class:`MMDFMessage` state" msgstr "" -#: library/mailbox.rst:948 -#: library/mailbox.rst:1072 -#: library/mailbox.rst:1444 +#: library/mailbox.rst:948 library/mailbox.rst:1072 library/mailbox.rst:1444 msgid "\"cur\" subdirectory" msgstr "" -#: library/mailbox.rst:1072 -#: library/mailbox.rst:1104 -#: library/mailbox.rst:1444 -#: library/mailbox.rst:1476 -#: library/mailbox.rst:1492 +#: library/mailbox.rst:1072 library/mailbox.rst:1104 library/mailbox.rst:1444 +#: library/mailbox.rst:1476 library/mailbox.rst:1492 msgid "O flag" msgstr "" -#: library/mailbox.rst:952 -#: library/mailbox.rst:1091 -#: library/mailbox.rst:1189 -#: library/mailbox.rst:1448 -#: library/mailbox.rst:1496 +#: library/mailbox.rst:952 library/mailbox.rst:1091 library/mailbox.rst:1189 +#: library/mailbox.rst:1448 library/mailbox.rst:1496 msgid "F flag" msgstr "" -#: library/mailbox.rst:937 -#: library/mailbox.rst:969 -#: library/mailbox.rst:1078 -#: library/mailbox.rst:1187 -#: library/mailbox.rst:1442 -#: library/mailbox.rst:1490 +#: library/mailbox.rst:937 library/mailbox.rst:969 library/mailbox.rst:1078 +#: library/mailbox.rst:1187 library/mailbox.rst:1442 library/mailbox.rst:1490 msgid "R flag" msgstr "" -#: library/mailbox.rst:1078 -#: library/mailbox.rst:1108 -#: library/mailbox.rst:1203 -#: library/mailbox.rst:1450 -#: library/mailbox.rst:1480 -#: library/mailbox.rst:1498 +#: library/mailbox.rst:1078 library/mailbox.rst:1108 library/mailbox.rst:1203 +#: library/mailbox.rst:1450 library/mailbox.rst:1480 library/mailbox.rst:1498 msgid "A flag" msgstr "" -#: library/mailbox.rst:1070 -#: library/mailbox.rst:1442 +#: library/mailbox.rst:1070 library/mailbox.rst:1442 msgid "S flag" msgstr "" -#: library/mailbox.rst:971 -#: library/mailbox.rst:1313 -#: library/mailbox.rst:1446 +#: library/mailbox.rst:971 library/mailbox.rst:1313 library/mailbox.rst:1446 msgid "T flag" msgstr "" -#: library/mailbox.rst:1074 -#: library/mailbox.rst:1122 -#: library/mailbox.rst:1446 +#: library/mailbox.rst:1074 library/mailbox.rst:1122 library/mailbox.rst:1446 #: library/mailbox.rst:1494 msgid "D flag" msgstr "" @@ -1206,14 +1164,11 @@ msgid "" "`MHMessage` instance, the following conversions take place:" msgstr "" -#: library/mailbox.rst:1085 -#: library/mailbox.rst:1457 +#: library/mailbox.rst:1085 library/mailbox.rst:1457 msgid ":class:`MHMessage` state" msgstr "" -#: library/mailbox.rst:1089 -#: library/mailbox.rst:1201 -#: library/mailbox.rst:1342 +#: library/mailbox.rst:1089 library/mailbox.rst:1201 library/mailbox.rst:1342 #: library/mailbox.rst:1461 msgid "\"unseen\" sequence" msgstr "" @@ -1222,20 +1177,15 @@ msgstr "" msgid "\"cur\" subdirectory and S flag" msgstr "" -#: library/mailbox.rst:1087 -#: library/mailbox.rst:1459 +#: library/mailbox.rst:1087 library/mailbox.rst:1459 msgid "no \"unseen\" sequence" msgstr "" -#: library/mailbox.rst:1091 -#: library/mailbox.rst:1205 -#: library/mailbox.rst:1463 +#: library/mailbox.rst:1091 library/mailbox.rst:1205 library/mailbox.rst:1463 msgid "\"flagged\" sequence" msgstr "" -#: library/mailbox.rst:1093 -#: library/mailbox.rst:1203 -#: library/mailbox.rst:1344 +#: library/mailbox.rst:1093 library/mailbox.rst:1203 library/mailbox.rst:1344 #: library/mailbox.rst:1465 msgid "\"replied\" sequence" msgstr "" @@ -1246,20 +1196,16 @@ msgid "" "`BabylMessage` instance, the following conversions take place:" msgstr "" -#: library/mailbox.rst:1100 -#: library/mailbox.rst:1472 +#: library/mailbox.rst:1100 library/mailbox.rst:1472 msgid ":class:`BabylMessage` state" msgstr "" -#: library/mailbox.rst:1104 -#: library/mailbox.rst:1311 -#: library/mailbox.rst:1342 +#: library/mailbox.rst:1104 library/mailbox.rst:1311 library/mailbox.rst:1342 #: library/mailbox.rst:1476 msgid "\"unseen\" label" msgstr "" -#: library/mailbox.rst:1102 -#: library/mailbox.rst:1474 +#: library/mailbox.rst:1102 library/mailbox.rst:1474 msgid "no \"unseen\" label" msgstr "" @@ -1271,16 +1217,12 @@ msgstr "" msgid "\"forwarded\" or \"resent\" label" msgstr "" -#: library/mailbox.rst:1108 -#: library/mailbox.rst:1315 -#: library/mailbox.rst:1344 +#: library/mailbox.rst:1108 library/mailbox.rst:1315 library/mailbox.rst:1344 #: library/mailbox.rst:1480 msgid "\"answered\" label" msgstr "" -#: library/mailbox.rst:1106 -#: library/mailbox.rst:1331 -#: library/mailbox.rst:1478 +#: library/mailbox.rst:1106 library/mailbox.rst:1331 library/mailbox.rst:1478 msgid "\"deleted\" label" msgstr "" @@ -1398,8 +1340,7 @@ msgid "" "conversions take place:" msgstr "" -#: library/mailbox.rst:1183 -#: library/mailbox.rst:1440 +#: library/mailbox.rst:1183 library/mailbox.rst:1440 msgid ":class:`MaildirMessage` state" msgstr "" @@ -1409,8 +1350,7 @@ msgid "" "`MHMessage` instance, the following conversions take place:" msgstr "" -#: library/mailbox.rst:1102 -#: library/mailbox.rst:1474 +#: library/mailbox.rst:1102 library/mailbox.rst:1474 msgid "R flag and O flag" msgstr "" diff --git a/library/mmap.po b/library/mmap.po index 7cf9fa24..e74e8def 100644 --- a/library/mmap.po +++ b/library/mmap.po @@ -215,8 +215,7 @@ msgid "" "``-1`` on failure." msgstr "" -#: library/mmap.rst:277 -#: library/mmap.rst:309 +#: library/mmap.rst:277 library/mmap.rst:309 msgid "Writable :term:`bytes-like object` is now accepted." msgstr "" diff --git a/library/multiprocessing.po b/library/multiprocessing.po index d6728091..d933cac2 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -338,8 +338,7 @@ msgid "" "`Array`. For example, the following code ::" msgstr "" -#: library/multiprocessing.rst:344 -#: library/multiprocessing.rst:390 +#: library/multiprocessing.rst:344 library/multiprocessing.rst:390 msgid "will print ::" msgstr "" @@ -1423,8 +1422,7 @@ msgid "" "BoundedSemaphore`." msgstr "" -#: library/multiprocessing.rst:1309 -#: library/multiprocessing.rst:1447 +#: library/multiprocessing.rst:1309 library/multiprocessing.rst:1447 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`." @@ -1446,8 +1444,7 @@ msgid "" "object from :mod:`multiprocessing`." msgstr "" -#: library/multiprocessing.rst:1323 -#: library/multiprocessing.rst:1872 +#: library/multiprocessing.rst:1323 library/multiprocessing.rst:1872 msgid "The :meth:`~threading.Condition.wait_for` method was added." msgstr "" @@ -1479,8 +1476,7 @@ msgid "" "used in :keyword:`with` statements." msgstr "" -#: library/multiprocessing.rst:1350 -#: library/multiprocessing.rst:1401 +#: library/multiprocessing.rst:1350 library/multiprocessing.rst:1401 msgid "Acquire a lock, blocking or non-blocking." msgstr "" @@ -1648,8 +1644,7 @@ msgid "" "itself can be accessed via the *value* attribute of a :class:`Value`." msgstr "" -#: library/multiprocessing.rst:1487 -#: library/multiprocessing.rst:1574 +#: library/multiprocessing.rst:1487 library/multiprocessing.rst:1574 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:" @@ -1679,8 +1674,7 @@ msgid "" "instead do ::" msgstr "" -#: library/multiprocessing.rst:1510 -#: library/multiprocessing.rst:1600 +#: library/multiprocessing.rst:1510 library/multiprocessing.rst:1600 #: library/multiprocessing.rst:1615 msgid "Note that *lock* is a keyword-only argument." msgstr "" @@ -1787,8 +1781,7 @@ msgid "" "array." msgstr "" -#: library/multiprocessing.rst:1592 -#: library/multiprocessing.rst:1608 +#: library/multiprocessing.rst:1592 library/multiprocessing.rst:1608 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." @@ -2410,8 +2403,7 @@ msgid "" "``None`` then the number returned by :func:`os.cpu_count` is used." msgstr "" -#: library/multiprocessing.rst:2218 -#: library/multiprocessing.rst:2779 +#: library/multiprocessing.rst:2218 library/multiprocessing.rst:2779 msgid "" "If *initializer* is not ``None`` then each worker process will call " "``initializer(*initargs)`` when it starts." @@ -2487,8 +2479,7 @@ msgid "" "`~multiprocessing.pool.AsyncResult` object." msgstr "" -#: library/multiprocessing.rst:2273 -#: library/multiprocessing.rst:2304 +#: library/multiprocessing.rst:2273 library/multiprocessing.rst:2304 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, " @@ -2496,16 +2487,14 @@ msgid "" "applied instead." msgstr "" -#: library/multiprocessing.rst:2278 -#: library/multiprocessing.rst:2309 +#: library/multiprocessing.rst:2278 library/multiprocessing.rst:2309 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:2282 -#: library/multiprocessing.rst:2313 +#: library/multiprocessing.rst:2282 library/multiprocessing.rst:2313 msgid "" "Callbacks should complete immediately since otherwise the thread which " "handles the results will get blocked." @@ -2704,8 +2693,7 @@ msgid "" "*address*. (See :ref:`multiprocessing-address-formats`)" msgstr "" -#: library/multiprocessing.rst:2475 -#: library/multiprocessing.rst:2510 +#: library/multiprocessing.rst:2475 library/multiprocessing.rst:2510 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 " diff --git a/library/nis.po b/library/nis.po index 1b357005..285e8f04 100644 --- a/library/nis.po +++ b/library/nis.po @@ -65,8 +65,7 @@ msgstr "" msgid "Note that *mapname* is first checked if it is an alias to another name." msgstr "" -#: library/nis.rst:50 -#: library/nis.rst:58 +#: library/nis.rst:50 library/nis.rst:58 msgid "" "The *domain* argument allows overriding the NIS domain used for the lookup. " "If unspecified, lookup is in the default NIS domain." diff --git a/library/operator.po b/library/operator.po index 919a1144..2d367662 100644 --- a/library/operator.po +++ b/library/operator.po @@ -252,8 +252,7 @@ msgid "" "returns ``(b.name.first, b.name.last)``." msgstr "" -#: library/operator.rst:317 -#: library/operator.rst:365 +#: library/operator.rst:317 library/operator.rst:365 msgid "Equivalent to::" msgstr "" @@ -667,8 +666,7 @@ msgstr "" msgid "``truth(obj)``" msgstr "" -#: library/operator.rst:444 -#: library/operator.rst:452 +#: library/operator.rst:444 library/operator.rst:452 msgid "Ordering" msgstr "" diff --git a/library/optparse.po b/library/optparse.po index 476871a4..f483ad6e 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -1346,8 +1346,7 @@ msgid "" "destination from the first short option string (e.g., ``-f`` implies ``f``)." msgstr "" -#: library/optparse.rst:1141 -#: library/optparse.rst:1181 +#: library/optparse.rst:1141 library/optparse.rst:1181 #: library/optparse.rst:1258 msgid "Example::" msgstr "" @@ -1611,8 +1610,7 @@ msgstr "" msgid "The input parameters are" msgstr "" -#: library/optparse.rst:1364 -#: library/optparse.rst:1684 +#: library/optparse.rst:1364 library/optparse.rst:1684 msgid "``args``" msgstr "" diff --git a/library/os.path.po b/library/os.path.po index 3a3d2b2d..aeed1e2d 100644 --- a/library/os.path.po +++ b/library/os.path.po @@ -87,18 +87,10 @@ msgid "" "follows: ``normpath(join(os.getcwd(), path))``." msgstr "" -#: library/os.path.rst:76 -#: library/os.path.rst:125 -#: library/os.path.rst:151 -#: library/os.path.rst:197 -#: library/os.path.rst:226 -#: library/os.path.rst:245 -#: library/os.path.rst:265 -#: library/os.path.rst:303 -#: library/os.path.rst:372 -#: library/os.path.rst:417 -#: library/os.path.rst:448 -#: library/os.path.rst:480 +#: library/os.path.rst:76 library/os.path.rst:125 library/os.path.rst:151 +#: library/os.path.rst:197 library/os.path.rst:226 library/os.path.rst:245 +#: library/os.path.rst:265 library/os.path.rst:303 library/os.path.rst:372 +#: library/os.path.rst:417 library/os.path.rst:448 library/os.path.rst:480 #: library/os.path.rst:569 msgid "Accepts a :term:`path-like object`." msgstr "" @@ -120,9 +112,7 @@ msgid "" "empty. Unlike :func:`commonprefix`, this returns a valid path." msgstr "" -#: library/os.path.rst:415 -#: library/os.path.rst:443 -#: library/os.path.rst:459 +#: library/os.path.rst:415 library/os.path.rst:443 library/os.path.rst:459 msgid ":ref:`Availability `: Unix, Windows." msgstr "" @@ -429,8 +419,7 @@ msgid "" "raises an exception if an :func:`os.stat` call on either pathname fails." msgstr "" -#: library/os.path.rst:445 -#: library/os.path.rst:461 +#: library/os.path.rst:445 library/os.path.rst:461 msgid "Added Windows support." msgstr "" diff --git a/library/os.po b/library/os.po index 2f1225f1..1f039788 100644 --- a/library/os.po +++ b/library/os.po @@ -282,45 +282,18 @@ msgid "" "Return the filename corresponding to the controlling terminal of the process." msgstr "" -#: library/os.rst:358 -#: library/os.rst:389 -#: library/os.rst:434 -#: library/os.rst:480 -#: library/os.rst:512 -#: library/os.rst:545 -#: library/os.rst:586 -#: library/os.rst:602 -#: library/os.rst:661 -#: library/os.rst:687 -#: library/os.rst:703 -#: library/os.rst:719 -#: library/os.rst:735 -#: library/os.rst:1345 -#: library/os.rst:1608 -#: library/os.rst:1637 -#: library/os.rst:2110 -#: library/os.rst:2433 -#: library/os.rst:4036 -#: library/os.rst:4050 -#: library/os.rst:4064 -#: library/os.rst:4078 -#: library/os.rst:4094 -#: library/os.rst:4108 -#: library/os.rst:4125 -#: library/os.rst:4140 -#: library/os.rst:4223 -#: library/os.rst:4270 -#: library/os.rst:4427 -#: library/os.rst:4713 -#: library/os.rst:4808 -#: library/os.rst:4839 -#: library/os.rst:4865 -#: library/os.rst:4890 -#: library/os.rst:4909 -#: library/os.rst:4973 -#: library/os.rst:4996 -#: library/os.rst:5012 -#: library/os.rst:5030 +#: library/os.rst:358 library/os.rst:389 library/os.rst:434 library/os.rst:480 +#: library/os.rst:512 library/os.rst:545 library/os.rst:586 library/os.rst:602 +#: library/os.rst:661 library/os.rst:687 library/os.rst:703 library/os.rst:719 +#: library/os.rst:735 library/os.rst:1345 library/os.rst:1608 +#: library/os.rst:1637 library/os.rst:2110 library/os.rst:2433 +#: library/os.rst:4036 library/os.rst:4050 library/os.rst:4064 +#: library/os.rst:4078 library/os.rst:4094 library/os.rst:4108 +#: library/os.rst:4125 library/os.rst:4140 library/os.rst:4223 +#: library/os.rst:4270 library/os.rst:4427 library/os.rst:4713 +#: library/os.rst:4808 library/os.rst:4839 library/os.rst:4865 +#: library/os.rst:4890 library/os.rst:4909 library/os.rst:4973 +#: library/os.rst:4996 library/os.rst:5012 library/os.rst:5030 #: library/os.rst:5039 msgid ":ref:`Availability `: Unix, not Emscripten, not WASI." msgstr "" @@ -476,12 +449,8 @@ msgid "" "like to use a different encoding." msgstr "" -#: library/os.rst:1086 -#: library/os.rst:1110 -#: library/os.rst:1649 -#: library/os.rst:2533 -#: library/os.rst:3412 -#: library/os.rst:4564 +#: library/os.rst:1086 library/os.rst:1110 library/os.rst:1649 +#: library/os.rst:2533 library/os.rst:3412 library/os.rst:4564 #: library/os.rst:4692 msgid ":ref:`Availability `: Unix, Windows." msgstr "" @@ -501,21 +470,11 @@ msgid "" "``True``." msgstr "" -#: library/os.rst:376 -#: library/os.rst:787 -#: library/os.rst:1019 -#: library/os.rst:1053 -#: library/os.rst:1138 -#: library/os.rst:1396 -#: library/os.rst:1424 -#: library/os.rst:1708 -#: library/os.rst:1770 -#: library/os.rst:2124 -#: library/os.rst:2499 -#: library/os.rst:3241 -#: library/os.rst:3631 -#: library/os.rst:5196 -#: library/os.rst:5227 +#: library/os.rst:376 library/os.rst:787 library/os.rst:1019 +#: library/os.rst:1053 library/os.rst:1138 library/os.rst:1396 +#: library/os.rst:1424 library/os.rst:1708 library/os.rst:1770 +#: library/os.rst:2124 library/os.rst:2499 library/os.rst:3241 +#: library/os.rst:3631 library/os.rst:5196 library/os.rst:5227 #: library/os.rst:5236 msgid ":ref:`Availability `: Unix." msgstr "" @@ -542,8 +501,7 @@ msgstr "" msgid "Return the real group id of the current process." msgstr "" -#: library/os.rst:451 -#: library/os.rst:758 +#: library/os.rst:451 library/os.rst:758 msgid "" "The function is a stub on Emscripten and WASI, see :ref:`wasm-availability` " "for more information." @@ -588,9 +546,7 @@ msgid "" "getpwuid(os.getuid())[0]`` to get the login name of the current real user id." msgstr "" -#: library/os.rst:462 -#: library/os.rst:4247 -#: library/os.rst:4669 +#: library/os.rst:462 library/os.rst:4247 library/os.rst:4669 #: library/os.rst:4957 msgid "" ":ref:`Availability `: Unix, Windows, not Emscripten, not WASI." @@ -1115,16 +1071,13 @@ msgid "" "this is equivalent to ``os.chmod(fd, mode)``." msgstr "" -#: library/os.rst:2069 -#: library/os.rst:2166 +#: library/os.rst:2069 library/os.rst:2166 msgid "" "Raises an :ref:`auditing event ` ``os.chmod`` with arguments " "``path``, ``mode``, ``dir_fd``." msgstr "" -#: library/os.rst:1021 -#: library/os.rst:1651 -#: library/os.rst:2095 +#: library/os.rst:1021 library/os.rst:1651 library/os.rst:2095 #: library/os.rst:3377 msgid "" "The function is limited on Emscripten and WASI, see :ref:`wasm-availability` " @@ -1138,8 +1091,7 @@ msgid "" "`chown`. As of Python 3.3, this is equivalent to ``os.chown(fd, uid, gid)``." msgstr "" -#: library/os.rst:2091 -#: library/os.rst:2179 +#: library/os.rst:2091 library/os.rst:2179 msgid "" "Raises an :ref:`auditing event ` ``os.chown`` with arguments " "``path``, ``uid``, ``gid``, ``dir_fd``." @@ -1420,37 +1372,23 @@ msgid "" "a file descriptor in a file object, use :func:`fdopen`." msgstr "" -#: library/os.rst:2331 -#: library/os.rst:2435 -#: library/os.rst:2538 -#: library/os.rst:2675 -#: library/os.rst:3432 +#: library/os.rst:2331 library/os.rst:2435 library/os.rst:2538 +#: library/os.rst:2675 library/os.rst:3432 msgid "Added the *dir_fd* parameter." msgstr "" -#: library/os.rst:1576 -#: library/os.rst:4790 +#: library/os.rst:1576 library/os.rst:4790 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:1963 -#: library/os.rst:2026 -#: library/os.rst:2112 -#: library/os.rst:2170 -#: library/os.rst:2242 -#: library/os.rst:2370 -#: library/os.rst:2438 -#: library/os.rst:2501 -#: library/os.rst:2590 -#: library/os.rst:2968 -#: library/os.rst:3419 -#: library/os.rst:3475 -#: library/os.rst:3635 -#: library/os.rst:3999 -#: library/os.rst:4552 +#: library/os.rst:1963 library/os.rst:2026 library/os.rst:2112 +#: library/os.rst:2170 library/os.rst:2242 library/os.rst:2370 +#: library/os.rst:2438 library/os.rst:2501 library/os.rst:2590 +#: library/os.rst:2968 library/os.rst:3419 library/os.rst:3475 +#: library/os.rst:3635 library/os.rst:3999 library/os.rst:4552 msgid "Accepts a :term:`path-like object`." msgstr "" @@ -1596,8 +1534,7 @@ msgid "" "total capacity of all the objects." msgstr "" -#: library/os.rst:1515 -#: library/os.rst:1767 +#: library/os.rst:1515 library/os.rst:1767 msgid "" "The operating system may set a limit (:func:`sysconf` value " "``'SC_IOV_MAX'``) on the number of buffers that can be used." @@ -1989,9 +1926,7 @@ msgstr "" msgid "Get the \"inheritable\" flag of the specified handle (a boolean)." msgstr "" -#: library/os.rst:1855 -#: library/os.rst:4587 -#: library/os.rst:4632 +#: library/os.rst:1855 library/os.rst:4587 library/os.rst:4632 msgid ":ref:`Availability `: Windows." msgstr "" @@ -2306,8 +2241,7 @@ msgstr "" msgid ":const:`stat.S_IXOTH`" msgstr "" -#: library/os.rst:2084 -#: library/os.rst:3465 +#: library/os.rst:2084 library/os.rst:3465 msgid "" "This function can support :ref:`specifying a file descriptor `, :" "ref:`paths relative to directory descriptors ` and :ref:`not " @@ -2432,8 +2366,7 @@ msgstr "" msgid "Added the *src_dir_fd*, *dst_dir_fd*, and *follow_symlinks* parameters." msgstr "" -#: library/os.rst:2622 -#: library/os.rst:3387 +#: library/os.rst:2622 library/os.rst:3387 msgid "Accepts a :term:`path-like object` for *src* and *dst*." msgstr "" @@ -2506,8 +2439,7 @@ msgid "" "arguments." msgstr "" -#: library/os.rst:2284 -#: library/os.rst:2304 +#: library/os.rst:2284 library/os.rst:2304 msgid ":ref:`Availability `: Windows" msgstr "" @@ -2584,16 +2516,13 @@ msgid "" "follow_symlinks=False)``." msgstr "" -#: library/os.rst:2359 -#: library/os.rst:2452 -#: library/os.rst:2526 +#: library/os.rst:2359 library/os.rst:2452 library/os.rst:2526 msgid "" "This function can also support :ref:`paths relative to directory descriptors " "`." msgstr "" -#: library/os.rst:2535 -#: library/os.rst:3380 +#: library/os.rst:2535 library/os.rst:3380 msgid "Added support for Windows 6.0 (Vista) symbolic links." msgstr "" @@ -2740,8 +2669,7 @@ msgid "" "included in that mapping, passing an integer for *name* is also accepted." msgstr "" -#: library/os.rst:3239 -#: library/os.rst:3408 +#: library/os.rst:3239 library/os.rst:3408 msgid "" "This function can support :ref:`specifying a file descriptor `." msgstr "" @@ -2797,8 +2725,7 @@ msgid "" "does not exist, a :exc:`FileNotFoundError` is raised." msgstr "" -#: library/os.rst:2670 -#: library/os.rst:3359 +#: library/os.rst:2670 library/os.rst:3359 msgid "" "This function can support :ref:`paths relative to directory descriptors " "`." @@ -2816,8 +2743,7 @@ msgstr "" msgid "This function is semantically identical to :func:`unlink`." msgstr "" -#: library/os.rst:2588 -#: library/os.rst:3430 +#: library/os.rst:2588 library/os.rst:3430 msgid "" "Raises an :ref:`auditing event ` ``os.remove`` with arguments " "``path``, ``dir_fd``." @@ -2872,8 +2798,7 @@ msgid "" "`replace`." msgstr "" -#: library/os.rst:2638 -#: library/os.rst:2655 +#: library/os.rst:2638 library/os.rst:2655 msgid "" "Raises an :ref:`auditing event ` ``os.rename`` with arguments " "``src``, ``dst``, ``src_dir_fd``, ``dst_dir_fd``." @@ -3254,9 +3179,7 @@ msgid "" "``follow_symlinks=False``, or use :func:`lstat`." msgstr "" -#: library/os.rst:3798 -#: library/os.rst:3830 -#: library/os.rst:3850 +#: library/os.rst:3798 library/os.rst:3830 library/os.rst:3850 msgid "" "This function can support :ref:`specifying a file descriptor ` and :" "ref:`not following symlinks `." @@ -4075,8 +3998,7 @@ msgid "" "unsigned int. The function does not verify that *fd* is an :func:`eventfd`." msgstr "" -#: library/os.rst:3753 -#: library/os.rst:3770 +#: library/os.rst:3753 library/os.rst:3770 msgid ":ref:`Availability `: Linux >= 2.6.27" msgstr "" @@ -4127,8 +4049,7 @@ msgid "" "``path``, ``attribute``." msgstr "" -#: library/os.rst:3835 -#: library/os.rst:3860 +#: library/os.rst:3835 library/os.rst:3860 msgid "Accepts a :term:`path-like object` for *path* and *attribute*." msgstr "" @@ -5931,8 +5852,7 @@ msgid "" "random`` pool instead of the ``/dev/urandom`` pool." msgstr "" -#: library/os.rst:529 -#: library/os.rst:731 +#: library/os.rst:529 library/os.rst:731 msgid "user" msgstr "" @@ -5940,10 +5860,7 @@ msgstr "" msgid "effective id" msgstr "" -#: library/os.rst:438 -#: library/os.rst:456 -#: library/os.rst:666 -#: library/os.rst:4255 +#: library/os.rst:438 library/os.rst:456 library/os.rst:666 library/os.rst:4255 msgid "process" msgstr "" @@ -5995,9 +5912,7 @@ msgstr "" msgid "pty" msgstr "" -#: library/os.rst:2376 -#: library/os.rst:3481 -#: library/os.rst:3580 +#: library/os.rst:2376 library/os.rst:3481 library/os.rst:3580 msgid "directory" msgstr "" @@ -6041,9 +5956,7 @@ msgstr "" msgid ". (dot)" msgstr "" -#: library/os.rst:5255 -#: library/os.rst:5274 -#: library/os.rst:5283 +#: library/os.rst:5255 library/os.rst:5274 library/os.rst:5283 msgid "in pathnames" msgstr "" diff --git a/library/pathlib.po b/library/pathlib.po index f895d1e3..aa7e6109 100644 --- a/library/pathlib.po +++ b/library/pathlib.po @@ -168,9 +168,7 @@ msgid "" "filesystem paths::" msgstr "" -#: library/pathlib.rst:180 -#: library/pathlib.rst:759 -#: library/pathlib.rst:769 +#: library/pathlib.rst:180 library/pathlib.rst:759 library/pathlib.rst:769 msgid "*pathsegments* is specified similarly to :class:`PurePath`." msgstr "" @@ -445,8 +443,7 @@ msgid "" "Set *case_sensitive* to ``True`` or ``False`` to override this behaviour." msgstr "" -#: library/pathlib.rst:945 -#: library/pathlib.rst:1358 +#: library/pathlib.rst:945 library/pathlib.rst:1358 msgid "The *case_sensitive* parameter was added." msgstr "" @@ -595,8 +592,7 @@ msgid "" "``follow_symlinks=False``, or use :meth:`~Path.lstat`." msgstr "" -#: library/pathlib.rst:866 -#: library/pathlib.rst:887 +#: library/pathlib.rst:866 library/pathlib.rst:887 msgid "The *follow_symlinks* parameter was added." msgstr "" @@ -686,9 +682,7 @@ msgid "" "pointing to a directory), ``False`` if it points to another kind of file." msgstr "" -#: library/pathlib.rst:969 -#: library/pathlib.rst:1020 -#: library/pathlib.rst:1038 +#: library/pathlib.rst:969 library/pathlib.rst:1020 library/pathlib.rst:1038 msgid "" "``False`` is also returned if the path doesn't exist or is a broken symlink; " "other errors (such as permission errors) are propagated." diff --git a/library/pickle.po b/library/pickle.po index f253668d..fb0d1322 100644 --- a/library/pickle.po +++ b/library/pickle.po @@ -317,8 +317,7 @@ msgid "" "same meaning as in the :class:`Pickler` constructor." msgstr "" -#: library/pickle.rst:236 -#: library/pickle.rst:328 +#: library/pickle.rst:236 library/pickle.rst:328 msgid "The *buffer_callback* argument was added." msgstr "" @@ -354,8 +353,7 @@ msgid "" "*buffers* have the same meaning as in the :class:`Unpickler` constructor." msgstr "" -#: library/pickle.rst:267 -#: library/pickle.rst:429 +#: library/pickle.rst:267 library/pickle.rst:429 msgid "The *buffers* argument was added." msgstr "" diff --git a/library/pkgutil.po b/library/pkgutil.po index 8b535fb9..d485c3d1 100644 --- a/library/pkgutil.po +++ b/library/pkgutil.po @@ -87,9 +87,7 @@ msgid "" "ModuleSpec`." msgstr "" -#: library/pkgutil.rst:81 -#: library/pkgutil.rst:120 -#: library/pkgutil.rst:180 +#: library/pkgutil.rst:81 library/pkgutil.rst:120 library/pkgutil.rst:180 msgid "" "Updated to be based directly on :mod:`importlib` rather than relying on the " "package internal :pep:`302` import emulation." diff --git a/library/profile.po b/library/profile.po index 7e7981ff..964fdae1 100644 --- a/library/profile.po +++ b/library/profile.po @@ -539,9 +539,7 @@ msgstr "" msgid "``'cumtime'``" msgstr "" -#: library/profile.rst:417 -#: library/profile.rst:423 -#: library/profile.rst:437 +#: library/profile.rst:417 library/profile.rst:423 library/profile.rst:437 msgid "N/A" msgstr "" @@ -549,8 +547,7 @@ msgstr "" msgid "``'file'``" msgstr "" -#: library/profile.rst:419 -#: library/profile.rst:421 +#: library/profile.rst:419 library/profile.rst:421 msgid "file name" msgstr "" diff --git a/library/pyexpat.po b/library/pyexpat.po index d75e3eda..25f973b5 100644 --- a/library/pyexpat.po +++ b/library/pyexpat.po @@ -830,8 +830,7 @@ msgid "" "suspended." msgstr "" -#: library/pyexpat.rst:930 -#: library/pyexpat.rst:935 +#: library/pyexpat.rst:930 library/pyexpat.rst:935 msgid "This should not be reported to Python applications." msgstr "" diff --git a/library/re.po b/library/re.po index f745ddb9..9fc7a605 100644 --- a/library/re.po +++ b/library/re.po @@ -807,8 +807,7 @@ msgstr "" msgid "``\\d``" msgstr "" -#: library/re.rst:608 -#: library/re.rst:631 +#: library/re.rst:608 library/re.rst:631 msgid "For Unicode (str) patterns:" msgstr "" @@ -823,8 +822,7 @@ msgstr "" msgid "Matches ``[0-9]`` if the :py:const:`~re.ASCII` flag is used." msgstr "" -#: library/re.rst:612 -#: library/re.rst:637 +#: library/re.rst:612 library/re.rst:637 msgid "For 8-bit (bytes) patterns:" msgstr "" @@ -1269,8 +1267,7 @@ msgid "" "previous empty match." msgstr "" -#: library/re.rst:1068 -#: library/re.rst:1097 +#: library/re.rst:1068 library/re.rst:1097 msgid "Added the optional flags argument." msgstr "" @@ -1355,8 +1352,7 @@ msgid "" "RE." msgstr "" -#: library/re.rst:1100 -#: library/re.rst:1344 +#: library/re.rst:1100 library/re.rst:1344 msgid "Unmatched groups are replaced with an empty string." msgstr "" @@ -2060,26 +2056,11 @@ msgstr "" msgid ". (dot)" msgstr "" -#: library/re.rst:112 -#: library/re.rst:130 -#: library/re.rst:143 -#: library/re.rst:181 -#: library/re.rst:235 -#: library/re.rst:257 -#: library/re.rst:295 -#: library/re.rst:318 -#: library/re.rst:405 -#: library/re.rst:443 -#: library/re.rst:455 -#: library/re.rst:489 -#: library/re.rst:522 -#: library/re.rst:539 -#: library/re.rst:575 -#: library/re.rst:599 -#: library/re.rst:622 -#: library/re.rst:653 -#: library/re.rst:849 -#: library/re.rst:1056 +#: library/re.rst:112 library/re.rst:130 library/re.rst:143 library/re.rst:181 +#: library/re.rst:235 library/re.rst:257 library/re.rst:295 library/re.rst:318 +#: library/re.rst:405 library/re.rst:443 library/re.rst:455 library/re.rst:489 +#: library/re.rst:522 library/re.rst:539 library/re.rst:575 library/re.rst:599 +#: library/re.rst:622 library/re.rst:653 library/re.rst:849 library/re.rst:1056 msgid "in regular expressions" msgstr "" @@ -2131,8 +2112,7 @@ msgstr "" msgid "{} (curly brackets)" msgstr "" -#: library/re.rst:257 -#: library/re.rst:522 +#: library/re.rst:257 library/re.rst:522 msgid "\\ (backslash)" msgstr "" diff --git a/library/resource.po b/library/resource.po index b7b4ad25..0da83b66 100644 --- a/library/resource.po +++ b/library/resource.po @@ -272,8 +272,7 @@ msgid "" "this user may hold at any time." msgstr "" -#: library/resource.rst:252 -#: library/resource.rst:260 +#: library/resource.rst:252 library/resource.rst:260 msgid ":ref:`Availability `: FreeBSD." msgstr "" diff --git a/library/select.po b/library/select.po index 5e4e5eb9..8157f2b7 100644 --- a/library/select.po +++ b/library/select.po @@ -77,8 +77,7 @@ msgid "" "devpoll` may return an incomplete list of active file descriptors." msgstr "" -#: library/select.rst:79 -#: library/select.rst:106 +#: library/select.rst:79 library/select.rst:106 msgid "The new file descriptor is :ref:`non-inheritable `." msgstr "" @@ -213,9 +212,7 @@ msgid "" "WinSock." msgstr "" -#: library/select.rst:267 -#: library/select.rst:455 -#: library/select.rst:496 +#: library/select.rst:267 library/select.rst:455 library/select.rst:496 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 " @@ -335,16 +332,12 @@ msgstr "" msgid "*eventmask*" msgstr "" -#: library/select.rst:402 -#: library/select.rst:551 -#: library/select.rst:590 +#: library/select.rst:402 library/select.rst:551 library/select.rst:590 #: library/select.rst:633 msgid "Constant" msgstr "" -#: library/select.rst:402 -#: library/select.rst:551 -#: library/select.rst:590 +#: library/select.rst:402 library/select.rst:551 library/select.rst:590 #: library/select.rst:633 msgid "Meaning" msgstr "" diff --git a/library/shutil.po b/library/shutil.po index 2aa83694..1133fb96 100644 --- a/library/shutil.po +++ b/library/shutil.po @@ -91,8 +91,7 @@ msgid "" "link will be created instead of copying the file *src* points to." msgstr "" -#: library/shutil.rst:177 -#: library/shutil.rst:208 +#: library/shutil.rst:177 library/shutil.rst:208 msgid "" "Raises an :ref:`auditing event ` ``shutil.copyfile`` with " "arguments ``src``, ``dst``." @@ -110,9 +109,7 @@ msgid "" "subclass of the latter, this change is backward compatible." msgstr "" -#: library/shutil.rst:185 -#: library/shutil.rst:287 -#: library/shutil.rst:390 +#: library/shutil.rst:185 library/shutil.rst:287 library/shutil.rst:390 msgid "" "Platform-specific fast-copy syscalls may be used internally in order to copy " "the file more efficiently. See :ref:`shutil-platform-dependent-efficient-" diff --git a/library/signal.po b/library/signal.po index caa9b363..32cf4761 100644 --- a/library/signal.po +++ b/library/signal.po @@ -150,17 +150,10 @@ msgid "" "`SIG_UNBLOCK` and :const:`SIG_SETMASK`." msgstr "" -#: library/signal.rst:136 -#: library/signal.rst:154 -#: library/signal.rst:180 -#: library/signal.rst:206 -#: library/signal.rst:238 -#: library/signal.rst:351 -#: library/signal.rst:437 -#: library/signal.rst:501 -#: library/signal.rst:561 -#: library/signal.rst:618 -#: library/signal.rst:664 +#: library/signal.rst:136 library/signal.rst:154 library/signal.rst:180 +#: library/signal.rst:206 library/signal.rst:238 library/signal.rst:351 +#: library/signal.rst:437 library/signal.rst:501 library/signal.rst:561 +#: library/signal.rst:618 library/signal.rst:664 msgid ":ref:`Availability `: Unix." msgstr "" @@ -200,8 +193,7 @@ msgstr "" msgid "Interrupt from keyboard (CTRL + BREAK)." msgstr "" -#: library/signal.rst:262 -#: library/signal.rst:272 +#: library/signal.rst:262 library/signal.rst:272 msgid ":ref:`Availability `: Windows." msgstr "" diff --git a/library/smtplib.po b/library/smtplib.po index f87569b7..a263d8bd 100644 --- a/library/smtplib.po +++ b/library/smtplib.po @@ -355,13 +355,11 @@ msgid "" "first." msgstr "" -#: library/smtplib.rst:319 -#: library/smtplib.rst:476 +#: library/smtplib.rst:319 library/smtplib.rst:476 msgid ":exc:`SMTPHeloError`" msgstr "" -#: library/smtplib.rst:319 -#: library/smtplib.rst:476 +#: library/smtplib.rst:319 library/smtplib.rst:476 msgid "The server didn't reply properly to the ``HELO`` greeting." msgstr "" @@ -400,8 +398,7 @@ msgstr "" msgid "The server didn't accept the username/password combination." msgstr "" -#: library/smtplib.rst:410 -#: library/smtplib.rst:487 +#: library/smtplib.rst:410 library/smtplib.rst:487 msgid ":exc:`SMTPNotSupportedError`" msgstr "" diff --git a/library/socket.po b/library/socket.po index 2fdd4e4c..7858cde5 100644 --- a/library/socket.po +++ b/library/socket.po @@ -109,8 +109,7 @@ msgid "" "Previously, :const:`AF_UNIX` socket paths were assumed to use UTF-8 encoding." msgstr "" -#: library/socket.rst:1148 -#: library/socket.rst:1950 +#: library/socket.rst:1148 library/socket.rst:1950 msgid "Writable :term:`bytes-like object` is now accepted." msgstr "" @@ -284,8 +283,7 @@ msgstr "" msgid "*feat* and *mask* are unsigned 32bit integers." msgstr "" -#: library/socket.rst:589 -#: library/socket.rst:1872 +#: library/socket.rst:589 library/socket.rst:1872 msgid ":ref:`Availability `: Linux >= 2.6.38." msgstr "" @@ -507,8 +505,7 @@ msgid "" "description of *h_errno*, as returned by the :c:func:`hstrerror` C function." msgstr "" -#: library/socket.rst:317 -#: library/socket.rst:330 +#: library/socket.rst:317 library/socket.rst:330 msgid "This class was made a subclass of :exc:`OSError`." msgstr "" @@ -649,8 +646,7 @@ msgid "" "``IP_DROP_SOURCE_MEMBERSHIP``." msgstr "" -#: library/socket.rst:534 -#: library/socket.rst:558 +#: library/socket.rst:534 library/socket.rst:558 msgid "" "Many constants of these forms, documented in the Linux documentation, are " "also defined in the socket module." @@ -831,8 +827,7 @@ msgstr "" msgid "Constants for Windows Hyper-V sockets for host/guest communications." msgstr "" -#: library/socket.rst:886 -#: library/socket.rst:1978 +#: library/socket.rst:886 library/socket.rst:1978 msgid ":ref:`Availability `: Windows." msgstr "" @@ -883,8 +878,7 @@ msgid "" "This may help close a detached socket using :meth:`socket.close()`." msgstr "" -#: library/socket.rst:875 -#: library/socket.rst:1476 +#: library/socket.rst:875 library/socket.rst:1476 msgid "The newly created socket is :ref:`non-inheritable `." msgstr "" @@ -1170,14 +1164,9 @@ msgid "" "argument ``hostname``." msgstr "" -#: library/socket.rst:998 -#: library/socket.rst:1026 -#: library/socket.rst:1054 -#: library/socket.rst:1076 -#: library/socket.rst:1447 -#: library/socket.rst:1481 -#: library/socket.rst:1573 -#: library/socket.rst:1966 +#: library/socket.rst:998 library/socket.rst:1026 library/socket.rst:1054 +#: library/socket.rst:1076 library/socket.rst:1447 library/socket.rst:1481 +#: library/socket.rst:1573 library/socket.rst:1966 msgid ":ref:`Availability `: not WASI." msgstr "" @@ -1424,8 +1413,7 @@ msgstr "" msgid ":ref:`Availability `: Unix, not Emscripten, not WASI." msgstr "" -#: library/socket.rst:1704 -#: library/socket.rst:1856 +#: library/socket.rst:1704 library/socket.rst:1856 msgid "Most Unix platforms." msgstr "" @@ -1477,8 +1465,7 @@ msgid "" "argument ``name``." msgstr "" -#: library/socket.rst:1702 -#: library/socket.rst:1746 +#: library/socket.rst:1702 library/socket.rst:1746 msgid ":ref:`Availability `: Unix." msgstr "" @@ -1488,15 +1475,12 @@ msgid "" "tuples. :exc:`OSError` if the system call fails." msgstr "" -#: library/socket.rst:1301 -#: library/socket.rst:1335 -#: library/socket.rst:1349 +#: library/socket.rst:1301 library/socket.rst:1335 library/socket.rst:1349 msgid "" ":ref:`Availability `: Unix, Windows, not Emscripten, not WASI." msgstr "" -#: library/socket.rst:1305 -#: library/socket.rst:1322 +#: library/socket.rst:1305 library/socket.rst:1322 msgid "Windows support was added." msgstr "" @@ -1597,9 +1581,7 @@ msgstr "" msgid "The socket is now non-inheritable." msgstr "" -#: library/socket.rst:1617 -#: library/socket.rst:1708 -#: library/socket.rst:1800 +#: library/socket.rst:1617 library/socket.rst:1708 library/socket.rst:1800 #: library/socket.rst:1862 msgid "" "If the system call is interrupted and the signal handler does not raise an " diff --git a/library/sqlite3.po b/library/sqlite3.po index f64751d8..ee0a4ab7 100644 --- a/library/sqlite3.po +++ b/library/sqlite3.po @@ -805,9 +805,7 @@ msgstr "" msgid "Added the *deterministic* parameter." msgstr "" -#: library/sqlite3.rst:782 -#: library/sqlite3.rst:1115 -#: library/sqlite3.rst:1568 +#: library/sqlite3.rst:782 library/sqlite3.rst:1115 library/sqlite3.rst:1568 msgid "Example:" msgstr "" @@ -1366,8 +1364,7 @@ msgid "" "`tuple`." msgstr "" -#: library/sqlite3.rst:1694 -#: library/sqlite3.rst:1717 +#: library/sqlite3.rst:1694 library/sqlite3.rst:1717 msgid "See :ref:`sqlite3-howto-row-factory` for more details." msgstr "" diff --git a/library/ssl.po b/library/ssl.po index a417c1d3..497da27c 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -477,8 +477,7 @@ msgid "" "exactly ``True`` if the certificate is trustworthy for all purposes." msgstr "" -#: library/ssl.rst:1542 -#: library/ssl.rst:1840 +#: library/ssl.rst:1542 library/ssl.rst:1840 msgid "Example::" msgstr "" @@ -688,8 +687,7 @@ msgstr "" msgid "Selects TLS version 1.0 as the channel encryption protocol." msgstr "" -#: library/ssl.rst:650 -#: library/ssl.rst:661 +#: library/ssl.rst:650 library/ssl.rst:661 msgid "OpenSSL has deprecated all version specific protocols." msgstr "" @@ -1514,15 +1512,11 @@ msgstr "" msgid "*SSLv2*" msgstr "" -#: library/ssl.rst:1389 -#: library/ssl.rst:1391 -#: library/ssl.rst:1393 +#: library/ssl.rst:1389 library/ssl.rst:1391 library/ssl.rst:1393 msgid "yes" msgstr "" -#: library/ssl.rst:1389 -#: library/ssl.rst:1392 -#: library/ssl.rst:1393 +#: library/ssl.rst:1389 library/ssl.rst:1392 library/ssl.rst:1393 msgid "no" msgstr "" diff --git a/library/statistics.po b/library/statistics.po index f3c489c4..fb56d90e 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -575,8 +575,7 @@ msgstr "" msgid "Raises :exc:`StatisticsError` if *data* is empty." msgstr "" -#: library/statistics.rst:532 -#: library/statistics.rst:636 +#: library/statistics.rst:532 library/statistics.rst:636 msgid "Examples:" msgstr "" diff --git a/library/stdtypes.po b/library/stdtypes.po index 9ebbd4a5..f2ab7003 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -98,22 +98,16 @@ msgstr "" msgid "These are the Boolean operations, ordered by ascending priority:" msgstr "" -#: library/stdtypes.rst:144 -#: library/stdtypes.rst:366 -#: library/stdtypes.rst:965 +#: library/stdtypes.rst:144 library/stdtypes.rst:366 library/stdtypes.rst:965 #: library/stdtypes.rst:1170 msgid "Operation" msgstr "" -#: library/stdtypes.rst:276 -#: library/stdtypes.rst:416 -#: library/stdtypes.rst:1170 +#: library/stdtypes.rst:276 library/stdtypes.rst:416 library/stdtypes.rst:1170 msgid "Result" msgstr "" -#: library/stdtypes.rst:276 -#: library/stdtypes.rst:965 -#: library/stdtypes.rst:2419 +#: library/stdtypes.rst:276 library/stdtypes.rst:965 library/stdtypes.rst:2419 #: library/stdtypes.rst:3637 msgid "Notes" msgstr "" @@ -126,9 +120,7 @@ msgstr "" msgid "if *x* is true, then *x*, else *y*" msgstr "" -#: library/stdtypes.rst:967 -#: library/stdtypes.rst:1181 -#: library/stdtypes.rst:3643 +#: library/stdtypes.rst:967 library/stdtypes.rst:1181 library/stdtypes.rst:3643 msgid "\\(1)" msgstr "" @@ -140,9 +132,7 @@ msgstr "" msgid "if *x* is false, then *x*, else *y*" msgstr "" -#: library/stdtypes.rst:289 -#: library/stdtypes.rst:1209 -#: library/stdtypes.rst:2431 +#: library/stdtypes.rst:289 library/stdtypes.rst:1209 library/stdtypes.rst:2431 #: library/stdtypes.rst:3649 msgid "\\(2)" msgstr "" @@ -155,18 +145,13 @@ msgstr "" msgid "if *x* is false, then ``True``, else ``False``" msgstr "" -#: library/stdtypes.rst:979 -#: library/stdtypes.rst:2433 -#: library/stdtypes.rst:2437 -#: library/stdtypes.rst:3651 -#: library/stdtypes.rst:3655 +#: library/stdtypes.rst:979 library/stdtypes.rst:2433 library/stdtypes.rst:2437 +#: library/stdtypes.rst:3651 library/stdtypes.rst:3655 #: library/stdtypes.rst:3657 msgid "\\(3)" msgstr "" -#: library/stdtypes.rst:320 -#: library/stdtypes.rst:1016 -#: library/stdtypes.rst:2465 +#: library/stdtypes.rst:320 library/stdtypes.rst:1016 library/stdtypes.rst:2465 #: library/stdtypes.rst:3687 msgid "Notes:" msgstr "" @@ -206,8 +191,7 @@ msgstr "" msgid "This table summarizes the comparison operations:" msgstr "" -#: library/stdtypes.rst:2396 -#: library/stdtypes.rst:3614 +#: library/stdtypes.rst:2396 library/stdtypes.rst:3614 #: library/stdtypes.rst:3637 msgid "Meaning" msgstr "" @@ -494,8 +478,7 @@ msgid "" "zero." msgstr "" -#: library/stdtypes.rst:1202 -#: library/stdtypes.rst:3674 +#: library/stdtypes.rst:1202 library/stdtypes.rst:3674 msgid "\\(6)" msgstr "" @@ -531,11 +514,8 @@ msgstr "" msgid "*x* to the power *y*" msgstr "" -#: library/stdtypes.rst:313 -#: library/stdtypes.rst:1194 -#: library/stdtypes.rst:2455 -#: library/stdtypes.rst:3670 -#: library/stdtypes.rst:3677 +#: library/stdtypes.rst:313 library/stdtypes.rst:1194 library/stdtypes.rst:2455 +#: library/stdtypes.rst:3670 library/stdtypes.rst:3677 msgid "\\(5)" msgstr "" @@ -672,9 +652,7 @@ msgstr "" msgid "bitwise :dfn:`or` of *x* and *y*" msgstr "" -#: library/stdtypes.rst:421 -#: library/stdtypes.rst:1215 -#: library/stdtypes.rst:2445 +#: library/stdtypes.rst:421 library/stdtypes.rst:1215 library/stdtypes.rst:2445 #: library/stdtypes.rst:3663 msgid "\\(4)" msgstr "" @@ -775,8 +753,7 @@ msgid "" "bit_length()`` returns ``0``." msgstr "" -#: library/stdtypes.rst:498 -#: library/stdtypes.rst:587 +#: library/stdtypes.rst:498 library/stdtypes.rst:587 msgid "Equivalent to::" msgstr "" @@ -2545,16 +2522,11 @@ msgid "" "Splitting an empty string with a specified separator returns ``['']``." msgstr "" -#: library/stdtypes.rst:2114 -#: library/stdtypes.rst:2234 -#: library/stdtypes.rst:3149 -#: library/stdtypes.rst:3256 -#: library/stdtypes.rst:3297 -#: library/stdtypes.rst:3339 -#: library/stdtypes.rst:3371 -#: library/stdtypes.rst:3421 -#: library/stdtypes.rst:3490 -#: library/stdtypes.rst:3514 +#: library/stdtypes.rst:2114 library/stdtypes.rst:2234 +#: library/stdtypes.rst:3149 library/stdtypes.rst:3256 +#: library/stdtypes.rst:3297 library/stdtypes.rst:3339 +#: library/stdtypes.rst:3371 library/stdtypes.rst:3421 +#: library/stdtypes.rst:3490 library/stdtypes.rst:3514 msgid "For example::" msgstr "" @@ -2963,8 +2935,7 @@ msgstr "" msgid "``'d'``" msgstr "" -#: library/stdtypes.rst:2423 -#: library/stdtypes.rst:3641 +#: library/stdtypes.rst:2423 library/stdtypes.rst:3641 msgid "Signed integer decimal." msgstr "" @@ -3024,8 +2995,7 @@ msgstr "" msgid "``'f'``" msgstr "" -#: library/stdtypes.rst:2439 -#: library/stdtypes.rst:3657 +#: library/stdtypes.rst:2439 library/stdtypes.rst:3657 msgid "Floating point decimal format." msgstr "" @@ -3457,8 +3427,7 @@ msgid "" "interpreted as in slice notation." msgstr "" -#: library/stdtypes.rst:2857 -#: library/stdtypes.rst:2945 +#: library/stdtypes.rst:2857 library/stdtypes.rst:2945 #: library/stdtypes.rst:2958 msgid "" "The subsequence to search for may be any :term:`bytes-like object` or an " @@ -3471,8 +3440,7 @@ msgid "" "which is the length of the bytes object plus one." msgstr "" -#: library/stdtypes.rst:2869 -#: library/stdtypes.rst:2948 +#: library/stdtypes.rst:2869 library/stdtypes.rst:2948 #: library/stdtypes.rst:2961 msgid "Also accept an integer in the range 0 to 255 as the subsequence." msgstr "" @@ -3488,14 +3456,10 @@ msgstr "" msgid "The *prefix* may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:2800 -#: library/stdtypes.rst:3026 -#: library/stdtypes.rst:3071 -#: library/stdtypes.rst:3127 -#: library/stdtypes.rst:3215 -#: library/stdtypes.rst:3382 -#: library/stdtypes.rst:3480 -#: library/stdtypes.rst:3523 +#: library/stdtypes.rst:2800 library/stdtypes.rst:3026 +#: library/stdtypes.rst:3071 library/stdtypes.rst:3127 +#: library/stdtypes.rst:3215 library/stdtypes.rst:3382 +#: library/stdtypes.rst:3480 library/stdtypes.rst:3523 #: library/stdtypes.rst:3725 msgid "" "The bytearray version of this method does *not* operate in place - it always " @@ -3864,8 +3828,7 @@ msgid "" "sequence and no uppercase ASCII characters, ``False`` otherwise." msgstr "" -#: library/stdtypes.rst:3360 -#: library/stdtypes.rst:3426 +#: library/stdtypes.rst:3360 library/stdtypes.rst:3426 #: library/stdtypes.rst:3495 msgid "" "Lowercase ASCII characters are those byte values in the sequence " @@ -6146,16 +6109,12 @@ msgstr "" msgid "built-in" msgstr "" -#: library/stdtypes.rst:316 -#: library/stdtypes.rst:950 -#: library/stdtypes.rst:1139 -#: library/stdtypes.rst:4421 -#: library/stdtypes.rst:5404 +#: library/stdtypes.rst:316 library/stdtypes.rst:950 library/stdtypes.rst:1139 +#: library/stdtypes.rst:4421 library/stdtypes.rst:5404 msgid "types" msgstr "" -#: library/stdtypes.rst:1154 -#: library/stdtypes.rst:4421 +#: library/stdtypes.rst:1154 library/stdtypes.rst:4421 msgid "statement" msgstr "" @@ -6175,13 +6134,11 @@ msgstr "" msgid "value" msgstr "" -#: library/stdtypes.rst:81 -#: library/stdtypes.rst:817 +#: library/stdtypes.rst:81 library/stdtypes.rst:817 msgid "Boolean" msgstr "" -#: library/stdtypes.rst:81 -#: library/stdtypes.rst:393 +#: library/stdtypes.rst:81 library/stdtypes.rst:393 msgid "operations" msgstr "" @@ -6201,9 +6158,7 @@ msgstr "" msgid "False (Built-in object)" msgstr "" -#: library/stdtypes.rst:98 -#: library/stdtypes.rst:195 -#: library/stdtypes.rst:393 +#: library/stdtypes.rst:98 library/stdtypes.rst:195 library/stdtypes.rst:393 #: library/stdtypes.rst:950 msgid "operator" msgstr "" @@ -6272,22 +6227,15 @@ msgstr "" msgid "is not" msgstr "" -#: library/stdtypes.rst:208 -#: library/stdtypes.rst:1117 -#: library/stdtypes.rst:1259 -#: library/stdtypes.rst:1382 -#: library/stdtypes.rst:1539 -#: library/stdtypes.rst:2532 -#: library/stdtypes.rst:4219 -#: library/stdtypes.rst:4899 -#: library/stdtypes.rst:5324 +#: library/stdtypes.rst:208 library/stdtypes.rst:1117 library/stdtypes.rst:1259 +#: library/stdtypes.rst:1382 library/stdtypes.rst:1539 +#: library/stdtypes.rst:2532 library/stdtypes.rst:4219 +#: library/stdtypes.rst:4899 library/stdtypes.rst:5324 #: library/stdtypes.rst:5368 msgid "object" msgstr "" -#: library/stdtypes.rst:208 -#: library/stdtypes.rst:316 -#: library/stdtypes.rst:335 +#: library/stdtypes.rst:208 library/stdtypes.rst:316 library/stdtypes.rst:335 msgid "numeric" msgstr "" @@ -6331,8 +6279,7 @@ msgstr "" msgid "not in" msgstr "" -#: library/stdtypes.rst:229 -#: library/stdtypes.rst:393 +#: library/stdtypes.rst:229 library/stdtypes.rst:393 msgid "integer" msgstr "" @@ -6372,9 +6319,7 @@ msgstr "" msgid "arithmetic" msgstr "" -#: library/stdtypes.rst:950 -#: library/stdtypes.rst:4421 -#: library/stdtypes.rst:5389 +#: library/stdtypes.rst:950 library/stdtypes.rst:4421 library/stdtypes.rst:5389 #: library/stdtypes.rst:5404 msgid "built-in function" msgstr "" @@ -6391,8 +6336,7 @@ msgstr "" msgid "complex" msgstr "" -#: library/stdtypes.rst:2389 -#: library/stdtypes.rst:3607 +#: library/stdtypes.rst:2389 library/stdtypes.rst:3607 msgid "+ (plus)" msgstr "" @@ -6404,13 +6348,11 @@ msgstr "" msgid "binary operator" msgstr "" -#: library/stdtypes.rst:2389 -#: library/stdtypes.rst:3607 +#: library/stdtypes.rst:2389 library/stdtypes.rst:3607 msgid "- (minus)" msgstr "" -#: library/stdtypes.rst:2346 -#: library/stdtypes.rst:3564 +#: library/stdtypes.rst:2346 library/stdtypes.rst:3564 msgid "* (asterisk)" msgstr "" @@ -6422,8 +6364,7 @@ msgstr "" msgid "//" msgstr "" -#: library/stdtypes.rst:2316 -#: library/stdtypes.rst:3532 +#: library/stdtypes.rst:2316 library/stdtypes.rst:3532 msgid "% (percent)" msgstr "" @@ -6431,9 +6372,7 @@ msgstr "" msgid "**" msgstr "" -#: library/stdtypes.rst:393 -#: library/stdtypes.rst:1154 -#: library/stdtypes.rst:4421 +#: library/stdtypes.rst:393 library/stdtypes.rst:1154 library/stdtypes.rst:4421 msgid "operations on" msgstr "" @@ -6441,8 +6380,7 @@ msgstr "" msgid "conjugate() (complex number method)" msgstr "" -#: library/stdtypes.rst:1605 -#: library/stdtypes.rst:5404 +#: library/stdtypes.rst:1605 library/stdtypes.rst:5404 msgid "module" msgstr "" @@ -6518,9 +6456,7 @@ msgstr "" msgid "iterator" msgstr "" -#: library/stdtypes.rst:934 -#: library/stdtypes.rst:1117 -#: library/stdtypes.rst:1154 +#: library/stdtypes.rst:934 library/stdtypes.rst:1117 library/stdtypes.rst:1154 msgid "sequence" msgstr "" @@ -6608,19 +6544,16 @@ msgstr "" msgid "mutable" msgstr "" -#: library/stdtypes.rst:1154 -#: library/stdtypes.rst:1259 +#: library/stdtypes.rst:1154 library/stdtypes.rst:1259 msgid "list" msgstr "" -#: library/stdtypes.rst:2513 -#: library/stdtypes.rst:2711 +#: library/stdtypes.rst:2513 library/stdtypes.rst:2711 #: library/stdtypes.rst:3532 msgid "bytearray" msgstr "" -#: library/stdtypes.rst:4421 -#: library/stdtypes.rst:5404 +#: library/stdtypes.rst:4421 library/stdtypes.rst:5404 msgid "type" msgstr "" @@ -6668,8 +6601,7 @@ msgstr "" msgid "range" msgstr "" -#: library/stdtypes.rst:1552 -#: library/stdtypes.rst:2316 +#: library/stdtypes.rst:1552 library/stdtypes.rst:2316 msgid "string" msgstr "" @@ -6677,8 +6609,7 @@ msgstr "" msgid "text sequence type" msgstr "" -#: library/stdtypes.rst:1552 -#: library/stdtypes.rst:1570 +#: library/stdtypes.rst:1552 library/stdtypes.rst:1570 msgid "str (built-in class)" msgstr "" @@ -6694,8 +6625,7 @@ msgstr "" msgid "buffer protocol" msgstr "" -#: library/stdtypes.rst:2513 -#: library/stdtypes.rst:2711 +#: library/stdtypes.rst:2513 library/stdtypes.rst:2711 #: library/stdtypes.rst:3532 msgid "bytes" msgstr "" @@ -6744,8 +6674,7 @@ msgstr "" msgid "() (parentheses)" msgstr "" -#: library/stdtypes.rst:2389 -#: library/stdtypes.rst:3607 +#: library/stdtypes.rst:2389 library/stdtypes.rst:3607 msgid "in printf-style formatting" msgstr "" diff --git a/library/string.po b/library/string.po index f594a883..96f2c916 100644 --- a/library/string.po +++ b/library/string.po @@ -397,9 +397,7 @@ msgstr "" msgid "Option" msgstr "" -#: library/string.rst:373 -#: library/string.rst:467 -#: library/string.rst:502 +#: library/string.rst:373 library/string.rst:467 library/string.rst:502 msgid "Meaning" msgstr "" @@ -574,8 +572,7 @@ msgstr "" msgid "The available string presentation types are:" msgstr "" -#: library/string.rst:467 -#: library/string.rst:502 +#: library/string.rst:467 library/string.rst:502 msgid "Type" msgstr "" @@ -587,8 +584,7 @@ msgstr "" msgid "String format. This is the default type for strings and may be omitted." msgstr "" -#: library/string.rst:490 -#: library/string.rst:577 +#: library/string.rst:490 library/string.rst:577 msgid "None" msgstr "" @@ -1119,9 +1115,7 @@ msgstr "" msgid "{} (curly brackets)" msgstr "" -#: library/string.rst:335 -#: library/string.rst:386 -#: library/string.rst:409 +#: library/string.rst:335 library/string.rst:386 library/string.rst:409 #: library/string.rst:418 msgid "in string formatting" msgstr "" diff --git a/library/struct.po b/library/struct.po index 1419167a..0303e071 100644 --- a/library/struct.po +++ b/library/struct.po @@ -185,13 +185,11 @@ msgstr "" msgid "``=``" msgstr "" -#: library/struct.rst:150 -#: library/struct.rst:154 +#: library/struct.rst:150 library/struct.rst:154 msgid "standard" msgstr "" -#: library/struct.rst:150 -#: library/struct.rst:154 +#: library/struct.rst:150 library/struct.rst:154 msgid "none" msgstr "" @@ -364,8 +362,7 @@ msgstr "" msgid "bytes of length 1" msgstr "" -#: library/struct.rst:226 -#: library/struct.rst:230 +#: library/struct.rst:226 library/struct.rst:230 msgid "1" msgstr "" @@ -377,12 +374,8 @@ msgstr "" msgid ":c:expr:`signed char`" msgstr "" -#: library/struct.rst:228 -#: library/struct.rst:234 -#: library/struct.rst:238 -#: library/struct.rst:242 -#: library/struct.rst:246 -#: library/struct.rst:251 +#: library/struct.rst:228 library/struct.rst:234 library/struct.rst:238 +#: library/struct.rst:242 library/struct.rst:246 library/struct.rst:251 #: library/struct.rst:263 msgid "integer" msgstr "" @@ -399,11 +392,8 @@ msgstr "" msgid ":c:expr:`unsigned char`" msgstr "" -#: library/struct.rst:232 -#: library/struct.rst:236 -#: library/struct.rst:240 -#: library/struct.rst:244 -#: library/struct.rst:246 +#: library/struct.rst:232 library/struct.rst:236 library/struct.rst:240 +#: library/struct.rst:244 library/struct.rst:246 msgid "\\(2)" msgstr "" @@ -431,8 +421,7 @@ msgstr "" msgid ":c:expr:`short`" msgstr "" -#: library/struct.rst:234 -#: library/struct.rst:253 +#: library/struct.rst:234 library/struct.rst:253 msgid "2" msgstr "" @@ -452,9 +441,7 @@ msgstr "" msgid ":c:expr:`int`" msgstr "" -#: library/struct.rst:238 -#: library/struct.rst:242 -#: library/struct.rst:255 +#: library/struct.rst:238 library/struct.rst:242 library/struct.rst:255 msgid "4" msgstr "" @@ -490,8 +477,7 @@ msgstr "" msgid ":c:expr:`long long`" msgstr "" -#: library/struct.rst:246 -#: library/struct.rst:257 +#: library/struct.rst:246 library/struct.rst:257 msgid "8" msgstr "" @@ -531,13 +517,11 @@ msgstr "" msgid "\\(6)" msgstr "" -#: library/struct.rst:255 -#: library/struct.rst:257 +#: library/struct.rst:255 library/struct.rst:257 msgid "float" msgstr "" -#: library/struct.rst:255 -#: library/struct.rst:257 +#: library/struct.rst:255 library/struct.rst:257 msgid "\\(4)" msgstr "" @@ -967,8 +951,7 @@ msgstr "" msgid "@ (at)" msgstr "" -#: library/struct.rst:276 -#: library/struct.rst:363 +#: library/struct.rst:276 library/struct.rst:363 msgid "in struct format strings" msgstr "" diff --git a/library/subprocess.po b/library/subprocess.po index 0c2d1d18..8da69069 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -149,8 +149,7 @@ msgid "" "*universal_newlines*. Added the *capture_output* parameter." msgstr "" -#: library/subprocess.rst:503 -#: library/subprocess.rst:1227 +#: library/subprocess.rst:503 library/subprocess.rst:1227 #: library/subprocess.rst:1290 msgid "" "Changed Windows shell search order for ``shell=True``. The current directory " @@ -352,8 +351,7 @@ msgid "" "binary streams. No encoding or line ending conversion is performed." msgstr "" -#: library/subprocess.rst:1542 -#: library/subprocess.rst:1560 +#: library/subprocess.rst:1542 library/subprocess.rst:1560 msgid "Added the *encoding* and *errors* parameters." msgstr "" @@ -709,8 +707,7 @@ msgid "" "the child process prior to the execution of the subprocess." msgstr "" -#: library/subprocess.rst:602 -#: library/subprocess.rst:621 +#: library/subprocess.rst:602 library/subprocess.rst:621 #: library/subprocess.rst:636 msgid ":ref:`Availability `: POSIX" msgstr "" @@ -1016,8 +1013,7 @@ msgid "" "create_subprocess_exec`." msgstr "" -#: library/subprocess.rst:841 -#: library/subprocess.rst:1222 +#: library/subprocess.rst:841 library/subprocess.rst:1222 #: library/subprocess.rst:1276 msgid "*timeout* was added." msgstr "" @@ -1534,8 +1530,7 @@ msgstr "" msgid "Replacing :program:`/bin/sh` shell command substitution" msgstr "" -#: library/subprocess.rst:1337 -#: library/subprocess.rst:1354 +#: library/subprocess.rst:1337 library/subprocess.rst:1354 msgid "becomes::" msgstr "" diff --git a/library/sys.po b/library/sys.po index a08f23e1..d55656c3 100644 --- a/library/sys.po +++ b/library/sys.po @@ -39,8 +39,7 @@ msgid "" "removed)." msgstr "" -#: library/sys.rst:765 -#: library/sys.rst:1459 +#: library/sys.rst:765 library/sys.rst:1459 msgid ":ref:`Availability `: Unix." msgstr "" @@ -242,8 +241,7 @@ msgid "" "during reference leak debugging." msgstr "" -#: library/sys.rst:212 -#: library/sys.rst:225 +#: library/sys.rst:212 library/sys.rst:225 msgid "" "This function should be used for internal and specialized purposes only." msgstr "" @@ -362,8 +360,7 @@ msgstr "" msgid "Integer specifying the handle of the Python DLL." msgstr "" -#: library/sys.rst:978 -#: library/sys.rst:1981 +#: library/sys.rst:978 library/sys.rst:1981 msgid ":ref:`Availability `: Windows." msgstr "" @@ -2159,8 +2156,7 @@ msgid "" "is ``\"perf\"``." msgstr "" -#: library/sys.rst:1721 -#: library/sys.rst:1729 +#: library/sys.rst:1721 library/sys.rst:1729 msgid ":ref:`Availability `: Linux." msgstr "" diff --git a/library/sysconfig.po b/library/sysconfig.po index 2609c60e..8f8d00b6 100644 --- a/library/sysconfig.po +++ b/library/sysconfig.po @@ -222,20 +222,17 @@ msgstr "" msgid "``posix_user``" msgstr "" -#: library/sysconfig.rst:144 -#: library/sysconfig.rst:187 +#: library/sysconfig.rst:144 library/sysconfig.rst:187 #: library/sysconfig.rst:245 msgid "Path" msgstr "" -#: library/sysconfig.rst:144 -#: library/sysconfig.rst:187 +#: library/sysconfig.rst:144 library/sysconfig.rst:187 #: library/sysconfig.rst:245 msgid "Installation directory" msgstr "" -#: library/sysconfig.rst:146 -#: library/sysconfig.rst:189 +#: library/sysconfig.rst:146 library/sysconfig.rst:189 #: library/sysconfig.rst:247 msgid "*stdlib*" msgstr "" @@ -244,14 +241,12 @@ msgstr "" msgid ":file:`{userbase}/lib/python{X.Y}`" msgstr "" -#: library/sysconfig.rst:147 -#: library/sysconfig.rst:190 +#: library/sysconfig.rst:147 library/sysconfig.rst:190 #: library/sysconfig.rst:248 msgid "*platstdlib*" msgstr "" -#: library/sysconfig.rst:148 -#: library/sysconfig.rst:191 +#: library/sysconfig.rst:148 library/sysconfig.rst:191 #: library/sysconfig.rst:249 msgid "*platlib*" msgstr "" @@ -260,14 +255,12 @@ msgstr "" msgid ":file:`{userbase}/lib/python{X.Y}/site-packages`" msgstr "" -#: library/sysconfig.rst:149 -#: library/sysconfig.rst:192 +#: library/sysconfig.rst:149 library/sysconfig.rst:192 #: library/sysconfig.rst:250 msgid "*purelib*" msgstr "" -#: library/sysconfig.rst:150 -#: library/sysconfig.rst:193 +#: library/sysconfig.rst:150 library/sysconfig.rst:193 #: library/sysconfig.rst:251 msgid "*include*" msgstr "" @@ -276,8 +269,7 @@ msgstr "" msgid ":file:`{userbase}/include/python{X.Y}`" msgstr "" -#: library/sysconfig.rst:151 -#: library/sysconfig.rst:195 +#: library/sysconfig.rst:151 library/sysconfig.rst:195 #: library/sysconfig.rst:253 msgid "*scripts*" msgstr "" @@ -286,14 +278,12 @@ msgstr "" msgid ":file:`{userbase}/bin`" msgstr "" -#: library/sysconfig.rst:152 -#: library/sysconfig.rst:196 +#: library/sysconfig.rst:152 library/sysconfig.rst:196 #: library/sysconfig.rst:254 msgid "*data*" msgstr "" -#: library/sysconfig.rst:152 -#: library/sysconfig.rst:167 +#: library/sysconfig.rst:152 library/sysconfig.rst:167 msgid ":file:`{userbase}`" msgstr "" @@ -347,8 +337,7 @@ msgstr "" msgid "``posix_home``" msgstr "" -#: library/sysconfig.rst:190 -#: library/sysconfig.rst:192 +#: library/sysconfig.rst:190 library/sysconfig.rst:192 msgid ":file:`{home}/lib/python`" msgstr "" @@ -356,8 +345,7 @@ msgstr "" msgid ":file:`{home}/include/python`" msgstr "" -#: library/sysconfig.rst:236 -#: library/sysconfig.rst:252 +#: library/sysconfig.rst:236 library/sysconfig.rst:252 msgid "*platinclude*" msgstr "" diff --git a/library/tarfile.po b/library/tarfile.po index 7e9c05c3..a5fe1c05 100644 --- a/library/tarfile.po +++ b/library/tarfile.po @@ -345,8 +345,7 @@ msgstr "" msgid "The ``'x'`` (exclusive creation) mode was added." msgstr "" -#: library/tarfile.rst:425 -#: library/tarfile.rst:660 +#: library/tarfile.rst:425 library/tarfile.rst:660 msgid "The *name* parameter accepts a :term:`path-like object`." msgstr "" @@ -768,8 +767,7 @@ msgstr "" msgid "The *path* parameter accepts a :term:`path-like object`." msgstr "" -#: library/tarfile.rst:548 -#: library/tarfile.rst:626 +#: library/tarfile.rst:548 library/tarfile.rst:626 msgid "Added the *filter* parameter." msgstr "" @@ -1029,9 +1027,7 @@ msgid "" "attr:`os.stat_result.st_mtime`." msgstr "" -#: library/tarfile.rst:767 -#: library/tarfile.rst:810 -#: library/tarfile.rst:832 +#: library/tarfile.rst:767 library/tarfile.rst:810 library/tarfile.rst:832 msgid "" "Can be set to ``None`` for :meth:`~TarFile.extract` and :meth:`~TarFile." "extractall`, causing extraction to skip applying this attribute." diff --git a/library/tempfile.po b/library/tempfile.po index 60aee03f..3551d888 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -102,8 +102,7 @@ msgid "" "for NamedTemporaryFile." msgstr "" -#: library/tempfile.rst:137 -#: library/tempfile.rst:264 +#: library/tempfile.rst:137 library/tempfile.rst:264 msgid "" "Raises an :ref:`auditing event ` ``tempfile.mkstemp`` with " "argument ``fullpath``." @@ -113,8 +112,7 @@ msgstr "" msgid "The :py:const:`os.O_TMPFILE` flag is now used if available." msgstr "" -#: library/tempfile.rst:139 -#: library/tempfile.rst:169 +#: library/tempfile.rst:139 library/tempfile.rst:169 msgid "Added *errors* parameter." msgstr "" diff --git a/library/test.po b/library/test.po index 421a18e0..6ddb19ac 100644 --- a/library/test.po +++ b/library/test.po @@ -632,8 +632,7 @@ msgstr "" msgid "Context manager to swap out an attribute with a new object." msgstr "" -#: library/test.rst:625 -#: library/test.rst:1326 +#: library/test.rst:625 library/test.rst:1326 msgid "Usage::" msgstr "" @@ -1165,8 +1164,7 @@ msgid "" "``__cwd``, and ``TERM``." msgstr "" -#: library/test.rst:1171 -#: library/test.rst:1183 +#: library/test.rst:1171 library/test.rst:1183 msgid "The function no longer strips whitespaces from *stderr*." msgstr "" diff --git a/library/threading.po b/library/threading.po index 3f2eff14..205af140 100644 --- a/library/threading.po +++ b/library/threading.po @@ -721,8 +721,7 @@ msgid "" "if not (for example if the *timeout* expired)." msgstr "" -#: library/threading.rst:643 -#: library/threading.rst:890 +#: library/threading.rst:643 library/threading.rst:890 msgid "The *timeout* parameter is new." msgstr "" @@ -940,8 +939,7 @@ msgid "" "a new :class:`RLock` object is created and used as the underlying lock." msgstr "" -#: library/threading.rst:865 -#: library/threading.rst:963 +#: library/threading.rst:865 library/threading.rst:963 #: library/threading.rst:1031 msgid "changed from a factory function to a class." msgstr "" diff --git a/library/time.po b/library/time.po index 9ed8122b..a0efbc9a 100644 --- a/library/time.po +++ b/library/time.po @@ -142,9 +142,7 @@ msgstr "" msgid "Use" msgstr "" -#: library/time.rst:102 -#: library/time.rst:108 -#: library/time.rst:111 +#: library/time.rst:102 library/time.rst:108 library/time.rst:111 msgid "seconds since the epoch" msgstr "" @@ -231,11 +229,8 @@ msgid "" "to :ref:`time-clock-id-constants` for a list of accepted values for *clk_id*." msgstr "" -#: library/time.rst:174 -#: library/time.rst:196 -#: library/time.rst:716 -#: library/time.rst:852 -#: library/time.rst:915 +#: library/time.rst:174 library/time.rst:196 library/time.rst:716 +#: library/time.rst:852 library/time.rst:915 msgid ":ref:`Availability `: Unix." msgstr "" @@ -1384,8 +1379,7 @@ msgstr "" msgid "Daylight Saving Time" msgstr "" -#: library/time.rst:336 -#: library/time.rst:678 +#: library/time.rst:336 library/time.rst:678 msgid "benchmarking" msgstr "" diff --git a/library/timeit.po b/library/timeit.po index ef0b6b9c..0dff0724 100644 --- a/library/timeit.po +++ b/library/timeit.po @@ -74,8 +74,7 @@ msgid "" "to execute the code." msgstr "" -#: library/timeit.rst:83 -#: library/timeit.rst:122 +#: library/timeit.rst:83 library/timeit.rst:122 msgid "The optional *globals* parameter was added." msgstr "" diff --git a/library/tkinter.ttk.po b/library/tkinter.ttk.po index 7c37377c..24623012 100644 --- a/library/tkinter.ttk.po +++ b/library/tkinter.ttk.po @@ -145,24 +145,17 @@ msgstr "" msgid "All the :mod:`ttk` Widgets accept the following options:" msgstr "" -#: library/tkinter.ttk.rst:145 -#: library/tkinter.ttk.rst:214 -#: library/tkinter.ttk.rst:403 -#: library/tkinter.ttk.rst:505 -#: library/tkinter.ttk.rst:740 -#: library/tkinter.ttk.rst:859 +#: library/tkinter.ttk.rst:145 library/tkinter.ttk.rst:214 +#: library/tkinter.ttk.rst:403 library/tkinter.ttk.rst:505 +#: library/tkinter.ttk.rst:740 library/tkinter.ttk.rst:859 #: library/tkinter.ttk.rst:887 msgid "Option" msgstr "" -#: library/tkinter.ttk.rst:145 -#: library/tkinter.ttk.rst:214 -#: library/tkinter.ttk.rst:317 -#: library/tkinter.ttk.rst:479 -#: library/tkinter.ttk.rst:669 -#: library/tkinter.ttk.rst:808 -#: library/tkinter.ttk.rst:887 -#: library/tkinter.ttk.rst:932 +#: library/tkinter.ttk.rst:145 library/tkinter.ttk.rst:214 +#: library/tkinter.ttk.rst:317 library/tkinter.ttk.rst:479 +#: library/tkinter.ttk.rst:669 library/tkinter.ttk.rst:808 +#: library/tkinter.ttk.rst:887 library/tkinter.ttk.rst:932 msgid "Description" msgstr "" @@ -261,8 +254,7 @@ msgid "" "widgets." msgstr "" -#: library/tkinter.ttk.rst:521 -#: library/tkinter.ttk.rst:861 +#: library/tkinter.ttk.rst:521 library/tkinter.ttk.rst:861 msgid "text" msgstr "" @@ -290,8 +282,7 @@ msgid "" "text string. The underline character is used for mnemonic activation." msgstr "" -#: library/tkinter.ttk.rst:523 -#: library/tkinter.ttk.rst:895 +#: library/tkinter.ttk.rst:523 library/tkinter.ttk.rst:895 msgid "image" msgstr "" @@ -332,8 +323,7 @@ msgstr "" msgid "none: the default. display the image if present, otherwise the text." msgstr "" -#: library/tkinter.ttk.rst:347 -#: library/tkinter.ttk.rst:491 +#: library/tkinter.ttk.rst:347 library/tkinter.ttk.rst:491 msgid "width" msgstr "" @@ -348,8 +338,7 @@ msgstr "" msgid "Compatibility Options" msgstr "" -#: library/tkinter.ttk.rst:332 -#: library/tkinter.ttk.rst:507 +#: library/tkinter.ttk.rst:332 library/tkinter.ttk.rst:507 msgid "state" msgstr "" @@ -516,14 +505,12 @@ msgid "" "it has some other methods, described at :class:`ttk.Combobox`." msgstr "" -#: library/tkinter.ttk.rst:396 -#: library/tkinter.ttk.rst:662 +#: library/tkinter.ttk.rst:396 library/tkinter.ttk.rst:662 #: library/tkinter.ttk.rst:801 msgid "Options" msgstr "" -#: library/tkinter.ttk.rst:398 -#: library/tkinter.ttk.rst:664 +#: library/tkinter.ttk.rst:398 library/tkinter.ttk.rst:664 #: library/tkinter.ttk.rst:803 msgid "This widget accepts the following specific options:" msgstr "" @@ -549,8 +536,7 @@ msgid "" "\"center\", or \"right\"." msgstr "" -#: library/tkinter.ttk.rst:481 -#: library/tkinter.ttk.rst:818 +#: library/tkinter.ttk.rst:481 library/tkinter.ttk.rst:818 msgid "height" msgstr "" @@ -583,8 +569,7 @@ msgid "" "vice versa. See :class:`tkinter.StringVar`." msgstr "" -#: library/tkinter.ttk.rst:417 -#: library/tkinter.ttk.rst:865 +#: library/tkinter.ttk.rst:417 library/tkinter.ttk.rst:865 msgid "values" msgstr "" @@ -755,8 +740,7 @@ msgid "" "of all panes is used." msgstr "" -#: library/tkinter.ttk.rst:517 -#: library/tkinter.ttk.rst:822 +#: library/tkinter.ttk.rst:517 library/tkinter.ttk.rst:822 msgid "padding" msgstr "" @@ -1502,8 +1486,7 @@ msgid "" "Otherwise, sets the options to the corresponding values." msgstr "" -#: library/tkinter.ttk.rst:1042 -#: library/tkinter.ttk.rst:1520 +#: library/tkinter.ttk.rst:1042 library/tkinter.ttk.rst:1520 msgid "The valid options/values are:" msgstr "" @@ -1806,8 +1789,7 @@ msgstr "" msgid "*items* becomes the new selection." msgstr "" -#: library/tkinter.ttk.rst:1197 -#: library/tkinter.ttk.rst:1213 +#: library/tkinter.ttk.rst:1197 library/tkinter.ttk.rst:1213 msgid "" "*items* can be passed as separate arguments, not just as a single tuple." msgstr "" diff --git a/library/tomllib.po b/library/tomllib.po index 1bb0eded..4f1de2f3 100644 --- a/library/tomllib.po +++ b/library/tomllib.po @@ -114,8 +114,7 @@ msgstr "" msgid "TOML document" msgstr "" -#: library/tomllib.rst:118 -#: library/tomllib.rst:120 +#: library/tomllib.rst:118 library/tomllib.rst:120 msgid "dict" msgstr "" diff --git a/library/turtle.po b/library/turtle.po index 4f3bc015..441c4f0f 100644 --- a/library/turtle.po +++ b/library/turtle.po @@ -116,8 +116,7 @@ msgid "" "Experiment with those commands, and also with ``backward()`` and ``right()``." msgstr "" -#: library/turtle.rst:346 -#: library/turtle.rst:1016 +#: library/turtle.rst:346 library/turtle.rst:1016 msgid "Pen control" msgstr "" @@ -801,9 +800,7 @@ msgstr "" msgid "Parameters" msgstr "" -#: library/turtle.rst:483 -#: library/turtle.rst:606 -#: library/turtle.rst:652 +#: library/turtle.rst:483 library/turtle.rst:606 library/turtle.rst:652 msgid "a number (integer or float)" msgstr "" @@ -813,9 +810,7 @@ msgid "" "turtle is headed." msgstr "" -#: library/turtle.rst:702 -#: library/turtle.rst:1477 -#: library/turtle.rst:1496 +#: library/turtle.rst:702 library/turtle.rst:1477 library/turtle.rst:1496 msgid "a number" msgstr "" @@ -843,8 +838,7 @@ msgstr "" msgid "a number or a pair/vector of numbers" msgstr "" -#: library/turtle.rst:568 -#: library/turtle.rst:569 +#: library/turtle.rst:568 library/turtle.rst:569 msgid "a number or ``None``" msgstr "" @@ -1471,8 +1465,7 @@ msgid "" "arguments." msgstr "" -#: library/turtle.rst:1430 -#: library/turtle.rst:1431 +#: library/turtle.rst:1430 library/turtle.rst:1431 msgid "positive number" msgstr "" @@ -1486,8 +1479,7 @@ msgid "" "determines the width of the shape's outline." msgstr "" -#: library/turtle.rst:2115 -#: library/turtle.rst:2117 +#: library/turtle.rst:2115 library/turtle.rst:2117 msgid "number (optional)" msgstr "" @@ -1513,9 +1505,7 @@ msgid "" "(direction of movement)." msgstr "" -#: library/turtle.rst:1541 -#: library/turtle.rst:1543 -#: library/turtle.rst:1544 +#: library/turtle.rst:1541 library/turtle.rst:1543 library/turtle.rst:1544 msgid "a number (optional)" msgstr "" @@ -1549,20 +1539,17 @@ msgid "" "used to define a new shape or components of a compound shape." msgstr "" -#: library/turtle.rst:1610 -#: library/turtle.rst:2039 +#: library/turtle.rst:1610 library/turtle.rst:2039 msgid "" "a function with two arguments which will be called with the coordinates of " "the clicked point on the canvas" msgstr "" -#: library/turtle.rst:1612 -#: library/turtle.rst:2041 +#: library/turtle.rst:1612 library/turtle.rst:2041 msgid "number of the mouse-button, defaults to 1 (left mouse button)" msgstr "" -#: library/turtle.rst:1613 -#: library/turtle.rst:2042 +#: library/turtle.rst:1613 library/turtle.rst:2042 msgid "" "``True`` or ``False`` -- if ``True``, a new binding will be added, otherwise " "it will replace a former binding" @@ -1900,8 +1887,7 @@ msgid "" "turtle graphics. ::" msgstr "" -#: library/turtle.rst:2101 -#: library/turtle.rst:2114 +#: library/turtle.rst:2101 library/turtle.rst:2114 msgid "string" msgstr "" diff --git a/library/typing.po b/library/typing.po index 95916c75..57291ec0 100644 --- a/library/typing.po +++ b/library/typing.po @@ -403,8 +403,7 @@ msgid "" "of type :class:`int` and returns a :class:`str`." msgstr "" -#: library/typing.rst:2889 -#: library/typing.rst:3031 +#: library/typing.rst:2889 library/typing.rst:3031 msgid "For example:" msgstr "" @@ -821,9 +820,7 @@ msgid "" "or :class:`bytes` arguments but cannot allow the two to mix." msgstr "" -#: library/typing.rst:934 -#: library/typing.rst:1010 -#: library/typing.rst:1233 +#: library/typing.rst:934 library/typing.rst:1010 library/typing.rst:1233 #: library/typing.rst:2829 msgid "For example::" msgstr "" @@ -1806,8 +1803,7 @@ msgstr "" msgid "Typed version of :func:`collections.namedtuple`." msgstr "" -#: library/typing.rst:2106 -#: library/typing.rst:3071 +#: library/typing.rst:2106 library/typing.rst:3071 msgid "Usage::" msgstr "" @@ -3476,8 +3472,7 @@ msgstr "" msgid "3.11" msgstr "" -#: library/typing.rst:3679 -#: library/typing.rst:3683 +#: library/typing.rst:3679 library/typing.rst:3683 msgid "Undecided" msgstr "" diff --git a/library/unittest.po b/library/unittest.po index 2968fb07..60d193f6 100644 --- a/library/unittest.po +++ b/library/unittest.po @@ -916,18 +916,15 @@ msgid "" "(see the tables below for more assert methods):" msgstr "" -#: library/unittest.rst:974 -#: library/unittest.rst:1312 +#: library/unittest.rst:974 library/unittest.rst:1312 msgid "Method" msgstr "" -#: library/unittest.rst:974 -#: library/unittest.rst:1188 +#: library/unittest.rst:974 library/unittest.rst:1188 msgid "Checks that" msgstr "" -#: library/unittest.rst:974 -#: library/unittest.rst:1312 +#: library/unittest.rst:974 library/unittest.rst:1312 msgid "New in" msgstr "" @@ -971,15 +968,10 @@ msgstr "" msgid "``a is b``" msgstr "" -#: library/unittest.rst:870 -#: library/unittest.rst:876 -#: library/unittest.rst:882 -#: library/unittest.rst:1196 -#: library/unittest.rst:1202 -#: library/unittest.rst:1208 -#: library/unittest.rst:1317 -#: library/unittest.rst:1323 -#: library/unittest.rst:1329 +#: library/unittest.rst:870 library/unittest.rst:876 library/unittest.rst:882 +#: library/unittest.rst:1196 library/unittest.rst:1202 +#: library/unittest.rst:1208 library/unittest.rst:1317 +#: library/unittest.rst:1323 library/unittest.rst:1329 msgid "3.1" msgstr "" @@ -1031,9 +1023,7 @@ msgstr "" msgid "``isinstance(a, b)``" msgstr "" -#: library/unittest.rst:888 -#: library/unittest.rst:985 -#: library/unittest.rst:1214 +#: library/unittest.rst:888 library/unittest.rst:985 library/unittest.rst:1214 msgid "3.2" msgstr "" @@ -1226,8 +1216,7 @@ msgstr "" msgid "Added the :attr:`exception` attribute." msgstr "" -#: library/unittest.rst:1057 -#: library/unittest.rst:1121 +#: library/unittest.rst:1057 library/unittest.rst:1121 msgid "Added the *msg* keyword argument when used as a context manager." msgstr "" diff --git a/library/urllib.parse.po b/library/urllib.parse.po index 1408bf4b..73d5725e 100644 --- a/library/urllib.parse.po +++ b/library/urllib.parse.po @@ -99,23 +99,19 @@ msgid "" "accessed by index or as named attributes, which are:" msgstr "" -#: library/urllib.parse.rst:297 -#: library/urllib.parse.rst:410 +#: library/urllib.parse.rst:297 library/urllib.parse.rst:410 msgid "Attribute" msgstr "" -#: library/urllib.parse.rst:297 -#: library/urllib.parse.rst:410 +#: library/urllib.parse.rst:297 library/urllib.parse.rst:410 msgid "Index" msgstr "" -#: library/urllib.parse.rst:297 -#: library/urllib.parse.rst:410 +#: library/urllib.parse.rst:297 library/urllib.parse.rst:410 msgid "Value" msgstr "" -#: library/urllib.parse.rst:297 -#: library/urllib.parse.rst:410 +#: library/urllib.parse.rst:297 library/urllib.parse.rst:410 msgid "Value if not present" msgstr "" @@ -123,8 +119,7 @@ msgstr "" msgid ":attr:`scheme`" msgstr "" -#: library/urllib.parse.rst:299 -#: library/urllib.parse.rst:412 +#: library/urllib.parse.rst:299 library/urllib.parse.rst:412 msgid "0" msgstr "" @@ -140,8 +135,7 @@ msgstr "" msgid ":attr:`netloc`" msgstr "" -#: library/urllib.parse.rst:301 -#: library/urllib.parse.rst:414 +#: library/urllib.parse.rst:301 library/urllib.parse.rst:414 msgid "1" msgstr "" @@ -149,12 +143,9 @@ msgstr "" msgid "Network location part" msgstr "" -#: library/urllib.parse.rst:114 -#: library/urllib.parse.rst:119 -#: library/urllib.parse.rst:301 -#: library/urllib.parse.rst:305 -#: library/urllib.parse.rst:412 -#: library/urllib.parse.rst:414 +#: library/urllib.parse.rst:114 library/urllib.parse.rst:119 +#: library/urllib.parse.rst:301 library/urllib.parse.rst:305 +#: library/urllib.parse.rst:412 library/urllib.parse.rst:414 msgid "empty string" msgstr "" @@ -194,8 +185,7 @@ msgstr "" msgid "Query component" msgstr "" -#: library/urllib.parse.rst:307 -#: library/urllib.parse.rst:414 +#: library/urllib.parse.rst:307 library/urllib.parse.rst:414 msgid ":attr:`fragment`" msgstr "" @@ -203,8 +193,7 @@ msgstr "" msgid "5" msgstr "" -#: library/urllib.parse.rst:307 -#: library/urllib.parse.rst:414 +#: library/urllib.parse.rst:307 library/urllib.parse.rst:414 msgid "Fragment identifier" msgstr "" @@ -216,10 +205,8 @@ msgstr "" msgid "User name" msgstr "" -#: library/urllib.parse.rst:125 -#: library/urllib.parse.rst:129 -#: library/urllib.parse.rst:311 -#: library/urllib.parse.rst:315 +#: library/urllib.parse.rst:125 library/urllib.parse.rst:129 +#: library/urllib.parse.rst:311 library/urllib.parse.rst:315 msgid ":const:`None`" msgstr "" @@ -710,8 +697,7 @@ msgid "" "not be quoted --- its default value is ``'/'``." msgstr "" -#: library/urllib.parse.rst:653 -#: library/urllib.parse.rst:682 +#: library/urllib.parse.rst:653 library/urllib.parse.rst:682 msgid "*string* may be either a :class:`str` or a :class:`bytes` object." msgstr "" diff --git a/library/urllib.request.po b/library/urllib.request.po index dc076b18..cfb6b2bb 100644 --- a/library/urllib.request.po +++ b/library/urllib.request.po @@ -1193,10 +1193,8 @@ msgstr "" msgid "HTTPBasicAuthHandler Objects" msgstr "" -#: library/urllib.request.rst:1019 -#: library/urllib.request.rst:1030 -#: library/urllib.request.rst:1055 -#: library/urllib.request.rst:1066 +#: library/urllib.request.rst:1019 library/urllib.request.rst:1030 +#: library/urllib.request.rst:1055 library/urllib.request.rst:1066 msgid "Retry the request with authentication information, if available." msgstr "" @@ -1796,23 +1794,19 @@ msgstr "" msgid "Deprecated in favor of :attr:`~addinfourl.headers`." msgstr "" -#: library/urllib.request.rst:1636 -#: library/urllib.request.rst:1641 +#: library/urllib.request.rst:1636 library/urllib.request.rst:1641 msgid "Deprecated in favor of :attr:`~addinfourl.status`." msgstr "" -#: library/urllib.request.rst:1545 -#: library/urllib.request.rst:1568 +#: library/urllib.request.rst:1545 library/urllib.request.rst:1568 msgid "HTTP" msgstr "" -#: library/urllib.request.rst:1545 -#: library/urllib.request.rst:1568 +#: library/urllib.request.rst:1545 library/urllib.request.rst:1568 msgid "protocol" msgstr "" -#: library/urllib.request.rst:1545 -#: library/urllib.request.rst:1579 +#: library/urllib.request.rst:1545 library/urllib.request.rst:1579 msgid "FTP" msgstr "" diff --git a/library/webbrowser.po b/library/webbrowser.po index ae9b17fe..1ed08e4a 100644 --- a/library/webbrowser.po +++ b/library/webbrowser.po @@ -197,13 +197,11 @@ msgstr "" msgid "``'kfmclient'``" msgstr "" -#: library/webbrowser.rst:122 -#: library/webbrowser.rst:124 +#: library/webbrowser.rst:122 library/webbrowser.rst:124 msgid ":class:`Konqueror()`" msgstr "" -#: library/webbrowser.rst:122 -#: library/webbrowser.rst:124 +#: library/webbrowser.rst:122 library/webbrowser.rst:124 msgid "\\(1)" msgstr "" diff --git a/library/winreg.po b/library/winreg.po index f60d01e5..dadcc2a5 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -70,8 +70,7 @@ msgstr "" msgid "*key* is the predefined handle to connect to." msgstr "" -#: library/winreg.rst:77 -#: library/winreg.rst:109 +#: library/winreg.rst:77 library/winreg.rst:109 msgid "" "The return value is the handle of the opened key. If the function fails, an :" "exc:`OSError` exception is raised." @@ -83,9 +82,7 @@ msgid "" "arguments ``computer_name``, ``key``." msgstr "" -#: library/winreg.rst:84 -#: library/winreg.rst:139 -#: library/winreg.rst:203 +#: library/winreg.rst:84 library/winreg.rst:139 library/winreg.rst:203 #: library/winreg.rst:329 msgid "See :ref:`above `." msgstr "" @@ -96,15 +93,9 @@ msgid "" "object>`." msgstr "" -#: library/winreg.rst:93 -#: library/winreg.rst:147 -#: library/winreg.rst:192 -#: library/winreg.rst:260 -#: library/winreg.rst:337 -#: library/winreg.rst:383 -#: library/winreg.rst:432 -#: library/winreg.rst:491 -#: library/winreg.rst:523 +#: library/winreg.rst:93 library/winreg.rst:147 library/winreg.rst:192 +#: library/winreg.rst:260 library/winreg.rst:337 library/winreg.rst:383 +#: library/winreg.rst:432 library/winreg.rst:491 library/winreg.rst:523 msgid "" "*key* is an already open key, or one of the predefined :ref:`HKEY_* " "constants `." @@ -130,8 +121,7 @@ msgid "" "arguments ``key``, ``sub_key``, ``access``." msgstr "" -#: library/winreg.rst:114 -#: library/winreg.rst:324 +#: library/winreg.rst:114 library/winreg.rst:324 msgid "" "Raises an :ref:`auditing event ` ``winreg.OpenKey/result`` with " "argument ``key``." @@ -250,18 +240,15 @@ msgstr "" msgid "The result is a tuple of 3 items:" msgstr "" -#: library/winreg.rst:343 -#: library/winreg.rst:391 +#: library/winreg.rst:343 library/winreg.rst:391 msgid "Index" msgstr "" -#: library/winreg.rst:343 -#: library/winreg.rst:391 +#: library/winreg.rst:343 library/winreg.rst:391 msgid "Meaning" msgstr "" -#: library/winreg.rst:345 -#: library/winreg.rst:393 +#: library/winreg.rst:345 library/winreg.rst:393 msgid "``0``" msgstr "" @@ -269,8 +256,7 @@ msgstr "" msgid "A string that identifies the value name" msgstr "" -#: library/winreg.rst:348 -#: library/winreg.rst:395 +#: library/winreg.rst:348 library/winreg.rst:395 msgid "``1``" msgstr "" @@ -600,8 +586,7 @@ msgid "" "operating system." msgstr "" -#: library/winreg.rst:511 -#: library/winreg.rst:528 +#: library/winreg.rst:511 library/winreg.rst:528 msgid "" "Will generally raise :exc:`NotImplementedError` if executed on a 32-bit " "operating system." diff --git a/library/wsgiref.po b/library/wsgiref.po index a8981525..9faf0114 100644 --- a/library/wsgiref.po +++ b/library/wsgiref.po @@ -159,8 +159,7 @@ msgid "" "actual WSGI servers or applications, since the data is fake!" msgstr "" -#: library/wsgiref.rst:170 -#: library/wsgiref.rst:426 +#: library/wsgiref.rst:170 library/wsgiref.rst:426 msgid "Example usage::" msgstr "" diff --git a/library/xml.dom.minidom.po b/library/xml.dom.minidom.po index cf4442f2..b99295dd 100644 --- a/library/xml.dom.minidom.po +++ b/library/xml.dom.minidom.po @@ -187,8 +187,7 @@ msgid "" "the user." msgstr "" -#: library/xml.dom.minidom.rst:159 -#: library/xml.dom.minidom.rst:180 +#: library/xml.dom.minidom.rst:159 library/xml.dom.minidom.rst:180 #: library/xml.dom.minidom.rst:199 msgid "The *standalone* parameter was added." msgstr "" @@ -208,8 +207,7 @@ msgid "" "incorrect, since UTF-8 is the default encoding of XML." msgstr "" -#: library/xml.dom.minidom.rst:174 -#: library/xml.dom.minidom.rst:193 +#: library/xml.dom.minidom.rst:174 library/xml.dom.minidom.rst:193 msgid "The *standalone* argument behaves exactly as in :meth:`writexml`." msgstr "" diff --git a/library/xml.dom.po b/library/xml.dom.po index 15bcabe5..18597527 100644 --- a/library/xml.dom.po +++ b/library/xml.dom.po @@ -1267,8 +1267,7 @@ msgstr "" msgid "``bool`` or ``int``" msgstr "" -#: library/xml.dom.rst:987 -#: library/xml.dom.rst:989 +#: library/xml.dom.rst:987 library/xml.dom.rst:989 msgid "``int``" msgstr "" diff --git a/library/xml.etree.elementtree.po b/library/xml.etree.elementtree.po index 0ad2ad11..8fcba4fe 100644 --- a/library/xml.etree.elementtree.po +++ b/library/xml.etree.elementtree.po @@ -218,8 +218,7 @@ msgid "" "attribute to the rank element::" msgstr "" -#: library/xml.etree.elementtree.rst:228 -#: library/xml.etree.elementtree.rst:272 +#: library/xml.etree.elementtree.rst:228 library/xml.etree.elementtree.rst:272 msgid "Our XML now looks like this:" msgstr "" @@ -296,8 +295,7 @@ msgid "" "scope of the module." msgstr "" -#: library/xml.etree.elementtree.rst:383 -#: library/xml.etree.elementtree.rst:777 +#: library/xml.etree.elementtree.rst:383 library/xml.etree.elementtree.rst:777 msgid "Example" msgstr "" @@ -481,13 +479,11 @@ msgid "" "preceded by a tag name." msgstr "" -#: library/xml.etree.elementtree.rst:499 -#: library/xml.etree.elementtree.rst:829 +#: library/xml.etree.elementtree.rst:499 library/xml.etree.elementtree.rst:829 msgid "Reference" msgstr "" -#: library/xml.etree.elementtree.rst:504 -#: library/xml.etree.elementtree.rst:834 +#: library/xml.etree.elementtree.rst:504 library/xml.etree.elementtree.rst:834 msgid "Functions" msgstr "" @@ -530,8 +526,7 @@ msgid "" "*strip_text*: set to true to strip whitespace before and after text content" msgstr "" -#: library/xml.etree.elementtree.rst:538 -#: library/xml.etree.elementtree.rst:540 +#: library/xml.etree.elementtree.rst:538 library/xml.etree.elementtree.rst:540 msgid "(default: false)" msgstr "" @@ -545,8 +540,7 @@ msgstr "" msgid "*qname_aware_tags*: a set of qname aware tag names in which prefixes" msgstr "" -#: library/xml.etree.elementtree.rst:542 -#: library/xml.etree.elementtree.rst:544 +#: library/xml.etree.elementtree.rst:542 library/xml.etree.elementtree.rst:544 msgid "should be replaced in text content (default: empty)" msgstr "" @@ -674,8 +668,7 @@ msgid "" "present." msgstr "" -#: library/xml.etree.elementtree.rst:647 -#: library/xml.etree.elementtree.rst:1520 +#: library/xml.etree.elementtree.rst:647 library/xml.etree.elementtree.rst:1520 msgid "If you need a fully populated element, look for \"end\" events instead." msgstr "" @@ -683,8 +676,7 @@ msgstr "" msgid "The *parser* argument." msgstr "" -#: library/xml.etree.elementtree.rst:652 -#: library/xml.etree.elementtree.rst:1524 +#: library/xml.etree.elementtree.rst:652 library/xml.etree.elementtree.rst:1524 msgid "The ``comment`` and ``pi`` events were added." msgstr "" @@ -748,14 +740,12 @@ msgid "" "Returns an (optionally) encoded string containing the XML data." msgstr "" -#: library/xml.etree.elementtree.rst:713 -#: library/xml.etree.elementtree.rst:740 +#: library/xml.etree.elementtree.rst:713 library/xml.etree.elementtree.rst:740 #: library/xml.etree.elementtree.rst:1197 msgid "Added the *short_empty_elements* parameter." msgstr "" -#: library/xml.etree.elementtree.rst:716 -#: library/xml.etree.elementtree.rst:743 +#: library/xml.etree.elementtree.rst:716 library/xml.etree.elementtree.rst:743 msgid "Added the *xml_declaration* and *default_namespace* parameters." msgstr "" diff --git a/library/xml.sax.handler.po b/library/xml.sax.handler.po index 49edac70..1bba0b72 100644 --- a/library/xml.sax.handler.po +++ b/library/xml.sax.handler.po @@ -92,10 +92,8 @@ msgid "" "prefixes; default)." msgstr "" -#: library/xml.sax.handler.rst:76 -#: library/xml.sax.handler.rst:94 -#: library/xml.sax.handler.rst:102 -#: library/xml.sax.handler.rst:112 +#: library/xml.sax.handler.rst:76 library/xml.sax.handler.rst:94 +#: library/xml.sax.handler.rst:102 library/xml.sax.handler.rst:112 #: library/xml.sax.handler.rst:144 msgid "access: (parsing) read-only; (not parsing) read/write" msgstr "" @@ -190,8 +188,7 @@ msgid "" "description: An optional extension handler for lexical events like comments." msgstr "" -#: library/xml.sax.handler.rst:126 -#: library/xml.sax.handler.rst:135 +#: library/xml.sax.handler.rst:126 library/xml.sax.handler.rst:135 msgid "access: read/write" msgstr "" diff --git a/library/xmlrpc.client.po b/library/xmlrpc.client.po index 0fb157ab..ca822cde 100644 --- a/library/xmlrpc.client.po +++ b/library/xmlrpc.client.po @@ -369,8 +369,7 @@ msgstr "" msgid "A working example follows. The server code::" msgstr "" -#: library/xmlrpc.client.rst:291 -#: library/xmlrpc.client.rst:507 +#: library/xmlrpc.client.rst:291 library/xmlrpc.client.rst:507 msgid "The client code for the preceding server::" msgstr "" diff --git a/library/xmlrpc.server.po b/library/xmlrpc.server.po index eb87cf31..91daeb6a 100644 --- a/library/xmlrpc.server.po +++ b/library/xmlrpc.server.po @@ -70,8 +70,7 @@ msgid "" "binary data are received; it defaults to false." msgstr "" -#: library/xmlrpc.server.rst:62 -#: library/xmlrpc.server.rst:374 +#: library/xmlrpc.server.rst:62 library/xmlrpc.server.rst:374 msgid "The *use_builtin_types* flag was added." msgstr "" diff --git a/license.po b/license.po index a5b6e555..ca7d359c 100644 --- a/license.po +++ b/license.po @@ -246,8 +246,8 @@ msgid "" "Python software and documentation are licensed under the :ref:`PSF License " "Agreement `." msgstr "" -"To λογισμικό και η τεκμηρίωση της Python αδειοδοτούνται σύμφωνα με :ref:` " -"Σύμβαση άδειας χρήσης PSF `." +"Το λογισμικό και η τεκμηρίωση της Python αδειοδοτούνται σύμφωνα με :ref:" +"`Σύμβαση άδειας χρήσης PSF `." #: license.rst:78 msgid "" @@ -257,7 +257,7 @@ msgid "" msgstr "" "Ξεκινώντας από την Python 3.8.6, παραδείγματα, συνταγές και ο άλλος κώδικας " "στην τεκμηρίωση έχουν διπλή άδεια χρήσης, βάση της Άδεια Χρήσης PSF και της :" -"ref: `Zero-Clause BSD άδεια `." +"ref:`Zero-Clause BSD άδεια `." #: license.rst:82 msgid "" @@ -320,7 +320,7 @@ msgid "" msgstr "" "Η επέκταση :mod:`!_random` C που βρίσκεται κάτω από την ενότητα :mod:" "`random` περιλαμβάνει έναν κώδικα με βάση μια λήψη από http://www.math.sci." -"hiroshima-u.ac.jp/~m-mat/ MT/MT2002/emt19937ar.html. Ακολουθούν κατά λέξη τα " +"hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html. Ακολουθούν κατά λέξη τα " "σχόλια από το αρχικό κώδικα::" #: license.rst:353 diff --git a/reference/compound_stmts.po b/reference/compound_stmts.po index 74a53b95..489c5687 100644 --- a/reference/compound_stmts.po +++ b/reference/compound_stmts.po @@ -447,14 +447,12 @@ msgid "" "the normal location for the kind of exit that was taken." msgstr "" -#: reference/compound_stmts.rst:525 -#: reference/compound_stmts.rst:1540 +#: reference/compound_stmts.rst:525 reference/compound_stmts.rst:1540 #: reference/compound_stmts.rst:1581 msgid "The following code::" msgstr "" -#: reference/compound_stmts.rst:530 -#: reference/compound_stmts.rst:555 +#: reference/compound_stmts.rst:530 reference/compound_stmts.rst:555 #: reference/compound_stmts.rst:1586 msgid "is semantically equivalent to::" msgstr "" @@ -527,13 +525,11 @@ msgid "" "The ``match`` and ``case`` keywords are :ref:`soft keywords `." msgstr "" -#: reference/compound_stmts.rst:624 -#: reference/compound_stmts.rst:1181 +#: reference/compound_stmts.rst:624 reference/compound_stmts.rst:1181 msgid ":pep:`634` -- Structural Pattern Matching: Specification" msgstr "" -#: reference/compound_stmts.rst:625 -#: reference/compound_stmts.rst:1182 +#: reference/compound_stmts.rst:625 reference/compound_stmts.rst:1182 msgid ":pep:`636` -- Structural Pattern Matching: Tutorial" msgstr "" @@ -1288,8 +1284,7 @@ msgstr "" msgid ":class:`int`" msgstr "" -#: reference/compound_stmts.rst:1159 -#: reference/compound_stmts.rst:1856 +#: reference/compound_stmts.rst:1159 reference/compound_stmts.rst:1856 msgid ":class:`list`" msgstr "" @@ -1301,8 +1296,7 @@ msgstr "" msgid ":class:`str`" msgstr "" -#: reference/compound_stmts.rst:1162 -#: reference/compound_stmts.rst:1859 +#: reference/compound_stmts.rst:1162 reference/compound_stmts.rst:1859 msgid ":class:`tuple`" msgstr "" @@ -1378,8 +1372,7 @@ msgid "" "example, the following code ::" msgstr "" -#: reference/compound_stmts.rst:1249 -#: reference/compound_stmts.rst:1439 +#: reference/compound_stmts.rst:1249 reference/compound_stmts.rst:1439 msgid "is roughly equivalent to ::" msgstr "" @@ -1406,8 +1399,7 @@ msgid "" "functions` for more." msgstr "" -#: reference/compound_stmts.rst:1268 -#: reference/compound_stmts.rst:1458 +#: reference/compound_stmts.rst:1268 reference/compound_stmts.rst:1458 msgid "Type parameter lists are new in Python 3.12." msgstr "" @@ -1851,8 +1843,7 @@ msgstr "" msgid "Generic functions are declared as follows::" msgstr "" -#: reference/compound_stmts.rst:1721 -#: reference/compound_stmts.rst:1781 +#: reference/compound_stmts.rst:1721 reference/compound_stmts.rst:1781 msgid "This syntax is equivalent to::" msgstr "" @@ -1969,8 +1960,7 @@ msgid "" "a builtin class that has its (CPython) :c:macro:`Py_TPFLAGS_SEQUENCE` bit set" msgstr "" -#: reference/compound_stmts.rst:1850 -#: reference/compound_stmts.rst:1869 +#: reference/compound_stmts.rst:1850 reference/compound_stmts.rst:1869 msgid "a class that inherits from any of the above" msgstr "" @@ -2042,20 +2032,13 @@ msgstr "" msgid "compound" msgstr "" -#: reference/compound_stmts.rst:86 -#: reference/compound_stmts.rst:111 -#: reference/compound_stmts.rst:129 -#: reference/compound_stmts.rst:144 -#: reference/compound_stmts.rst:169 -#: reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:389 -#: reference/compound_stmts.rst:436 -#: reference/compound_stmts.rst:470 -#: reference/compound_stmts.rst:587 -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1380 -#: reference/compound_stmts.rst:1490 -#: reference/compound_stmts.rst:1524 +#: reference/compound_stmts.rst:86 reference/compound_stmts.rst:111 +#: reference/compound_stmts.rst:129 reference/compound_stmts.rst:144 +#: reference/compound_stmts.rst:169 reference/compound_stmts.rst:207 +#: reference/compound_stmts.rst:389 reference/compound_stmts.rst:436 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1380 +#: reference/compound_stmts.rst:1490 reference/compound_stmts.rst:1524 #: reference/compound_stmts.rst:1569 msgid "statement" msgstr "" @@ -2084,30 +2067,21 @@ msgstr "" msgid "dangling" msgstr "" -#: reference/compound_stmts.rst:64 -#: reference/compound_stmts.rst:86 -#: reference/compound_stmts.rst:111 -#: reference/compound_stmts.rst:144 -#: reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:389 +#: reference/compound_stmts.rst:64 reference/compound_stmts.rst:86 +#: reference/compound_stmts.rst:111 reference/compound_stmts.rst:144 +#: reference/compound_stmts.rst:207 reference/compound_stmts.rst:389 msgid "else" msgstr "" -#: reference/compound_stmts.rst:86 -#: reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:86 reference/compound_stmts.rst:587 msgid "if" msgstr "" -#: reference/compound_stmts.rst:86 -#: reference/compound_stmts.rst:111 -#: reference/compound_stmts.rst:144 -#: reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:328 -#: reference/compound_stmts.rst:389 -#: reference/compound_stmts.rst:407 -#: reference/compound_stmts.rst:470 -#: reference/compound_stmts.rst:587 -#: reference/compound_stmts.rst:1500 +#: reference/compound_stmts.rst:86 reference/compound_stmts.rst:111 +#: reference/compound_stmts.rst:144 reference/compound_stmts.rst:207 +#: reference/compound_stmts.rst:328 reference/compound_stmts.rst:389 +#: reference/compound_stmts.rst:407 reference/compound_stmts.rst:470 +#: reference/compound_stmts.rst:587 reference/compound_stmts.rst:1500 msgid "keyword" msgstr "" @@ -2115,26 +2089,18 @@ msgstr "" msgid "elif" msgstr "" -#: reference/compound_stmts.rst:86 -#: reference/compound_stmts.rst:111 -#: reference/compound_stmts.rst:144 -#: reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:470 -#: reference/compound_stmts.rst:587 -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1321 +#: reference/compound_stmts.rst:86 reference/compound_stmts.rst:111 +#: reference/compound_stmts.rst:144 reference/compound_stmts.rst:207 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1321 #: reference/compound_stmts.rst:1380 msgid ": (colon)" msgstr "" -#: reference/compound_stmts.rst:86 -#: reference/compound_stmts.rst:111 -#: reference/compound_stmts.rst:144 -#: reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:470 -#: reference/compound_stmts.rst:587 -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1380 +#: reference/compound_stmts.rst:86 reference/compound_stmts.rst:111 +#: reference/compound_stmts.rst:144 reference/compound_stmts.rst:207 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1380 msgid "compound statement" msgstr "" @@ -2142,22 +2108,17 @@ msgstr "" msgid "while" msgstr "" -#: reference/compound_stmts.rst:111 -#: reference/compound_stmts.rst:144 +#: reference/compound_stmts.rst:111 reference/compound_stmts.rst:144 msgid "loop" msgstr "" -#: reference/compound_stmts.rst:129 -#: reference/compound_stmts.rst:169 -#: reference/compound_stmts.rst:389 -#: reference/compound_stmts.rst:436 +#: reference/compound_stmts.rst:129 reference/compound_stmts.rst:169 +#: reference/compound_stmts.rst:389 reference/compound_stmts.rst:436 msgid "break" msgstr "" -#: reference/compound_stmts.rst:129 -#: reference/compound_stmts.rst:169 -#: reference/compound_stmts.rst:389 -#: reference/compound_stmts.rst:436 +#: reference/compound_stmts.rst:129 reference/compound_stmts.rst:169 +#: reference/compound_stmts.rst:389 reference/compound_stmts.rst:436 msgid "continue" msgstr "" @@ -2177,10 +2138,8 @@ msgstr "" msgid "list" msgstr "" -#: reference/compound_stmts.rst:144 -#: reference/compound_stmts.rst:299 -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1380 +#: reference/compound_stmts.rst:144 reference/compound_stmts.rst:299 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1380 msgid "object" msgstr "" @@ -2204,15 +2163,12 @@ msgstr "" msgid "except" msgstr "" -#: reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:407 +#: reference/compound_stmts.rst:207 reference/compound_stmts.rst:407 msgid "finally" msgstr "" -#: reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:266 -#: reference/compound_stmts.rst:470 -#: reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:207 reference/compound_stmts.rst:266 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:587 msgid "as" msgstr "" @@ -2236,8 +2192,7 @@ msgstr "" msgid "except_star" msgstr "" -#: reference/compound_stmts.rst:389 -#: reference/compound_stmts.rst:436 +#: reference/compound_stmts.rst:389 reference/compound_stmts.rst:436 msgid "return" msgstr "" @@ -2249,8 +2204,7 @@ msgstr "" msgid "with statement" msgstr "" -#: reference/compound_stmts.rst:470 -#: reference/compound_stmts.rst:1194 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:1194 #: reference/compound_stmts.rst:1380 msgid ", (comma)" msgstr "" @@ -2291,15 +2245,12 @@ msgstr "" msgid "AS pattern, OR pattern, capture pattern, wildcard pattern" msgstr "" -#: reference/compound_stmts.rst:1185 -#: reference/compound_stmts.rst:1271 +#: reference/compound_stmts.rst:1185 reference/compound_stmts.rst:1271 msgid "parameter" msgstr "" -#: reference/compound_stmts.rst:1185 -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1235 -#: reference/compound_stmts.rst:1271 +#: reference/compound_stmts.rst:1185 reference/compound_stmts.rst:1194 +#: reference/compound_stmts.rst:1235 reference/compound_stmts.rst:1271 #: reference/compound_stmts.rst:1300 msgid "function definition" msgstr "" @@ -2308,23 +2259,19 @@ msgstr "" msgid "def" msgstr "" -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1321 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1321 msgid "function" msgstr "" -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1380 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1380 msgid "definition" msgstr "" -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1380 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1380 msgid "name" msgstr "" -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1380 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1380 msgid "binding" msgstr "" @@ -2332,8 +2279,7 @@ msgstr "" msgid "user-defined function" msgstr "" -#: reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1380 +#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1380 msgid "() (parentheses)" msgstr "" @@ -2341,8 +2287,7 @@ msgstr "" msgid "parameter list" msgstr "" -#: reference/compound_stmts.rst:1235 -#: reference/compound_stmts.rst:1430 +#: reference/compound_stmts.rst:1235 reference/compound_stmts.rst:1430 msgid "@ (at)" msgstr "" @@ -2414,8 +2359,7 @@ msgstr "" msgid "docstring" msgstr "" -#: reference/compound_stmts.rst:1380 -#: reference/compound_stmts.rst:1430 +#: reference/compound_stmts.rst:1380 reference/compound_stmts.rst:1430 msgid "class definition" msgstr "" diff --git a/reference/datamodel.po b/reference/datamodel.po index 8cb6b2dc..bb64eafc 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -596,8 +596,7 @@ msgid "" "containing the same number of items as the function's formal parameter list." msgstr "" -#: reference/datamodel.rst:1127 -#: reference/datamodel.rst:1322 +#: reference/datamodel.rst:1127 reference/datamodel.rst:1322 msgid "Special read-only attributes" msgstr "" @@ -3864,22 +3863,14 @@ msgid "" "operation is not supported, which is why the reflected method is not called." msgstr "" -#: reference/datamodel.rst:148 -#: reference/datamodel.rst:180 -#: reference/datamodel.rst:225 -#: reference/datamodel.rst:261 -#: reference/datamodel.rst:292 -#: reference/datamodel.rst:356 -#: reference/datamodel.rst:402 -#: reference/datamodel.rst:440 -#: reference/datamodel.rst:459 -#: reference/datamodel.rst:512 -#: reference/datamodel.rst:654 -#: reference/datamodel.rst:823 -#: reference/datamodel.rst:938 -#: reference/datamodel.rst:1034 -#: reference/datamodel.rst:1200 -#: reference/datamodel.rst:1407 +#: reference/datamodel.rst:148 reference/datamodel.rst:180 +#: reference/datamodel.rst:225 reference/datamodel.rst:261 +#: reference/datamodel.rst:292 reference/datamodel.rst:356 +#: reference/datamodel.rst:402 reference/datamodel.rst:440 +#: reference/datamodel.rst:459 reference/datamodel.rst:512 +#: reference/datamodel.rst:654 reference/datamodel.rst:823 +#: reference/datamodel.rst:938 reference/datamodel.rst:1034 +#: reference/datamodel.rst:1200 reference/datamodel.rst:1407 #: reference/datamodel.rst:2834 msgid "object" msgstr "" @@ -3888,16 +3879,11 @@ msgstr "" msgid "data" msgstr "" -#: reference/datamodel.rst:292 -#: reference/datamodel.rst:420 -#: reference/datamodel.rst:799 -#: reference/datamodel.rst:1490 -#: reference/datamodel.rst:1735 -#: reference/datamodel.rst:2375 -#: reference/datamodel.rst:2962 -#: reference/datamodel.rst:3011 -#: reference/datamodel.rst:3070 -#: reference/datamodel.rst:3098 +#: reference/datamodel.rst:292 reference/datamodel.rst:420 +#: reference/datamodel.rst:799 reference/datamodel.rst:1490 +#: reference/datamodel.rst:1735 reference/datamodel.rst:2375 +#: reference/datamodel.rst:2962 reference/datamodel.rst:3011 +#: reference/datamodel.rst:3070 reference/datamodel.rst:3098 msgid "built-in function" msgstr "" @@ -3905,8 +3891,7 @@ msgstr "" msgid "id" msgstr "" -#: reference/datamodel.rst:122 -#: reference/datamodel.rst:2375 +#: reference/datamodel.rst:122 reference/datamodel.rst:2375 msgid "type" msgstr "" @@ -3954,25 +3939,20 @@ msgstr "" msgid "extension" msgstr "" -#: reference/datamodel.rst:393 -#: reference/datamodel.rst:495 -#: reference/datamodel.rst:876 -#: reference/datamodel.rst:1053 +#: reference/datamodel.rst:393 reference/datamodel.rst:495 +#: reference/datamodel.rst:876 reference/datamodel.rst:1053 msgid "module" msgstr "" -#: reference/datamodel.rst:261 -#: reference/datamodel.rst:799 +#: reference/datamodel.rst:261 reference/datamodel.rst:799 msgid "C" msgstr "" -#: reference/datamodel.rst:261 -#: reference/datamodel.rst:799 +#: reference/datamodel.rst:261 reference/datamodel.rst:799 msgid "language" msgstr "" -#: reference/datamodel.rst:938 -#: reference/datamodel.rst:1007 +#: reference/datamodel.rst:938 reference/datamodel.rst:1007 #: reference/datamodel.rst:1027 msgid "attribute" msgstr "" @@ -3997,8 +3977,7 @@ msgstr "" msgid "numeric" msgstr "" -#: reference/datamodel.rst:231 -#: reference/datamodel.rst:336 +#: reference/datamodel.rst:231 reference/datamodel.rst:336 msgid "integer" msgstr "" @@ -4034,8 +4013,7 @@ msgstr "" msgid "complex" msgstr "" -#: reference/datamodel.rst:420 -#: reference/datamodel.rst:2804 +#: reference/datamodel.rst:420 reference/datamodel.rst:2804 msgid "len" msgstr "" @@ -4051,8 +4029,7 @@ msgstr "" msgid "item selection" msgstr "" -#: reference/datamodel.rst:381 -#: reference/datamodel.rst:459 +#: reference/datamodel.rst:381 reference/datamodel.rst:459 msgid "subscription" msgstr "" @@ -4068,8 +4045,7 @@ msgstr "" msgid "immutable" msgstr "" -#: reference/datamodel.rst:1705 -#: reference/datamodel.rst:1735 +#: reference/datamodel.rst:1705 reference/datamodel.rst:1735 msgid "string" msgstr "" @@ -4121,13 +4097,11 @@ msgstr "" msgid "mutable" msgstr "" -#: reference/datamodel.rst:956 -#: reference/datamodel.rst:1027 +#: reference/datamodel.rst:956 reference/datamodel.rst:1027 msgid "assignment" msgstr "" -#: reference/datamodel.rst:856 -#: reference/datamodel.rst:1626 +#: reference/datamodel.rst:856 reference/datamodel.rst:1626 #: reference/datamodel.rst:3125 msgid "statement" msgstr "" @@ -4164,8 +4138,7 @@ msgstr "" msgid "mapping" msgstr "" -#: reference/datamodel.rst:938 -#: reference/datamodel.rst:1819 +#: reference/datamodel.rst:938 reference/datamodel.rst:1819 msgid "dictionary" msgstr "" @@ -4181,14 +4154,12 @@ msgstr "" msgid "callable" msgstr "" -#: reference/datamodel.rst:527 -#: reference/datamodel.rst:761 +#: reference/datamodel.rst:527 reference/datamodel.rst:761 #: reference/datamodel.rst:799 msgid "function" msgstr "" -#: reference/datamodel.rst:938 -#: reference/datamodel.rst:2756 +#: reference/datamodel.rst:938 reference/datamodel.rst:2756 msgid "call" msgstr "" @@ -4340,19 +4311,16 @@ msgstr "" msgid "__dict__ (module attribute)" msgstr "" -#: reference/datamodel.rst:956 -#: reference/datamodel.rst:1609 +#: reference/datamodel.rst:956 reference/datamodel.rst:1609 #: reference/datamodel.rst:2486 msgid "class" msgstr "" -#: reference/datamodel.rst:1007 -#: reference/datamodel.rst:1027 +#: reference/datamodel.rst:1007 reference/datamodel.rst:1027 msgid "class instance" msgstr "" -#: reference/datamodel.rst:1007 -#: reference/datamodel.rst:2756 +#: reference/datamodel.rst:1007 reference/datamodel.rst:2756 msgid "instance" msgstr "" @@ -4788,8 +4756,7 @@ msgstr "" msgid "divmod" msgstr "" -#: reference/datamodel.rst:2997 -#: reference/datamodel.rst:3011 +#: reference/datamodel.rst:2997 reference/datamodel.rst:3011 msgid "pow" msgstr "" diff --git a/reference/executionmodel.po b/reference/executionmodel.po index a2fca90d..968f1bdc 100644 --- a/reference/executionmodel.po +++ b/reference/executionmodel.po @@ -497,8 +497,7 @@ msgstr "" msgid "block" msgstr "" -#: reference/executionmodel.rst:31 -#: reference/executionmodel.rst:287 +#: reference/executionmodel.rst:31 reference/executionmodel.rst:287 msgid "execution" msgstr "" @@ -510,8 +509,7 @@ msgstr "" msgid "namespace" msgstr "" -#: reference/executionmodel.rst:42 -#: reference/executionmodel.rst:103 +#: reference/executionmodel.rst:42 reference/executionmodel.rst:103 msgid "scope" msgstr "" diff --git a/reference/expressions.po b/reference/expressions.po index 2018c805..c45978ab 100644 --- a/reference/expressions.po +++ b/reference/expressions.po @@ -2249,10 +2249,8 @@ msgid "" "applies." msgstr "" -#: reference/expressions.rst:362 -#: reference/expressions.rst:1713 -#: reference/expressions.rst:1827 -#: reference/expressions.rst:1855 +#: reference/expressions.rst:362 reference/expressions.rst:1713 +#: reference/expressions.rst:1827 reference/expressions.rst:1855 msgid "expression" msgstr "" @@ -2260,8 +2258,7 @@ msgstr "" msgid "BNF" msgstr "" -#: reference/expressions.rst:1214 -#: reference/expressions.rst:1262 +#: reference/expressions.rst:1214 reference/expressions.rst:1262 msgid "arithmetic" msgstr "" @@ -2281,10 +2278,8 @@ msgstr "" msgid "identifier" msgstr "" -#: reference/expressions.rst:538 -#: reference/expressions.rst:715 -#: reference/expressions.rst:813 -#: reference/expressions.rst:1297 +#: reference/expressions.rst:538 reference/expressions.rst:715 +#: reference/expressions.rst:813 reference/expressions.rst:1297 #: reference/expressions.rst:1387 msgid "exception" msgstr "" @@ -2321,14 +2316,10 @@ msgstr "" msgid "type" msgstr "" -#: reference/expressions.rst:244 -#: reference/expressions.rst:298 -#: reference/expressions.rst:362 -#: reference/expressions.rst:705 -#: reference/expressions.rst:842 -#: reference/expressions.rst:959 -#: reference/expressions.rst:1120 -#: reference/expressions.rst:1141 +#: reference/expressions.rst:244 reference/expressions.rst:298 +#: reference/expressions.rst:362 reference/expressions.rst:705 +#: reference/expressions.rst:842 reference/expressions.rst:959 +#: reference/expressions.rst:1120 reference/expressions.rst:1141 #: reference/expressions.rst:1865 msgid "object" msgstr "" @@ -2337,8 +2328,7 @@ msgstr "" msgid "parenthesized form" msgstr "" -#: reference/expressions.rst:362 -#: reference/expressions.rst:959 +#: reference/expressions.rst:362 reference/expressions.rst:959 msgid "() (parentheses)" msgstr "" @@ -2350,8 +2340,7 @@ msgstr "" msgid "empty" msgstr "" -#: reference/expressions.rst:842 -#: reference/expressions.rst:1865 +#: reference/expressions.rst:842 reference/expressions.rst:1865 msgid "tuple" msgstr "" @@ -2359,15 +2348,12 @@ msgstr "" msgid "comma" msgstr "" -#: reference/expressions.rst:244 -#: reference/expressions.rst:298 -#: reference/expressions.rst:959 -#: reference/expressions.rst:1855 +#: reference/expressions.rst:244 reference/expressions.rst:298 +#: reference/expressions.rst:959 reference/expressions.rst:1855 msgid ", (comma)" msgstr "" -#: reference/expressions.rst:244 -#: reference/expressions.rst:298 +#: reference/expressions.rst:244 reference/expressions.rst:298 msgid "comprehensions" msgstr "" @@ -2391,14 +2377,12 @@ msgstr "" msgid "await" msgstr "" -#: reference/expressions.rst:813 -#: reference/expressions.rst:915 +#: reference/expressions.rst:813 reference/expressions.rst:915 #: reference/expressions.rst:1855 msgid "list" msgstr "" -#: reference/expressions.rst:270 -#: reference/expressions.rst:298 +#: reference/expressions.rst:270 reference/expressions.rst:298 msgid "display" msgstr "" @@ -2410,8 +2394,7 @@ msgstr "" msgid "list expression" msgstr "" -#: reference/expressions.rst:270 -#: reference/expressions.rst:1855 +#: reference/expressions.rst:270 reference/expressions.rst:1855 msgid "expression list" msgstr "" @@ -2427,8 +2410,7 @@ msgstr "" msgid "set expression" msgstr "" -#: reference/expressions.rst:324 -#: reference/expressions.rst:842 +#: reference/expressions.rst:324 reference/expressions.rst:842 msgid "dictionary" msgstr "" @@ -2448,8 +2430,7 @@ msgstr "" msgid "dictionary expression" msgstr "" -#: reference/expressions.rst:909 -#: reference/expressions.rst:1827 +#: reference/expressions.rst:909 reference/expressions.rst:1827 msgid ": (colon)" msgstr "" @@ -2461,13 +2442,11 @@ msgstr "" msgid "in dictionary displays" msgstr "" -#: reference/expressions.rst:1042 -#: reference/expressions.rst:1872 +#: reference/expressions.rst:1042 reference/expressions.rst:1872 msgid "unpacking" msgstr "" -#: reference/expressions.rst:1072 -#: reference/expressions.rst:1179 +#: reference/expressions.rst:1072 reference/expressions.rst:1179 msgid "**" msgstr "" @@ -2475,8 +2454,7 @@ msgstr "" msgid "hashable" msgstr "" -#: reference/expressions.rst:417 -#: reference/expressions.rst:526 +#: reference/expressions.rst:417 reference/expressions.rst:526 msgid "generator" msgstr "" @@ -2496,8 +2474,7 @@ msgstr "" msgid "from" msgstr "" -#: reference/expressions.rst:1107 -#: reference/expressions.rst:1827 +#: reference/expressions.rst:1107 reference/expressions.rst:1827 msgid "function" msgstr "" @@ -2561,8 +2538,7 @@ msgstr "" msgid "subscription" msgstr "" -#: reference/expressions.rst:915 -#: reference/expressions.rst:1678 +#: reference/expressions.rst:915 reference/expressions.rst:1678 msgid "sequence" msgstr "" @@ -2570,8 +2546,7 @@ msgstr "" msgid "mapping" msgstr "" -#: reference/expressions.rst:895 -#: reference/expressions.rst:915 +#: reference/expressions.rst:895 reference/expressions.rst:915 msgid "string" msgstr "" @@ -2607,8 +2582,7 @@ msgstr "" msgid "callable" msgstr "" -#: reference/expressions.rst:1107 -#: reference/expressions.rst:1134 +#: reference/expressions.rst:1107 reference/expressions.rst:1134 #: reference/expressions.rst:1151 msgid "call" msgstr "" @@ -2629,8 +2603,7 @@ msgstr "" msgid "= (equals)" msgstr "" -#: reference/expressions.rst:1042 -#: reference/expressions.rst:1072 +#: reference/expressions.rst:1042 reference/expressions.rst:1072 msgid "in function calls" msgstr "" @@ -2638,8 +2611,7 @@ msgstr "" msgid "parameter" msgstr "" -#: reference/expressions.rst:1275 -#: reference/expressions.rst:1872 +#: reference/expressions.rst:1275 reference/expressions.rst:1872 msgid "* (asterisk)" msgstr "" @@ -2687,22 +2659,16 @@ msgstr "" msgid "power" msgstr "" -#: reference/expressions.rst:1214 -#: reference/expressions.rst:1371 +#: reference/expressions.rst:1214 reference/expressions.rst:1371 #: reference/expressions.rst:1713 msgid "operation" msgstr "" -#: reference/expressions.rst:1223 -#: reference/expressions.rst:1240 -#: reference/expressions.rst:1288 -#: reference/expressions.rst:1313 -#: reference/expressions.rst:1355 -#: reference/expressions.rst:1407 -#: reference/expressions.rst:1424 -#: reference/expressions.rst:1678 -#: reference/expressions.rst:1729 -#: reference/expressions.rst:1739 +#: reference/expressions.rst:1223 reference/expressions.rst:1240 +#: reference/expressions.rst:1288 reference/expressions.rst:1313 +#: reference/expressions.rst:1355 reference/expressions.rst:1407 +#: reference/expressions.rst:1424 reference/expressions.rst:1678 +#: reference/expressions.rst:1729 reference/expressions.rst:1739 #: reference/expressions.rst:1920 msgid "operator" msgstr "" @@ -2711,8 +2677,7 @@ msgstr "" msgid "unary" msgstr "" -#: reference/expressions.rst:1398 -#: reference/expressions.rst:1415 +#: reference/expressions.rst:1398 reference/expressions.rst:1415 #: reference/expressions.rst:1424 msgid "bitwise" msgstr "" @@ -2837,8 +2802,7 @@ msgstr "" msgid "exclusive" msgstr "" -#: reference/expressions.rst:1424 -#: reference/expressions.rst:1739 +#: reference/expressions.rst:1424 reference/expressions.rst:1739 msgid "or" msgstr "" diff --git a/reference/import.po b/reference/import.po index b659aee1..a2ae8894 100644 --- a/reference/import.po +++ b/reference/import.po @@ -1408,8 +1408,7 @@ msgstr "" msgid "import machinery" msgstr "" -#: reference/import.rst:95 -#: reference/import.rst:129 +#: reference/import.rst:95 reference/import.rst:129 msgid "package" msgstr "" diff --git a/reference/lexical_analysis.po b/reference/lexical_analysis.po index 1dadf786..44111a19 100644 --- a/reference/lexical_analysis.po +++ b/reference/lexical_analysis.po @@ -614,18 +614,15 @@ msgid "" "by Standard C. The recognized escape sequences are:" msgstr "" -#: reference/lexical_analysis.rst:560 -#: reference/lexical_analysis.rst:593 +#: reference/lexical_analysis.rst:560 reference/lexical_analysis.rst:593 msgid "Escape Sequence" msgstr "" -#: reference/lexical_analysis.rst:560 -#: reference/lexical_analysis.rst:593 +#: reference/lexical_analysis.rst:560 reference/lexical_analysis.rst:593 msgid "Meaning" msgstr "" -#: reference/lexical_analysis.rst:560 -#: reference/lexical_analysis.rst:593 +#: reference/lexical_analysis.rst:560 reference/lexical_analysis.rst:593 msgid "Notes" msgstr "" @@ -1095,8 +1092,7 @@ msgstr "" msgid "Some examples of integer literals::" msgstr "" -#: reference/lexical_analysis.rst:937 -#: reference/lexical_analysis.rst:969 +#: reference/lexical_analysis.rst:937 reference/lexical_analysis.rst:969 msgid "Underscores are now allowed for grouping purposes in literals." msgstr "" @@ -1203,14 +1199,12 @@ msgstr "" msgid "logical line" msgstr "" -#: reference/lexical_analysis.rst:35 -#: reference/lexical_analysis.rst:115 +#: reference/lexical_analysis.rst:35 reference/lexical_analysis.rst:115 #: reference/lexical_analysis.rst:534 msgid "physical line" msgstr "" -#: reference/lexical_analysis.rst:35 -#: reference/lexical_analysis.rst:115 +#: reference/lexical_analysis.rst:35 reference/lexical_analysis.rst:115 msgid "line joining" msgstr "" @@ -1226,8 +1220,7 @@ msgstr "" msgid "hash character" msgstr "" -#: reference/lexical_analysis.rst:67 -#: reference/lexical_analysis.rst:81 +#: reference/lexical_analysis.rst:67 reference/lexical_analysis.rst:81 msgid "# (hash)" msgstr "" @@ -1295,8 +1288,7 @@ msgstr "" msgid "name" msgstr "" -#: reference/lexical_analysis.rst:335 -#: reference/lexical_analysis.rst:359 +#: reference/lexical_analysis.rst:335 reference/lexical_analysis.rst:359 msgid "keyword" msgstr "" @@ -1324,13 +1316,11 @@ msgstr "" msgid "constant" msgstr "" -#: reference/lexical_analysis.rst:439 -#: reference/lexical_analysis.rst:480 +#: reference/lexical_analysis.rst:439 reference/lexical_analysis.rst:480 msgid "string literal" msgstr "" -#: reference/lexical_analysis.rst:439 -#: reference/lexical_analysis.rst:493 +#: reference/lexical_analysis.rst:439 reference/lexical_analysis.rst:493 msgid "bytes literal" msgstr "" @@ -1398,8 +1388,7 @@ msgstr "" msgid "f'" msgstr "" -#: reference/lexical_analysis.rst:521 -#: reference/lexical_analysis.rst:699 +#: reference/lexical_analysis.rst:521 reference/lexical_analysis.rst:699 msgid "formatted string literal" msgstr "" @@ -1531,8 +1520,7 @@ msgstr "" msgid "numeric literal" msgstr "" -#: reference/lexical_analysis.rst:882 -#: reference/lexical_analysis.rst:895 +#: reference/lexical_analysis.rst:882 reference/lexical_analysis.rst:895 msgid "integer literal" msgstr "" @@ -1576,13 +1564,11 @@ msgstr "" msgid "0x" msgstr "" -#: reference/lexical_analysis.rst:895 -#: reference/lexical_analysis.rst:941 +#: reference/lexical_analysis.rst:895 reference/lexical_analysis.rst:941 msgid "_ (underscore)" msgstr "" -#: reference/lexical_analysis.rst:895 -#: reference/lexical_analysis.rst:941 +#: reference/lexical_analysis.rst:895 reference/lexical_analysis.rst:941 #: reference/lexical_analysis.rst:973 msgid "in numeric literal" msgstr "" diff --git a/reference/simple_stmts.po b/reference/simple_stmts.po index 5e0c62fc..1a27e17b 100644 --- a/reference/simple_stmts.po +++ b/reference/simple_stmts.po @@ -1109,16 +1109,11 @@ msgstr "" msgid "simple" msgstr "" -#: reference/simple_stmts.rst:39 -#: reference/simple_stmts.rst:263 -#: reference/simple_stmts.rst:379 -#: reference/simple_stmts.rst:444 -#: reference/simple_stmts.rst:483 -#: reference/simple_stmts.rst:556 -#: reference/simple_stmts.rst:715 -#: reference/simple_stmts.rst:870 -#: reference/simple_stmts.rst:1003 -#: reference/simple_stmts.rst:1033 +#: reference/simple_stmts.rst:39 reference/simple_stmts.rst:263 +#: reference/simple_stmts.rst:379 reference/simple_stmts.rst:444 +#: reference/simple_stmts.rst:483 reference/simple_stmts.rst:556 +#: reference/simple_stmts.rst:715 reference/simple_stmts.rst:870 +#: reference/simple_stmts.rst:1003 reference/simple_stmts.rst:1033 msgid "statement" msgstr "" @@ -1126,8 +1121,7 @@ msgstr "" msgid "expression" msgstr "" -#: reference/simple_stmts.rst:42 -#: reference/simple_stmts.rst:116 +#: reference/simple_stmts.rst:42 reference/simple_stmts.rst:116 #: reference/simple_stmts.rst:444 msgid "list" msgstr "" @@ -1140,8 +1134,7 @@ msgstr "" msgid "repr" msgstr "" -#: reference/simple_stmts.rst:75 -#: reference/simple_stmts.rst:196 +#: reference/simple_stmts.rst:75 reference/simple_stmts.rst:196 #: reference/simple_stmts.rst:578 msgid "object" msgstr "" @@ -1190,20 +1183,16 @@ msgstr "" msgid "assignment statement" msgstr "" -#: reference/simple_stmts.rst:116 -#: reference/simple_stmts.rst:187 -#: reference/simple_stmts.rst:263 -#: reference/simple_stmts.rst:322 +#: reference/simple_stmts.rst:116 reference/simple_stmts.rst:187 +#: reference/simple_stmts.rst:263 reference/simple_stmts.rst:322 msgid "assignment" msgstr "" -#: reference/simple_stmts.rst:740 -#: reference/simple_stmts.rst:956 +#: reference/simple_stmts.rst:740 reference/simple_stmts.rst:956 msgid "binding" msgstr "" -#: reference/simple_stmts.rst:457 -#: reference/simple_stmts.rst:795 +#: reference/simple_stmts.rst:457 reference/simple_stmts.rst:795 #: reference/simple_stmts.rst:956 msgid "name" msgstr "" @@ -1216,18 +1205,15 @@ msgstr "" msgid "mutable" msgstr "" -#: reference/simple_stmts.rst:159 -#: reference/simple_stmts.rst:466 +#: reference/simple_stmts.rst:159 reference/simple_stmts.rst:466 msgid "attribute" msgstr "" -#: reference/simple_stmts.rst:116 -#: reference/simple_stmts.rst:694 +#: reference/simple_stmts.rst:116 reference/simple_stmts.rst:694 msgid "target" msgstr "" -#: reference/simple_stmts.rst:379 -#: reference/simple_stmts.rst:956 +#: reference/simple_stmts.rst:379 reference/simple_stmts.rst:956 #: reference/simple_stmts.rst:1003 msgid ", (comma)" msgstr "" @@ -1372,8 +1358,7 @@ msgstr "" msgid "__debug__" msgstr "" -#: reference/simple_stmts.rst:520 -#: reference/simple_stmts.rst:588 +#: reference/simple_stmts.rst:520 reference/simple_stmts.rst:588 #: reference/simple_stmts.rst:740 msgid "exception" msgstr "" @@ -1426,14 +1411,12 @@ msgstr "" msgid "class" msgstr "" -#: reference/simple_stmts.rst:694 -#: reference/simple_stmts.rst:715 +#: reference/simple_stmts.rst:694 reference/simple_stmts.rst:715 #: reference/simple_stmts.rst:740 msgid "keyword" msgstr "" -#: reference/simple_stmts.rst:703 -#: reference/simple_stmts.rst:715 +#: reference/simple_stmts.rst:703 reference/simple_stmts.rst:715 msgid "finally" msgstr "" @@ -1533,8 +1516,7 @@ msgstr "" msgid "ImportError" msgstr "" -#: reference/simple_stmts.rst:782 -#: reference/simple_stmts.rst:821 +#: reference/simple_stmts.rst:782 reference/simple_stmts.rst:821 msgid "import statement" msgstr "" diff --git a/reference/toplevel_components.po b/reference/toplevel_components.po index 8810299c..f3972abe 100644 --- a/reference/toplevel_components.po +++ b/reference/toplevel_components.po @@ -125,8 +125,7 @@ msgstr "" msgid "program" msgstr "" -#: reference/toplevel_components.rst:23 -#: reference/toplevel_components.rst:39 +#: reference/toplevel_components.rst:23 reference/toplevel_components.rst:39 msgid "module" msgstr "" @@ -134,8 +133,7 @@ msgstr "" msgid "sys" msgstr "" -#: reference/toplevel_components.rst:23 -#: reference/toplevel_components.rst:39 +#: reference/toplevel_components.rst:23 reference/toplevel_components.rst:39 msgid "__main__" msgstr "" diff --git a/requirements.txt b/requirements.txt index 0c8fcfbd..8f30ddce 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,11 @@ poutils==0.15.4 -pospell==1.3 +pre-commit==3.7.1 + +# Rest of dependencies from cpython/Doc/requirements.txt +# Manually listed here so that we install sphinx version 5 +# and any version conflicts are avoided. +Sphinx==7.3.7 +blurb==1.1.0 +sphinxext-opengraph==0.9.1 +python-docs-theme==2024.4 +-c cpython/Doc/constraints.txt diff --git a/scripts/check_spelling.py b/scripts/check_spelling.py index 2bad7d96..3b55c155 100644 --- a/scripts/check_spelling.py +++ b/scripts/check_spelling.py @@ -3,6 +3,7 @@ on the custom dictionaries under the 'dictionaries/' directory. """ +import os from pathlib import Path import sys import tempfile @@ -37,7 +38,10 @@ def check_spell(po_files=None): with tempfile.NamedTemporaryFile(suffix="_merged_dict.txt") as named_tmp_file: for e in entries: named_tmp_file.write(f"{e}\n".encode()) - named_tmp_file.flush() + + named_tmp_file.flush() + os.fsync(named_tmp_file.fileno()) + named_tmp_file.seek(0) # Run pospell either against all files or the file given on the command line diff --git a/tutorial/modules.po b/tutorial/modules.po index 56d1e272..f28ab9ea 100644 --- a/tutorial/modules.po +++ b/tutorial/modules.po @@ -290,7 +290,7 @@ msgid "" "file:`spam.py` in a list of directories given by the variable :data:`sys." "path`. :data:`sys.path` is initialized from these locations:" msgstr "" -"Όταν εισάγετε ένα module με το όνομα :mod:`!spam`, ο interprete αναζητά " +"Όταν εισάγετε ένα module με το όνομα :mod:`!spam`, ο interpreter αναζητά " "πρώτα ένα ενσωματωμένο module με αυτό το όνομα. Αυτά τα ονόματα των module " "παρατίθενται στο :data:`sys.builtin_module_names`. Εάν δεν βρεθεί, τότε " "αναζητά ένα αρχείο με το όνομα :file:`spam.py` σε μια λίστα καταλόγων που " @@ -311,7 +311,7 @@ msgid "" "shell variable :envvar:`PATH`)." msgstr "" ":envvar:`PYTHONPATH` (μια λίστα ονομάτων καταλόγου, με την ίδια σύνταξη με " -"τη μεταβλητή του shel :envvar:`PATH`)." +"τη μεταβλητή του shell :envvar:`PATH`)." #: tutorial/modules.rst:196 msgid "" @@ -624,7 +624,7 @@ msgstr "" "``string``, από την ακούσια απόκρυψη έγκυρων modules που εμφανίζονται " "αργότερα στο path αναζήτησης του module. Στην απλούστερη περίπτωση, το :file:" "`__init__.py` μπορεί απλώς να είναι κενό αρχείο, αλλά μπορεί επίσης να " -"εκτελέσει initializion κώδικα για το πακέτο ή να ορίσει την μεταβλητή " +"εκτελέσει initialization κώδικα για το πακέτο ή να ορίσει την μεταβλητή " "``__all__``, που περιγράφεται αργότερα." #: tutorial/modules.rst:447 diff --git a/using/cmdline.po b/using/cmdline.po index f6b3cd01..16da6313 100644 --- a/using/cmdline.po +++ b/using/cmdline.po @@ -502,8 +502,7 @@ msgstr "" msgid "See also :envvar:`PYTHONNOUSERSITE`." msgstr "" -#: using/cmdline.rst:802 -#: using/cmdline.rst:814 +#: using/cmdline.rst:802 using/cmdline.rst:814 msgid ":pep:`370` -- Per user site-packages directory" msgstr "" diff --git a/using/windows.po b/using/windows.po index 6d064798..7f6a56cb 100644 --- a/using/windows.po +++ b/using/windows.po @@ -229,13 +229,11 @@ msgid "" "passed into the installer:" msgstr "" -#: using/windows.rst:153 -#: using/windows.rst:1082 +#: using/windows.rst:153 using/windows.rst:1082 msgid "Name" msgstr "" -#: using/windows.rst:153 -#: using/windows.rst:1082 +#: using/windows.rst:153 using/windows.rst:1082 msgid "Description" msgstr "" @@ -306,9 +304,7 @@ msgstr "" msgid "Perform a system-wide installation." msgstr "" -#: using/windows.rst:181 -#: using/windows.rst:188 -#: using/windows.rst:219 +#: using/windows.rst:181 using/windows.rst:188 using/windows.rst:219 #: using/windows.rst:230 msgid "0" msgstr "" @@ -374,12 +370,8 @@ msgstr "" msgid "Create file associations if the launcher is also installed." msgstr "" -#: using/windows.rst:192 -#: using/windows.rst:199 -#: using/windows.rst:207 -#: using/windows.rst:213 -#: using/windows.rst:221 -#: using/windows.rst:225 +#: using/windows.rst:192 using/windows.rst:199 using/windows.rst:207 +#: using/windows.rst:213 using/windows.rst:221 using/windows.rst:225 msgid "1" msgstr "" diff --git a/whatsnew/2.4.po b/whatsnew/2.4.po index f11ab1d1..2c45e9ed 100644 --- a/whatsnew/2.4.po +++ b/whatsnew/2.4.po @@ -990,8 +990,7 @@ msgstr "" msgid "the expression returns the new sorted copy" msgstr "" -#: whatsnew/2.4.rst:920 -#: whatsnew/2.4.rst:1213 +#: whatsnew/2.4.rst:920 whatsnew/2.4.rst:1213 msgid "(Contributed by Raymond Hettinger.)" msgstr "" diff --git a/whatsnew/2.6.po b/whatsnew/2.6.po index b2ccdf3e..d33f29ab 100644 --- a/whatsnew/2.6.po +++ b/whatsnew/2.6.po @@ -1700,8 +1700,7 @@ msgid "" "`update`, :meth:`difference` and :meth:`difference_update`." msgstr "" -#: whatsnew/2.6.rst:1875 -#: whatsnew/2.6.rst:1896 +#: whatsnew/2.6.rst:1875 whatsnew/2.6.rst:1896 msgid "(Contributed by Raymond Hettinger.)" msgstr "" diff --git a/whatsnew/3.10.po b/whatsnew/3.10.po index a8d6fdf0..8913ca30 100644 --- a/whatsnew/3.10.po +++ b/whatsnew/3.10.po @@ -1182,8 +1182,7 @@ msgstr "" msgid "doctest" msgstr "" -#: whatsnew/3.10.rst:1215 -#: whatsnew/3.10.rst:1341 +#: whatsnew/3.10.rst:1215 whatsnew/3.10.rst:1341 msgid "" "When a module does not define ``__loader__``, fall back to ``__spec__." "loader``. (Contributed by Brett Cannon in :issue:`42133`.)" diff --git a/whatsnew/3.11.po b/whatsnew/3.11.po index b0337506..cecf809c 100644 --- a/whatsnew/3.11.po +++ b/whatsnew/3.11.po @@ -1888,8 +1888,7 @@ msgstr "" msgid "[#load-global]_" msgstr "" -#: whatsnew/3.11.rst:1479 -#: whatsnew/3.11.rst:1488 +#: whatsnew/3.11.rst:1479 whatsnew/3.11.rst:1488 msgid "Mark Shannon" msgstr "" @@ -2839,9 +2838,7 @@ msgstr "" msgid ":meth:`.assertTrue`" msgstr "" -#: whatsnew/3.11.rst:1915 -#: whatsnew/3.11.rst:1917 -#: whatsnew/3.11.rst:1919 +#: whatsnew/3.11.rst:1915 whatsnew/3.11.rst:1917 whatsnew/3.11.rst:1919 #: whatsnew/3.11.rst:1920 msgid "3.1" msgstr "" @@ -2898,9 +2895,7 @@ msgstr "" msgid "``assert_``" msgstr "" -#: whatsnew/3.11.rst:1922 -#: whatsnew/3.11.rst:1924 -#: whatsnew/3.11.rst:1926 +#: whatsnew/3.11.rst:1922 whatsnew/3.11.rst:1924 whatsnew/3.11.rst:1926 #: whatsnew/3.11.rst:1927 msgid "3.2" msgstr "" diff --git a/whatsnew/3.12.po b/whatsnew/3.12.po index 28de40e3..f9e180fd 100644 --- a/whatsnew/3.12.po +++ b/whatsnew/3.12.po @@ -2600,9 +2600,7 @@ msgstr "" msgid ":meth:`.assertTrue`" msgstr "" -#: whatsnew/3.12.rst:1722 -#: whatsnew/3.12.rst:1724 -#: whatsnew/3.12.rst:1726 +#: whatsnew/3.12.rst:1722 whatsnew/3.12.rst:1724 whatsnew/3.12.rst:1726 #: whatsnew/3.12.rst:1727 msgid "3.1" msgstr "" @@ -2659,9 +2657,7 @@ msgstr "" msgid "``assert_``" msgstr "" -#: whatsnew/3.12.rst:1729 -#: whatsnew/3.12.rst:1731 -#: whatsnew/3.12.rst:1733 +#: whatsnew/3.12.rst:1729 whatsnew/3.12.rst:1731 whatsnew/3.12.rst:1733 #: whatsnew/3.12.rst:1734 msgid "3.2" msgstr "" diff --git a/whatsnew/3.2.po b/whatsnew/3.2.po index 84d81a5e..349e1248 100644 --- a/whatsnew/3.2.po +++ b/whatsnew/3.2.po @@ -912,9 +912,7 @@ msgid "" "filled in automatically." msgstr "" -#: whatsnew/3.2.rst:839 -#: whatsnew/3.2.rst:904 -#: whatsnew/3.2.rst:1788 +#: whatsnew/3.2.rst:839 whatsnew/3.2.rst:904 whatsnew/3.2.rst:1788 #: whatsnew/3.2.rst:1832 msgid "(Contributed by Raymond Hettinger.)" msgstr "" @@ -1935,8 +1933,7 @@ msgid "" "and a directory to start discovery with ``-s``:" msgstr "" -#: whatsnew/3.2.rst:1768 -#: whatsnew/3.2.rst:1924 +#: whatsnew/3.2.rst:1768 whatsnew/3.2.rst:1924 msgid "(Contributed by Michael Foord.)" msgstr "" diff --git a/whatsnew/3.8.po b/whatsnew/3.8.po index 34223ee6..2491a52b 100644 --- a/whatsnew/3.8.po +++ b/whatsnew/3.8.po @@ -2691,8 +2691,7 @@ msgid "" "`PyObject_INIT`." msgstr "" -#: whatsnew/3.8.rst:2088 -#: whatsnew/3.8.rst:2107 +#: whatsnew/3.8.rst:2088 whatsnew/3.8.rst:2107 msgid "Example:" msgstr ""