From 1c6e81f5a7153fcfd4201c660482ecc92fc91fbb Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 12:53:03 +0300 Subject: [PATCH 01/37] Update Makefile --- Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2009088f3..90e90ae23 100644 --- a/Makefile +++ b/Makefile @@ -110,8 +110,16 @@ serve: .PHONY: progress progress: @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ - $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ - $(shell msgcat *.po */*.po | grep -c '^msgid') + @echo "File: "; \ + read FILE; \ + ifeq ($$(FILE), "") + @echo "No file specified, showing total progress"; \ + $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ + $(shell msgcat *.po */*.po | grep -c '^msgid') + + else + $(shell msgcat $$(FILE) | msgattrib --translated | grep -c '^msgid') \ + $(shell msgcat $$(FILE) | grep -c '^msgid') .PHONY: todo From 07e45be0a220dabdbc28bbaf5c708def3e9d1a8e Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:08:08 +0300 Subject: [PATCH 02/37] Update Makefile --- Makefile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 90e90ae23..f0be805c4 100644 --- a/Makefile +++ b/Makefile @@ -108,18 +108,19 @@ serve: .PHONY: progress +.ONESHELL: progress progress: @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ - @echo "File: "; \ - read FILE; \ - ifeq ($$(FILE), "") + @read -p "File: " file; \ + ifeq ($$file, "") \ @echo "No file specified, showing total progress"; \ $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ $(shell msgcat *.po */*.po | grep -c '^msgid') - else - $(shell msgcat $$(FILE) | msgattrib --translated | grep -c '^msgid') \ - $(shell msgcat $$(FILE) | grep -c '^msgid') + else \ + $(shell msgcat $$file | msgattrib --translated | grep -c '^msgid') \ + $(shell msgcat $$file | grep -c '^msgid') + endif .PHONY: todo From 5f230f3f2d19307ce2385e255739d40cd9f9e44f Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:12:59 +0300 Subject: [PATCH 03/37] Update Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f0be805c4..837c60e59 100644 --- a/Makefile +++ b/Makefile @@ -112,12 +112,12 @@ serve: progress: @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ @read -p "File: " file; \ - ifeq ($$file, "") \ + ifeq ($$file, "") @echo "No file specified, showing total progress"; \ $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ $(shell msgcat *.po */*.po | grep -c '^msgid') - else \ + else $(shell msgcat $$file | msgattrib --translated | grep -c '^msgid') \ $(shell msgcat $$file | grep -c '^msgid') endif From 71e1c229fca4a1289cdeeeaba739abaf77d076fb Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:30:02 +0300 Subject: [PATCH 04/37] Update Makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 837c60e59..3d01130aa 100644 --- a/Makefile +++ b/Makefile @@ -110,16 +110,16 @@ serve: .PHONY: progress .ONESHELL: progress progress: - @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ - @read -p "File: " file; \ - ifeq ($$file, "") + ifeq ($(file), "") @echo "No file specified, showing total progress"; \ + @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ $(shell msgcat *.po */*.po | grep -c '^msgid') else - $(shell msgcat $$file | msgattrib --translated | grep -c '^msgid') \ - $(shell msgcat $$file | grep -c '^msgid') + @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ + $(shell msgcat $(file) | msgattrib --translated | grep -c '^msgid') \ + $(shell msgcat $(file) | grep -c '^msgid') endif From cf0061ff0f5d65d75337e470c117ff436aa4ac45 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:31:13 +0300 Subject: [PATCH 05/37] Update Makefile --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 3d01130aa..3541f8faf 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,6 @@ serve: .PHONY: progress -.ONESHELL: progress progress: ifeq ($(file), "") @echo "No file specified, showing total progress"; \ From e54bdf4d178b020f9a855e9f4b3ac8e9822dbc61 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:35:50 +0300 Subject: [PATCH 06/37] Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3541f8faf..8cfc22dd9 100644 --- a/Makefile +++ b/Makefile @@ -109,7 +109,7 @@ serve: .PHONY: progress progress: - ifeq ($(file), "") + ifeq ($(file),) @echo "No file specified, showing total progress"; \ @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ From a2efa25aa1c1dfe2392626e7aaac7557f62bbc7e Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:38:33 +0300 Subject: [PATCH 07/37] Update Makefile --- Makefile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 8cfc22dd9..ec260dcf1 100644 --- a/Makefile +++ b/Makefile @@ -109,17 +109,17 @@ serve: .PHONY: progress progress: - ifeq ($(file),) - @echo "No file specified, showing total progress"; \ - @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ - $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ - $(shell msgcat *.po */*.po | grep -c '^msgid') - - else - @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ - $(shell msgcat $(file) | msgattrib --translated | grep -c '^msgid') \ - $(shell msgcat $(file) | grep -c '^msgid') - endif +ifeq ($(file),) + @echo ("No file specified, showing total progress"; \ + @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ + $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ + $(shell msgcat *.po */*.po | grep -c '^msgid') + +else + @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ + $(shell msgcat $(file) | msgattrib --translated | grep -c '^msgid') \ + $(shell msgcat $(file) | grep -c '^msgid') +endif .PHONY: todo From d32fbe10d02ced9904f93a8a58dc2c2351173714 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:39:23 +0300 Subject: [PATCH 08/37] Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec260dcf1..724b143eb 100644 --- a/Makefile +++ b/Makefile @@ -110,7 +110,7 @@ serve: .PHONY: progress progress: ifeq ($(file),) - @echo ("No file specified, showing total progress"; \ + @echo "No file specified, showing total progress"; \ @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ $(shell msgcat *.po */*.po | grep -c '^msgid') From 289e177601842b54266f26178901e365d9f25f12 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:39:58 +0300 Subject: [PATCH 09/37] Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 724b143eb..0f06be48b 100644 --- a/Makefile +++ b/Makefile @@ -111,7 +111,7 @@ serve: progress: ifeq ($(file),) @echo "No file specified, showing total progress"; \ - @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ + $(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ $(shell msgcat *.po */*.po | grep -c '^msgid') From 9146b797b31709daab8341c0bf00d6a5c95b2e13 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:45:11 +0300 Subject: [PATCH 10/37] Update Makefile --- Makefile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0f06be48b..bcea47f02 100644 --- a/Makefile +++ b/Makefile @@ -128,9 +128,20 @@ todo: ensure_prerequisites .PHONY: wrap wrap: ensure_prerequisites - @echo "Verify wrapping" +ifeq ($(fix),) + @echo "Verify wrapping" \ powrap --check --quiet *.po **/*.po +else + ifeq ($(file),) + @echo "Checking and fixing wrapping" + powrap *.po **/*.po + else + @echo "Fixing wrapping in $(file)" + powrap $(file) + endif +endif + SRCS = $(shell git diff --name-only $(BRANCH) | grep '.po$$') # foo/bar.po => $(POSPELL_TMP_DIR)/foo/bar.po.out DESTS = $(addprefix $(POSPELL_TMP_DIR)/,$(addsuffix .out,$(SRCS))) From 1e9e526dd2c637fafa8788a6d648136af53740c8 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:47:18 +0300 Subject: [PATCH 11/37] Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bcea47f02..a052fa51c 100644 --- a/Makefile +++ b/Makefile @@ -129,7 +129,7 @@ todo: ensure_prerequisites .PHONY: wrap wrap: ensure_prerequisites ifeq ($(fix),) - @echo "Verify wrapping" \ + @echo "Verify wrapping" powrap --check --quiet *.po **/*.po else From 33da246845497c03736256ec5a35d7186e09bf69 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 13:49:09 +0300 Subject: [PATCH 12/37] Update Makefile --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index a052fa51c..05fb1c30e 100644 --- a/Makefile +++ b/Makefile @@ -133,13 +133,13 @@ ifeq ($(fix),) powrap --check --quiet *.po **/*.po else - ifeq ($(file),) - @echo "Checking and fixing wrapping" - powrap *.po **/*.po - else - @echo "Fixing wrapping in $(file)" - powrap $(file) - endif +ifeq ($(file),) + @echo "Checking and fixing wrapping" + powrap *.po **/*.po +else + @echo "Fixing wrapping in $(file)" + powrap $(file) +endif endif SRCS = $(shell git diff --name-only $(BRANCH) | grep '.po$$') From a5d97b4ce2b8012237f6d0a8264f8dc001c03376 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 27 Dec 2021 21:30:45 +0300 Subject: [PATCH 13/37] Change default heading for all .po files --- about.po | 5 +++-- bugs.po | 5 +++-- c-api/abstract.po | 3 +-- c-api/allocation.po | 3 +-- c-api/apiabiversion.po | 3 +-- c-api/arg.po | 3 +-- c-api/bool.po | 3 +-- c-api/buffer.po | 3 +-- c-api/bytearray.po | 3 +-- c-api/bytes.po | 3 +-- c-api/call.po | 3 +-- c-api/capsule.po | 3 +-- c-api/cell.po | 3 +-- c-api/code.po | 3 +-- c-api/codec.po | 3 +-- c-api/complex.po | 3 +-- c-api/concrete.po | 3 +-- c-api/contextvars.po | 3 +-- c-api/conversion.po | 3 +-- c-api/coro.po | 3 +-- c-api/datetime.po | 3 +-- c-api/descriptor.po | 3 +-- c-api/dict.po | 3 +-- c-api/exceptions.po | 3 +-- c-api/file.po | 3 +-- c-api/float.po | 3 +-- c-api/function.po | 3 +-- c-api/gcsupport.po | 3 +-- c-api/gen.po | 3 +-- c-api/import.po | 3 +-- c-api/index.po | 3 +-- c-api/init.po | 3 +-- c-api/init_config.po | 3 +-- c-api/intro.po | 3 +-- c-api/iter.po | 3 +-- c-api/iterator.po | 3 +-- c-api/list.po | 3 +-- c-api/long.po | 3 +-- c-api/mapping.po | 3 +-- c-api/marshal.po | 3 +-- c-api/memory.po | 3 +-- c-api/memoryview.po | 3 +-- c-api/method.po | 3 +-- c-api/module.po | 3 +-- c-api/none.po | 3 +-- c-api/number.po | 3 +-- c-api/objbuffer.po | 3 +-- c-api/object.po | 3 +-- c-api/objimpl.po | 3 +-- c-api/refcounting.po | 3 +-- c-api/reflection.po | 3 +-- c-api/sequence.po | 3 +-- c-api/set.po | 3 +-- c-api/slice.po | 3 +-- c-api/stable.po | 3 +-- c-api/structures.po | 3 +-- c-api/sys.po | 3 +-- c-api/tuple.po | 3 +-- c-api/type.po | 3 +-- c-api/typehints.po | 3 +-- c-api/typeobj.po | 3 +-- c-api/unicode.po | 3 +-- c-api/utilities.po | 3 +-- c-api/veryhigh.po | 3 +-- c-api/weakref.po | 3 +-- contents.po | 5 ++--- copyright.po | 5 ++--- distributing/index.po | 3 +-- distutils/_setuptools_disclaimer.po | 3 +-- distutils/apiref.po | 3 +-- distutils/builtdist.po | 3 +-- distutils/commandref.po | 3 +-- distutils/configfile.po | 3 +-- distutils/examples.po | 3 +-- distutils/extending.po | 3 +-- distutils/index.po | 3 +-- distutils/introduction.po | 3 +-- distutils/packageindex.po | 3 +-- distutils/setupscript.po | 3 +-- distutils/sourcedist.po | 3 +-- distutils/uploading.po | 3 +-- extending/building.po | 3 +-- extending/embedding.po | 3 +-- extending/extending.po | 3 +-- extending/index.po | 3 +-- extending/newtypes.po | 3 +-- extending/newtypes_tutorial.po | 3 +-- extending/windows.po | 3 +-- faq/design.po | 3 +-- faq/extending.po | 3 +-- faq/general.po | 3 +-- faq/gui.po | 3 +-- faq/index.po | 3 +-- faq/installed.po | 3 +-- faq/library.po | 3 +-- faq/programming.po | 3 +-- faq/windows.po | 3 +-- glossary.po | 3 +-- howto/annotations.po | 3 +-- howto/argparse.po | 3 +-- howto/clinic.po | 3 +-- howto/cporting.po | 3 +-- howto/curses.po | 3 +-- howto/descriptor.po | 3 +-- howto/functional.po | 3 +-- howto/index.po | 3 +-- howto/instrumentation.po | 3 +-- howto/ipaddress.po | 3 +-- howto/logging-cookbook.po | 3 +-- howto/logging.po | 3 +-- howto/pyporting.po | 3 +-- howto/regex.po | 3 +-- howto/sockets.po | 3 +-- howto/sorting.po | 3 +-- howto/unicode.po | 3 +-- howto/urllib2.po | 3 +-- install/index.po | 3 +-- installing/index.po | 3 +-- library/2to3.po | 3 +-- library/__future__.po | 3 +-- library/__main__.po | 3 +-- library/_thread.po | 3 +-- library/abc.po | 3 +-- library/aifc.po | 3 +-- library/allos.po | 3 +-- library/archiving.po | 3 +-- library/argparse.po | 3 +-- library/array.po | 3 +-- library/ast.po | 3 +-- library/asynchat.po | 3 +-- library/asyncio-api-index.po | 3 +-- library/asyncio-dev.po | 3 +-- library/asyncio-eventloop.po | 3 +-- library/asyncio-exceptions.po | 3 +-- library/asyncio-future.po | 3 +-- library/asyncio-llapi-index.po | 3 +-- library/asyncio-platforms.po | 3 +-- library/asyncio-policy.po | 3 +-- library/asyncio-protocol.po | 3 +-- library/asyncio-queue.po | 3 +-- library/asyncio-stream.po | 3 +-- library/asyncio-subprocess.po | 3 +-- library/asyncio-sync.po | 3 +-- library/asyncio-task.po | 3 +-- library/asyncio.po | 3 +-- library/asyncore.po | 3 +-- library/atexit.po | 3 +-- library/audioop.po | 3 +-- library/audit_events.po | 3 +-- library/base64.po | 3 +-- library/bdb.po | 3 +-- library/binary.po | 3 +-- library/binascii.po | 3 +-- library/binhex.po | 3 +-- library/bisect.po | 3 +-- library/builtins.po | 3 +-- library/bz2.po | 3 +-- library/calendar.po | 3 +-- library/cgi.po | 3 +-- library/cgitb.po | 3 +-- library/chunk.po | 3 +-- library/cmath.po | 3 +-- library/cmd.po | 3 +-- library/code.po | 3 +-- library/codecs.po | 3 +-- library/codeop.po | 3 +-- library/collections.abc.po | 3 +-- library/collections.po | 3 +-- library/colorsys.po | 3 +-- library/compileall.po | 3 +-- library/concurrency.po | 3 +-- library/concurrent.futures.po | 3 +-- library/concurrent.po | 3 +-- library/configparser.po | 3 +-- library/constants.po | 3 +-- library/contextlib.po | 3 +-- library/contextvars.po | 3 +-- library/copy.po | 3 +-- library/copyreg.po | 3 +-- library/crypt.po | 3 +-- library/crypto.po | 3 +-- library/csv.po | 3 +-- library/ctypes.po | 3 +-- library/curses.ascii.po | 3 +-- library/curses.panel.po | 3 +-- library/curses.po | 3 +-- library/custominterp.po | 3 +-- library/dataclasses.po | 3 +-- library/datatypes.po | 3 +-- library/datetime.po | 3 +-- library/dbm.po | 3 +-- library/debug.po | 3 +-- library/decimal.po | 3 +-- library/development.po | 3 +-- library/devmode.po | 3 +-- library/dialog.po | 3 +-- library/difflib.po | 3 +-- library/dis.po | 3 +-- library/distribution.po | 3 +-- library/distutils.po | 3 +-- library/doctest.po | 3 +-- library/email.charset.po | 3 +-- library/email.compat32-message.po | 3 +-- library/email.contentmanager.po | 3 +-- library/email.encoders.po | 3 +-- library/email.errors.po | 3 +-- library/email.examples.po | 3 +-- library/email.generator.po | 3 +-- library/email.header.po | 3 +-- library/email.headerregistry.po | 3 +-- library/email.iterators.po | 3 +-- library/email.message.po | 3 +-- library/email.mime.po | 3 +-- library/email.parser.po | 3 +-- library/email.po | 3 +-- library/email.policy.po | 3 +-- library/email.utils.po | 3 +-- library/ensurepip.po | 3 +-- library/enum.po | 3 +-- library/errno.po | 3 +-- library/exceptions.po | 3 +-- library/faulthandler.po | 3 +-- library/fcntl.po | 3 +-- library/filecmp.po | 3 +-- library/fileformats.po | 3 +-- library/fileinput.po | 3 +-- library/filesys.po | 3 +-- library/fnmatch.po | 3 +-- library/fractions.po | 3 +-- library/frameworks.po | 3 +-- library/ftplib.po | 3 +-- library/functional.po | 3 +-- library/functions.po | 3 +-- library/functools.po | 3 +-- library/gc.po | 3 +-- library/getopt.po | 3 +-- library/getpass.po | 3 +-- library/gettext.po | 3 +-- library/glob.po | 3 +-- library/graphlib.po | 3 +-- library/grp.po | 3 +-- library/gzip.po | 3 +-- library/hashlib.po | 3 +-- library/heapq.po | 3 +-- library/hmac.po | 3 +-- library/html.entities.po | 3 +-- library/html.parser.po | 3 +-- library/html.po | 3 +-- library/http.client.po | 3 +-- library/http.cookiejar.po | 3 +-- library/http.cookies.po | 3 +-- library/http.po | 3 +-- library/http.server.po | 3 +-- library/i18n.po | 3 +-- library/idle.po | 3 +-- library/imaplib.po | 3 +-- library/imghdr.po | 3 +-- library/imp.po | 3 +-- library/importlib.metadata.po | 3 +-- library/importlib.po | 3 +-- library/index.po | 3 +-- library/inspect.po | 3 +-- library/internet.po | 3 +-- library/intro.po | 3 +-- library/io.po | 3 +-- library/ipaddress.po | 3 +-- library/ipc.po | 3 +-- library/itertools.po | 3 +-- library/json.po | 3 +-- library/keyword.po | 3 +-- library/language.po | 3 +-- library/linecache.po | 3 +-- library/locale.po | 3 +-- library/logging.config.po | 3 +-- library/logging.handlers.po | 3 +-- library/logging.po | 3 +-- library/lzma.po | 3 +-- library/mailbox.po | 3 +-- library/mailcap.po | 3 +-- library/markup.po | 3 +-- library/marshal.po | 3 +-- library/math.po | 3 +-- library/mimetypes.po | 3 +-- library/mm.po | 3 +-- library/mmap.po | 3 +-- library/modulefinder.po | 3 +-- library/modules.po | 3 +-- library/msilib.po | 3 +-- library/msvcrt.po | 3 +-- library/multiprocessing.po | 3 +-- library/multiprocessing.shared_memory.po | 3 +-- library/netdata.po | 3 +-- library/netrc.po | 3 +-- library/nis.po | 3 +-- library/nntplib.po | 3 +-- library/numbers.po | 3 +-- library/numeric.po | 3 +-- library/operator.po | 3 +-- library/optparse.po | 3 +-- library/os.path.po | 3 +-- library/os.po | 3 +-- library/ossaudiodev.po | 3 +-- library/pathlib.po | 3 +-- library/pdb.po | 3 +-- library/persistence.po | 3 +-- library/pickle.po | 3 +-- library/pickletools.po | 3 +-- library/pipes.po | 3 +-- library/pkgutil.po | 3 +-- library/platform.po | 3 +-- library/plistlib.po | 3 +-- library/poplib.po | 3 +-- library/posix.po | 3 +-- library/pprint.po | 3 +-- library/profile.po | 3 +-- library/pty.po | 3 +-- library/pwd.po | 3 +-- library/py_compile.po | 3 +-- library/pyclbr.po | 3 +-- library/pydoc.po | 3 +-- library/pyexpat.po | 3 +-- library/python.po | 3 +-- library/queue.po | 3 +-- library/quopri.po | 3 +-- library/random.po | 3 +-- library/re.po | 3 +-- library/readline.po | 3 +-- library/reprlib.po | 3 +-- library/resource.po | 3 +-- library/rlcompleter.po | 3 +-- library/runpy.po | 3 +-- library/sched.po | 3 +-- library/secrets.po | 3 +-- library/security_warnings.po | 3 +-- library/select.po | 3 +-- library/selectors.po | 3 +-- library/shelve.po | 3 +-- library/shlex.po | 3 +-- library/shutil.po | 3 +-- library/signal.po | 3 +-- library/site.po | 3 +-- library/smtpd.po | 3 +-- library/smtplib.po | 3 +-- library/sndhdr.po | 3 +-- library/socket.po | 3 +-- library/socketserver.po | 3 +-- library/spwd.po | 3 +-- library/sqlite3.po | 3 +-- library/ssl.po | 3 +-- library/stat.po | 3 +-- library/statistics.po | 3 +-- library/stdtypes.po | 3 +-- library/string.po | 3 +-- library/stringprep.po | 3 +-- library/struct.po | 3 +-- library/subprocess.po | 3 +-- library/sunau.po | 3 +-- library/superseded.po | 3 +-- library/symtable.po | 3 +-- library/sys.po | 3 +-- library/sysconfig.po | 3 +-- library/syslog.po | 3 +-- library/tabnanny.po | 3 +-- library/tarfile.po | 3 +-- library/telnetlib.po | 3 +-- library/tempfile.po | 3 +-- library/termios.po | 3 +-- library/test.po | 3 +-- library/text.po | 3 +-- library/textwrap.po | 3 +-- library/threading.po | 3 +-- library/time.po | 3 +-- library/timeit.po | 3 +-- library/tk.po | 3 +-- library/tkinter.colorchooser.po | 3 +-- library/tkinter.dnd.po | 3 +-- library/tkinter.font.po | 3 +-- library/tkinter.messagebox.po | 3 +-- library/tkinter.po | 3 +-- library/tkinter.scrolledtext.po | 3 +-- library/tkinter.tix.po | 3 +-- library/tkinter.ttk.po | 3 +-- library/token.po | 3 +-- library/tokenize.po | 3 +-- library/trace.po | 3 +-- library/traceback.po | 3 +-- library/tracemalloc.po | 3 +-- library/tty.po | 3 +-- library/turtle.po | 3 +-- library/types.po | 3 +-- library/typing.po | 3 +-- library/undoc.po | 3 +-- library/unicodedata.po | 3 +-- library/unittest.mock-examples.po | 3 +-- library/unittest.mock.po | 3 +-- library/unittest.po | 3 +-- library/unix.po | 3 +-- library/urllib.error.po | 3 +-- library/urllib.parse.po | 3 +-- library/urllib.po | 3 +-- library/urllib.request.po | 3 +-- library/urllib.robotparser.po | 3 +-- library/uu.po | 3 +-- library/uuid.po | 3 +-- library/venv.po | 3 +-- library/warnings.po | 3 +-- library/wave.po | 3 +-- library/weakref.po | 3 +-- library/webbrowser.po | 3 +-- library/windows.po | 3 +-- library/winreg.po | 3 +-- library/winsound.po | 3 +-- library/wsgiref.po | 3 +-- library/xdrlib.po | 3 +-- library/xml.dom.minidom.po | 3 +-- library/xml.dom.po | 3 +-- library/xml.dom.pulldom.po | 3 +-- library/xml.etree.elementtree.po | 3 +-- library/xml.po | 3 +-- library/xml.sax.handler.po | 3 +-- library/xml.sax.po | 3 +-- library/xml.sax.reader.po | 3 +-- library/xml.sax.utils.po | 3 +-- library/xmlrpc.client.po | 3 +-- library/xmlrpc.po | 3 +-- library/xmlrpc.server.po | 3 +-- library/zipapp.po | 3 +-- library/zipfile.po | 3 +-- library/zipimport.po | 3 +-- library/zlib.po | 3 +-- library/zoneinfo.po | 3 +-- license.po | 3 +-- reference/compound_stmts.po | 3 +-- reference/datamodel.po | 3 +-- reference/executionmodel.po | 3 +-- reference/expressions.po | 3 +-- reference/grammar.po | 3 +-- reference/import.po | 3 +-- reference/index.po | 3 +-- reference/introduction.po | 3 +-- reference/lexical_analysis.po | 3 +-- reference/simple_stmts.po | 3 +-- reference/toplevel_components.po | 3 +-- sphinx.po | 3 +-- tutorial/appendix.po | 3 +-- tutorial/appetite.po | 3 +-- tutorial/classes.po | 3 +-- tutorial/controlflow.po | 3 +-- tutorial/datastructures.po | 3 +-- tutorial/errors.po | 3 +-- tutorial/floatingpoint.po | 3 +-- tutorial/index.po | 3 +-- tutorial/inputoutput.po | 3 +-- tutorial/interactive.po | 3 +-- tutorial/interpreter.po | 3 +-- tutorial/introduction.po | 3 +-- tutorial/modules.po | 3 +-- tutorial/stdlib.po | 3 +-- tutorial/stdlib2.po | 3 +-- tutorial/venv.po | 3 +-- tutorial/whatnow.po | 3 +-- using/cmdline.po | 3 +-- using/configure.po | 3 +-- using/editors.po | 3 +-- using/index.po | 3 +-- using/mac.po | 3 +-- using/unix.po | 3 +-- using/windows.po | 3 +-- whatsnew/2.0.po | 3 +-- whatsnew/2.1.po | 3 +-- whatsnew/2.2.po | 3 +-- whatsnew/2.3.po | 3 +-- whatsnew/2.4.po | 3 +-- whatsnew/2.5.po | 3 +-- whatsnew/2.6.po | 3 +-- whatsnew/2.7.po | 3 +-- whatsnew/3.0.po | 3 +-- whatsnew/3.1.po | 3 +-- whatsnew/3.10.po | 3 +-- whatsnew/3.2.po | 3 +-- whatsnew/3.3.po | 3 +-- whatsnew/3.4.po | 3 +-- whatsnew/3.5.po | 3 +-- whatsnew/3.6.po | 3 +-- whatsnew/3.7.po | 3 +-- whatsnew/3.8.po | 3 +-- whatsnew/3.9.po | 3 +-- whatsnew/changelog.po | 3 +-- whatsnew/index.po | 3 +-- 489 files changed, 495 insertions(+), 980 deletions(-) diff --git a/about.po b/about.po index 445ab7adb..674490dab 100644 --- a/about.po +++ b/about.po @@ -1,5 +1,6 @@ +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation -# For licence information, see README file. +# This file is distributed under the same license as the Python package. # msgid "" msgstr "" @@ -9,7 +10,7 @@ msgstr "" "PO-Revision-Date: 2021-12-17 21:04+0300\n" "Last-Translator: \n" "Language-Team: TURKISH\n" -"Language: tr_TR\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/bugs.po b/bugs.po index ba241c3b9..564f5c8b9 100644 --- a/bugs.po +++ b/bugs.po @@ -1,5 +1,6 @@ +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation -# For licence information, see README file. +# This file is distributed under the same license as the Python package. # msgid "" msgstr "" @@ -9,7 +10,7 @@ msgstr "" "PO-Revision-Date: 2021-12-17 22:58+0300\n" "Last-Translator: \n" "Language-Team: TURKISH\n" -"Language: tr_TR\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/c-api/abstract.po b/c-api/abstract.po index e07942da0..323ea0c21 100644 --- a/c-api/abstract.po +++ b/c-api/abstract.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/allocation.po b/c-api/allocation.po index 4dad23bf0..89f00b45f 100644 --- a/c-api/allocation.po +++ b/c-api/allocation.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/apiabiversion.po b/c-api/apiabiversion.po index 8382d6b89..78371911f 100644 --- a/c-api/apiabiversion.po +++ b/c-api/apiabiversion.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/arg.po b/c-api/arg.po index 6395ab8b8..36b168c2d 100644 --- a/c-api/arg.po +++ b/c-api/arg.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/bool.po b/c-api/bool.po index b05ebce29..2bf83d277 100644 --- a/c-api/bool.po +++ b/c-api/bool.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/buffer.po b/c-api/buffer.po index d9a7c303e..511a77fce 100644 --- a/c-api/buffer.po +++ b/c-api/buffer.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/bytearray.po b/c-api/bytearray.po index b18312d40..b2951054e 100644 --- a/c-api/bytearray.po +++ b/c-api/bytearray.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/bytes.po b/c-api/bytes.po index 2124e496c..b761d9a1c 100644 --- a/c-api/bytes.po +++ b/c-api/bytes.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/call.po b/c-api/call.po index fd4edaea9..2c48c1849 100644 --- a/c-api/call.po +++ b/c-api/call.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/capsule.po b/c-api/capsule.po index 5d87e86a6..ef0ae478b 100644 --- a/c-api/capsule.po +++ b/c-api/capsule.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/cell.po b/c-api/cell.po index 30eb75db9..32af023b0 100644 --- a/c-api/cell.po +++ b/c-api/cell.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/code.po b/c-api/code.po index 27fd4aefe..0eb961ae9 100644 --- a/c-api/code.po +++ b/c-api/code.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/codec.po b/c-api/codec.po index 12a491995..3e237a46f 100644 --- a/c-api/codec.po +++ b/c-api/codec.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/complex.po b/c-api/complex.po index 56f0217f5..c93fc2b91 100644 --- a/c-api/complex.po +++ b/c-api/complex.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/concrete.po b/c-api/concrete.po index 1dea7ad7c..46c6a4014 100644 --- a/c-api/concrete.po +++ b/c-api/concrete.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/contextvars.po b/c-api/contextvars.po index 40aaf5701..6d83d7a9a 100644 --- a/c-api/contextvars.po +++ b/c-api/contextvars.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/conversion.po b/c-api/conversion.po index b29e81ed7..82dbf434b 100644 --- a/c-api/conversion.po +++ b/c-api/conversion.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/coro.po b/c-api/coro.po index ea7ac592c..8971fdc0f 100644 --- a/c-api/coro.po +++ b/c-api/coro.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/datetime.po b/c-api/datetime.po index 77ac6ab0e..0e2e1f38d 100644 --- a/c-api/datetime.po +++ b/c-api/datetime.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/descriptor.po b/c-api/descriptor.po index f9b65dfa2..affb4a46f 100644 --- a/c-api/descriptor.po +++ b/c-api/descriptor.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/dict.po b/c-api/dict.po index e68a268bb..7aaf4e31e 100644 --- a/c-api/dict.po +++ b/c-api/dict.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/exceptions.po b/c-api/exceptions.po index 6eb5a5029..326faec6d 100644 --- a/c-api/exceptions.po +++ b/c-api/exceptions.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/file.po b/c-api/file.po index 7a8e521bf..9b55ebe1b 100644 --- a/c-api/file.po +++ b/c-api/file.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/float.po b/c-api/float.po index 8ac74ac5f..8562d8a88 100644 --- a/c-api/float.po +++ b/c-api/float.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/function.po b/c-api/function.po index 49838188a..cc1acd9e4 100644 --- a/c-api/function.po +++ b/c-api/function.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/gcsupport.po b/c-api/gcsupport.po index ad77b25cb..14731fe3e 100644 --- a/c-api/gcsupport.po +++ b/c-api/gcsupport.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/gen.po b/c-api/gen.po index 4b58b8c15..e830a8221 100644 --- a/c-api/gen.po +++ b/c-api/gen.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/import.po b/c-api/import.po index c2a06425c..ec0b39df7 100644 --- a/c-api/import.po +++ b/c-api/import.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/index.po b/c-api/index.po index a1df4d08d..d4f7b738f 100644 --- a/c-api/index.po +++ b/c-api/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/init.po b/c-api/init.po index 4349a4a1d..cc4b44714 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/init_config.po b/c-api/init_config.po index a6af3c1a4..b94bc543a 100644 --- a/c-api/init_config.po +++ b/c-api/init_config.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/intro.po b/c-api/intro.po index 2e37ae2bf..81e38cf72 100644 --- a/c-api/intro.po +++ b/c-api/intro.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/iter.po b/c-api/iter.po index a79215b59..19534dc13 100644 --- a/c-api/iter.po +++ b/c-api/iter.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/iterator.po b/c-api/iterator.po index 46094f079..7d63e3c57 100644 --- a/c-api/iterator.po +++ b/c-api/iterator.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/list.po b/c-api/list.po index 28cef9d35..8e9c58497 100644 --- a/c-api/list.po +++ b/c-api/list.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/long.po b/c-api/long.po index d6646d8ba..ec8cfbc86 100644 --- a/c-api/long.po +++ b/c-api/long.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/mapping.po b/c-api/mapping.po index 15b6ff6d7..187bebcf8 100644 --- a/c-api/mapping.po +++ b/c-api/mapping.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/marshal.po b/c-api/marshal.po index 7e529a45f..32c86f196 100644 --- a/c-api/marshal.po +++ b/c-api/marshal.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/memory.po b/c-api/memory.po index 0892dc5e9..a1a3b3066 100644 --- a/c-api/memory.po +++ b/c-api/memory.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/memoryview.po b/c-api/memoryview.po index 94e04913d..873b9f6c9 100644 --- a/c-api/memoryview.po +++ b/c-api/memoryview.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/method.po b/c-api/method.po index e1d2bb649..1e5f86165 100644 --- a/c-api/method.po +++ b/c-api/method.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/module.po b/c-api/module.po index 8476d0cfb..bce705c82 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/none.po b/c-api/none.po index 03c7fc16e..5b69e7f83 100644 --- a/c-api/none.po +++ b/c-api/none.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/number.po b/c-api/number.po index e02f03ab5..375bd1e94 100644 --- a/c-api/number.po +++ b/c-api/number.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/objbuffer.po b/c-api/objbuffer.po index 2d35ea1e4..c378b998c 100644 --- a/c-api/objbuffer.po +++ b/c-api/objbuffer.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/object.po b/c-api/object.po index d1e34cb52..a0708ec5e 100644 --- a/c-api/object.po +++ b/c-api/object.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/objimpl.po b/c-api/objimpl.po index 427026cce..766bdcfe1 100644 --- a/c-api/objimpl.po +++ b/c-api/objimpl.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/refcounting.po b/c-api/refcounting.po index 9ea900cc9..ae97db6ff 100644 --- a/c-api/refcounting.po +++ b/c-api/refcounting.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/reflection.po b/c-api/reflection.po index 683808cce..fa3cf1b7e 100644 --- a/c-api/reflection.po +++ b/c-api/reflection.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/sequence.po b/c-api/sequence.po index 1f354ab71..8dd0fe380 100644 --- a/c-api/sequence.po +++ b/c-api/sequence.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/set.po b/c-api/set.po index dad43d9c5..0e4bf3108 100644 --- a/c-api/set.po +++ b/c-api/set.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/slice.po b/c-api/slice.po index e0f070d3e..a2fafa7df 100644 --- a/c-api/slice.po +++ b/c-api/slice.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/stable.po b/c-api/stable.po index 4cc40efd4..d6d11f035 100644 --- a/c-api/stable.po +++ b/c-api/stable.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/structures.po b/c-api/structures.po index 441e59002..269c2259d 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/sys.po b/c-api/sys.po index 1a736d612..166c56a5c 100644 --- a/c-api/sys.po +++ b/c-api/sys.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/tuple.po b/c-api/tuple.po index 0584054f5..de7699ebe 100644 --- a/c-api/tuple.po +++ b/c-api/tuple.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/type.po b/c-api/type.po index b5ed68cf0..90d8358b2 100644 --- a/c-api/type.po +++ b/c-api/type.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/typehints.po b/c-api/typehints.po index c59b070eb..3a7224542 100644 --- a/c-api/typehints.po +++ b/c-api/typehints.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/typeobj.po b/c-api/typeobj.po index 73df23789..a77157765 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/unicode.po b/c-api/unicode.po index 36f851a2d..285aa76fc 100644 --- a/c-api/unicode.po +++ b/c-api/unicode.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/utilities.po b/c-api/utilities.po index 933410921..57104cb2b 100644 --- a/c-api/utilities.po +++ b/c-api/utilities.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/veryhigh.po b/c-api/veryhigh.po index b8beab16e..48896f9b9 100644 --- a/c-api/veryhigh.po +++ b/c-api/veryhigh.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/c-api/weakref.po b/c-api/weakref.po index 5a6b1ad9e..3b2bb8303 100644 --- a/c-api/weakref.po +++ b/c-api/weakref.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/contents.po b/contents.po index c20177a46..c419a65c9 100644 --- a/contents.po +++ b/contents.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # msgid "" msgstr "" @@ -11,7 +10,7 @@ msgstr "" "PO-Revision-Date: 2021-12-18 21:20+0300\n" "Last-Translator: \n" "Language-Team: TURKISH\n" -"Language: tr_TR\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/copyright.po b/copyright.po index 4e8613f55..5327c38a1 100644 --- a/copyright.po +++ b/copyright.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # msgid "" msgstr "" @@ -11,7 +10,7 @@ msgstr "" "PO-Revision-Date: 2021-12-18 21:27+0300\n" "Last-Translator: \n" "Language-Team: TURKISH\n" -"Language: tr_TR\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/distributing/index.po b/distributing/index.po index b432ff6e2..311c89d3e 100644 --- a/distributing/index.po +++ b/distributing/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/_setuptools_disclaimer.po b/distutils/_setuptools_disclaimer.po index 72020ad30..70e38dbad 100644 --- a/distutils/_setuptools_disclaimer.po +++ b/distutils/_setuptools_disclaimer.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/apiref.po b/distutils/apiref.po index f4b32f63e..00a734246 100644 --- a/distutils/apiref.po +++ b/distutils/apiref.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/builtdist.po b/distutils/builtdist.po index b3d90217f..20216829e 100644 --- a/distutils/builtdist.po +++ b/distutils/builtdist.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/commandref.po b/distutils/commandref.po index 9b0a6564f..9be25c00a 100644 --- a/distutils/commandref.po +++ b/distutils/commandref.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/configfile.po b/distutils/configfile.po index 6dff0c69d..eeaed467d 100644 --- a/distutils/configfile.po +++ b/distutils/configfile.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/examples.po b/distutils/examples.po index dc1323589..0273e9175 100644 --- a/distutils/examples.po +++ b/distutils/examples.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/extending.po b/distutils/extending.po index bf67d111e..f78d86687 100644 --- a/distutils/extending.po +++ b/distutils/extending.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/index.po b/distutils/index.po index 56b47ec7b..fce350a6e 100644 --- a/distutils/index.po +++ b/distutils/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/introduction.po b/distutils/introduction.po index 15473437b..158d58c79 100644 --- a/distutils/introduction.po +++ b/distutils/introduction.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/packageindex.po b/distutils/packageindex.po index c691dd6c3..9b91d939a 100644 --- a/distutils/packageindex.po +++ b/distutils/packageindex.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/setupscript.po b/distutils/setupscript.po index 7fcf19a86..d73834424 100644 --- a/distutils/setupscript.po +++ b/distutils/setupscript.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/sourcedist.po b/distutils/sourcedist.po index 248e65a5b..8f6a7a6f5 100644 --- a/distutils/sourcedist.po +++ b/distutils/sourcedist.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/distutils/uploading.po b/distutils/uploading.po index ffffe60b2..79ff2b4d6 100644 --- a/distutils/uploading.po +++ b/distutils/uploading.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/extending/building.po b/extending/building.po index bdca62a96..54392acb8 100644 --- a/extending/building.po +++ b/extending/building.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/extending/embedding.po b/extending/embedding.po index 1dc831943..bae67bf97 100644 --- a/extending/embedding.po +++ b/extending/embedding.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/extending/extending.po b/extending/extending.po index faa4996d1..354704396 100644 --- a/extending/extending.po +++ b/extending/extending.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/extending/index.po b/extending/index.po index b175b6f1e..e5d43570a 100644 --- a/extending/index.po +++ b/extending/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/extending/newtypes.po b/extending/newtypes.po index 6b2ebc530..005d0ba22 100644 --- a/extending/newtypes.po +++ b/extending/newtypes.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/extending/newtypes_tutorial.po b/extending/newtypes_tutorial.po index 22f939fd3..78ec3a4cf 100644 --- a/extending/newtypes_tutorial.po +++ b/extending/newtypes_tutorial.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/extending/windows.po b/extending/windows.po index a87a315c0..d7c73b2e5 100644 --- a/extending/windows.po +++ b/extending/windows.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/design.po b/faq/design.po index d362a7a10..9e3f398ca 100644 --- a/faq/design.po +++ b/faq/design.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/extending.po b/faq/extending.po index 5b673579e..4d8c4506f 100644 --- a/faq/extending.po +++ b/faq/extending.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/general.po b/faq/general.po index bbe8ab982..43a7ee9c3 100644 --- a/faq/general.po +++ b/faq/general.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/gui.po b/faq/gui.po index 52613bf9d..815d3947d 100644 --- a/faq/gui.po +++ b/faq/gui.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/index.po b/faq/index.po index 3af585877..0ed46dcd0 100644 --- a/faq/index.po +++ b/faq/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/installed.po b/faq/installed.po index cbbbf43ff..1d4c4ecfc 100644 --- a/faq/installed.po +++ b/faq/installed.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/library.po b/faq/library.po index 4fe110588..8b058e358 100644 --- a/faq/library.po +++ b/faq/library.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/programming.po b/faq/programming.po index c64495f2c..d11eedf84 100644 --- a/faq/programming.po +++ b/faq/programming.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/faq/windows.po b/faq/windows.po index a8fbf3034..4f4c5371b 100644 --- a/faq/windows.po +++ b/faq/windows.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/glossary.po b/glossary.po index a37693363..a3a9d20a7 100644 --- a/glossary.po +++ b/glossary.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/annotations.po b/howto/annotations.po index 8062f8cef..9d77eaa00 100644 --- a/howto/annotations.po +++ b/howto/annotations.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/argparse.po b/howto/argparse.po index 70f680616..3a4073d52 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/clinic.po b/howto/clinic.po index ead23b50e..c6cab35df 100644 --- a/howto/clinic.po +++ b/howto/clinic.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/cporting.po b/howto/cporting.po index 3cb555b09..1e7c2a455 100644 --- a/howto/cporting.po +++ b/howto/cporting.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/curses.po b/howto/curses.po index 33c89faad..d93dd007c 100644 --- a/howto/curses.po +++ b/howto/curses.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/descriptor.po b/howto/descriptor.po index bb54f5e8d..40af10546 100644 --- a/howto/descriptor.po +++ b/howto/descriptor.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/functional.po b/howto/functional.po index d4e6519bb..ca5972072 100644 --- a/howto/functional.po +++ b/howto/functional.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/index.po b/howto/index.po index 330791f2d..af4aa0cb4 100644 --- a/howto/index.po +++ b/howto/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/instrumentation.po b/howto/instrumentation.po index 71d61b3bd..02f66b92b 100644 --- a/howto/instrumentation.po +++ b/howto/instrumentation.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/ipaddress.po b/howto/ipaddress.po index 6f95d50be..83ff7081d 100644 --- a/howto/ipaddress.po +++ b/howto/ipaddress.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index b6eef8b74..489b52cc2 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/logging.po b/howto/logging.po index 5cf5a0bdd..19226b329 100644 --- a/howto/logging.po +++ b/howto/logging.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/pyporting.po b/howto/pyporting.po index 57de7923b..3767d3e22 100644 --- a/howto/pyporting.po +++ b/howto/pyporting.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/regex.po b/howto/regex.po index 6c209c75c..4ddf44bba 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/sockets.po b/howto/sockets.po index 9dc5f203f..c8680d3f9 100644 --- a/howto/sockets.po +++ b/howto/sockets.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/sorting.po b/howto/sorting.po index 15ba6867c..32df1a46a 100644 --- a/howto/sorting.po +++ b/howto/sorting.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/unicode.po b/howto/unicode.po index 193d7d1a0..1a45f03fd 100644 --- a/howto/unicode.po +++ b/howto/unicode.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/howto/urllib2.po b/howto/urllib2.po index bf3185cce..c6eab5fd8 100644 --- a/howto/urllib2.po +++ b/howto/urllib2.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/install/index.po b/install/index.po index 90c527e59..4353c5698 100644 --- a/install/index.po +++ b/install/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/installing/index.po b/installing/index.po index 950c61ce6..734de0c8f 100644 --- a/installing/index.po +++ b/installing/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/2to3.po b/library/2to3.po index a9122022c..79f27b761 100644 --- a/library/2to3.po +++ b/library/2to3.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/__future__.po b/library/__future__.po index 3a62ea68f..5da30ac10 100644 --- a/library/__future__.po +++ b/library/__future__.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/__main__.po b/library/__main__.po index 8ac2d8803..779230b63 100644 --- a/library/__main__.po +++ b/library/__main__.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/_thread.po b/library/_thread.po index 83c524d5c..f9565e7b3 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/abc.po b/library/abc.po index 335cf68c9..c39a2c380 100644 --- a/library/abc.po +++ b/library/abc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/aifc.po b/library/aifc.po index 4eb74b28a..5da06fd08 100644 --- a/library/aifc.po +++ b/library/aifc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/allos.po b/library/allos.po index bd939ed1d..eee0f46b5 100644 --- a/library/allos.po +++ b/library/allos.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/archiving.po b/library/archiving.po index 80b403d12..34afc0124 100644 --- a/library/archiving.po +++ b/library/archiving.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/argparse.po b/library/argparse.po index 3dd7e7ff6..a1fb57cde 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/array.po b/library/array.po index fa92cb3cd..43a0fc5df 100644 --- a/library/array.po +++ b/library/array.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/ast.po b/library/ast.po index b309524c3..a3b1c77a5 100644 --- a/library/ast.po +++ b/library/ast.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asynchat.po b/library/asynchat.po index c28f34cfd..767aa23cd 100644 --- a/library/asynchat.po +++ b/library/asynchat.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-api-index.po b/library/asyncio-api-index.po index a7167e852..e2d80583d 100644 --- a/library/asyncio-api-index.po +++ b/library/asyncio-api-index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-dev.po b/library/asyncio-dev.po index cac6d6ebd..e9aea6641 100644 --- a/library/asyncio-dev.po +++ b/library/asyncio-dev.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-eventloop.po b/library/asyncio-eventloop.po index 62f4e2353..c4b42d7ed 100644 --- a/library/asyncio-eventloop.po +++ b/library/asyncio-eventloop.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-exceptions.po b/library/asyncio-exceptions.po index fa8581923..145d579d6 100644 --- a/library/asyncio-exceptions.po +++ b/library/asyncio-exceptions.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-future.po b/library/asyncio-future.po index 2b0a469f1..4c0f6d26e 100644 --- a/library/asyncio-future.po +++ b/library/asyncio-future.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-llapi-index.po b/library/asyncio-llapi-index.po index 643846c3b..8a0ba547a 100644 --- a/library/asyncio-llapi-index.po +++ b/library/asyncio-llapi-index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-platforms.po b/library/asyncio-platforms.po index e3189f813..f2eecceed 100644 --- a/library/asyncio-platforms.po +++ b/library/asyncio-platforms.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-policy.po b/library/asyncio-policy.po index 81e4c46dc..101cd3f93 100644 --- a/library/asyncio-policy.po +++ b/library/asyncio-policy.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-protocol.po b/library/asyncio-protocol.po index bf31b3154..c5049ac77 100644 --- a/library/asyncio-protocol.po +++ b/library/asyncio-protocol.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-queue.po b/library/asyncio-queue.po index 0768b2294..57ffda953 100644 --- a/library/asyncio-queue.po +++ b/library/asyncio-queue.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index a86b10cca..5af1a2ca2 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-subprocess.po b/library/asyncio-subprocess.po index 371a5bdb1..65a9ab198 100644 --- a/library/asyncio-subprocess.po +++ b/library/asyncio-subprocess.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-sync.po b/library/asyncio-sync.po index e40bf679e..0796a4817 100644 --- a/library/asyncio-sync.po +++ b/library/asyncio-sync.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio-task.po b/library/asyncio-task.po index 7cbf015e6..197cfa975 100644 --- a/library/asyncio-task.po +++ b/library/asyncio-task.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncio.po b/library/asyncio.po index bd4481dd7..6b356562b 100644 --- a/library/asyncio.po +++ b/library/asyncio.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/asyncore.po b/library/asyncore.po index 1514b9f7d..44642e248 100644 --- a/library/asyncore.po +++ b/library/asyncore.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/atexit.po b/library/atexit.po index c222fe7c6..c7dd74082 100644 --- a/library/atexit.po +++ b/library/atexit.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/audioop.po b/library/audioop.po index 3c7eb39bc..03b400c94 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/audit_events.po b/library/audit_events.po index 7348c3966..d307fe409 100644 --- a/library/audit_events.po +++ b/library/audit_events.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/base64.po b/library/base64.po index 871b77610..541e31f9b 100644 --- a/library/base64.po +++ b/library/base64.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/bdb.po b/library/bdb.po index a03c2fb9f..44a4a4cf0 100644 --- a/library/bdb.po +++ b/library/bdb.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/binary.po b/library/binary.po index c91c1723e..b6755527e 100644 --- a/library/binary.po +++ b/library/binary.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/binascii.po b/library/binascii.po index 73728bab3..4a3e3a4e6 100644 --- a/library/binascii.po +++ b/library/binascii.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/binhex.po b/library/binhex.po index e50da56d5..4d8e7f411 100644 --- a/library/binhex.po +++ b/library/binhex.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/bisect.po b/library/bisect.po index e5b932925..9b751ef0d 100644 --- a/library/bisect.po +++ b/library/bisect.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/builtins.po b/library/builtins.po index fe9ef1f69..e1f8939cd 100644 --- a/library/builtins.po +++ b/library/builtins.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/bz2.po b/library/bz2.po index 1fdf6cecb..2e5717e0b 100644 --- a/library/bz2.po +++ b/library/bz2.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/calendar.po b/library/calendar.po index 9c4a9d294..182290756 100644 --- a/library/calendar.po +++ b/library/calendar.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/cgi.po b/library/cgi.po index fec488c6b..f6872b04d 100644 --- a/library/cgi.po +++ b/library/cgi.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/cgitb.po b/library/cgitb.po index 581b007b5..37579ce75 100644 --- a/library/cgitb.po +++ b/library/cgitb.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/chunk.po b/library/chunk.po index 291990544..6ba6c22ed 100644 --- a/library/chunk.po +++ b/library/chunk.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/cmath.po b/library/cmath.po index 695c08456..c3f77e0a1 100644 --- a/library/cmath.po +++ b/library/cmath.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/cmd.po b/library/cmd.po index ee6cdaa61..666867c85 100644 --- a/library/cmd.po +++ b/library/cmd.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/code.po b/library/code.po index 2a2c68986..8fb2595ff 100644 --- a/library/code.po +++ b/library/code.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/codecs.po b/library/codecs.po index 0aa9e9175..c3f13871a 100644 --- a/library/codecs.po +++ b/library/codecs.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/codeop.po b/library/codeop.po index 61bf5b8d9..050db9d4d 100644 --- a/library/codeop.po +++ b/library/codeop.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/collections.abc.po b/library/collections.abc.po index df46af53f..9b8b42867 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/collections.po b/library/collections.po index ef05761b3..1ae5eb29a 100644 --- a/library/collections.po +++ b/library/collections.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/colorsys.po b/library/colorsys.po index fe7f06a6f..939c8d63d 100644 --- a/library/colorsys.po +++ b/library/colorsys.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/compileall.po b/library/compileall.po index f0d354cf7..c7cfdead9 100644 --- a/library/compileall.po +++ b/library/compileall.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/concurrency.po b/library/concurrency.po index b494c9ee8..2705e1bd8 100644 --- a/library/concurrency.po +++ b/library/concurrency.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/concurrent.futures.po b/library/concurrent.futures.po index 49d04e0a2..e1b67b615 100644 --- a/library/concurrent.futures.po +++ b/library/concurrent.futures.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/concurrent.po b/library/concurrent.po index 494e88913..1650be109 100644 --- a/library/concurrent.po +++ b/library/concurrent.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/configparser.po b/library/configparser.po index c82c3252f..1a0183bdd 100644 --- a/library/configparser.po +++ b/library/configparser.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/constants.po b/library/constants.po index a29e7d145..0043c1ba9 100644 --- a/library/constants.po +++ b/library/constants.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/contextlib.po b/library/contextlib.po index 878388726..ac97c8cd4 100644 --- a/library/contextlib.po +++ b/library/contextlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/contextvars.po b/library/contextvars.po index 1ae69150e..8b8d949ea 100644 --- a/library/contextvars.po +++ b/library/contextvars.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/copy.po b/library/copy.po index 56b4290db..5b3bcdeb2 100644 --- a/library/copy.po +++ b/library/copy.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/copyreg.po b/library/copyreg.po index 25b2bef6a..05bcb0e8f 100644 --- a/library/copyreg.po +++ b/library/copyreg.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/crypt.po b/library/crypt.po index ccce903e2..fd60be631 100644 --- a/library/crypt.po +++ b/library/crypt.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/crypto.po b/library/crypto.po index 15a6f0ba4..fb6ec4dea 100644 --- a/library/crypto.po +++ b/library/crypto.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/csv.po b/library/csv.po index d746948d0..8f08e4397 100644 --- a/library/csv.po +++ b/library/csv.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/ctypes.po b/library/ctypes.po index bfe8a82da..c8668b52a 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/curses.ascii.po b/library/curses.ascii.po index e8321edfe..7d9966760 100644 --- a/library/curses.ascii.po +++ b/library/curses.ascii.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/curses.panel.po b/library/curses.panel.po index e00d59434..41cc42ce5 100644 --- a/library/curses.panel.po +++ b/library/curses.panel.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/curses.po b/library/curses.po index 4a34cd196..fd56176e4 100644 --- a/library/curses.po +++ b/library/curses.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/custominterp.po b/library/custominterp.po index f67c4979e..59cdd74e5 100644 --- a/library/custominterp.po +++ b/library/custominterp.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/dataclasses.po b/library/dataclasses.po index 58147fc0c..fdf673d95 100644 --- a/library/dataclasses.po +++ b/library/dataclasses.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/datatypes.po b/library/datatypes.po index 8961cc1a5..13cc7a5af 100644 --- a/library/datatypes.po +++ b/library/datatypes.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/datetime.po b/library/datetime.po index d133385f2..551d483c9 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/dbm.po b/library/dbm.po index b4b1982e4..5f5885935 100644 --- a/library/dbm.po +++ b/library/dbm.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/debug.po b/library/debug.po index 83178cefa..b4a921521 100644 --- a/library/debug.po +++ b/library/debug.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/decimal.po b/library/decimal.po index 5d4555951..f824936ac 100644 --- a/library/decimal.po +++ b/library/decimal.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/development.po b/library/development.po index a158aec78..c7e981e1b 100644 --- a/library/development.po +++ b/library/development.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/devmode.po b/library/devmode.po index d01d604cd..9434f8103 100644 --- a/library/devmode.po +++ b/library/devmode.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/dialog.po b/library/dialog.po index 2159929c2..cd25eff08 100644 --- a/library/dialog.po +++ b/library/dialog.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/difflib.po b/library/difflib.po index 37849fdf6..24478bbdc 100644 --- a/library/difflib.po +++ b/library/difflib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/dis.po b/library/dis.po index 0beba4b38..d48edf9ca 100644 --- a/library/dis.po +++ b/library/dis.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/distribution.po b/library/distribution.po index bb62bffd4..e9d719704 100644 --- a/library/distribution.po +++ b/library/distribution.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/distutils.po b/library/distutils.po index 46a13c721..b00cc34b0 100644 --- a/library/distutils.po +++ b/library/distutils.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/doctest.po b/library/doctest.po index 188415ae7..05b9eee10 100644 --- a/library/doctest.po +++ b/library/doctest.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.charset.po b/library/email.charset.po index f75d907f7..a4dc829a8 100644 --- a/library/email.charset.po +++ b/library/email.charset.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.compat32-message.po b/library/email.compat32-message.po index 226eb4f01..4ace00812 100644 --- a/library/email.compat32-message.po +++ b/library/email.compat32-message.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.contentmanager.po b/library/email.contentmanager.po index b843b2c15..742288961 100644 --- a/library/email.contentmanager.po +++ b/library/email.contentmanager.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.encoders.po b/library/email.encoders.po index a66afb72c..5d27adf89 100644 --- a/library/email.encoders.po +++ b/library/email.encoders.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.errors.po b/library/email.errors.po index e8e68f849..8d5e1a21d 100644 --- a/library/email.errors.po +++ b/library/email.errors.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.examples.po b/library/email.examples.po index ab427d443..9b8c9192e 100644 --- a/library/email.examples.po +++ b/library/email.examples.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.generator.po b/library/email.generator.po index 14de1dc1f..e5e553d07 100644 --- a/library/email.generator.po +++ b/library/email.generator.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.header.po b/library/email.header.po index e431b13b4..1bcfc54ff 100644 --- a/library/email.header.po +++ b/library/email.header.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.headerregistry.po b/library/email.headerregistry.po index 5044c6562..8b988390f 100644 --- a/library/email.headerregistry.po +++ b/library/email.headerregistry.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.iterators.po b/library/email.iterators.po index bc5cd3879..54d82c6bb 100644 --- a/library/email.iterators.po +++ b/library/email.iterators.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.message.po b/library/email.message.po index 67c540ed3..e3540a34b 100644 --- a/library/email.message.po +++ b/library/email.message.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.mime.po b/library/email.mime.po index cfc39237c..257004075 100644 --- a/library/email.mime.po +++ b/library/email.mime.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.parser.po b/library/email.parser.po index 6740d68ab..25df005c5 100644 --- a/library/email.parser.po +++ b/library/email.parser.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.po b/library/email.po index da1d1d0cf..75a688387 100644 --- a/library/email.po +++ b/library/email.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.policy.po b/library/email.policy.po index a14ee8e1f..534844705 100644 --- a/library/email.policy.po +++ b/library/email.policy.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/email.utils.po b/library/email.utils.po index 0cd3ae8fd..8dfc02d89 100644 --- a/library/email.utils.po +++ b/library/email.utils.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/ensurepip.po b/library/ensurepip.po index c47e76ed9..6d3d17087 100644 --- a/library/ensurepip.po +++ b/library/ensurepip.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/enum.po b/library/enum.po index 6eb48d496..209219e96 100644 --- a/library/enum.po +++ b/library/enum.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/errno.po b/library/errno.po index b64076edf..397965077 100644 --- a/library/errno.po +++ b/library/errno.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/exceptions.po b/library/exceptions.po index 7dfc7a8ee..32d790f6a 100644 --- a/library/exceptions.po +++ b/library/exceptions.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/faulthandler.po b/library/faulthandler.po index bb330d485..4d3520727 100644 --- a/library/faulthandler.po +++ b/library/faulthandler.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/fcntl.po b/library/fcntl.po index 82b5ce586..987a6ab5a 100644 --- a/library/fcntl.po +++ b/library/fcntl.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/filecmp.po b/library/filecmp.po index 920978b63..434125f60 100644 --- a/library/filecmp.po +++ b/library/filecmp.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/fileformats.po b/library/fileformats.po index ddc509fef..4c1fec132 100644 --- a/library/fileformats.po +++ b/library/fileformats.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/fileinput.po b/library/fileinput.po index 70dd3df38..9cb34d5b7 100644 --- a/library/fileinput.po +++ b/library/fileinput.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/filesys.po b/library/filesys.po index 6d5c57778..91c0313b3 100644 --- a/library/filesys.po +++ b/library/filesys.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/fnmatch.po b/library/fnmatch.po index f1bf2a809..61b9948ec 100644 --- a/library/fnmatch.po +++ b/library/fnmatch.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/fractions.po b/library/fractions.po index d973187da..24eb4c485 100644 --- a/library/fractions.po +++ b/library/fractions.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/frameworks.po b/library/frameworks.po index 3cc6def67..70cdedf8d 100644 --- a/library/frameworks.po +++ b/library/frameworks.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/ftplib.po b/library/ftplib.po index 5906fe649..b097fbb89 100644 --- a/library/ftplib.po +++ b/library/ftplib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/functional.po b/library/functional.po index 728a77abe..a3db817f5 100644 --- a/library/functional.po +++ b/library/functional.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/functions.po b/library/functions.po index 9caf3364d..7ed3d4f6f 100644 --- a/library/functions.po +++ b/library/functions.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/functools.po b/library/functools.po index 1ae479f99..64f091374 100644 --- a/library/functools.po +++ b/library/functools.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/gc.po b/library/gc.po index a6160b93d..70a321352 100644 --- a/library/gc.po +++ b/library/gc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/getopt.po b/library/getopt.po index 394ce3204..4814eb725 100644 --- a/library/getopt.po +++ b/library/getopt.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/getpass.po b/library/getpass.po index 901df932d..7d7a4526a 100644 --- a/library/getpass.po +++ b/library/getpass.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/gettext.po b/library/gettext.po index c7a49a863..8b6b398d9 100644 --- a/library/gettext.po +++ b/library/gettext.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/glob.po b/library/glob.po index 9ef51c3b6..6f3967801 100644 --- a/library/glob.po +++ b/library/glob.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/graphlib.po b/library/graphlib.po index a1bbe25df..2a9a66349 100644 --- a/library/graphlib.po +++ b/library/graphlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/grp.po b/library/grp.po index 7657f2039..7d6083cb8 100644 --- a/library/grp.po +++ b/library/grp.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/gzip.po b/library/gzip.po index 4766b5688..fb24af375 100644 --- a/library/gzip.po +++ b/library/gzip.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/hashlib.po b/library/hashlib.po index 53e27a59b..8eaab638f 100644 --- a/library/hashlib.po +++ b/library/hashlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/heapq.po b/library/heapq.po index af2b7ea7f..a204cf664 100644 --- a/library/heapq.po +++ b/library/heapq.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/hmac.po b/library/hmac.po index d087bc547..6ea8235e2 100644 --- a/library/hmac.po +++ b/library/hmac.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/html.entities.po b/library/html.entities.po index 67b633501..aae998136 100644 --- a/library/html.entities.po +++ b/library/html.entities.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/html.parser.po b/library/html.parser.po index 35c53ed11..fa6169dc0 100644 --- a/library/html.parser.po +++ b/library/html.parser.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/html.po b/library/html.po index 46159ad3b..d6fec78de 100644 --- a/library/html.po +++ b/library/html.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/http.client.po b/library/http.client.po index b13a18882..885d35c16 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/http.cookiejar.po b/library/http.cookiejar.po index 80cbf5b67..90d940a55 100644 --- a/library/http.cookiejar.po +++ b/library/http.cookiejar.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/http.cookies.po b/library/http.cookies.po index 4330bb84a..1d52684e1 100644 --- a/library/http.cookies.po +++ b/library/http.cookies.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/http.po b/library/http.po index 0855a50eb..5142e7554 100644 --- a/library/http.po +++ b/library/http.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/http.server.po b/library/http.server.po index a1e2165d0..743b98461 100644 --- a/library/http.server.po +++ b/library/http.server.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/i18n.po b/library/i18n.po index 4689c6cd5..7e9ef4655 100644 --- a/library/i18n.po +++ b/library/i18n.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/idle.po b/library/idle.po index 7ff1f5400..c9835a097 100644 --- a/library/idle.po +++ b/library/idle.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/imaplib.po b/library/imaplib.po index 190e83a49..bd39d8763 100644 --- a/library/imaplib.po +++ b/library/imaplib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/imghdr.po b/library/imghdr.po index ea2a7000d..b31f3f22a 100644 --- a/library/imghdr.po +++ b/library/imghdr.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/imp.po b/library/imp.po index 06767ffdf..57898a14e 100644 --- a/library/imp.po +++ b/library/imp.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/importlib.metadata.po b/library/importlib.metadata.po index 700dda2db..fd6b8b5e9 100644 --- a/library/importlib.metadata.po +++ b/library/importlib.metadata.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/importlib.po b/library/importlib.po index e6cd40fcf..39adde399 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/index.po b/library/index.po index f390edc8f..ecf31d10e 100644 --- a/library/index.po +++ b/library/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/inspect.po b/library/inspect.po index a489823e4..9d4e2fd02 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/internet.po b/library/internet.po index 563e5a85a..d47be90eb 100644 --- a/library/internet.po +++ b/library/internet.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/intro.po b/library/intro.po index 405acd40a..64e2163f2 100644 --- a/library/intro.po +++ b/library/intro.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/io.po b/library/io.po index 6588c4b78..590b3311f 100644 --- a/library/io.po +++ b/library/io.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/ipaddress.po b/library/ipaddress.po index a514aadb6..d1c70b592 100644 --- a/library/ipaddress.po +++ b/library/ipaddress.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/ipc.po b/library/ipc.po index 5ab4a4457..394b57ace 100644 --- a/library/ipc.po +++ b/library/ipc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/itertools.po b/library/itertools.po index b9a459594..99137f255 100644 --- a/library/itertools.po +++ b/library/itertools.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/json.po b/library/json.po index bdd538f77..080ad96c4 100644 --- a/library/json.po +++ b/library/json.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/keyword.po b/library/keyword.po index 73135e6ce..f71b01eab 100644 --- a/library/keyword.po +++ b/library/keyword.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/language.po b/library/language.po index 7b04ee053..347ae4ffd 100644 --- a/library/language.po +++ b/library/language.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/linecache.po b/library/linecache.po index 1b49c9ac1..dd1a8b7ab 100644 --- a/library/linecache.po +++ b/library/linecache.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/locale.po b/library/locale.po index 6e807fa81..7d83a9072 100644 --- a/library/locale.po +++ b/library/locale.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/logging.config.po b/library/logging.config.po index e0706523a..d1eb5ebc3 100644 --- a/library/logging.config.po +++ b/library/logging.config.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/logging.handlers.po b/library/logging.handlers.po index 52407bd0f..407dffd13 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/logging.po b/library/logging.po index 89de4dd68..1a8982ed4 100644 --- a/library/logging.po +++ b/library/logging.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/lzma.po b/library/lzma.po index 3331741c1..a319dd916 100644 --- a/library/lzma.po +++ b/library/lzma.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/mailbox.po b/library/mailbox.po index 86b88204c..ae142a10b 100644 --- a/library/mailbox.po +++ b/library/mailbox.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/mailcap.po b/library/mailcap.po index fad64b8a2..4ebfd76bc 100644 --- a/library/mailcap.po +++ b/library/mailcap.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/markup.po b/library/markup.po index f6c827c27..60f0a0f28 100644 --- a/library/markup.po +++ b/library/markup.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/marshal.po b/library/marshal.po index a6c1c6f7f..351328f83 100644 --- a/library/marshal.po +++ b/library/marshal.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/math.po b/library/math.po index 6303aa9dc..b54fcf881 100644 --- a/library/math.po +++ b/library/math.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/mimetypes.po b/library/mimetypes.po index df7910a8d..003793188 100644 --- a/library/mimetypes.po +++ b/library/mimetypes.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/mm.po b/library/mm.po index d70f57692..d114cbb6d 100644 --- a/library/mm.po +++ b/library/mm.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/mmap.po b/library/mmap.po index 404858d3a..02229f011 100644 --- a/library/mmap.po +++ b/library/mmap.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/modulefinder.po b/library/modulefinder.po index d472a9681..607bb2f0c 100644 --- a/library/modulefinder.po +++ b/library/modulefinder.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/modules.po b/library/modules.po index e0d561afb..05d2acf7b 100644 --- a/library/modules.po +++ b/library/modules.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/msilib.po b/library/msilib.po index 8a64ac91d..f2e9bb0a9 100644 --- a/library/msilib.po +++ b/library/msilib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/msvcrt.po b/library/msvcrt.po index b4e3a74e1..5bd324ca1 100644 --- a/library/msvcrt.po +++ b/library/msvcrt.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/multiprocessing.po b/library/multiprocessing.po index f05679b97..659251969 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/multiprocessing.shared_memory.po b/library/multiprocessing.shared_memory.po index 728b1d234..10a599200 100644 --- a/library/multiprocessing.shared_memory.po +++ b/library/multiprocessing.shared_memory.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/netdata.po b/library/netdata.po index 46a50241e..7f39dee7f 100644 --- a/library/netdata.po +++ b/library/netdata.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/netrc.po b/library/netrc.po index dffe7ec53..6594c23d3 100644 --- a/library/netrc.po +++ b/library/netrc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/nis.po b/library/nis.po index a86e3a51b..7d55579c9 100644 --- a/library/nis.po +++ b/library/nis.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/nntplib.po b/library/nntplib.po index 8e8ab6634..7f61941b9 100644 --- a/library/nntplib.po +++ b/library/nntplib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/numbers.po b/library/numbers.po index 928e812ca..4d9b77e95 100644 --- a/library/numbers.po +++ b/library/numbers.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/numeric.po b/library/numeric.po index aaa548553..4518b216f 100644 --- a/library/numeric.po +++ b/library/numeric.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/operator.po b/library/operator.po index 57ca35edc..df5b9e87f 100644 --- a/library/operator.po +++ b/library/operator.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/optparse.po b/library/optparse.po index 81b459fa5..067f57090 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/os.path.po b/library/os.path.po index d08fc11f2..42176c9c1 100644 --- a/library/os.path.po +++ b/library/os.path.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/os.po b/library/os.po index 6ab2ebd3a..2c5235416 100644 --- a/library/os.po +++ b/library/os.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/ossaudiodev.po b/library/ossaudiodev.po index 6ff760771..78094b14d 100644 --- a/library/ossaudiodev.po +++ b/library/ossaudiodev.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pathlib.po b/library/pathlib.po index 98f66be57..0d1337b31 100644 --- a/library/pathlib.po +++ b/library/pathlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pdb.po b/library/pdb.po index 4e0fb2620..e1be32635 100644 --- a/library/pdb.po +++ b/library/pdb.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/persistence.po b/library/persistence.po index 4c2d19774..c8509762a 100644 --- a/library/persistence.po +++ b/library/persistence.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pickle.po b/library/pickle.po index 103dc41bc..f97708f8a 100644 --- a/library/pickle.po +++ b/library/pickle.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pickletools.po b/library/pickletools.po index 5c43d7a8b..f5dcb5bf0 100644 --- a/library/pickletools.po +++ b/library/pickletools.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pipes.po b/library/pipes.po index 4aac5c576..0d6799d0d 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pkgutil.po b/library/pkgutil.po index 0456852b5..aa65e4b91 100644 --- a/library/pkgutil.po +++ b/library/pkgutil.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/platform.po b/library/platform.po index 6f18eeaa8..1f5420494 100644 --- a/library/platform.po +++ b/library/platform.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/plistlib.po b/library/plistlib.po index d6f25b4e2..f970003e0 100644 --- a/library/plistlib.po +++ b/library/plistlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/poplib.po b/library/poplib.po index 45ad78539..dec5a7bf0 100644 --- a/library/poplib.po +++ b/library/poplib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/posix.po b/library/posix.po index 7616d2f9a..733a4771d 100644 --- a/library/posix.po +++ b/library/posix.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pprint.po b/library/pprint.po index 854efa9a4..2d0f21e5c 100644 --- a/library/pprint.po +++ b/library/pprint.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/profile.po b/library/profile.po index b0a188a9f..5f04db79b 100644 --- a/library/profile.po +++ b/library/profile.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pty.po b/library/pty.po index 734ce13a5..89891b194 100644 --- a/library/pty.po +++ b/library/pty.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pwd.po b/library/pwd.po index f55373d04..2391521cb 100644 --- a/library/pwd.po +++ b/library/pwd.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/py_compile.po b/library/py_compile.po index f2dc32543..f00336e34 100644 --- a/library/py_compile.po +++ b/library/py_compile.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pyclbr.po b/library/pyclbr.po index dd35a7c81..738a5591a 100644 --- a/library/pyclbr.po +++ b/library/pyclbr.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pydoc.po b/library/pydoc.po index 3c27b4265..e75d11208 100644 --- a/library/pydoc.po +++ b/library/pydoc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/pyexpat.po b/library/pyexpat.po index d37251883..fee7b1cbd 100644 --- a/library/pyexpat.po +++ b/library/pyexpat.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/python.po b/library/python.po index ce25347ad..c33bda096 100644 --- a/library/python.po +++ b/library/python.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/queue.po b/library/queue.po index 6880bc080..fdfde3eec 100644 --- a/library/queue.po +++ b/library/queue.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/quopri.po b/library/quopri.po index bafe12d37..dc0494768 100644 --- a/library/quopri.po +++ b/library/quopri.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/random.po b/library/random.po index 1c509930e..35d1fea20 100644 --- a/library/random.po +++ b/library/random.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/re.po b/library/re.po index 3ec16598b..4128db539 100644 --- a/library/re.po +++ b/library/re.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/readline.po b/library/readline.po index 968d8fb05..7634e4f0a 100644 --- a/library/readline.po +++ b/library/readline.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/reprlib.po b/library/reprlib.po index 20dfb3e3d..29cd49036 100644 --- a/library/reprlib.po +++ b/library/reprlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/resource.po b/library/resource.po index 49f67101b..2919bdd66 100644 --- a/library/resource.po +++ b/library/resource.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/rlcompleter.po b/library/rlcompleter.po index 60e26479d..21363f0ef 100644 --- a/library/rlcompleter.po +++ b/library/rlcompleter.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/runpy.po b/library/runpy.po index bb8da0d99..81c2c2ec3 100644 --- a/library/runpy.po +++ b/library/runpy.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/sched.po b/library/sched.po index 9018209e1..7b491fda5 100644 --- a/library/sched.po +++ b/library/sched.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/secrets.po b/library/secrets.po index 543337415..a1bb9b8ff 100644 --- a/library/secrets.po +++ b/library/secrets.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/security_warnings.po b/library/security_warnings.po index 34c21240e..bc8b63bbb 100644 --- a/library/security_warnings.po +++ b/library/security_warnings.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/select.po b/library/select.po index cda7e0979..26a6ecec0 100644 --- a/library/select.po +++ b/library/select.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/selectors.po b/library/selectors.po index 6e0e436bc..cb19a54f7 100644 --- a/library/selectors.po +++ b/library/selectors.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/shelve.po b/library/shelve.po index 2fb7473b2..3c6c6eaad 100644 --- a/library/shelve.po +++ b/library/shelve.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/shlex.po b/library/shlex.po index 2841741c3..3500ec3e1 100644 --- a/library/shlex.po +++ b/library/shlex.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/shutil.po b/library/shutil.po index 997391d8e..0fe19a94a 100644 --- a/library/shutil.po +++ b/library/shutil.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/signal.po b/library/signal.po index 93eaa96da..866fbea71 100644 --- a/library/signal.po +++ b/library/signal.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/site.po b/library/site.po index 5728392be..f18487e96 100644 --- a/library/site.po +++ b/library/site.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/smtpd.po b/library/smtpd.po index 6ae17ea8f..51133daaf 100644 --- a/library/smtpd.po +++ b/library/smtpd.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/smtplib.po b/library/smtplib.po index a99e8426a..283ffb835 100644 --- a/library/smtplib.po +++ b/library/smtplib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/sndhdr.po b/library/sndhdr.po index f74089943..80b052a68 100644 --- a/library/sndhdr.po +++ b/library/sndhdr.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/socket.po b/library/socket.po index 2bd48d882..c570bdffd 100644 --- a/library/socket.po +++ b/library/socket.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/socketserver.po b/library/socketserver.po index 81af70f1b..8acd8e720 100644 --- a/library/socketserver.po +++ b/library/socketserver.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/spwd.po b/library/spwd.po index 156ade8b6..770586a1b 100644 --- a/library/spwd.po +++ b/library/spwd.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/sqlite3.po b/library/sqlite3.po index cb70cd655..f9b6f8df3 100644 --- a/library/sqlite3.po +++ b/library/sqlite3.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/ssl.po b/library/ssl.po index 1e8ac5b26..21e2192cf 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/stat.po b/library/stat.po index 97228e69b..16329e725 100644 --- a/library/stat.po +++ b/library/stat.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/statistics.po b/library/statistics.po index 310c9ed2e..9b144bac8 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/stdtypes.po b/library/stdtypes.po index ad2b9a2f4..87925cb32 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/string.po b/library/string.po index 6bb233241..3ad8a5563 100644 --- a/library/string.po +++ b/library/string.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/stringprep.po b/library/stringprep.po index 477db4192..8e99753c0 100644 --- a/library/stringprep.po +++ b/library/stringprep.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/struct.po b/library/struct.po index e7cf84125..9cea4b1cf 100644 --- a/library/struct.po +++ b/library/struct.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/subprocess.po b/library/subprocess.po index b41cbd153..fec727c78 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/sunau.po b/library/sunau.po index b4520cc05..935b61b40 100644 --- a/library/sunau.po +++ b/library/sunau.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/superseded.po b/library/superseded.po index eca128ec8..5609128b2 100644 --- a/library/superseded.po +++ b/library/superseded.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/symtable.po b/library/symtable.po index 7af3d23c9..4af247913 100644 --- a/library/symtable.po +++ b/library/symtable.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/sys.po b/library/sys.po index 3fe3a189c..ea4d1540a 100644 --- a/library/sys.po +++ b/library/sys.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/sysconfig.po b/library/sysconfig.po index 909de8e12..bfbeeb058 100644 --- a/library/sysconfig.po +++ b/library/sysconfig.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/syslog.po b/library/syslog.po index 6cf68d9d6..cc3fb1573 100644 --- a/library/syslog.po +++ b/library/syslog.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tabnanny.po b/library/tabnanny.po index 3e33134da..a0d54461a 100644 --- a/library/tabnanny.po +++ b/library/tabnanny.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tarfile.po b/library/tarfile.po index 4d0945a27..f3f4de40c 100644 --- a/library/tarfile.po +++ b/library/tarfile.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/telnetlib.po b/library/telnetlib.po index be14dbe9a..d72619849 100644 --- a/library/telnetlib.po +++ b/library/telnetlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tempfile.po b/library/tempfile.po index 4ccac019c..f4f05e782 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/termios.po b/library/termios.po index 3746187d9..021a86b7a 100644 --- a/library/termios.po +++ b/library/termios.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/test.po b/library/test.po index 13cb7fc55..7bc760b2a 100644 --- a/library/test.po +++ b/library/test.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/text.po b/library/text.po index 987b583cc..e95340493 100644 --- a/library/text.po +++ b/library/text.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/textwrap.po b/library/textwrap.po index 159ce02b4..8c750cafc 100644 --- a/library/textwrap.po +++ b/library/textwrap.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/threading.po b/library/threading.po index bb8d652b5..8f3a6ad6d 100644 --- a/library/threading.po +++ b/library/threading.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/time.po b/library/time.po index 08f57ea2f..d52594d15 100644 --- a/library/time.po +++ b/library/time.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/timeit.po b/library/timeit.po index 6cc18928a..670a1eb28 100644 --- a/library/timeit.po +++ b/library/timeit.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tk.po b/library/tk.po index 4992e7d11..4b3f79767 100644 --- a/library/tk.po +++ b/library/tk.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tkinter.colorchooser.po b/library/tkinter.colorchooser.po index d060cfc4b..509724e86 100644 --- a/library/tkinter.colorchooser.po +++ b/library/tkinter.colorchooser.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tkinter.dnd.po b/library/tkinter.dnd.po index 9c177f12a..e348ed1bf 100644 --- a/library/tkinter.dnd.po +++ b/library/tkinter.dnd.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tkinter.font.po b/library/tkinter.font.po index e93e6d4c5..dae4377cc 100644 --- a/library/tkinter.font.po +++ b/library/tkinter.font.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tkinter.messagebox.po b/library/tkinter.messagebox.po index 8bc1e9999..74d64368e 100644 --- a/library/tkinter.messagebox.po +++ b/library/tkinter.messagebox.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tkinter.po b/library/tkinter.po index 19f57b75d..31bd7388c 100644 --- a/library/tkinter.po +++ b/library/tkinter.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tkinter.scrolledtext.po b/library/tkinter.scrolledtext.po index 8ef018ccb..54dd1dedd 100644 --- a/library/tkinter.scrolledtext.po +++ b/library/tkinter.scrolledtext.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tkinter.tix.po b/library/tkinter.tix.po index 46b7c81e8..f75739ca4 100644 --- a/library/tkinter.tix.po +++ b/library/tkinter.tix.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tkinter.ttk.po b/library/tkinter.ttk.po index 036a31454..d91439643 100644 --- a/library/tkinter.ttk.po +++ b/library/tkinter.ttk.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/token.po b/library/token.po index 03edb60cd..9b672b2d3 100644 --- a/library/token.po +++ b/library/token.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tokenize.po b/library/tokenize.po index 003fd1399..f2da80ece 100644 --- a/library/tokenize.po +++ b/library/tokenize.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/trace.po b/library/trace.po index 5830e9518..3ef65f2eb 100644 --- a/library/trace.po +++ b/library/trace.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/traceback.po b/library/traceback.po index 3ff4d91e4..c1333a762 100644 --- a/library/traceback.po +++ b/library/traceback.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tracemalloc.po b/library/tracemalloc.po index 26ef0c012..14cf003ec 100644 --- a/library/tracemalloc.po +++ b/library/tracemalloc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/tty.po b/library/tty.po index cb26f681b..a4a51e01c 100644 --- a/library/tty.po +++ b/library/tty.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/turtle.po b/library/turtle.po index 62d5edfb0..7665106b8 100644 --- a/library/turtle.po +++ b/library/turtle.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/types.po b/library/types.po index f199cd856..841fa0509 100644 --- a/library/types.po +++ b/library/types.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/typing.po b/library/typing.po index 596149de2..045a69f6e 100644 --- a/library/typing.po +++ b/library/typing.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/undoc.po b/library/undoc.po index e5bfabd76..4f1170f5c 100644 --- a/library/undoc.po +++ b/library/undoc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/unicodedata.po b/library/unicodedata.po index 981a2d509..37b8b41fa 100644 --- a/library/unicodedata.po +++ b/library/unicodedata.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/unittest.mock-examples.po b/library/unittest.mock-examples.po index d0ab8e0cd..c91e0b4aa 100644 --- a/library/unittest.mock-examples.po +++ b/library/unittest.mock-examples.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/unittest.mock.po b/library/unittest.mock.po index ac081244c..74a9e4586 100644 --- a/library/unittest.mock.po +++ b/library/unittest.mock.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/unittest.po b/library/unittest.po index 0cb6b2380..0548141c7 100644 --- a/library/unittest.po +++ b/library/unittest.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/unix.po b/library/unix.po index 8c37d3bd5..c47d3e165 100644 --- a/library/unix.po +++ b/library/unix.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/urllib.error.po b/library/urllib.error.po index 0107cb7e9..37ebc0438 100644 --- a/library/urllib.error.po +++ b/library/urllib.error.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/urllib.parse.po b/library/urllib.parse.po index bc7971f3f..f974a90f2 100644 --- a/library/urllib.parse.po +++ b/library/urllib.parse.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/urllib.po b/library/urllib.po index 1ad847686..df2cfba23 100644 --- a/library/urllib.po +++ b/library/urllib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/urllib.request.po b/library/urllib.request.po index 058ab3afa..75cd3be89 100644 --- a/library/urllib.request.po +++ b/library/urllib.request.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/urllib.robotparser.po b/library/urllib.robotparser.po index 08d82a8ee..2aba9e9fa 100644 --- a/library/urllib.robotparser.po +++ b/library/urllib.robotparser.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/uu.po b/library/uu.po index c081e47ce..4c6ffeac0 100644 --- a/library/uu.po +++ b/library/uu.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/uuid.po b/library/uuid.po index e5071f3ed..41e7aedd7 100644 --- a/library/uuid.po +++ b/library/uuid.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/venv.po b/library/venv.po index eca1ba20e..22ea3ce29 100644 --- a/library/venv.po +++ b/library/venv.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/warnings.po b/library/warnings.po index 22033298f..e11b27c95 100644 --- a/library/warnings.po +++ b/library/warnings.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/wave.po b/library/wave.po index 4b0191349..44cd96a50 100644 --- a/library/wave.po +++ b/library/wave.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/weakref.po b/library/weakref.po index 23a8ff6fd..980b69c64 100644 --- a/library/weakref.po +++ b/library/weakref.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/webbrowser.po b/library/webbrowser.po index 9f15bd3d7..dabc1d023 100644 --- a/library/webbrowser.po +++ b/library/webbrowser.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/windows.po b/library/windows.po index 7134790c6..86580cdf3 100644 --- a/library/windows.po +++ b/library/windows.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/winreg.po b/library/winreg.po index 69dcbc320..81a067198 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/winsound.po b/library/winsound.po index 7cd75caea..a15c79aa5 100644 --- a/library/winsound.po +++ b/library/winsound.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/wsgiref.po b/library/wsgiref.po index 0d101ee9c..36ba39b4b 100644 --- a/library/wsgiref.po +++ b/library/wsgiref.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xdrlib.po b/library/xdrlib.po index fec3573cc..0c05a1773 100644 --- a/library/xdrlib.po +++ b/library/xdrlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.dom.minidom.po b/library/xml.dom.minidom.po index 0af1701c8..30c4706d8 100644 --- a/library/xml.dom.minidom.po +++ b/library/xml.dom.minidom.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.dom.po b/library/xml.dom.po index 973e01791..9fb494ac9 100644 --- a/library/xml.dom.po +++ b/library/xml.dom.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.dom.pulldom.po b/library/xml.dom.pulldom.po index 0865e41bc..2f01eac1f 100644 --- a/library/xml.dom.pulldom.po +++ b/library/xml.dom.pulldom.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.etree.elementtree.po b/library/xml.etree.elementtree.po index b972135b9..d0049fd6a 100644 --- a/library/xml.etree.elementtree.po +++ b/library/xml.etree.elementtree.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.po b/library/xml.po index cfc748d3e..66c3b0e56 100644 --- a/library/xml.po +++ b/library/xml.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.sax.handler.po b/library/xml.sax.handler.po index e09ada860..9d0d10e10 100644 --- a/library/xml.sax.handler.po +++ b/library/xml.sax.handler.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.sax.po b/library/xml.sax.po index b3617db7d..091b74444 100644 --- a/library/xml.sax.po +++ b/library/xml.sax.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.sax.reader.po b/library/xml.sax.reader.po index bf5d4d9eb..98341d5e9 100644 --- a/library/xml.sax.reader.po +++ b/library/xml.sax.reader.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xml.sax.utils.po b/library/xml.sax.utils.po index d09ff7566..a2877f0aa 100644 --- a/library/xml.sax.utils.po +++ b/library/xml.sax.utils.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xmlrpc.client.po b/library/xmlrpc.client.po index 1e69a09fb..8671638a9 100644 --- a/library/xmlrpc.client.po +++ b/library/xmlrpc.client.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xmlrpc.po b/library/xmlrpc.po index b0269f64a..7a9393a34 100644 --- a/library/xmlrpc.po +++ b/library/xmlrpc.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/xmlrpc.server.po b/library/xmlrpc.server.po index fe7836c0c..eca365860 100644 --- a/library/xmlrpc.server.po +++ b/library/xmlrpc.server.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/zipapp.po b/library/zipapp.po index 38355979f..8f2cb969c 100644 --- a/library/zipapp.po +++ b/library/zipapp.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/zipfile.po b/library/zipfile.po index b4b77719a..f0fa4f67d 100644 --- a/library/zipfile.po +++ b/library/zipfile.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/zipimport.po b/library/zipimport.po index dbffc41bb..c22addf8b 100644 --- a/library/zipimport.po +++ b/library/zipimport.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/zlib.po b/library/zlib.po index cf9bac4b5..aeda786f6 100644 --- a/library/zlib.po +++ b/library/zlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/library/zoneinfo.po b/library/zoneinfo.po index ab4b9cc41..44515346b 100644 --- a/library/zoneinfo.po +++ b/library/zoneinfo.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/license.po b/license.po index b271a803b..062d4f294 100644 --- a/license.po +++ b/license.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/compound_stmts.po b/reference/compound_stmts.po index c2d33c768..cb0f3df61 100644 --- a/reference/compound_stmts.po +++ b/reference/compound_stmts.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/datamodel.po b/reference/datamodel.po index 2a196efda..c0f16233c 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/executionmodel.po b/reference/executionmodel.po index 34b669db8..40c9f8e5a 100644 --- a/reference/executionmodel.po +++ b/reference/executionmodel.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/expressions.po b/reference/expressions.po index 616ed3be3..1feab8a96 100644 --- a/reference/expressions.po +++ b/reference/expressions.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/grammar.po b/reference/grammar.po index 708107ee9..43657cabc 100644 --- a/reference/grammar.po +++ b/reference/grammar.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/import.po b/reference/import.po index 356b03e78..462a96a0c 100644 --- a/reference/import.po +++ b/reference/import.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/index.po b/reference/index.po index 6b81003c7..54582c8ee 100644 --- a/reference/index.po +++ b/reference/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/introduction.po b/reference/introduction.po index 2dc656312..ec5db5c86 100644 --- a/reference/introduction.po +++ b/reference/introduction.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/lexical_analysis.po b/reference/lexical_analysis.po index c0c56a9e0..90667b853 100644 --- a/reference/lexical_analysis.po +++ b/reference/lexical_analysis.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/simple_stmts.po b/reference/simple_stmts.po index 7cf595c55..4ebcfac71 100644 --- a/reference/simple_stmts.po +++ b/reference/simple_stmts.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/reference/toplevel_components.po b/reference/toplevel_components.po index 904a30cb4..4365e473e 100644 --- a/reference/toplevel_components.po +++ b/reference/toplevel_components.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/sphinx.po b/sphinx.po index 4a3ef59b7..0dc8acf7c 100644 --- a/sphinx.po +++ b/sphinx.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/appendix.po b/tutorial/appendix.po index 4de9513d7..0f9ce3e5e 100644 --- a/tutorial/appendix.po +++ b/tutorial/appendix.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/appetite.po b/tutorial/appetite.po index 332896352..222a2232d 100644 --- a/tutorial/appetite.po +++ b/tutorial/appetite.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/classes.po b/tutorial/classes.po index 329848048..75546b4eb 100644 --- a/tutorial/classes.po +++ b/tutorial/classes.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/controlflow.po b/tutorial/controlflow.po index 3e40e2de1..df2515b56 100644 --- a/tutorial/controlflow.po +++ b/tutorial/controlflow.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/datastructures.po b/tutorial/datastructures.po index faaa76575..8197e37d9 100644 --- a/tutorial/datastructures.po +++ b/tutorial/datastructures.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/errors.po b/tutorial/errors.po index 4ecddca2b..715fbfe16 100644 --- a/tutorial/errors.po +++ b/tutorial/errors.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/floatingpoint.po b/tutorial/floatingpoint.po index b31999d95..c70b76477 100644 --- a/tutorial/floatingpoint.po +++ b/tutorial/floatingpoint.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/index.po b/tutorial/index.po index 7ace8230b..d395c3c9b 100644 --- a/tutorial/index.po +++ b/tutorial/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/inputoutput.po b/tutorial/inputoutput.po index 52c90f6fb..f80ae24a0 100644 --- a/tutorial/inputoutput.po +++ b/tutorial/inputoutput.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/interactive.po b/tutorial/interactive.po index e05b7b3e7..8f01175bd 100644 --- a/tutorial/interactive.po +++ b/tutorial/interactive.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/interpreter.po b/tutorial/interpreter.po index 0899aeb25..1659c45ae 100644 --- a/tutorial/interpreter.po +++ b/tutorial/interpreter.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/introduction.po b/tutorial/introduction.po index acc240621..6d9d90244 100644 --- a/tutorial/introduction.po +++ b/tutorial/introduction.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/modules.po b/tutorial/modules.po index a59a3dc57..ec63926ce 100644 --- a/tutorial/modules.po +++ b/tutorial/modules.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/stdlib.po b/tutorial/stdlib.po index 6536c6c15..7e5a340e0 100644 --- a/tutorial/stdlib.po +++ b/tutorial/stdlib.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/stdlib2.po b/tutorial/stdlib2.po index d93ca2ffa..bc5392ff9 100644 --- a/tutorial/stdlib2.po +++ b/tutorial/stdlib2.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/venv.po b/tutorial/venv.po index c36fb4959..4472d645b 100644 --- a/tutorial/venv.po +++ b/tutorial/venv.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/tutorial/whatnow.po b/tutorial/whatnow.po index 3e4d4ea68..9c18eda16 100644 --- a/tutorial/whatnow.po +++ b/tutorial/whatnow.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/using/cmdline.po b/using/cmdline.po index 5848f331a..c7ce4332c 100644 --- a/using/cmdline.po +++ b/using/cmdline.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/using/configure.po b/using/configure.po index 0deec75c3..117bf98dc 100644 --- a/using/configure.po +++ b/using/configure.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/using/editors.po b/using/editors.po index 74b571068..aa6b703c9 100644 --- a/using/editors.po +++ b/using/editors.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/using/index.po b/using/index.po index dc0cf798a..0130d9cea 100644 --- a/using/index.po +++ b/using/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/using/mac.po b/using/mac.po index 39d8e1185..f0f1c1cfe 100644 --- a/using/mac.po +++ b/using/mac.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/using/unix.po b/using/unix.po index 218b89a57..bfc7a752e 100644 --- a/using/unix.po +++ b/using/unix.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/using/windows.po b/using/windows.po index ba8c72100..c25f45c3d 100644 --- a/using/windows.po +++ b/using/windows.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/2.0.po b/whatsnew/2.0.po index b72c4b21e..25f93dd7b 100644 --- a/whatsnew/2.0.po +++ b/whatsnew/2.0.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/2.1.po b/whatsnew/2.1.po index d12ac7ddb..c6f97ba9c 100644 --- a/whatsnew/2.1.po +++ b/whatsnew/2.1.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/2.2.po b/whatsnew/2.2.po index 2f04e3d95..f2e79d1ad 100644 --- a/whatsnew/2.2.po +++ b/whatsnew/2.2.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/2.3.po b/whatsnew/2.3.po index 30df81aa0..be8676cc3 100644 --- a/whatsnew/2.3.po +++ b/whatsnew/2.3.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/2.4.po b/whatsnew/2.4.po index 291944818..9ce86eb9a 100644 --- a/whatsnew/2.4.po +++ b/whatsnew/2.4.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/2.5.po b/whatsnew/2.5.po index 2ff20f040..25e36a374 100644 --- a/whatsnew/2.5.po +++ b/whatsnew/2.5.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/2.6.po b/whatsnew/2.6.po index b04dc7076..eb74e90aa 100644 --- a/whatsnew/2.6.po +++ b/whatsnew/2.6.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/2.7.po b/whatsnew/2.7.po index 81e699e95..5de60668b 100644 --- a/whatsnew/2.7.po +++ b/whatsnew/2.7.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.0.po b/whatsnew/3.0.po index bd2833bd0..6a8ba7356 100644 --- a/whatsnew/3.0.po +++ b/whatsnew/3.0.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.1.po b/whatsnew/3.1.po index 66afdc466..85fe9268a 100644 --- a/whatsnew/3.1.po +++ b/whatsnew/3.1.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.10.po b/whatsnew/3.10.po index 390a9b38d..dea4bbe9d 100644 --- a/whatsnew/3.10.po +++ b/whatsnew/3.10.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.2.po b/whatsnew/3.2.po index e6b99ced6..b3c99de41 100644 --- a/whatsnew/3.2.po +++ b/whatsnew/3.2.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.3.po b/whatsnew/3.3.po index 4f1d00597..82032caba 100644 --- a/whatsnew/3.3.po +++ b/whatsnew/3.3.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.4.po b/whatsnew/3.4.po index cddb9d58a..b61e6d147 100644 --- a/whatsnew/3.4.po +++ b/whatsnew/3.4.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.5.po b/whatsnew/3.5.po index 389404bd1..d3530a999 100644 --- a/whatsnew/3.5.po +++ b/whatsnew/3.5.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.6.po b/whatsnew/3.6.po index 8f33e9009..1cb6c3005 100644 --- a/whatsnew/3.6.po +++ b/whatsnew/3.6.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.7.po b/whatsnew/3.7.po index 8adb24291..3ab970bb2 100644 --- a/whatsnew/3.7.po +++ b/whatsnew/3.7.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.8.po b/whatsnew/3.8.po index e4fae8377..53960fe6e 100644 --- a/whatsnew/3.8.po +++ b/whatsnew/3.8.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/3.9.po b/whatsnew/3.9.po index e6aad3852..cdbd800d1 100644 --- a/whatsnew/3.9.po +++ b/whatsnew/3.9.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/changelog.po b/whatsnew/changelog.po index e784ab928..4d9fe8485 100644 --- a/whatsnew/changelog.po +++ b/whatsnew/changelog.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" diff --git a/whatsnew/index.po b/whatsnew/index.po index 0ee8e7bf8..f7d010ecc 100644 --- a/whatsnew/index.po +++ b/whatsnew/index.po @@ -1,7 +1,6 @@ -# SOME DESCRIPTIVE TITLE. +# Python Documentation Turkish Translation # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. -# FIRST AUTHOR , YEAR. # #, fuzzy msgid "" From 8b041ed99ef3210fe6966ae35c44aff186519ea5 Mon Sep 17 00:00:00 2001 From: egeakman Date: Tue, 28 Dec 2021 00:23:41 +0300 Subject: [PATCH 14/37] Update library/stdtypes --- about.po | 2 +- bugs.po | 2 +- contents.po | 2 +- copyright.po | 2 +- library/stdtypes.po | 345 ++++++++++++++++++++++++++++++-------------- 5 files changed, 241 insertions(+), 112 deletions(-) diff --git a/about.po b/about.po index 674490dab..eeec38fe9 100644 --- a/about.po +++ b/about.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-12-17 23:20+0300\n" "PO-Revision-Date: 2021-12-17 21:04+0300\n" "Last-Translator: \n" -"Language-Team: TURKISH\n" +"Language-Team: TURKISH \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/bugs.po b/bugs.po index 564f5c8b9..881eff48b 100644 --- a/bugs.po +++ b/bugs.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-12-17 23:20+0300\n" "PO-Revision-Date: 2021-12-17 22:58+0300\n" "Last-Translator: \n" -"Language-Team: TURKISH\n" +"Language-Team: TURKISH \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/contents.po b/contents.po index c419a65c9..9a69b157a 100644 --- a/contents.po +++ b/contents.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-12-17 23:20+0300\n" "PO-Revision-Date: 2021-12-18 21:20+0300\n" "Last-Translator: \n" -"Language-Team: TURKISH\n" +"Language-Team: TURKISH \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/copyright.po b/copyright.po index 5327c38a1..4e6d17d59 100644 --- a/copyright.po +++ b/copyright.po @@ -9,7 +9,7 @@ msgstr "" "POT-Creation-Date: 2021-12-17 23:20+0300\n" "PO-Revision-Date: 2021-12-18 21:27+0300\n" "Last-Translator: \n" -"Language-Team: TURKISH\n" +"Language-Team: TURKISH \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/library/stdtypes.po b/library/stdtypes.po index 87925cb32..42d88e8be 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -2,35 +2,40 @@ # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"PO-Revision-Date: 2021-12-28 00:21+0300\n" +"Last-Translator: \n" +"Language-Team: TURKISH \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" #: library/stdtypes.rst:8 msgid "Built-in Types" -msgstr "" +msgstr "Gömülü Türler" #: library/stdtypes.rst:10 msgid "" "The following sections describe the standard types that are built into the " "interpreter." msgstr "" +"Aşağıdaki bölümlerde, yorumlayıcıda yerleşik olarak yer alan standart türler " +"açıklanmaktadır." #: library/stdtypes.rst:15 msgid "" "The principal built-in types are numerics, sequences, mappings, classes, " "instances and exceptions." msgstr "" +"Başlıca gömülü türler sayısallar, sıralar, eşleşmeler, sınıflar, örnekler ve " +"kural dışı durumlardır." #: library/stdtypes.rst:18 msgid "" @@ -38,6 +43,9 @@ msgid "" "rearrange their members in place, and don't return a specific item, never " "return the collection instance itself but ``None``." msgstr "" +"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, " +"çıkaran veya yeniden düzenleyen ve belirli bir öğe döndürmeyen metotlar, her " +"zaman koleksiyon örneğini değil ``None`` değerini döndürür." #: library/stdtypes.rst:22 msgid "" @@ -47,16 +55,24 @@ msgid "" "slightly different :func:`str` function). The latter function is implicitly " "used when an object is written by the :func:`print` function." msgstr "" +"Bazı işlemler birkaç nesne türü tarafından desteklenir; özellikle, tüm " +"nesneler eşitlik için karşılaştırılabilir, doğruluk değeri için test " +"edilebilir ve bir dizeye dönüştürülebilir (:func:`repr` fonksiyonu veya " +"hafif farklı olan :func:`str` fonksiyonu ile). İkinci işlev, bir nesne :" +"func:`print` ile yazdırıldığında dolaylı olarak kullanılır." #: library/stdtypes.rst:32 msgid "Truth Value Testing" -msgstr "" +msgstr "Doğruluk Değeri Testi" #: library/stdtypes.rst:41 msgid "" "Any object can be tested for truth value, for use in an :keyword:`if` or :" "keyword:`while` condition or as operand of the Boolean operations below." msgstr "" +"Herhangi bir nesne, :keyword:`if` veya :keyword:`while` koşulunda veya " +"aşağıdaki Boolean işlemlerinin işleneni olarak kullanımında doğruluk değeri " +"için test edilebilir." #: library/stdtypes.rst:46 msgid "" @@ -65,22 +81,30 @@ msgid "" "that returns zero, when called with the object. [1]_ Here are most of the " "built-in objects considered false:" msgstr "" +"Varsayılan olarak, bir nesne, sınıfı \"False\" döndüren bir :meth:`__bool__` " +"yöntemini veya nesneyle birlikte çağrıldığında sıfır döndüren bir :meth:" +"`__len__` yöntemini tanımlamadıkça doğru kabul edilir. [1]_ Yanlış olarak " +"kabul edilen yerleşik nesnelerin çoğu:" #: library/stdtypes.rst:55 msgid "constants defined to be false: ``None`` and ``False``." -msgstr "" +msgstr "false olarak tanımlanan sabitler: ``None`` ve ``False``." #: library/stdtypes.rst:57 msgid "" "zero of any numeric type: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, " "``Fraction(0, 1)``" msgstr "" +"herhangi bir sayısal türden sıfır: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, " +"``Fraction(0, 1)``" #: library/stdtypes.rst:60 msgid "" "empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " "``range(0)``" msgstr "" +"boş sıralar ve koleksiyonlar: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " +"``range(0)``" #: library/stdtypes.rst:69 msgid "" @@ -89,95 +113,106 @@ msgid "" "otherwise stated. (Important exception: the Boolean operations ``or`` and " "``and`` always return one of their operands.)" msgstr "" +"Boolean sonucu olan işlemler ve yerleşik işlevler, aksi belirtilmedikçe her " +"zaman false için \"0\" veya \"False\" ve true için \"1\" veya \"True\" " +"döndürür. (Önemli istisna: Boolean işlemleri \"or\" ve \"and\" her zaman " +"işlenenlerinden birini döndürür.)" #: library/stdtypes.rst:78 msgid "Boolean Operations --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not`" -msgstr "" +msgstr "Boolean İşlemleri --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not`" #: library/stdtypes.rst:82 msgid "These are the Boolean operations, ordered by ascending priority:" -msgstr "" +msgstr "Bunlar artan önceliğe göre sıralanmış Boolean işlemleridir:" #: library/stdtypes.rst:143 library/stdtypes.rst:364 library/stdtypes.rst:883 #: library/stdtypes.rst:1078 msgid "Operation" -msgstr "" +msgstr "İşlem" #: library/stdtypes.rst:275 library/stdtypes.rst:414 library/stdtypes.rst:1078 msgid "Result" -msgstr "" +msgstr "Sonuç" #: library/stdtypes.rst:275 library/stdtypes.rst:883 library/stdtypes.rst:2310 #: library/stdtypes.rst:3531 msgid "Notes" -msgstr "" +msgstr "Notlar" #: library/stdtypes.rst:87 msgid "``x or y``" -msgstr "" +msgstr "``x or y``" #: library/stdtypes.rst:87 msgid "if *x* is false, then *y*, else *x*" -msgstr "" +msgstr "*x* yanlışsa, *y*, yoksa *x*" #: library/stdtypes.rst:285 library/stdtypes.rst:888 library/stdtypes.rst:2316 #: library/stdtypes.rst:3537 msgid "\\(1)" -msgstr "" +msgstr "\\(1)" #: library/stdtypes.rst:90 msgid "``x and y``" -msgstr "" +msgstr "``x and y``" #: library/stdtypes.rst:90 msgid "if *x* is false, then *x*, else *y*" -msgstr "" +msgstr "*x* yanlışsa, *x*, yoksa *y*" #: library/stdtypes.rst:288 library/stdtypes.rst:1117 library/stdtypes.rst:2322 #: library/stdtypes.rst:3543 msgid "\\(2)" -msgstr "" +msgstr "\\(2)" #: library/stdtypes.rst:93 msgid "``not x``" -msgstr "" +msgstr "``not x``" #: library/stdtypes.rst:93 msgid "if *x* is false, then ``True``, else ``False``" -msgstr "" +msgstr "*x* yanlışsa, ``True``, değilse ``False``" #: library/stdtypes.rst:897 library/stdtypes.rst:2324 library/stdtypes.rst:2328 #: library/stdtypes.rst:3545 library/stdtypes.rst:3549 #: library/stdtypes.rst:3551 msgid "\\(3)" -msgstr "" +msgstr "\\(3)" #: library/stdtypes.rst:319 library/stdtypes.rst:924 library/stdtypes.rst:2356 #: library/stdtypes.rst:3581 msgid "Notes:" -msgstr "" +msgstr "Notlar:" #: library/stdtypes.rst:105 msgid "" "This is a short-circuit operator, so it only evaluates the second argument " "if the first one is false." msgstr "" +"Bu bir kısa devre operatörüdür, bu nedenle ikinci argümanı yalnızca " +"birincisi yanlışsa değerlendirir." #: library/stdtypes.rst:109 msgid "" "This is a short-circuit operator, so it only evaluates the second argument " "if the first one is true." msgstr "" +"Bu bir kısa devre operatörüdür, bu nedenle sadece ilki doğruysa ikinci " +"argümanı değerlendirir." #: library/stdtypes.rst:113 msgid "" "``not`` has a lower priority than non-Boolean operators, so ``not a == b`` " "is interpreted as ``not (a == b)``, and ``a == not b`` is a syntax error." msgstr "" +"``not`` Boolean olmayan operatörlerden daha düşük bir önceliğe sahiptir, bu " +"nedenle ``not a == b``, ``not (a == b)`` olarak yorumlanır bu sebeple ``a == " +"not b`` bir sözdizimi hatasıdır." #: library/stdtypes.rst:120 msgid "Comparisons" -msgstr "" +msgstr "Karşılaştırmalar" #: library/stdtypes.rst:134 msgid "" @@ -187,79 +222,85 @@ msgid "" "< y and y <= z``, except that *y* is evaluated only once (but in both cases " "*z* is not evaluated at all when ``x < y`` is found to be false)." msgstr "" +"Python'da sekiz karşılaştırma işlemi vardır. Hepsinin önceliği aynıdır " +"(Boolean işlemlerinden daha önceliklidir). Karşılaştırmalar isteğe bağlı " +"olarak zincirlenebilir; örneğin, ``x < y <= z``, ``x < y and y <= z`` ile " +"eşdeğerdir, ancak *y* yalnızca bir kez değerlendirilir (ancak her iki " +"durumda da ``x < y`` yanlış olduğu tespit edildiğinde *z* hiç " +"değerlendirilmez)." #: library/stdtypes.rst:140 msgid "This table summarizes the comparison operations:" -msgstr "" +msgstr "Bu tablo karşılaştırma operatörlerini özetlemektedir:" #: library/stdtypes.rst:2287 library/stdtypes.rst:3508 #: library/stdtypes.rst:3531 msgid "Meaning" -msgstr "" +msgstr "Anlamı" #: library/stdtypes.rst:145 msgid "``<``" -msgstr "" +msgstr "``<``" #: library/stdtypes.rst:145 msgid "strictly less than" -msgstr "" +msgstr "kesinlikle daha az" #: library/stdtypes.rst:147 msgid "``<=``" -msgstr "" +msgstr "``<=``" #: library/stdtypes.rst:147 msgid "less than or equal" -msgstr "" +msgstr "daha az veya eşit" #: library/stdtypes.rst:149 msgid "``>``" -msgstr "" +msgstr "``>``" #: library/stdtypes.rst:149 msgid "strictly greater than" -msgstr "" +msgstr "kesinlikle daha büyük" #: library/stdtypes.rst:151 msgid "``>=``" -msgstr "" +msgstr "``>=``" #: library/stdtypes.rst:151 msgid "greater than or equal" -msgstr "" +msgstr "daha büyük veya eşit" #: library/stdtypes.rst:153 msgid "``==``" -msgstr "" +msgstr "``==``" #: library/stdtypes.rst:153 msgid "equal" -msgstr "" +msgstr "eşit" #: library/stdtypes.rst:155 msgid "``!=``" -msgstr "" +msgstr "``!=``" #: library/stdtypes.rst:155 msgid "not equal" -msgstr "" +msgstr "eşit değil" #: library/stdtypes.rst:157 msgid "``is``" -msgstr "" +msgstr "``is``" #: library/stdtypes.rst:157 msgid "object identity" -msgstr "" +msgstr "nesne kimliği" #: library/stdtypes.rst:159 msgid "``is not``" -msgstr "" +msgstr "``is not``" #: library/stdtypes.rst:159 msgid "negated object identity" -msgstr "" +msgstr "olumsuz nesne kimliği" #: library/stdtypes.rst:166 msgid "" @@ -270,12 +311,20 @@ msgid "" "example, they raise a :exc:`TypeError` exception when one of the arguments " "is a complex number." msgstr "" +"Farklı sayısal türler dışında, farklı türdeki nesneler hiçbir zaman eşit " +"olarak karşılaştırılmaz. ``==`` operatörü her zaman tanımlanır, ancak bazı " +"nesne türleri için (örneğin, sınıf nesneleri) :keyword:`is` ile eşdeğerdir. " +"``<``, ``<=``, ``>`` ve ``>=`` operatörleri yalnızca anlamlı oldukları yerde " +"tanımlanır; örneğin, bağımsız değişkenlerden biri karmaşık bir sayı " +"olduğunda bir :exc:`TypeError` hatası oluştururlar." #: library/stdtypes.rst:180 msgid "" "Non-identical instances of a class normally compare as non-equal unless the " "class defines the :meth:`~object.__eq__` method." msgstr "" +"Normalde, bir sınıfın özdeş olmayan örnekleri, sınıf :meth:`~object.__eq__` " +"yöntemini tanımlamadığı sürece eşit olmayan olarak karşılaştırılır." #: library/stdtypes.rst:183 msgid "" @@ -286,6 +335,12 @@ msgid "" "meth:`~object.__eq__` are sufficient, if you want the conventional meanings " "of the comparison operators)." msgstr "" +"Bir sınıfın örnekleri, sınıf yeterli yöntemleri tanımlamadıkça, aynı sınıfın " +"diğer örneklerine veya diğer nesne türlerine göre sıralanamaz :meth:`~object." +"__lt__`, :meth:`~object.__le__` , :meth:`~object.__gt__` ve :meth:`~object." +"__ge__` (karşılaştırma operatörlerin geleneksel anlamlarını istiyorsanız, :" +"meth:`~object.__lt__` ve :meth:`~object.__eq__` genellikle yeterli " +"olacaktır)." #: library/stdtypes.rst:190 msgid "" @@ -293,6 +348,9 @@ msgid "" "customized; also they can be applied to any two objects and never raise an " "exception." msgstr "" +":keyword:`is` ve :keyword:`is not` operatörlerinin davranışı " +"özelleştirilemez; ayrıca herhangi iki nesneye uygulanabilirler ve asla bir " +"hata oluşturmazlar." #: library/stdtypes.rst:198 msgid "" @@ -300,10 +358,13 @@ msgid "" "keyword:`not in`, are supported by types that are :term:`iterable` or " "implement the :meth:`__contains__` method." msgstr "" +"Aynı sözdizimsel önceliğe sahip iki işlem daha, :keyword:`in` ve :keyword:" +"`not in`, :term:`iterable` olan veya :meth:`__contains__` yöntemini " +"uygulayan türler tarafından desteklenir." #: library/stdtypes.rst:205 msgid "Numeric Types --- :class:`int`, :class:`float`, :class:`complex`" -msgstr "" +msgstr "Sayısal Türler --- :class:`int`, :class:`float`, :class:`complex`" #: library/stdtypes.rst:215 msgid "" @@ -319,6 +380,17 @@ msgid "" "numeric types :mod:`fractions.Fraction`, for rationals, and :mod:`decimal." "Decimal`, for floating-point numbers with user-definable precision.)" msgstr "" +"Üç farklı sayısal tür vardır: :dfn:`integers`, :dfn:`floating point " +"numbers`, ve :dfn:`complex numbers`. Ayrıca, Booleanlar tam sayıların bir " +"alt türüdür. Tam sayıların kesinliği sınırsızdır. Ondalıklı sayılar " +"genellikle C dilinde :c:type:`double` kullanılarak uygulanır; programınızın " +"çalıştığı makine için ondalıklı sayıların kesinliği ve dahili gösterimi " +"hakkında bilgi :data:`sys.float_info` içinde mevcuttur. Karmaşık sayıların " +"her biri bir ondalık sayı olan gerçek ve sanal birer kısımları vardır. Bu " +"parçaları *z* karmaşık sayısından ayıklamak için ``z.real`` ve ``z.imag`` " +"kullanın. (Standart kütüphane, rasyonel sayılar için :mod:`fractions." +"Fraction` ve kullanıcı tarafından tanımlanabilen hassasiyete sahip ondalıklı " +"sayılar için :mod:`decimal.Decimal` ek sayısal türlerini içerir.)" #: library/stdtypes.rst:237 msgid "" @@ -330,8 +402,16 @@ msgid "" "with a zero real part) which you can add to an integer or float to get a " "complex number with real and imaginary parts." msgstr "" +"Sayılar, sayısal değişmezlerle veya, gömülü fonksiyonlar ve operatörlerin " +"sonucu olarak oluşturulur. Sade tamsayı değişmezleri (onaltılı, sekizli ve " +"ikili sayılar dahil) tamsayıları verir. Ondalık nokta veya üs işareti " +"içeren sayısal değişmezler, ondalıklı sayıları verir. Sayısal bir değişmeze " +"``'j'`` veya ``'J'`` eklemek, tam veya ondalıklı bir sayıya eklenince gerçek " +"ve hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " +"üretir." #: library/stdtypes.rst:262 +#, fuzzy msgid "" "Python fully supports mixed arithmetic: when a binary arithmetic operator " "has operands of different numeric types, the operand with the \"narrower\" " @@ -340,189 +420,201 @@ msgid "" "of different types behaves as though the exact values of those numbers were " "being compared. [2]_" msgstr "" +"Python karma aritmetiği tam olarak destekler: herhangi bir ikili aritmetik " +"operatörü farklı sayısal türlerde işlenenlere sahip olduğunda, \"dar\" türe " +"sahip işlenen, tamsayı karmaşık sayıdan daha dar olan ondalıklı sayıdan daha " +"dar olduğu diğerininkine genişletilir. Farklı türlerdeki sayıların " +"karşılaştırılması, bu sayıların tam değerleri karşılaştırılıyormuş gibi " +"davranır. [2]_" #: library/stdtypes.rst:268 msgid "" "The constructors :func:`int`, :func:`float`, and :func:`complex` can be used " "to produce numbers of a specific type." msgstr "" +":func:`int`, :func:`float` ve :func:`complex` yapıcıları belirli bir türde " +"sayılar üretmek için kullanılabilir." #: library/stdtypes.rst:271 msgid "" "All numeric types (except complex) support the following operations (for " "priorities of the operations, see :ref:`operator-summary`):" msgstr "" +"Tüm sayısal türler (karmaşık sayılar hariç) aşağıdaki işlemleri destekler " +"(işlemlerin öncelikleri için bkz. :ref:`operator-summary`):" #: library/stdtypes.rst:275 msgid "Full documentation" -msgstr "" +msgstr "Tam dokümantasyon" #: library/stdtypes.rst:277 msgid "``x + y``" -msgstr "" +msgstr "``x + y``" #: library/stdtypes.rst:277 msgid "sum of *x* and *y*" -msgstr "" +msgstr "*x* ve *y* 'nin toplamı" #: library/stdtypes.rst:279 msgid "``x - y``" -msgstr "" +msgstr "``x - y``" #: library/stdtypes.rst:279 msgid "difference of *x* and *y*" -msgstr "" +msgstr "*x* ve *y* 'nin farkı" #: library/stdtypes.rst:281 msgid "``x * y``" -msgstr "" +msgstr "``x * y``" #: library/stdtypes.rst:281 msgid "product of *x* and *y*" -msgstr "" +msgstr "*x* ve *y* 'nin çarpımı" #: library/stdtypes.rst:283 msgid "``x / y``" -msgstr "" +msgstr "``x / y``" #: library/stdtypes.rst:283 msgid "quotient of *x* and *y*" -msgstr "" +msgstr "*x* 'in *y* 'ye bölümü" #: library/stdtypes.rst:285 msgid "``x // y``" -msgstr "" +msgstr "``x // y``" #: library/stdtypes.rst:285 msgid "floored quotient of *x* and *y*" -msgstr "" +msgstr "*x* ve *y* 'nin kat bölümü" #: library/stdtypes.rst:288 msgid "``x % y``" -msgstr "" +msgstr "``x % y``" #: library/stdtypes.rst:288 msgid "remainder of ``x / y``" -msgstr "" +msgstr "``x / y`` işleminde kalan" #: library/stdtypes.rst:290 msgid "``-x``" -msgstr "" +msgstr "``-x``" #: library/stdtypes.rst:290 msgid "*x* negated" -msgstr "" +msgstr "*x* 'in negatifi" #: library/stdtypes.rst:292 msgid "``+x``" -msgstr "" +msgstr "``+x``" #: library/stdtypes.rst:292 msgid "*x* unchanged" -msgstr "" +msgstr "*x* 'in değişmemişi" #: library/stdtypes.rst:294 msgid "``abs(x)``" -msgstr "" +msgstr "``abs(x)``" #: library/stdtypes.rst:294 msgid "absolute value or magnitude of *x*" -msgstr "" +msgstr "*x* 'in mutlak değeri" #: library/stdtypes.rst:294 msgid ":func:`abs`" -msgstr "" +msgstr ":func:`abs`" #: library/stdtypes.rst:297 msgid "``int(x)``" -msgstr "" +msgstr "``int(x)``" #: library/stdtypes.rst:297 msgid "*x* converted to integer" -msgstr "" +msgstr "*x* 'in integer tamsayıya (integer) dönüştürülmüş hali" #: library/stdtypes.rst:297 msgid "\\(3)\\(6)" -msgstr "" +msgstr "\\(3)\\(6)" #: library/stdtypes.rst:297 msgid ":func:`int`" -msgstr "" +msgstr ":func:`int`" #: library/stdtypes.rst:299 msgid "``float(x)``" -msgstr "" +msgstr "``float(x)``" #: library/stdtypes.rst:299 msgid "*x* converted to floating point" -msgstr "" +msgstr "*x* 'in ondalıklı sayıya (float) dönüştürülmüş hali" #: library/stdtypes.rst:299 msgid "\\(4)\\(6)" -msgstr "" +msgstr "\\(4)\\(6)" #: library/stdtypes.rst:299 msgid ":func:`float`" -msgstr "" +msgstr ":func:`float`" #: library/stdtypes.rst:301 msgid "``complex(re, im)``" -msgstr "" +msgstr "``complex(re, im)``" #: library/stdtypes.rst:301 msgid "" "a complex number with real part *re*, imaginary part *im*. *im* defaults to " "zero." msgstr "" +"gerçek kısmı *re*, sanal kısmı *im* olan bir karmaşık sayı. *im* varsayılan " +"olarak sıfırdır." #: library/stdtypes.rst:1110 library/stdtypes.rst:3568 msgid "\\(6)" -msgstr "" +msgstr "\\(6)" #: library/stdtypes.rst:301 msgid ":func:`complex`" -msgstr "" +msgstr ":func:`complex`" #: library/stdtypes.rst:305 msgid "``c.conjugate()``" -msgstr "" +msgstr "``c.conjugate()``" #: library/stdtypes.rst:305 msgid "conjugate of the complex number *c*" -msgstr "" +msgstr "*c* karmaşık sayısının eşleniği" #: library/stdtypes.rst:308 msgid "``divmod(x, y)``" -msgstr "" +msgstr "``divmod(x, y)``" #: library/stdtypes.rst:308 msgid "the pair ``(x // y, x % y)``" -msgstr "" +msgstr "``(x // y, x % y)`` ifadesinin ikilisi" #: library/stdtypes.rst:308 msgid ":func:`divmod`" -msgstr "" +msgstr ":func:`divmod`" #: library/stdtypes.rst:310 msgid "``pow(x, y)``" -msgstr "" +msgstr "``pow(x, y)``" #: library/stdtypes.rst:312 msgid "*x* to the power *y*" -msgstr "" +msgstr "*x* üzeri *y*" #: library/stdtypes.rst:312 library/stdtypes.rst:1102 library/stdtypes.rst:2346 #: library/stdtypes.rst:3564 library/stdtypes.rst:3571 msgid "\\(5)" -msgstr "" +msgstr "\\(5)" #: library/stdtypes.rst:310 msgid ":func:`pow`" -msgstr "" +msgstr ":func:`pow`" #: library/stdtypes.rst:312 msgid "``x ** y``" -msgstr "" +msgstr "``x ** y``" #: library/stdtypes.rst:322 msgid "" @@ -531,12 +623,18 @@ msgid "" "always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is " "``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``." msgstr "" +"Tamsayılı bölümü olarak da adlandırılır. Elde edilen değer bir tamsayıdır, " +"ancak sonucun türü her zaman int olmayabilir. Sonuç her zaman eksi sonsuza " +"yuvarlanır: ``1//2`` = ``0``, ``(-1)//2`` = ``-1``, ``1//(-2)`` = ``-1``, ve " +"``(-1)//(-2)`` = ``0``." #: library/stdtypes.rst:328 msgid "" "Not for complex numbers. Instead convert to floats using :func:`abs` if " "appropriate." msgstr "" +"Karmaşık sayılar için değil. Bunun yerine uygunsa :func:`abs` kullanarak " +"ondalıklı sayılara dönüştürün." #: library/stdtypes.rst:340 msgid "" @@ -544,80 +642,101 @@ msgid "" "functions :func:`math.floor` and :func:`math.ceil` for well-defined " "conversions." msgstr "" +"Ondalıklı sayının (float) tam sayıya (integer) dönüştürülmesi, C dilinde de " +"olduğu gibi sayının yuvarlanmasına veya kırpılmasına sebep olabilir; iyi " +"tanımlanmış dönüşümler için :func:`math.floor` ve :func:`math.ceil` " +"fonksiyonlarına bakın." #: library/stdtypes.rst:345 +#, fuzzy msgid "" "float also accepts the strings \"nan\" and \"inf\" with an optional prefix " "\"+\" or \"-\" for Not a Number (NaN) and positive or negative infinity." msgstr "" +"float ayrıca \"nan\" ve \"inf\" dizelerini, Sayı Değil ( Not a Number -> " +"NaN) ve pozitif veya negatif sonsuzluk için isteğe bağlı bir \"+\" veya \"-" +"\" ön ekiyle kabul eder." #: library/stdtypes.rst:349 msgid "" "Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for " "programming languages." msgstr "" +"Python, diğer programlama dillerinde de olduğu gibi ``pow(0, 0)`` = ``1`` ve " +"``0 ** 0`` = ``1`` şeklinde tanımlar." #: library/stdtypes.rst:353 msgid "" "The numeric literals accepted include the digits ``0`` to ``9`` or any " "Unicode equivalent (code points with the ``Nd`` property)." msgstr "" +"Kabul edilen sayısal değişmezler, ``0`` ile ``9`` arasındaki rakamları veya " +"herhangi bir Unicode eşdeğerini (\"Nd\" özelliğine sahip kod noktaları) " +"içerir." #: library/stdtypes.rst:356 msgid "" "See https://www.unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType." "txt for a complete list of code points with the ``Nd`` property." msgstr "" +"``Nd`` özelliğine sahip kod noktalarının tam listesi için https://www." +"unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType.txt adresine " +"bakın." #: library/stdtypes.rst:360 msgid "" "All :class:`numbers.Real` types (:class:`int` and :class:`float`) also " "include the following operations:" msgstr "" +"Tüm :class:`numbers.Real` türleri (:class:`int` ve :class:`float`) ayrıca " +"aşağıdaki işlemleri içerir:" #: library/stdtypes.rst:366 msgid ":func:`math.trunc(\\ x) `" -msgstr "" +msgstr ":func:`math.trunc(\\ x) `" #: library/stdtypes.rst:366 msgid "*x* truncated to :class:`~numbers.Integral`" -msgstr "" +msgstr "*x* :class:`~numbers.Integral` şeklinde kısaltıldı" #: library/stdtypes.rst:369 msgid ":func:`round(x[, n]) `" -msgstr "" +msgstr ":func:`round(x[, n]) `" #: library/stdtypes.rst:369 msgid "" "*x* rounded to *n* digits, rounding half to even. If *n* is omitted, it " "defaults to 0." msgstr "" +"*x* *n* haneye yuvarlanır, yarıdan çifte yuvarlanır. *n* atlanırsa, *n* " +"varsayılan olarak 0 olur." #: library/stdtypes.rst:373 msgid ":func:`math.floor(\\ x) `" -msgstr "" +msgstr ":func:`math.floor(\\ x) `" #: library/stdtypes.rst:373 msgid "the greatest :class:`~numbers.Integral` <= *x*" -msgstr "" +msgstr "en büyük :class:`~numbers.Integral` <= *x*" #: library/stdtypes.rst:376 msgid ":func:`math.ceil(x) `" -msgstr "" +msgstr ":func:`math.ceil(x) `" #: library/stdtypes.rst:376 msgid "the least :class:`~numbers.Integral` >= *x*" -msgstr "" +msgstr "en küçük :class:`~numbers.Integral` >= *x*" #: library/stdtypes.rst:380 msgid "" "For additional numeric operations see the :mod:`math` and :mod:`cmath` " "modules." msgstr "" +"Ek sayısal işlemler için :mod:`math` ve :mod:`cmath` modüllerine bakın." #: library/stdtypes.rst:389 msgid "Bitwise Operations on Integer Types" -msgstr "" +msgstr "Tamsayı Türlerinde Bit Düzeyinde İşlemler" #: library/stdtypes.rst:403 msgid "" @@ -625,6 +744,9 @@ msgid "" "operations is calculated as though carried out in two's complement with an " "infinite number of sign bits." msgstr "" +"Bit düzeyinde işlemler yalnızca tamsayılar için anlamlıdır. Bit düzeyinde " +"işlemlerin sonucu, sonsuz sayıda işaret biti ile ikiye tümleyende " +"gerçekleştiriliyormuş gibi hesaplanır." #: library/stdtypes.rst:407 msgid "" @@ -633,86 +755,93 @@ msgid "" "``~`` has the same priority as the other unary numeric operations (``+`` and " "``-``)." msgstr "" +"İkili bit düzeyinde işlemlerin öncelikleri, sayısal işlemlerden daha düşük " +"ve karşılaştırmalardan daha yüksektir; ``~`` tekli işlemidiğer tekli sayısal " +"işlemlerle (``+`` ve ``-``) aynı önceliğe sahiptir." #: library/stdtypes.rst:411 msgid "This table lists the bitwise operations sorted in ascending priority:" msgstr "" +"Bu tablo, artan önceliğe göre sıralanmış bit düzeyinde işlemleri listeler:" #: library/stdtypes.rst:416 msgid "``x | y``" -msgstr "" +msgstr "``x | y``" #: library/stdtypes.rst:416 msgid "bitwise :dfn:`or` of *x* and *y*" -msgstr "" +msgstr "bit düzeyinde *x* :dfn:`or` *y*" #: library/stdtypes.rst:419 library/stdtypes.rst:1123 library/stdtypes.rst:2336 #: library/stdtypes.rst:3557 msgid "\\(4)" -msgstr "" +msgstr "\\(4)" #: library/stdtypes.rst:419 msgid "``x ^ y``" -msgstr "" +msgstr "``x ^ y``" #: library/stdtypes.rst:419 msgid "bitwise :dfn:`exclusive or` of *x* and *y*" -msgstr "" +msgstr "bit düzeyinde *x* :dfn:`exclusive or` *y*" #: library/stdtypes.rst:422 msgid "``x & y``" -msgstr "" +msgstr "``x & y``" #: library/stdtypes.rst:422 msgid "bitwise :dfn:`and` of *x* and *y*" -msgstr "" +msgstr "bit düzeyinde *x* :dfn:`and` *y*" #: library/stdtypes.rst:425 msgid "``x << n``" -msgstr "" +msgstr "``x << n``" #: library/stdtypes.rst:425 msgid "*x* shifted left by *n* bits" -msgstr "" +msgstr "*x*, *n* bit kadar sola kaydırıldı" #: library/stdtypes.rst:425 msgid "(1)(2)" -msgstr "" +msgstr "(1)(2)" #: library/stdtypes.rst:427 msgid "``x >> n``" -msgstr "" +msgstr "``x >> n``" #: library/stdtypes.rst:427 msgid "*x* shifted right by *n* bits" -msgstr "" +msgstr "*x*, *n* bit kadar sağa kaydırıldı" #: library/stdtypes.rst:427 msgid "(1)(3)" -msgstr "" +msgstr "(1)(3)" #: library/stdtypes.rst:429 msgid "``~x``" -msgstr "" +msgstr "``~x``" #: library/stdtypes.rst:429 msgid "the bits of *x* inverted" -msgstr "" +msgstr "*x* 'in bitleri ters çevrildi" #: library/stdtypes.rst:435 msgid "" "Negative shift counts are illegal and cause a :exc:`ValueError` to be raised." msgstr "" +"Negatif kaydırma sayıları geçersizdir ve :exc:`ValueError` hatasına sebep " +"olur." #: library/stdtypes.rst:438 msgid "" "A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``." -msgstr "" +msgstr "*n* bitlik sola kaydırma, ``pow(2, n)`` ile çarpmaya eşdeğerdir." #: library/stdtypes.rst:441 msgid "" "A right shift by *n* bits is equivalent to floor division by ``pow(2, n)``." msgstr "" +"*n* bitlik sağa kaydırma, ``pow(2, n)`` ile kat bölümü işlemine eşdeğerdir." #: library/stdtypes.rst:444 msgid "" From be56963397c8a843c49757c79779565f2d176f52 Mon Sep 17 00:00:00 2001 From: egeakman Date: Fri, 31 Dec 2021 01:38:21 +0300 Subject: [PATCH 15/37] Update stdtypes.po --- library/stdtypes.po | 91 ++++++++++++++++++++++++++++++++++----------- 1 file changed, 70 insertions(+), 21 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 42d88e8be..4b2ed0444 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2021-12-28 00:21+0300\n" +"PO-Revision-Date: 2021-12-31 00:46+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -34,7 +34,7 @@ msgid "" "The principal built-in types are numerics, sequences, mappings, classes, " "instances and exceptions." msgstr "" -"Başlıca gömülü türler sayısallar, sıralar, eşleşmeler, sınıflar, örnekler ve " +"Başlıca gömülü türler sayısallar, diziler, eşleşmeler, sınıflar, örnekler ve " "kural dışı durumlardır." #: library/stdtypes.rst:18 @@ -103,7 +103,7 @@ msgid "" "empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " "``range(0)``" msgstr "" -"boş sıralar ve koleksiyonlar: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " +"boş diziler ve koleksiyonlar: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " "``range(0)``" #: library/stdtypes.rst:69 @@ -146,7 +146,7 @@ msgstr "``x or y``" #: library/stdtypes.rst:87 msgid "if *x* is false, then *y*, else *x*" -msgstr "*x* yanlışsa, *y*, yoksa *x*" +msgstr "*x* yanlışsa, *y*, aksi halde *x*" #: library/stdtypes.rst:285 library/stdtypes.rst:888 library/stdtypes.rst:2316 #: library/stdtypes.rst:3537 @@ -159,7 +159,7 @@ msgstr "``x and y``" #: library/stdtypes.rst:90 msgid "if *x* is false, then *x*, else *y*" -msgstr "*x* yanlışsa, *x*, yoksa *y*" +msgstr "*x* yanlışsa, *x*, aksi halde *y*" #: library/stdtypes.rst:288 library/stdtypes.rst:1117 library/stdtypes.rst:2322 #: library/stdtypes.rst:3543 @@ -172,7 +172,7 @@ msgstr "``not x``" #: library/stdtypes.rst:93 msgid "if *x* is false, then ``True``, else ``False``" -msgstr "*x* yanlışsa, ``True``, değilse ``False``" +msgstr "*x* yanlışsa, ``True``, aksi halde ``False``" #: library/stdtypes.rst:897 library/stdtypes.rst:2324 library/stdtypes.rst:2328 #: library/stdtypes.rst:3545 library/stdtypes.rst:3549 @@ -382,14 +382,14 @@ msgid "" msgstr "" "Üç farklı sayısal tür vardır: :dfn:`integers`, :dfn:`floating point " "numbers`, ve :dfn:`complex numbers`. Ayrıca, Booleanlar tam sayıların bir " -"alt türüdür. Tam sayıların kesinliği sınırsızdır. Ondalıklı sayılar " +"alt türüdür. Tam sayıların kesinliği sınırsızdır. Gerçel sayılar " "genellikle C dilinde :c:type:`double` kullanılarak uygulanır; programınızın " -"çalıştığı makine için ondalıklı sayıların kesinliği ve dahili gösterimi " +"çalıştığı makine için gerçel sayıların kesinliği ve dahili gösterimi " "hakkında bilgi :data:`sys.float_info` içinde mevcuttur. Karmaşık sayıların " -"her biri bir ondalık sayı olan gerçek ve sanal birer kısımları vardır. Bu " +"her biri bir gerçel sayı olan gerçek ve sanal birer kısımları vardır. Bu " "parçaları *z* karmaşık sayısından ayıklamak için ``z.real`` ve ``z.imag`` " "kullanın. (Standart kütüphane, rasyonel sayılar için :mod:`fractions." -"Fraction` ve kullanıcı tarafından tanımlanabilen hassasiyete sahip ondalıklı " +"Fraction` ve kullanıcı tarafından tanımlanabilen hassasiyete sahip gerçel " "sayılar için :mod:`decimal.Decimal` ek sayısal türlerini içerir.)" #: library/stdtypes.rst:237 @@ -405,8 +405,8 @@ msgstr "" "Sayılar, sayısal değişmezlerle veya, gömülü fonksiyonlar ve operatörlerin " "sonucu olarak oluşturulur. Sade tamsayı değişmezleri (onaltılı, sekizli ve " "ikili sayılar dahil) tamsayıları verir. Ondalık nokta veya üs işareti " -"içeren sayısal değişmezler, ondalıklı sayıları verir. Sayısal bir değişmeze " -"``'j'`` veya ``'J'`` eklemek, tam veya ondalıklı bir sayıya eklenince gerçek " +"içeren sayısal değişmezler, gerçel sayıları verir. Sayısal bir değişmeze " +"``'j'`` veya ``'J'`` eklemek, tam veya gerçel bir sayıya eklenince gerçek " "ve hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " "üretir." @@ -422,7 +422,7 @@ msgid "" msgstr "" "Python karma aritmetiği tam olarak destekler: herhangi bir ikili aritmetik " "operatörü farklı sayısal türlerde işlenenlere sahip olduğunda, \"dar\" türe " -"sahip işlenen, tamsayı karmaşık sayıdan daha dar olan ondalıklı sayıdan daha " +"sahip işlenen, tamsayı karmaşık sayıdan daha dar olan gerçel sayıdan daha " "dar olduğu diğerininkine genişletilir. Farklı türlerdeki sayıların " "karşılaştırılması, bu sayıların tam değerleri karşılaştırılıyormuş gibi " "davranır. [2]_" @@ -545,7 +545,7 @@ msgstr "``float(x)``" #: library/stdtypes.rst:299 msgid "*x* converted to floating point" -msgstr "*x* 'in ondalıklı sayıya (float) dönüştürülmüş hali" +msgstr "*x* 'in gerçel sayıya (float) dönüştürülmüş hali" #: library/stdtypes.rst:299 msgid "\\(4)\\(6)" @@ -634,7 +634,7 @@ msgid "" "appropriate." msgstr "" "Karmaşık sayılar için değil. Bunun yerine uygunsa :func:`abs` kullanarak " -"ondalıklı sayılara dönüştürün." +"gerçel sayılara dönüştürün." #: library/stdtypes.rst:340 msgid "" @@ -642,7 +642,7 @@ msgid "" "functions :func:`math.floor` and :func:`math.ceil` for well-defined " "conversions." msgstr "" -"Ondalıklı sayının (float) tam sayıya (integer) dönüştürülmesi, C dilinde de " +"Gerçel sayının (float) tam sayıya (integer) dönüştürülmesi, C dilinde de " "olduğu gibi sayının yuvarlanmasına veya kırpılmasına sebep olabilir; iyi " "tanımlanmış dönüşümler için :func:`math.floor` ve :func:`math.ceil` " "fonksiyonlarına bakın." @@ -850,24 +850,33 @@ msgid "" "bit_length(), y.bit_length())`` or more) is sufficient to get the same " "result as if there were an infinite number of sign bits." msgstr "" +"Bu hesaplamaları, sonlu ikinin tümleyen temsilinde en az bir ekstra işaret " +"uzatma biti ile yapmak ( ``1 + max(x.bit_length(), y.bit_length())`` veya " +"daha fazla çalışan bit genişliği), sonsuz sayıda işaret biti varmış gibi " +"aynı sonucu elde etmek için yeterlidir." #: library/stdtypes.rst:451 msgid "Additional Methods on Integer Types" -msgstr "" +msgstr "Integer (Tam sayı) Türlerinde Ek Metotlar" #: library/stdtypes.rst:453 msgid "" "The int type implements the :class:`numbers.Integral` :term:`abstract base " "class`. In addition, it provides a few more methods:" msgstr "" +"Int türü, :class:`numbers.Integral` :term:`abstract base class` 'ı uygular. " +"Ek olarak, birkaç metot daha sağlar:" #: library/stdtypes.rst:458 msgid "" "Return the number of bits necessary to represent an integer in binary, " "excluding the sign and leading zeros::" msgstr "" +"İşaret ve baştaki sıfırlar hariç, ikili sistemde bir tamsayıyı (integer) " +"temsil etmek için gereken bit sayısını döndürür::" #: library/stdtypes.rst:467 +#, fuzzy msgid "" "More precisely, if ``x`` is nonzero, then ``x.bit_length()`` is the unique " "positive integer ``k`` such that ``2**(k-1) <= abs(x) < 2**k``. " @@ -875,26 +884,35 @@ msgid "" "logarithm, then ``k = 1 + int(log(abs(x), 2))``. If ``x`` is zero, then ``x." "bit_length()`` returns ``0``." msgstr "" +"Daha doğrusu, ``x`` sıfırdan farklıysa, ``x.bit_length()``, ``2**(k-1) <= " +"abs(x) < 2**k`` olacak şekilde benzersiz ``k`` pozitif tamsayıdır. Aynı " +"şekilde, ``abs(x)`` doğru olarak yuvarlatılmış bir logaritmaya sahip olacak " +"kadar küçük olduğunda, ``k = 1 + int(log(abs(x), 2))`` olur. ``x`` sıfır " +"ise, ``x.bit_length()``, ``0`` döndürür." #: library/stdtypes.rst:496 msgid "Equivalent to::" -msgstr "" +msgstr "Eşittir::" #: library/stdtypes.rst:484 msgid "" "Return the number of ones in the binary representation of the absolute value " "of the integer. This is also known as the population count. Example::" msgstr "" +"Tamsayının mutlak değerinin ikili gösterimindeki birlerin sayısını döndürün. " +"Buna nüfus sayımı da denir. Örneğin::" #: library/stdtypes.rst:505 msgid "Return an array of bytes representing an integer." -msgstr "" +msgstr "Bir tamsayıyı temsil eden bir bayt dizisi döndürür." #: library/stdtypes.rst:517 msgid "" "The integer is represented using *length* bytes. An :exc:`OverflowError` is " "raised if the integer is not representable with the given number of bytes." msgstr "" +"Tam sayı, *length* bayt kullanılarak temsil edilir. Tamsayı verilen bayt " +"sayısıyla gösterilemezse :exc:`OverflowError` hatası ortaya çıkar." #: library/stdtypes.rst:553 msgid "" @@ -905,6 +923,11 @@ msgid "" "byte order of the host system, use :data:`sys.byteorder` as the byte order " "value." msgstr "" +"*byteorder* argümanı, tamsayıyı temsil etmek için kullanılan bayt sırasını " +"belirler. *byteorder* ``\"big\"`` ise, en önemli bayt, bayt dizisinin " +"başındadır. *byteorder* ``\"little\"`` ise, en önemli bayt, bayt dizisinin " +"sonundadır. Ana sistemin yerel bayt sırasını istemek için bayt sırası değeri " +"olarak :data:`sys.byteorder` kullanın." #: library/stdtypes.rst:528 msgid "" @@ -913,22 +936,31 @@ msgid "" "given, an :exc:`OverflowError` is raised. The default value for *signed* is " "``False``." msgstr "" +"*signed* argümanı, tamsayıyı temsil etmek için ikinin tümleyeninin " +"kullanılıp kullanılmayacağını belirler. *signed* ``False`` ise ve negatif " +"bir tamsayı verilirse, bir :exc:`OverflowError` hatası ortaya çıkar. " +"*signed* için varsayılan değer ``False`` şeklindedir." #: library/stdtypes.rst:537 msgid "Return the integer represented by the given array of bytes." -msgstr "" +msgstr "Verilen bayt dizisi tarafından temsil edilen tamsayıyı döndürür." #: library/stdtypes.rst:550 +#, fuzzy msgid "" "The argument *bytes* must either be a :term:`bytes-like object` or an " "iterable producing bytes." msgstr "" +"*bytes* argümanı ya bir :term:`bytes-like object` ya da yinelenebilir üreten " +"bayt olabilir." #: library/stdtypes.rst:560 msgid "" "The *signed* argument indicates whether two's complement is used to " "represent the integer." msgstr "" +"*signed* bağımsız değişkeni, tamsayıyı temsil etmek için ikinin tümleyeninin " +"kullanılıp kullanılmadığını gösterir." #: library/stdtypes.rst:567 msgid "" @@ -937,16 +969,21 @@ msgid "" "(whole numbers) is always the integer as the numerator and ``1`` as the " "denominator." msgstr "" +"Oranı, orijinal tam sayıya tam olarak eşit ve pozitif bir paydaya sahip bir " +"tam sayı çifti döndürür. Integerlerin tamsayı oranı her zaman pay olarak tam " +"sayı ve payda olarak ``1``dir." #: library/stdtypes.rst:575 msgid "Additional Methods on Float" -msgstr "" +msgstr "Gerçel Sayılarda Ek Metotlar" #: library/stdtypes.rst:577 msgid "" "The float type implements the :class:`numbers.Real` :term:`abstract base " "class`. float also has the following additional methods." msgstr "" +"Float türü, :class:`numbers.Real` :term:`abstract base class` 'ı uygular. " +"Float ayrıca aşağıdaki ek metotlara sahiptir." #: library/stdtypes.rst:582 msgid "" @@ -954,12 +991,17 @@ msgid "" "and with a positive denominator. Raises :exc:`OverflowError` on infinities " "and a :exc:`ValueError` on NaNs." msgstr "" +"Oranı tam olarak orijinal gerçel sayıya eşit ve pozitif bir paydaya sahip " +"bir çift tamsayı döndürür. Sonsuzluklarda :exc `OverflowError` ve NaN'lerde " +"(SayıDeğil) :exc:`ValueError` hataları ortaya çıkar." #: library/stdtypes.rst:589 msgid "" "Return ``True`` if the float instance is finite with integral value, and " "``False`` otherwise::" msgstr "" +"Float örneği integral değeriyle sonluysa ``True``, aksi takdirde ``False`` " +"döndürür::" #: library/stdtypes.rst:597 msgid "" @@ -970,6 +1012,13 @@ msgid "" "of floating-point numbers. This can be useful when debugging, and in " "numerical work." msgstr "" +"İki yöntem, onaltılık dizelere dönüştürmeyi destekler. Python'un floatları " +"dahili olarak ikili sayılar olarak depolandığından, bir kayan noktayı " +"*decimal* (ondalık) dizgeye dönüştürmek veya bu karakter dizisinden " +"dönüştürmek genellikle küçük bir yuvarlama hatası içerir. Buna karşılık, " +"onaltılık diziler, gerçel sayıların tam olarak gösterilmesine ve " +"belirtilmesine izin verir. Bu, hata ayıklama sırasında ve sayısal " +"çalışmalarda yararlı olabilir." #: library/stdtypes.rst:608 msgid "" From 362a1976ef61dd9b1423438325130098ed7b8fff Mon Sep 17 00:00:00 2001 From: egeakman Date: Sat, 1 Jan 2022 02:25:14 +0300 Subject: [PATCH 16/37] wrap library/stdtypes.po --- library/stdtypes.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 4b2ed0444..34b737654 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -406,8 +406,8 @@ msgstr "" "sonucu olarak oluşturulur. Sade tamsayı değişmezleri (onaltılı, sekizli ve " "ikili sayılar dahil) tamsayıları verir. Ondalık nokta veya üs işareti " "içeren sayısal değişmezler, gerçel sayıları verir. Sayısal bir değişmeze " -"``'j'`` veya ``'J'`` eklemek, tam veya gerçel bir sayıya eklenince gerçek " -"ve hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " +"``'j'`` veya ``'J'`` eklemek, tam veya gerçel bir sayıya eklenince gerçek ve " +"hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " "üretir." #: library/stdtypes.rst:262 From 0a1e95207bdad053e5956786cdf6c4f7ab52b7eb Mon Sep 17 00:00:00 2001 From: egeakman Date: Fri, 4 Feb 2022 03:31:29 +0300 Subject: [PATCH 17/37] translate more --- library/stdtypes.po | 74 ++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 69 insertions(+), 5 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 34b737654..b1eb7da69 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2021-12-31 00:46+0300\n" +"PO-Revision-Date: 2022-02-04 03:30+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -1026,24 +1026,32 @@ msgid "" "For finite floating-point numbers, this representation will always include a " "leading ``0x`` and a trailing ``p`` and exponent." msgstr "" +"Bir gerçel sayının temsilini, onaltılık bir dize olarak döndürür. Sonlu " +"gerçel sayılar için, bu gösterim her zaman başında bir ``0x`` ve sonunda bir " +"``p`` ve üs içerecektir." #: library/stdtypes.rst:616 msgid "" "Class method to return the float represented by a hexadecimal string *s*. " "The string *s* may have leading and trailing whitespace." msgstr "" +"Gerçel sayıyı temsil eden bir onaltılık dize *s*'yi döndüren için sınıf " +"(class) metodu. *s* dizesinin başında ve sonunda boşluk olabilir." #: library/stdtypes.rst:621 msgid "" "Note that :meth:`float.hex` is an instance method, while :meth:`float." "fromhex` is a class method." msgstr "" +":meth:`float.hex` 'in bir örnek (instance) metodu olduğunu, :meth:`float." +"fromhex` 'in ise bir sınıf (class) metodu olduğunu unutmayın." #: library/stdtypes.rst:624 msgid "A hexadecimal string takes the form::" -msgstr "" +msgstr "Onaltılık bir dize şu biçimi alır::" #: library/stdtypes.rst:628 +#, fuzzy msgid "" "where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and " "``fraction`` are strings of hexadecimal digits, and ``exponent`` is a " @@ -1056,6 +1064,16 @@ msgid "" "by C's ``%a`` format character or Java's ``Double.toHexString`` are accepted " "by :meth:`float.fromhex`." msgstr "" +"burada opsiyonel ``işaret``, ``+`` veya ``-`` olabilir; ``tamsayı`` ve " +"``kesir`` onaltılı basamaklı dizelerdir; ``üs`` opsiyonel ön işaretle " +"birlikte ondalık tamsayıdır. Büyük/küçük harf önemli değildir ve tamsayı " +"veya kesirde en az bir onaltılık basamak olmalıdır. Bu sözdizimi, C99 " +"standardının 6.4.4.2 bölümünde belirtilen sözdizimine ve ayrıca Java 1.5'ten " +"itibaren kullanılan sözdizimine benzer. Özellikle, :meth:`float.hex` 'in " +"çıktısı, C veya Java kodunda bir onaltılık gerçel değişmezi olarak " +"kullanılabilir ve C'nin ``%a`` biçim karakteri veya Java'nın ``Double." +"toHexString`` 'i tarafından üretilen onaltılık dizeler :meth:`float.fromhex` " +"tarafından kabul edilir." #: library/stdtypes.rst:641 msgid "" @@ -1064,16 +1082,22 @@ msgid "" "example, the hexadecimal string ``0x3.a7p10`` represents the floating-point " "number ``(3 + 10./16 + 7./16**2) * 2.0**10``, or ``3740.0``::" msgstr "" +"Üssün onaltılık değil ondalık olarak yazıldığına ve katsayıyı çarpmak için " +"2'nin gücünü verdiğine dikkat edin. Örneğin, ``0x3.a7p10`` onaltılık dizesi, " +"``(3 + 10./16 + 7./16**2) * 2.0**10`` veya ``3740.0`` gerçel sayısını temsil " +"eder::" #: library/stdtypes.rst:651 msgid "" "Applying the reverse conversion to ``3740.0`` gives a different hexadecimal " "string representing the same number::" msgstr "" +"``3740.0`` 'a ters dönüştürme uygulamak, aynı sayıyı temsil eden farklı bir " +"onaltılık dize verir::" #: library/stdtypes.rst:661 msgid "Hashing of numeric types" -msgstr "" +msgstr "Sayısal türlerin hashlemesi" #: library/stdtypes.rst:663 msgid "" @@ -1090,16 +1114,28 @@ msgid "" "value of ``P`` is made available to Python as the :attr:`modulus` attribute " "of :data:`sys.hash_info`." msgstr "" +"Muhtemelen farklı türlerdeki ``x`` ve ``y`` sayıları için, ``x == y`` " +"olduğunda ``hash(x) == hash(y)`` olması bir gerekliliktir (bkz. :meth:" +"`~object.__hash__`). Çeşitli sayısal türler arasında uygulama kolaylığı ve " +"verimlilik için (:class:`int`, :class:`float`, :class:`decimal.Decimal` ve :" +"class:`fractions.Fraction` dahil) Python'un sayısal türler için ``hash`` 'i, " +"herhangi bir rasyonel sayı için tanımlanmış tek bir matematiksel fonksiyona " +"dayanır ve bu nedenle :class:`int` ve :class:`fractions` 'ın tüm örnekleri " +"için geçerlidir. Esasen, bu fonksiyon sabit bir asal sayı olan ``P`` için " +"``reduction modulo`` ``P`` ile verilir. ``P`` değeri Python'a :data:`sys." +"hash_info` 'nun :attr:`modulus` özelliği olarak sunulur." #: library/stdtypes.rst:678 msgid "" "Currently, the prime used is ``P = 2**31 - 1`` on machines with 32-bit C " "longs and ``P = 2**61 - 1`` on machines with 64-bit C longs." msgstr "" +"Şu anda kullanılan asal sayı, 32 bit C uzunluğundaki makinelerde ``P = 2**31 " +"- 1`` ve 64-bit C uzunluğundaki makinelerde ``P = 2**61 - 1`` şeklindedir." #: library/stdtypes.rst:681 msgid "Here are the rules in detail:" -msgstr "" +msgstr "İşte ayrıntılı kurallar:" #: library/stdtypes.rst:683 msgid "" @@ -1107,6 +1143,9 @@ msgid "" "by ``P``, define ``hash(x)`` as ``m * invmod(n, P) % P``, where ``invmod(n, " "P)`` gives the inverse of ``n`` modulo ``P``." msgstr "" +"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n`` ``P`` ile " +"bölünemiyorsa, ``hash(x)`` 'i ``m * invmod(n, P) % P`` olarak tanımlayın, bu " +"durumda ``invmod(n, P)``, ``n`` modulo ``P`` 'nin tersini verir." #: library/stdtypes.rst:687 msgid "" @@ -1115,12 +1154,19 @@ msgid "" "above doesn't apply; in this case define ``hash(x)`` to be the constant " "value ``sys.hash_info.inf``." msgstr "" +"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n``, ``P`` ile " +"bölünebiliyorsa (ancak ``m`` değildir), o zaman ``n`` 'nin ``P`` şeklinde " +"ters modulo 'su yoktur ve yukarıdaki kural geçerli değildir; bu durumda " +"``hash(x)`` i ``sys.hash_info.inf`` olarak tanımlayın." #: library/stdtypes.rst:692 msgid "" "If ``x = m / n`` is a negative rational number define ``hash(x)`` as ``-" "hash(-x)``. If the resulting hash is ``-1``, replace it with ``-2``." msgstr "" +"``x = m / n`` negatif bir rasyonel sayıysa, ``hash(x)`` 'i ``-hash(-x)`` " +"olarak tanımlayın. Elde edilen ``hash`` ``-1`` ise, bunu ``-2`` ile " +"değiştirin." #: library/stdtypes.rst:696 msgid "" @@ -1128,8 +1174,11 @@ msgid "" "used as hash values for positive infinity or negative infinity " "(respectively)." msgstr "" +"``sys.hash_info.inf`` ve ``-sys.hash_info.inf``, pozitif sonsuz veya negatif " +"sonsuz (sırasıyla) için ``hash`` değerleri olarak kullanılır." #: library/stdtypes.rst:700 +#, fuzzy msgid "" "For a :class:`complex` number ``z``, the hash values of the real and " "imaginary parts are combined by computing ``hash(z.real) + sys.hash_info." @@ -1137,6 +1186,11 @@ msgid "" "lies in ``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - " "1))``. Again, if the result is ``-1``, it's replaced with ``-2``." msgstr "" +"Bir :class:`complex` sayı ``z`` için, gerçek ve sanal parçaların ```hash`` " +"değerleri, ``hash(z.real) + sys.hash_info.imag * hash(z.imag)`` , ``reduced " +"modulo`` ``2**sys.hash_info.width`` hesaplanarak birleştirilir, böylece " +"``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - 1))`` 'de " +"bulunur. Yine sonuç ``-1`` ise, ``-2`` ile değiştirilir." #: library/stdtypes.rst:708 msgid "" @@ -1144,10 +1198,13 @@ msgid "" "the built-in hash, for computing the hash of a rational number, :class:" "`float`, or :class:`complex`::" msgstr "" +"Yukarıdaki kuralları açıklığa kavuşturmak için, :class:`float` veya :class:" +"`complex` olan rasyonel bir sayının ``hash`` 'ini hesaplamak için gömülü " +"``hash`` 'e eşdeğer örnek Python kodu::" #: library/stdtypes.rst:763 msgid "Iterator Types" -msgstr "" +msgstr "Yineleyici Türleri" #: library/stdtypes.rst:771 msgid "" @@ -1156,12 +1213,19 @@ msgid "" "support iteration. Sequences, described below in more detail, always " "support the iteration methods." msgstr "" +"Python, konteynerler üzerinde yineleme kavramını destekler. Bu, iki farklı " +"yöntem kullanılarak uygulanır; bunlar, kullanıcı tanımlı sınıfların " +"yinelemeyi desteklemesine izin vermek için kullanılır. Aşağıda daha " +"ayrıntılı olarak açıklanan diziler, her zaman yineleme yöntemlerini " +"destekler." #: library/stdtypes.rst:776 msgid "" "One method needs to be defined for container objects to provide :term:" "`iterable` support:" msgstr "" +"Kapsayıcı nesnelerinin :term:`iterable` desteği sağlaması için bir yöntemin " +"tanımlanması gerekir:" #: library/stdtypes.rst:783 msgid "" From ed2ce4adf5dd6ecab6a7974e5414923a768c6d23 Mon Sep 17 00:00:00 2001 From: egeakman Date: Fri, 4 Feb 2022 03:35:19 +0300 Subject: [PATCH 18/37] fix typos --- library/stdtypes.po | 52 ++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index b1eb7da69..9f4c0dff3 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -208,7 +208,7 @@ msgid "" msgstr "" "``not`` Boolean olmayan operatörlerden daha düşük bir önceliğe sahiptir, bu " "nedenle ``not a == b``, ``not (a == b)`` olarak yorumlanır bu sebeple ``a == " -"not b`` bir sözdizimi hatasıdır." +"not b`` bir söz dizimi hatasıdır." #: library/stdtypes.rst:120 msgid "Comparisons" @@ -358,7 +358,7 @@ msgid "" "keyword:`not in`, are supported by types that are :term:`iterable` or " "implement the :meth:`__contains__` method." msgstr "" -"Aynı sözdizimsel önceliğe sahip iki işlem daha, :keyword:`in` ve :keyword:" +"Aynı söz dizimsel önceliğe sahip iki işlem daha, :keyword:`in` ve :keyword:" "`not in`, :term:`iterable` olan veya :meth:`__contains__` yöntemini " "uygulayan türler tarafından desteklenir." @@ -403,8 +403,8 @@ msgid "" "complex number with real and imaginary parts." msgstr "" "Sayılar, sayısal değişmezlerle veya, gömülü fonksiyonlar ve operatörlerin " -"sonucu olarak oluşturulur. Sade tamsayı değişmezleri (onaltılı, sekizli ve " -"ikili sayılar dahil) tamsayıları verir. Ondalık nokta veya üs işareti " +"sonucu olarak oluşturulur. Sade tam sayı değişmezleri (onaltılı, sekizli ve " +"ikili sayılar dahil) tam sayıları verir. Ondalık nokta veya üs işareti " "içeren sayısal değişmezler, gerçel sayıları verir. Sayısal bir değişmeze " "``'j'`` veya ``'J'`` eklemek, tam veya gerçel bir sayıya eklenince gerçek ve " "hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " @@ -422,7 +422,7 @@ msgid "" msgstr "" "Python karma aritmetiği tam olarak destekler: herhangi bir ikili aritmetik " "operatörü farklı sayısal türlerde işlenenlere sahip olduğunda, \"dar\" türe " -"sahip işlenen, tamsayı karmaşık sayıdan daha dar olan gerçel sayıdan daha " +"sahip işlenen, tam sayı karmaşık sayıdan daha dar olan gerçel sayıdan daha " "dar olduğu diğerininkine genişletilir. Farklı türlerdeki sayıların " "karşılaştırılması, bu sayıların tam değerleri karşılaştırılıyormuş gibi " "davranır. [2]_" @@ -529,7 +529,7 @@ msgstr "``int(x)``" #: library/stdtypes.rst:297 msgid "*x* converted to integer" -msgstr "*x* 'in integer tamsayıya (integer) dönüştürülmüş hali" +msgstr "*x* 'in integer tam sayıya (integer) dönüştürülmüş hali" #: library/stdtypes.rst:297 msgid "\\(3)\\(6)" @@ -623,7 +623,7 @@ msgid "" "always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is " "``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``." msgstr "" -"Tamsayılı bölümü olarak da adlandırılır. Elde edilen değer bir tamsayıdır, " +"Tam sayılı bölümü olarak da adlandırılır. Elde edilen değer bir tam sayıdır, " "ancak sonucun türü her zaman int olmayabilir. Sonuç her zaman eksi sonsuza " "yuvarlanır: ``1//2`` = ``0``, ``(-1)//2`` = ``-1``, ``1//(-2)`` = ``-1``, ve " "``(-1)//(-2)`` = ``0``." @@ -736,7 +736,7 @@ msgstr "" #: library/stdtypes.rst:389 msgid "Bitwise Operations on Integer Types" -msgstr "Tamsayı Türlerinde Bit Düzeyinde İşlemler" +msgstr "Tam sayı Türlerinde Bit Düzeyinde İşlemler" #: library/stdtypes.rst:403 msgid "" @@ -744,7 +744,7 @@ msgid "" "operations is calculated as though carried out in two's complement with an " "infinite number of sign bits." msgstr "" -"Bit düzeyinde işlemler yalnızca tamsayılar için anlamlıdır. Bit düzeyinde " +"Bit düzeyinde işlemler yalnızca tam sayılar için anlamlıdır. Bit düzeyinde " "işlemlerin sonucu, sonsuz sayıda işaret biti ile ikiye tümleyende " "gerçekleştiriliyormuş gibi hesaplanır." @@ -872,7 +872,7 @@ msgid "" "Return the number of bits necessary to represent an integer in binary, " "excluding the sign and leading zeros::" msgstr "" -"İşaret ve baştaki sıfırlar hariç, ikili sistemde bir tamsayıyı (integer) " +"İşaret ve baştaki sıfırlar hariç, ikili sistemde bir tam sayıyı (integer) " "temsil etmek için gereken bit sayısını döndürür::" #: library/stdtypes.rst:467 @@ -885,7 +885,7 @@ msgid "" "bit_length()`` returns ``0``." msgstr "" "Daha doğrusu, ``x`` sıfırdan farklıysa, ``x.bit_length()``, ``2**(k-1) <= " -"abs(x) < 2**k`` olacak şekilde benzersiz ``k`` pozitif tamsayıdır. Aynı " +"abs(x) < 2**k`` olacak şekilde benzersiz ``k`` pozitif tam sayıdır. Aynı " "şekilde, ``abs(x)`` doğru olarak yuvarlatılmış bir logaritmaya sahip olacak " "kadar küçük olduğunda, ``k = 1 + int(log(abs(x), 2))`` olur. ``x`` sıfır " "ise, ``x.bit_length()``, ``0`` döndürür." @@ -899,19 +899,19 @@ msgid "" "Return the number of ones in the binary representation of the absolute value " "of the integer. This is also known as the population count. Example::" msgstr "" -"Tamsayının mutlak değerinin ikili gösterimindeki birlerin sayısını döndürün. " +"Tam sayının mutlak değerinin ikili gösterimindeki birlerin sayısını döndürün. " "Buna nüfus sayımı da denir. Örneğin::" #: library/stdtypes.rst:505 msgid "Return an array of bytes representing an integer." -msgstr "Bir tamsayıyı temsil eden bir bayt dizisi döndürür." +msgstr "Bir tam sayıyı temsil eden bir bayt dizisi döndürür." #: library/stdtypes.rst:517 msgid "" "The integer is represented using *length* bytes. An :exc:`OverflowError` is " "raised if the integer is not representable with the given number of bytes." msgstr "" -"Tam sayı, *length* bayt kullanılarak temsil edilir. Tamsayı verilen bayt " +"Tam sayı, *length* bayt kullanılarak temsil edilir. Tam sayı verilen bayt " "sayısıyla gösterilemezse :exc:`OverflowError` hatası ortaya çıkar." #: library/stdtypes.rst:553 @@ -923,7 +923,7 @@ msgid "" "byte order of the host system, use :data:`sys.byteorder` as the byte order " "value." msgstr "" -"*byteorder* argümanı, tamsayıyı temsil etmek için kullanılan bayt sırasını " +"*byteorder* argümanı, tam sayıyı temsil etmek için kullanılan bayt sırasını " "belirler. *byteorder* ``\"big\"`` ise, en önemli bayt, bayt dizisinin " "başındadır. *byteorder* ``\"little\"`` ise, en önemli bayt, bayt dizisinin " "sonundadır. Ana sistemin yerel bayt sırasını istemek için bayt sırası değeri " @@ -936,14 +936,14 @@ msgid "" "given, an :exc:`OverflowError` is raised. The default value for *signed* is " "``False``." msgstr "" -"*signed* argümanı, tamsayıyı temsil etmek için ikinin tümleyeninin " +"*signed* argümanı, tam sayıyı temsil etmek için ikinin tümleyeninin " "kullanılıp kullanılmayacağını belirler. *signed* ``False`` ise ve negatif " -"bir tamsayı verilirse, bir :exc:`OverflowError` hatası ortaya çıkar. " +"bir tam sayı verilirse, bir :exc:`OverflowError` hatası ortaya çıkar. " "*signed* için varsayılan değer ``False`` şeklindedir." #: library/stdtypes.rst:537 msgid "Return the integer represented by the given array of bytes." -msgstr "Verilen bayt dizisi tarafından temsil edilen tamsayıyı döndürür." +msgstr "Verilen bayt dizisi tarafından temsil edilen tam sayıyı döndürür." #: library/stdtypes.rst:550 #, fuzzy @@ -959,7 +959,7 @@ msgid "" "The *signed* argument indicates whether two's complement is used to " "represent the integer." msgstr "" -"*signed* bağımsız değişkeni, tamsayıyı temsil etmek için ikinin tümleyeninin " +"*signed* bağımsız değişkeni, tam sayıyı temsil etmek için ikinin tümleyeninin " "kullanılıp kullanılmadığını gösterir." #: library/stdtypes.rst:567 @@ -970,7 +970,7 @@ msgid "" "denominator." msgstr "" "Oranı, orijinal tam sayıya tam olarak eşit ve pozitif bir paydaya sahip bir " -"tam sayı çifti döndürür. Integerlerin tamsayı oranı her zaman pay olarak tam " +"tam sayı çifti döndürür. Integerlerin tam sayı oranı her zaman pay olarak tam " "sayı ve payda olarak ``1``dir." #: library/stdtypes.rst:575 @@ -992,7 +992,7 @@ msgid "" "and a :exc:`ValueError` on NaNs." msgstr "" "Oranı tam olarak orijinal gerçel sayıya eşit ve pozitif bir paydaya sahip " -"bir çift tamsayı döndürür. Sonsuzluklarda :exc `OverflowError` ve NaN'lerde " +"bir çift tam sayı döndürür. Sonsuzluklarda :exc `OverflowError` ve NaN'lerde " "(SayıDeğil) :exc:`ValueError` hataları ortaya çıkar." #: library/stdtypes.rst:589 @@ -1064,12 +1064,12 @@ msgid "" "by C's ``%a`` format character or Java's ``Double.toHexString`` are accepted " "by :meth:`float.fromhex`." msgstr "" -"burada opsiyonel ``işaret``, ``+`` veya ``-`` olabilir; ``tamsayı`` ve " +"burada opsiyonel ``işaret``, ``+`` veya ``-`` olabilir; ``tam sayı`` ve " "``kesir`` onaltılı basamaklı dizelerdir; ``üs`` opsiyonel ön işaretle " -"birlikte ondalık tamsayıdır. Büyük/küçük harf önemli değildir ve tamsayı " -"veya kesirde en az bir onaltılık basamak olmalıdır. Bu sözdizimi, C99 " -"standardının 6.4.4.2 bölümünde belirtilen sözdizimine ve ayrıca Java 1.5'ten " -"itibaren kullanılan sözdizimine benzer. Özellikle, :meth:`float.hex` 'in " +"birlikte ondalık tam sayıdır. Büyük/küçük harf önemli değildir ve tam sayı " +"veya kesirde en az bir onaltılık basamak olmalıdır. Bu söz dizimi, C99 " +"standardının 6.4.4.2 bölümünde belirtilen söz dizimine ve ayrıca Java 1.5'ten " +"itibaren kullanılan söz dizimine benzer. Özellikle, :meth:`float.hex` 'in " "çıktısı, C veya Java kodunda bir onaltılık gerçel değişmezi olarak " "kullanılabilir ve C'nin ``%a`` biçim karakteri veya Java'nın ``Double." "toHexString`` 'i tarafından üretilen onaltılık dizeler :meth:`float.fromhex` " From 6f73db31db341f89dff28c7c869f0207265a3a15 Mon Sep 17 00:00:00 2001 From: Ege Akman Date: Sat, 5 Feb 2022 19:54:46 +0300 Subject: [PATCH 19/37] Update library/stdtypes.po MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Şefika Nur Öztürk <64414733+sefikaozturk@users.noreply.github.com> --- library/stdtypes.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 9f4c0dff3..7ef389ca6 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -1145,7 +1145,7 @@ msgid "" msgstr "" "``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n`` ``P`` ile " "bölünemiyorsa, ``hash(x)`` 'i ``m * invmod(n, P) % P`` olarak tanımlayın, bu " -"durumda ``invmod(n, P)``, ``n`` modulo ``P`` 'nin tersini verir." +"durumda ``invmod(n, P)``, ``n`` modül ``P`` 'nin tersini verir." #: library/stdtypes.rst:687 msgid "" From 080b35c04560be99881e6286dcc88fba414df2d7 Mon Sep 17 00:00:00 2001 From: Ege Akman Date: Sat, 5 Feb 2022 19:54:54 +0300 Subject: [PATCH 20/37] Update library/stdtypes.po MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Şefika Nur Öztürk <64414733+sefikaozturk@users.noreply.github.com> --- library/stdtypes.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 7ef389ca6..565c23b2c 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -1156,7 +1156,7 @@ msgid "" msgstr "" "``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n``, ``P`` ile " "bölünebiliyorsa (ancak ``m`` değildir), o zaman ``n`` 'nin ``P`` şeklinde " -"ters modulo 'su yoktur ve yukarıdaki kural geçerli değildir; bu durumda " +"ters modülü yoktur ve yukarıdaki kural geçerli değildir; bu durumda " "``hash(x)`` i ``sys.hash_info.inf`` olarak tanımlayın." #: library/stdtypes.rst:692 From a176c5312108e6a203457c8f4fbaa064315bc2c4 Mon Sep 17 00:00:00 2001 From: Ege Akman Date: Sat, 5 Feb 2022 19:56:43 +0300 Subject: [PATCH 21/37] Update library/stdtypes.po MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Şefika Nur Öztürk <64414733+sefikaozturk@users.noreply.github.com> --- library/stdtypes.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 565c23b2c..603c1d4b2 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -1224,7 +1224,7 @@ msgid "" "One method needs to be defined for container objects to provide :term:" "`iterable` support:" msgstr "" -"Kapsayıcı nesnelerinin :term:`iterable` desteği sağlaması için bir yöntemin " +"Kapsayıcı nesnelerinin :term:`iterable` desteği sağlaması için bir metodun " "tanımlanması gerekir:" #: library/stdtypes.rst:783 From 6a41b0fff3c7f29560a8fc206f5bb7559f593e5e Mon Sep 17 00:00:00 2001 From: Ege Akman Date: Sat, 5 Feb 2022 19:57:07 +0300 Subject: [PATCH 22/37] Update library/stdtypes.po MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Şefika Nur Öztürk <64414733+sefikaozturk@users.noreply.github.com> --- library/stdtypes.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 603c1d4b2..d42c31b09 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -1214,9 +1214,9 @@ msgid "" "support the iteration methods." msgstr "" "Python, konteynerler üzerinde yineleme kavramını destekler. Bu, iki farklı " -"yöntem kullanılarak uygulanır; bunlar, kullanıcı tanımlı sınıfların " +"metot kullanılarak uygulanır; bunlar, kullanıcı tanımlı sınıfların " "yinelemeyi desteklemesine izin vermek için kullanılır. Aşağıda daha " -"ayrıntılı olarak açıklanan diziler, her zaman yineleme yöntemlerini " +"ayrıntılı olarak açıklanan diziler, her zaman yineleme metotlarını " "destekler." #: library/stdtypes.rst:776 From 5f77e3e1d2f555980a870db3c2d87782f8cffd28 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 20 Feb 2022 18:26:58 +0300 Subject: [PATCH 23/37] Update --- library/stdtypes.po | 4075 ++++++++++++++++++++----------------------- 1 file changed, 1902 insertions(+), 2173 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index d42c31b09..63feb11a9 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2022-02-04 03:30+0300\n" +"PO-Revision-Date: 2022-02-20 18:26+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -22,44 +22,39 @@ msgid "Built-in Types" msgstr "Gömülü Türler" #: library/stdtypes.rst:10 -msgid "" -"The following sections describe the standard types that are built into the " -"interpreter." +msgid "The following sections describe the standard types that are built into the interpreter." msgstr "" -"Aşağıdaki bölümlerde, yorumlayıcıda yerleşik olarak yer alan standart türler " -"açıklanmaktadır." +"Aşağıdaki bölümlerde, yorumlayıcıda yerleşik olarak yer alan standart türler açıklanmaktadır." #: library/stdtypes.rst:15 msgid "" -"The principal built-in types are numerics, sequences, mappings, classes, " -"instances and exceptions." +"The principal built-in types are numerics, sequences, mappings, classes, instances and " +"exceptions." msgstr "" -"Başlıca gömülü türler sayısallar, diziler, eşleşmeler, sınıflar, örnekler ve " -"kural dışı durumlardır." +"Başlıca gömülü türler sayısallar, diziler, eşleşmeler, sınıflar, örnekler ve kural dışı " +"durumlardır." #: library/stdtypes.rst:18 msgid "" -"Some collection classes are mutable. The methods that add, subtract, or " -"rearrange their members in place, and don't return a specific item, never " -"return the collection instance itself but ``None``." +"Some collection classes are mutable. The methods that add, subtract, or rearrange their " +"members in place, and don't return a specific item, never return the collection instance " +"itself but ``None``." msgstr "" -"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, " -"çıkaran veya yeniden düzenleyen ve belirli bir öğe döndürmeyen metotlar, her " -"zaman koleksiyon örneğini değil ``None`` değerini döndürür." +"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, çıkaran veya yeniden " +"düzenleyen ve belirli bir öğe döndürmeyen metotlar, her zaman koleksiyon örneğini değil " +"``None`` değerini döndürür." #: library/stdtypes.rst:22 msgid "" -"Some operations are supported by several object types; in particular, " -"practically all objects can be compared for equality, tested for truth " -"value, and converted to a string (with the :func:`repr` function or the " -"slightly different :func:`str` function). The latter function is implicitly " -"used when an object is written by the :func:`print` function." +"Some operations are supported by several object types; in particular, practically all objects " +"can be compared for equality, tested for truth value, and converted to a string (with the :" +"func:`repr` function or the slightly different :func:`str` function). The latter function is " +"implicitly used when an object is written by the :func:`print` function." msgstr "" -"Bazı işlemler birkaç nesne türü tarafından desteklenir; özellikle, tüm " -"nesneler eşitlik için karşılaştırılabilir, doğruluk değeri için test " -"edilebilir ve bir dizeye dönüştürülebilir (:func:`repr` fonksiyonu veya " -"hafif farklı olan :func:`str` fonksiyonu ile). İkinci işlev, bir nesne :" -"func:`print` ile yazdırıldığında dolaylı olarak kullanılır." +"Bazı işlemler birkaç nesne türü tarafından desteklenir; özellikle, tüm nesneler eşitlik için " +"karşılaştırılabilir, doğruluk değeri için test edilebilir ve bir dizeye dönüştürülebilir (:" +"func:`repr` fonksiyonu veya hafif farklı olan :func:`str` fonksiyonu ile). İkinci fonksiyon, " +"bir nesne :func:`print` ile yazdırıldığında dolaylı olarak kullanılır." #: library/stdtypes.rst:32 msgid "Truth Value Testing" @@ -67,56 +62,44 @@ msgstr "Doğruluk Değeri Testi" #: library/stdtypes.rst:41 msgid "" -"Any object can be tested for truth value, for use in an :keyword:`if` or :" -"keyword:`while` condition or as operand of the Boolean operations below." +"Any object can be tested for truth value, for use in an :keyword:`if` or :keyword:`while` " +"condition or as operand of the Boolean operations below." msgstr "" -"Herhangi bir nesne, :keyword:`if` veya :keyword:`while` koşulunda veya " -"aşağıdaki Boolean işlemlerinin işleneni olarak kullanımında doğruluk değeri " -"için test edilebilir." +"Herhangi bir nesne, :keyword:`if` veya :keyword:`while` koşulunda veya aşağıdaki Boolean " +"işlemlerinin işleneni olarak kullanımında doğruluk değeri için test edilebilir." #: library/stdtypes.rst:46 msgid "" -"By default, an object is considered true unless its class defines either a :" -"meth:`__bool__` method that returns ``False`` or a :meth:`__len__` method " -"that returns zero, when called with the object. [1]_ Here are most of the " -"built-in objects considered false:" +"By default, an object is considered true unless its class defines either a :meth:`__bool__` " +"method that returns ``False`` or a :meth:`__len__` method that returns zero, when called with " +"the object. [1]_ Here are most of the built-in objects considered false:" msgstr "" -"Varsayılan olarak, bir nesne, sınıfı \"False\" döndüren bir :meth:`__bool__` " -"yöntemini veya nesneyle birlikte çağrıldığında sıfır döndüren bir :meth:" -"`__len__` yöntemini tanımlamadıkça doğru kabul edilir. [1]_ Yanlış olarak " -"kabul edilen yerleşik nesnelerin çoğu:" +"Varsayılan olarak, bir nesne, sınıfı \"False\" döndüren bir :meth:`__bool__` yöntemini veya " +"nesneyle birlikte çağrıldığında sıfır döndüren bir :meth:`__len__` yöntemini tanımlamadıkça " +"doğru kabul edilir. [1]_ Yanlış olarak kabul edilen yerleşik nesnelerin çoğu:" #: library/stdtypes.rst:55 msgid "constants defined to be false: ``None`` and ``False``." msgstr "false olarak tanımlanan sabitler: ``None`` ve ``False``." #: library/stdtypes.rst:57 -msgid "" -"zero of any numeric type: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, " -"``Fraction(0, 1)``" +msgid "zero of any numeric type: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, ``Fraction(0, 1)``" msgstr "" -"herhangi bir sayısal türden sıfır: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, " -"``Fraction(0, 1)``" +"herhangi bir sayısal türden sıfır: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, ``Fraction(0, 1)``" #: library/stdtypes.rst:60 -msgid "" -"empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " -"``range(0)``" -msgstr "" -"boş diziler ve koleksiyonlar: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " -"``range(0)``" +msgid "empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, ``range(0)``" +msgstr "boş diziler ve koleksiyonlar: ``''``, ``()``, ``[]``, ``{}``, ``set()``, ``range(0)``" #: library/stdtypes.rst:69 msgid "" -"Operations and built-in functions that have a Boolean result always return " -"``0`` or ``False`` for false and ``1`` or ``True`` for true, unless " -"otherwise stated. (Important exception: the Boolean operations ``or`` and " -"``and`` always return one of their operands.)" +"Operations and built-in functions that have a Boolean result always return ``0`` or ``False`` " +"for false and ``1`` or ``True`` for true, unless otherwise stated. (Important exception: the " +"Boolean operations ``or`` and ``and`` always return one of their operands.)" msgstr "" -"Boolean sonucu olan işlemler ve yerleşik işlevler, aksi belirtilmedikçe her " -"zaman false için \"0\" veya \"False\" ve true için \"1\" veya \"True\" " -"döndürür. (Önemli istisna: Boolean işlemleri \"or\" ve \"and\" her zaman " -"işlenenlerinden birini döndürür.)" +"Boolean sonucu olan işlemler ve gömülü fonksiyonlar, aksi belirtilmedikçe her zaman false için " +"\"0\" veya \"False\" ve true için \"1\" veya \"True\" döndürür. (Önemli istisna: Boolean " +"işlemleri \"or\" ve \"and\" her zaman işlenenlerinden birini döndürür.)" #: library/stdtypes.rst:78 msgid "Boolean Operations --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not`" @@ -175,8 +158,7 @@ msgid "if *x* is false, then ``True``, else ``False``" msgstr "*x* yanlışsa, ``True``, aksi halde ``False``" #: library/stdtypes.rst:897 library/stdtypes.rst:2324 library/stdtypes.rst:2328 -#: library/stdtypes.rst:3545 library/stdtypes.rst:3549 -#: library/stdtypes.rst:3551 +#: library/stdtypes.rst:3545 library/stdtypes.rst:3549 library/stdtypes.rst:3551 msgid "\\(3)" msgstr "\\(3)" @@ -187,28 +169,26 @@ msgstr "Notlar:" #: library/stdtypes.rst:105 msgid "" -"This is a short-circuit operator, so it only evaluates the second argument " -"if the first one is false." +"This is a short-circuit operator, so it only evaluates the second argument if the first one is " +"false." msgstr "" -"Bu bir kısa devre operatörüdür, bu nedenle ikinci argümanı yalnızca " -"birincisi yanlışsa değerlendirir." +"Bu bir kısa devre operatörüdür, bu nedenle ikinci argümanı yalnızca birincisi yanlışsa " +"değerlendirir." #: library/stdtypes.rst:109 msgid "" -"This is a short-circuit operator, so it only evaluates the second argument " -"if the first one is true." +"This is a short-circuit operator, so it only evaluates the second argument if the first one is " +"true." msgstr "" -"Bu bir kısa devre operatörüdür, bu nedenle sadece ilki doğruysa ikinci " -"argümanı değerlendirir." +"Bu bir kısa devre operatörüdür, bu nedenle sadece ilki doğruysa ikinci argümanı değerlendirir." #: library/stdtypes.rst:113 msgid "" -"``not`` has a lower priority than non-Boolean operators, so ``not a == b`` " -"is interpreted as ``not (a == b)``, and ``a == not b`` is a syntax error." +"``not`` has a lower priority than non-Boolean operators, so ``not a == b`` is interpreted as " +"``not (a == b)``, and ``a == not b`` is a syntax error." msgstr "" -"``not`` Boolean olmayan operatörlerden daha düşük bir önceliğe sahiptir, bu " -"nedenle ``not a == b``, ``not (a == b)`` olarak yorumlanır bu sebeple ``a == " -"not b`` bir söz dizimi hatasıdır." +"``not`` Boolean olmayan operatörlerden daha düşük bir önceliğe sahiptir, bu nedenle ``not a == " +"b``, ``not (a == b)`` olarak yorumlanır bu sebeple ``a == not b`` bir söz dizimi hatasıdır." #: library/stdtypes.rst:120 msgid "Comparisons" @@ -216,25 +196,21 @@ msgstr "Karşılaştırmalar" #: library/stdtypes.rst:134 msgid "" -"There are eight comparison operations in Python. They all have the same " -"priority (which is higher than that of the Boolean operations). Comparisons " -"can be chained arbitrarily; for example, ``x < y <= z`` is equivalent to ``x " -"< y and y <= z``, except that *y* is evaluated only once (but in both cases " -"*z* is not evaluated at all when ``x < y`` is found to be false)." +"There are eight comparison operations in Python. They all have the same priority (which is " +"higher than that of the Boolean operations). Comparisons can be chained arbitrarily; for " +"example, ``x < y <= z`` is equivalent to ``x < y and y <= z``, except that *y* is evaluated " +"only once (but in both cases *z* is not evaluated at all when ``x < y`` is found to be false)." msgstr "" -"Python'da sekiz karşılaştırma işlemi vardır. Hepsinin önceliği aynıdır " -"(Boolean işlemlerinden daha önceliklidir). Karşılaştırmalar isteğe bağlı " -"olarak zincirlenebilir; örneğin, ``x < y <= z``, ``x < y and y <= z`` ile " -"eşdeğerdir, ancak *y* yalnızca bir kez değerlendirilir (ancak her iki " -"durumda da ``x < y`` yanlış olduğu tespit edildiğinde *z* hiç " -"değerlendirilmez)." +"Python'da sekiz karşılaştırma işlemi vardır. Hepsinin önceliği aynıdır (Boolean işlemlerinden " +"daha önceliklidir). Karşılaştırmalar isteğe bağlı olarak zincirlenebilir; örneğin, ``x < y <= " +"z``, ``x < y and y <= z`` ile eş değerdir, ancak *y* yalnızca bir kez değerlendirilir (ancak " +"her iki durumda da ``x < y`` yanlış olduğu tespit edildiğinde *z* hiç değerlendirilmez)." #: library/stdtypes.rst:140 msgid "This table summarizes the comparison operations:" msgstr "Bu tablo karşılaştırma operatörlerini özetlemektedir:" -#: library/stdtypes.rst:2287 library/stdtypes.rst:3508 -#: library/stdtypes.rst:3531 +#: library/stdtypes.rst:2287 library/stdtypes.rst:3508 library/stdtypes.rst:3531 msgid "Meaning" msgstr "Anlamı" @@ -304,63 +280,55 @@ msgstr "olumsuz nesne kimliği" #: library/stdtypes.rst:166 msgid "" -"Objects of different types, except different numeric types, never compare " -"equal. The ``==`` operator is always defined but for some object types (for " -"example, class objects) is equivalent to :keyword:`is`. The ``<``, ``<=``, " -"``>`` and ``>=`` operators are only defined where they make sense; for " -"example, they raise a :exc:`TypeError` exception when one of the arguments " -"is a complex number." +"Objects of different types, except different numeric types, never compare equal. The ``==`` " +"operator is always defined but for some object types (for example, class objects) is " +"equivalent to :keyword:`is`. The ``<``, ``<=``, ``>`` and ``>=`` operators are only defined " +"where they make sense; for example, they raise a :exc:`TypeError` exception when one of the " +"arguments is a complex number." msgstr "" -"Farklı sayısal türler dışında, farklı türdeki nesneler hiçbir zaman eşit " -"olarak karşılaştırılmaz. ``==`` operatörü her zaman tanımlanır, ancak bazı " -"nesne türleri için (örneğin, sınıf nesneleri) :keyword:`is` ile eşdeğerdir. " -"``<``, ``<=``, ``>`` ve ``>=`` operatörleri yalnızca anlamlı oldukları yerde " -"tanımlanır; örneğin, bağımsız değişkenlerden biri karmaşık bir sayı " -"olduğunda bir :exc:`TypeError` hatası oluştururlar." +"Farklı sayısal türler dışında, farklı türdeki nesneler hiçbir zaman eşit olarak " +"karşılaştırılmaz. ``==`` operatörü her zaman tanımlanır, ancak bazı nesne türleri için " +"(örneğin, sınıf nesneleri) :keyword:`is` ile eş değerdir. ``<``, ``<=``, ``>`` ve ``>=`` " +"operatörleri yalnızca anlamlı oldukları yerde tanımlanır; örneğin, argümanlardan biri karmaşık " +"bir sayı olduğunda bir :exc:`TypeError` hatası oluştururlar." #: library/stdtypes.rst:180 msgid "" -"Non-identical instances of a class normally compare as non-equal unless the " -"class defines the :meth:`~object.__eq__` method." +"Non-identical instances of a class normally compare as non-equal unless the class defines the :" +"meth:`~object.__eq__` method." msgstr "" -"Normalde, bir sınıfın özdeş olmayan örnekleri, sınıf :meth:`~object.__eq__` " -"yöntemini tanımlamadığı sürece eşit olmayan olarak karşılaştırılır." +"Normalde, bir sınıfın özdeş olmayan örnekleri, sınıf :meth:`~object.__eq__` yöntemini " +"tanımlamadığı sürece eşit olmayan olarak karşılaştırılır." #: library/stdtypes.rst:183 msgid "" -"Instances of a class cannot be ordered with respect to other instances of " -"the same class, or other types of object, unless the class defines enough of " -"the methods :meth:`~object.__lt__`, :meth:`~object.__le__`, :meth:`~object." -"__gt__`, and :meth:`~object.__ge__` (in general, :meth:`~object.__lt__` and :" -"meth:`~object.__eq__` are sufficient, if you want the conventional meanings " -"of the comparison operators)." -msgstr "" -"Bir sınıfın örnekleri, sınıf yeterli yöntemleri tanımlamadıkça, aynı sınıfın " -"diğer örneklerine veya diğer nesne türlerine göre sıralanamaz :meth:`~object." -"__lt__`, :meth:`~object.__le__` , :meth:`~object.__gt__` ve :meth:`~object." -"__ge__` (karşılaştırma operatörlerin geleneksel anlamlarını istiyorsanız, :" -"meth:`~object.__lt__` ve :meth:`~object.__eq__` genellikle yeterli " +"Instances of a class cannot be ordered with respect to other instances of the same class, or " +"other types of object, unless the class defines enough of the methods :meth:`~object.__lt__`, :" +"meth:`~object.__le__`, :meth:`~object.__gt__`, and :meth:`~object.__ge__` (in general, :meth:" +"`~object.__lt__` and :meth:`~object.__eq__` are sufficient, if you want the conventional " +"meanings of the comparison operators)." +msgstr "" +"Bir sınıfın örnekleri, sınıf yeterli yöntemleri tanımlamadıkça, aynı sınıfın diğer örneklerine " +"veya diğer nesne türlerine göre sıralanamaz :meth:`~object.__lt__`, :meth:`~object.__le__` , :" +"meth:`~object.__gt__` ve :meth:`~object.__ge__` (karşılaştırma operatörlerin geleneksel " +"anlamlarını istiyorsanız, :meth:`~object.__lt__` ve :meth:`~object.__eq__` genellikle yeterli " "olacaktır)." #: library/stdtypes.rst:190 msgid "" -"The behavior of the :keyword:`is` and :keyword:`is not` operators cannot be " -"customized; also they can be applied to any two objects and never raise an " -"exception." +"The behavior of the :keyword:`is` and :keyword:`is not` operators cannot be customized; also " +"they can be applied to any two objects and never raise an exception." msgstr "" -":keyword:`is` ve :keyword:`is not` operatörlerinin davranışı " -"özelleştirilemez; ayrıca herhangi iki nesneye uygulanabilirler ve asla bir " -"hata oluşturmazlar." +":keyword:`is` ve :keyword:`is not` operatörlerinin davranışı özelleştirilemez; ayrıca herhangi " +"iki nesneye uygulanabilirler ve asla bir hata oluşturmazlar." #: library/stdtypes.rst:198 msgid "" -"Two more operations with the same syntactic priority, :keyword:`in` and :" -"keyword:`not in`, are supported by types that are :term:`iterable` or " -"implement the :meth:`__contains__` method." +"Two more operations with the same syntactic priority, :keyword:`in` and :keyword:`not in`, are " +"supported by types that are :term:`iterable` or implement the :meth:`__contains__` method." msgstr "" -"Aynı söz dizimsel önceliğe sahip iki işlem daha, :keyword:`in` ve :keyword:" -"`not in`, :term:`iterable` olan veya :meth:`__contains__` yöntemini " -"uygulayan türler tarafından desteklenir." +"Aynı söz dizimsel önceliğe sahip iki işlem daha, :keyword:`in` ve :keyword:`not in`, :term:" +"`iterable` olan veya :meth:`__contains__` yöntemini uygulayan türler tarafından desteklenir." #: library/stdtypes.rst:205 msgid "Numeric Types --- :class:`int`, :class:`float`, :class:`complex`" @@ -368,80 +336,72 @@ msgstr "Sayısal Türler --- :class:`int`, :class:`float`, :class:`complex`" #: library/stdtypes.rst:215 msgid "" -"There are three distinct numeric types: :dfn:`integers`, :dfn:`floating " -"point numbers`, and :dfn:`complex numbers`. In addition, Booleans are a " -"subtype of integers. Integers have unlimited precision. Floating point " -"numbers are usually implemented using :c:type:`double` in C; information " -"about the precision and internal representation of floating point numbers " -"for the machine on which your program is running is available in :data:`sys." -"float_info`. Complex numbers have a real and imaginary part, which are each " -"a floating point number. To extract these parts from a complex number *z*, " -"use ``z.real`` and ``z.imag``. (The standard library includes the additional " -"numeric types :mod:`fractions.Fraction`, for rationals, and :mod:`decimal." -"Decimal`, for floating-point numbers with user-definable precision.)" -msgstr "" -"Üç farklı sayısal tür vardır: :dfn:`integers`, :dfn:`floating point " -"numbers`, ve :dfn:`complex numbers`. Ayrıca, Booleanlar tam sayıların bir " -"alt türüdür. Tam sayıların kesinliği sınırsızdır. Gerçel sayılar " -"genellikle C dilinde :c:type:`double` kullanılarak uygulanır; programınızın " -"çalıştığı makine için gerçel sayıların kesinliği ve dahili gösterimi " -"hakkında bilgi :data:`sys.float_info` içinde mevcuttur. Karmaşık sayıların " -"her biri bir gerçel sayı olan gerçek ve sanal birer kısımları vardır. Bu " -"parçaları *z* karmaşık sayısından ayıklamak için ``z.real`` ve ``z.imag`` " -"kullanın. (Standart kütüphane, rasyonel sayılar için :mod:`fractions." -"Fraction` ve kullanıcı tarafından tanımlanabilen hassasiyete sahip gerçel " -"sayılar için :mod:`decimal.Decimal` ek sayısal türlerini içerir.)" +"There are three distinct numeric types: :dfn:`integers`, :dfn:`floating point numbers`, and :" +"dfn:`complex numbers`. In addition, Booleans are a subtype of integers. Integers have " +"unlimited precision. Floating point numbers are usually implemented using :c:type:`double` in " +"C; information about the precision and internal representation of floating point numbers for " +"the machine on which your program is running is available in :data:`sys.float_info`. Complex " +"numbers have a real and imaginary part, which are each a floating point number. To extract " +"these parts from a complex number *z*, use ``z.real`` and ``z.imag``. (The standard library " +"includes the additional numeric types :mod:`fractions.Fraction`, for rationals, and :mod:" +"`decimal.Decimal`, for floating-point numbers with user-definable precision.)" +msgstr "" +"Üç farklı sayısal tür vardır: :dfn:`integers`, :dfn:`floating point numbers`, ve :dfn:`complex " +"numbers`. Ayrıca, Booleanlar tam sayıların bir alt türüdür. Tam sayıların kesinliği " +"sınırsızdır. Gerçel sayılar genellikle C dilinde :c:type:`double` kullanılarak uygulanır; " +"programınızın çalıştığı makine için gerçel sayıların kesinliği ve dahili gösterimi hakkında " +"bilgi :data:`sys.float_info` içinde mevcuttur. Karmaşık sayıların her biri bir gerçel sayı " +"olan gerçek ve sanal birer kısımları vardır. Bu parçaları *z* karmaşık sayısından ayıklamak " +"için ``z.real`` ve ``z.imag`` kullanın. (Standart kütüphane, rasyonel sayılar için :mod:" +"`fractions.Fraction` ve kullanıcı tarafından tanımlanabilen hassasiyete sahip gerçel sayılar " +"için :mod:`decimal.Decimal` ek sayısal türlerini içerir.)" #: library/stdtypes.rst:237 msgid "" -"Numbers are created by numeric literals or as the result of built-in " -"functions and operators. Unadorned integer literals (including hex, octal " -"and binary numbers) yield integers. Numeric literals containing a decimal " -"point or an exponent sign yield floating point numbers. Appending ``'j'`` " -"or ``'J'`` to a numeric literal yields an imaginary number (a complex number " -"with a zero real part) which you can add to an integer or float to get a " -"complex number with real and imaginary parts." -msgstr "" -"Sayılar, sayısal değişmezlerle veya, gömülü fonksiyonlar ve operatörlerin " -"sonucu olarak oluşturulur. Sade tam sayı değişmezleri (onaltılı, sekizli ve " -"ikili sayılar dahil) tam sayıları verir. Ondalık nokta veya üs işareti " -"içeren sayısal değişmezler, gerçel sayıları verir. Sayısal bir değişmeze " -"``'j'`` veya ``'J'`` eklemek, tam veya gerçel bir sayıya eklenince gerçek ve " -"hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " +"Numbers are created by numeric literals or as the result of built-in functions and operators. " +"Unadorned integer literals (including hex, octal and binary numbers) yield integers. Numeric " +"literals containing a decimal point or an exponent sign yield floating point numbers. " +"Appending ``'j'`` or ``'J'`` to a numeric literal yields an imaginary number (a complex number " +"with a zero real part) which you can add to an integer or float to get a complex number with " +"real and imaginary parts." +msgstr "" +"Sayılar, sayısal değişmezlerle veya, gömülü fonksiyonlar ve operatörlerin sonucu olarak " +"oluşturulur. Sade tam sayı değişmezleri (onaltılı, sekizli ve ikili sayılar dahil) tam " +"sayıları verir. Ondalık nokta veya üs işareti içeren sayısal değişmezler, gerçel sayıları " +"verir. Sayısal bir değişmeze ``'j'`` veya ``'J'`` eklemek, tam veya gerçel bir sayıya " +"eklenince gerçek ve hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " "üretir." #: library/stdtypes.rst:262 #, fuzzy msgid "" -"Python fully supports mixed arithmetic: when a binary arithmetic operator " -"has operands of different numeric types, the operand with the \"narrower\" " -"type is widened to that of the other, where integer is narrower than " -"floating point, which is narrower than complex. A comparison between numbers " -"of different types behaves as though the exact values of those numbers were " -"being compared. [2]_" -msgstr "" -"Python karma aritmetiği tam olarak destekler: herhangi bir ikili aritmetik " -"operatörü farklı sayısal türlerde işlenenlere sahip olduğunda, \"dar\" türe " -"sahip işlenen, tam sayı karmaşık sayıdan daha dar olan gerçel sayıdan daha " -"dar olduğu diğerininkine genişletilir. Farklı türlerdeki sayıların " -"karşılaştırılması, bu sayıların tam değerleri karşılaştırılıyormuş gibi " +"Python fully supports mixed arithmetic: when a binary arithmetic operator has operands of " +"different numeric types, the operand with the \"narrower\" type is widened to that of the " +"other, where integer is narrower than floating point, which is narrower than complex. A " +"comparison between numbers of different types behaves as though the exact values of those " +"numbers were being compared. [2]_" +msgstr "" +"Python karma aritmetiği tam olarak destekler: herhangi bir ikili aritmetik operatörü farklı " +"sayısal türlerde işlenenlere sahip olduğunda, \"dar\" türe sahip işlenen, tam sayı karmaşık " +"sayıdan daha dar olan gerçel sayıdan daha dar olduğu diğerininkine genişletilir. Farklı " +"türlerdeki sayıların karşılaştırılması, bu sayıların tam değerleri karşılaştırılıyormuş gibi " "davranır. [2]_" #: library/stdtypes.rst:268 msgid "" -"The constructors :func:`int`, :func:`float`, and :func:`complex` can be used " -"to produce numbers of a specific type." +"The constructors :func:`int`, :func:`float`, and :func:`complex` can be used to produce " +"numbers of a specific type." msgstr "" -":func:`int`, :func:`float` ve :func:`complex` yapıcıları belirli bir türde " -"sayılar üretmek için kullanılabilir." +":func:`int`, :func:`float` ve :func:`complex` yapıcıları belirli bir türde sayılar üretmek " +"için kullanılabilir." #: library/stdtypes.rst:271 msgid "" -"All numeric types (except complex) support the following operations (for " -"priorities of the operations, see :ref:`operator-summary`):" +"All numeric types (except complex) support the following operations (for priorities of the " +"operations, see :ref:`operator-summary`):" msgstr "" -"Tüm sayısal türler (karmaşık sayılar hariç) aşağıdaki işlemleri destekler " -"(işlemlerin öncelikleri için bkz. :ref:`operator-summary`):" +"Tüm sayısal türler (karmaşık sayılar hariç) aşağıdaki işlemleri destekler (işlemlerin " +"öncelikleri için bkz. :ref:`operator-summary`):" #: library/stdtypes.rst:275 msgid "Full documentation" @@ -560,12 +520,9 @@ msgid "``complex(re, im)``" msgstr "``complex(re, im)``" #: library/stdtypes.rst:301 -msgid "" -"a complex number with real part *re*, imaginary part *im*. *im* defaults to " -"zero." +msgid "a complex number with real part *re*, imaginary part *im*. *im* defaults to zero." msgstr "" -"gerçek kısmı *re*, sanal kısmı *im* olan bir karmaşık sayı. *im* varsayılan " -"olarak sıfırdır." +"gerçek kısmı *re*, sanal kısmı *im* olan bir karmaşık sayı. *im* varsayılan olarak sıfırdır." #: library/stdtypes.rst:1110 library/stdtypes.rst:3568 msgid "\\(6)" @@ -618,78 +575,69 @@ msgstr "``x ** y``" #: library/stdtypes.rst:322 msgid "" -"Also referred to as integer division. The resultant value is a whole " -"integer, though the result's type is not necessarily int. The result is " -"always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is " -"``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``." +"Also referred to as integer division. The resultant value is a whole integer, though the " +"result's type is not necessarily int. The result is always rounded towards minus infinity: " +"``1//2`` is ``0``, ``(-1)//2`` is ``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``." msgstr "" -"Tam sayılı bölümü olarak da adlandırılır. Elde edilen değer bir tam sayıdır, " -"ancak sonucun türü her zaman int olmayabilir. Sonuç her zaman eksi sonsuza " -"yuvarlanır: ``1//2`` = ``0``, ``(-1)//2`` = ``-1``, ``1//(-2)`` = ``-1``, ve " -"``(-1)//(-2)`` = ``0``." +"Tam sayılı bölümü olarak da adlandırılır. Elde edilen değer bir tam sayıdır, ancak sonucun " +"türü her zaman int olmayabilir. Sonuç her zaman eksi sonsuza yuvarlanır: ``1//2`` = ``0``, " +"``(-1)//2`` = ``-1``, ``1//(-2)`` = ``-1``, ve ``(-1)//(-2)`` = ``0``." #: library/stdtypes.rst:328 -msgid "" -"Not for complex numbers. Instead convert to floats using :func:`abs` if " -"appropriate." +msgid "Not for complex numbers. Instead convert to floats using :func:`abs` if appropriate." msgstr "" -"Karmaşık sayılar için değil. Bunun yerine uygunsa :func:`abs` kullanarak " -"gerçel sayılara dönüştürün." +"Karmaşık sayılar için değil. Bunun yerine uygunsa :func:`abs` kullanarak gerçel sayılara " +"dönüştürün." #: library/stdtypes.rst:340 msgid "" -"Conversion from floating point to integer may round or truncate as in C; see " -"functions :func:`math.floor` and :func:`math.ceil` for well-defined " -"conversions." +"Conversion from floating point to integer may round or truncate as in C; see functions :func:" +"`math.floor` and :func:`math.ceil` for well-defined conversions." msgstr "" -"Gerçel sayının (float) tam sayıya (integer) dönüştürülmesi, C dilinde de " -"olduğu gibi sayının yuvarlanmasına veya kırpılmasına sebep olabilir; iyi " -"tanımlanmış dönüşümler için :func:`math.floor` ve :func:`math.ceil` " -"fonksiyonlarına bakın." +"Gerçel sayının (float) tam sayıya (integer) dönüştürülmesi, C dilinde de olduğu gibi sayının " +"yuvarlanmasına veya kırpılmasına sebep olabilir; iyi tanımlanmış dönüşümler için :func:`math." +"floor` ve :func:`math.ceil` fonksiyonlarına bakın." #: library/stdtypes.rst:345 #, fuzzy msgid "" -"float also accepts the strings \"nan\" and \"inf\" with an optional prefix " -"\"+\" or \"-\" for Not a Number (NaN) and positive or negative infinity." +"float also accepts the strings \"nan\" and \"inf\" with an optional prefix \"+\" or \"-\" for " +"Not a Number (NaN) and positive or negative infinity." msgstr "" -"float ayrıca \"nan\" ve \"inf\" dizelerini, Sayı Değil ( Not a Number -> " -"NaN) ve pozitif veya negatif sonsuzluk için isteğe bağlı bir \"+\" veya \"-" -"\" ön ekiyle kabul eder." +"float ayrıca \"nan\" ve \"inf\" dizelerini, Sayı Değil ( Not a Number -> NaN) ve pozitif veya " +"negatif sonsuzluk için isteğe bağlı bir \"+\" veya \"-\" ön ekiyle kabul eder." #: library/stdtypes.rst:349 msgid "" -"Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for " -"programming languages." +"Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for programming " +"languages." msgstr "" -"Python, diğer programlama dillerinde de olduğu gibi ``pow(0, 0)`` = ``1`` ve " -"``0 ** 0`` = ``1`` şeklinde tanımlar." +"Python, diğer programlama dillerinde de olduğu gibi ``pow(0, 0)`` = ``1`` ve ``0 ** 0`` = " +"``1`` şeklinde tanımlar." #: library/stdtypes.rst:353 msgid "" -"The numeric literals accepted include the digits ``0`` to ``9`` or any " -"Unicode equivalent (code points with the ``Nd`` property)." +"The numeric literals accepted include the digits ``0`` to ``9`` or any Unicode equivalent " +"(code points with the ``Nd`` property)." msgstr "" -"Kabul edilen sayısal değişmezler, ``0`` ile ``9`` arasındaki rakamları veya " -"herhangi bir Unicode eşdeğerini (\"Nd\" özelliğine sahip kod noktaları) " -"içerir." +"Kabul edilen sayısal değişmezler, ``0`` ile ``9`` arasındaki rakamları veya herhangi bir " +"Unicode eş değerini (\"Nd\" özelliğine sahip kod noktaları) içerir." #: library/stdtypes.rst:356 msgid "" -"See https://www.unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType." -"txt for a complete list of code points with the ``Nd`` property." +"See https://www.unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType.txt for a complete " +"list of code points with the ``Nd`` property." msgstr "" -"``Nd`` özelliğine sahip kod noktalarının tam listesi için https://www." -"unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType.txt adresine " -"bakın." +"``Nd`` özelliğine sahip kod noktalarının tam listesi için https://www.unicode.org/" +"Public/13.0.0/ucd/extracted/DerivedNumericType.txt adresine bakın." #: library/stdtypes.rst:360 msgid "" -"All :class:`numbers.Real` types (:class:`int` and :class:`float`) also " -"include the following operations:" +"All :class:`numbers.Real` types (:class:`int` and :class:`float`) also include the following " +"operations:" msgstr "" -"Tüm :class:`numbers.Real` türleri (:class:`int` ve :class:`float`) ayrıca " -"aşağıdaki işlemleri içerir:" +"Tüm :class:`numbers.Real` türleri (:class:`int` ve :class:`float`) ayrıca aşağıdaki işlemleri " +"içerir:" #: library/stdtypes.rst:366 msgid ":func:`math.trunc(\\ x) `" @@ -704,12 +652,10 @@ msgid ":func:`round(x[, n]) `" msgstr ":func:`round(x[, n]) `" #: library/stdtypes.rst:369 -msgid "" -"*x* rounded to *n* digits, rounding half to even. If *n* is omitted, it " -"defaults to 0." +msgid "*x* rounded to *n* digits, rounding half to even. If *n* is omitted, it defaults to 0." msgstr "" -"*x* *n* haneye yuvarlanır, yarıdan çifte yuvarlanır. *n* atlanırsa, *n* " -"varsayılan olarak 0 olur." +"*x* *n* haneye yuvarlanır, yarıdan çifte yuvarlanır. *n* atlanırsa, *n* varsayılan olarak 0 " +"olur." #: library/stdtypes.rst:373 msgid ":func:`math.floor(\\ x) `" @@ -728,11 +674,8 @@ msgid "the least :class:`~numbers.Integral` >= *x*" msgstr "en küçük :class:`~numbers.Integral` >= *x*" #: library/stdtypes.rst:380 -msgid "" -"For additional numeric operations see the :mod:`math` and :mod:`cmath` " -"modules." -msgstr "" -"Ek sayısal işlemler için :mod:`math` ve :mod:`cmath` modüllerine bakın." +msgid "For additional numeric operations see the :mod:`math` and :mod:`cmath` modules." +msgstr "Ek sayısal işlemler için :mod:`math` ve :mod:`cmath` modüllerine bakın." #: library/stdtypes.rst:389 msgid "Bitwise Operations on Integer Types" @@ -740,29 +683,25 @@ msgstr "Tam sayı Türlerinde Bit Düzeyinde İşlemler" #: library/stdtypes.rst:403 msgid "" -"Bitwise operations only make sense for integers. The result of bitwise " -"operations is calculated as though carried out in two's complement with an " -"infinite number of sign bits." +"Bitwise operations only make sense for integers. The result of bitwise operations is " +"calculated as though carried out in two's complement with an infinite number of sign bits." msgstr "" -"Bit düzeyinde işlemler yalnızca tam sayılar için anlamlıdır. Bit düzeyinde " -"işlemlerin sonucu, sonsuz sayıda işaret biti ile ikiye tümleyende " -"gerçekleştiriliyormuş gibi hesaplanır." +"Bit düzeyinde işlemler yalnızca tam sayılar için anlamlıdır. Bit düzeyinde işlemlerin sonucu, " +"sonsuz sayıda işaret biti ile ikiye tümleyende gerçekleştiriliyormuş gibi hesaplanır." #: library/stdtypes.rst:407 msgid "" -"The priorities of the binary bitwise operations are all lower than the " -"numeric operations and higher than the comparisons; the unary operation " -"``~`` has the same priority as the other unary numeric operations (``+`` and " -"``-``)." +"The priorities of the binary bitwise operations are all lower than the numeric operations and " +"higher than the comparisons; the unary operation ``~`` has the same priority as the other " +"unary numeric operations (``+`` and ``-``)." msgstr "" -"İkili bit düzeyinde işlemlerin öncelikleri, sayısal işlemlerden daha düşük " -"ve karşılaştırmalardan daha yüksektir; ``~`` tekli işlemidiğer tekli sayısal " -"işlemlerle (``+`` ve ``-``) aynı önceliğe sahiptir." +"İkili bit düzeyinde işlemlerin öncelikleri, sayısal işlemlerden daha düşük ve " +"karşılaştırmalardan daha yüksektir; ``~`` tekli işlemidiğer tekli sayısal işlemlerle (``+`` ve " +"``-``) aynı önceliğe sahiptir." #: library/stdtypes.rst:411 msgid "This table lists the bitwise operations sorted in ascending priority:" -msgstr "" -"Bu tablo, artan önceliğe göre sıralanmış bit düzeyinde işlemleri listeler:" +msgstr "Bu tablo, artan önceliğe göre sıralanmış bit düzeyinde işlemleri listeler:" #: library/stdtypes.rst:416 msgid "``x | y``" @@ -826,34 +765,26 @@ msgid "the bits of *x* inverted" msgstr "*x* 'in bitleri ters çevrildi" #: library/stdtypes.rst:435 -msgid "" -"Negative shift counts are illegal and cause a :exc:`ValueError` to be raised." -msgstr "" -"Negatif kaydırma sayıları geçersizdir ve :exc:`ValueError` hatasına sebep " -"olur." +msgid "Negative shift counts are illegal and cause a :exc:`ValueError` to be raised." +msgstr "Negatif kaydırma sayıları geçersizdir ve :exc:`ValueError` hatasına sebep olur." #: library/stdtypes.rst:438 -msgid "" -"A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``." -msgstr "*n* bitlik sola kaydırma, ``pow(2, n)`` ile çarpmaya eşdeğerdir." +msgid "A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``." +msgstr "*n* bitlik sola kaydırma, ``pow(2, n)`` ile çarpmaya eş değerdir." #: library/stdtypes.rst:441 -msgid "" -"A right shift by *n* bits is equivalent to floor division by ``pow(2, n)``." -msgstr "" -"*n* bitlik sağa kaydırma, ``pow(2, n)`` ile kat bölümü işlemine eşdeğerdir." +msgid "A right shift by *n* bits is equivalent to floor division by ``pow(2, n)``." +msgstr "*n* bitlik sağa kaydırma, ``pow(2, n)`` ile kat bölümü işlemine eş değerdir." #: library/stdtypes.rst:444 msgid "" -"Performing these calculations with at least one extra sign extension bit in " -"a finite two's complement representation (a working bit-width of ``1 + max(x." -"bit_length(), y.bit_length())`` or more) is sufficient to get the same " -"result as if there were an infinite number of sign bits." +"Performing these calculations with at least one extra sign extension bit in a finite two's " +"complement representation (a working bit-width of ``1 + max(x.bit_length(), y.bit_length())`` " +"or more) is sufficient to get the same result as if there were an infinite number of sign bits." msgstr "" -"Bu hesaplamaları, sonlu ikinin tümleyen temsilinde en az bir ekstra işaret " -"uzatma biti ile yapmak ( ``1 + max(x.bit_length(), y.bit_length())`` veya " -"daha fazla çalışan bit genişliği), sonsuz sayıda işaret biti varmış gibi " -"aynı sonucu elde etmek için yeterlidir." +"Bu hesaplamaları, sonlu ikinin tümleyen temsilinde en az bir ekstra işaret uzatma biti ile " +"yapmak ( ``1 + max(x.bit_length(), y.bit_length())`` veya daha fazla çalışan bit genişliği), " +"sonsuz sayıda işaret biti varmış gibi aynı sonucu elde etmek için yeterlidir." #: library/stdtypes.rst:451 msgid "Additional Methods on Integer Types" @@ -861,34 +792,32 @@ msgstr "Integer (Tam sayı) Türlerinde Ek Metotlar" #: library/stdtypes.rst:453 msgid "" -"The int type implements the :class:`numbers.Integral` :term:`abstract base " -"class`. In addition, it provides a few more methods:" +"The int type implements the :class:`numbers.Integral` :term:`abstract base class`. In " +"addition, it provides a few more methods:" msgstr "" -"Int türü, :class:`numbers.Integral` :term:`abstract base class` 'ı uygular. " -"Ek olarak, birkaç metot daha sağlar:" +"Int türü, :class:`numbers.Integral` :term:`abstract base class` 'ı uygular. Ek olarak, birkaç " +"metot daha sağlar:" #: library/stdtypes.rst:458 msgid "" -"Return the number of bits necessary to represent an integer in binary, " -"excluding the sign and leading zeros::" +"Return the number of bits necessary to represent an integer in binary, excluding the sign and " +"leading zeros::" msgstr "" -"İşaret ve baştaki sıfırlar hariç, ikili sistemde bir tam sayıyı (integer) " -"temsil etmek için gereken bit sayısını döndürür::" +"İşaret ve baştaki sıfırlar hariç, ikili sistemde bir tam sayıyı (integer) temsil etmek için " +"gereken bit sayısını döndürür::" #: library/stdtypes.rst:467 #, fuzzy msgid "" -"More precisely, if ``x`` is nonzero, then ``x.bit_length()`` is the unique " -"positive integer ``k`` such that ``2**(k-1) <= abs(x) < 2**k``. " -"Equivalently, when ``abs(x)`` is small enough to have a correctly rounded " -"logarithm, then ``k = 1 + int(log(abs(x), 2))``. If ``x`` is zero, then ``x." -"bit_length()`` returns ``0``." +"More precisely, if ``x`` is nonzero, then ``x.bit_length()`` is the unique positive integer " +"``k`` such that ``2**(k-1) <= abs(x) < 2**k``. Equivalently, when ``abs(x)`` is small enough " +"to have a correctly rounded logarithm, then ``k = 1 + int(log(abs(x), 2))``. If ``x`` is zero, " +"then ``x.bit_length()`` returns ``0``." msgstr "" -"Daha doğrusu, ``x`` sıfırdan farklıysa, ``x.bit_length()``, ``2**(k-1) <= " -"abs(x) < 2**k`` olacak şekilde benzersiz ``k`` pozitif tam sayıdır. Aynı " -"şekilde, ``abs(x)`` doğru olarak yuvarlatılmış bir logaritmaya sahip olacak " -"kadar küçük olduğunda, ``k = 1 + int(log(abs(x), 2))`` olur. ``x`` sıfır " -"ise, ``x.bit_length()``, ``0`` döndürür." +"Daha doğrusu, ``x`` sıfırdan farklıysa, ``x.bit_length()``, ``2**(k-1) <= abs(x) < 2**k`` " +"olacak şekilde benzersiz ``k`` pozitif tam sayıdır. Aynı şekilde, ``abs(x)`` doğru olarak " +"yuvarlatılmış bir logaritmaya sahip olacak kadar küçük olduğunda, ``k = 1 + int(log(abs(x), " +"2))`` olur. ``x`` sıfır ise, ``x.bit_length()``, ``0`` döndürür." #: library/stdtypes.rst:496 msgid "Equivalent to::" @@ -896,11 +825,11 @@ msgstr "Eşittir::" #: library/stdtypes.rst:484 msgid "" -"Return the number of ones in the binary representation of the absolute value " -"of the integer. This is also known as the population count. Example::" +"Return the number of ones in the binary representation of the absolute value of the integer. " +"This is also known as the population count. Example::" msgstr "" -"Tam sayının mutlak değerinin ikili gösterimindeki birlerin sayısını döndürün. " -"Buna nüfus sayımı da denir. Örneğin::" +"Tam sayının mutlak değerinin ikili gösterimindeki birlerin sayısını döndürün. Buna nüfus " +"sayımı da denir. Örneğin::" #: library/stdtypes.rst:505 msgid "Return an array of bytes representing an integer." @@ -908,38 +837,34 @@ msgstr "Bir tam sayıyı temsil eden bir bayt dizisi döndürür." #: library/stdtypes.rst:517 msgid "" -"The integer is represented using *length* bytes. An :exc:`OverflowError` is " -"raised if the integer is not representable with the given number of bytes." +"The integer is represented using *length* bytes. An :exc:`OverflowError` is raised if the " +"integer is not representable with the given number of bytes." msgstr "" -"Tam sayı, *length* bayt kullanılarak temsil edilir. Tam sayı verilen bayt " -"sayısıyla gösterilemezse :exc:`OverflowError` hatası ortaya çıkar." +"Tam sayı, *length* bayt kullanılarak temsil edilir. Tam sayı verilen bayt sayısıyla " +"gösterilemezse :exc:`OverflowError` hatası ortaya çıkar." #: library/stdtypes.rst:553 msgid "" -"The *byteorder* argument determines the byte order used to represent the " -"integer. If *byteorder* is ``\"big\"``, the most significant byte is at the " -"beginning of the byte array. If *byteorder* is ``\"little\"``, the most " -"significant byte is at the end of the byte array. To request the native " -"byte order of the host system, use :data:`sys.byteorder` as the byte order " -"value." +"The *byteorder* argument determines the byte order used to represent the integer. If " +"*byteorder* is ``\"big\"``, the most significant byte is at the beginning of the byte array. " +"If *byteorder* is ``\"little\"``, the most significant byte is at the end of the byte array. " +"To request the native byte order of the host system, use :data:`sys.byteorder` as the byte " +"order value." msgstr "" -"*byteorder* argümanı, tam sayıyı temsil etmek için kullanılan bayt sırasını " -"belirler. *byteorder* ``\"big\"`` ise, en önemli bayt, bayt dizisinin " -"başındadır. *byteorder* ``\"little\"`` ise, en önemli bayt, bayt dizisinin " -"sonundadır. Ana sistemin yerel bayt sırasını istemek için bayt sırası değeri " -"olarak :data:`sys.byteorder` kullanın." +"*byteorder* argümanı, tam sayıyı temsil etmek için kullanılan bayt sırasını belirler. " +"*byteorder* ``\"big\"`` ise, en önemli bayt, bayt dizisinin başındadır. *byteorder* ``\"little" +"\"`` ise, en önemli bayt, bayt dizisinin sonundadır. Ana sistemin yerel bayt sırasını istemek " +"için bayt sırası değeri olarak :data:`sys.byteorder` kullanın." #: library/stdtypes.rst:528 msgid "" -"The *signed* argument determines whether two's complement is used to " -"represent the integer. If *signed* is ``False`` and a negative integer is " -"given, an :exc:`OverflowError` is raised. The default value for *signed* is " -"``False``." +"The *signed* argument determines whether two's complement is used to represent the integer. " +"If *signed* is ``False`` and a negative integer is given, an :exc:`OverflowError` is raised. " +"The default value for *signed* is ``False``." msgstr "" -"*signed* argümanı, tam sayıyı temsil etmek için ikinin tümleyeninin " -"kullanılıp kullanılmayacağını belirler. *signed* ``False`` ise ve negatif " -"bir tam sayı verilirse, bir :exc:`OverflowError` hatası ortaya çıkar. " -"*signed* için varsayılan değer ``False`` şeklindedir." +"*signed* argümanı, tam sayıyı temsil etmek için ikinin tümleyeninin kullanılıp " +"kullanılmayacağını belirler. *signed* ``False`` ise ve negatif bir tam sayı verilirse, bir :" +"exc:`OverflowError` hatası ortaya çıkar. *signed* için varsayılan değer ``False`` şeklindedir." #: library/stdtypes.rst:537 msgid "Return the integer represented by the given array of bytes." @@ -948,30 +873,25 @@ msgstr "Verilen bayt dizisi tarafından temsil edilen tam sayıyı döndürür." #: library/stdtypes.rst:550 #, fuzzy msgid "" -"The argument *bytes* must either be a :term:`bytes-like object` or an " -"iterable producing bytes." +"The argument *bytes* must either be a :term:`bytes-like object` or an iterable producing bytes." msgstr "" -"*bytes* argümanı ya bir :term:`bytes-like object` ya da yinelenebilir üreten " -"bayt olabilir." +"*bytes* argümanı ya bir :term:`bytes-like object` ya da yinelenebilir üreten bayt olabilir." #: library/stdtypes.rst:560 msgid "" -"The *signed* argument indicates whether two's complement is used to " -"represent the integer." +"The *signed* argument indicates whether two's complement is used to represent the integer." msgstr "" -"*signed* bağımsız değişkeni, tam sayıyı temsil etmek için ikinin tümleyeninin " -"kullanılıp kullanılmadığını gösterir." +"*signed* argümanı, tam sayıyı temsil etmek için ikinin tümleyeninin kullanılıp " +"kullanılmadığını gösterir." #: library/stdtypes.rst:567 msgid "" -"Return a pair of integers whose ratio is exactly equal to the original " -"integer and with a positive denominator. The integer ratio of integers " -"(whole numbers) is always the integer as the numerator and ``1`` as the " -"denominator." +"Return a pair of integers whose ratio is exactly equal to the original integer and with a " +"positive denominator. The integer ratio of integers (whole numbers) is always the integer as " +"the numerator and ``1`` as the denominator." msgstr "" -"Oranı, orijinal tam sayıya tam olarak eşit ve pozitif bir paydaya sahip bir " -"tam sayı çifti döndürür. Integerlerin tam sayı oranı her zaman pay olarak tam " -"sayı ve payda olarak ``1``dir." +"Oranı, orijinal tam sayıya tam olarak eşit ve pozitif bir paydaya sahip bir tam sayı çifti " +"döndürür. Integerlerin tam sayı oranı her zaman pay olarak tam sayı ve payda olarak ``1``dir." #: library/stdtypes.rst:575 msgid "Additional Methods on Float" @@ -979,72 +899,65 @@ msgstr "Gerçel Sayılarda Ek Metotlar" #: library/stdtypes.rst:577 msgid "" -"The float type implements the :class:`numbers.Real` :term:`abstract base " -"class`. float also has the following additional methods." +"The float type implements the :class:`numbers.Real` :term:`abstract base class`. float also " +"has the following additional methods." msgstr "" -"Float türü, :class:`numbers.Real` :term:`abstract base class` 'ı uygular. " -"Float ayrıca aşağıdaki ek metotlara sahiptir." +"Float türü, :class:`numbers.Real` :term:`abstract base class` 'ı uygular. Float ayrıca " +"aşağıdaki ek metotlara sahiptir." #: library/stdtypes.rst:582 msgid "" -"Return a pair of integers whose ratio is exactly equal to the original float " -"and with a positive denominator. Raises :exc:`OverflowError` on infinities " -"and a :exc:`ValueError` on NaNs." +"Return a pair of integers whose ratio is exactly equal to the original float and with a " +"positive denominator. Raises :exc:`OverflowError` on infinities and a :exc:`ValueError` on " +"NaNs." msgstr "" -"Oranı tam olarak orijinal gerçel sayıya eşit ve pozitif bir paydaya sahip " -"bir çift tam sayı döndürür. Sonsuzluklarda :exc `OverflowError` ve NaN'lerde " -"(SayıDeğil) :exc:`ValueError` hataları ortaya çıkar." +"Oranı tam olarak orijinal gerçel sayıya eşit ve pozitif bir paydaya sahip bir çift tam sayı " +"döndürür. Sonsuzluklarda :exc `OverflowError` ve NaN'lerde (SayıDeğil) :exc:`ValueError` " +"hataları ortaya çıkar." #: library/stdtypes.rst:589 msgid "" -"Return ``True`` if the float instance is finite with integral value, and " -"``False`` otherwise::" -msgstr "" -"Float örneği integral değeriyle sonluysa ``True``, aksi takdirde ``False`` " -"döndürür::" +"Return ``True`` if the float instance is finite with integral value, and ``False`` otherwise::" +msgstr "Float örneği integral değeriyle sonluysa ``True``, aksi takdirde ``False`` döndürür::" #: library/stdtypes.rst:597 msgid "" -"Two methods support conversion to and from hexadecimal strings. Since " -"Python's floats are stored internally as binary numbers, converting a float " -"to or from a *decimal* string usually involves a small rounding error. In " -"contrast, hexadecimal strings allow exact representation and specification " -"of floating-point numbers. This can be useful when debugging, and in " +"Two methods support conversion to and from hexadecimal strings. Since Python's floats are " +"stored internally as binary numbers, converting a float to or from a *decimal* string usually " +"involves a small rounding error. In contrast, hexadecimal strings allow exact representation " +"and specification of floating-point numbers. This can be useful when debugging, and in " "numerical work." msgstr "" -"İki yöntem, onaltılık dizelere dönüştürmeyi destekler. Python'un floatları " -"dahili olarak ikili sayılar olarak depolandığından, bir kayan noktayı " -"*decimal* (ondalık) dizgeye dönüştürmek veya bu karakter dizisinden " -"dönüştürmek genellikle küçük bir yuvarlama hatası içerir. Buna karşılık, " -"onaltılık diziler, gerçel sayıların tam olarak gösterilmesine ve " -"belirtilmesine izin verir. Bu, hata ayıklama sırasında ve sayısal " -"çalışmalarda yararlı olabilir." +"İki yöntem, onaltılık dizelere dönüştürmeyi destekler. Python'un floatları dahili olarak ikili " +"sayılar olarak depolandığından, bir kayan noktayı *decimal* (ondalık) dizgeye dönüştürmek veya " +"bu karakter dizisinden dönüştürmek genellikle küçük bir yuvarlama hatası içerir. Buna " +"karşılık, onaltılık diziler, gerçel sayıların tam olarak gösterilmesine ve belirtilmesine izin " +"verir. Bu, hata ayıklama sırasında ve sayısal çalışmalarda yararlı olabilir." #: library/stdtypes.rst:608 msgid "" -"Return a representation of a floating-point number as a hexadecimal string. " -"For finite floating-point numbers, this representation will always include a " -"leading ``0x`` and a trailing ``p`` and exponent." +"Return a representation of a floating-point number as a hexadecimal string. For finite " +"floating-point numbers, this representation will always include a leading ``0x`` and a " +"trailing ``p`` and exponent." msgstr "" -"Bir gerçel sayının temsilini, onaltılık bir dize olarak döndürür. Sonlu " -"gerçel sayılar için, bu gösterim her zaman başında bir ``0x`` ve sonunda bir " -"``p`` ve üs içerecektir." +"Bir gerçel sayının temsilini, onaltılık bir dize olarak döndürür. Sonlu gerçel sayılar için, " +"bu gösterim her zaman başında bir ``0x`` ve sonunda bir ``p`` ve üs içerecektir." #: library/stdtypes.rst:616 msgid "" -"Class method to return the float represented by a hexadecimal string *s*. " -"The string *s* may have leading and trailing whitespace." +"Class method to return the float represented by a hexadecimal string *s*. The string *s* may " +"have leading and trailing whitespace." msgstr "" -"Gerçel sayıyı temsil eden bir onaltılık dize *s*'yi döndüren için sınıf " -"(class) metodu. *s* dizesinin başında ve sonunda boşluk olabilir." +"Gerçel sayıyı temsil eden bir onaltılık dize *s*'yi döndüren için sınıf (class) metodu. *s* " +"dizesinin başında ve sonunda boşluk olabilir." #: library/stdtypes.rst:621 msgid "" -"Note that :meth:`float.hex` is an instance method, while :meth:`float." -"fromhex` is a class method." +"Note that :meth:`float.hex` is an instance method, while :meth:`float.fromhex` is a class " +"method." msgstr "" -":meth:`float.hex` 'in bir örnek (instance) metodu olduğunu, :meth:`float." -"fromhex` 'in ise bir sınıf (class) metodu olduğunu unutmayın." +":meth:`float.hex` 'in bir örnek (instance) metodu olduğunu, :meth:`float.fromhex` 'in ise bir " +"sınıf (class) metodu olduğunu unutmayın." #: library/stdtypes.rst:624 msgid "A hexadecimal string takes the form::" @@ -1053,47 +966,42 @@ msgstr "Onaltılık bir dize şu biçimi alır::" #: library/stdtypes.rst:628 #, fuzzy msgid "" -"where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and " -"``fraction`` are strings of hexadecimal digits, and ``exponent`` is a " -"decimal integer with an optional leading sign. Case is not significant, and " -"there must be at least one hexadecimal digit in either the integer or the " -"fraction. This syntax is similar to the syntax specified in section 6.4.4.2 " -"of the C99 standard, and also to the syntax used in Java 1.5 onwards. In " -"particular, the output of :meth:`float.hex` is usable as a hexadecimal " -"floating-point literal in C or Java code, and hexadecimal strings produced " -"by C's ``%a`` format character or Java's ``Double.toHexString`` are accepted " -"by :meth:`float.fromhex`." -msgstr "" -"burada opsiyonel ``işaret``, ``+`` veya ``-`` olabilir; ``tam sayı`` ve " -"``kesir`` onaltılı basamaklı dizelerdir; ``üs`` opsiyonel ön işaretle " -"birlikte ondalık tam sayıdır. Büyük/küçük harf önemli değildir ve tam sayı " -"veya kesirde en az bir onaltılık basamak olmalıdır. Bu söz dizimi, C99 " -"standardının 6.4.4.2 bölümünde belirtilen söz dizimine ve ayrıca Java 1.5'ten " -"itibaren kullanılan söz dizimine benzer. Özellikle, :meth:`float.hex` 'in " -"çıktısı, C veya Java kodunda bir onaltılık gerçel değişmezi olarak " -"kullanılabilir ve C'nin ``%a`` biçim karakteri veya Java'nın ``Double." -"toHexString`` 'i tarafından üretilen onaltılık dizeler :meth:`float.fromhex` " -"tarafından kabul edilir." +"where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and ``fraction`` are " +"strings of hexadecimal digits, and ``exponent`` is a decimal integer with an optional leading " +"sign. Case is not significant, and there must be at least one hexadecimal digit in either the " +"integer or the fraction. This syntax is similar to the syntax specified in section 6.4.4.2 of " +"the C99 standard, and also to the syntax used in Java 1.5 onwards. In particular, the output " +"of :meth:`float.hex` is usable as a hexadecimal floating-point literal in C or Java code, and " +"hexadecimal strings produced by C's ``%a`` format character or Java's ``Double.toHexString`` " +"are accepted by :meth:`float.fromhex`." +msgstr "" +"burada opsiyonel ``işaret``, ``+`` veya ``-`` olabilir; ``tam sayı`` ve ``kesir`` onaltılı " +"basamaklı dizelerdir; ``üs`` opsiyonel ön işaretle birlikte ondalık tam sayıdır. Büyük/küçük " +"harf önemli değildir ve tam sayı veya kesirde en az bir onaltılık basamak olmalıdır. Bu söz " +"dizimi, C99 standardının 6.4.4.2 bölümünde belirtilen söz dizimine ve ayrıca Java 1.5'ten " +"itibaren kullanılan söz dizimine benzer. Özellikle, :meth:`float.hex` 'in çıktısı, C veya " +"Java kodunda bir onaltılık gerçel değişmezi olarak kullanılabilir ve C'nin ``%a`` biçim " +"karakteri veya Java'nın ``Double.toHexString`` 'i tarafından üretilen onaltılık dizeler :meth:" +"`float.fromhex` tarafından kabul edilir." #: library/stdtypes.rst:641 msgid "" -"Note that the exponent is written in decimal rather than hexadecimal, and " -"that it gives the power of 2 by which to multiply the coefficient. For " -"example, the hexadecimal string ``0x3.a7p10`` represents the floating-point " -"number ``(3 + 10./16 + 7./16**2) * 2.0**10``, or ``3740.0``::" +"Note that the exponent is written in decimal rather than hexadecimal, and that it gives the " +"power of 2 by which to multiply the coefficient. For example, the hexadecimal string ``0x3." +"a7p10`` represents the floating-point number ``(3 + 10./16 + 7./16**2) * 2.0**10``, or " +"``3740.0``::" msgstr "" -"Üssün onaltılık değil ondalık olarak yazıldığına ve katsayıyı çarpmak için " -"2'nin gücünü verdiğine dikkat edin. Örneğin, ``0x3.a7p10`` onaltılık dizesi, " -"``(3 + 10./16 + 7./16**2) * 2.0**10`` veya ``3740.0`` gerçel sayısını temsil " -"eder::" +"Üssün onaltılık değil ondalık olarak yazıldığına ve katsayıyı çarpmak için 2'nin gücünü " +"verdiğine dikkat edin. Örneğin, ``0x3.a7p10`` onaltılık dizesi, ``(3 + 10./16 + 7./16**2) * " +"2.0**10`` veya ``3740.0`` gerçel sayısını temsil eder::" #: library/stdtypes.rst:651 msgid "" -"Applying the reverse conversion to ``3740.0`` gives a different hexadecimal " -"string representing the same number::" +"Applying the reverse conversion to ``3740.0`` gives a different hexadecimal string " +"representing the same number::" msgstr "" -"``3740.0`` 'a ters dönüştürme uygulamak, aynı sayıyı temsil eden farklı bir " -"onaltılık dize verir::" +"``3740.0`` 'a ters dönüştürme uygulamak, aynı sayıyı temsil eden farklı bir onaltılık dize " +"verir::" #: library/stdtypes.rst:661 msgid "Hashing of numeric types" @@ -1101,37 +1009,33 @@ msgstr "Sayısal türlerin hashlemesi" #: library/stdtypes.rst:663 msgid "" -"For numbers ``x`` and ``y``, possibly of different types, it's a requirement " -"that ``hash(x) == hash(y)`` whenever ``x == y`` (see the :meth:`~object." -"__hash__` method documentation for more details). For ease of " -"implementation and efficiency across a variety of numeric types (including :" -"class:`int`, :class:`float`, :class:`decimal.Decimal` and :class:`fractions." -"Fraction`) Python's hash for numeric types is based on a single mathematical " -"function that's defined for any rational number, and hence applies to all " -"instances of :class:`int` and :class:`fractions.Fraction`, and all finite " -"instances of :class:`float` and :class:`decimal.Decimal`. Essentially, this " -"function is given by reduction modulo ``P`` for a fixed prime ``P``. The " -"value of ``P`` is made available to Python as the :attr:`modulus` attribute " -"of :data:`sys.hash_info`." -msgstr "" -"Muhtemelen farklı türlerdeki ``x`` ve ``y`` sayıları için, ``x == y`` " -"olduğunda ``hash(x) == hash(y)`` olması bir gerekliliktir (bkz. :meth:" -"`~object.__hash__`). Çeşitli sayısal türler arasında uygulama kolaylığı ve " -"verimlilik için (:class:`int`, :class:`float`, :class:`decimal.Decimal` ve :" -"class:`fractions.Fraction` dahil) Python'un sayısal türler için ``hash`` 'i, " -"herhangi bir rasyonel sayı için tanımlanmış tek bir matematiksel fonksiyona " -"dayanır ve bu nedenle :class:`int` ve :class:`fractions` 'ın tüm örnekleri " -"için geçerlidir. Esasen, bu fonksiyon sabit bir asal sayı olan ``P`` için " -"``reduction modulo`` ``P`` ile verilir. ``P`` değeri Python'a :data:`sys." -"hash_info` 'nun :attr:`modulus` özelliği olarak sunulur." +"For numbers ``x`` and ``y``, possibly of different types, it's a requirement that ``hash(x) == " +"hash(y)`` whenever ``x == y`` (see the :meth:`~object.__hash__` method documentation for more " +"details). For ease of implementation and efficiency across a variety of numeric types " +"(including :class:`int`, :class:`float`, :class:`decimal.Decimal` and :class:`fractions." +"Fraction`) Python's hash for numeric types is based on a single mathematical function that's " +"defined for any rational number, and hence applies to all instances of :class:`int` and :class:" +"`fractions.Fraction`, and all finite instances of :class:`float` and :class:`decimal." +"Decimal`. Essentially, this function is given by reduction modulo ``P`` for a fixed prime " +"``P``. The value of ``P`` is made available to Python as the :attr:`modulus` attribute of :" +"data:`sys.hash_info`." +msgstr "" +"Muhtemelen farklı türlerdeki ``x`` ve ``y`` sayıları için, ``x == y`` olduğunda ``hash(x) == " +"hash(y)`` olması bir gerekliliktir (bkz. :meth:`~object.__hash__`). Çeşitli sayısal türler " +"arasında uygulama kolaylığı ve verimlilik için (:class:`int`, :class:`float`, :class:`decimal." +"Decimal` ve :class:`fractions.Fraction` dahil) Python'un sayısal türler için ``hash`` 'i, " +"herhangi bir rasyonel sayı için tanımlanmış tek bir matematiksel fonksiyona dayanır ve bu " +"nedenle :class:`int` ve :class:`fractions` 'ın tüm örnekleri için geçerlidir. Esasen, bu " +"fonksiyon sabit bir asal sayı olan ``P`` için ``reduction modulo`` ``P`` ile verilir. ``P`` " +"değeri Python'a :data:`sys.hash_info` 'nun :attr:`modulus` özelliği olarak sunulur." #: library/stdtypes.rst:678 msgid "" -"Currently, the prime used is ``P = 2**31 - 1`` on machines with 32-bit C " -"longs and ``P = 2**61 - 1`` on machines with 64-bit C longs." +"Currently, the prime used is ``P = 2**31 - 1`` on machines with 32-bit C longs and ``P = 2**61 " +"- 1`` on machines with 64-bit C longs." msgstr "" -"Şu anda kullanılan asal sayı, 32 bit C uzunluğundaki makinelerde ``P = 2**31 " -"- 1`` ve 64-bit C uzunluğundaki makinelerde ``P = 2**61 - 1`` şeklindedir." +"Şu anda kullanılan asal sayı, 32 bit C uzunluğundaki makinelerde ``P = 2**31 - 1`` ve 64-bit C " +"uzunluğundaki makinelerde ``P = 2**61 - 1`` şeklindedir." #: library/stdtypes.rst:681 msgid "Here are the rules in detail:" @@ -1139,68 +1043,61 @@ msgstr "İşte ayrıntılı kurallar:" #: library/stdtypes.rst:683 msgid "" -"If ``x = m / n`` is a nonnegative rational number and ``n`` is not divisible " -"by ``P``, define ``hash(x)`` as ``m * invmod(n, P) % P``, where ``invmod(n, " -"P)`` gives the inverse of ``n`` modulo ``P``." +"If ``x = m / n`` is a nonnegative rational number and ``n`` is not divisible by ``P``, define " +"``hash(x)`` as ``m * invmod(n, P) % P``, where ``invmod(n, P)`` gives the inverse of ``n`` " +"modulo ``P``." msgstr "" -"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n`` ``P`` ile " -"bölünemiyorsa, ``hash(x)`` 'i ``m * invmod(n, P) % P`` olarak tanımlayın, bu " -"durumda ``invmod(n, P)``, ``n`` modül ``P`` 'nin tersini verir." +"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n`` ``P`` ile bölünemiyorsa, " +"``hash(x)`` 'i ``m * invmod(n, P) % P`` olarak tanımlayın, bu durumda ``invmod(n, P)``, ``n`` " +"modül ``P`` 'nin tersini verir." #: library/stdtypes.rst:687 msgid "" -"If ``x = m / n`` is a nonnegative rational number and ``n`` is divisible by " -"``P`` (but ``m`` is not) then ``n`` has no inverse modulo ``P`` and the rule " -"above doesn't apply; in this case define ``hash(x)`` to be the constant " -"value ``sys.hash_info.inf``." +"If ``x = m / n`` is a nonnegative rational number and ``n`` is divisible by ``P`` (but ``m`` " +"is not) then ``n`` has no inverse modulo ``P`` and the rule above doesn't apply; in this case " +"define ``hash(x)`` to be the constant value ``sys.hash_info.inf``." msgstr "" -"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n``, ``P`` ile " -"bölünebiliyorsa (ancak ``m`` değildir), o zaman ``n`` 'nin ``P`` şeklinde " -"ters modülü yoktur ve yukarıdaki kural geçerli değildir; bu durumda " -"``hash(x)`` i ``sys.hash_info.inf`` olarak tanımlayın." +"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n``, ``P`` ile bölünebiliyorsa (ancak " +"``m`` değildir), o zaman ``n`` 'nin ``P`` şeklinde ters modülü yoktur ve yukarıdaki kural " +"geçerli değildir; bu durumda ``hash(x)`` i ``sys.hash_info.inf`` olarak tanımlayın." #: library/stdtypes.rst:692 msgid "" -"If ``x = m / n`` is a negative rational number define ``hash(x)`` as ``-" -"hash(-x)``. If the resulting hash is ``-1``, replace it with ``-2``." +"If ``x = m / n`` is a negative rational number define ``hash(x)`` as ``-hash(-x)``. If the " +"resulting hash is ``-1``, replace it with ``-2``." msgstr "" -"``x = m / n`` negatif bir rasyonel sayıysa, ``hash(x)`` 'i ``-hash(-x)`` " -"olarak tanımlayın. Elde edilen ``hash`` ``-1`` ise, bunu ``-2`` ile " -"değiştirin." +"``x = m / n`` negatif bir rasyonel sayıysa, ``hash(x)`` 'i ``-hash(-x)`` olarak tanımlayın. " +"Elde edilen ``hash`` ``-1`` ise, bunu ``-2`` ile değiştirin." #: library/stdtypes.rst:696 msgid "" -"The particular values ``sys.hash_info.inf`` and ``-sys.hash_info.inf`` are " -"used as hash values for positive infinity or negative infinity " -"(respectively)." +"The particular values ``sys.hash_info.inf`` and ``-sys.hash_info.inf`` are used as hash values " +"for positive infinity or negative infinity (respectively)." msgstr "" -"``sys.hash_info.inf`` ve ``-sys.hash_info.inf``, pozitif sonsuz veya negatif " -"sonsuz (sırasıyla) için ``hash`` değerleri olarak kullanılır." +"``sys.hash_info.inf`` ve ``-sys.hash_info.inf``, pozitif sonsuz veya negatif sonsuz " +"(sırasıyla) için ``hash`` değerleri olarak kullanılır." #: library/stdtypes.rst:700 #, fuzzy msgid "" -"For a :class:`complex` number ``z``, the hash values of the real and " -"imaginary parts are combined by computing ``hash(z.real) + sys.hash_info." -"imag * hash(z.imag)``, reduced modulo ``2**sys.hash_info.width`` so that it " -"lies in ``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - " -"1))``. Again, if the result is ``-1``, it's replaced with ``-2``." +"For a :class:`complex` number ``z``, the hash values of the real and imaginary parts are " +"combined by computing ``hash(z.real) + sys.hash_info.imag * hash(z.imag)``, reduced modulo " +"``2**sys.hash_info.width`` so that it lies in ``range(-2**(sys.hash_info.width - 1), 2**(sys." +"hash_info.width - 1))``. Again, if the result is ``-1``, it's replaced with ``-2``." msgstr "" -"Bir :class:`complex` sayı ``z`` için, gerçek ve sanal parçaların ```hash`` " -"değerleri, ``hash(z.real) + sys.hash_info.imag * hash(z.imag)`` , ``reduced " -"modulo`` ``2**sys.hash_info.width`` hesaplanarak birleştirilir, böylece " -"``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - 1))`` 'de " -"bulunur. Yine sonuç ``-1`` ise, ``-2`` ile değiştirilir." +"Bir :class:`complex` sayı ``z`` için, gerçek ve sanal parçaların ```hash`` değerleri, ``hash(z." +"real) + sys.hash_info.imag * hash(z.imag)`` , ``reduced modulo`` ``2**sys.hash_info.width`` " +"hesaplanarak birleştirilir, böylece ``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info." +"width - 1))`` 'de bulunur. Yine sonuç ``-1`` ise, ``-2`` ile değiştirilir." #: library/stdtypes.rst:708 msgid "" -"To clarify the above rules, here's some example Python code, equivalent to " -"the built-in hash, for computing the hash of a rational number, :class:" -"`float`, or :class:`complex`::" +"To clarify the above rules, here's some example Python code, equivalent to the built-in hash, " +"for computing the hash of a rational number, :class:`float`, or :class:`complex`::" msgstr "" -"Yukarıdaki kuralları açıklığa kavuşturmak için, :class:`float` veya :class:" -"`complex` olan rasyonel bir sayının ``hash`` 'ini hesaplamak için gömülü " -"``hash`` 'e eşdeğer örnek Python kodu::" +"Yukarıdaki kuralları açıklığa kavuşturmak için, :class:`float` veya :class:`complex` olan " +"rasyonel bir sayının ``hash`` 'ini hesaplamak için gömülü ``hash`` 'e eş değer örnek Python " +"kodu::" #: library/stdtypes.rst:763 msgid "Iterator Types" @@ -1208,874 +1105,988 @@ msgstr "Yineleyici Türleri" #: library/stdtypes.rst:771 msgid "" -"Python supports a concept of iteration over containers. This is implemented " -"using two distinct methods; these are used to allow user-defined classes to " -"support iteration. Sequences, described below in more detail, always " -"support the iteration methods." +"Python supports a concept of iteration over containers. This is implemented using two " +"distinct methods; these are used to allow user-defined classes to support iteration. " +"Sequences, described below in more detail, always support the iteration methods." msgstr "" -"Python, konteynerler üzerinde yineleme kavramını destekler. Bu, iki farklı " -"metot kullanılarak uygulanır; bunlar, kullanıcı tanımlı sınıfların " -"yinelemeyi desteklemesine izin vermek için kullanılır. Aşağıda daha " -"ayrıntılı olarak açıklanan diziler, her zaman yineleme metotlarını " +"Python, konteynerler üzerinde yineleme kavramını destekler. Bu, iki farklı metot kullanılarak " +"uygulanır; bunlar, kullanıcı tanımlı sınıfların yinelemeyi desteklemesine izin vermek için " +"kullanılır. Aşağıda daha ayrıntılı olarak açıklanan diziler, her zaman yineleme metotlarını " "destekler." #: library/stdtypes.rst:776 -msgid "" -"One method needs to be defined for container objects to provide :term:" -"`iterable` support:" +msgid "One method needs to be defined for container objects to provide :term:`iterable` support:" msgstr "" -"Kapsayıcı nesnelerinin :term:`iterable` desteği sağlaması için bir metodun " -"tanımlanması gerekir:" +"Container nesnelerinin :term:`iterable` desteği sağlaması için bir metodun tanımlanması " +"gerekir:" #: library/stdtypes.rst:783 msgid "" -"Return an :term:`iterator` object. The object is required to support the " -"iterator protocol described below. If a container supports different types " -"of iteration, additional methods can be provided to specifically request " -"iterators for those iteration types. (An example of an object supporting " -"multiple forms of iteration would be a tree structure which supports both " -"breadth-first and depth-first traversal.) This method corresponds to the :c:" -"member:`~PyTypeObject.tp_iter` slot of the type structure for Python objects " -"in the Python/C API." +"Return an :term:`iterator` object. The object is required to support the iterator protocol " +"described below. If a container supports different types of iteration, additional methods can " +"be provided to specifically request iterators for those iteration types. (An example of an " +"object supporting multiple forms of iteration would be a tree structure which supports both " +"breadth-first and depth-first traversal.) This method corresponds to the :c:member:" +"`~PyTypeObject.tp_iter` slot of the type structure for Python objects in the Python/C API." msgstr "" +"Bir :term:`iterator` nesnesi döndürür. Nesnenin aşağıda açıklanan yineleyici protokolünü " +"desteklemesi gerekir. Bir container, farklı yineleme türlerini destekliyorsa, bu yineleme " +"türleri için özel olarak yineleyiciler istemek için ek yöntemler sağlanabilir. (Birden çok " +"yineleme biçimini destekleyen bir nesneye örnek olarak hem genişlik öncelikli hem de derinlik " +"öncelikli geçişi destekleyen bir ağaç yapısı verilebilir.) Bu metot, Python/C API'sindeki " +"Python nesneleri için tür yapısının :c:member:`~PyTypeObject.tp_iter` yuvasına karşılık gelir." #: library/stdtypes.rst:792 msgid "" -"The iterator objects themselves are required to support the following two " -"methods, which together form the :dfn:`iterator protocol`:" +"The iterator objects themselves are required to support the following two methods, which " +"together form the :dfn:`iterator protocol`:" msgstr "" +"Yineleyici nesnelerinin kendilerinin, birlikte :dfn:`iterator protocol` 'ü oluşturan aşağıdaki " +"iki yöntemi desteklemesi gerekir:" #: library/stdtypes.rst:798 msgid "" -"Return the :term:`iterator` object itself. This is required to allow both " -"containers and iterators to be used with the :keyword:`for` and :keyword:" -"`in` statements. This method corresponds to the :c:member:`~PyTypeObject." -"tp_iter` slot of the type structure for Python objects in the Python/C API." +"Return the :term:`iterator` object itself. This is required to allow both containers and " +"iterators to be used with the :keyword:`for` and :keyword:`in` statements. This method " +"corresponds to the :c:member:`~PyTypeObject.tp_iter` slot of the type structure for Python " +"objects in the Python/C API." msgstr "" +":term:`iterator` nesnesinin kendisini döndürür. Bu, hem containerların hem de " +"yineleyicilerin :keyword:`for` ve :keyword:`in` ifadeleriyle birlikte kullanılmasına izin " +"vermek için gereklidir. Bu metot, Python/C API'sindeki Python nesneleri için tür yapısının :c:" +"member:`~PyTypeObject.tp_iter` yuvasına karşılık gelir." #: library/stdtypes.rst:807 msgid "" -"Return the next item from the :term:`iterator`. If there are no further " -"items, raise the :exc:`StopIteration` exception. This method corresponds to " -"the :c:member:`~PyTypeObject.tp_iternext` slot of the type structure for " -"Python objects in the Python/C API." +"Return the next item from the :term:`iterator`. If there are no further items, raise the :exc:" +"`StopIteration` exception. This method corresponds to the :c:member:`~PyTypeObject." +"tp_iternext` slot of the type structure for Python objects in the Python/C API." msgstr "" +":term:`iterator` 'den sonraki öğeyi döndürür. Başka öğe yoksa, :exc:`StopIteration` hatasını " +"verir. Bu metot, Python/C API'sindeki Python nesneleri için tür yapısının :c:member:" +"`~PyTypeObject.tp_iternext` yuvasına karşılık gelir." #: library/stdtypes.rst:812 msgid "" -"Python defines several iterator objects to support iteration over general " -"and specific sequence types, dictionaries, and other more specialized " -"forms. The specific types are not important beyond their implementation of " -"the iterator protocol." +"Python defines several iterator objects to support iteration over general and specific " +"sequence types, dictionaries, and other more specialized forms. The specific types are not " +"important beyond their implementation of the iterator protocol." msgstr "" +"Python, genel ve özel dizi türleri, sözlükler ve diğer daha özel formlar üzerinde yinelemeyi " +"desteklemek için birkaç yineleyici nesnesi tanımlar. Belirli türler, yineleyici protokolünün " +"uygulanmasının ötesinde önemli değildir." #: library/stdtypes.rst:817 msgid "" -"Once an iterator's :meth:`~iterator.__next__` method raises :exc:" -"`StopIteration`, it must continue to do so on subsequent calls. " -"Implementations that do not obey this property are deemed broken." +"Once an iterator's :meth:`~iterator.__next__` method raises :exc:`StopIteration`, it must " +"continue to do so on subsequent calls. Implementations that do not obey this property are " +"deemed broken." msgstr "" +"Bir yineleyicinin :meth:`~iterator.__next__` yöntemi :exc:`StopIteration` hatasını verdiğinde, " +"sonraki çağrılarda bunu yapmaya devam etmelidir. Bu özelliğe uymayan uygulamalar bozuk sayılır." #: library/stdtypes.rst:825 msgid "Generator Types" -msgstr "" +msgstr "Oluşturucu Tipleri" #: library/stdtypes.rst:827 msgid "" -"Python's :term:`generator`\\s provide a convenient way to implement the " -"iterator protocol. If a container object's :meth:`__iter__` method is " -"implemented as a generator, it will automatically return an iterator object " -"(technically, a generator object) supplying the :meth:`__iter__` and :meth:" -"`~generator.__next__` methods. More information about generators can be " +"Python's :term:`generator`\\s provide a convenient way to implement the iterator protocol. If " +"a container object's :meth:`__iter__` method is implemented as a generator, it will " +"automatically return an iterator object (technically, a generator object) supplying the :meth:" +"`__iter__` and :meth:`~generator.__next__` methods. More information about generators can be " "found in :ref:`the documentation for the yield expression `." msgstr "" +"Python'un :term:`generator`\\s, yineleyici protokolünü uygulamak için uygun bir yol sağlar. " +"Bir container nesnesinin :meth:`__iter__` yöntemi bir oluşturucu olarak uygulanırsa, otomatik " +"olarak :meth:`__iter__` ve :meth:`~generator.__next__` yöntemlerini sağlayan bir yineleyici " +"nesne (teknik olarak bir oluşturucu nesnesi) döndürür. Oluşturucular hakkında daha fazla " +"bilgi :ref:`the documentation for the yield expression ` adresinde bulunabilir." #: library/stdtypes.rst:839 msgid "Sequence Types --- :class:`list`, :class:`tuple`, :class:`range`" -msgstr "" +msgstr "Dizi Tipleri --- :class:`list`, :class:`tuple`, :class:`range`" #: library/stdtypes.rst:841 msgid "" -"There are three basic sequence types: lists, tuples, and range objects. " -"Additional sequence types tailored for processing of :ref:`binary data " -"` and :ref:`text strings ` are described in dedicated " -"sections." +"There are three basic sequence types: lists, tuples, and range objects. Additional sequence " +"types tailored for processing of :ref:`binary data ` and :ref:`text strings " +"` are described in dedicated sections." msgstr "" +"Üç temel dizi türü vardır: listeler, demetler ve aralık nesneleri. :ref:`binary data " +"` ve :ref:`text strings ` 'in işlenmesi için uyarlanmış ek dizi türleri, " +"özel bölümlerde açıklanmıştır." #: library/stdtypes.rst:850 msgid "Common Sequence Operations" -msgstr "" +msgstr "Yaygın Dizi İşlemleri" #: library/stdtypes.rst:854 msgid "" -"The operations in the following table are supported by most sequence types, " -"both mutable and immutable. The :class:`collections.abc.Sequence` ABC is " -"provided to make it easier to correctly implement these operations on custom " -"sequence types." +"The operations in the following table are supported by most sequence types, both mutable and " +"immutable. The :class:`collections.abc.Sequence` ABC is provided to make it easier to " +"correctly implement these operations on custom sequence types." msgstr "" +"Aşağıdaki tablodaki işlemler, hem değiştirilebilir hem de değiştirilemez olan çoğu dizi türü " +"tarafından desteklenir. :class:`collections.abc.Sequence` ABC, bu işlemleri özel dize " +"türlerinde doğru şekilde uygulamayı kolaylaştırmak için sağlanmıştır." #: library/stdtypes.rst:859 msgid "" -"This table lists the sequence operations sorted in ascending priority. In " -"the table, *s* and *t* are sequences of the same type, *n*, *i*, *j* and *k* " -"are integers and *x* is an arbitrary object that meets any type and value " -"restrictions imposed by *s*." +"This table lists the sequence operations sorted in ascending priority. In the table, *s* and " +"*t* are sequences of the same type, *n*, *i*, *j* and *k* are integers and *x* is an arbitrary " +"object that meets any type and value restrictions imposed by *s*." msgstr "" +"Bu tablo artan önceliğe göre sıralanmış dizi işlemlerini listeler. Tabloda *s* ve *t* aynı " +"türden dizilerdir, *n*, *i*, *j* ve *k* tam sayılardır ve *x*, *s* tarafından dayatılan her " +"tür ve değer kısıtlamasını karşılayan isteğe bağlı bir nesnedir." #: library/stdtypes.rst:864 msgid "" -"The ``in`` and ``not in`` operations have the same priorities as the " -"comparison operations. The ``+`` (concatenation) and ``*`` (repetition) " -"operations have the same priority as the corresponding numeric operations. " -"[3]_" +"The ``in`` and ``not in`` operations have the same priorities as the comparison operations. " +"The ``+`` (concatenation) and ``*`` (repetition) operations have the same priority as the " +"corresponding numeric operations. [3]_" msgstr "" +"``in`` ve ``not in`` işlemleri, karşılaştırma işlemleriyle aynı önceliklere sahiptir. ``+`` " +"(birleştirme) ve ``*`` (yineleme) işlemleri, karşılık gelen sayısal işlemlerle aynı önceliğe " +"sahiptir. [3]_" #: library/stdtypes.rst:885 msgid "``x in s``" -msgstr "" +msgstr "``x in s``" #: library/stdtypes.rst:885 msgid "``True`` if an item of *s* is equal to *x*, else ``False``" -msgstr "" +msgstr "*s* 'nin bir öğesi *x* 'e eşitse ``True``, aksi takdirde ``False``" #: library/stdtypes.rst:888 msgid "``x not in s``" -msgstr "" +msgstr "``x not in s``" #: library/stdtypes.rst:888 msgid "``False`` if an item of *s* is equal to *x*, else ``True``" -msgstr "" +msgstr "*s* 'nin bir öğesi *x* 'e eşitse ``False``, aksi taktirde ``True``" #: library/stdtypes.rst:891 msgid "``s + t``" -msgstr "" +msgstr "``s + t``" #: library/stdtypes.rst:891 msgid "the concatenation of *s* and *t*" -msgstr "" +msgstr "*s* ve *t* 'nin birleşimi" #: library/stdtypes.rst:891 msgid "(6)(7)" -msgstr "" +msgstr "(6)(7)" #: library/stdtypes.rst:894 msgid "``s * n`` or ``n * s``" -msgstr "" +msgstr "``s * n`` veya ``n * s``" #: library/stdtypes.rst:894 msgid "equivalent to adding *s* to itself *n* times" -msgstr "" +msgstr "*s* 'yi kendisine *n* kez eklemeye eş değer" #: library/stdtypes.rst:894 msgid "(2)(7)" -msgstr "" +msgstr "(2)(7)" #: library/stdtypes.rst:897 msgid "``s[i]``" -msgstr "" +msgstr "``s[i]``" #: library/stdtypes.rst:897 msgid "*i*\\ th item of *s*, origin 0" -msgstr "" +msgstr "*s* 'nin *i*\\ 'inci öğesi, orijin 0" #: library/stdtypes.rst:899 msgid "``s[i:j]``" -msgstr "" +msgstr "``s[i:j]``" #: library/stdtypes.rst:899 msgid "slice of *s* from *i* to *j*" -msgstr "" +msgstr "*s* 'nin *i* 'den *j* 'ye kadar olan dilimi" #: library/stdtypes.rst:899 msgid "(3)(4)" -msgstr "" +msgstr "(3)(4)" #: library/stdtypes.rst:901 msgid "``s[i:j:k]``" -msgstr "" +msgstr "``s[i:j:k]``" #: library/stdtypes.rst:901 msgid "slice of *s* from *i* to *j* with step *k*" msgstr "" +"*s* 'nin *i* 'den *j* 'ye kadar olan dilimi, *k* 'lik adımlarla (örneğin *k* = 2 ise, ikişer " +"ikişer)" #: library/stdtypes.rst:901 msgid "(3)(5)" -msgstr "" +msgstr "(3)(5)" #: library/stdtypes.rst:904 msgid "``len(s)``" -msgstr "" +msgstr "``len(s)``" #: library/stdtypes.rst:904 msgid "length of *s*" -msgstr "" +msgstr "*s* 'nin uzunluğu" #: library/stdtypes.rst:906 msgid "``min(s)``" -msgstr "" +msgstr "``min(s)``" #: library/stdtypes.rst:906 msgid "smallest item of *s*" -msgstr "" +msgstr "*s* 'nin en küçük öğesi" #: library/stdtypes.rst:908 msgid "``max(s)``" -msgstr "" +msgstr "``max(s)``" #: library/stdtypes.rst:908 msgid "largest item of *s*" -msgstr "" +msgstr "*s* 'nin en büyük öğesi" #: library/stdtypes.rst:910 msgid "``s.index(x[, i[, j]])``" -msgstr "" +msgstr "``s.index(x[, i[, j]])``" #: library/stdtypes.rst:910 -msgid "" -"index of the first occurrence of *x* in *s* (at or after index *i* and " -"before index *j*)" +msgid "index of the first occurrence of *x* in *s* (at or after index *i* and before index *j*)" msgstr "" +"*x* 'in *s* içindeki ilk görüldüğü dizini (*i* dizininde veya sonrasında ve *j* dizininden " +"önce)" #: library/stdtypes.rst:3539 msgid "\\(8)" -msgstr "" +msgstr "\\(8)" #: library/stdtypes.rst:914 msgid "``s.count(x)``" -msgstr "" +msgstr "``s.count(x)``" #: library/stdtypes.rst:914 msgid "total number of occurrences of *x* in *s*" -msgstr "" +msgstr "*s* 'de *x*'in toplam görülme sayısı" #: library/stdtypes.rst:918 msgid "" -"Sequences of the same type also support comparisons. In particular, tuples " -"and lists are compared lexicographically by comparing corresponding " -"elements. This means that to compare equal, every element must compare equal " -"and the two sequences must be of the same type and have the same length. " -"(For full details see :ref:`comparisons` in the language reference.)" +"Sequences of the same type also support comparisons. In particular, tuples and lists are " +"compared lexicographically by comparing corresponding elements. This means that to compare " +"equal, every element must compare equal and the two sequences must be of the same type and " +"have the same length. (For full details see :ref:`comparisons` in the language reference.)" msgstr "" +"Aynı türden diziler de karşılaştırmaları destekler. Özellikle, demetler ve listeler, karşılık " +"gelen öğeler ile sözlükbilimsel olarak karşılaştırılır. Bu, eşit karşılaştırma yapılabilmesi " +"için her öğenin eşit olarak karşılaştırması gerektiği ve iki dizinin aynı türde ve aynı " +"uzunlukta olması gerektiği anlamına gelir. (Tüm ayrıntılar için dil referansındaki :ref:" +"`comparisons` bölümüne bakın.)" #: library/stdtypes.rst:927 msgid "" -"While the ``in`` and ``not in`` operations are used only for simple " -"containment testing in the general case, some specialised sequences (such " -"as :class:`str`, :class:`bytes` and :class:`bytearray`) also use them for " -"subsequence testing::" +"While the ``in`` and ``not in`` operations are used only for simple containment testing in the " +"general case, some specialised sequences (such as :class:`str`, :class:`bytes` and :class:" +"`bytearray`) also use them for subsequence testing::" msgstr "" +"``in`` ve ``not in`` işlemleri, genel durumda yalnızca basit sınırlama testi için " +"kullanılırken, bazı özel diziler (örneğin: :class:`str`, :class:`bytes` ve :class:`bytearray`) " +"bunları sonraki dizi testi için de kullanır:" #: library/stdtypes.rst:936 msgid "" -"Values of *n* less than ``0`` are treated as ``0`` (which yields an empty " -"sequence of the same type as *s*). Note that items in the sequence *s* are " -"not copied; they are referenced multiple times. This often haunts new " -"Python programmers; consider::" +"Values of *n* less than ``0`` are treated as ``0`` (which yields an empty sequence of the same " +"type as *s*). Note that items in the sequence *s* are not copied; they are referenced " +"multiple times. This often haunts new Python programmers; consider::" msgstr "" +"*n* 'nin ```0`` 'dan küçük değerleri ``0`` olarak değerlendirilir (bu, *s* ile aynı türde boş " +"bir dizi verir). *s* dizisindeki öğeler kopyalanmaz, birden çok kez referans gösterilir " +"(kullanılır). Bu, çoğunlukla yeni Python programcılarına musallat olur; şunu düşünün::" #: library/stdtypes.rst:948 msgid "" -"What has happened is that ``[[]]`` is a one-element list containing an empty " -"list, so all three elements of ``[[]] * 3`` are references to this single " -"empty list. Modifying any of the elements of ``lists`` modifies this single " -"list. You can create a list of different lists this way::" +"What has happened is that ``[[]]`` is a one-element list containing an empty list, so all " +"three elements of ``[[]] * 3`` are references to this single empty list. Modifying any of the " +"elements of ``lists`` modifies this single list. You can create a list of different lists this " +"way::" msgstr "" +"Olan şu ki, ``[[]]`` boş bir liste içeren tek elemanlı bir listedir, dolayısıyla ``[[]] * 3`` " +"'ün üç elemanı da bu boş listeye referanstır. ``lists`` öğelerinin herhangi birinin " +"değiştirilmesi bu listeyi değiştirir. Bu şekilde farklı listelerin bir listesini " +"oluşturabilirsiniz::" #: library/stdtypes.rst:960 -msgid "" -"Further explanation is available in the FAQ entry :ref:`faq-multidimensional-" -"list`." -msgstr "" +msgid "Further explanation is available in the FAQ entry :ref:`faq-multidimensional-list`." +msgstr "Daha fazla açıklama SSS gönderisinde mevcuttur: :ref:`faq-multidimensional-list`." #: library/stdtypes.rst:964 msgid "" -"If *i* or *j* is negative, the index is relative to the end of sequence *s*: " -"``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is " -"still ``0``." +"If *i* or *j* is negative, the index is relative to the end of sequence *s*: ``len(s) + i`` or " +"``len(s) + j`` is substituted. But note that ``-0`` is still ``0``." msgstr "" +"*i* veya *j* negatifse, dizin *s*: dizisinin sonuna göredir: ``len(s) + i`` veya ``len(s) + " +"j`` değiştirilir. Ancak ``-0``ın hala ``0`` olduğuna dikkat edin." #: library/stdtypes.rst:969 msgid "" -"The slice of *s* from *i* to *j* is defined as the sequence of items with " -"index *k* such that ``i <= k < j``. If *i* or *j* is greater than " -"``len(s)``, use ``len(s)``. If *i* is omitted or ``None``, use ``0``. If " -"*j* is omitted or ``None``, use ``len(s)``. If *i* is greater than or equal " -"to *j*, the slice is empty." +"The slice of *s* from *i* to *j* is defined as the sequence of items with index *k* such that " +"``i <= k < j``. If *i* or *j* is greater than ``len(s)``, use ``len(s)``. If *i* is omitted " +"or ``None``, use ``0``. If *j* is omitted or ``None``, use ``len(s)``. If *i* is greater " +"than or equal to *j*, the slice is empty." msgstr "" +"*s* 'nin *i* ile *j* arasındaki dilimi, ```i <= k < j`` olacak şekilde *k* indeksine sahip " +"öğelerin dizisi olarak tanımlanır. *i* veya *j* ``len(s)`` 'den büyükse,``len(s)`` kullanın. " +"*i* atlanırsa veya ``None`` ise, ``0`` kullanın. *j* atlanırsa veya ``None`` ise, ``len(s)`` " +"kullanın. *i*, *j* 'den büyük veya ona eşitse, dilim boştur." #: library/stdtypes.rst:976 msgid "" -"The slice of *s* from *i* to *j* with step *k* is defined as the sequence of " -"items with index ``x = i + n*k`` such that ``0 <= n < (j-i)/k``. In other " -"words, the indices are ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` and so on, " -"stopping when *j* is reached (but never including *j*). When *k* is " -"positive, *i* and *j* are reduced to ``len(s)`` if they are greater. When " -"*k* is negative, *i* and *j* are reduced to ``len(s) - 1`` if they are " -"greater. If *i* or *j* are omitted or ``None``, they become \"end\" values " -"(which end depends on the sign of *k*). Note, *k* cannot be zero. If *k* is " -"``None``, it is treated like ``1``." +"The slice of *s* from *i* to *j* with step *k* is defined as the sequence of items with index " +"``x = i + n*k`` such that ``0 <= n < (j-i)/k``. In other words, the indices are ``i``, ``i" +"+k``, ``i+2*k``, ``i+3*k`` and so on, stopping when *j* is reached (but never including *j*). " +"When *k* is positive, *i* and *j* are reduced to ``len(s)`` if they are greater. When *k* is " +"negative, *i* and *j* are reduced to ``len(s) - 1`` if they are greater. If *i* or *j* are " +"omitted or ``None``, they become \"end\" values (which end depends on the sign of *k*). Note, " +"*k* cannot be zero. If *k* is ``None``, it is treated like ``1``." msgstr "" #: library/stdtypes.rst:987 msgid "" -"Concatenating immutable sequences always results in a new object. This " -"means that building up a sequence by repeated concatenation will have a " -"quadratic runtime cost in the total sequence length. To get a linear " -"runtime cost, you must switch to one of the alternatives below:" +"Concatenating immutable sequences always results in a new object. This means that building up " +"a sequence by repeated concatenation will have a quadratic runtime cost in the total sequence " +"length. To get a linear runtime cost, you must switch to one of the alternatives below:" msgstr "" +"Değiştirilemez dizileri birleştirmek her zaman yeni bir nesneyle sonuçlanır. Bu, tekrarlanan " +"birleştirme ile bir dizi oluşturmanın, toplam dizi uzunluğunda ikinci dereceden bir çalışma " +"zamanı maliyetine sahip olacağı anlamına gelir. Doğrusal bir çalışma zamanı maliyeti elde " +"etmek için aşağıdaki alternatiflerden birine geçmelisiniz:" #: library/stdtypes.rst:992 msgid "" -"if concatenating :class:`str` objects, you can build a list and use :meth:" -"`str.join` at the end or else write to an :class:`io.StringIO` instance and " -"retrieve its value when complete" +"if concatenating :class:`str` objects, you can build a list and use :meth:`str.join` at the " +"end or else write to an :class:`io.StringIO` instance and retrieve its value when complete" msgstr "" +":class:`str` nesnelerini birleştiriyorsanız, bir liste oluşturabilir ve sonunda :meth:`str." +"join` kullanabilir veya bir :class:`io.StringIO` örneğine yazabilir ve tamamlandığında " +"değerini alabilirsiniz" #: library/stdtypes.rst:996 msgid "" -"if concatenating :class:`bytes` objects, you can similarly use :meth:`bytes." -"join` or :class:`io.BytesIO`, or you can do in-place concatenation with a :" -"class:`bytearray` object. :class:`bytearray` objects are mutable and have " -"an efficient overallocation mechanism" +"if concatenating :class:`bytes` objects, you can similarly use :meth:`bytes.join` or :class:" +"`io.BytesIO`, or you can do in-place concatenation with a :class:`bytearray` object. :class:" +"`bytearray` objects are mutable and have an efficient overallocation mechanism" msgstr "" +":class:`bytes` nesnelerini birleştiriyorsanız, benzer şekilde :meth:`bytes.join` veya :class:" +"`io.BytesIO` kullanabilir veya bir :class:`bytearray` nesnesiyle yerinde birleştirme " +"yapabilirsiniz. :class:`bytearray` nesneleri değiştirilebilirdir ve verimli bir aşırı tahsis " +"mekanizmasına sahiptir" #: library/stdtypes.rst:1001 msgid "if concatenating :class:`tuple` objects, extend a :class:`list` instead" msgstr "" +":class:`tuple` nesneleri birleştiriyorsanız, bunun yerine bir :class:`list` öğesini genişletin" #: library/stdtypes.rst:1003 msgid "for other types, investigate the relevant class documentation" -msgstr "" +msgstr "diğer türler için ilgili sınıf dokümantasyonunu inceleyin" #: library/stdtypes.rst:1007 msgid "" -"Some sequence types (such as :class:`range`) only support item sequences " -"that follow specific patterns, and hence don't support sequence " -"concatenation or repetition." +"Some sequence types (such as :class:`range`) only support item sequences that follow specific " +"patterns, and hence don't support sequence concatenation or repetition." msgstr "" +"Bazı dizi türleri (örneğin :class:`range`) yalnızca belirli kalıpları takip eden öğe " +"dizilerini destekler ve bu nedenle dizi birleştirmeyi veya tekrarlamayı desteklemez." #: library/stdtypes.rst:1012 msgid "" -"``index`` raises :exc:`ValueError` when *x* is not found in *s*. Not all " -"implementations support passing the additional arguments *i* and *j*. These " -"arguments allow efficient searching of subsections of the sequence. Passing " -"the extra arguments is roughly equivalent to using ``s[i:j].index(x)``, only " -"without copying any data and with the returned index being relative to the " -"start of the sequence rather than the start of the slice." +"``index`` raises :exc:`ValueError` when *x* is not found in *s*. Not all implementations " +"support passing the additional arguments *i* and *j*. These arguments allow efficient " +"searching of subsections of the sequence. Passing the extra arguments is roughly equivalent to " +"using ``s[i:j].index(x)``, only without copying any data and with the returned index being " +"relative to the start of the sequence rather than the start of the slice." msgstr "" +"*s* içinde *x* bulunmadığında ``index`` :exc:`ValueError` hatasını verir. Tüm uygulamalar *i* " +"ve *j* ek argümanlarının iletilmesini desteklemez. Bu argümanlar, dizinin alt bölümlerinin " +"verimli bir şekilde aranmasını sağlar. Fazladan argümanları iletmek kabaca ``s[i:j].index(x)`` " +"kullanmaya eş değerdir, yalnızca herhangi bir veri kopyalamadan ve döndürülen index dilimin " +"başlangıcından ziyade dizinin başlangıcına göredir." #: library/stdtypes.rst:1023 msgid "Immutable Sequence Types" -msgstr "" +msgstr "Değiştirilemez Dizi Tipleri" #: library/stdtypes.rst:1030 msgid "" -"The only operation that immutable sequence types generally implement that is " -"not also implemented by mutable sequence types is support for the :func:" -"`hash` built-in." +"The only operation that immutable sequence types generally implement that is not also " +"implemented by mutable sequence types is support for the :func:`hash` built-in." msgstr "" +"Değiştirilemez dizi türlerinin genellikle uyguladığı ve aynı zamanda değişken dizi türleri " +"tarafından uygulanmayan tek işlem, gömülü :func:`hash` desteğidir." #: library/stdtypes.rst:1034 msgid "" -"This support allows immutable sequences, such as :class:`tuple` instances, " -"to be used as :class:`dict` keys and stored in :class:`set` and :class:" -"`frozenset` instances." +"This support allows immutable sequences, such as :class:`tuple` instances, to be used as :" +"class:`dict` keys and stored in :class:`set` and :class:`frozenset` instances." msgstr "" +"Bu destek, :class:`tuple` örnekleri gibi değiştirilemez dizilerin :class:`dict` anahtarları " +"olarak kullanılmasına, :class:`set` ve :class:`frozenset` örneklerinde saklanmasına izin verir." #: library/stdtypes.rst:1038 +#, fuzzy msgid "" -"Attempting to hash an immutable sequence that contains unhashable values " -"will result in :exc:`TypeError`." +"Attempting to hash an immutable sequence that contains unhashable values will result in :exc:" +"`TypeError`." msgstr "" +"Hash edilemez değerler içeren değiştirilemez bir diziyi hashlemeye çalışmak :exc:`TypeError` " +"ile sonuçlanır." #: library/stdtypes.rst:1045 msgid "Mutable Sequence Types" -msgstr "" +msgstr "Değiştirilebilir Dizi Tipleri" #: library/stdtypes.rst:1052 msgid "" -"The operations in the following table are defined on mutable sequence types. " -"The :class:`collections.abc.MutableSequence` ABC is provided to make it " -"easier to correctly implement these operations on custom sequence types." +"The operations in the following table are defined on mutable sequence types. The :class:" +"`collections.abc.MutableSequence` ABC is provided to make it easier to correctly implement " +"these operations on custom sequence types." msgstr "" +"Aşağıdaki tabloda yer alan işlemler değiştirilebilir dizi tiplerinde tanımlanmıştır. :class:" +"`collections.abc.MutableSequence` ABC, bu işlemleri özel dizi türlerinde doğru şekilde " +"uygulamayı kolaylaştırmak için sağlanmıştır." #: library/stdtypes.rst:1056 msgid "" -"In the table *s* is an instance of a mutable sequence type, *t* is any " -"iterable object and *x* is an arbitrary object that meets any type and value " -"restrictions imposed by *s* (for example, :class:`bytearray` only accepts " -"integers that meet the value restriction ``0 <= x <= 255``)." +"In the table *s* is an instance of a mutable sequence type, *t* is any iterable object and *x* " +"is an arbitrary object that meets any type and value restrictions imposed by *s* (for " +"example, :class:`bytearray` only accepts integers that meet the value restriction ``0 <= x <= " +"255``)." msgstr "" +"Tabloda *s* değiştirilebilir bir dizi türünün bir örneğidir, *t* yinelenebilir herhangi bir " +"nesnedir ve *x*, *s* tarafından dayatılan herhangi bir tür ve değer kısıtlamasını karşılayan " +"rastgele bir nesnedir (örneğin, :class:`bytearray` yalnızca ``0 <= x <= 255`` değer " +"kısıtlamasını karşılayan tam sayıları kabul eder)." #: library/stdtypes.rst:1080 msgid "``s[i] = x``" -msgstr "" +msgstr "``s[i] = x``" #: library/stdtypes.rst:1080 msgid "item *i* of *s* is replaced by *x*" -msgstr "" +msgstr "*s* 'nin *i* öğesi *x* ile değiştirilir" #: library/stdtypes.rst:1083 msgid "``s[i:j] = t``" -msgstr "" +msgstr "``s[i:j] = t``" #: library/stdtypes.rst:1083 -msgid "" -"slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*" -msgstr "" +msgid "slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*" +msgstr "*s* 'nin *i* ile *j* arasındaki dilimi, yinelenebilir *t* içeriğiyle değiştirilir" #: library/stdtypes.rst:1087 msgid "``del s[i:j]``" -msgstr "" +msgstr "``del s[i:j]``" #: library/stdtypes.rst:1087 msgid "same as ``s[i:j] = []``" -msgstr "" +msgstr "``s[i:j] = []`` ile eş değerdir" #: library/stdtypes.rst:1089 msgid "``s[i:j:k] = t``" -msgstr "" +msgstr "``s[i:j:k] = t``" #: library/stdtypes.rst:1089 msgid "the elements of ``s[i:j:k]`` are replaced by those of *t*" -msgstr "" +msgstr "``s[i:j:k]`` 'nin öğelerinin yerini *t* öğelerininkiler alır" #: library/stdtypes.rst:1092 msgid "``del s[i:j:k]``" -msgstr "" +msgstr "``del s[i:j:k]``" #: library/stdtypes.rst:1092 msgid "removes the elements of ``s[i:j:k]`` from the list" -msgstr "" +msgstr "``s[i:j:k]`` 'nin öğelerini listeden kaldırır" #: library/stdtypes.rst:1095 msgid "``s.append(x)``" -msgstr "" +msgstr "``s.append(x)``" #: library/stdtypes.rst:1095 -msgid "" -"appends *x* to the end of the sequence (same as ``s[len(s):len(s)] = [x]``)" -msgstr "" +msgid "appends *x* to the end of the sequence (same as ``s[len(s):len(s)] = [x]``)" +msgstr "dizinin sonuna *x* ekler (``s[len(s):len(s)] = [x]`` ile eş değerdir)" #: library/stdtypes.rst:1099 msgid "``s.clear()``" -msgstr "" +msgstr "``s.clear()``" #: library/stdtypes.rst:1099 msgid "removes all items from *s* (same as ``del s[:]``)" -msgstr "" +msgstr "*s* içindeki tüm öğeleri kaldırır (``del s[:]`` ile eş değerdir)" #: library/stdtypes.rst:1102 msgid "``s.copy()``" -msgstr "" +msgstr "``s.copy()``" #: library/stdtypes.rst:1102 msgid "creates a shallow copy of *s* (same as ``s[:]``)" -msgstr "" +msgstr "*s*'nin sığ bir kopyasını oluşturur (``s[:]`` ile eş değerdir)" #: library/stdtypes.rst:1105 msgid "``s.extend(t)`` or ``s += t``" -msgstr "" +msgstr "``s.extend(t)`` veya ``s += t``" #: library/stdtypes.rst:1105 msgid "" -"extends *s* with the contents of *t* (for the most part the same as " -"``s[len(s):len(s)] = t``)" +"extends *s* with the contents of *t* (for the most part the same as ``s[len(s):len(s)] = t``)" msgstr "" +"*s* 'yi *t* 'nin içeriğiyle genişletir (çoğunlukla ``s[len(s):len(s)] = t`` ile eş değerdir)" #: library/stdtypes.rst:1110 msgid "``s *= n``" -msgstr "" +msgstr "``s *= n``" #: library/stdtypes.rst:1110 msgid "updates *s* with its contents repeated *n* times" -msgstr "" +msgstr "*n* kez tekrarlanan içeriğiyle *s* 'yi günceller" #: library/stdtypes.rst:1113 msgid "``s.insert(i, x)``" -msgstr "" +msgstr "``s.insert(i, x)``" #: library/stdtypes.rst:1113 -msgid "" -"inserts *x* into *s* at the index given by *i* (same as ``s[i:i] = [x]``)" +msgid "inserts *x* into *s* at the index given by *i* (same as ``s[i:i] = [x]``)" msgstr "" +"*i* tarafından verilen dizinde *s* 'nin içine *x* ekler (``s[i:i] = [x]`` ile eş değerdir)" #: library/stdtypes.rst:1117 msgid "``s.pop()`` or ``s.pop(i)``" -msgstr "" +msgstr "``s.pop()`` veya ``s.pop(i)``" #: library/stdtypes.rst:1117 msgid "retrieves the item at *i* and also removes it from *s*" -msgstr "" +msgstr "*i* noktasındaki öğeyi alır ve *s* öğesinden kaldırır" #: library/stdtypes.rst:1120 msgid "``s.remove(x)``" -msgstr "" +msgstr "``s.remove(x)``" #: library/stdtypes.rst:1120 +#, fuzzy msgid "remove the first item from *s* where ``s[i]`` is equal to *x*" -msgstr "" +msgstr "``s[i]`` 'nin *x* 'e eşit olduğu *s* 'den ilk öğeyi kaldırır" #: library/stdtypes.rst:1123 msgid "``s.reverse()``" -msgstr "" +msgstr "``s.reverse()``" #: library/stdtypes.rst:1123 msgid "reverses the items of *s* in place" -msgstr "" +msgstr "*s* 'nin öğelerini yerinde tersine çevirir" #: library/stdtypes.rst:1131 msgid "*t* must have the same length as the slice it is replacing." -msgstr "" +msgstr "*t*, değiştirdiği dilimle aynı uzunlukta olmalıdır." #: library/stdtypes.rst:1134 msgid "" -"The optional argument *i* defaults to ``-1``, so that by default the last " -"item is removed and returned." +"The optional argument *i* defaults to ``-1``, so that by default the last item is removed and " +"returned." msgstr "" +"İsteğe bağlı *i* argümanı varsayılan olarak ``-1`` şeklindedir, böylece varsayılan olarak son " +"öğe kaldırılır ve döndürülür." #: library/stdtypes.rst:1138 msgid ":meth:`remove` raises :exc:`ValueError` when *x* is not found in *s*." msgstr "" +"*s* 'nin içinde *x* bulunmadığında :meth:`remove` işlemi :exc:`ValueError` hatasını verir." #: library/stdtypes.rst:1141 msgid "" -"The :meth:`reverse` method modifies the sequence in place for economy of " -"space when reversing a large sequence. To remind users that it operates by " -"side effect, it does not return the reversed sequence." +"The :meth:`reverse` method modifies the sequence in place for economy of space when reversing " +"a large sequence. To remind users that it operates by side effect, it does not return the " +"reversed sequence." msgstr "" +":meth:`reverse` metodu, büyük bir diziyi tersine çevirirken yerden tasarruf sağlamak için " +"diziyi yerinde değiştirir. Kullanıcılara yan etki ile çalıştığını hatırlatmak için ters diziyi " +"döndürmez." #: library/stdtypes.rst:1146 +#, fuzzy msgid "" -":meth:`clear` and :meth:`!copy` are included for consistency with the " -"interfaces of mutable containers that don't support slicing operations (such " -"as :class:`dict` and :class:`set`). :meth:`!copy` is not part of the :class:" -"`collections.abc.MutableSequence` ABC, but most concrete mutable sequence " -"classes provide it." +":meth:`clear` and :meth:`!copy` are included for consistency with the interfaces of mutable " +"containers that don't support slicing operations (such as :class:`dict` and :class:`set`). :" +"meth:`!copy` is not part of the :class:`collections.abc.MutableSequence` ABC, but most " +"concrete mutable sequence classes provide it." msgstr "" +":meth:`clear` ve :meth:`!copy`, dilimleme işlemlerini desteklemeyen değiştirilebilir " +"containerların (örneğin :class:`dict` ve :class:`set` gibi) arayüzleriyle tutarlılık için " +"dahil edilmiştir. :meth:`!copy`, :class:`collections.abc.MutableSequence` ABC'nin bir parçası " +"değildir, ancak çoğu somut değiştirilebilir dizi sınıfı bunu sağlar." #: library/stdtypes.rst:1152 msgid ":meth:`clear` and :meth:`!copy` methods." -msgstr "" +msgstr ":meth:`clear` ve :meth:`!copy` metotları." #: library/stdtypes.rst:1156 msgid "" -"The value *n* is an integer, or an object implementing :meth:`~object." -"__index__`. Zero and negative values of *n* clear the sequence. Items in " -"the sequence are not copied; they are referenced multiple times, as " -"explained for ``s * n`` under :ref:`typesseq-common`." +"The value *n* is an integer, or an object implementing :meth:`~object.__index__`. Zero and " +"negative values of *n* clear the sequence. Items in the sequence are not copied; they are " +"referenced multiple times, as explained for ``s * n`` under :ref:`typesseq-common`." msgstr "" +"*n* değeri bir tam sayıdır veya :meth:`~object.__index__` uygulayan bir nesnedir. *n* 'nin " +"sıfır ve negatif değerleri diziyi temizler. Dizideki öğeler kopyalanmaz; :ref:`typesseq-" +"common` altında ```s * n`` için açıklandığı gibi, bunlara birden çok kez başvurulur." #: library/stdtypes.rst:1165 msgid "Lists" -msgstr "" +msgstr "Listeler" #: library/stdtypes.rst:1169 msgid "" -"Lists are mutable sequences, typically used to store collections of " -"homogeneous items (where the precise degree of similarity will vary by " -"application)." +"Lists are mutable sequences, typically used to store collections of homogeneous items (where " +"the precise degree of similarity will vary by application)." msgstr "" +"Listeler, tipik olarak (kesin benzerlik derecesinin uygulamaya göre değişeceği) homojen " +"öğelerin koleksiyonlarını depolamak için kullanılan değiştirilebilir dizilerdir." #: library/stdtypes.rst:1175 msgid "Lists may be constructed in several ways:" -msgstr "" +msgstr "Listeler birkaç şekilde oluşturulabilir:" #: library/stdtypes.rst:1177 msgid "Using a pair of square brackets to denote the empty list: ``[]``" -msgstr "" +msgstr "Boş listeyi belirtmek için bir çift köşeli parantez kullanma: ``[]``" #: library/stdtypes.rst:1178 -msgid "" -"Using square brackets, separating items with commas: ``[a]``, ``[a, b, c]``" -msgstr "" +msgid "Using square brackets, separating items with commas: ``[a]``, ``[a, b, c]``" +msgstr "Köşeli parantez kullanarak, öğeleri virgülle ayırarak: ``[a]``, ``[a, b, c]``" #: library/stdtypes.rst:1179 msgid "Using a list comprehension: ``[x for x in iterable]``" -msgstr "" +msgstr "Liste kavrayışını kullanma: ``[x for x in iterable]``" #: library/stdtypes.rst:1180 msgid "Using the type constructor: ``list()`` or ``list(iterable)``" -msgstr "" +msgstr "Tür oluşturucuyu kullanma: ``list()`` veya ``list(iterable)``" #: library/stdtypes.rst:1182 msgid "" -"The constructor builds a list whose items are the same and in the same order " -"as *iterable*'s items. *iterable* may be either a sequence, a container " -"that supports iteration, or an iterator object. If *iterable* is already a " -"list, a copy is made and returned, similar to ``iterable[:]``. For example, " -"``list('abc')`` returns ``['a', 'b', 'c']`` and ``list( (1, 2, 3) )`` " -"returns ``[1, 2, 3]``. If no argument is given, the constructor creates a " -"new empty list, ``[]``." +"The constructor builds a list whose items are the same and in the same order as *iterable*'s " +"items. *iterable* may be either a sequence, a container that supports iteration, or an " +"iterator object. If *iterable* is already a list, a copy is made and returned, similar to " +"``iterable[:]``. For example, ``list('abc')`` returns ``['a', 'b', 'c']`` and ``list( (1, 2, " +"3) )`` returns ``[1, 2, 3]``. If no argument is given, the constructor creates a new empty " +"list, ``[]``." msgstr "" +"Yapıcı, öğeleri *iterable* 'ın öğeleriyle aynı ve aynı sırada olan bir liste oluşturur. " +"*iterable*; bir dizi, yinelemeyi destekleyen bir container veya yineleyici nesne olabilir. " +"*iterable* zaten bir listeyse, ``iterable[:]`` 'e benzer şekilde bir kopya oluşturulur ve " +"döndürülür. Örneğin, ``list('abc')``, ``['a', 'b', 'c']`` değerini döndürür ve ``list( (1, 2, " +"3) )``, ``[ 1, 2, 3]``. Argüman verilmezse, yapıcı ``[]`` yeni bir boş liste oluşturur." #: library/stdtypes.rst:1191 -msgid "" -"Many other operations also produce lists, including the :func:`sorted` built-" -"in." -msgstr "" +msgid "Many other operations also produce lists, including the :func:`sorted` built-in." +msgstr "Gömülü :func:`sorted` dahil olmak üzere diğer birçok işlem de listeler üretir." #: library/stdtypes.rst:1194 msgid "" -"Lists implement all of the :ref:`common ` and :ref:`mutable " -"` sequence operations. Lists also provide the following " -"additional method:" +"Lists implement all of the :ref:`common ` and :ref:`mutable ` sequence operations. Lists also provide the following additional method:" msgstr "" +"Listeler, tüm :ref:`common ` ve :ref:`mutable ` dizi " +"işlemlerini uygular. Listeler ayrıca aşağıdaki ek metodu da sağlar:" #: library/stdtypes.rst:1200 msgid "" -"This method sorts the list in place, using only ``<`` comparisons between " -"items. Exceptions are not suppressed - if any comparison operations fail, " -"the entire sort operation will fail (and the list will likely be left in a " -"partially modified state)." +"This method sorts the list in place, using only ``<`` comparisons between items. Exceptions " +"are not suppressed - if any comparison operations fail, the entire sort operation will fail " +"(and the list will likely be left in a partially modified state)." msgstr "" +"Bu metot, öğeler arasında yalnızca ``<`` karşılaştırmalarını kullanarak listeyi yerinde " +"sıralar. Hatalar bastırılmaz - herhangi bir karşılaştırma işlemi başarısız olursa, tüm " +"sıralama işlemi başarısız olur (ve liste büyük olasılıkla kısmen değiştirilmiş durumda kalır)." #: library/stdtypes.rst:1205 msgid "" -":meth:`sort` accepts two arguments that can only be passed by keyword (:ref:" -"`keyword-only arguments `):" +":meth:`sort` accepts two arguments that can only be passed by keyword (:ref:`keyword-only " +"arguments `):" msgstr "" +":meth:`sort` yalnızca anahtar kelime tarafından iletilebilen iki argümanı kabul eder (:ref:" +"`keyword-only arguments `):" #: library/stdtypes.rst:1208 msgid "" -"*key* specifies a function of one argument that is used to extract a " -"comparison key from each list element (for example, ``key=str.lower``). The " -"key corresponding to each item in the list is calculated once and then used " -"for the entire sorting process. The default value of ``None`` means that " -"list items are sorted directly without calculating a separate key value." +"*key* specifies a function of one argument that is used to extract a comparison key from each " +"list element (for example, ``key=str.lower``). The key corresponding to each item in the list " +"is calculated once and then used for the entire sorting process. The default value of ``None`` " +"means that list items are sorted directly without calculating a separate key value." msgstr "" +"*key*, her liste öğesinden bir karşılaştırma anahtarı çıkarmak için kullanılan bir argümanın " +"işlevini belirtir (örneğin, ``key=str.lower``). Listedeki her bir öğeye karşılık gelen anahtar " +"bir kez hesaplanır ve ardından tüm sıralama işlemi için kullanılır. Varsayılan değer olan " +"``None``, liste öğelerinin ayrı bir anahtar değeri hesaplamadan doğrudan sıralandığı anlamına " +"gelir." #: library/stdtypes.rst:1215 msgid "" -"The :func:`functools.cmp_to_key` utility is available to convert a 2.x style " -"*cmp* function to a *key* function." +"The :func:`functools.cmp_to_key` utility is available to convert a 2.x style *cmp* function to " +"a *key* function." msgstr "" +":func:`functools.cmp_to_key` yardımcı programı, 2.x stili *cmp* işlevini bir *key* işlevine " +"dönüştürmek için kullanılabilir." #: library/stdtypes.rst:1218 msgid "" -"*reverse* is a boolean value. If set to ``True``, then the list elements " -"are sorted as if each comparison were reversed." +"*reverse* is a boolean value. If set to ``True``, then the list elements are sorted as if " +"each comparison were reversed." msgstr "" +"*reverse* bir boolean değeridir. ``True`` olarak ayarlanırsa, liste öğeleri, her karşılaştırma " +"tersine çevrilmiş gibi sıralanır." #: library/stdtypes.rst:1221 msgid "" -"This method modifies the sequence in place for economy of space when sorting " -"a large sequence. To remind users that it operates by side effect, it does " -"not return the sorted sequence (use :func:`sorted` to explicitly request a " -"new sorted list instance)." +"This method modifies the sequence in place for economy of space when sorting a large " +"sequence. To remind users that it operates by side effect, it does not return the sorted " +"sequence (use :func:`sorted` to explicitly request a new sorted list instance)." msgstr "" +"Bu yöntem, büyük bir diziyi sıralarken yerden tasarruf sağlamak için diziyi yerinde " +"değiştirir. Kullanıcılara yan etki ile çalıştığını hatırlatmak için, sıralanan diziyi " +"döndürmez (açıkça yeni bir sıralanmış liste örneği istemek için :func:`sorted` kullanın)." #: library/stdtypes.rst:1226 msgid "" -"The :meth:`sort` method is guaranteed to be stable. A sort is stable if it " -"guarantees not to change the relative order of elements that compare equal " -"--- this is helpful for sorting in multiple passes (for example, sort by " -"department, then by salary grade)." +"The :meth:`sort` method is guaranteed to be stable. A sort is stable if it guarantees not to " +"change the relative order of elements that compare equal --- this is helpful for sorting in " +"multiple passes (for example, sort by department, then by salary grade)." msgstr "" +":meth:`sort` metodunun kararlı olduğu garanti edilir. Bir sıralama, eşit olarak " +"karşılaştırılan öğelerin göreli sırasını değiştirmemeyi garanti ediyorsa kararlıdır --- bu, " +"birden çok geçişte sıralama için yararlıdır (örneğin, departmana göre sıralama, ardından maaş " +"derecesine göre)." #: library/stdtypes.rst:1231 -msgid "" -"For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." -msgstr "" +msgid "For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." +msgstr "Sıralama örnekleri ve kısa bir sıralama eğitimi için bkz. :ref:`sortinghowto`." #: library/stdtypes.rst:1235 msgid "" -"While a list is being sorted, the effect of attempting to mutate, or even " -"inspect, the list is undefined. The C implementation of Python makes the " -"list appear empty for the duration, and raises :exc:`ValueError` if it can " -"detect that the list has been mutated during a sort." +"While a list is being sorted, the effect of attempting to mutate, or even inspect, the list is " +"undefined. The C implementation of Python makes the list appear empty for the duration, and " +"raises :exc:`ValueError` if it can detect that the list has been mutated during a sort." msgstr "" +"Bir liste sıralanırken, listeyi değiştirmeye ve hatta incelemeye çalışmanın etkisi " +"tanımsızdır. Python'un C uygulaması, listenin süre boyunca boş görünmesini sağlar ve bir " +"sıralama sırasında listenin mutasyona uğradığını algılayabilirse :exc:`ValueError` hatasını " +"verir." #: library/stdtypes.rst:1244 msgid "Tuples" -msgstr "" +msgstr "Demetler" #: library/stdtypes.rst:1248 msgid "" -"Tuples are immutable sequences, typically used to store collections of " -"heterogeneous data (such as the 2-tuples produced by the :func:`enumerate` " -"built-in). Tuples are also used for cases where an immutable sequence of " -"homogeneous data is needed (such as allowing storage in a :class:`set` or :" -"class:`dict` instance)." +"Tuples are immutable sequences, typically used to store collections of heterogeneous data " +"(such as the 2-tuples produced by the :func:`enumerate` built-in). Tuples are also used for " +"cases where an immutable sequence of homogeneous data is needed (such as allowing storage in " +"a :class:`set` or :class:`dict` instance)." msgstr "" +"Tuple'lar, tipik olarak heterojen veri koleksiyonlarını depolamak için kullanılan " +"değiştirilemez dizilerdir (örneğin, gömülü :func:`enumerate` tarafından üretilen 2 tuple). " +"Tuple'lar, değiştirilemez bir homojen veri dizisinin gerekli olduğu durumlarda da kullanılır " +"(bir :class:`set` veya :class:`dict` örneğinde depolamaya izin vermek gibi)." #: library/stdtypes.rst:1256 msgid "Tuples may be constructed in a number of ways:" -msgstr "" +msgstr "Tuple'lar çeşitli şekillerde oluşturulabilir:" #: library/stdtypes.rst:1258 msgid "Using a pair of parentheses to denote the empty tuple: ``()``" -msgstr "" +msgstr "Boş demeti belirtmek için bir çift parantez kullanma: ``()``" #: library/stdtypes.rst:1259 msgid "Using a trailing comma for a singleton tuple: ``a,`` or ``(a,)``" -msgstr "" +msgstr "Tekli bir tuple için sonunda virgül kullanma: ``a,`` veya ``(a,)``" #: library/stdtypes.rst:1260 msgid "Separating items with commas: ``a, b, c`` or ``(a, b, c)``" -msgstr "" +msgstr "Öğeleri virgülle ayırma: ``a, b, c`` veya ``(a, b, c)``" #: library/stdtypes.rst:1261 msgid "Using the :func:`tuple` built-in: ``tuple()`` or ``tuple(iterable)``" -msgstr "" +msgstr "Gömülü :func:`tuple` kullanmak: ``tuple()`` veya ``tuple(iterable)``" #: library/stdtypes.rst:1263 msgid "" -"The constructor builds a tuple whose items are the same and in the same " -"order as *iterable*'s items. *iterable* may be either a sequence, a " -"container that supports iteration, or an iterator object. If *iterable* is " -"already a tuple, it is returned unchanged. For example, ``tuple('abc')`` " -"returns ``('a', 'b', 'c')`` and ``tuple( [1, 2, 3] )`` returns ``(1, 2, " -"3)``. If no argument is given, the constructor creates a new empty tuple, " -"``()``." +"The constructor builds a tuple whose items are the same and in the same order as *iterable*'s " +"items. *iterable* may be either a sequence, a container that supports iteration, or an " +"iterator object. If *iterable* is already a tuple, it is returned unchanged. For example, " +"``tuple('abc')`` returns ``('a', 'b', 'c')`` and ``tuple( [1, 2, 3] )`` returns ``(1, 2, 3)``. " +"If no argument is given, the constructor creates a new empty tuple, ``()``." msgstr "" +"Yapıcı, öğeleri *iterable* öğeleriyle aynı ve aynı sırada olan bir demet oluşturur. " +"*iterable* bir dizi, yinelemeyi destekleyen bir container veya yineleyici nesne olabilir. " +"*iterable* zaten bir tuple ise, değiştirilmeden döndürülür. Örneğin, ``tuple('abc')``, ``('a', " +"'b', 'c')`` 'yi ve ``tuple( [1, 2, 3] )``, ``(1, 2, 3)`` 'yi döndürür. Herhangi bir argüman " +"verilmezse, yapıcı yeni bir boş demet oluşturur ``()``." #: library/stdtypes.rst:1271 msgid "" -"Note that it is actually the comma which makes a tuple, not the parentheses. " -"The parentheses are optional, except in the empty tuple case, or when they " -"are needed to avoid syntactic ambiguity. For example, ``f(a, b, c)`` is a " -"function call with three arguments, while ``f((a, b, c))`` is a function " -"call with a 3-tuple as the sole argument." +"Note that it is actually the comma which makes a tuple, not the parentheses. The parentheses " +"are optional, except in the empty tuple case, or when they are needed to avoid syntactic " +"ambiguity. For example, ``f(a, b, c)`` is a function call with three arguments, while ``f((a, " +"b, c))`` is a function call with a 3-tuple as the sole argument." msgstr "" +"Bir demeti oluşturanın aslında parantez değil virgül olduğuna dikkat edin. Boş demet durumunda " +"veya söz dizimsel belirsizliği önlemek için gerektiğinde parantezler isteğe bağlıdır. Örneğin, " +"``f(a, b, c)`` üç argümanlı bir fonksiyon çağrısı iken ``f((a, b, c))``, tek argüman olarak " +"3'lü bir tuple içeren bir fonksiyon çağrısıdır." #: library/stdtypes.rst:1277 -msgid "" -"Tuples implement all of the :ref:`common ` sequence " -"operations." -msgstr "" +msgid "Tuples implement all of the :ref:`common ` sequence operations." +msgstr "Tuple'lar, tüm :ref:`common ` dizi işlemlerini uygular." #: library/stdtypes.rst:1280 msgid "" -"For heterogeneous collections of data where access by name is clearer than " -"access by index, :func:`collections.namedtuple` may be a more appropriate " -"choice than a simple tuple object." +"For heterogeneous collections of data where access by name is clearer than access by index, :" +"func:`collections.namedtuple` may be a more appropriate choice than a simple tuple object." msgstr "" +"Ada göre erişimin dizine göre erişimden daha net olduğu heterojen veri koleksiyonları için, :" +"func:`collections.namedtuple` basit bir tuple nesnesinden daha uygun bir seçim olabilir." #: library/stdtypes.rst:1288 msgid "Ranges" -msgstr "" +msgstr "Aralıklar" #: library/stdtypes.rst:1292 msgid "" -"The :class:`range` type represents an immutable sequence of numbers and is " -"commonly used for looping a specific number of times in :keyword:`for` loops." +"The :class:`range` type represents an immutable sequence of numbers and is commonly used for " +"looping a specific number of times in :keyword:`for` loops." msgstr "" +":class:`range` türü, değiştirilemez bir sayı dizisini temsil eder ve genellikle :keyword:`for` " +"döngülerinde belirli sayıda döngü yapmak için kullanılır." #: library/stdtypes.rst:1299 msgid "" -"The arguments to the range constructor must be integers (either built-in :" -"class:`int` or any object that implements the :meth:`~object.__index__` " -"special method). If the *step* argument is omitted, it defaults to ``1``. " -"If the *start* argument is omitted, it defaults to ``0``. If *step* is " -"zero, :exc:`ValueError` is raised." +"The arguments to the range constructor must be integers (either built-in :class:`int` or any " +"object that implements the :meth:`~object.__index__` special method). If the *step* argument " +"is omitted, it defaults to ``1``. If the *start* argument is omitted, it defaults to ``0``. If " +"*step* is zero, :exc:`ValueError` is raised." msgstr "" +"Aralık oluşturucunun argümanları tamsayı olmalıdır (gömülü :class:`int` veya :meth:`~object." +"__index__` özel metodunu uygulayan herhangi bir nesne). *step* argümanı atlanırsa, varsayılan " +"olarak ``1`` olur. *start* argümanı atlanırsa, varsayılan olarak ``0`` olur. *step* sıfırsa, :" +"exc:`ValueError` hatası ortaya çıkar." #: library/stdtypes.rst:1305 msgid "" -"For a positive *step*, the contents of a range ``r`` are determined by the " -"formula ``r[i] = start + step*i`` where ``i >= 0`` and ``r[i] < stop``." +"For a positive *step*, the contents of a range ``r`` are determined by the formula ``r[i] = " +"start + step*i`` where ``i >= 0`` and ``r[i] < stop``." msgstr "" +"Pozitif *step* için, ``r`` aralığının içeriği, ``i >= 0`` ve ``r[i] < stop`` olmak üzere " +"``r[i] = start + step*i`` formülüyle belirlenir." #: library/stdtypes.rst:1309 msgid "" -"For a negative *step*, the contents of the range are still determined by the " -"formula ``r[i] = start + step*i``, but the constraints are ``i >= 0`` and " -"``r[i] > stop``." +"For a negative *step*, the contents of the range are still determined by the formula ``r[i] = " +"start + step*i``, but the constraints are ``i >= 0`` and ``r[i] > stop``." msgstr "" +"Negatif bir *step* için, aralığın içeriği hala ``r[i] = start + step*i`` formülüyle " +"belirlenir, ancak kısıtlamalar ``i >= 0`` ve ``r[i] > stop`` 'dir." #: library/stdtypes.rst:1313 msgid "" -"A range object will be empty if ``r[0]`` does not meet the value constraint. " -"Ranges do support negative indices, but these are interpreted as indexing " -"from the end of the sequence determined by the positive indices." +"A range object will be empty if ``r[0]`` does not meet the value constraint. Ranges do support " +"negative indices, but these are interpreted as indexing from the end of the sequence " +"determined by the positive indices." msgstr "" +"Bir aralık nesnesi ``r[0]`` değer kısıtlamasını karşılamıyorsa, boş olacaktır. Aralıklar " +"negatif indeksleri destekler, ancak bunlar pozitif indeksler tarafından belirlenen dizinin " +"sonundan indeksleme olarak yorumlanır." #: library/stdtypes.rst:1318 msgid "" -"Ranges containing absolute values larger than :data:`sys.maxsize` are " -"permitted but some features (such as :func:`len`) may raise :exc:" -"`OverflowError`." +"Ranges containing absolute values larger than :data:`sys.maxsize` are permitted but some " +"features (such as :func:`len`) may raise :exc:`OverflowError`." msgstr "" +":data:`sys.maxsize` 'dan büyük mutlak değerler içeren aralıklara izin verilir, ancak bazı " +"özellikler (:func:`len` gibi), :exc:`OverflowError` hatasınının ortaya çıkmasını sağlayabilir." #: library/stdtypes.rst:1322 msgid "Range examples::" -msgstr "" +msgstr "Aralık örnekleri::" #: library/stdtypes.rst:1339 msgid "" -"Ranges implement all of the :ref:`common ` sequence " -"operations except concatenation and repetition (due to the fact that range " -"objects can only represent sequences that follow a strict pattern and " -"repetition and concatenation will usually violate that pattern)." +"Ranges implement all of the :ref:`common ` sequence operations except " +"concatenation and repetition (due to the fact that range objects can only represent sequences " +"that follow a strict pattern and repetition and concatenation will usually violate that " +"pattern)." msgstr "" +"Aralıklar, birleştirme ve tekrar dışında tüm :ref:`common ` dizi işlemlerini " +"uygular (aralık nesnelerinin yalnızca katı bir kalıp izleyen dizileri temsil edebilmesi ve " +"tekrarlama ve birleştirmenin genellikle bu kalıbı ihlal etmesi nedeniyle)." #: library/stdtypes.rst:1346 -msgid "" -"The value of the *start* parameter (or ``0`` if the parameter was not " -"supplied)" -msgstr "" +msgid "The value of the *start* parameter (or ``0`` if the parameter was not supplied)" +msgstr "*start* parametresinin değeri (veya parametre sağlanmadıysa ``0``)" #: library/stdtypes.rst:1351 msgid "The value of the *stop* parameter" -msgstr "" +msgstr "*stop* parametresinin değeri" #: library/stdtypes.rst:1355 -msgid "" -"The value of the *step* parameter (or ``1`` if the parameter was not " -"supplied)" -msgstr "" +msgid "The value of the *step* parameter (or ``1`` if the parameter was not supplied)" +msgstr "*step* parametresinin değeri (veya parametre sağlanmadıysa ``1``)" #: library/stdtypes.rst:1358 msgid "" -"The advantage of the :class:`range` type over a regular :class:`list` or :" -"class:`tuple` is that a :class:`range` object will always take the same " -"(small) amount of memory, no matter the size of the range it represents (as " -"it only stores the ``start``, ``stop`` and ``step`` values, calculating " -"individual items and subranges as needed)." +"The advantage of the :class:`range` type over a regular :class:`list` or :class:`tuple` is " +"that a :class:`range` object will always take the same (small) amount of memory, no matter the " +"size of the range it represents (as it only stores the ``start``, ``stop`` and ``step`` " +"values, calculating individual items and subranges as needed)." msgstr "" +":class:`range` türünün normal bir :class:`list` veya :class:`tuple` üzerindeki avantajı, bir :" +"class:`range` nesnesinin temsil ettiği aralığın boyutu ne olursa olsun her zaman aynı (küçük) " +"miktarda bellek almasıdır (yalnızca ``start``, ``stop`` ve ``step`` değerlerini sakladığı " +"için, tek tek öğeleri ve alt aralıkları gerektiği gibi hesaplar)." #: library/stdtypes.rst:1364 msgid "" -"Range objects implement the :class:`collections.abc.Sequence` ABC, and " -"provide features such as containment tests, element index lookup, slicing " -"and support for negative indices (see :ref:`typesseq`):" +"Range objects implement the :class:`collections.abc.Sequence` ABC, and provide features such " +"as containment tests, element index lookup, slicing and support for negative indices (see :ref:" +"`typesseq`):" msgstr "" #: library/stdtypes.rst:1384 msgid "" -"Testing range objects for equality with ``==`` and ``!=`` compares them as " -"sequences. That is, two range objects are considered equal if they " -"represent the same sequence of values. (Note that two range objects that " -"compare equal might have different :attr:`~range.start`, :attr:`~range.stop` " -"and :attr:`~range.step` attributes, for example ``range(0) == range(2, 1, " +"Testing range objects for equality with ``==`` and ``!=`` compares them as sequences. That " +"is, two range objects are considered equal if they represent the same sequence of values. " +"(Note that two range objects that compare equal might have different :attr:`~range.start`, :" +"attr:`~range.stop` and :attr:`~range.step` attributes, for example ``range(0) == range(2, 1, " "3)`` or ``range(0, 3, 2) == range(0, 4, 2)``.)" msgstr "" #: library/stdtypes.rst:1391 msgid "" -"Implement the Sequence ABC. Support slicing and negative indices. Test :" -"class:`int` objects for membership in constant time instead of iterating " -"through all items." +"Implement the Sequence ABC. Support slicing and negative indices. Test :class:`int` objects " +"for membership in constant time instead of iterating through all items." msgstr "" #: library/stdtypes.rst:1397 msgid "" -"Define '==' and '!=' to compare range objects based on the sequence of " -"values they define (instead of comparing based on object identity)." +"Define '==' and '!=' to compare range objects based on the sequence of values they define " +"(instead of comparing based on object identity)." msgstr "" #: library/stdtypes.rst:1402 -msgid "" -"The :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` " -"attributes." +msgid "The :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` attributes." msgstr "" #: library/stdtypes.rst:1408 msgid "" -"The `linspace recipe `_ shows " -"how to implement a lazy version of range suitable for floating point " -"applications." +"The `linspace recipe `_ shows how to implement a " +"lazy version of range suitable for floating point applications." msgstr "" #: library/stdtypes.rst:1420 @@ -2084,9 +2095,9 @@ msgstr "" #: library/stdtypes.rst:1422 msgid "" -"Textual data in Python is handled with :class:`str` objects, or :dfn:" -"`strings`. Strings are immutable :ref:`sequences ` of Unicode code " -"points. String literals are written in a variety of ways:" +"Textual data in Python is handled with :class:`str` objects, or :dfn:`strings`. Strings are " +"immutable :ref:`sequences ` of Unicode code points. String literals are written in " +"a variety of ways:" msgstr "" #: library/stdtypes.rst:1427 @@ -2098,99 +2109,88 @@ msgid "Double quotes: ``\"allows embedded 'single' quotes\"``." msgstr "" #: library/stdtypes.rst:1429 -msgid "" -"Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double quotes" -"\"\"\"``" +msgid "Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double quotes\"\"\"``" msgstr "" #: library/stdtypes.rst:1431 msgid "" -"Triple quoted strings may span multiple lines - all associated whitespace " -"will be included in the string literal." +"Triple quoted strings may span multiple lines - all associated whitespace will be included in " +"the string literal." msgstr "" #: library/stdtypes.rst:1434 msgid "" -"String literals that are part of a single expression and have only " -"whitespace between them will be implicitly converted to a single string " -"literal. That is, ``(\"spam \" \"eggs\") == \"spam eggs\"``." +"String literals that are part of a single expression and have only whitespace between them " +"will be implicitly converted to a single string literal. That is, ``(\"spam \" \"eggs\") == " +"\"spam eggs\"``." msgstr "" #: library/stdtypes.rst:1438 msgid "" -"See :ref:`strings` for more about the various forms of string literal, " -"including supported escape sequences, and the ``r`` (\"raw\") prefix that " -"disables most escape sequence processing." +"See :ref:`strings` for more about the various forms of string literal, including supported " +"escape sequences, and the ``r`` (\"raw\") prefix that disables most escape sequence processing." msgstr "" #: library/stdtypes.rst:1442 -msgid "" -"Strings may also be created from other objects using the :class:`str` " -"constructor." +msgid "Strings may also be created from other objects using the :class:`str` constructor." msgstr "" #: library/stdtypes.rst:1445 msgid "" -"Since there is no separate \"character\" type, indexing a string produces " -"strings of length 1. That is, for a non-empty string *s*, ``s[0] == s[0:1]``." +"Since there is no separate \"character\" type, indexing a string produces strings of length 1. " +"That is, for a non-empty string *s*, ``s[0] == s[0:1]``." msgstr "" #: library/stdtypes.rst:1451 msgid "" -"There is also no mutable string type, but :meth:`str.join` or :class:`io." -"StringIO` can be used to efficiently construct strings from multiple " -"fragments." +"There is also no mutable string type, but :meth:`str.join` or :class:`io.StringIO` can be used " +"to efficiently construct strings from multiple fragments." msgstr "" #: library/stdtypes.rst:1455 msgid "" -"For backwards compatibility with the Python 2 series, the ``u`` prefix is " -"once again permitted on string literals. It has no effect on the meaning of " -"string literals and cannot be combined with the ``r`` prefix." +"For backwards compatibility with the Python 2 series, the ``u`` prefix is once again permitted " +"on string literals. It has no effect on the meaning of string literals and cannot be combined " +"with the ``r`` prefix." msgstr "" #: library/stdtypes.rst:1467 msgid "" -"Return a :ref:`string ` version of *object*. If *object* is not " -"provided, returns the empty string. Otherwise, the behavior of ``str()`` " -"depends on whether *encoding* or *errors* is given, as follows." +"Return a :ref:`string ` version of *object*. If *object* is not provided, returns " +"the empty string. Otherwise, the behavior of ``str()`` depends on whether *encoding* or " +"*errors* is given, as follows." msgstr "" #: library/stdtypes.rst:1471 msgid "" -"If neither *encoding* nor *errors* is given, ``str(object)`` returns :meth:" -"`object.__str__() `, which is the \"informal\" or nicely " -"printable string representation of *object*. For string objects, this is " -"the string itself. If *object* does not have a :meth:`~object.__str__` " -"method, then :func:`str` falls back to returning :meth:`repr(object) `." +"If neither *encoding* nor *errors* is given, ``str(object)`` returns :meth:`object.__str__() " +"`, which is the \"informal\" or nicely printable string representation of " +"*object*. For string objects, this is the string itself. If *object* does not have a :meth:" +"`~object.__str__` method, then :func:`str` falls back to returning :meth:`repr(object) `." msgstr "" #: library/stdtypes.rst:1482 msgid "" -"If at least one of *encoding* or *errors* is given, *object* should be a :" -"term:`bytes-like object` (e.g. :class:`bytes` or :class:`bytearray`). In " -"this case, if *object* is a :class:`bytes` (or :class:`bytearray`) object, " -"then ``str(bytes, encoding, errors)`` is equivalent to :meth:`bytes." -"decode(encoding, errors) `. Otherwise, the bytes object " -"underlying the buffer object is obtained before calling :meth:`bytes." -"decode`. See :ref:`binaryseq` and :ref:`bufferobjects` for information on " -"buffer objects." +"If at least one of *encoding* or *errors* is given, *object* should be a :term:`bytes-like " +"object` (e.g. :class:`bytes` or :class:`bytearray`). In this case, if *object* is a :class:" +"`bytes` (or :class:`bytearray`) object, then ``str(bytes, encoding, errors)`` is equivalent " +"to :meth:`bytes.decode(encoding, errors) `. Otherwise, the bytes object " +"underlying the buffer object is obtained before calling :meth:`bytes.decode`. See :ref:" +"`binaryseq` and :ref:`bufferobjects` for information on buffer objects." msgstr "" #: library/stdtypes.rst:1491 msgid "" -"Passing a :class:`bytes` object to :func:`str` without the *encoding* or " -"*errors* arguments falls under the first case of returning the informal " -"string representation (see also the :option:`-b` command-line option to " -"Python). For example::" +"Passing a :class:`bytes` object to :func:`str` without the *encoding* or *errors* arguments " +"falls under the first case of returning the informal string representation (see also the :" +"option:`-b` command-line option to Python). For example::" msgstr "" #: library/stdtypes.rst:1499 msgid "" -"For more information on the ``str`` class and its methods, see :ref:" -"`textseq` and the :ref:`string-methods` section below. To output formatted " -"strings, see the :ref:`f-strings` and :ref:`formatstrings` sections. In " -"addition, see the :ref:`stringservices` section." +"For more information on the ``str`` class and its methods, see :ref:`textseq` and the :ref:" +"`string-methods` section below. To output formatted strings, see the :ref:`f-strings` and :" +"ref:`formatstrings` sections. In addition, see the :ref:`stringservices` section." msgstr "" #: library/stdtypes.rst:1511 @@ -2199,92 +2199,82 @@ msgstr "" #: library/stdtypes.rst:1516 msgid "" -"Strings implement all of the :ref:`common ` sequence " -"operations, along with the additional methods described below." +"Strings implement all of the :ref:`common ` sequence operations, along with " +"the additional methods described below." msgstr "" #: library/stdtypes.rst:1519 msgid "" -"Strings also support two styles of string formatting, one providing a large " -"degree of flexibility and customization (see :meth:`str.format`, :ref:" -"`formatstrings` and :ref:`string-formatting`) and the other based on C " -"``printf`` style formatting that handles a narrower range of types and is " -"slightly harder to use correctly, but is often faster for the cases it can " -"handle (:ref:`old-string-formatting`)." +"Strings also support two styles of string formatting, one providing a large degree of " +"flexibility and customization (see :meth:`str.format`, :ref:`formatstrings` and :ref:`string-" +"formatting`) and the other based on C ``printf`` style formatting that handles a narrower " +"range of types and is slightly harder to use correctly, but is often faster for the cases it " +"can handle (:ref:`old-string-formatting`)." msgstr "" #: library/stdtypes.rst:1526 msgid "" -"The :ref:`textservices` section of the standard library covers a number of " -"other modules that provide various text related utilities (including regular " -"expression support in the :mod:`re` module)." +"The :ref:`textservices` section of the standard library covers a number of other modules that " +"provide various text related utilities (including regular expression support in the :mod:`re` " +"module)." msgstr "" #: library/stdtypes.rst:1532 -msgid "" -"Return a copy of the string with its first character capitalized and the " -"rest lowercased." +msgid "Return a copy of the string with its first character capitalized and the rest lowercased." msgstr "" #: library/stdtypes.rst:1535 msgid "" -"The first character is now put into titlecase rather than uppercase. This " -"means that characters like digraphs will only have their first letter " -"capitalized, instead of the full character." +"The first character is now put into titlecase rather than uppercase. This means that " +"characters like digraphs will only have their first letter capitalized, instead of the full " +"character." msgstr "" #: library/stdtypes.rst:1542 msgid "" -"Return a casefolded copy of the string. Casefolded strings may be used for " -"caseless matching." +"Return a casefolded copy of the string. Casefolded strings may be used for caseless matching." msgstr "" #: library/stdtypes.rst:1545 msgid "" -"Casefolding is similar to lowercasing but more aggressive because it is " -"intended to remove all case distinctions in a string. For example, the " -"German lowercase letter ``'ß'`` is equivalent to ``\"ss\"``. Since it is " -"already lowercase, :meth:`lower` would do nothing to ``'ß'``; :meth:" +"Casefolding is similar to lowercasing but more aggressive because it is intended to remove all " +"case distinctions in a string. For example, the German lowercase letter ``'ß'`` is equivalent " +"to ``\"ss\"``. Since it is already lowercase, :meth:`lower` would do nothing to ``'ß'``; :meth:" "`casefold` converts it to ``\"ss\"``." msgstr "" #: library/stdtypes.rst:1551 -msgid "" -"The casefolding algorithm is described in section 3.13 of the Unicode " -"Standard." +msgid "The casefolding algorithm is described in section 3.13 of the Unicode Standard." msgstr "" #: library/stdtypes.rst:1559 msgid "" -"Return centered in a string of length *width*. Padding is done using the " -"specified *fillchar* (default is an ASCII space). The original string is " -"returned if *width* is less than or equal to ``len(s)``." +"Return centered in a string of length *width*. Padding is done using the specified *fillchar* " +"(default is an ASCII space). The original string is returned if *width* is less than or equal " +"to ``len(s)``." msgstr "" #: library/stdtypes.rst:1567 msgid "" -"Return the number of non-overlapping occurrences of substring *sub* in the " -"range [*start*, *end*]. Optional arguments *start* and *end* are " -"interpreted as in slice notation." +"Return the number of non-overlapping occurrences of substring *sub* in the range [*start*, " +"*end*]. Optional arguments *start* and *end* are interpreted as in slice notation." msgstr "" #: library/stdtypes.rst:1574 msgid "" -"Return an encoded version of the string as a bytes object. Default encoding " -"is ``'utf-8'``. *errors* may be given to set a different error handling " -"scheme. The default for *errors* is ``'strict'``, meaning that encoding " -"errors raise a :exc:`UnicodeError`. Other possible values are ``'ignore'``, " -"``'replace'``, ``'xmlcharrefreplace'``, ``'backslashreplace'`` and any other " -"name registered via :func:`codecs.register_error`, see section :ref:`error-" -"handlers`. For a list of possible encodings, see section :ref:`standard-" -"encodings`." +"Return an encoded version of the string as a bytes object. Default encoding is ``'utf-8'``. " +"*errors* may be given to set a different error handling scheme. The default for *errors* is " +"``'strict'``, meaning that encoding errors raise a :exc:`UnicodeError`. Other possible values " +"are ``'ignore'``, ``'replace'``, ``'xmlcharrefreplace'``, ``'backslashreplace'`` and any other " +"name registered via :func:`codecs.register_error`, see section :ref:`error-handlers`. For a " +"list of possible encodings, see section :ref:`standard-encodings`." msgstr "" #: library/stdtypes.rst:1583 msgid "" -"By default, the *errors* argument is not checked for best performances, but " -"only used at the first encoding error. Enable the :ref:`Python Development " -"Mode `, or use a :ref:`debug build ` to check *errors*." +"By default, the *errors* argument is not checked for best performances, but only used at the " +"first encoding error. Enable the :ref:`Python Development Mode `, or use a :ref:" +"`debug build ` to check *errors*." msgstr "" #: library/stdtypes.rst:1588 @@ -2292,149 +2282,132 @@ msgid "Support for keyword arguments added." msgstr "" #: library/stdtypes.rst:2727 -msgid "" -"The *errors* is now checked in development mode and in :ref:`debug mode " -"`." +msgid "The *errors* is now checked in development mode and in :ref:`debug mode `." msgstr "" #: library/stdtypes.rst:1598 msgid "" -"Return ``True`` if the string ends with the specified *suffix*, otherwise " -"return ``False``. *suffix* can also be a tuple of suffixes to look for. " -"With optional *start*, test beginning at that position. With optional " -"*end*, stop comparing at that position." +"Return ``True`` if the string ends with the specified *suffix*, otherwise return ``False``. " +"*suffix* can also be a tuple of suffixes to look for. With optional *start*, test beginning " +"at that position. With optional *end*, stop comparing at that position." msgstr "" #: library/stdtypes.rst:1606 msgid "" -"Return a copy of the string where all tab characters are replaced by one or " -"more spaces, depending on the current column and the given tab size. Tab " -"positions occur every *tabsize* characters (default is 8, giving tab " -"positions at columns 0, 8, 16 and so on). To expand the string, the current " -"column is set to zero and the string is examined character by character. If " -"the character is a tab (``\\t``), one or more space characters are inserted " -"in the result until the current column is equal to the next tab position. " -"(The tab character itself is not copied.) If the character is a newline (``" -"\\n``) or return (``\\r``), it is copied and the current column is reset to " -"zero. Any other character is copied unchanged and the current column is " -"incremented by one regardless of how the character is represented when " -"printed." +"Return a copy of the string where all tab characters are replaced by one or more spaces, " +"depending on the current column and the given tab size. Tab positions occur every *tabsize* " +"characters (default is 8, giving tab positions at columns 0, 8, 16 and so on). To expand the " +"string, the current column is set to zero and the string is examined character by character. " +"If the character is a tab (``\\t``), one or more space characters are inserted in the result " +"until the current column is equal to the next tab position. (The tab character itself is not " +"copied.) If the character is a newline (``\\n``) or return (``\\r``), it is copied and the " +"current column is reset to zero. Any other character is copied unchanged and the current " +"column is incremented by one regardless of how the character is represented when printed." msgstr "" #: library/stdtypes.rst:1627 msgid "" -"Return the lowest index in the string where substring *sub* is found within " -"the slice ``s[start:end]``. Optional arguments *start* and *end* are " -"interpreted as in slice notation. Return ``-1`` if *sub* is not found." +"Return the lowest index in the string where substring *sub* is found within the slice " +"``s[start:end]``. Optional arguments *start* and *end* are interpreted as in slice notation. " +"Return ``-1`` if *sub* is not found." msgstr "" #: library/stdtypes.rst:1633 msgid "" -"The :meth:`~str.find` method should be used only if you need to know the " -"position of *sub*. To check if *sub* is a substring or not, use the :" -"keyword:`in` operator::" +"The :meth:`~str.find` method should be used only if you need to know the position of *sub*. " +"To check if *sub* is a substring or not, use the :keyword:`in` operator::" msgstr "" #: library/stdtypes.rst:1643 msgid "" -"Perform a string formatting operation. The string on which this method is " -"called can contain literal text or replacement fields delimited by braces " -"``{}``. Each replacement field contains either the numeric index of a " -"positional argument, or the name of a keyword argument. Returns a copy of " -"the string where each replacement field is replaced with the string value of " -"the corresponding argument." +"Perform a string formatting operation. The string on which this method is called can contain " +"literal text or replacement fields delimited by braces ``{}``. Each replacement field " +"contains either the numeric index of a positional argument, or the name of a keyword " +"argument. Returns a copy of the string where each replacement field is replaced with the " +"string value of the corresponding argument." msgstr "" #: library/stdtypes.rst:1653 msgid "" -"See :ref:`formatstrings` for a description of the various formatting options " -"that can be specified in format strings." +"See :ref:`formatstrings` for a description of the various formatting options that can be " +"specified in format strings." msgstr "" #: library/stdtypes.rst:1657 msgid "" -"When formatting a number (:class:`int`, :class:`float`, :class:`complex`, :" -"class:`decimal.Decimal` and subclasses) with the ``n`` type (ex: ``'{:n}'." -"format(1234)``), the function temporarily sets the ``LC_CTYPE`` locale to " -"the ``LC_NUMERIC`` locale to decode ``decimal_point`` and ``thousands_sep`` " -"fields of :c:func:`localeconv` if they are non-ASCII or longer than 1 byte, " -"and the ``LC_NUMERIC`` locale is different than the ``LC_CTYPE`` locale. " -"This temporary change affects other threads." +"When formatting a number (:class:`int`, :class:`float`, :class:`complex`, :class:`decimal." +"Decimal` and subclasses) with the ``n`` type (ex: ``'{:n}'.format(1234)``), the function " +"temporarily sets the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale to decode " +"``decimal_point`` and ``thousands_sep`` fields of :c:func:`localeconv` if they are non-ASCII " +"or longer than 1 byte, and the ``LC_NUMERIC`` locale is different than the ``LC_CTYPE`` " +"locale. This temporary change affects other threads." msgstr "" #: library/stdtypes.rst:1666 msgid "" -"When formatting a number with the ``n`` type, the function sets temporarily " -"the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale in some cases." +"When formatting a number with the ``n`` type, the function sets temporarily the ``LC_CTYPE`` " +"locale to the ``LC_NUMERIC`` locale in some cases." msgstr "" #: library/stdtypes.rst:1674 msgid "" -"Similar to ``str.format(**mapping)``, except that ``mapping`` is used " -"directly and not copied to a :class:`dict`. This is useful if for example " -"``mapping`` is a dict subclass:" +"Similar to ``str.format(**mapping)``, except that ``mapping`` is used directly and not copied " +"to a :class:`dict`. This is useful if for example ``mapping`` is a dict subclass:" msgstr "" #: library/stdtypes.rst:1690 -msgid "" -"Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is " -"not found." +msgid "Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is not found." msgstr "" #: library/stdtypes.rst:1696 msgid "" -"Return ``True`` if all characters in the string are alphanumeric and there " -"is at least one character, ``False`` otherwise. A character ``c`` is " -"alphanumeric if one of the following returns ``True``: ``c.isalpha()``, ``c." -"isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``." +"Return ``True`` if all characters in the string are alphanumeric and there is at least one " +"character, ``False`` otherwise. A character ``c`` is alphanumeric if one of the following " +"returns ``True``: ``c.isalpha()``, ``c.isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``." msgstr "" #: library/stdtypes.rst:1704 msgid "" -"Return ``True`` if all characters in the string are alphabetic and there is " -"at least one character, ``False`` otherwise. Alphabetic characters are " -"those characters defined in the Unicode character database as \"Letter\", i." -"e., those with general category property being one of \"Lm\", \"Lt\", \"Lu" -"\", \"Ll\", or \"Lo\". Note that this is different from the \"Alphabetic\" " -"property defined in the Unicode Standard." +"Return ``True`` if all characters in the string are alphabetic and there is at least one " +"character, ``False`` otherwise. Alphabetic characters are those characters defined in the " +"Unicode character database as \"Letter\", i.e., those with general category property being one " +"of \"Lm\", \"Lt\", \"Lu\", \"Ll\", or \"Lo\". Note that this is different from the " +"\"Alphabetic\" property defined in the Unicode Standard." msgstr "" #: library/stdtypes.rst:1713 msgid "" -"Return ``True`` if the string is empty or all characters in the string are " -"ASCII, ``False`` otherwise. ASCII characters have code points in the range U" -"+0000-U+007F." +"Return ``True`` if the string is empty or all characters in the string are ASCII, ``False`` " +"otherwise. ASCII characters have code points in the range U+0000-U+007F." msgstr "" #: library/stdtypes.rst:1722 msgid "" -"Return ``True`` if all characters in the string are decimal characters and " -"there is at least one character, ``False`` otherwise. Decimal characters are " -"those that can be used to form numbers in base 10, e.g. U+0660, ARABIC-INDIC " -"DIGIT ZERO. Formally a decimal character is a character in the Unicode " -"General Category \"Nd\"." +"Return ``True`` if all characters in the string are decimal characters and there is at least " +"one character, ``False`` otherwise. Decimal characters are those that can be used to form " +"numbers in base 10, e.g. U+0660, ARABIC-INDIC DIGIT ZERO. Formally a decimal character is a " +"character in the Unicode General Category \"Nd\"." msgstr "" #: library/stdtypes.rst:1732 msgid "" -"Return ``True`` if all characters in the string are digits and there is at " -"least one character, ``False`` otherwise. Digits include decimal characters " -"and digits that need special handling, such as the compatibility superscript " -"digits. This covers digits which cannot be used to form numbers in base 10, " -"like the Kharosthi numbers. Formally, a digit is a character that has the " -"property value Numeric_Type=Digit or Numeric_Type=Decimal." +"Return ``True`` if all characters in the string are digits and there is at least one " +"character, ``False`` otherwise. Digits include decimal characters and digits that need " +"special handling, such as the compatibility superscript digits. This covers digits which " +"cannot be used to form numbers in base 10, like the Kharosthi numbers. Formally, a digit is a " +"character that has the property value Numeric_Type=Digit or Numeric_Type=Decimal." msgstr "" #: library/stdtypes.rst:1742 msgid "" -"Return ``True`` if the string is a valid identifier according to the " -"language definition, section :ref:`identifiers`." +"Return ``True`` if the string is a valid identifier according to the language definition, " +"section :ref:`identifiers`." msgstr "" #: library/stdtypes.rst:1745 msgid "" -"Call :func:`keyword.iskeyword` to test whether string ``s`` is a reserved " -"identifier, such as :keyword:`def` and :keyword:`class`." +"Call :func:`keyword.iskeyword` to test whether string ``s`` is a reserved identifier, such as :" +"keyword:`def` and :keyword:`class`." msgstr "" #: library/stdtypes.rst:1748 @@ -2443,249 +2416,226 @@ msgstr "" #: library/stdtypes.rst:1761 msgid "" -"Return ``True`` if all cased characters [4]_ in the string are lowercase and " -"there is at least one cased character, ``False`` otherwise." +"Return ``True`` if all cased characters [4]_ in the string are lowercase and there is at least " +"one cased character, ``False`` otherwise." msgstr "" #: library/stdtypes.rst:1767 msgid "" -"Return ``True`` if all characters in the string are numeric characters, and " -"there is at least one character, ``False`` otherwise. Numeric characters " -"include digit characters, and all characters that have the Unicode numeric " -"value property, e.g. U+2155, VULGAR FRACTION ONE FIFTH. Formally, numeric " -"characters are those with the property value Numeric_Type=Digit, " +"Return ``True`` if all characters in the string are numeric characters, and there is at least " +"one character, ``False`` otherwise. Numeric characters include digit characters, and all " +"characters that have the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION ONE " +"FIFTH. Formally, numeric characters are those with the property value Numeric_Type=Digit, " "Numeric_Type=Decimal or Numeric_Type=Numeric." msgstr "" #: library/stdtypes.rst:1777 msgid "" -"Return ``True`` if all characters in the string are printable or the string " -"is empty, ``False`` otherwise. Nonprintable characters are those characters " -"defined in the Unicode character database as \"Other\" or \"Separator\", " -"excepting the ASCII space (0x20) which is considered printable. (Note that " -"printable characters in this context are those which should not be escaped " -"when :func:`repr` is invoked on a string. It has no bearing on the handling " -"of strings written to :data:`sys.stdout` or :data:`sys.stderr`.)" +"Return ``True`` if all characters in the string are printable or the string is empty, " +"``False`` otherwise. Nonprintable characters are those characters defined in the Unicode " +"character database as \"Other\" or \"Separator\", excepting the ASCII space (0x20) which is " +"considered printable. (Note that printable characters in this context are those which should " +"not be escaped when :func:`repr` is invoked on a string. It has no bearing on the handling of " +"strings written to :data:`sys.stdout` or :data:`sys.stderr`.)" msgstr "" #: library/stdtypes.rst:1788 msgid "" -"Return ``True`` if there are only whitespace characters in the string and " -"there is at least one character, ``False`` otherwise." +"Return ``True`` if there are only whitespace characters in the string and there is at least " +"one character, ``False`` otherwise." msgstr "" #: library/stdtypes.rst:1791 msgid "" -"A character is *whitespace* if in the Unicode character database (see :mod:" -"`unicodedata`), either its general category is ``Zs`` (\"Separator, space" -"\"), or its bidirectional class is one of ``WS``, ``B``, or ``S``." +"A character is *whitespace* if in the Unicode character database (see :mod:`unicodedata`), " +"either its general category is ``Zs`` (\"Separator, space\"), or its bidirectional class is " +"one of ``WS``, ``B``, or ``S``." msgstr "" #: library/stdtypes.rst:1799 msgid "" -"Return ``True`` if the string is a titlecased string and there is at least " -"one character, for example uppercase characters may only follow uncased " -"characters and lowercase characters only cased ones. Return ``False`` " -"otherwise." +"Return ``True`` if the string is a titlecased string and there is at least one character, for " +"example uppercase characters may only follow uncased characters and lowercase characters only " +"cased ones. Return ``False`` otherwise." msgstr "" #: library/stdtypes.rst:1806 msgid "" -"Return ``True`` if all cased characters [4]_ in the string are uppercase and " -"there is at least one cased character, ``False`` otherwise." +"Return ``True`` if all cased characters [4]_ in the string are uppercase and there is at least " +"one cased character, ``False`` otherwise." msgstr "" #: library/stdtypes.rst:1822 msgid "" -"Return a string which is the concatenation of the strings in *iterable*. A :" -"exc:`TypeError` will be raised if there are any non-string values in " -"*iterable*, including :class:`bytes` objects. The separator between " -"elements is the string providing this method." +"Return a string which is the concatenation of the strings in *iterable*. A :exc:`TypeError` " +"will be raised if there are any non-string values in *iterable*, including :class:`bytes` " +"objects. The separator between elements is the string providing this method." msgstr "" #: library/stdtypes.rst:1830 msgid "" -"Return the string left justified in a string of length *width*. Padding is " -"done using the specified *fillchar* (default is an ASCII space). The " -"original string is returned if *width* is less than or equal to ``len(s)``." +"Return the string left justified in a string of length *width*. Padding is done using the " +"specified *fillchar* (default is an ASCII space). The original string is returned if *width* " +"is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:1837 -msgid "" -"Return a copy of the string with all the cased characters [4]_ converted to " -"lowercase." +msgid "Return a copy of the string with all the cased characters [4]_ converted to lowercase." msgstr "" #: library/stdtypes.rst:1840 -msgid "" -"The lowercasing algorithm used is described in section 3.13 of the Unicode " -"Standard." +msgid "The lowercasing algorithm used is described in section 3.13 of the Unicode Standard." msgstr "" #: library/stdtypes.rst:1846 msgid "" -"Return a copy of the string with leading characters removed. The *chars* " -"argument is a string specifying the set of characters to be removed. If " -"omitted or ``None``, the *chars* argument defaults to removing whitespace. " -"The *chars* argument is not a prefix; rather, all combinations of its values " -"are stripped::" +"Return a copy of the string with leading characters removed. The *chars* argument is a string " +"specifying the set of characters to be removed. If omitted or ``None``, the *chars* argument " +"defaults to removing whitespace. The *chars* argument is not a prefix; rather, all " +"combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:1856 msgid "" -"See :meth:`str.removeprefix` for a method that will remove a single prefix " -"string rather than all of a set of characters. For example::" +"See :meth:`str.removeprefix` for a method that will remove a single prefix string rather than " +"all of a set of characters. For example::" msgstr "" #: library/stdtypes.rst:1867 -msgid "" -"This static method returns a translation table usable for :meth:`str." -"translate`." +msgid "This static method returns a translation table usable for :meth:`str.translate`." msgstr "" #: library/stdtypes.rst:1869 msgid "" -"If there is only one argument, it must be a dictionary mapping Unicode " -"ordinals (integers) or characters (strings of length 1) to Unicode ordinals, " -"strings (of arbitrary lengths) or ``None``. Character keys will then be " -"converted to ordinals." +"If there is only one argument, it must be a dictionary mapping Unicode ordinals (integers) or " +"characters (strings of length 1) to Unicode ordinals, strings (of arbitrary lengths) or " +"``None``. Character keys will then be converted to ordinals." msgstr "" #: library/stdtypes.rst:1874 msgid "" -"If there are two arguments, they must be strings of equal length, and in the " -"resulting dictionary, each character in x will be mapped to the character at " -"the same position in y. If there is a third argument, it must be a string, " -"whose characters will be mapped to ``None`` in the result." +"If there are two arguments, they must be strings of equal length, and in the resulting " +"dictionary, each character in x will be mapped to the character at the same position in y. If " +"there is a third argument, it must be a string, whose characters will be mapped to ``None`` in " +"the result." msgstr "" #: library/stdtypes.rst:1882 msgid "" -"Split the string at the first occurrence of *sep*, and return a 3-tuple " -"containing the part before the separator, the separator itself, and the part " -"after the separator. If the separator is not found, return a 3-tuple " -"containing the string itself, followed by two empty strings." +"Split the string at the first occurrence of *sep*, and return a 3-tuple containing the part " +"before the separator, the separator itself, and the part after the separator. If the " +"separator is not found, return a 3-tuple containing the string itself, followed by two empty " +"strings." msgstr "" #: library/stdtypes.rst:1890 msgid "" -"If the string starts with the *prefix* string, return " -"``string[len(prefix):]``. Otherwise, return a copy of the original string::" +"If the string starts with the *prefix* string, return ``string[len(prefix):]``. Otherwise, " +"return a copy of the original string::" msgstr "" #: library/stdtypes.rst:1904 msgid "" -"If the string ends with the *suffix* string and that *suffix* is not empty, " -"return ``string[:-len(suffix)]``. Otherwise, return a copy of the original " -"string::" +"If the string ends with the *suffix* string and that *suffix* is not empty, return ``string[:-" +"len(suffix)]``. Otherwise, return a copy of the original string::" msgstr "" #: library/stdtypes.rst:1918 msgid "" -"Return a copy of the string with all occurrences of substring *old* replaced " -"by *new*. If the optional argument *count* is given, only the first *count* " -"occurrences are replaced." +"Return a copy of the string with all occurrences of substring *old* replaced by *new*. If the " +"optional argument *count* is given, only the first *count* occurrences are replaced." msgstr "" #: library/stdtypes.rst:1925 msgid "" -"Return the highest index in the string where substring *sub* is found, such " -"that *sub* is contained within ``s[start:end]``. Optional arguments *start* " -"and *end* are interpreted as in slice notation. Return ``-1`` on failure." +"Return the highest index in the string where substring *sub* is found, such that *sub* is " +"contained within ``s[start:end]``. Optional arguments *start* and *end* are interpreted as in " +"slice notation. Return ``-1`` on failure." msgstr "" #: library/stdtypes.rst:1932 -msgid "" -"Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* is " -"not found." +msgid "Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* is not found." msgstr "" #: library/stdtypes.rst:1938 msgid "" -"Return the string right justified in a string of length *width*. Padding is " -"done using the specified *fillchar* (default is an ASCII space). The " -"original string is returned if *width* is less than or equal to ``len(s)``." +"Return the string right justified in a string of length *width*. Padding is done using the " +"specified *fillchar* (default is an ASCII space). The original string is returned if *width* " +"is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:1945 msgid "" -"Split the string at the last occurrence of *sep*, and return a 3-tuple " -"containing the part before the separator, the separator itself, and the part " -"after the separator. If the separator is not found, return a 3-tuple " -"containing two empty strings, followed by the string itself." +"Split the string at the last occurrence of *sep*, and return a 3-tuple containing the part " +"before the separator, the separator itself, and the part after the separator. If the " +"separator is not found, return a 3-tuple containing two empty strings, followed by the string " +"itself." msgstr "" #: library/stdtypes.rst:1953 msgid "" -"Return a list of the words in the string, using *sep* as the delimiter " -"string. If *maxsplit* is given, at most *maxsplit* splits are done, the " -"*rightmost* ones. If *sep* is not specified or ``None``, any whitespace " -"string is a separator. Except for splitting from the right, :meth:`rsplit` " -"behaves like :meth:`split` which is described in detail below." +"Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* " +"is given, at most *maxsplit* splits are done, the *rightmost* ones. If *sep* is not specified " +"or ``None``, any whitespace string is a separator. Except for splitting from the right, :meth:" +"`rsplit` behaves like :meth:`split` which is described in detail below." msgstr "" #: library/stdtypes.rst:1962 msgid "" -"Return a copy of the string with trailing characters removed. The *chars* " -"argument is a string specifying the set of characters to be removed. If " -"omitted or ``None``, the *chars* argument defaults to removing whitespace. " -"The *chars* argument is not a suffix; rather, all combinations of its values " -"are stripped::" +"Return a copy of the string with trailing characters removed. The *chars* argument is a " +"string specifying the set of characters to be removed. If omitted or ``None``, the *chars* " +"argument defaults to removing whitespace. The *chars* argument is not a suffix; rather, all " +"combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:1972 msgid "" -"See :meth:`str.removesuffix` for a method that will remove a single suffix " -"string rather than all of a set of characters. For example::" +"See :meth:`str.removesuffix` for a method that will remove a single suffix string rather than " +"all of a set of characters. For example::" msgstr "" #: library/stdtypes.rst:1982 msgid "" -"Return a list of the words in the string, using *sep* as the delimiter " -"string. If *maxsplit* is given, at most *maxsplit* splits are done (thus, " -"the list will have at most ``maxsplit+1`` elements). If *maxsplit* is not " -"specified or ``-1``, then there is no limit on the number of splits (all " -"possible splits are made)." +"Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* " +"is given, at most *maxsplit* splits are done (thus, the list will have at most ``maxsplit+1`` " +"elements). If *maxsplit* is not specified or ``-1``, then there is no limit on the number of " +"splits (all possible splits are made)." msgstr "" #: library/stdtypes.rst:1988 msgid "" -"If *sep* is given, consecutive delimiters are not grouped together and are " -"deemed to delimit empty strings (for example, ``'1,,2'.split(',')`` returns " -"``['1', '', '2']``). The *sep* argument may consist of multiple characters " -"(for example, ``'1<>2<>3'.split('<>')`` returns ``['1', '2', '3']``). " -"Splitting an empty string with a specified separator returns ``['']``." +"If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit " +"empty strings (for example, ``'1,,2'.split(',')`` returns ``['1', '', '2']``). The *sep* " +"argument may consist of multiple characters (for example, ``'1<>2<>3'.split('<>')`` returns " +"``['1', '2', '3']``). Splitting an empty string with a specified separator returns ``['']``." msgstr "" -#: library/stdtypes.rst:2010 library/stdtypes.rst:2130 -#: library/stdtypes.rst:3043 library/stdtypes.rst:3150 -#: library/stdtypes.rst:3191 library/stdtypes.rst:3233 -#: library/stdtypes.rst:3265 library/stdtypes.rst:3315 -#: library/stdtypes.rst:3384 library/stdtypes.rst:3408 +#: library/stdtypes.rst:2010 library/stdtypes.rst:2130 library/stdtypes.rst:3043 +#: library/stdtypes.rst:3150 library/stdtypes.rst:3191 library/stdtypes.rst:3233 +#: library/stdtypes.rst:3265 library/stdtypes.rst:3315 library/stdtypes.rst:3384 +#: library/stdtypes.rst:3408 msgid "For example::" msgstr "" #: library/stdtypes.rst:2003 msgid "" -"If *sep* is not specified or is ``None``, a different splitting algorithm is " -"applied: runs of consecutive whitespace are regarded as a single separator, " -"and the result will contain no empty strings at the start or end if the " -"string has leading or trailing whitespace. Consequently, splitting an empty " -"string or a string consisting of just whitespace with a ``None`` separator " -"returns ``[]``." +"If *sep* is not specified or is ``None``, a different splitting algorithm is applied: runs of " +"consecutive whitespace are regarded as a single separator, and the result will contain no " +"empty strings at the start or end if the string has leading or trailing whitespace. " +"Consequently, splitting an empty string or a string consisting of just whitespace with a " +"``None`` separator returns ``[]``." msgstr "" #: library/stdtypes.rst:2025 msgid "" -"Return a list of the lines in the string, breaking at line boundaries. Line " -"breaks are not included in the resulting list unless *keepends* is given and " -"true." +"Return a list of the lines in the string, breaking at line boundaries. Line breaks are not " +"included in the resulting list unless *keepends* is given and true." msgstr "" #: library/stdtypes.rst:2029 msgid "" -"This method splits on the following line boundaries. In particular, the " -"boundaries are a superset of :term:`universal newlines`." +"This method splits on the following line boundaries. In particular, the boundaries are a " +"superset of :term:`universal newlines`." msgstr "" #: library/stdtypes.rst:2033 @@ -2790,9 +2740,8 @@ msgstr "" #: library/stdtypes.rst:2069 msgid "" -"Unlike :meth:`~str.split` when a delimiter string *sep* is given, this " -"method returns an empty list for the empty string, and a terminal line break " -"does not result in an extra line::" +"Unlike :meth:`~str.split` when a delimiter string *sep* is given, this method returns an empty " +"list for the empty string, and a terminal line break does not result in an extra line::" msgstr "" #: library/stdtypes.rst:2078 @@ -2801,100 +2750,90 @@ msgstr "" #: library/stdtypes.rst:2088 msgid "" -"Return ``True`` if string starts with the *prefix*, otherwise return " -"``False``. *prefix* can also be a tuple of prefixes to look for. With " -"optional *start*, test string beginning at that position. With optional " -"*end*, stop comparing string at that position." +"Return ``True`` if string starts with the *prefix*, otherwise return ``False``. *prefix* can " +"also be a tuple of prefixes to look for. With optional *start*, test string beginning at that " +"position. With optional *end*, stop comparing string at that position." msgstr "" #: library/stdtypes.rst:2096 msgid "" -"Return a copy of the string with the leading and trailing characters " -"removed. The *chars* argument is a string specifying the set of characters " -"to be removed. If omitted or ``None``, the *chars* argument defaults to " -"removing whitespace. The *chars* argument is not a prefix or suffix; rather, " -"all combinations of its values are stripped::" +"Return a copy of the string with the leading and trailing characters removed. The *chars* " +"argument is a string specifying the set of characters to be removed. If omitted or ``None``, " +"the *chars* argument defaults to removing whitespace. The *chars* argument is not a prefix or " +"suffix; rather, all combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:2107 msgid "" -"The outermost leading and trailing *chars* argument values are stripped from " -"the string. Characters are removed from the leading end until reaching a " -"string character that is not contained in the set of characters in *chars*. " -"A similar action takes place on the trailing end. For example::" +"The outermost leading and trailing *chars* argument values are stripped from the string. " +"Characters are removed from the leading end until reaching a string character that is not " +"contained in the set of characters in *chars*. A similar action takes place on the trailing " +"end. For example::" msgstr "" #: library/stdtypes.rst:2120 msgid "" -"Return a copy of the string with uppercase characters converted to lowercase " -"and vice versa. Note that it is not necessarily true that ``s.swapcase()." -"swapcase() == s``." +"Return a copy of the string with uppercase characters converted to lowercase and vice versa. " +"Note that it is not necessarily true that ``s.swapcase().swapcase() == s``." msgstr "" #: library/stdtypes.rst:2127 msgid "" -"Return a titlecased version of the string where words start with an " -"uppercase character and the remaining characters are lowercase." +"Return a titlecased version of the string where words start with an uppercase character and " +"the remaining characters are lowercase." msgstr "" #: library/stdtypes.rst:3352 msgid "" -"The algorithm uses a simple language-independent definition of a word as " -"groups of consecutive letters. The definition works in many contexts but it " -"means that apostrophes in contractions and possessives form word boundaries, " -"which may not be the desired result::" +"The algorithm uses a simple language-independent definition of a word as groups of consecutive " +"letters. The definition works in many contexts but it means that apostrophes in contractions " +"and possessives form word boundaries, which may not be the desired result::" msgstr "" #: library/stdtypes.rst:3360 -msgid "" -"A workaround for apostrophes can be constructed using regular expressions::" +msgid "A workaround for apostrophes can be constructed using regular expressions::" msgstr "" #: library/stdtypes.rst:2157 msgid "" -"Return a copy of the string in which each character has been mapped through " -"the given translation table. The table must be an object that implements " -"indexing via :meth:`__getitem__`, typically a :term:`mapping` or :term:" -"`sequence`. When indexed by a Unicode ordinal (an integer), the table " -"object can do any of the following: return a Unicode ordinal or a string, to " -"map the character to one or more other characters; return ``None``, to " -"delete the character from the return string; or raise a :exc:`LookupError` " -"exception, to map the character to itself." +"Return a copy of the string in which each character has been mapped through the given " +"translation table. The table must be an object that implements indexing via :meth:" +"`__getitem__`, typically a :term:`mapping` or :term:`sequence`. When indexed by a Unicode " +"ordinal (an integer), the table object can do any of the following: return a Unicode ordinal " +"or a string, to map the character to one or more other characters; return ``None``, to delete " +"the character from the return string; or raise a :exc:`LookupError` exception, to map the " +"character to itself." msgstr "" #: library/stdtypes.rst:2166 msgid "" -"You can use :meth:`str.maketrans` to create a translation map from character-" -"to-character mappings in different formats." +"You can use :meth:`str.maketrans` to create a translation map from character-to-character " +"mappings in different formats." msgstr "" #: library/stdtypes.rst:2169 msgid "" -"See also the :mod:`codecs` module for a more flexible approach to custom " -"character mappings." +"See also the :mod:`codecs` module for a more flexible approach to custom character mappings." msgstr "" #: library/stdtypes.rst:2175 msgid "" -"Return a copy of the string with all the cased characters [4]_ converted to " -"uppercase. Note that ``s.upper().isupper()`` might be ``False`` if ``s`` " -"contains uncased characters or if the Unicode category of the resulting " -"character(s) is not \"Lu\" (Letter, uppercase), but e.g. \"Lt\" (Letter, " -"titlecase)." +"Return a copy of the string with all the cased characters [4]_ converted to uppercase. Note " +"that ``s.upper().isupper()`` might be ``False`` if ``s`` contains uncased characters or if the " +"Unicode category of the resulting character(s) is not \"Lu\" (Letter, uppercase), but e.g. \"Lt" +"\" (Letter, titlecase)." msgstr "" #: library/stdtypes.rst:2181 -msgid "" -"The uppercasing algorithm used is described in section 3.13 of the Unicode " -"Standard." +msgid "The uppercasing algorithm used is described in section 3.13 of the Unicode Standard." msgstr "" #: library/stdtypes.rst:2187 msgid "" -"Return a copy of the string left filled with ASCII ``'0'`` digits to make a " -"string of length *width*. A leading sign prefix (``'+'``/``'-'``) is handled " -"by inserting the padding *after* the sign character rather than before. The " -"original string is returned if *width* is less than or equal to ``len(s)``." +"Return a copy of the string left filled with ASCII ``'0'`` digits to make a string of length " +"*width*. A leading sign prefix (``'+'``/``'-'``) is handled by inserting the padding *after* " +"the sign character rather than before. The original string is returned if *width* is less than " +"or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:2205 @@ -2903,37 +2842,33 @@ msgstr "" #: library/stdtypes.rst:2218 msgid "" -"The formatting operations described here exhibit a variety of quirks that " -"lead to a number of common errors (such as failing to display tuples and " -"dictionaries correctly). Using the newer :ref:`formatted string literals `, the :meth:`str.format` interface, or :ref:`template strings " -"` may help avoid these errors. Each of these alternatives " -"provides their own trade-offs and benefits of simplicity, flexibility, and/" -"or extensibility." +"The formatting operations described here exhibit a variety of quirks that lead to a number of " +"common errors (such as failing to display tuples and dictionaries correctly). Using the " +"newer :ref:`formatted string literals `, the :meth:`str.format` interface, or :ref:" +"`template strings ` may help avoid these errors. Each of these alternatives " +"provides their own trade-offs and benefits of simplicity, flexibility, and/or extensibility." msgstr "" #: library/stdtypes.rst:2226 msgid "" -"String objects have one unique built-in operation: the ``%`` operator " -"(modulo). This is also known as the string *formatting* or *interpolation* " -"operator. Given ``format % values`` (where *format* is a string), ``%`` " -"conversion specifications in *format* are replaced with zero or more " -"elements of *values*. The effect is similar to using the :c:func:`sprintf` " -"in the C language." +"String objects have one unique built-in operation: the ``%`` operator (modulo). This is also " +"known as the string *formatting* or *interpolation* operator. Given ``format % values`` (where " +"*format* is a string), ``%`` conversion specifications in *format* are replaced with zero or " +"more elements of *values*. The effect is similar to using the :c:func:`sprintf` in the C " +"language." msgstr "" #: library/stdtypes.rst:2232 msgid "" -"If *format* requires a single argument, *values* may be a single non-tuple " -"object. [5]_ Otherwise, *values* must be a tuple with exactly the number of " -"items specified by the format string, or a single mapping object (for " -"example, a dictionary)." +"If *format* requires a single argument, *values* may be a single non-tuple object. [5]_ " +"Otherwise, *values* must be a tuple with exactly the number of items specified by the format " +"string, or a single mapping object (for example, a dictionary)." msgstr "" #: library/stdtypes.rst:3463 msgid "" -"A conversion specifier contains two or more characters and has the following " -"components, which must occur in this order:" +"A conversion specifier contains two or more characters and has the following components, which " +"must occur in this order:" msgstr "" #: library/stdtypes.rst:3466 @@ -2942,29 +2877,26 @@ msgstr "" #: library/stdtypes.rst:3468 msgid "" -"Mapping key (optional), consisting of a parenthesised sequence of characters " -"(for example, ``(somename)``)." +"Mapping key (optional), consisting of a parenthesised sequence of characters (for example, " +"``(somename)``)." msgstr "" #: library/stdtypes.rst:3471 -msgid "" -"Conversion flags (optional), which affect the result of some conversion " -"types." +msgid "Conversion flags (optional), which affect the result of some conversion types." msgstr "" #: library/stdtypes.rst:3474 msgid "" -"Minimum field width (optional). If specified as an ``'*'`` (asterisk), the " -"actual width is read from the next element of the tuple in *values*, and the " -"object to convert comes after the minimum field width and optional precision." +"Minimum field width (optional). If specified as an ``'*'`` (asterisk), the actual width is " +"read from the next element of the tuple in *values*, and the object to convert comes after the " +"minimum field width and optional precision." msgstr "" #: library/stdtypes.rst:3478 msgid "" -"Precision (optional), given as a ``'.'`` (dot) followed by the precision. " -"If specified as ``'*'`` (an asterisk), the actual precision is read from the " -"next element of the tuple in *values*, and the value to convert comes after " -"the precision." +"Precision (optional), given as a ``'.'`` (dot) followed by the precision. If specified as " +"``'*'`` (an asterisk), the actual precision is read from the next element of the tuple in " +"*values*, and the value to convert comes after the precision." msgstr "" #: library/stdtypes.rst:3483 @@ -2977,16 +2909,16 @@ msgstr "" #: library/stdtypes.rst:2266 msgid "" -"When the right argument is a dictionary (or other mapping type), then the " -"formats in the string *must* include a parenthesised mapping key into that " -"dictionary inserted immediately after the ``'%'`` character. The mapping key " -"selects the value to be formatted from the mapping. For example:" +"When the right argument is a dictionary (or other mapping type), then the formats in the " +"string *must* include a parenthesised mapping key into that dictionary inserted immediately " +"after the ``'%'`` character. The mapping key selects the value to be formatted from the " +"mapping. For example:" msgstr "" #: library/stdtypes.rst:3496 msgid "" -"In this case no ``*`` specifiers may occur in a format (since they require a " -"sequential parameter list)." +"In this case no ``*`` specifiers may occur in a format (since they require a sequential " +"parameter list)." msgstr "" #: library/stdtypes.rst:3499 @@ -3002,8 +2934,7 @@ msgid "``'#'``" msgstr "" #: library/stdtypes.rst:3510 -msgid "" -"The value conversion will use the \"alternate form\" (where defined below)." +msgid "The value conversion will use the \"alternate form\" (where defined below)." msgstr "" #: library/stdtypes.rst:3513 @@ -3020,8 +2951,7 @@ msgstr "" #: library/stdtypes.rst:3515 msgid "" -"The converted value is left adjusted (overrides the ``'0'`` conversion if " -"both are given)." +"The converted value is left adjusted (overrides the ``'0'`` conversion if both are given)." msgstr "" #: library/stdtypes.rst:3518 @@ -3030,8 +2960,8 @@ msgstr "" #: library/stdtypes.rst:3518 msgid "" -"(a space) A blank should be left before a positive number (or empty string) " -"produced by a signed conversion." +"(a space) A blank should be left before a positive number (or empty string) produced by a " +"signed conversion." msgstr "" #: library/stdtypes.rst:3521 @@ -3040,14 +2970,13 @@ msgstr "" #: library/stdtypes.rst:3521 msgid "" -"A sign character (``'+'`` or ``'-'``) will precede the conversion (overrides " -"a \"space\" flag)." +"A sign character (``'+'`` or ``'-'``) will precede the conversion (overrides a \"space\" flag)." msgstr "" #: library/stdtypes.rst:3525 msgid "" -"A length modifier (``h``, ``l``, or ``L``) may be present, but is ignored as " -"it is not necessary for Python -- so e.g. ``%ld`` is identical to ``%d``." +"A length modifier (``h``, ``l``, or ``L``) may be present, but is ignored as it is not " +"necessary for Python -- so e.g. ``%ld`` is identical to ``%d``." msgstr "" #: library/stdtypes.rst:3528 @@ -3136,8 +3065,8 @@ msgstr "" #: library/stdtypes.rst:3553 msgid "" -"Floating point format. Uses lowercase exponential format if exponent is less " -"than -4 or not less than precision, decimal format otherwise." +"Floating point format. Uses lowercase exponential format if exponent is less than -4 or not " +"less than precision, decimal format otherwise." msgstr "" #: library/stdtypes.rst:3557 @@ -3146,8 +3075,8 @@ msgstr "" #: library/stdtypes.rst:3557 msgid "" -"Floating point format. Uses uppercase exponential format if exponent is less " -"than -4 or not less than precision, decimal format otherwise." +"Floating point format. Uses uppercase exponential format if exponent is less than -4 or not " +"less than precision, decimal format otherwise." msgstr "" #: library/stdtypes.rst:3561 @@ -3192,39 +3121,36 @@ msgstr "" #: library/stdtypes.rst:3584 msgid "" -"The alternate form causes a leading octal specifier (``'0o'``) to be " -"inserted before the first digit." +"The alternate form causes a leading octal specifier (``'0o'``) to be inserted before the first " +"digit." msgstr "" #: library/stdtypes.rst:3588 msgid "" -"The alternate form causes a leading ``'0x'`` or ``'0X'`` (depending on " -"whether the ``'x'`` or ``'X'`` format was used) to be inserted before the " -"first digit." +"The alternate form causes a leading ``'0x'`` or ``'0X'`` (depending on whether the ``'x'`` or " +"``'X'`` format was used) to be inserted before the first digit." msgstr "" #: library/stdtypes.rst:3592 msgid "" -"The alternate form causes the result to always contain a decimal point, even " -"if no digits follow it." +"The alternate form causes the result to always contain a decimal point, even if no digits " +"follow it." msgstr "" #: library/stdtypes.rst:3595 -msgid "" -"The precision determines the number of digits after the decimal point and " -"defaults to 6." +msgid "The precision determines the number of digits after the decimal point and defaults to 6." msgstr "" #: library/stdtypes.rst:3599 msgid "" -"The alternate form causes the result to always contain a decimal point, and " -"trailing zeroes are not removed as they would otherwise be." +"The alternate form causes the result to always contain a decimal point, and trailing zeroes " +"are not removed as they would otherwise be." msgstr "" #: library/stdtypes.rst:3602 msgid "" -"The precision determines the number of significant digits before and after " -"the decimal point and defaults to 6." +"The precision determines the number of significant digits before and after the decimal point " +"and defaults to 6." msgstr "" #: library/stdtypes.rst:3606 @@ -3237,34 +3163,31 @@ msgstr "" #: library/stdtypes.rst:2386 msgid "" -"Since Python strings have an explicit length, ``%s`` conversions do not " -"assume that ``'\\0'`` is the end of the string." +"Since Python strings have an explicit length, ``%s`` conversions do not assume that ``'\\0'`` " +"is the end of the string." msgstr "" #: library/stdtypes.rst:2391 msgid "" -"``%f`` conversions for numbers whose absolute value is over 1e50 are no " -"longer replaced by ``%g`` conversions." +"``%f`` conversions for numbers whose absolute value is over 1e50 are no longer replaced by ``" +"%g`` conversions." msgstr "" #: library/stdtypes.rst:2402 -msgid "" -"Binary Sequence Types --- :class:`bytes`, :class:`bytearray`, :class:" -"`memoryview`" +msgid "Binary Sequence Types --- :class:`bytes`, :class:`bytearray`, :class:`memoryview`" msgstr "" #: library/stdtypes.rst:2410 msgid "" -"The core built-in types for manipulating binary data are :class:`bytes` and :" -"class:`bytearray`. They are supported by :class:`memoryview` which uses the :" -"ref:`buffer protocol ` to access the memory of other binary " -"objects without needing to make a copy." +"The core built-in types for manipulating binary data are :class:`bytes` and :class:" +"`bytearray`. They are supported by :class:`memoryview` which uses the :ref:`buffer protocol " +"` to access the memory of other binary objects without needing to make a copy." msgstr "" #: library/stdtypes.rst:2415 msgid "" -"The :mod:`array` module supports efficient storage of basic data types like " -"32-bit integers and IEEE754 double-precision floating values." +"The :mod:`array` module supports efficient storage of basic data types like 32-bit integers " +"and IEEE754 double-precision floating values." msgstr "" #: library/stdtypes.rst:2421 @@ -3273,16 +3196,16 @@ msgstr "" #: library/stdtypes.rst:2425 msgid "" -"Bytes objects are immutable sequences of single bytes. Since many major " -"binary protocols are based on the ASCII text encoding, bytes objects offer " -"several methods that are only valid when working with ASCII compatible data " -"and are closely related to string objects in a variety of other ways." +"Bytes objects are immutable sequences of single bytes. Since many major binary protocols are " +"based on the ASCII text encoding, bytes objects offer several methods that are only valid when " +"working with ASCII compatible data and are closely related to string objects in a variety of " +"other ways." msgstr "" #: library/stdtypes.rst:2432 msgid "" -"Firstly, the syntax for bytes literals is largely the same as that for " -"string literals, except that a ``b`` prefix is added:" +"Firstly, the syntax for bytes literals is largely the same as that for string literals, except " +"that a ``b`` prefix is added:" msgstr "" #: library/stdtypes.rst:2435 @@ -3294,41 +3217,36 @@ msgid "Double quotes: ``b\"still allows embedded 'single' quotes\"``." msgstr "" #: library/stdtypes.rst:2437 -msgid "" -"Triple quoted: ``b'''3 single quotes'''``, ``b\"\"\"3 double quotes\"\"\"``" +msgid "Triple quoted: ``b'''3 single quotes'''``, ``b\"\"\"3 double quotes\"\"\"``" msgstr "" #: library/stdtypes.rst:2439 msgid "" -"Only ASCII characters are permitted in bytes literals (regardless of the " -"declared source code encoding). Any binary values over 127 must be entered " -"into bytes literals using the appropriate escape sequence." +"Only ASCII characters are permitted in bytes literals (regardless of the declared source code " +"encoding). Any binary values over 127 must be entered into bytes literals using the " +"appropriate escape sequence." msgstr "" #: library/stdtypes.rst:2443 msgid "" -"As with string literals, bytes literals may also use a ``r`` prefix to " -"disable processing of escape sequences. See :ref:`strings` for more about " -"the various forms of bytes literal, including supported escape sequences." +"As with string literals, bytes literals may also use a ``r`` prefix to disable processing of " +"escape sequences. See :ref:`strings` for more about the various forms of bytes literal, " +"including supported escape sequences." msgstr "" #: library/stdtypes.rst:2447 msgid "" -"While bytes literals and representations are based on ASCII text, bytes " -"objects actually behave like immutable sequences of integers, with each " -"value in the sequence restricted such that ``0 <= x < 256`` (attempts to " -"violate this restriction will trigger :exc:`ValueError`). This is done " -"deliberately to emphasise that while many binary formats include ASCII based " -"elements and can be usefully manipulated with some text-oriented algorithms, " -"this is not generally the case for arbitrary binary data (blindly applying " -"text processing algorithms to binary data formats that are not ASCII " -"compatible will usually lead to data corruption)." +"While bytes literals and representations are based on ASCII text, bytes objects actually " +"behave like immutable sequences of integers, with each value in the sequence restricted such " +"that ``0 <= x < 256`` (attempts to violate this restriction will trigger :exc:`ValueError`). " +"This is done deliberately to emphasise that while many binary formats include ASCII based " +"elements and can be usefully manipulated with some text-oriented algorithms, this is not " +"generally the case for arbitrary binary data (blindly applying text processing algorithms to " +"binary data formats that are not ASCII compatible will usually lead to data corruption)." msgstr "" #: library/stdtypes.rst:2457 -msgid "" -"In addition to the literal forms, bytes objects can be created in a number " -"of other ways:" +msgid "In addition to the literal forms, bytes objects can be created in a number of other ways:" msgstr "" #: library/stdtypes.rst:2460 @@ -3349,77 +3267,67 @@ msgstr "" #: library/stdtypes.rst:2466 msgid "" -"Since 2 hexadecimal digits correspond precisely to a single byte, " -"hexadecimal numbers are a commonly used format for describing binary data. " -"Accordingly, the bytes type has an additional class method to read data in " -"that format:" +"Since 2 hexadecimal digits correspond precisely to a single byte, hexadecimal numbers are a " +"commonly used format for describing binary data. Accordingly, the bytes type has an additional " +"class method to read data in that format:" msgstr "" #: library/stdtypes.rst:2472 msgid "" -"This :class:`bytes` class method returns a bytes object, decoding the given " -"string object. The string must contain two hexadecimal digits per byte, " -"with ASCII whitespace being ignored." +"This :class:`bytes` class method returns a bytes object, decoding the given string object. " +"The string must contain two hexadecimal digits per byte, with ASCII whitespace being ignored." msgstr "" #: library/stdtypes.rst:2479 -msgid "" -":meth:`bytes.fromhex` now skips all ASCII whitespace in the string, not just " -"spaces." +msgid ":meth:`bytes.fromhex` now skips all ASCII whitespace in the string, not just spaces." msgstr "" #: library/stdtypes.rst:2483 msgid "" -"A reverse conversion function exists to transform a bytes object into its " -"hexadecimal representation." +"A reverse conversion function exists to transform a bytes object into its hexadecimal " +"representation." msgstr "" #: library/stdtypes.rst:2582 -msgid "" -"Return a string object containing two hexadecimal digits for each byte in " -"the instance." +msgid "Return a string object containing two hexadecimal digits for each byte in the instance." msgstr "" #: library/stdtypes.rst:2494 msgid "" -"If you want to make the hex string easier to read, you can specify a single " -"character separator *sep* parameter to include in the output. By default " -"between each byte. A second optional *bytes_per_sep* parameter controls the " -"spacing. Positive values calculate the separator position from the right, " -"negative values from the left." +"If you want to make the hex string easier to read, you can specify a single character " +"separator *sep* parameter to include in the output. By default between each byte. A second " +"optional *bytes_per_sep* parameter controls the spacing. Positive values calculate the " +"separator position from the right, negative values from the left." msgstr "" #: library/stdtypes.rst:2510 msgid "" -":meth:`bytes.hex` now supports optional *sep* and *bytes_per_sep* parameters " -"to insert separators between bytes in the hex output." +":meth:`bytes.hex` now supports optional *sep* and *bytes_per_sep* parameters to insert " +"separators between bytes in the hex output." msgstr "" #: library/stdtypes.rst:2514 msgid "" -"Since bytes objects are sequences of integers (akin to a tuple), for a bytes " -"object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytes " -"object of length 1. (This contrasts with text strings, where both indexing " -"and slicing will produce a string of length 1)" +"Since bytes objects are sequences of integers (akin to a tuple), for a bytes object *b*, " +"``b[0]`` will be an integer, while ``b[0:1]`` will be a bytes object of length 1. (This " +"contrasts with text strings, where both indexing and slicing will produce a string of length 1)" msgstr "" #: library/stdtypes.rst:2519 msgid "" -"The representation of bytes objects uses the literal format (``b'...'``) " -"since it is often more useful than e.g. ``bytes([46, 46, 46])``. You can " -"always convert a bytes object into a list of integers using ``list(b)``." +"The representation of bytes objects uses the literal format (``b'...'``) since it is often " +"more useful than e.g. ``bytes([46, 46, 46])``. You can always convert a bytes object into a " +"list of integers using ``list(b)``." msgstr "" #: library/stdtypes.rst:2524 msgid "" -"For Python 2.x users: In the Python 2.x series, a variety of implicit " -"conversions between 8-bit strings (the closest thing 2.x offers to a built-" -"in binary data type) and Unicode strings were permitted. This was a " -"backwards compatibility workaround to account for the fact that Python " -"originally only supported 8-bit text, and Unicode text was a later addition. " -"In Python 3.x, those implicit conversions are gone - conversions between 8-" -"bit binary data and Unicode text must be explicit, and bytes and string " -"objects will always compare unequal." +"For Python 2.x users: In the Python 2.x series, a variety of implicit conversions between 8-" +"bit strings (the closest thing 2.x offers to a built-in binary data type) and Unicode strings " +"were permitted. This was a backwards compatibility workaround to account for the fact that " +"Python originally only supported 8-bit text, and Unicode text was a later addition. In Python " +"3.x, those implicit conversions are gone - conversions between 8-bit binary data and Unicode " +"text must be explicit, and bytes and string objects will always compare unequal." msgstr "" #: library/stdtypes.rst:2537 @@ -3427,15 +3335,13 @@ msgid "Bytearray Objects" msgstr "" #: library/stdtypes.rst:2541 -msgid "" -":class:`bytearray` objects are a mutable counterpart to :class:`bytes` " -"objects." +msgid ":class:`bytearray` objects are a mutable counterpart to :class:`bytes` objects." msgstr "" #: library/stdtypes.rst:2546 msgid "" -"There is no dedicated literal syntax for bytearray objects, instead they are " -"always created by calling the constructor:" +"There is no dedicated literal syntax for bytearray objects, instead they are always created by " +"calling the constructor:" msgstr "" #: library/stdtypes.rst:2549 @@ -3451,15 +3357,14 @@ msgid "From an iterable of integers: ``bytearray(range(20))``" msgstr "" #: library/stdtypes.rst:2552 -msgid "" -"Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!')``" +msgid "Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!')``" msgstr "" #: library/stdtypes.rst:2554 msgid "" -"As bytearray objects are mutable, they support the :ref:`mutable ` sequence operations in addition to the common bytes and bytearray " -"operations described in :ref:`bytes-methods`." +"As bytearray objects are mutable, they support the :ref:`mutable ` sequence " +"operations in addition to the common bytes and bytearray operations described in :ref:`bytes-" +"methods`." msgstr "" #: library/stdtypes.rst:2558 @@ -3468,52 +3373,47 @@ msgstr "" #: library/stdtypes.rst:2560 msgid "" -"Since 2 hexadecimal digits correspond precisely to a single byte, " -"hexadecimal numbers are a commonly used format for describing binary data. " -"Accordingly, the bytearray type has an additional class method to read data " -"in that format:" +"Since 2 hexadecimal digits correspond precisely to a single byte, hexadecimal numbers are a " +"commonly used format for describing binary data. Accordingly, the bytearray type has an " +"additional class method to read data in that format:" msgstr "" #: library/stdtypes.rst:2566 msgid "" -"This :class:`bytearray` class method returns bytearray object, decoding the " -"given string object. The string must contain two hexadecimal digits per " -"byte, with ASCII whitespace being ignored." +"This :class:`bytearray` class method returns bytearray object, decoding the given string " +"object. The string must contain two hexadecimal digits per byte, with ASCII whitespace being " +"ignored." msgstr "" #: library/stdtypes.rst:2573 -msgid "" -":meth:`bytearray.fromhex` now skips all ASCII whitespace in the string, not " -"just spaces." +msgid ":meth:`bytearray.fromhex` now skips all ASCII whitespace in the string, not just spaces." msgstr "" #: library/stdtypes.rst:2577 msgid "" -"A reverse conversion function exists to transform a bytearray object into " -"its hexadecimal representation." +"A reverse conversion function exists to transform a bytearray object into its hexadecimal " +"representation." msgstr "" #: library/stdtypes.rst:2590 msgid "" -"Similar to :meth:`bytes.hex`, :meth:`bytearray.hex` now supports optional " -"*sep* and *bytes_per_sep* parameters to insert separators between bytes in " -"the hex output." +"Similar to :meth:`bytes.hex`, :meth:`bytearray.hex` now supports optional *sep* and " +"*bytes_per_sep* parameters to insert separators between bytes in the hex output." msgstr "" #: library/stdtypes.rst:2595 msgid "" -"Since bytearray objects are sequences of integers (akin to a list), for a " -"bytearray object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be " -"a bytearray object of length 1. (This contrasts with text strings, where " -"both indexing and slicing will produce a string of length 1)" +"Since bytearray objects are sequences of integers (akin to a list), for a bytearray object " +"*b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytearray object of length 1. " +"(This contrasts with text strings, where both indexing and slicing will produce a string of " +"length 1)" msgstr "" #: library/stdtypes.rst:2600 msgid "" -"The representation of bytearray objects uses the bytes literal format " -"(``bytearray(b'...')``) since it is often more useful than e.g. " -"``bytearray([46, 46, 46])``. You can always convert a bytearray object into " -"a list of integers using ``list(b)``." +"The representation of bytearray objects uses the bytes literal format (``bytearray(b'...')``) " +"since it is often more useful than e.g. ``bytearray([46, 46, 46])``. You can always convert a " +"bytearray object into a list of integers using ``list(b)``." msgstr "" #: library/stdtypes.rst:2609 @@ -3522,18 +3422,16 @@ msgstr "" #: library/stdtypes.rst:2614 msgid "" -"Both bytes and bytearray objects support the :ref:`common ` " -"sequence operations. They interoperate not just with operands of the same " -"type, but with any :term:`bytes-like object`. Due to this flexibility, they " -"can be freely mixed in operations without causing errors. However, the " -"return type of the result may depend on the order of operands." +"Both bytes and bytearray objects support the :ref:`common ` sequence " +"operations. They interoperate not just with operands of the same type, but with any :term:" +"`bytes-like object`. Due to this flexibility, they can be freely mixed in operations without " +"causing errors. However, the return type of the result may depend on the order of operands." msgstr "" #: library/stdtypes.rst:2622 msgid "" -"The methods on bytes and bytearray objects don't accept strings as their " -"arguments, just as the methods on strings don't accept bytes as their " -"arguments. For example, you have to write::" +"The methods on bytes and bytearray objects don't accept strings as their arguments, just as " +"the methods on strings don't accept bytes as their arguments. For example, you have to write::" msgstr "" #: library/stdtypes.rst:2629 @@ -3542,68 +3440,60 @@ msgstr "" #: library/stdtypes.rst:2634 msgid "" -"Some bytes and bytearray operations assume the use of ASCII compatible " -"binary formats, and hence should be avoided when working with arbitrary " -"binary data. These restrictions are covered below." +"Some bytes and bytearray operations assume the use of ASCII compatible binary formats, and " +"hence should be avoided when working with arbitrary binary data. These restrictions are " +"covered below." msgstr "" #: library/stdtypes.rst:2639 msgid "" -"Using these ASCII based operations to manipulate binary data that is not " -"stored in an ASCII based format may lead to data corruption." +"Using these ASCII based operations to manipulate binary data that is not stored in an ASCII " +"based format may lead to data corruption." msgstr "" #: library/stdtypes.rst:2642 msgid "" -"The following methods on bytes and bytearray objects can be used with " -"arbitrary binary data." +"The following methods on bytes and bytearray objects can be used with arbitrary binary data." msgstr "" #: library/stdtypes.rst:2648 msgid "" -"Return the number of non-overlapping occurrences of subsequence *sub* in the " -"range [*start*, *end*]. Optional arguments *start* and *end* are " -"interpreted as in slice notation." +"Return the number of non-overlapping occurrences of subsequence *sub* in the range [*start*, " +"*end*]. Optional arguments *start* and *end* are interpreted as in slice notation." msgstr "" -#: library/stdtypes.rst:2751 library/stdtypes.rst:2839 -#: library/stdtypes.rst:2852 +#: library/stdtypes.rst:2751 library/stdtypes.rst:2839 library/stdtypes.rst:2852 msgid "" -"The subsequence to search for may be any :term:`bytes-like object` or an " -"integer in the range 0 to 255." +"The subsequence to search for may be any :term:`bytes-like object` or an integer in the range " +"0 to 255." msgstr "" -#: library/stdtypes.rst:2763 library/stdtypes.rst:2842 -#: library/stdtypes.rst:2855 +#: library/stdtypes.rst:2763 library/stdtypes.rst:2842 library/stdtypes.rst:2855 msgid "Also accept an integer in the range 0 to 255 as the subsequence." msgstr "" #: library/stdtypes.rst:2662 msgid "" -"If the binary data starts with the *prefix* string, return " -"``bytes[len(prefix):]``. Otherwise, return a copy of the original binary " -"data::" +"If the binary data starts with the *prefix* string, return ``bytes[len(prefix):]``. Otherwise, " +"return a copy of the original binary data::" msgstr "" #: library/stdtypes.rst:2671 msgid "The *prefix* may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:2697 library/stdtypes.rst:2920 -#: library/stdtypes.rst:2965 library/stdtypes.rst:3021 -#: library/stdtypes.rst:3109 library/stdtypes.rst:3276 -#: library/stdtypes.rst:3374 library/stdtypes.rst:3417 -#: library/stdtypes.rst:3619 +#: library/stdtypes.rst:2697 library/stdtypes.rst:2920 library/stdtypes.rst:2965 +#: library/stdtypes.rst:3021 library/stdtypes.rst:3109 library/stdtypes.rst:3276 +#: library/stdtypes.rst:3374 library/stdtypes.rst:3417 library/stdtypes.rst:3619 msgid "" -"The bytearray version of this method does *not* operate in place - it always " -"produces a new object, even if no changes were made." +"The bytearray version of this method does *not* operate in place - it always produces a new " +"object, even if no changes were made." msgstr "" #: library/stdtypes.rst:2684 msgid "" -"If the binary data ends with the *suffix* string and that *suffix* is not " -"empty, return ``bytes[:-len(suffix)]``. Otherwise, return a copy of the " -"original binary data::" +"If the binary data ends with the *suffix* string and that *suffix* is not empty, return " +"``bytes[:-len(suffix)]``. Otherwise, return a copy of the original binary data::" msgstr "" #: library/stdtypes.rst:2693 @@ -3612,27 +3502,25 @@ msgstr "" #: library/stdtypes.rst:2706 msgid "" -"Return a string decoded from the given bytes. Default encoding is " -"``'utf-8'``. *errors* may be given to set a different error handling " -"scheme. The default for *errors* is ``'strict'``, meaning that encoding " -"errors raise a :exc:`UnicodeError`. Other possible values are ``'ignore'``, " -"``'replace'`` and any other name registered via :func:`codecs." -"register_error`, see section :ref:`error-handlers`. For a list of possible " -"encodings, see section :ref:`standard-encodings`." +"Return a string decoded from the given bytes. Default encoding is ``'utf-8'``. *errors* may " +"be given to set a different error handling scheme. The default for *errors* is ``'strict'``, " +"meaning that encoding errors raise a :exc:`UnicodeError`. Other possible values are " +"``'ignore'``, ``'replace'`` and any other name registered via :func:`codecs.register_error`, " +"see section :ref:`error-handlers`. For a list of possible encodings, see section :ref:" +"`standard-encodings`." msgstr "" #: library/stdtypes.rst:2714 msgid "" -"By default, the *errors* argument is not checked for best performances, but " -"only used at the first decoding error. Enable the :ref:`Python Development " -"Mode `, or use a :ref:`debug build ` to check *errors*." +"By default, the *errors* argument is not checked for best performances, but only used at the " +"first decoding error. Enable the :ref:`Python Development Mode `, or use a :ref:" +"`debug build ` to check *errors*." msgstr "" #: library/stdtypes.rst:2720 msgid "" -"Passing the *encoding* argument to :class:`str` allows decoding any :term:" -"`bytes-like object` directly, without needing to make a temporary bytes or " -"bytearray object." +"Passing the *encoding* argument to :class:`str` allows decoding any :term:`bytes-like object` " +"directly, without needing to make a temporary bytes or bytearray object." msgstr "" #: library/stdtypes.rst:2724 @@ -3641,10 +3529,9 @@ msgstr "" #: library/stdtypes.rst:2735 msgid "" -"Return ``True`` if the binary data ends with the specified *suffix*, " -"otherwise return ``False``. *suffix* can also be a tuple of suffixes to " -"look for. With optional *start*, test beginning at that position. With " -"optional *end*, stop comparing at that position." +"Return ``True`` if the binary data ends with the specified *suffix*, otherwise return " +"``False``. *suffix* can also be a tuple of suffixes to look for. With optional *start*, test " +"beginning at that position. With optional *end*, stop comparing at that position." msgstr "" #: library/stdtypes.rst:2740 @@ -3653,50 +3540,43 @@ msgstr "" #: library/stdtypes.rst:2746 msgid "" -"Return the lowest index in the data where the subsequence *sub* is found, " -"such that *sub* is contained in the slice ``s[start:end]``. Optional " -"arguments *start* and *end* are interpreted as in slice notation. Return " -"``-1`` if *sub* is not found." +"Return the lowest index in the data where the subsequence *sub* is found, such that *sub* is " +"contained in the slice ``s[start:end]``. Optional arguments *start* and *end* are interpreted " +"as in slice notation. Return ``-1`` if *sub* is not found." msgstr "" #: library/stdtypes.rst:2756 msgid "" -"The :meth:`~bytes.find` method should be used only if you need to know the " -"position of *sub*. To check if *sub* is a substring or not, use the :" -"keyword:`in` operator::" +"The :meth:`~bytes.find` method should be used only if you need to know the position of *sub*. " +"To check if *sub* is a substring or not, use the :keyword:`in` operator::" msgstr "" #: library/stdtypes.rst:2770 -msgid "" -"Like :meth:`~bytes.find`, but raise :exc:`ValueError` when the subsequence " -"is not found." +msgid "Like :meth:`~bytes.find`, but raise :exc:`ValueError` when the subsequence is not found." msgstr "" #: library/stdtypes.rst:2783 msgid "" -"Return a bytes or bytearray object which is the concatenation of the binary " -"data sequences in *iterable*. A :exc:`TypeError` will be raised if there " -"are any values in *iterable* that are not :term:`bytes-like objects `, including :class:`str` objects. The separator between " -"elements is the contents of the bytes or bytearray object providing this " +"Return a bytes or bytearray object which is the concatenation of the binary data sequences in " +"*iterable*. A :exc:`TypeError` will be raised if there are any values in *iterable* that are " +"not :term:`bytes-like objects `, including :class:`str` objects. The " +"separator between elements is the contents of the bytes or bytearray object providing this " "method." msgstr "" #: library/stdtypes.rst:2794 msgid "" -"This static method returns a translation table usable for :meth:`bytes." -"translate` that will map each character in *from* into the character at the " -"same position in *to*; *from* and *to* must both be :term:`bytes-like " -"objects ` and have the same length." +"This static method returns a translation table usable for :meth:`bytes.translate` that will " +"map each character in *from* into the character at the same position in *to*; *from* and *to* " +"must both be :term:`bytes-like objects ` and have the same length." msgstr "" #: library/stdtypes.rst:2805 msgid "" -"Split the sequence at the first occurrence of *sep*, and return a 3-tuple " -"containing the part before the separator, the separator itself or its " -"bytearray copy, and the part after the separator. If the separator is not " -"found, return a 3-tuple containing a copy of the original sequence, followed " -"by two empty bytes or bytearray objects." +"Split the sequence at the first occurrence of *sep*, and return a 3-tuple containing the part " +"before the separator, the separator itself or its bytearray copy, and the part after the " +"separator. If the separator is not found, return a 3-tuple containing a copy of the original " +"sequence, followed by two empty bytes or bytearray objects." msgstr "" #: library/stdtypes.rst:2869 @@ -3705,46 +3585,39 @@ msgstr "" #: library/stdtypes.rst:2818 msgid "" -"Return a copy of the sequence with all occurrences of subsequence *old* " -"replaced by *new*. If the optional argument *count* is given, only the " -"first *count* occurrences are replaced." +"Return a copy of the sequence with all occurrences of subsequence *old* replaced by *new*. If " +"the optional argument *count* is given, only the first *count* occurrences are replaced." msgstr "" #: library/stdtypes.rst:2822 -msgid "" -"The subsequence to search for and its replacement may be any :term:`bytes-" -"like object`." +msgid "The subsequence to search for and its replacement may be any :term:`bytes-like object`." msgstr "" #: library/stdtypes.rst:2834 msgid "" -"Return the highest index in the sequence where the subsequence *sub* is " -"found, such that *sub* is contained within ``s[start:end]``. Optional " -"arguments *start* and *end* are interpreted as in slice notation. Return " -"``-1`` on failure." +"Return the highest index in the sequence where the subsequence *sub* is found, such that *sub* " +"is contained within ``s[start:end]``. Optional arguments *start* and *end* are interpreted as " +"in slice notation. Return ``-1`` on failure." msgstr "" #: library/stdtypes.rst:2849 msgid "" -"Like :meth:`~bytes.rfind` but raises :exc:`ValueError` when the subsequence " -"*sub* is not found." +"Like :meth:`~bytes.rfind` but raises :exc:`ValueError` when the subsequence *sub* is not found." msgstr "" #: library/stdtypes.rst:2862 msgid "" -"Split the sequence at the last occurrence of *sep*, and return a 3-tuple " -"containing the part before the separator, the separator itself or its " -"bytearray copy, and the part after the separator. If the separator is not " -"found, return a 3-tuple containing two empty bytes or bytearray objects, " -"followed by a copy of the original sequence." +"Split the sequence at the last occurrence of *sep*, and return a 3-tuple containing the part " +"before the separator, the separator itself or its bytearray copy, and the part after the " +"separator. If the separator is not found, return a 3-tuple containing two empty bytes or " +"bytearray objects, followed by a copy of the original sequence." msgstr "" #: library/stdtypes.rst:2875 msgid "" -"Return ``True`` if the binary data starts with the specified *prefix*, " -"otherwise return ``False``. *prefix* can also be a tuple of prefixes to " -"look for. With optional *start*, test beginning at that position. With " -"optional *end*, stop comparing at that position." +"Return ``True`` if the binary data starts with the specified *prefix*, otherwise return " +"``False``. *prefix* can also be a tuple of prefixes to look for. With optional *start*, test " +"beginning at that position. With optional *end*, stop comparing at that position." msgstr "" #: library/stdtypes.rst:2880 @@ -3753,21 +3626,17 @@ msgstr "" #: library/stdtypes.rst:2886 msgid "" -"Return a copy of the bytes or bytearray object where all bytes occurring in " -"the optional argument *delete* are removed, and the remaining bytes have " -"been mapped through the given translation table, which must be a bytes " -"object of length 256." +"Return a copy of the bytes or bytearray object where all bytes occurring in the optional " +"argument *delete* are removed, and the remaining bytes have been mapped through the given " +"translation table, which must be a bytes object of length 256." msgstr "" #: library/stdtypes.rst:2891 -msgid "" -"You can use the :func:`bytes.maketrans` method to create a translation table." +msgid "You can use the :func:`bytes.maketrans` method to create a translation table." msgstr "" #: library/stdtypes.rst:2894 -msgid "" -"Set the *table* argument to ``None`` for translations that only delete " -"characters::" +msgid "Set the *table* argument to ``None`` for translations that only delete characters::" msgstr "" #: library/stdtypes.rst:2900 @@ -3776,287 +3645,259 @@ msgstr "" #: library/stdtypes.rst:2904 msgid "" -"The following methods on bytes and bytearray objects have default behaviours " -"that assume the use of ASCII compatible binary formats, but can still be " -"used with arbitrary binary data by passing appropriate arguments. Note that " -"all of the bytearray methods in this section do *not* operate in place, and " -"instead produce new objects." +"The following methods on bytes and bytearray objects have default behaviours that assume the " +"use of ASCII compatible binary formats, but can still be used with arbitrary binary data by " +"passing appropriate arguments. Note that all of the bytearray methods in this section do *not* " +"operate in place, and instead produce new objects." msgstr "" #: library/stdtypes.rst:2913 msgid "" -"Return a copy of the object centered in a sequence of length *width*. " -"Padding is done using the specified *fillbyte* (default is an ASCII space). " -"For :class:`bytes` objects, the original sequence is returned if *width* is " -"less than or equal to ``len(s)``." +"Return a copy of the object centered in a sequence of length *width*. Padding is done using " +"the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the original " +"sequence is returned if *width* is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:2927 msgid "" -"Return a copy of the object left justified in a sequence of length *width*. " -"Padding is done using the specified *fillbyte* (default is an ASCII space). " -"For :class:`bytes` objects, the original sequence is returned if *width* is " -"less than or equal to ``len(s)``." +"Return a copy of the object left justified in a sequence of length *width*. Padding is done " +"using the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the " +"original sequence is returned if *width* is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:2941 msgid "" -"Return a copy of the sequence with specified leading bytes removed. The " -"*chars* argument is a binary sequence specifying the set of byte values to " -"be removed - the name refers to the fact this method is usually used with " -"ASCII characters. If omitted or ``None``, the *chars* argument defaults to " -"removing ASCII whitespace. The *chars* argument is not a prefix; rather, " +"Return a copy of the sequence with specified leading bytes removed. The *chars* argument is a " +"binary sequence specifying the set of byte values to be removed - the name refers to the fact " +"this method is usually used with ASCII characters. If omitted or ``None``, the *chars* " +"argument defaults to removing ASCII whitespace. The *chars* argument is not a prefix; rather, " "all combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:2953 msgid "" -"The binary sequence of byte values to remove may be any :term:`bytes-like " -"object`. See :meth:`~bytes.removeprefix` for a method that will remove a " -"single prefix string rather than all of a set of characters. For example::" +"The binary sequence of byte values to remove may be any :term:`bytes-like object`. See :meth:" +"`~bytes.removeprefix` for a method that will remove a single prefix string rather than all of " +"a set of characters. For example::" msgstr "" #: library/stdtypes.rst:2972 msgid "" -"Return a copy of the object right justified in a sequence of length *width*. " -"Padding is done using the specified *fillbyte* (default is an ASCII space). " -"For :class:`bytes` objects, the original sequence is returned if *width* is " -"less than or equal to ``len(s)``." +"Return a copy of the object right justified in a sequence of length *width*. Padding is done " +"using the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the " +"original sequence is returned if *width* is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:2986 msgid "" -"Split the binary sequence into subsequences of the same type, using *sep* as " -"the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are " -"done, the *rightmost* ones. If *sep* is not specified or ``None``, any " -"subsequence consisting solely of ASCII whitespace is a separator. Except for " -"splitting from the right, :meth:`rsplit` behaves like :meth:`split` which is " -"described in detail below." +"Split the binary sequence into subsequences of the same type, using *sep* as the delimiter " +"string. If *maxsplit* is given, at most *maxsplit* splits are done, the *rightmost* ones. If " +"*sep* is not specified or ``None``, any subsequence consisting solely of ASCII whitespace is a " +"separator. Except for splitting from the right, :meth:`rsplit` behaves like :meth:`split` " +"which is described in detail below." msgstr "" #: library/stdtypes.rst:2997 msgid "" -"Return a copy of the sequence with specified trailing bytes removed. The " -"*chars* argument is a binary sequence specifying the set of byte values to " -"be removed - the name refers to the fact this method is usually used with " -"ASCII characters. If omitted or ``None``, the *chars* argument defaults to " -"removing ASCII whitespace. The *chars* argument is not a suffix; rather, " +"Return a copy of the sequence with specified trailing bytes removed. The *chars* argument is " +"a binary sequence specifying the set of byte values to be removed - the name refers to the " +"fact this method is usually used with ASCII characters. If omitted or ``None``, the *chars* " +"argument defaults to removing ASCII whitespace. The *chars* argument is not a suffix; rather, " "all combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:3009 msgid "" -"The binary sequence of byte values to remove may be any :term:`bytes-like " -"object`. See :meth:`~bytes.removesuffix` for a method that will remove a " -"single suffix string rather than all of a set of characters. For example::" +"The binary sequence of byte values to remove may be any :term:`bytes-like object`. See :meth:" +"`~bytes.removesuffix` for a method that will remove a single suffix string rather than all of " +"a set of characters. For example::" msgstr "" #: library/stdtypes.rst:3028 msgid "" -"Split the binary sequence into subsequences of the same type, using *sep* as " -"the delimiter string. If *maxsplit* is given and non-negative, at most " -"*maxsplit* splits are done (thus, the list will have at most ``maxsplit+1`` " -"elements). If *maxsplit* is not specified or is ``-1``, then there is no " -"limit on the number of splits (all possible splits are made)." +"Split the binary sequence into subsequences of the same type, using *sep* as the delimiter " +"string. If *maxsplit* is given and non-negative, at most *maxsplit* splits are done (thus, the " +"list will have at most ``maxsplit+1`` elements). If *maxsplit* is not specified or is ``-1``, " +"then there is no limit on the number of splits (all possible splits are made)." msgstr "" #: library/stdtypes.rst:3034 msgid "" -"If *sep* is given, consecutive delimiters are not grouped together and are " -"deemed to delimit empty subsequences (for example, ``b'1,,2'.split(b',')`` " -"returns ``[b'1', b'', b'2']``). The *sep* argument may consist of a " -"multibyte sequence (for example, ``b'1<>2<>3'.split(b'<>')`` returns " -"``[b'1', b'2', b'3']``). Splitting an empty sequence with a specified " -"separator returns ``[b'']`` or ``[bytearray(b'')]`` depending on the type of " -"object being split. The *sep* argument may be any :term:`bytes-like object`." +"If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit " +"empty subsequences (for example, ``b'1,,2'.split(b',')`` returns ``[b'1', b'', b'2']``). The " +"*sep* argument may consist of a multibyte sequence (for example, ``b'1<>2<>3'.split(b'<>')`` " +"returns ``[b'1', b'2', b'3']``). Splitting an empty sequence with a specified separator " +"returns ``[b'']`` or ``[bytearray(b'')]`` depending on the type of object being split. The " +"*sep* argument may be any :term:`bytes-like object`." msgstr "" #: library/stdtypes.rst:3052 msgid "" -"If *sep* is not specified or is ``None``, a different splitting algorithm is " -"applied: runs of consecutive ASCII whitespace are regarded as a single " -"separator, and the result will contain no empty strings at the start or end " -"if the sequence has leading or trailing whitespace. Consequently, splitting " -"an empty sequence or a sequence consisting solely of ASCII whitespace " +"If *sep* is not specified or is ``None``, a different splitting algorithm is applied: runs of " +"consecutive ASCII whitespace are regarded as a single separator, and the result will contain " +"no empty strings at the start or end if the sequence has leading or trailing whitespace. " +"Consequently, splitting an empty sequence or a sequence consisting solely of ASCII whitespace " "without a specified separator returns ``[]``." msgstr "" #: library/stdtypes.rst:3073 msgid "" -"Return a copy of the sequence with specified leading and trailing bytes " -"removed. The *chars* argument is a binary sequence specifying the set of " -"byte values to be removed - the name refers to the fact this method is " -"usually used with ASCII characters. If omitted or ``None``, the *chars* " -"argument defaults to removing ASCII whitespace. The *chars* argument is not " -"a prefix or suffix; rather, all combinations of its values are stripped::" +"Return a copy of the sequence with specified leading and trailing bytes removed. The *chars* " +"argument is a binary sequence specifying the set of byte values to be removed - the name " +"refers to the fact this method is usually used with ASCII characters. If omitted or ``None``, " +"the *chars* argument defaults to removing ASCII whitespace. The *chars* argument is not a " +"prefix or suffix; rather, all combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:3086 -msgid "" -"The binary sequence of byte values to remove may be any :term:`bytes-like " -"object`." +msgid "The binary sequence of byte values to remove may be any :term:`bytes-like object`." msgstr "" #: library/stdtypes.rst:3095 msgid "" -"The following methods on bytes and bytearray objects assume the use of ASCII " -"compatible binary formats and should not be applied to arbitrary binary " -"data. Note that all of the bytearray methods in this section do *not* " -"operate in place, and instead produce new objects." +"The following methods on bytes and bytearray objects assume the use of ASCII compatible binary " +"formats and should not be applied to arbitrary binary data. Note that all of the bytearray " +"methods in this section do *not* operate in place, and instead produce new objects." msgstr "" #: library/stdtypes.rst:3103 msgid "" -"Return a copy of the sequence with each byte interpreted as an ASCII " -"character, and the first byte capitalized and the rest lowercased. Non-ASCII " -"byte values are passed through unchanged." +"Return a copy of the sequence with each byte interpreted as an ASCII character, and the first " +"byte capitalized and the rest lowercased. Non-ASCII byte values are passed through unchanged." msgstr "" #: library/stdtypes.rst:3116 msgid "" -"Return a copy of the sequence where all ASCII tab characters are replaced by " -"one or more ASCII spaces, depending on the current column and the given tab " -"size. Tab positions occur every *tabsize* bytes (default is 8, giving tab " -"positions at columns 0, 8, 16 and so on). To expand the sequence, the " -"current column is set to zero and the sequence is examined byte by byte. If " -"the byte is an ASCII tab character (``b'\\t'``), one or more space " -"characters are inserted in the result until the current column is equal to " -"the next tab position. (The tab character itself is not copied.) If the " -"current byte is an ASCII newline (``b'\\n'``) or carriage return " -"(``b'\\r'``), it is copied and the current column is reset to zero. Any " -"other byte value is copied unchanged and the current column is incremented " -"by one regardless of how the byte value is represented when printed::" +"Return a copy of the sequence where all ASCII tab characters are replaced by one or more ASCII " +"spaces, depending on the current column and the given tab size. Tab positions occur every " +"*tabsize* bytes (default is 8, giving tab positions at columns 0, 8, 16 and so on). To expand " +"the sequence, the current column is set to zero and the sequence is examined byte by byte. If " +"the byte is an ASCII tab character (``b'\\t'``), one or more space characters are inserted in " +"the result until the current column is equal to the next tab position. (The tab character " +"itself is not copied.) If the current byte is an ASCII newline (``b'\\n'``) or carriage " +"return (``b'\\r'``), it is copied and the current column is reset to zero. Any other byte " +"value is copied unchanged and the current column is incremented by one regardless of how the " +"byte value is represented when printed::" msgstr "" #: library/stdtypes.rst:3144 msgid "" -"Return ``True`` if all bytes in the sequence are alphabetical ASCII " -"characters or ASCII decimal digits and the sequence is not empty, ``False`` " -"otherwise. Alphabetic ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``. ASCII decimal " -"digits are those byte values in the sequence ``b'0123456789'``." +"Return ``True`` if all bytes in the sequence are alphabetical ASCII characters or ASCII " +"decimal digits and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII characters " +"are those byte values in the sequence " +"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``. ASCII decimal digits are those " +"byte values in the sequence ``b'0123456789'``." msgstr "" #: library/stdtypes.rst:3161 msgid "" -"Return ``True`` if all bytes in the sequence are alphabetic ASCII characters " -"and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII " -"characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``." +"Return ``True`` if all bytes in the sequence are alphabetic ASCII characters and the sequence " +"is not empty, ``False`` otherwise. Alphabetic ASCII characters are those byte values in the " +"sequence ``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" #: library/stdtypes.rst:3177 msgid "" -"Return ``True`` if the sequence is empty or all bytes in the sequence are " -"ASCII, ``False`` otherwise. ASCII bytes are in the range 0-0x7F." +"Return ``True`` if the sequence is empty or all bytes in the sequence are ASCII, ``False`` " +"otherwise. ASCII bytes are in the range 0-0x7F." msgstr "" #: library/stdtypes.rst:3187 msgid "" -"Return ``True`` if all bytes in the sequence are ASCII decimal digits and " -"the sequence is not empty, ``False`` otherwise. ASCII decimal digits are " -"those byte values in the sequence ``b'0123456789'``." +"Return ``True`` if all bytes in the sequence are ASCII decimal digits and the sequence is not " +"empty, ``False`` otherwise. ASCII decimal digits are those byte values in the sequence " +"``b'0123456789'``." msgstr "" #: library/stdtypes.rst:3202 msgid "" -"Return ``True`` if there is at least one lowercase ASCII character in the " -"sequence and no uppercase ASCII characters, ``False`` otherwise." +"Return ``True`` if there is at least one lowercase ASCII character in the sequence and no " +"uppercase ASCII characters, ``False`` otherwise." msgstr "" -#: library/stdtypes.rst:3254 library/stdtypes.rst:3320 -#: library/stdtypes.rst:3389 +#: library/stdtypes.rst:3254 library/stdtypes.rst:3320 library/stdtypes.rst:3389 msgid "" "Lowercase ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte " -"values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``." +"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte values in the " +"sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" #: library/stdtypes.rst:3220 msgid "" -"Return ``True`` if all bytes in the sequence are ASCII whitespace and the " -"sequence is not empty, ``False`` otherwise. ASCII whitespace characters are " -"those byte values in the sequence ``b' \\t\\n\\r\\x0b\\f'`` (space, tab, " -"newline, carriage return, vertical tab, form feed)." +"Return ``True`` if all bytes in the sequence are ASCII whitespace and the sequence is not " +"empty, ``False`` otherwise. ASCII whitespace characters are those byte values in the sequence " +"``b' \\t\\n\\r\\x0b\\f'`` (space, tab, newline, carriage return, vertical tab, form feed)." msgstr "" #: library/stdtypes.rst:3229 msgid "" -"Return ``True`` if the sequence is ASCII titlecase and the sequence is not " -"empty, ``False`` otherwise. See :meth:`bytes.title` for more details on the " -"definition of \"titlecase\"." +"Return ``True`` if the sequence is ASCII titlecase and the sequence is not empty, ``False`` " +"otherwise. See :meth:`bytes.title` for more details on the definition of \"titlecase\"." msgstr "" #: library/stdtypes.rst:3244 msgid "" -"Return ``True`` if there is at least one uppercase alphabetic ASCII " -"character in the sequence and no lowercase ASCII characters, ``False`` " -"otherwise." +"Return ``True`` if there is at least one uppercase alphabetic ASCII character in the sequence " +"and no lowercase ASCII characters, ``False`` otherwise." msgstr "" #: library/stdtypes.rst:3262 msgid "" -"Return a copy of the sequence with all the uppercase ASCII characters " -"converted to their corresponding lowercase counterpart." +"Return a copy of the sequence with all the uppercase ASCII characters converted to their " +"corresponding lowercase counterpart." msgstr "" #: library/stdtypes.rst:3287 msgid "" -"Return a list of the lines in the binary sequence, breaking at ASCII line " -"boundaries. This method uses the :term:`universal newlines` approach to " -"splitting lines. Line breaks are not included in the resulting list unless " -"*keepends* is given and true." +"Return a list of the lines in the binary sequence, breaking at ASCII line boundaries. This " +"method uses the :term:`universal newlines` approach to splitting lines. Line breaks are not " +"included in the resulting list unless *keepends* is given and true." msgstr "" #: library/stdtypes.rst:3299 msgid "" -"Unlike :meth:`~bytes.split` when a delimiter string *sep* is given, this " -"method returns an empty list for the empty string, and a terminal line break " -"does not result in an extra line::" +"Unlike :meth:`~bytes.split` when a delimiter string *sep* is given, this method returns an " +"empty list for the empty string, and a terminal line break does not result in an extra line::" msgstr "" #: library/stdtypes.rst:3312 msgid "" -"Return a copy of the sequence with all the lowercase ASCII characters " -"converted to their corresponding uppercase counterpart and vice-versa." +"Return a copy of the sequence with all the lowercase ASCII characters converted to their " +"corresponding uppercase counterpart and vice-versa." msgstr "" #: library/stdtypes.rst:3324 msgid "" -"Unlike :func:`str.swapcase()`, it is always the case that ``bin.swapcase()." -"swapcase() == bin`` for the binary versions. Case conversions are " -"symmetrical in ASCII, even though that is not generally true for arbitrary " -"Unicode code points." +"Unlike :func:`str.swapcase()`, it is always the case that ``bin.swapcase().swapcase() == bin`` " +"for the binary versions. Case conversions are symmetrical in ASCII, even though that is not " +"generally true for arbitrary Unicode code points." msgstr "" #: library/stdtypes.rst:3338 msgid "" -"Return a titlecased version of the binary sequence where words start with an " -"uppercase ASCII character and the remaining characters are lowercase. " -"Uncased byte values are left unmodified." +"Return a titlecased version of the binary sequence where words start with an uppercase ASCII " +"character and the remaining characters are lowercase. Uncased byte values are left unmodified." msgstr "" #: library/stdtypes.rst:3347 msgid "" "Lowercase ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte " -"values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. All other byte " -"values are uncased." +"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte values in the " +"sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. All other byte values are uncased." msgstr "" #: library/stdtypes.rst:3381 msgid "" -"Return a copy of the sequence with all the lowercase ASCII characters " -"converted to their corresponding uppercase counterpart." +"Return a copy of the sequence with all the lowercase ASCII characters converted to their " +"corresponding uppercase counterpart." msgstr "" #: library/stdtypes.rst:3402 msgid "" -"Return a copy of the sequence left filled with ASCII ``b'0'`` digits to make " -"a sequence of length *width*. A leading sign prefix (``b'+'``/ ``b'-'``) is " -"handled by inserting the padding *after* the sign character rather than " -"before. For :class:`bytes` objects, the original sequence is returned if " -"*width* is less than or equal to ``len(seq)``." +"Return a copy of the sequence left filled with ASCII ``b'0'`` digits to make a sequence of " +"length *width*. A leading sign prefix (``b'+'``/ ``b'-'``) is handled by inserting the padding " +"*after* the sign character rather than before. For :class:`bytes` objects, the original " +"sequence is returned if *width* is less than or equal to ``len(seq)``." msgstr "" #: library/stdtypes.rst:3424 @@ -4065,36 +3906,33 @@ msgstr "" #: library/stdtypes.rst:3441 msgid "" -"The formatting operations described here exhibit a variety of quirks that " -"lead to a number of common errors (such as failing to display tuples and " -"dictionaries correctly). If the value being printed may be a tuple or " -"dictionary, wrap it in a tuple." +"The formatting operations described here exhibit a variety of quirks that lead to a number of " +"common errors (such as failing to display tuples and dictionaries correctly). If the value " +"being printed may be a tuple or dictionary, wrap it in a tuple." msgstr "" #: library/stdtypes.rst:3446 msgid "" -"Bytes objects (``bytes``/``bytearray``) have one unique built-in operation: " -"the ``%`` operator (modulo). This is also known as the bytes *formatting* or " -"*interpolation* operator. Given ``format % values`` (where *format* is a " -"bytes object), ``%`` conversion specifications in *format* are replaced with " -"zero or more elements of *values*. The effect is similar to using the :c:" -"func:`sprintf` in the C language." +"Bytes objects (``bytes``/``bytearray``) have one unique built-in operation: the ``%`` operator " +"(modulo). This is also known as the bytes *formatting* or *interpolation* operator. Given " +"``format % values`` (where *format* is a bytes object), ``%`` conversion specifications in " +"*format* are replaced with zero or more elements of *values*. The effect is similar to using " +"the :c:func:`sprintf` in the C language." msgstr "" #: library/stdtypes.rst:3453 msgid "" -"If *format* requires a single argument, *values* may be a single non-tuple " -"object. [5]_ Otherwise, *values* must be a tuple with exactly the number of " -"items specified by the format bytes object, or a single mapping object (for " -"example, a dictionary)." +"If *format* requires a single argument, *values* may be a single non-tuple object. [5]_ " +"Otherwise, *values* must be a tuple with exactly the number of items specified by the format " +"bytes object, or a single mapping object (for example, a dictionary)." msgstr "" #: library/stdtypes.rst:3487 msgid "" -"When the right argument is a dictionary (or other mapping type), then the " -"formats in the bytes object *must* include a parenthesised mapping key into " -"that dictionary inserted immediately after the ``'%'`` character. The " -"mapping key selects the value to be formatted from the mapping. For example:" +"When the right argument is a dictionary (or other mapping type), then the formats in the bytes " +"object *must* include a parenthesised mapping key into that dictionary inserted immediately " +"after the ``'%'`` character. The mapping key selects the value to be formatted from the " +"mapping. For example:" msgstr "" #: library/stdtypes.rst:3561 @@ -4107,26 +3945,20 @@ msgstr "" #: library/stdtypes.rst:3564 msgid "" -"Bytes (any object that follows the :ref:`buffer protocol ` or " -"has :meth:`__bytes__`)." +"Bytes (any object that follows the :ref:`buffer protocol ` or has :meth:" +"`__bytes__`)." msgstr "" #: library/stdtypes.rst:3568 -msgid "" -"``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code " -"bases." +msgid "``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code bases." msgstr "" #: library/stdtypes.rst:3571 -msgid "" -"Bytes (converts any Python object using ``repr(obj)." -"encode('ascii','backslashreplace)``)." +msgid "Bytes (converts any Python object using ``repr(obj).encode('ascii','backslashreplace)``)." msgstr "" #: library/stdtypes.rst:3574 -msgid "" -"``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code " -"bases." +msgid "``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code bases." msgstr "" #: library/stdtypes.rst:3574 @@ -4151,51 +3983,48 @@ msgstr "" #: library/stdtypes.rst:3633 msgid "" -":class:`memoryview` objects allow Python code to access the internal data of " -"an object that supports the :ref:`buffer protocol ` without " -"copying." +":class:`memoryview` objects allow Python code to access the internal data of an object that " +"supports the :ref:`buffer protocol ` without copying." msgstr "" #: library/stdtypes.rst:3639 msgid "" -"Create a :class:`memoryview` that references *object*. *object* must " -"support the buffer protocol. Built-in objects that support the buffer " -"protocol include :class:`bytes` and :class:`bytearray`." +"Create a :class:`memoryview` that references *object*. *object* must support the buffer " +"protocol. Built-in objects that support the buffer protocol include :class:`bytes` and :class:" +"`bytearray`." msgstr "" #: library/stdtypes.rst:3643 msgid "" -"A :class:`memoryview` has the notion of an *element*, which is the atomic " -"memory unit handled by the originating *object*. For many simple types such " -"as :class:`bytes` and :class:`bytearray`, an element is a single byte, but " -"other types such as :class:`array.array` may have bigger elements." +"A :class:`memoryview` has the notion of an *element*, which is the atomic memory unit handled " +"by the originating *object*. For many simple types such as :class:`bytes` and :class:" +"`bytearray`, an element is a single byte, but other types such as :class:`array.array` may " +"have bigger elements." msgstr "" #: library/stdtypes.rst:3648 msgid "" -"``len(view)`` is equal to the length of :class:`~memoryview.tolist`. If " -"``view.ndim = 0``, the length is 1. If ``view.ndim = 1``, the length is " -"equal to the number of elements in the view. For higher dimensions, the " -"length is equal to the length of the nested list representation of the view. " -"The :class:`~memoryview.itemsize` attribute will give you the number of " -"bytes in a single element." +"``len(view)`` is equal to the length of :class:`~memoryview.tolist`. If ``view.ndim = 0``, the " +"length is 1. If ``view.ndim = 1``, the length is equal to the number of elements in the view. " +"For higher dimensions, the length is equal to the length of the nested list representation of " +"the view. The :class:`~memoryview.itemsize` attribute will give you the number of bytes in a " +"single element." msgstr "" #: library/stdtypes.rst:3655 msgid "" -"A :class:`memoryview` supports slicing and indexing to expose its data. One-" -"dimensional slicing will result in a subview::" +"A :class:`memoryview` supports slicing and indexing to expose its data. One-dimensional " +"slicing will result in a subview::" msgstr "" #: library/stdtypes.rst:3668 msgid "" -"If :class:`~memoryview.format` is one of the native format specifiers from " -"the :mod:`struct` module, indexing with an integer or a tuple of integers is " -"also supported and returns a single *element* with the correct type. One-" -"dimensional memoryviews can be indexed with an integer or a one-integer " -"tuple. Multi-dimensional memoryviews can be indexed with tuples of exactly " -"*ndim* integers where *ndim* is the number of dimensions. Zero-dimensional " -"memoryviews can be indexed with the empty tuple." +"If :class:`~memoryview.format` is one of the native format specifiers from the :mod:`struct` " +"module, indexing with an integer or a tuple of integers is also supported and returns a single " +"*element* with the correct type. One-dimensional memoryviews can be indexed with an integer " +"or a one-integer tuple. Multi-dimensional memoryviews can be indexed with tuples of exactly " +"*ndim* integers where *ndim* is the number of dimensions. Zero-dimensional memoryviews can be " +"indexed with the empty tuple." msgstr "" #: library/stdtypes.rst:3677 @@ -4204,27 +4033,24 @@ msgstr "" #: library/stdtypes.rst:3689 msgid "" -"If the underlying object is writable, the memoryview supports one-" -"dimensional slice assignment. Resizing is not allowed::" +"If the underlying object is writable, the memoryview supports one-dimensional slice " +"assignment. Resizing is not allowed::" msgstr "" #: library/stdtypes.rst:3710 msgid "" -"One-dimensional memoryviews of hashable (read-only) types with formats 'B', " -"'b' or 'c' are also hashable. The hash is defined as ``hash(m) == hash(m." -"tobytes())``::" +"One-dimensional memoryviews of hashable (read-only) types with formats 'B', 'b' or 'c' are " +"also hashable. The hash is defined as ``hash(m) == hash(m.tobytes())``::" msgstr "" #: library/stdtypes.rst:3722 msgid "" -"One-dimensional memoryviews can now be sliced. One-dimensional memoryviews " -"with formats 'B', 'b' or 'c' are now hashable." +"One-dimensional memoryviews can now be sliced. One-dimensional memoryviews with formats 'B', " +"'b' or 'c' are now hashable." msgstr "" #: library/stdtypes.rst:3726 -msgid "" -"memoryview is now registered automatically with :class:`collections.abc." -"Sequence`" +msgid "memoryview is now registered automatically with :class:`collections.abc.Sequence`" msgstr "" #: library/stdtypes.rst:3730 @@ -4237,70 +4063,64 @@ msgstr "" #: library/stdtypes.rst:3737 msgid "" -"A memoryview and a :pep:`3118` exporter are equal if their shapes are " -"equivalent and if all corresponding values are equal when the operands' " -"respective format codes are interpreted using :mod:`struct` syntax." +"A memoryview and a :pep:`3118` exporter are equal if their shapes are equivalent and if all " +"corresponding values are equal when the operands' respective format codes are interpreted " +"using :mod:`struct` syntax." msgstr "" #: library/stdtypes.rst:3741 msgid "" -"For the subset of :mod:`struct` format strings currently supported by :meth:" -"`tolist`, ``v`` and ``w`` are equal if ``v.tolist() == w.tolist()``::" +"For the subset of :mod:`struct` format strings currently supported by :meth:`tolist`, ``v`` " +"and ``w`` are equal if ``v.tolist() == w.tolist()``::" msgstr "" #: library/stdtypes.rst:3760 msgid "" -"If either format string is not supported by the :mod:`struct` module, then " -"the objects will always compare as unequal (even if the format strings and " -"buffer contents are identical)::" +"If either format string is not supported by the :mod:`struct` module, then the objects will " +"always compare as unequal (even if the format strings and buffer contents are identical)::" msgstr "" #: library/stdtypes.rst:3776 msgid "" -"Note that, as with floating point numbers, ``v is w`` does *not* imply ``v " -"== w`` for memoryview objects." +"Note that, as with floating point numbers, ``v is w`` does *not* imply ``v == w`` for " +"memoryview objects." msgstr "" #: library/stdtypes.rst:3779 msgid "" -"Previous versions compared the raw memory disregarding the item format and " -"the logical array structure." +"Previous versions compared the raw memory disregarding the item format and the logical array " +"structure." msgstr "" #: library/stdtypes.rst:3785 msgid "" -"Return the data in the buffer as a bytestring. This is equivalent to " -"calling the :class:`bytes` constructor on the memoryview. ::" +"Return the data in the buffer as a bytestring. This is equivalent to calling the :class:" +"`bytes` constructor on the memoryview. ::" msgstr "" #: library/stdtypes.rst:3794 msgid "" -"For non-contiguous arrays the result is equal to the flattened list " -"representation with all elements converted to bytes. :meth:`tobytes` " -"supports all format strings, including those that are not in :mod:`struct` " -"module syntax." +"For non-contiguous arrays the result is equal to the flattened list representation with all " +"elements converted to bytes. :meth:`tobytes` supports all format strings, including those that " +"are not in :mod:`struct` module syntax." msgstr "" #: library/stdtypes.rst:3799 msgid "" -"*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the " -"original array is converted to C or Fortran order. For contiguous views, 'A' " -"returns an exact copy of the physical memory. In particular, in-memory " -"Fortran order is preserved. For non-contiguous views, the data is converted " -"to C first. *order=None* is the same as *order='C'*." +"*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the original array is " +"converted to C or Fortran order. For contiguous views, 'A' returns an exact copy of the " +"physical memory. In particular, in-memory Fortran order is preserved. For non-contiguous " +"views, the data is converted to C first. *order=None* is the same as *order='C'*." msgstr "" #: library/stdtypes.rst:3808 -msgid "" -"Return a string object containing two hexadecimal digits for each byte in " -"the buffer. ::" +msgid "Return a string object containing two hexadecimal digits for each byte in the buffer. ::" msgstr "" #: library/stdtypes.rst:3817 msgid "" -"Similar to :meth:`bytes.hex`, :meth:`memoryview.hex` now supports optional " -"*sep* and *bytes_per_sep* parameters to insert separators between bytes in " -"the hex output." +"Similar to :meth:`bytes.hex`, :meth:`memoryview.hex` now supports optional *sep* and " +"*bytes_per_sep* parameters to insert separators between bytes in the hex output." msgstr "" #: library/stdtypes.rst:3824 @@ -4309,52 +4129,49 @@ msgstr "" #: library/stdtypes.rst:3834 msgid "" -":meth:`tolist` now supports all single character native formats in :mod:" -"`struct` module syntax as well as multi-dimensional representations." +":meth:`tolist` now supports all single character native formats in :mod:`struct` module syntax " +"as well as multi-dimensional representations." msgstr "" #: library/stdtypes.rst:3841 msgid "" -"Return a readonly version of the memoryview object. The original memoryview " -"object is unchanged. ::" +"Return a readonly version of the memoryview object. The original memoryview object is " +"unchanged. ::" msgstr "" #: library/stdtypes.rst:3860 msgid "" -"Release the underlying buffer exposed by the memoryview object. Many " -"objects take special actions when a view is held on them (for example, a :" -"class:`bytearray` would temporarily forbid resizing); therefore, calling " -"release() is handy to remove these restrictions (and free any dangling " -"resources) as soon as possible." +"Release the underlying buffer exposed by the memoryview object. Many objects take special " +"actions when a view is held on them (for example, a :class:`bytearray` would temporarily " +"forbid resizing); therefore, calling release() is handy to remove these restrictions (and free " +"any dangling resources) as soon as possible." msgstr "" #: library/stdtypes.rst:3866 msgid "" -"After this method has been called, any further operation on the view raises " -"a :class:`ValueError` (except :meth:`release()` itself which can be called " -"multiple times)::" +"After this method has been called, any further operation on the view raises a :class:" +"`ValueError` (except :meth:`release()` itself which can be called multiple times)::" msgstr "" #: library/stdtypes.rst:3877 msgid "" -"The context management protocol can be used for a similar effect, using the " -"``with`` statement::" +"The context management protocol can be used for a similar effect, using the ``with`` " +"statement::" msgstr "" #: library/stdtypes.rst:3893 msgid "" -"Cast a memoryview to a new format or shape. *shape* defaults to " -"``[byte_length//new_itemsize]``, which means that the result view will be " -"one-dimensional. The return value is a new memoryview, but the buffer itself " -"is not copied. Supported casts are 1D -> C-:term:`contiguous` and C-" -"contiguous -> 1D." +"Cast a memoryview to a new format or shape. *shape* defaults to ``[byte_length//" +"new_itemsize]``, which means that the result view will be one-dimensional. The return value is " +"a new memoryview, but the buffer itself is not copied. Supported casts are 1D -> C-:term:" +"`contiguous` and C-contiguous -> 1D." msgstr "" #: library/stdtypes.rst:3899 msgid "" -"The destination format is restricted to a single element native format in :" -"mod:`struct` syntax. One of the formats must be a byte format ('B', 'b' or " -"'c'). The byte length of the result must be the same as the original length." +"The destination format is restricted to a single element native format in :mod:`struct` " +"syntax. One of the formats must be a byte format ('B', 'b' or 'c'). The byte length of the " +"result must be the same as the original length." msgstr "" #: library/stdtypes.rst:3904 @@ -4387,9 +4204,9 @@ msgstr "" #: library/stdtypes.rst:3998 msgid "" -"``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the " -"amount of space in bytes that the array would use in a contiguous " -"representation. It is not necessarily equal to ``len(m)``::" +"``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the amount of space in " +"bytes that the array would use in a contiguous representation. It is not necessarily equal to " +"``len(m)``::" msgstr "" #: library/stdtypes.rst:4017 @@ -4402,16 +4219,15 @@ msgstr "" #: library/stdtypes.rst:4038 msgid "" -"A string containing the format (in :mod:`struct` module style) for each " -"element in the view. A memoryview can be created from exporters with " -"arbitrary format strings, but some methods (e.g. :meth:`tolist`) are " -"restricted to native single element formats." +"A string containing the format (in :mod:`struct` module style) for each element in the view. A " +"memoryview can be created from exporters with arbitrary format strings, but some methods (e." +"g. :meth:`tolist`) are restricted to native single element formats." msgstr "" #: library/stdtypes.rst:4043 msgid "" -"format ``'B'`` is now handled according to the struct module syntax. This " -"means that ``memoryview(b'abc')[0] == b'abc'[0] == 97``." +"format ``'B'`` is now handled according to the struct module syntax. This means that " +"``memoryview(b'abc')[0] == b'abc'[0] == 97``." msgstr "" #: library/stdtypes.rst:4049 @@ -4420,14 +4236,13 @@ msgstr "" #: library/stdtypes.rst:4062 msgid "" -"An integer indicating how many dimensions of a multi-dimensional array the " -"memory represents." +"An integer indicating how many dimensions of a multi-dimensional array the memory represents." msgstr "" #: library/stdtypes.rst:4067 msgid "" -"A tuple of integers the length of :attr:`ndim` giving the shape of the " -"memory as an N-dimensional array." +"A tuple of integers the length of :attr:`ndim` giving the shape of the memory as an N-" +"dimensional array." msgstr "" #: library/stdtypes.rst:4078 @@ -4436,8 +4251,8 @@ msgstr "" #: library/stdtypes.rst:4075 msgid "" -"A tuple of integers the length of :attr:`ndim` giving the size in bytes to " -"access each element for each dimension of the array." +"A tuple of integers the length of :attr:`ndim` giving the size in bytes to access each element " +"for each dimension of the array." msgstr "" #: library/stdtypes.rst:4083 @@ -4462,39 +4277,35 @@ msgstr "" #: library/stdtypes.rst:4111 msgid "" -"A :dfn:`set` object is an unordered collection of distinct :term:`hashable` " -"objects. Common uses include membership testing, removing duplicates from a " -"sequence, and computing mathematical operations such as intersection, union, " -"difference, and symmetric difference. (For other containers see the built-" -"in :class:`dict`, :class:`list`, and :class:`tuple` classes, and the :mod:" -"`collections` module.)" +"A :dfn:`set` object is an unordered collection of distinct :term:`hashable` objects. Common " +"uses include membership testing, removing duplicates from a sequence, and computing " +"mathematical operations such as intersection, union, difference, and symmetric difference. " +"(For other containers see the built-in :class:`dict`, :class:`list`, and :class:`tuple` " +"classes, and the :mod:`collections` module.)" msgstr "" #: library/stdtypes.rst:4118 msgid "" -"Like other collections, sets support ``x in set``, ``len(set)``, and ``for x " -"in set``. Being an unordered collection, sets do not record element " -"position or order of insertion. Accordingly, sets do not support indexing, " -"slicing, or other sequence-like behavior." +"Like other collections, sets support ``x in set``, ``len(set)``, and ``for x in set``. Being " +"an unordered collection, sets do not record element position or order of insertion. " +"Accordingly, sets do not support indexing, slicing, or other sequence-like behavior." msgstr "" #: library/stdtypes.rst:4123 msgid "" -"There are currently two built-in set types, :class:`set` and :class:" -"`frozenset`. The :class:`set` type is mutable --- the contents can be " -"changed using methods like :meth:`~set.add` and :meth:`~set.remove`. Since " -"it is mutable, it has no hash value and cannot be used as either a " -"dictionary key or as an element of another set. The :class:`frozenset` type " -"is immutable and :term:`hashable` --- its contents cannot be altered after " -"it is created; it can therefore be used as a dictionary key or as an element " -"of another set." +"There are currently two built-in set types, :class:`set` and :class:`frozenset`. The :class:" +"`set` type is mutable --- the contents can be changed using methods like :meth:`~set.add` and :" +"meth:`~set.remove`. Since it is mutable, it has no hash value and cannot be used as either a " +"dictionary key or as an element of another set. The :class:`frozenset` type is immutable and :" +"term:`hashable` --- its contents cannot be altered after it is created; it can therefore be " +"used as a dictionary key or as an element of another set." msgstr "" #: library/stdtypes.rst:4131 msgid "" -"Non-empty sets (not frozensets) can be created by placing a comma-separated " -"list of elements within braces, for example: ``{'jack', 'sjoerd'}``, in " -"addition to the :class:`set` constructor." +"Non-empty sets (not frozensets) can be created by placing a comma-separated list of elements " +"within braces, for example: ``{'jack', 'sjoerd'}``, in addition to the :class:`set` " +"constructor." msgstr "" #: library/stdtypes.rst:4135 @@ -4503,10 +4314,9 @@ msgstr "" #: library/stdtypes.rst:4140 msgid "" -"Return a new set or frozenset object whose elements are taken from " -"*iterable*. The elements of a set must be :term:`hashable`. To represent " -"sets of sets, the inner sets must be :class:`frozenset` objects. If " -"*iterable* is not specified, a new empty set is returned." +"Return a new set or frozenset object whose elements are taken from *iterable*. The elements " +"of a set must be :term:`hashable`. To represent sets of sets, the inner sets must be :class:" +"`frozenset` objects. If *iterable* is not specified, a new empty set is returned." msgstr "" #: library/stdtypes.rst:4146 @@ -4514,25 +4324,19 @@ msgid "Sets can be created by several means:" msgstr "" #: library/stdtypes.rst:4148 -msgid "" -"Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``" +msgid "Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``" msgstr "" #: library/stdtypes.rst:4149 -msgid "" -"Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``" +msgid "Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``" msgstr "" #: library/stdtypes.rst:4150 -msgid "" -"Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', " -"'foo'])``" +msgid "Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', 'foo'])``" msgstr "" #: library/stdtypes.rst:4152 -msgid "" -"Instances of :class:`set` and :class:`frozenset` provide the following " -"operations:" +msgid "Instances of :class:`set` and :class:`frozenset` provide the following operations:" msgstr "" #: library/stdtypes.rst:4157 @@ -4549,8 +4353,8 @@ msgstr "" #: library/stdtypes.rst:4169 msgid "" -"Return ``True`` if the set has no elements in common with *other*. Sets are " -"disjoint if and only if their intersection is the empty set." +"Return ``True`` if the set has no elements in common with *other*. Sets are disjoint if and " +"only if their intersection is the empty set." msgstr "" #: library/stdtypes.rst:4175 @@ -4559,8 +4363,7 @@ msgstr "" #: library/stdtypes.rst:4179 msgid "" -"Test whether the set is a proper subset of *other*, that is, ``set <= other " -"and set != other``." +"Test whether the set is a proper subset of *other*, that is, ``set <= other and set != other``." msgstr "" #: library/stdtypes.rst:4185 @@ -4569,8 +4372,8 @@ msgstr "" #: library/stdtypes.rst:4189 msgid "" -"Test whether the set is a proper superset of *other*, that is, ``set >= " -"other and set != other``." +"Test whether the set is a proper superset of *other*, that is, ``set >= other and set != " +"other``." msgstr "" #: library/stdtypes.rst:4195 @@ -4586,8 +4389,7 @@ msgid "Return a new set with elements in the set that are not in the others." msgstr "" #: library/stdtypes.rst:4210 -msgid "" -"Return a new set with elements in either the set or *other* but not both." +msgid "Return a new set with elements in either the set or *other* but not both." msgstr "" #: library/stdtypes.rst:4214 @@ -4596,43 +4398,40 @@ msgstr "" #: library/stdtypes.rst:4217 msgid "" -"Note, the non-operator versions of :meth:`union`, :meth:`intersection`, :" -"meth:`difference`, :meth:`symmetric_difference`, :meth:`issubset`, and :meth:" -"`issuperset` methods will accept any iterable as an argument. In contrast, " -"their operator based counterparts require their arguments to be sets. This " -"precludes error-prone constructions like ``set('abc') & 'cbs'`` in favor of " -"the more readable ``set('abc').intersection('cbs')``." +"Note, the non-operator versions of :meth:`union`, :meth:`intersection`, :meth:`difference`, :" +"meth:`symmetric_difference`, :meth:`issubset`, and :meth:`issuperset` methods will accept any " +"iterable as an argument. In contrast, their operator based counterparts require their " +"arguments to be sets. This precludes error-prone constructions like ``set('abc') & 'cbs'`` in " +"favor of the more readable ``set('abc').intersection('cbs')``." msgstr "" #: library/stdtypes.rst:4224 msgid "" -"Both :class:`set` and :class:`frozenset` support set to set comparisons. Two " -"sets are equal if and only if every element of each set is contained in the " -"other (each is a subset of the other). A set is less than another set if and " -"only if the first set is a proper subset of the second set (is a subset, but " -"is not equal). A set is greater than another set if and only if the first " -"set is a proper superset of the second set (is a superset, but is not equal)." +"Both :class:`set` and :class:`frozenset` support set to set comparisons. Two sets are equal if " +"and only if every element of each set is contained in the other (each is a subset of the " +"other). A set is less than another set if and only if the first set is a proper subset of the " +"second set (is a subset, but is not equal). A set is greater than another set if and only if " +"the first set is a proper superset of the second set (is a superset, but is not equal)." msgstr "" #: library/stdtypes.rst:4231 msgid "" -"Instances of :class:`set` are compared to instances of :class:`frozenset` " -"based on their members. For example, ``set('abc') == frozenset('abc')`` " -"returns ``True`` and so does ``set('abc') in set([frozenset('abc')])``." +"Instances of :class:`set` are compared to instances of :class:`frozenset` based on their " +"members. For example, ``set('abc') == frozenset('abc')`` returns ``True`` and so does " +"``set('abc') in set([frozenset('abc')])``." msgstr "" #: library/stdtypes.rst:4235 msgid "" -"The subset and equality comparisons do not generalize to a total ordering " -"function. For example, any two nonempty disjoint sets are not equal and are " -"not subsets of each other, so *all* of the following return ``False``: " -"``ab``." +"The subset and equality comparisons do not generalize to a total ordering function. For " +"example, any two nonempty disjoint sets are not equal and are not subsets of each other, so " +"*all* of the following return ``False``: ``ab``." msgstr "" #: library/stdtypes.rst:4240 msgid "" -"Since sets only define partial ordering (subset relationships), the output " -"of the :meth:`list.sort` method is undefined for lists of sets." +"Since sets only define partial ordering (subset relationships), the output of the :meth:`list." +"sort` method is undefined for lists of sets." msgstr "" #: library/stdtypes.rst:4243 @@ -4641,15 +4440,15 @@ msgstr "" #: library/stdtypes.rst:4245 msgid "" -"Binary operations that mix :class:`set` instances with :class:`frozenset` " -"return the type of the first operand. For example: ``frozenset('ab') | " -"set('bc')`` returns an instance of :class:`frozenset`." +"Binary operations that mix :class:`set` instances with :class:`frozenset` return the type of " +"the first operand. For example: ``frozenset('ab') | set('bc')`` returns an instance of :class:" +"`frozenset`." msgstr "" #: library/stdtypes.rst:4249 msgid "" -"The following table lists operations available for :class:`set` that do not " -"apply to immutable instances of :class:`frozenset`:" +"The following table lists operations available for :class:`set` that do not apply to immutable " +"instances of :class:`frozenset`:" msgstr "" #: library/stdtypes.rst:4255 @@ -4665,8 +4464,7 @@ msgid "Update the set, removing elements found in others." msgstr "" #: library/stdtypes.rst:4270 -msgid "" -"Update the set, keeping only elements found in either set, but not in both." +msgid "Update the set, keeping only elements found in either set, but not in both." msgstr "" #: library/stdtypes.rst:4274 @@ -4675,8 +4473,8 @@ msgstr "" #: library/stdtypes.rst:4278 msgid "" -"Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is not " -"contained in the set." +"Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is not contained in the " +"set." msgstr "" #: library/stdtypes.rst:4283 @@ -4685,8 +4483,8 @@ msgstr "" #: library/stdtypes.rst:4287 msgid "" -"Remove and return an arbitrary element from the set. Raises :exc:`KeyError` " -"if the set is empty." +"Remove and return an arbitrary element from the set. Raises :exc:`KeyError` if the set is " +"empty." msgstr "" #: library/stdtypes.rst:4292 @@ -4695,17 +4493,16 @@ msgstr "" #: library/stdtypes.rst:4295 msgid "" -"Note, the non-operator versions of the :meth:`update`, :meth:" -"`intersection_update`, :meth:`difference_update`, and :meth:" -"`symmetric_difference_update` methods will accept any iterable as an " -"argument." +"Note, the non-operator versions of the :meth:`update`, :meth:`intersection_update`, :meth:" +"`difference_update`, and :meth:`symmetric_difference_update` methods will accept any iterable " +"as an argument." msgstr "" #: library/stdtypes.rst:4300 msgid "" -"Note, the *elem* argument to the :meth:`__contains__`, :meth:`remove`, and :" -"meth:`discard` methods may be a set. To support searching for an equivalent " -"frozenset, a temporary one is created from *elem*." +"Note, the *elem* argument to the :meth:`__contains__`, :meth:`remove`, and :meth:`discard` " +"methods may be a set. To support searching for an equivalent frozenset, a temporary one is " +"created from *elem*." msgstr "" #: library/stdtypes.rst:4308 @@ -4714,36 +4511,34 @@ msgstr "" #: library/stdtypes.rst:4318 msgid "" -"A :term:`mapping` object maps :term:`hashable` values to arbitrary objects. " -"Mappings are mutable objects. There is currently only one standard mapping " -"type, the :dfn:`dictionary`. (For other containers see the built-in :class:" -"`list`, :class:`set`, and :class:`tuple` classes, and the :mod:`collections` " -"module.)" +"A :term:`mapping` object maps :term:`hashable` values to arbitrary objects. Mappings are " +"mutable objects. There is currently only one standard mapping type, the :dfn:`dictionary`. " +"(For other containers see the built-in :class:`list`, :class:`set`, and :class:`tuple` " +"classes, and the :mod:`collections` module.)" msgstr "" #: library/stdtypes.rst:4324 msgid "" -"A dictionary's keys are *almost* arbitrary values. Values that are not :" -"term:`hashable`, that is, values containing lists, dictionaries or other " -"mutable types (that are compared by value rather than by object identity) " -"may not be used as keys. Numeric types used for keys obey the normal rules " -"for numeric comparison: if two numbers compare equal (such as ``1`` and " -"``1.0``) then they can be used interchangeably to index the same dictionary " -"entry. (Note however, that since computers store floating-point numbers as " -"approximations it is usually unwise to use them as dictionary keys.)" +"A dictionary's keys are *almost* arbitrary values. Values that are not :term:`hashable`, that " +"is, values containing lists, dictionaries or other mutable types (that are compared by value " +"rather than by object identity) may not be used as keys. Numeric types used for keys obey the " +"normal rules for numeric comparison: if two numbers compare equal (such as ``1`` and ``1.0``) " +"then they can be used interchangeably to index the same dictionary entry. (Note however, that " +"since computers store floating-point numbers as approximations it is usually unwise to use " +"them as dictionary keys.)" msgstr "" #: library/stdtypes.rst:4333 msgid "" -"Dictionaries can be created by placing a comma-separated list of ``key: " -"value`` pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` " -"or ``{4098: 'jack', 4127: 'sjoerd'}``, or by the :class:`dict` constructor." +"Dictionaries can be created by placing a comma-separated list of ``key: value`` pairs within " +"braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``, " +"or by the :class:`dict` constructor." msgstr "" #: library/stdtypes.rst:4341 msgid "" -"Return a new dictionary initialized from an optional positional argument and " -"a possibly empty set of keyword arguments." +"Return a new dictionary initialized from an optional positional argument and a possibly empty " +"set of keyword arguments." msgstr "" #: library/stdtypes.rst:4344 @@ -4752,8 +4547,8 @@ msgstr "" #: library/stdtypes.rst:4346 msgid "" -"Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': " -"4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``" +"Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': 4098, 'sjoerd': " +"4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``" msgstr "" #: library/stdtypes.rst:4348 @@ -4762,46 +4557,44 @@ msgstr "" #: library/stdtypes.rst:4349 msgid "" -"Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', " -"200)])``, ``dict(foo=100, bar=200)``" +"Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', 200)])``, ``dict(foo=100, " +"bar=200)``" msgstr "" #: library/stdtypes.rst:4352 msgid "" -"If no positional argument is given, an empty dictionary is created. If a " -"positional argument is given and it is a mapping object, a dictionary is " -"created with the same key-value pairs as the mapping object. Otherwise, the " -"positional argument must be an :term:`iterable` object. Each item in the " -"iterable must itself be an iterable with exactly two objects. The first " -"object of each item becomes a key in the new dictionary, and the second " -"object the corresponding value. If a key occurs more than once, the last " -"value for that key becomes the corresponding value in the new dictionary." +"If no positional argument is given, an empty dictionary is created. If a positional argument " +"is given and it is a mapping object, a dictionary is created with the same key-value pairs as " +"the mapping object. Otherwise, the positional argument must be an :term:`iterable` object. " +"Each item in the iterable must itself be an iterable with exactly two objects. The first " +"object of each item becomes a key in the new dictionary, and the second object the " +"corresponding value. If a key occurs more than once, the last value for that key becomes the " +"corresponding value in the new dictionary." msgstr "" #: library/stdtypes.rst:4362 msgid "" -"If keyword arguments are given, the keyword arguments and their values are " -"added to the dictionary created from the positional argument. If a key " -"being added is already present, the value from the keyword argument replaces " -"the value from the positional argument." +"If keyword arguments are given, the keyword arguments and their values are added to the " +"dictionary created from the positional argument. If a key being added is already present, the " +"value from the keyword argument replaces the value from the positional argument." msgstr "" #: library/stdtypes.rst:4367 msgid "" -"To illustrate, the following examples all return a dictionary equal to " -"``{\"one\": 1, \"two\": 2, \"three\": 3}``::" +"To illustrate, the following examples all return a dictionary equal to ``{\"one\": 1, \"two\": " +"2, \"three\": 3}``::" msgstr "" #: library/stdtypes.rst:4379 msgid "" -"Providing keyword arguments as in the first example only works for keys that " -"are valid Python identifiers. Otherwise, any valid keys can be used." +"Providing keyword arguments as in the first example only works for keys that are valid Python " +"identifiers. Otherwise, any valid keys can be used." msgstr "" #: library/stdtypes.rst:4383 msgid "" -"These are the operations that dictionaries support (and therefore, custom " -"mapping types should support too):" +"These are the operations that dictionaries support (and therefore, custom mapping types should " +"support too):" msgstr "" #: library/stdtypes.rst:4388 @@ -4814,26 +4607,23 @@ msgstr "" #: library/stdtypes.rst:4396 msgid "" -"Return the item of *d* with key *key*. Raises a :exc:`KeyError` if *key* is " -"not in the map." +"Return the item of *d* with key *key*. Raises a :exc:`KeyError` if *key* is not in the map." msgstr "" #: library/stdtypes.rst:4401 msgid "" -"If a subclass of dict defines a method :meth:`__missing__` and *key* is not " -"present, the ``d[key]`` operation calls that method with the key *key* as " -"argument. The ``d[key]`` operation then returns or raises whatever is " -"returned or raised by the ``__missing__(key)`` call. No other operations or " -"methods invoke :meth:`__missing__`. If :meth:`__missing__` is not defined, :" -"exc:`KeyError` is raised. :meth:`__missing__` must be a method; it cannot be " -"an instance variable::" +"If a subclass of dict defines a method :meth:`__missing__` and *key* is not present, the " +"``d[key]`` operation calls that method with the key *key* as argument. The ``d[key]`` " +"operation then returns or raises whatever is returned or raised by the ``__missing__(key)`` " +"call. No other operations or methods invoke :meth:`__missing__`. If :meth:`__missing__` is not " +"defined, :exc:`KeyError` is raised. :meth:`__missing__` must be a method; it cannot be an " +"instance variable::" msgstr "" #: library/stdtypes.rst:4419 msgid "" -"The example above shows part of the implementation of :class:`collections." -"Counter`. A different ``__missing__`` method is used by :class:`collections." -"defaultdict`." +"The example above shows part of the implementation of :class:`collections.Counter`. A " +"different ``__missing__`` method is used by :class:`collections.defaultdict`." msgstr "" #: library/stdtypes.rst:4425 @@ -4841,9 +4631,7 @@ msgid "Set ``d[key]`` to *value*." msgstr "" #: library/stdtypes.rst:4429 -msgid "" -"Remove ``d[key]`` from *d*. Raises a :exc:`KeyError` if *key* is not in the " -"map." +msgid "Remove ``d[key]`` from *d*. Raises a :exc:`KeyError` if *key* is not in the map." msgstr "" #: library/stdtypes.rst:4434 @@ -4856,8 +4644,7 @@ msgstr "" #: library/stdtypes.rst:4442 msgid "" -"Return an iterator over the keys of the dictionary. This is a shortcut for " -"``iter(d.keys())``." +"Return an iterator over the keys of the dictionary. This is a shortcut for ``iter(d.keys())``." msgstr "" #: library/stdtypes.rst:4447 @@ -4869,134 +4656,125 @@ msgid "Return a shallow copy of the dictionary." msgstr "" #: library/stdtypes.rst:4455 -msgid "" -"Create a new dictionary with keys from *iterable* and values set to *value*." +msgid "Create a new dictionary with keys from *iterable* and values set to *value*." msgstr "" #: library/stdtypes.rst:4457 msgid "" -":meth:`fromkeys` is a class method that returns a new dictionary. *value* " -"defaults to ``None``. All of the values refer to just a single instance, so " -"it generally doesn't make sense for *value* to be a mutable object such as " -"an empty list. To get distinct values, use a :ref:`dict comprehension " -"` instead." +":meth:`fromkeys` is a class method that returns a new dictionary. *value* defaults to " +"``None``. All of the values refer to just a single instance, so it generally doesn't make " +"sense for *value* to be a mutable object such as an empty list. To get distinct values, use " +"a :ref:`dict comprehension ` instead." msgstr "" #: library/stdtypes.rst:4465 msgid "" -"Return the value for *key* if *key* is in the dictionary, else *default*. If " -"*default* is not given, it defaults to ``None``, so that this method never " -"raises a :exc:`KeyError`." +"Return the value for *key* if *key* is in the dictionary, else *default*. If *default* is not " +"given, it defaults to ``None``, so that this method never raises a :exc:`KeyError`." msgstr "" #: library/stdtypes.rst:4471 msgid "" -"Return a new view of the dictionary's items (``(key, value)`` pairs). See " -"the :ref:`documentation of view objects `." +"Return a new view of the dictionary's items (``(key, value)`` pairs). See the :ref:" +"`documentation of view objects `." msgstr "" #: library/stdtypes.rst:4476 msgid "" -"Return a new view of the dictionary's keys. See the :ref:`documentation of " -"view objects `." +"Return a new view of the dictionary's keys. See the :ref:`documentation of view objects `." msgstr "" #: library/stdtypes.rst:4481 msgid "" -"If *key* is in the dictionary, remove it and return its value, else return " -"*default*. If *default* is not given and *key* is not in the dictionary, a :" -"exc:`KeyError` is raised." +"If *key* is in the dictionary, remove it and return its value, else return *default*. If " +"*default* is not given and *key* is not in the dictionary, a :exc:`KeyError` is raised." msgstr "" #: library/stdtypes.rst:4487 msgid "" -"Remove and return a ``(key, value)`` pair from the dictionary. Pairs are " -"returned in :abbr:`LIFO (last-in, first-out)` order." +"Remove and return a ``(key, value)`` pair from the dictionary. Pairs are returned in :abbr:" +"`LIFO (last-in, first-out)` order." msgstr "" #: library/stdtypes.rst:4490 msgid "" -":meth:`popitem` is useful to destructively iterate over a dictionary, as " -"often used in set algorithms. If the dictionary is empty, calling :meth:" -"`popitem` raises a :exc:`KeyError`." +":meth:`popitem` is useful to destructively iterate over a dictionary, as often used in set " +"algorithms. If the dictionary is empty, calling :meth:`popitem` raises a :exc:`KeyError`." msgstr "" #: library/stdtypes.rst:4494 msgid "" -"LIFO order is now guaranteed. In prior versions, :meth:`popitem` would " -"return an arbitrary key/value pair." +"LIFO order is now guaranteed. In prior versions, :meth:`popitem` would return an arbitrary key/" +"value pair." msgstr "" #: library/stdtypes.rst:4500 msgid "" -"Return a reverse iterator over the keys of the dictionary. This is a " -"shortcut for ``reversed(d.keys())``." +"Return a reverse iterator over the keys of the dictionary. This is a shortcut for ``reversed(d." +"keys())``." msgstr "" #: library/stdtypes.rst:4507 msgid "" -"If *key* is in the dictionary, return its value. If not, insert *key* with " -"a value of *default* and return *default*. *default* defaults to ``None``." +"If *key* is in the dictionary, return its value. If not, insert *key* with a value of " +"*default* and return *default*. *default* defaults to ``None``." msgstr "" #: library/stdtypes.rst:4513 msgid "" -"Update the dictionary with the key/value pairs from *other*, overwriting " -"existing keys. Return ``None``." +"Update the dictionary with the key/value pairs from *other*, overwriting existing keys. " +"Return ``None``." msgstr "" #: library/stdtypes.rst:4516 msgid "" -":meth:`update` accepts either another dictionary object or an iterable of " -"key/value pairs (as tuples or other iterables of length two). If keyword " -"arguments are specified, the dictionary is then updated with those key/value " -"pairs: ``d.update(red=1, blue=2)``." +":meth:`update` accepts either another dictionary object or an iterable of key/value pairs (as " +"tuples or other iterables of length two). If keyword arguments are specified, the dictionary " +"is then updated with those key/value pairs: ``d.update(red=1, blue=2)``." msgstr "" #: library/stdtypes.rst:4523 msgid "" -"Return a new view of the dictionary's values. See the :ref:`documentation " -"of view objects `." +"Return a new view of the dictionary's values. See the :ref:`documentation of view objects " +"`." msgstr "" #: library/stdtypes.rst:4526 msgid "" -"An equality comparison between one ``dict.values()`` view and another will " -"always return ``False``. This also applies when comparing ``dict.values()`` " -"to itself::" +"An equality comparison between one ``dict.values()`` view and another will always return " +"``False``. This also applies when comparing ``dict.values()`` to itself::" msgstr "" #: library/stdtypes.rst:4536 msgid "" -"Create a new dictionary with the merged keys and values of *d* and *other*, " -"which must both be dictionaries. The values of *other* take priority when " -"*d* and *other* share keys." +"Create a new dictionary with the merged keys and values of *d* and *other*, which must both be " +"dictionaries. The values of *other* take priority when *d* and *other* share keys." msgstr "" #: library/stdtypes.rst:4544 msgid "" -"Update the dictionary *d* with keys and values from *other*, which may be " -"either a :term:`mapping` or an :term:`iterable` of key/value pairs. The " -"values of *other* take priority when *d* and *other* share keys." +"Update the dictionary *d* with keys and values from *other*, which may be either a :term:" +"`mapping` or an :term:`iterable` of key/value pairs. The values of *other* take priority when " +"*d* and *other* share keys." msgstr "" #: library/stdtypes.rst:4550 msgid "" -"Dictionaries compare equal if and only if they have the same ``(key, " -"value)`` pairs (regardless of ordering). Order comparisons ('<', '<=', '>=', " -"'>') raise :exc:`TypeError`." +"Dictionaries compare equal if and only if they have the same ``(key, value)`` pairs " +"(regardless of ordering). Order comparisons ('<', '<=', '>=', '>') raise :exc:`TypeError`." msgstr "" #: library/stdtypes.rst:4554 msgid "" -"Dictionaries preserve insertion order. Note that updating a key does not " -"affect the order. Keys added after deletion are inserted at the end. ::" +"Dictionaries preserve insertion order. Note that updating a key does not affect the order. " +"Keys added after deletion are inserted at the end. ::" msgstr "" #: library/stdtypes.rst:4572 msgid "" -"Dictionary order is guaranteed to be insertion order. This behavior was an " -"implementation detail of CPython from 3.6." +"Dictionary order is guaranteed to be insertion order. This behavior was an implementation " +"detail of CPython from 3.6." msgstr "" #: library/stdtypes.rst:4576 @@ -5009,8 +4787,7 @@ msgstr "" #: library/stdtypes.rst:4593 msgid "" -":class:`types.MappingProxyType` can be used to create a read-only view of a :" -"class:`dict`." +":class:`types.MappingProxyType` can be used to create a read-only view of a :class:`dict`." msgstr "" #: library/stdtypes.rst:4600 @@ -5019,16 +4796,15 @@ msgstr "" #: library/stdtypes.rst:4602 msgid "" -"The objects returned by :meth:`dict.keys`, :meth:`dict.values` and :meth:" -"`dict.items` are *view objects*. They provide a dynamic view on the " -"dictionary's entries, which means that when the dictionary changes, the view " -"reflects these changes." +"The objects returned by :meth:`dict.keys`, :meth:`dict.values` and :meth:`dict.items` are " +"*view objects*. They provide a dynamic view on the dictionary's entries, which means that " +"when the dictionary changes, the view reflects these changes." msgstr "" #: library/stdtypes.rst:4607 msgid "" -"Dictionary views can be iterated over to yield their respective data, and " -"support membership tests:" +"Dictionary views can be iterated over to yield their respective data, and support membership " +"tests:" msgstr "" #: library/stdtypes.rst:4612 @@ -5037,22 +4813,21 @@ msgstr "" #: library/stdtypes.rst:4616 msgid "" -"Return an iterator over the keys, values or items (represented as tuples of " -"``(key, value)``) in the dictionary." +"Return an iterator over the keys, values or items (represented as tuples of ``(key, value)``) " +"in the dictionary." msgstr "" #: library/stdtypes.rst:4619 msgid "" -"Keys and values are iterated over in insertion order. This allows the " -"creation of ``(value, key)`` pairs using :func:`zip`: ``pairs = zip(d." -"values(), d.keys())``. Another way to create the same list is ``pairs = " -"[(v, k) for (k, v) in d.items()]``." +"Keys and values are iterated over in insertion order. This allows the creation of ``(value, " +"key)`` pairs using :func:`zip`: ``pairs = zip(d.values(), d.keys())``. Another way to create " +"the same list is ``pairs = [(v, k) for (k, v) in d.items()]``." msgstr "" #: library/stdtypes.rst:4624 msgid "" -"Iterating views while adding or deleting entries in the dictionary may raise " -"a :exc:`RuntimeError` or fail to iterate over all entries." +"Iterating views while adding or deleting entries in the dictionary may raise a :exc:" +"`RuntimeError` or fail to iterate over all entries." msgstr "" #: library/stdtypes.rst:4627 @@ -5061,14 +4836,14 @@ msgstr "" #: library/stdtypes.rst:4632 msgid "" -"Return ``True`` if *x* is in the underlying dictionary's keys, values or " -"items (in the latter case, *x* should be a ``(key, value)`` tuple)." +"Return ``True`` if *x* is in the underlying dictionary's keys, values or items (in the latter " +"case, *x* should be a ``(key, value)`` tuple)." msgstr "" #: library/stdtypes.rst:4637 msgid "" -"Return a reverse iterator over the keys, values or items of the dictionary. " -"The view will be iterated in reverse order of the insertion." +"Return a reverse iterator over the keys, values or items of the dictionary. The view will be " +"iterated in reverse order of the insertion." msgstr "" #: library/stdtypes.rst:4640 @@ -5077,18 +4852,17 @@ msgstr "" #: library/stdtypes.rst:4645 msgid "" -"Return a :class:`types.MappingProxyType` that wraps the original dictionary " -"to which the view refers." +"Return a :class:`types.MappingProxyType` that wraps the original dictionary to which the view " +"refers." msgstr "" #: library/stdtypes.rst:4650 msgid "" -"Keys views are set-like since their entries are unique and hashable. If all " -"values are hashable, so that ``(key, value)`` pairs are unique and hashable, " -"then the items view is also set-like. (Values views are not treated as set-" -"like since the entries are generally not unique.) For set-like views, all " -"of the operations defined for the abstract base class :class:`collections." -"abc.Set` are available (for example, ``==``, ``<``, or ``^``)." +"Keys views are set-like since their entries are unique and hashable. If all values are " +"hashable, so that ``(key, value)`` pairs are unique and hashable, then the items view is also " +"set-like. (Values views are not treated as set-like since the entries are generally not " +"unique.) For set-like views, all of the operations defined for the abstract base class :class:" +"`collections.abc.Set` are available (for example, ``==``, ``<``, or ``^``)." msgstr "" #: library/stdtypes.rst:4657 @@ -5101,104 +4875,94 @@ msgstr "" #: library/stdtypes.rst:4705 msgid "" -"Python's :keyword:`with` statement supports the concept of a runtime context " -"defined by a context manager. This is implemented using a pair of methods " -"that allow user-defined classes to define a runtime context that is entered " -"before the statement body is executed and exited when the statement ends:" +"Python's :keyword:`with` statement supports the concept of a runtime context defined by a " +"context manager. This is implemented using a pair of methods that allow user-defined classes " +"to define a runtime context that is entered before the statement body is executed and exited " +"when the statement ends:" msgstr "" #: library/stdtypes.rst:4713 msgid "" -"Enter the runtime context and return either this object or another object " -"related to the runtime context. The value returned by this method is bound " -"to the identifier in the :keyword:`!as` clause of :keyword:`with` statements " -"using this context manager." +"Enter the runtime context and return either this object or another object related to the " +"runtime context. The value returned by this method is bound to the identifier in the :keyword:" +"`!as` clause of :keyword:`with` statements using this context manager." msgstr "" #: library/stdtypes.rst:4718 msgid "" -"An example of a context manager that returns itself is a :term:`file " -"object`. File objects return themselves from __enter__() to allow :func:" -"`open` to be used as the context expression in a :keyword:`with` statement." +"An example of a context manager that returns itself is a :term:`file object`. File objects " +"return themselves from __enter__() to allow :func:`open` to be used as the context expression " +"in a :keyword:`with` statement." msgstr "" #: library/stdtypes.rst:4722 msgid "" -"An example of a context manager that returns a related object is the one " -"returned by :func:`decimal.localcontext`. These managers set the active " -"decimal context to a copy of the original decimal context and then return " -"the copy. This allows changes to be made to the current decimal context in " -"the body of the :keyword:`with` statement without affecting code outside " -"the :keyword:`!with` statement." +"An example of a context manager that returns a related object is the one returned by :func:" +"`decimal.localcontext`. These managers set the active decimal context to a copy of the " +"original decimal context and then return the copy. This allows changes to be made to the " +"current decimal context in the body of the :keyword:`with` statement without affecting code " +"outside the :keyword:`!with` statement." msgstr "" #: library/stdtypes.rst:4732 msgid "" -"Exit the runtime context and return a Boolean flag indicating if any " -"exception that occurred should be suppressed. If an exception occurred while " -"executing the body of the :keyword:`with` statement, the arguments contain " -"the exception type, value and traceback information. Otherwise, all three " -"arguments are ``None``." +"Exit the runtime context and return a Boolean flag indicating if any exception that occurred " +"should be suppressed. If an exception occurred while executing the body of the :keyword:`with` " +"statement, the arguments contain the exception type, value and traceback information. " +"Otherwise, all three arguments are ``None``." msgstr "" #: library/stdtypes.rst:4737 msgid "" -"Returning a true value from this method will cause the :keyword:`with` " -"statement to suppress the exception and continue execution with the " -"statement immediately following the :keyword:`!with` statement. Otherwise " -"the exception continues propagating after this method has finished " -"executing. Exceptions that occur during execution of this method will " -"replace any exception that occurred in the body of the :keyword:`!with` " -"statement." +"Returning a true value from this method will cause the :keyword:`with` statement to suppress " +"the exception and continue execution with the statement immediately following the :keyword:`!" +"with` statement. Otherwise the exception continues propagating after this method has finished " +"executing. Exceptions that occur during execution of this method will replace any exception " +"that occurred in the body of the :keyword:`!with` statement." msgstr "" #: library/stdtypes.rst:4744 msgid "" -"The exception passed in should never be reraised explicitly - instead, this " -"method should return a false value to indicate that the method completed " -"successfully and does not want to suppress the raised exception. This allows " -"context management code to easily detect whether or not an :meth:`__exit__` " -"method has actually failed." +"The exception passed in should never be reraised explicitly - instead, this method should " +"return a false value to indicate that the method completed successfully and does not want to " +"suppress the raised exception. This allows context management code to easily detect whether or " +"not an :meth:`__exit__` method has actually failed." msgstr "" #: library/stdtypes.rst:4750 msgid "" -"Python defines several context managers to support easy thread " -"synchronisation, prompt closure of files or other objects, and simpler " -"manipulation of the active decimal arithmetic context. The specific types " -"are not treated specially beyond their implementation of the context " +"Python defines several context managers to support easy thread synchronisation, prompt closure " +"of files or other objects, and simpler manipulation of the active decimal arithmetic context. " +"The specific types are not treated specially beyond their implementation of the context " "management protocol. See the :mod:`contextlib` module for some examples." msgstr "" #: library/stdtypes.rst:4756 msgid "" -"Python's :term:`generator`\\s and the :class:`contextlib.contextmanager` " -"decorator provide a convenient way to implement these protocols. If a " -"generator function is decorated with the :class:`contextlib.contextmanager` " -"decorator, it will return a context manager implementing the necessary :meth:" -"`~contextmanager.__enter__` and :meth:`~contextmanager.__exit__` methods, " +"Python's :term:`generator`\\s and the :class:`contextlib.contextmanager` decorator provide a " +"convenient way to implement these protocols. If a generator function is decorated with the :" +"class:`contextlib.contextmanager` decorator, it will return a context manager implementing the " +"necessary :meth:`~contextmanager.__enter__` and :meth:`~contextmanager.__exit__` methods, " "rather than the iterator produced by an undecorated generator function." msgstr "" #: library/stdtypes.rst:4763 msgid "" -"Note that there is no specific slot for any of these methods in the type " -"structure for Python objects in the Python/C API. Extension types wanting to " -"define these methods must provide them as a normal Python accessible method. " -"Compared to the overhead of setting up the runtime context, the overhead of " -"a single class dictionary lookup is negligible." +"Note that there is no specific slot for any of these methods in the type structure for Python " +"objects in the Python/C API. Extension types wanting to define these methods must provide them " +"as a normal Python accessible method. Compared to the overhead of setting up the runtime " +"context, the overhead of a single class dictionary lookup is negligible." msgstr "" #: library/stdtypes.rst:4771 msgid "" -"Type Annotation Types --- :ref:`Generic Alias `, :ref:" -"`Union `" +"Type Annotation Types --- :ref:`Generic Alias `, :ref:`Union `" msgstr "" #: library/stdtypes.rst:4776 msgid "" -"The core built-in types for :term:`type annotations ` are :ref:" -"`Generic Alias ` and :ref:`Union `." +"The core built-in types for :term:`type annotations ` are :ref:`Generic Alias " +"` and :ref:`Union `." msgstr "" #: library/stdtypes.rst:4783 @@ -5207,95 +4971,86 @@ msgstr "" #: library/stdtypes.rst:4789 msgid "" -"``GenericAlias`` objects are created by subscripting a class (usually a " -"container), such as ``list[int]``. They are intended primarily for :term:" -"`type annotations `." +"``GenericAlias`` objects are created by subscripting a class (usually a container), such as " +"``list[int]``. They are intended primarily for :term:`type annotations `." msgstr "" #: library/stdtypes.rst:4793 msgid "" -"Usually, the :ref:`subscription ` of container objects calls " -"the method :meth:`__getitem__` of the object. However, the subscription of " -"some containers' classes may call the classmethod :meth:`__class_getitem__` " -"of the class instead. The classmethod :meth:`__class_getitem__` should " -"return a ``GenericAlias`` object." +"Usually, the :ref:`subscription ` of container objects calls the method :meth:" +"`__getitem__` of the object. However, the subscription of some containers' classes may call " +"the classmethod :meth:`__class_getitem__` of the class instead. The classmethod :meth:" +"`__class_getitem__` should return a ``GenericAlias`` object." msgstr "" #: library/stdtypes.rst:4800 msgid "" -"If the :meth:`__getitem__` of the class' metaclass is present, it will take " -"precedence over the :meth:`__class_getitem__` defined in the class (see :pep:" -"`560` for more details)." +"If the :meth:`__getitem__` of the class' metaclass is present, it will take precedence over " +"the :meth:`__class_getitem__` defined in the class (see :pep:`560` for more details)." msgstr "" #: library/stdtypes.rst:4804 msgid "" -"The ``GenericAlias`` object acts as a proxy for :term:`generic types " -"`, implementing *parameterized generics* - a specific instance " -"of a generic which provides the types for container elements." +"The ``GenericAlias`` object acts as a proxy for :term:`generic types `, " +"implementing *parameterized generics* - a specific instance of a generic which provides the " +"types for container elements." msgstr "" #: library/stdtypes.rst:4808 msgid "" -"The user-exposed type for the ``GenericAlias`` object can be accessed from :" -"class:`types.GenericAlias` and used for :func:`isinstance` checks. It can " -"also be used to create ``GenericAlias`` objects directly." +"The user-exposed type for the ``GenericAlias`` object can be accessed from :class:`types." +"GenericAlias` and used for :func:`isinstance` checks. It can also be used to create " +"``GenericAlias`` objects directly." msgstr "" #: library/stdtypes.rst:4814 msgid "" -"Creates a ``GenericAlias`` representing a type ``T`` containing elements of " -"types *X*, *Y*, and more depending on the ``T`` used. For example, a " -"function expecting a :class:`list` containing :class:`float` elements::" +"Creates a ``GenericAlias`` representing a type ``T`` containing elements of types *X*, *Y*, " +"and more depending on the ``T`` used. For example, a function expecting a :class:`list` " +"containing :class:`float` elements::" msgstr "" #: library/stdtypes.rst:4822 msgid "" -"Another example for :term:`mapping` objects, using a :class:`dict`, which is " -"a generic type expecting two type parameters representing the key type and " -"the value type. In this example, the function expects a ``dict`` with keys " -"of type :class:`str` and values of type :class:`int`::" +"Another example for :term:`mapping` objects, using a :class:`dict`, which is a generic type " +"expecting two type parameters representing the key type and the value type. In this example, " +"the function expects a ``dict`` with keys of type :class:`str` and values of type :class:" +"`int`::" msgstr "" #: library/stdtypes.rst:4830 msgid "" -"The builtin functions :func:`isinstance` and :func:`issubclass` do not " -"accept ``GenericAlias`` types for their second argument::" +"The builtin functions :func:`isinstance` and :func:`issubclass` do not accept ``GenericAlias`` " +"types for their second argument::" msgstr "" #: library/stdtypes.rst:4838 msgid "" -"The Python runtime does not enforce :term:`type annotations `. " -"This extends to generic types and their type parameters. When creating an " -"object from a ``GenericAlias``, container elements are not checked against " -"their type. For example, the following code is discouraged, but will run " -"without errors::" +"The Python runtime does not enforce :term:`type annotations `. This extends to " +"generic types and their type parameters. When creating an object from a ``GenericAlias``, " +"container elements are not checked against their type. For example, the following code is " +"discouraged, but will run without errors::" msgstr "" #: library/stdtypes.rst:4848 -msgid "" -"Furthermore, parameterized generics erase type parameters during object " -"creation::" +msgid "Furthermore, parameterized generics erase type parameters during object creation::" msgstr "" #: library/stdtypes.rst:4859 -msgid "" -"Calling :func:`repr` or :func:`str` on a generic shows the parameterized " -"type::" +msgid "Calling :func:`repr` or :func:`str` on a generic shows the parameterized type::" msgstr "" #: library/stdtypes.rst:4867 msgid "" -"The :meth:`__getitem__` method of generics will raise an exception to " -"disallow mistakes like ``dict[str][str]``::" +"The :meth:`__getitem__` method of generics will raise an exception to disallow mistakes like " +"``dict[str][str]``::" msgstr "" #: library/stdtypes.rst:4875 msgid "" -"However, such expressions are valid when :ref:`type variables ` " -"are used. The index must have as many elements as there are type variable " -"items in the ``GenericAlias`` object's :attr:`__args__ `. ::" +"However, such expressions are valid when :ref:`type variables ` are used. The index " +"must have as many elements as there are type variable items in the ``GenericAlias`` object's :" +"attr:`__args__ `. ::" msgstr "" #: library/stdtypes.rst:4886 @@ -5472,21 +5227,21 @@ msgstr "" #: library/stdtypes.rst:4945 msgid "" -"This attribute is a :class:`tuple` (possibly of length 1) of generic types " -"passed to the original :meth:`__class_getitem__` of the generic container::" +"This attribute is a :class:`tuple` (possibly of length 1) of generic types passed to the " +"original :meth:`__class_getitem__` of the generic container::" msgstr "" #: library/stdtypes.rst:4955 msgid "" -"This attribute is a lazily computed tuple (possibly empty) of unique type " -"variables found in ``__args__``::" +"This attribute is a lazily computed tuple (possibly empty) of unique type variables found in " +"``__args__``::" msgstr "" #: library/stdtypes.rst:4966 msgid "" -"A ``GenericAlias`` object with :class:`typing.ParamSpec` parameters may not " -"have correct ``__parameters__`` after substitution because :class:`typing." -"ParamSpec` is intended primarily for static type checking." +"A ``GenericAlias`` object with :class:`typing.ParamSpec` parameters may not have correct " +"``__parameters__`` after substitution because :class:`typing.ParamSpec` is intended primarily " +"for static type checking." msgstr "" #: library/stdtypes.rst:4972 @@ -5507,24 +5262,21 @@ msgstr "" #: library/stdtypes.rst:4988 msgid "" -"A union object holds the value of the ``|`` (bitwise or) operation on " -"multiple :ref:`type objects `. These types are intended " -"primarily for :term:`type annotations `. The union type " -"expression enables cleaner type hinting syntax compared to :data:`typing." -"Union`." +"A union object holds the value of the ``|`` (bitwise or) operation on multiple :ref:`type " +"objects `. These types are intended primarily for :term:`type annotations " +"`. The union type expression enables cleaner type hinting syntax compared to :data:" +"`typing.Union`." msgstr "" #: library/stdtypes.rst:4995 msgid "" -"Defines a union object which holds types *X*, *Y*, and so forth. ``X | Y`` " -"means either X or Y. It is equivalent to ``typing.Union[X, Y]``. For " -"example, the following function expects an argument of type :class:`int` or :" -"class:`float`::" +"Defines a union object which holds types *X*, *Y*, and so forth. ``X | Y`` means either X or " +"Y. It is equivalent to ``typing.Union[X, Y]``. For example, the following function expects an " +"argument of type :class:`int` or :class:`float`::" msgstr "" #: library/stdtypes.rst:5005 -msgid "" -"Union objects can be tested for equality with other union objects. Details:" +msgid "Union objects can be tested for equality with other union objects. Details:" msgstr "" #: library/stdtypes.rst:5007 @@ -5549,28 +5301,25 @@ msgstr "" #: library/stdtypes.rst:5030 msgid "" -"Calls to :func:`isinstance` and :func:`issubclass` are also supported with a " -"union object::" +"Calls to :func:`isinstance` and :func:`issubclass` are also supported with a union object::" msgstr "" #: library/stdtypes.rst:5036 msgid "" -"However, union objects containing :ref:`parameterized generics ` cannot be used::" +"However, union objects containing :ref:`parameterized generics ` cannot be " +"used::" msgstr "" #: library/stdtypes.rst:5044 msgid "" -"The user-exposed type for the union object can be accessed from :data:`types." -"UnionType` and used for :func:`isinstance` checks. An object cannot be " -"instantiated from the type::" +"The user-exposed type for the union object can be accessed from :data:`types.UnionType` and " +"used for :func:`isinstance` checks. An object cannot be instantiated from the type::" msgstr "" #: library/stdtypes.rst:5057 msgid "" -"The :meth:`__or__` method for type objects was added to support the syntax " -"``X | Y``. If a metaclass implements :meth:`__or__`, the Union may override " -"it::" +"The :meth:`__or__` method for type objects was added to support the syntax ``X | Y``. If a " +"metaclass implements :meth:`__or__`, the Union may override it::" msgstr "" #: library/stdtypes.rst:5075 @@ -5583,8 +5332,8 @@ msgstr "" #: library/stdtypes.rst:5085 msgid "" -"The interpreter supports several other kinds of objects. Most of these " -"support only one or two operations." +"The interpreter supports several other kinds of objects. Most of these support only one or two " +"operations." msgstr "" #: library/stdtypes.rst:5092 @@ -5593,31 +5342,28 @@ msgstr "" #: library/stdtypes.rst:5094 msgid "" -"The only special operation on a module is attribute access: ``m.name``, " -"where *m* is a module and *name* accesses a name defined in *m*'s symbol " -"table. Module attributes can be assigned to. (Note that the :keyword:" -"`import` statement is not, strictly speaking, an operation on a module " -"object; ``import foo`` does not require a module object named *foo* to " -"exist, rather it requires an (external) *definition* for a module named " -"*foo* somewhere.)" +"The only special operation on a module is attribute access: ``m.name``, where *m* is a module " +"and *name* accesses a name defined in *m*'s symbol table. Module attributes can be assigned " +"to. (Note that the :keyword:`import` statement is not, strictly speaking, an operation on a " +"module object; ``import foo`` does not require a module object named *foo* to exist, rather it " +"requires an (external) *definition* for a module named *foo* somewhere.)" msgstr "" #: library/stdtypes.rst:5101 msgid "" -"A special attribute of every module is :attr:`~object.__dict__`. This is the " -"dictionary containing the module's symbol table. Modifying this dictionary " -"will actually change the module's symbol table, but direct assignment to " -"the :attr:`~object.__dict__` attribute is not possible (you can write ``m." -"__dict__['a'] = 1``, which defines ``m.a`` to be ``1``, but you can't write " -"``m.__dict__ = {}``). Modifying :attr:`~object.__dict__` directly is not " +"A special attribute of every module is :attr:`~object.__dict__`. This is the dictionary " +"containing the module's symbol table. Modifying this dictionary will actually change the " +"module's symbol table, but direct assignment to the :attr:`~object.__dict__` attribute is not " +"possible (you can write ``m.__dict__['a'] = 1``, which defines ``m.a`` to be ``1``, but you " +"can't write ``m.__dict__ = {}``). Modifying :attr:`~object.__dict__` directly is not " "recommended." msgstr "" #: library/stdtypes.rst:5109 msgid "" -"Modules built into the interpreter are written like this: ````. If loaded from a file, they are written as ````." +"Modules built into the interpreter are written like this: ````. If " +"loaded from a file, they are written as ````." msgstr "" #: library/stdtypes.rst:5117 @@ -5634,16 +5380,15 @@ msgstr "" #: library/stdtypes.rst:5127 msgid "" -"Function objects are created by function definitions. The only operation on " -"a function object is to call it: ``func(argument-list)``." +"Function objects are created by function definitions. The only operation on a function object " +"is to call it: ``func(argument-list)``." msgstr "" #: library/stdtypes.rst:5130 msgid "" -"There are really two flavors of function objects: built-in functions and " -"user-defined functions. Both support the same operation (to call the " -"function), but the implementation is different, hence the different object " -"types." +"There are really two flavors of function objects: built-in functions and user-defined " +"functions. Both support the same operation (to call the function), but the implementation is " +"different, hence the different object types." msgstr "" #: library/stdtypes.rst:5134 @@ -5656,32 +5401,28 @@ msgstr "" #: library/stdtypes.rst:5144 msgid "" -"Methods are functions that are called using the attribute notation. There " -"are two flavors: built-in methods (such as :meth:`append` on lists) and " -"class instance methods. Built-in methods are described with the types that " -"support them." +"Methods are functions that are called using the attribute notation. There are two flavors: " +"built-in methods (such as :meth:`append` on lists) and class instance methods. Built-in " +"methods are described with the types that support them." msgstr "" #: library/stdtypes.rst:5149 msgid "" -"If you access a method (a function defined in a class namespace) through an " -"instance, you get a special object: a :dfn:`bound method` (also called :dfn:" -"`instance method`) object. When called, it will add the ``self`` argument to " -"the argument list. Bound methods have two special read-only attributes: ``m." -"__self__`` is the object on which the method operates, and ``m.__func__`` is " -"the function implementing the method. Calling ``m(arg-1, arg-2, ..., arg-" -"n)`` is completely equivalent to calling ``m.__func__(m.__self__, arg-1, " -"arg-2, ..., arg-n)``." +"If you access a method (a function defined in a class namespace) through an instance, you get " +"a special object: a :dfn:`bound method` (also called :dfn:`instance method`) object. When " +"called, it will add the ``self`` argument to the argument list. Bound methods have two " +"special read-only attributes: ``m.__self__`` is the object on which the method operates, and " +"``m.__func__`` is the function implementing the method. Calling ``m(arg-1, arg-2, ..., arg-" +"n)`` is completely equivalent to calling ``m.__func__(m.__self__, arg-1, arg-2, ..., arg-n)``." msgstr "" #: library/stdtypes.rst:5158 msgid "" -"Like function objects, bound method objects support getting arbitrary " -"attributes. However, since method attributes are actually stored on the " -"underlying function object (``meth.__func__``), setting method attributes on " -"bound methods is disallowed. Attempting to set an attribute on a method " -"results in an :exc:`AttributeError` being raised. In order to set a method " -"attribute, you need to explicitly set it on the underlying function object::" +"Like function objects, bound method objects support getting arbitrary attributes. However, " +"since method attributes are actually stored on the underlying function object (``meth." +"__func__``), setting method attributes on bound methods is disallowed. Attempting to set an " +"attribute on a method results in an :exc:`AttributeError` being raised. In order to set a " +"method attribute, you need to explicitly set it on the underlying function object::" msgstr "" #: library/stdtypes.rst:5209 @@ -5694,24 +5435,23 @@ msgstr "" #: library/stdtypes.rst:5192 msgid "" -"Code objects are used by the implementation to represent \"pseudo-compiled\" " -"executable Python code such as a function body. They differ from function " -"objects because they don't contain a reference to their global execution " -"environment. Code objects are returned by the built-in :func:`compile` " -"function and can be extracted from function objects through their :attr:" +"Code objects are used by the implementation to represent \"pseudo-compiled\" executable Python " +"code such as a function body. They differ from function objects because they don't contain a " +"reference to their global execution environment. Code objects are returned by the built-in :" +"func:`compile` function and can be extracted from function objects through their :attr:" "`__code__` attribute. See also the :mod:`code` module." msgstr "" #: library/stdtypes.rst:5199 msgid "" -"Accessing ``__code__`` raises an :ref:`auditing event ` ``object." -"__getattr__`` with arguments ``obj`` and ``\"__code__\"``." +"Accessing ``__code__`` raises an :ref:`auditing event ` ``object.__getattr__`` with " +"arguments ``obj`` and ``\"__code__\"``." msgstr "" #: library/stdtypes.rst:5206 msgid "" -"A code object can be executed or evaluated by passing it (instead of a " -"source string) to the :func:`exec` or :func:`eval` built-in functions." +"A code object can be executed or evaluated by passing it (instead of a source string) to the :" +"func:`exec` or :func:`eval` built-in functions." msgstr "" #: library/stdtypes.rst:5215 @@ -5720,10 +5460,9 @@ msgstr "" #: library/stdtypes.rst:5221 msgid "" -"Type objects represent the various object types. An object's type is " -"accessed by the built-in function :func:`type`. There are no special " -"operations on types. The standard module :mod:`types` defines names for all " -"standard built-in types." +"Type objects represent the various object types. An object's type is accessed by the built-in " +"function :func:`type`. There are no special operations on types. The standard module :mod:" +"`types` defines names for all standard built-in types." msgstr "" #: library/stdtypes.rst:5226 @@ -5736,9 +5475,9 @@ msgstr "" #: library/stdtypes.rst:5234 msgid "" -"This object is returned by functions that don't explicitly return a value. " -"It supports no special operations. There is exactly one null object, named " -"``None`` (a built-in name). ``type(None)()`` produces the same singleton." +"This object is returned by functions that don't explicitly return a value. It supports no " +"special operations. There is exactly one null object, named ``None`` (a built-in name). " +"``type(None)()`` produces the same singleton." msgstr "" #: library/stdtypes.rst:5238 @@ -5751,10 +5490,9 @@ msgstr "" #: library/stdtypes.rst:5247 msgid "" -"This object is commonly used by slicing (see :ref:`slicings`). It supports " -"no special operations. There is exactly one ellipsis object, named :const:" -"`Ellipsis` (a built-in name). ``type(Ellipsis)()`` produces the :const:" -"`Ellipsis` singleton." +"This object is commonly used by slicing (see :ref:`slicings`). It supports no special " +"operations. There is exactly one ellipsis object, named :const:`Ellipsis` (a built-in name). " +"``type(Ellipsis)()`` produces the :const:`Ellipsis` singleton." msgstr "" #: library/stdtypes.rst:5252 @@ -5767,10 +5505,9 @@ msgstr "" #: library/stdtypes.rst:5260 msgid "" -"This object is returned from comparisons and binary operations when they are " -"asked to operate on types they don't support. See :ref:`comparisons` for " -"more information. There is exactly one ``NotImplemented`` object. " -"``type(NotImplemented)()`` produces the singleton instance." +"This object is returned from comparisons and binary operations when they are asked to operate " +"on types they don't support. See :ref:`comparisons` for more information. There is exactly " +"one ``NotImplemented`` object. ``type(NotImplemented)()`` produces the singleton instance." msgstr "" #: library/stdtypes.rst:5265 @@ -5783,13 +5520,12 @@ msgstr "" #: library/stdtypes.rst:5273 msgid "" -"Boolean values are the two constant objects ``False`` and ``True``. They " -"are used to represent truth values (although other values can also be " -"considered false or true). In numeric contexts (for example when used as " -"the argument to an arithmetic operator), they behave like the integers 0 and " -"1, respectively. The built-in function :func:`bool` can be used to convert " -"any value to a Boolean, if the value can be interpreted as a truth value " -"(see section :ref:`truth` above)." +"Boolean values are the two constant objects ``False`` and ``True``. They are used to " +"represent truth values (although other values can also be considered false or true). In " +"numeric contexts (for example when used as the argument to an arithmetic operator), they " +"behave like the integers 0 and 1, respectively. The built-in function :func:`bool` can be used " +"to convert any value to a Boolean, if the value can be interpreted as a truth value (see " +"section :ref:`truth` above)." msgstr "" #: library/stdtypes.rst:5286 @@ -5802,8 +5538,8 @@ msgstr "" #: library/stdtypes.rst:5294 msgid "" -"See :ref:`types` for this information. It describes stack frame objects, " -"traceback objects, and slice objects." +"See :ref:`types` for this information. It describes stack frame objects, traceback objects, " +"and slice objects." msgstr "" #: library/stdtypes.rst:5301 @@ -5812,15 +5548,12 @@ msgstr "" #: library/stdtypes.rst:5303 msgid "" -"The implementation adds a few special read-only attributes to several object " -"types, where they are relevant. Some of these are not reported by the :func:" -"`dir` built-in function." +"The implementation adds a few special read-only attributes to several object types, where they " +"are relevant. Some of these are not reported by the :func:`dir` built-in function." msgstr "" #: library/stdtypes.rst:5310 -msgid "" -"A dictionary or other mapping object used to store an object's (writable) " -"attributes." +msgid "A dictionary or other mapping object used to store an object's (writable) attributes." msgstr "" #: library/stdtypes.rst:5316 @@ -5832,34 +5565,31 @@ msgid "The tuple of base classes of a class object." msgstr "" #: library/stdtypes.rst:5326 -msgid "" -"The name of the class, function, method, descriptor, or generator instance." +msgid "The name of the class, function, method, descriptor, or generator instance." msgstr "" #: library/stdtypes.rst:5332 msgid "" -"The :term:`qualified name` of the class, function, method, descriptor, or " -"generator instance." +"The :term:`qualified name` of the class, function, method, descriptor, or generator instance." msgstr "" #: library/stdtypes.rst:5340 msgid "" -"This attribute is a tuple of classes that are considered when looking for " -"base classes during method resolution." +"This attribute is a tuple of classes that are considered when looking for base classes during " +"method resolution." msgstr "" #: library/stdtypes.rst:5346 msgid "" -"This method can be overridden by a metaclass to customize the method " -"resolution order for its instances. It is called at class instantiation, " -"and its result is stored in :attr:`~class.__mro__`." +"This method can be overridden by a metaclass to customize the method resolution order for its " +"instances. It is called at class instantiation, and its result is stored in :attr:`~class." +"__mro__`." msgstr "" #: library/stdtypes.rst:5353 msgid "" -"Each class keeps a list of weak references to its immediate subclasses. " -"This method returns a list of all those references still alive. The list is " -"in definition order. Example::" +"Each class keeps a list of weak references to its immediate subclasses. This method returns a " +"list of all those references still alive. The list is in definition order. Example::" msgstr "" #: library/stdtypes.rst:5362 @@ -5868,14 +5598,14 @@ msgstr "" #: library/stdtypes.rst:5363 msgid "" -"Additional information on these special methods may be found in the Python " -"Reference Manual (:ref:`customization`)." +"Additional information on these special methods may be found in the Python Reference Manual (:" +"ref:`customization`)." msgstr "" #: library/stdtypes.rst:5366 msgid "" -"As a consequence, the list ``[1, 2]`` is considered equal to ``[1.0, 2.0]``, " -"and similarly for tuples." +"As a consequence, the list ``[1, 2]`` is considered equal to ``[1.0, 2.0]``, and similarly for " +"tuples." msgstr "" #: library/stdtypes.rst:5369 @@ -5884,13 +5614,12 @@ msgstr "" #: library/stdtypes.rst:5371 msgid "" -"Cased characters are those with general category property being one of \"Lu" -"\" (Letter, uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, " -"titlecase)." +"Cased characters are those with general category property being one of \"Lu\" (Letter, " +"uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, titlecase)." msgstr "" #: library/stdtypes.rst:5374 msgid "" -"To format only a tuple you should therefore provide a singleton tuple whose " -"only element is the tuple to be formatted." +"To format only a tuple you should therefore provide a singleton tuple whose only element is " +"the tuple to be formatted." msgstr "" From ddfe9e55801ab203ea19282b9e455b48965937a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Apr 2022 13:57:19 +0000 Subject: [PATCH 24/37] Wrap translations --- library/stdtypes.po | 4154 ++++++++++++++++++++++++------------------- tutorial/stdlib.po | 2 +- 2 files changed, 2331 insertions(+), 1825 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 63feb11a9..d44045df4 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -22,39 +22,44 @@ msgid "Built-in Types" msgstr "Gömülü Türler" #: library/stdtypes.rst:10 -msgid "The following sections describe the standard types that are built into the interpreter." +msgid "" +"The following sections describe the standard types that are built into the " +"interpreter." msgstr "" -"Aşağıdaki bölümlerde, yorumlayıcıda yerleşik olarak yer alan standart türler açıklanmaktadır." +"Aşağıdaki bölümlerde, yorumlayıcıda yerleşik olarak yer alan standart türler " +"açıklanmaktadır." #: library/stdtypes.rst:15 msgid "" -"The principal built-in types are numerics, sequences, mappings, classes, instances and " -"exceptions." +"The principal built-in types are numerics, sequences, mappings, classes, " +"instances and exceptions." msgstr "" -"Başlıca gömülü türler sayısallar, diziler, eşleşmeler, sınıflar, örnekler ve kural dışı " -"durumlardır." +"Başlıca gömülü türler sayısallar, diziler, eşleşmeler, sınıflar, örnekler ve " +"kural dışı durumlardır." #: library/stdtypes.rst:18 msgid "" -"Some collection classes are mutable. The methods that add, subtract, or rearrange their " -"members in place, and don't return a specific item, never return the collection instance " -"itself but ``None``." +"Some collection classes are mutable. The methods that add, subtract, or " +"rearrange their members in place, and don't return a specific item, never " +"return the collection instance itself but ``None``." msgstr "" -"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, çıkaran veya yeniden " -"düzenleyen ve belirli bir öğe döndürmeyen metotlar, her zaman koleksiyon örneğini değil " -"``None`` değerini döndürür." +"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, " +"çıkaran veya yeniden düzenleyen ve belirli bir öğe döndürmeyen metotlar, her " +"zaman koleksiyon örneğini değil ``None`` değerini döndürür." #: library/stdtypes.rst:22 msgid "" -"Some operations are supported by several object types; in particular, practically all objects " -"can be compared for equality, tested for truth value, and converted to a string (with the :" -"func:`repr` function or the slightly different :func:`str` function). The latter function is " -"implicitly used when an object is written by the :func:`print` function." +"Some operations are supported by several object types; in particular, " +"practically all objects can be compared for equality, tested for truth " +"value, and converted to a string (with the :func:`repr` function or the " +"slightly different :func:`str` function). The latter function is implicitly " +"used when an object is written by the :func:`print` function." msgstr "" -"Bazı işlemler birkaç nesne türü tarafından desteklenir; özellikle, tüm nesneler eşitlik için " -"karşılaştırılabilir, doğruluk değeri için test edilebilir ve bir dizeye dönüştürülebilir (:" -"func:`repr` fonksiyonu veya hafif farklı olan :func:`str` fonksiyonu ile). İkinci fonksiyon, " -"bir nesne :func:`print` ile yazdırıldığında dolaylı olarak kullanılır." +"Bazı işlemler birkaç nesne türü tarafından desteklenir; özellikle, tüm " +"nesneler eşitlik için karşılaştırılabilir, doğruluk değeri için test " +"edilebilir ve bir dizeye dönüştürülebilir (:func:`repr` fonksiyonu veya " +"hafif farklı olan :func:`str` fonksiyonu ile). İkinci fonksiyon, bir nesne :" +"func:`print` ile yazdırıldığında dolaylı olarak kullanılır." #: library/stdtypes.rst:32 msgid "Truth Value Testing" @@ -62,44 +67,56 @@ msgstr "Doğruluk Değeri Testi" #: library/stdtypes.rst:41 msgid "" -"Any object can be tested for truth value, for use in an :keyword:`if` or :keyword:`while` " -"condition or as operand of the Boolean operations below." +"Any object can be tested for truth value, for use in an :keyword:`if` or :" +"keyword:`while` condition or as operand of the Boolean operations below." msgstr "" -"Herhangi bir nesne, :keyword:`if` veya :keyword:`while` koşulunda veya aşağıdaki Boolean " -"işlemlerinin işleneni olarak kullanımında doğruluk değeri için test edilebilir." +"Herhangi bir nesne, :keyword:`if` veya :keyword:`while` koşulunda veya " +"aşağıdaki Boolean işlemlerinin işleneni olarak kullanımında doğruluk değeri " +"için test edilebilir." #: library/stdtypes.rst:46 msgid "" -"By default, an object is considered true unless its class defines either a :meth:`__bool__` " -"method that returns ``False`` or a :meth:`__len__` method that returns zero, when called with " -"the object. [1]_ Here are most of the built-in objects considered false:" +"By default, an object is considered true unless its class defines either a :" +"meth:`__bool__` method that returns ``False`` or a :meth:`__len__` method " +"that returns zero, when called with the object. [1]_ Here are most of the " +"built-in objects considered false:" msgstr "" -"Varsayılan olarak, bir nesne, sınıfı \"False\" döndüren bir :meth:`__bool__` yöntemini veya " -"nesneyle birlikte çağrıldığında sıfır döndüren bir :meth:`__len__` yöntemini tanımlamadıkça " -"doğru kabul edilir. [1]_ Yanlış olarak kabul edilen yerleşik nesnelerin çoğu:" +"Varsayılan olarak, bir nesne, sınıfı \"False\" döndüren bir :meth:`__bool__` " +"yöntemini veya nesneyle birlikte çağrıldığında sıfır döndüren bir :meth:" +"`__len__` yöntemini tanımlamadıkça doğru kabul edilir. [1]_ Yanlış olarak " +"kabul edilen yerleşik nesnelerin çoğu:" #: library/stdtypes.rst:55 msgid "constants defined to be false: ``None`` and ``False``." msgstr "false olarak tanımlanan sabitler: ``None`` ve ``False``." #: library/stdtypes.rst:57 -msgid "zero of any numeric type: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, ``Fraction(0, 1)``" +msgid "" +"zero of any numeric type: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, " +"``Fraction(0, 1)``" msgstr "" -"herhangi bir sayısal türden sıfır: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, ``Fraction(0, 1)``" +"herhangi bir sayısal türden sıfır: ``0``, ``0.0``, ``0j``, ``Decimal(0)``, " +"``Fraction(0, 1)``" #: library/stdtypes.rst:60 -msgid "empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, ``range(0)``" -msgstr "boş diziler ve koleksiyonlar: ``''``, ``()``, ``[]``, ``{}``, ``set()``, ``range(0)``" +msgid "" +"empty sequences and collections: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " +"``range(0)``" +msgstr "" +"boş diziler ve koleksiyonlar: ``''``, ``()``, ``[]``, ``{}``, ``set()``, " +"``range(0)``" #: library/stdtypes.rst:69 msgid "" -"Operations and built-in functions that have a Boolean result always return ``0`` or ``False`` " -"for false and ``1`` or ``True`` for true, unless otherwise stated. (Important exception: the " -"Boolean operations ``or`` and ``and`` always return one of their operands.)" +"Operations and built-in functions that have a Boolean result always return " +"``0`` or ``False`` for false and ``1`` or ``True`` for true, unless " +"otherwise stated. (Important exception: the Boolean operations ``or`` and " +"``and`` always return one of their operands.)" msgstr "" -"Boolean sonucu olan işlemler ve gömülü fonksiyonlar, aksi belirtilmedikçe her zaman false için " -"\"0\" veya \"False\" ve true için \"1\" veya \"True\" döndürür. (Önemli istisna: Boolean " -"işlemleri \"or\" ve \"and\" her zaman işlenenlerinden birini döndürür.)" +"Boolean sonucu olan işlemler ve gömülü fonksiyonlar, aksi belirtilmedikçe " +"her zaman false için \"0\" veya \"False\" ve true için \"1\" veya \"True\" " +"döndürür. (Önemli istisna: Boolean işlemleri \"or\" ve \"and\" her zaman " +"işlenenlerinden birini döndürür.)" #: library/stdtypes.rst:78 msgid "Boolean Operations --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not`" @@ -158,7 +175,8 @@ msgid "if *x* is false, then ``True``, else ``False``" msgstr "*x* yanlışsa, ``True``, aksi halde ``False``" #: library/stdtypes.rst:897 library/stdtypes.rst:2324 library/stdtypes.rst:2328 -#: library/stdtypes.rst:3545 library/stdtypes.rst:3549 library/stdtypes.rst:3551 +#: library/stdtypes.rst:3545 library/stdtypes.rst:3549 +#: library/stdtypes.rst:3551 msgid "\\(3)" msgstr "\\(3)" @@ -169,26 +187,28 @@ msgstr "Notlar:" #: library/stdtypes.rst:105 msgid "" -"This is a short-circuit operator, so it only evaluates the second argument if the first one is " -"false." +"This is a short-circuit operator, so it only evaluates the second argument " +"if the first one is false." msgstr "" -"Bu bir kısa devre operatörüdür, bu nedenle ikinci argümanı yalnızca birincisi yanlışsa " -"değerlendirir." +"Bu bir kısa devre operatörüdür, bu nedenle ikinci argümanı yalnızca " +"birincisi yanlışsa değerlendirir." #: library/stdtypes.rst:109 msgid "" -"This is a short-circuit operator, so it only evaluates the second argument if the first one is " -"true." +"This is a short-circuit operator, so it only evaluates the second argument " +"if the first one is true." msgstr "" -"Bu bir kısa devre operatörüdür, bu nedenle sadece ilki doğruysa ikinci argümanı değerlendirir." +"Bu bir kısa devre operatörüdür, bu nedenle sadece ilki doğruysa ikinci " +"argümanı değerlendirir." #: library/stdtypes.rst:113 msgid "" -"``not`` has a lower priority than non-Boolean operators, so ``not a == b`` is interpreted as " -"``not (a == b)``, and ``a == not b`` is a syntax error." +"``not`` has a lower priority than non-Boolean operators, so ``not a == b`` " +"is interpreted as ``not (a == b)``, and ``a == not b`` is a syntax error." msgstr "" -"``not`` Boolean olmayan operatörlerden daha düşük bir önceliğe sahiptir, bu nedenle ``not a == " -"b``, ``not (a == b)`` olarak yorumlanır bu sebeple ``a == not b`` bir söz dizimi hatasıdır." +"``not`` Boolean olmayan operatörlerden daha düşük bir önceliğe sahiptir, bu " +"nedenle ``not a == b``, ``not (a == b)`` olarak yorumlanır bu sebeple ``a == " +"not b`` bir söz dizimi hatasıdır." #: library/stdtypes.rst:120 msgid "Comparisons" @@ -196,21 +216,24 @@ msgstr "Karşılaştırmalar" #: library/stdtypes.rst:134 msgid "" -"There are eight comparison operations in Python. They all have the same priority (which is " -"higher than that of the Boolean operations). Comparisons can be chained arbitrarily; for " -"example, ``x < y <= z`` is equivalent to ``x < y and y <= z``, except that *y* is evaluated " -"only once (but in both cases *z* is not evaluated at all when ``x < y`` is found to be false)." +"There are eight comparison operations in Python. They all have the same " +"priority (which is higher than that of the Boolean operations). Comparisons " +"can be chained arbitrarily; for example, ``x < y <= z`` is equivalent to ``x " +"< y and y <= z``, except that *y* is evaluated only once (but in both cases " +"*z* is not evaluated at all when ``x < y`` is found to be false)." msgstr "" -"Python'da sekiz karşılaştırma işlemi vardır. Hepsinin önceliği aynıdır (Boolean işlemlerinden " -"daha önceliklidir). Karşılaştırmalar isteğe bağlı olarak zincirlenebilir; örneğin, ``x < y <= " -"z``, ``x < y and y <= z`` ile eş değerdir, ancak *y* yalnızca bir kez değerlendirilir (ancak " -"her iki durumda da ``x < y`` yanlış olduğu tespit edildiğinde *z* hiç değerlendirilmez)." +"Python'da sekiz karşılaştırma işlemi vardır. Hepsinin önceliği aynıdır " +"(Boolean işlemlerinden daha önceliklidir). Karşılaştırmalar isteğe bağlı " +"olarak zincirlenebilir; örneğin, ``x < y <= z``, ``x < y and y <= z`` ile eş " +"değerdir, ancak *y* yalnızca bir kez değerlendirilir (ancak her iki durumda " +"da ``x < y`` yanlış olduğu tespit edildiğinde *z* hiç değerlendirilmez)." #: library/stdtypes.rst:140 msgid "This table summarizes the comparison operations:" msgstr "Bu tablo karşılaştırma operatörlerini özetlemektedir:" -#: library/stdtypes.rst:2287 library/stdtypes.rst:3508 library/stdtypes.rst:3531 +#: library/stdtypes.rst:2287 library/stdtypes.rst:3508 +#: library/stdtypes.rst:3531 msgid "Meaning" msgstr "Anlamı" @@ -280,55 +303,63 @@ msgstr "olumsuz nesne kimliği" #: library/stdtypes.rst:166 msgid "" -"Objects of different types, except different numeric types, never compare equal. The ``==`` " -"operator is always defined but for some object types (for example, class objects) is " -"equivalent to :keyword:`is`. The ``<``, ``<=``, ``>`` and ``>=`` operators are only defined " -"where they make sense; for example, they raise a :exc:`TypeError` exception when one of the " -"arguments is a complex number." +"Objects of different types, except different numeric types, never compare " +"equal. The ``==`` operator is always defined but for some object types (for " +"example, class objects) is equivalent to :keyword:`is`. The ``<``, ``<=``, " +"``>`` and ``>=`` operators are only defined where they make sense; for " +"example, they raise a :exc:`TypeError` exception when one of the arguments " +"is a complex number." msgstr "" -"Farklı sayısal türler dışında, farklı türdeki nesneler hiçbir zaman eşit olarak " -"karşılaştırılmaz. ``==`` operatörü her zaman tanımlanır, ancak bazı nesne türleri için " -"(örneğin, sınıf nesneleri) :keyword:`is` ile eş değerdir. ``<``, ``<=``, ``>`` ve ``>=`` " -"operatörleri yalnızca anlamlı oldukları yerde tanımlanır; örneğin, argümanlardan biri karmaşık " -"bir sayı olduğunda bir :exc:`TypeError` hatası oluştururlar." +"Farklı sayısal türler dışında, farklı türdeki nesneler hiçbir zaman eşit " +"olarak karşılaştırılmaz. ``==`` operatörü her zaman tanımlanır, ancak bazı " +"nesne türleri için (örneğin, sınıf nesneleri) :keyword:`is` ile eş değerdir. " +"``<``, ``<=``, ``>`` ve ``>=`` operatörleri yalnızca anlamlı oldukları yerde " +"tanımlanır; örneğin, argümanlardan biri karmaşık bir sayı olduğunda bir :exc:" +"`TypeError` hatası oluştururlar." #: library/stdtypes.rst:180 msgid "" -"Non-identical instances of a class normally compare as non-equal unless the class defines the :" -"meth:`~object.__eq__` method." +"Non-identical instances of a class normally compare as non-equal unless the " +"class defines the :meth:`~object.__eq__` method." msgstr "" -"Normalde, bir sınıfın özdeş olmayan örnekleri, sınıf :meth:`~object.__eq__` yöntemini " -"tanımlamadığı sürece eşit olmayan olarak karşılaştırılır." +"Normalde, bir sınıfın özdeş olmayan örnekleri, sınıf :meth:`~object.__eq__` " +"yöntemini tanımlamadığı sürece eşit olmayan olarak karşılaştırılır." #: library/stdtypes.rst:183 msgid "" -"Instances of a class cannot be ordered with respect to other instances of the same class, or " -"other types of object, unless the class defines enough of the methods :meth:`~object.__lt__`, :" -"meth:`~object.__le__`, :meth:`~object.__gt__`, and :meth:`~object.__ge__` (in general, :meth:" -"`~object.__lt__` and :meth:`~object.__eq__` are sufficient, if you want the conventional " -"meanings of the comparison operators)." -msgstr "" -"Bir sınıfın örnekleri, sınıf yeterli yöntemleri tanımlamadıkça, aynı sınıfın diğer örneklerine " -"veya diğer nesne türlerine göre sıralanamaz :meth:`~object.__lt__`, :meth:`~object.__le__` , :" -"meth:`~object.__gt__` ve :meth:`~object.__ge__` (karşılaştırma operatörlerin geleneksel " -"anlamlarını istiyorsanız, :meth:`~object.__lt__` ve :meth:`~object.__eq__` genellikle yeterli " +"Instances of a class cannot be ordered with respect to other instances of " +"the same class, or other types of object, unless the class defines enough of " +"the methods :meth:`~object.__lt__`, :meth:`~object.__le__`, :meth:`~object." +"__gt__`, and :meth:`~object.__ge__` (in general, :meth:`~object.__lt__` and :" +"meth:`~object.__eq__` are sufficient, if you want the conventional meanings " +"of the comparison operators)." +msgstr "" +"Bir sınıfın örnekleri, sınıf yeterli yöntemleri tanımlamadıkça, aynı sınıfın " +"diğer örneklerine veya diğer nesne türlerine göre sıralanamaz :meth:`~object." +"__lt__`, :meth:`~object.__le__` , :meth:`~object.__gt__` ve :meth:`~object." +"__ge__` (karşılaştırma operatörlerin geleneksel anlamlarını istiyorsanız, :" +"meth:`~object.__lt__` ve :meth:`~object.__eq__` genellikle yeterli " "olacaktır)." #: library/stdtypes.rst:190 msgid "" -"The behavior of the :keyword:`is` and :keyword:`is not` operators cannot be customized; also " -"they can be applied to any two objects and never raise an exception." +"The behavior of the :keyword:`is` and :keyword:`is not` operators cannot be " +"customized; also they can be applied to any two objects and never raise an " +"exception." msgstr "" -":keyword:`is` ve :keyword:`is not` operatörlerinin davranışı özelleştirilemez; ayrıca herhangi " -"iki nesneye uygulanabilirler ve asla bir hata oluşturmazlar." +":keyword:`is` ve :keyword:`is not` operatörlerinin davranışı " +"özelleştirilemez; ayrıca herhangi iki nesneye uygulanabilirler ve asla bir " +"hata oluşturmazlar." #: library/stdtypes.rst:198 msgid "" -"Two more operations with the same syntactic priority, :keyword:`in` and :keyword:`not in`, are " -"supported by types that are :term:`iterable` or implement the :meth:`__contains__` method." +"Two more operations with the same syntactic priority, :keyword:`in` and :" +"keyword:`not in`, are supported by types that are :term:`iterable` or " +"implement the :meth:`__contains__` method." msgstr "" -"Aynı söz dizimsel önceliğe sahip iki işlem daha, :keyword:`in` ve :keyword:`not in`, :term:" -"`iterable` olan veya :meth:`__contains__` yöntemini uygulayan türler tarafından desteklenir." +"Aynı söz dizimsel önceliğe sahip iki işlem daha, :keyword:`in` ve :keyword:" +"`not in`, :term:`iterable` olan veya :meth:`__contains__` yöntemini " +"uygulayan türler tarafından desteklenir." #: library/stdtypes.rst:205 msgid "Numeric Types --- :class:`int`, :class:`float`, :class:`complex`" @@ -336,72 +367,80 @@ msgstr "Sayısal Türler --- :class:`int`, :class:`float`, :class:`complex`" #: library/stdtypes.rst:215 msgid "" -"There are three distinct numeric types: :dfn:`integers`, :dfn:`floating point numbers`, and :" -"dfn:`complex numbers`. In addition, Booleans are a subtype of integers. Integers have " -"unlimited precision. Floating point numbers are usually implemented using :c:type:`double` in " -"C; information about the precision and internal representation of floating point numbers for " -"the machine on which your program is running is available in :data:`sys.float_info`. Complex " -"numbers have a real and imaginary part, which are each a floating point number. To extract " -"these parts from a complex number *z*, use ``z.real`` and ``z.imag``. (The standard library " -"includes the additional numeric types :mod:`fractions.Fraction`, for rationals, and :mod:" -"`decimal.Decimal`, for floating-point numbers with user-definable precision.)" -msgstr "" -"Üç farklı sayısal tür vardır: :dfn:`integers`, :dfn:`floating point numbers`, ve :dfn:`complex " -"numbers`. Ayrıca, Booleanlar tam sayıların bir alt türüdür. Tam sayıların kesinliği " -"sınırsızdır. Gerçel sayılar genellikle C dilinde :c:type:`double` kullanılarak uygulanır; " -"programınızın çalıştığı makine için gerçel sayıların kesinliği ve dahili gösterimi hakkında " -"bilgi :data:`sys.float_info` içinde mevcuttur. Karmaşık sayıların her biri bir gerçel sayı " -"olan gerçek ve sanal birer kısımları vardır. Bu parçaları *z* karmaşık sayısından ayıklamak " -"için ``z.real`` ve ``z.imag`` kullanın. (Standart kütüphane, rasyonel sayılar için :mod:" -"`fractions.Fraction` ve kullanıcı tarafından tanımlanabilen hassasiyete sahip gerçel sayılar " -"için :mod:`decimal.Decimal` ek sayısal türlerini içerir.)" +"There are three distinct numeric types: :dfn:`integers`, :dfn:`floating " +"point numbers`, and :dfn:`complex numbers`. In addition, Booleans are a " +"subtype of integers. Integers have unlimited precision. Floating point " +"numbers are usually implemented using :c:type:`double` in C; information " +"about the precision and internal representation of floating point numbers " +"for the machine on which your program is running is available in :data:`sys." +"float_info`. Complex numbers have a real and imaginary part, which are each " +"a floating point number. To extract these parts from a complex number *z*, " +"use ``z.real`` and ``z.imag``. (The standard library includes the additional " +"numeric types :mod:`fractions.Fraction`, for rationals, and :mod:`decimal." +"Decimal`, for floating-point numbers with user-definable precision.)" +msgstr "" +"Üç farklı sayısal tür vardır: :dfn:`integers`, :dfn:`floating point " +"numbers`, ve :dfn:`complex numbers`. Ayrıca, Booleanlar tam sayıların bir " +"alt türüdür. Tam sayıların kesinliği sınırsızdır. Gerçel sayılar " +"genellikle C dilinde :c:type:`double` kullanılarak uygulanır; programınızın " +"çalıştığı makine için gerçel sayıların kesinliği ve dahili gösterimi " +"hakkında bilgi :data:`sys.float_info` içinde mevcuttur. Karmaşık sayıların " +"her biri bir gerçel sayı olan gerçek ve sanal birer kısımları vardır. Bu " +"parçaları *z* karmaşık sayısından ayıklamak için ``z.real`` ve ``z.imag`` " +"kullanın. (Standart kütüphane, rasyonel sayılar için :mod:`fractions." +"Fraction` ve kullanıcı tarafından tanımlanabilen hassasiyete sahip gerçel " +"sayılar için :mod:`decimal.Decimal` ek sayısal türlerini içerir.)" #: library/stdtypes.rst:237 msgid "" -"Numbers are created by numeric literals or as the result of built-in functions and operators. " -"Unadorned integer literals (including hex, octal and binary numbers) yield integers. Numeric " -"literals containing a decimal point or an exponent sign yield floating point numbers. " -"Appending ``'j'`` or ``'J'`` to a numeric literal yields an imaginary number (a complex number " -"with a zero real part) which you can add to an integer or float to get a complex number with " -"real and imaginary parts." -msgstr "" -"Sayılar, sayısal değişmezlerle veya, gömülü fonksiyonlar ve operatörlerin sonucu olarak " -"oluşturulur. Sade tam sayı değişmezleri (onaltılı, sekizli ve ikili sayılar dahil) tam " -"sayıları verir. Ondalık nokta veya üs işareti içeren sayısal değişmezler, gerçel sayıları " -"verir. Sayısal bir değişmeze ``'j'`` veya ``'J'`` eklemek, tam veya gerçel bir sayıya " -"eklenince gerçek ve hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " +"Numbers are created by numeric literals or as the result of built-in " +"functions and operators. Unadorned integer literals (including hex, octal " +"and binary numbers) yield integers. Numeric literals containing a decimal " +"point or an exponent sign yield floating point numbers. Appending ``'j'`` " +"or ``'J'`` to a numeric literal yields an imaginary number (a complex number " +"with a zero real part) which you can add to an integer or float to get a " +"complex number with real and imaginary parts." +msgstr "" +"Sayılar, sayısal değişmezlerle veya, gömülü fonksiyonlar ve operatörlerin " +"sonucu olarak oluşturulur. Sade tam sayı değişmezleri (onaltılı, sekizli ve " +"ikili sayılar dahil) tam sayıları verir. Ondalık nokta veya üs işareti " +"içeren sayısal değişmezler, gerçel sayıları verir. Sayısal bir değişmeze " +"``'j'`` veya ``'J'`` eklemek, tam veya gerçel bir sayıya eklenince gerçek ve " +"hayali kısımları olan bir karmaşık sayı ortaya çıkaran, hayali bir sayı " "üretir." #: library/stdtypes.rst:262 #, fuzzy msgid "" -"Python fully supports mixed arithmetic: when a binary arithmetic operator has operands of " -"different numeric types, the operand with the \"narrower\" type is widened to that of the " -"other, where integer is narrower than floating point, which is narrower than complex. A " -"comparison between numbers of different types behaves as though the exact values of those " -"numbers were being compared. [2]_" -msgstr "" -"Python karma aritmetiği tam olarak destekler: herhangi bir ikili aritmetik operatörü farklı " -"sayısal türlerde işlenenlere sahip olduğunda, \"dar\" türe sahip işlenen, tam sayı karmaşık " -"sayıdan daha dar olan gerçel sayıdan daha dar olduğu diğerininkine genişletilir. Farklı " -"türlerdeki sayıların karşılaştırılması, bu sayıların tam değerleri karşılaştırılıyormuş gibi " +"Python fully supports mixed arithmetic: when a binary arithmetic operator " +"has operands of different numeric types, the operand with the \"narrower\" " +"type is widened to that of the other, where integer is narrower than " +"floating point, which is narrower than complex. A comparison between numbers " +"of different types behaves as though the exact values of those numbers were " +"being compared. [2]_" +msgstr "" +"Python karma aritmetiği tam olarak destekler: herhangi bir ikili aritmetik " +"operatörü farklı sayısal türlerde işlenenlere sahip olduğunda, \"dar\" türe " +"sahip işlenen, tam sayı karmaşık sayıdan daha dar olan gerçel sayıdan daha " +"dar olduğu diğerininkine genişletilir. Farklı türlerdeki sayıların " +"karşılaştırılması, bu sayıların tam değerleri karşılaştırılıyormuş gibi " "davranır. [2]_" #: library/stdtypes.rst:268 msgid "" -"The constructors :func:`int`, :func:`float`, and :func:`complex` can be used to produce " -"numbers of a specific type." +"The constructors :func:`int`, :func:`float`, and :func:`complex` can be used " +"to produce numbers of a specific type." msgstr "" -":func:`int`, :func:`float` ve :func:`complex` yapıcıları belirli bir türde sayılar üretmek " -"için kullanılabilir." +":func:`int`, :func:`float` ve :func:`complex` yapıcıları belirli bir türde " +"sayılar üretmek için kullanılabilir." #: library/stdtypes.rst:271 msgid "" -"All numeric types (except complex) support the following operations (for priorities of the " -"operations, see :ref:`operator-summary`):" +"All numeric types (except complex) support the following operations (for " +"priorities of the operations, see :ref:`operator-summary`):" msgstr "" -"Tüm sayısal türler (karmaşık sayılar hariç) aşağıdaki işlemleri destekler (işlemlerin " -"öncelikleri için bkz. :ref:`operator-summary`):" +"Tüm sayısal türler (karmaşık sayılar hariç) aşağıdaki işlemleri destekler " +"(işlemlerin öncelikleri için bkz. :ref:`operator-summary`):" #: library/stdtypes.rst:275 msgid "Full documentation" @@ -520,9 +559,12 @@ msgid "``complex(re, im)``" msgstr "``complex(re, im)``" #: library/stdtypes.rst:301 -msgid "a complex number with real part *re*, imaginary part *im*. *im* defaults to zero." +msgid "" +"a complex number with real part *re*, imaginary part *im*. *im* defaults to " +"zero." msgstr "" -"gerçek kısmı *re*, sanal kısmı *im* olan bir karmaşık sayı. *im* varsayılan olarak sıfırdır." +"gerçek kısmı *re*, sanal kısmı *im* olan bir karmaşık sayı. *im* varsayılan " +"olarak sıfırdır." #: library/stdtypes.rst:1110 library/stdtypes.rst:3568 msgid "\\(6)" @@ -575,69 +617,78 @@ msgstr "``x ** y``" #: library/stdtypes.rst:322 msgid "" -"Also referred to as integer division. The resultant value is a whole integer, though the " -"result's type is not necessarily int. The result is always rounded towards minus infinity: " -"``1//2`` is ``0``, ``(-1)//2`` is ``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``." +"Also referred to as integer division. The resultant value is a whole " +"integer, though the result's type is not necessarily int. The result is " +"always rounded towards minus infinity: ``1//2`` is ``0``, ``(-1)//2`` is " +"``-1``, ``1//(-2)`` is ``-1``, and ``(-1)//(-2)`` is ``0``." msgstr "" -"Tam sayılı bölümü olarak da adlandırılır. Elde edilen değer bir tam sayıdır, ancak sonucun " -"türü her zaman int olmayabilir. Sonuç her zaman eksi sonsuza yuvarlanır: ``1//2`` = ``0``, " -"``(-1)//2`` = ``-1``, ``1//(-2)`` = ``-1``, ve ``(-1)//(-2)`` = ``0``." +"Tam sayılı bölümü olarak da adlandırılır. Elde edilen değer bir tam " +"sayıdır, ancak sonucun türü her zaman int olmayabilir. Sonuç her zaman eksi " +"sonsuza yuvarlanır: ``1//2`` = ``0``, ``(-1)//2`` = ``-1``, ``1//(-2)`` = " +"``-1``, ve ``(-1)//(-2)`` = ``0``." #: library/stdtypes.rst:328 -msgid "Not for complex numbers. Instead convert to floats using :func:`abs` if appropriate." +msgid "" +"Not for complex numbers. Instead convert to floats using :func:`abs` if " +"appropriate." msgstr "" -"Karmaşık sayılar için değil. Bunun yerine uygunsa :func:`abs` kullanarak gerçel sayılara " -"dönüştürün." +"Karmaşık sayılar için değil. Bunun yerine uygunsa :func:`abs` kullanarak " +"gerçel sayılara dönüştürün." #: library/stdtypes.rst:340 msgid "" -"Conversion from floating point to integer may round or truncate as in C; see functions :func:" -"`math.floor` and :func:`math.ceil` for well-defined conversions." +"Conversion from floating point to integer may round or truncate as in C; see " +"functions :func:`math.floor` and :func:`math.ceil` for well-defined " +"conversions." msgstr "" -"Gerçel sayının (float) tam sayıya (integer) dönüştürülmesi, C dilinde de olduğu gibi sayının " -"yuvarlanmasına veya kırpılmasına sebep olabilir; iyi tanımlanmış dönüşümler için :func:`math." -"floor` ve :func:`math.ceil` fonksiyonlarına bakın." +"Gerçel sayının (float) tam sayıya (integer) dönüştürülmesi, C dilinde de " +"olduğu gibi sayının yuvarlanmasına veya kırpılmasına sebep olabilir; iyi " +"tanımlanmış dönüşümler için :func:`math.floor` ve :func:`math.ceil` " +"fonksiyonlarına bakın." #: library/stdtypes.rst:345 #, fuzzy msgid "" -"float also accepts the strings \"nan\" and \"inf\" with an optional prefix \"+\" or \"-\" for " -"Not a Number (NaN) and positive or negative infinity." +"float also accepts the strings \"nan\" and \"inf\" with an optional prefix " +"\"+\" or \"-\" for Not a Number (NaN) and positive or negative infinity." msgstr "" -"float ayrıca \"nan\" ve \"inf\" dizelerini, Sayı Değil ( Not a Number -> NaN) ve pozitif veya " -"negatif sonsuzluk için isteğe bağlı bir \"+\" veya \"-\" ön ekiyle kabul eder." +"float ayrıca \"nan\" ve \"inf\" dizelerini, Sayı Değil ( Not a Number -> " +"NaN) ve pozitif veya negatif sonsuzluk için isteğe bağlı bir \"+\" veya \"-" +"\" ön ekiyle kabul eder." #: library/stdtypes.rst:349 msgid "" -"Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for programming " -"languages." +"Python defines ``pow(0, 0)`` and ``0 ** 0`` to be ``1``, as is common for " +"programming languages." msgstr "" -"Python, diğer programlama dillerinde de olduğu gibi ``pow(0, 0)`` = ``1`` ve ``0 ** 0`` = " -"``1`` şeklinde tanımlar." +"Python, diğer programlama dillerinde de olduğu gibi ``pow(0, 0)`` = ``1`` ve " +"``0 ** 0`` = ``1`` şeklinde tanımlar." #: library/stdtypes.rst:353 msgid "" -"The numeric literals accepted include the digits ``0`` to ``9`` or any Unicode equivalent " -"(code points with the ``Nd`` property)." +"The numeric literals accepted include the digits ``0`` to ``9`` or any " +"Unicode equivalent (code points with the ``Nd`` property)." msgstr "" -"Kabul edilen sayısal değişmezler, ``0`` ile ``9`` arasındaki rakamları veya herhangi bir " -"Unicode eş değerini (\"Nd\" özelliğine sahip kod noktaları) içerir." +"Kabul edilen sayısal değişmezler, ``0`` ile ``9`` arasındaki rakamları veya " +"herhangi bir Unicode eş değerini (\"Nd\" özelliğine sahip kod noktaları) " +"içerir." #: library/stdtypes.rst:356 msgid "" -"See https://www.unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType.txt for a complete " -"list of code points with the ``Nd`` property." +"See https://www.unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType." +"txt for a complete list of code points with the ``Nd`` property." msgstr "" -"``Nd`` özelliğine sahip kod noktalarının tam listesi için https://www.unicode.org/" -"Public/13.0.0/ucd/extracted/DerivedNumericType.txt adresine bakın." +"``Nd`` özelliğine sahip kod noktalarının tam listesi için https://www." +"unicode.org/Public/13.0.0/ucd/extracted/DerivedNumericType.txt adresine " +"bakın." #: library/stdtypes.rst:360 msgid "" -"All :class:`numbers.Real` types (:class:`int` and :class:`float`) also include the following " -"operations:" +"All :class:`numbers.Real` types (:class:`int` and :class:`float`) also " +"include the following operations:" msgstr "" -"Tüm :class:`numbers.Real` türleri (:class:`int` ve :class:`float`) ayrıca aşağıdaki işlemleri " -"içerir:" +"Tüm :class:`numbers.Real` türleri (:class:`int` ve :class:`float`) ayrıca " +"aşağıdaki işlemleri içerir:" #: library/stdtypes.rst:366 msgid ":func:`math.trunc(\\ x) `" @@ -652,10 +703,12 @@ msgid ":func:`round(x[, n]) `" msgstr ":func:`round(x[, n]) `" #: library/stdtypes.rst:369 -msgid "*x* rounded to *n* digits, rounding half to even. If *n* is omitted, it defaults to 0." +msgid "" +"*x* rounded to *n* digits, rounding half to even. If *n* is omitted, it " +"defaults to 0." msgstr "" -"*x* *n* haneye yuvarlanır, yarıdan çifte yuvarlanır. *n* atlanırsa, *n* varsayılan olarak 0 " -"olur." +"*x* *n* haneye yuvarlanır, yarıdan çifte yuvarlanır. *n* atlanırsa, *n* " +"varsayılan olarak 0 olur." #: library/stdtypes.rst:373 msgid ":func:`math.floor(\\ x) `" @@ -674,8 +727,11 @@ msgid "the least :class:`~numbers.Integral` >= *x*" msgstr "en küçük :class:`~numbers.Integral` >= *x*" #: library/stdtypes.rst:380 -msgid "For additional numeric operations see the :mod:`math` and :mod:`cmath` modules." -msgstr "Ek sayısal işlemler için :mod:`math` ve :mod:`cmath` modüllerine bakın." +msgid "" +"For additional numeric operations see the :mod:`math` and :mod:`cmath` " +"modules." +msgstr "" +"Ek sayısal işlemler için :mod:`math` ve :mod:`cmath` modüllerine bakın." #: library/stdtypes.rst:389 msgid "Bitwise Operations on Integer Types" @@ -683,25 +739,29 @@ msgstr "Tam sayı Türlerinde Bit Düzeyinde İşlemler" #: library/stdtypes.rst:403 msgid "" -"Bitwise operations only make sense for integers. The result of bitwise operations is " -"calculated as though carried out in two's complement with an infinite number of sign bits." +"Bitwise operations only make sense for integers. The result of bitwise " +"operations is calculated as though carried out in two's complement with an " +"infinite number of sign bits." msgstr "" -"Bit düzeyinde işlemler yalnızca tam sayılar için anlamlıdır. Bit düzeyinde işlemlerin sonucu, " -"sonsuz sayıda işaret biti ile ikiye tümleyende gerçekleştiriliyormuş gibi hesaplanır." +"Bit düzeyinde işlemler yalnızca tam sayılar için anlamlıdır. Bit düzeyinde " +"işlemlerin sonucu, sonsuz sayıda işaret biti ile ikiye tümleyende " +"gerçekleştiriliyormuş gibi hesaplanır." #: library/stdtypes.rst:407 msgid "" -"The priorities of the binary bitwise operations are all lower than the numeric operations and " -"higher than the comparisons; the unary operation ``~`` has the same priority as the other " -"unary numeric operations (``+`` and ``-``)." +"The priorities of the binary bitwise operations are all lower than the " +"numeric operations and higher than the comparisons; the unary operation " +"``~`` has the same priority as the other unary numeric operations (``+`` and " +"``-``)." msgstr "" -"İkili bit düzeyinde işlemlerin öncelikleri, sayısal işlemlerden daha düşük ve " -"karşılaştırmalardan daha yüksektir; ``~`` tekli işlemidiğer tekli sayısal işlemlerle (``+`` ve " -"``-``) aynı önceliğe sahiptir." +"İkili bit düzeyinde işlemlerin öncelikleri, sayısal işlemlerden daha düşük " +"ve karşılaştırmalardan daha yüksektir; ``~`` tekli işlemidiğer tekli sayısal " +"işlemlerle (``+`` ve ``-``) aynı önceliğe sahiptir." #: library/stdtypes.rst:411 msgid "This table lists the bitwise operations sorted in ascending priority:" -msgstr "Bu tablo, artan önceliğe göre sıralanmış bit düzeyinde işlemleri listeler:" +msgstr "" +"Bu tablo, artan önceliğe göre sıralanmış bit düzeyinde işlemleri listeler:" #: library/stdtypes.rst:416 msgid "``x | y``" @@ -765,26 +825,34 @@ msgid "the bits of *x* inverted" msgstr "*x* 'in bitleri ters çevrildi" #: library/stdtypes.rst:435 -msgid "Negative shift counts are illegal and cause a :exc:`ValueError` to be raised." -msgstr "Negatif kaydırma sayıları geçersizdir ve :exc:`ValueError` hatasına sebep olur." +msgid "" +"Negative shift counts are illegal and cause a :exc:`ValueError` to be raised." +msgstr "" +"Negatif kaydırma sayıları geçersizdir ve :exc:`ValueError` hatasına sebep " +"olur." #: library/stdtypes.rst:438 -msgid "A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``." +msgid "" +"A left shift by *n* bits is equivalent to multiplication by ``pow(2, n)``." msgstr "*n* bitlik sola kaydırma, ``pow(2, n)`` ile çarpmaya eş değerdir." #: library/stdtypes.rst:441 -msgid "A right shift by *n* bits is equivalent to floor division by ``pow(2, n)``." -msgstr "*n* bitlik sağa kaydırma, ``pow(2, n)`` ile kat bölümü işlemine eş değerdir." +msgid "" +"A right shift by *n* bits is equivalent to floor division by ``pow(2, n)``." +msgstr "" +"*n* bitlik sağa kaydırma, ``pow(2, n)`` ile kat bölümü işlemine eş değerdir." #: library/stdtypes.rst:444 msgid "" -"Performing these calculations with at least one extra sign extension bit in a finite two's " -"complement representation (a working bit-width of ``1 + max(x.bit_length(), y.bit_length())`` " -"or more) is sufficient to get the same result as if there were an infinite number of sign bits." +"Performing these calculations with at least one extra sign extension bit in " +"a finite two's complement representation (a working bit-width of ``1 + max(x." +"bit_length(), y.bit_length())`` or more) is sufficient to get the same " +"result as if there were an infinite number of sign bits." msgstr "" -"Bu hesaplamaları, sonlu ikinin tümleyen temsilinde en az bir ekstra işaret uzatma biti ile " -"yapmak ( ``1 + max(x.bit_length(), y.bit_length())`` veya daha fazla çalışan bit genişliği), " -"sonsuz sayıda işaret biti varmış gibi aynı sonucu elde etmek için yeterlidir." +"Bu hesaplamaları, sonlu ikinin tümleyen temsilinde en az bir ekstra işaret " +"uzatma biti ile yapmak ( ``1 + max(x.bit_length(), y.bit_length())`` veya " +"daha fazla çalışan bit genişliği), sonsuz sayıda işaret biti varmış gibi " +"aynı sonucu elde etmek için yeterlidir." #: library/stdtypes.rst:451 msgid "Additional Methods on Integer Types" @@ -792,32 +860,34 @@ msgstr "Integer (Tam sayı) Türlerinde Ek Metotlar" #: library/stdtypes.rst:453 msgid "" -"The int type implements the :class:`numbers.Integral` :term:`abstract base class`. In " -"addition, it provides a few more methods:" +"The int type implements the :class:`numbers.Integral` :term:`abstract base " +"class`. In addition, it provides a few more methods:" msgstr "" -"Int türü, :class:`numbers.Integral` :term:`abstract base class` 'ı uygular. Ek olarak, birkaç " -"metot daha sağlar:" +"Int türü, :class:`numbers.Integral` :term:`abstract base class` 'ı uygular. " +"Ek olarak, birkaç metot daha sağlar:" #: library/stdtypes.rst:458 msgid "" -"Return the number of bits necessary to represent an integer in binary, excluding the sign and " -"leading zeros::" +"Return the number of bits necessary to represent an integer in binary, " +"excluding the sign and leading zeros::" msgstr "" -"İşaret ve baştaki sıfırlar hariç, ikili sistemde bir tam sayıyı (integer) temsil etmek için " -"gereken bit sayısını döndürür::" +"İşaret ve baştaki sıfırlar hariç, ikili sistemde bir tam sayıyı (integer) " +"temsil etmek için gereken bit sayısını döndürür::" #: library/stdtypes.rst:467 #, fuzzy msgid "" -"More precisely, if ``x`` is nonzero, then ``x.bit_length()`` is the unique positive integer " -"``k`` such that ``2**(k-1) <= abs(x) < 2**k``. Equivalently, when ``abs(x)`` is small enough " -"to have a correctly rounded logarithm, then ``k = 1 + int(log(abs(x), 2))``. If ``x`` is zero, " -"then ``x.bit_length()`` returns ``0``." +"More precisely, if ``x`` is nonzero, then ``x.bit_length()`` is the unique " +"positive integer ``k`` such that ``2**(k-1) <= abs(x) < 2**k``. " +"Equivalently, when ``abs(x)`` is small enough to have a correctly rounded " +"logarithm, then ``k = 1 + int(log(abs(x), 2))``. If ``x`` is zero, then ``x." +"bit_length()`` returns ``0``." msgstr "" -"Daha doğrusu, ``x`` sıfırdan farklıysa, ``x.bit_length()``, ``2**(k-1) <= abs(x) < 2**k`` " -"olacak şekilde benzersiz ``k`` pozitif tam sayıdır. Aynı şekilde, ``abs(x)`` doğru olarak " -"yuvarlatılmış bir logaritmaya sahip olacak kadar küçük olduğunda, ``k = 1 + int(log(abs(x), " -"2))`` olur. ``x`` sıfır ise, ``x.bit_length()``, ``0`` döndürür." +"Daha doğrusu, ``x`` sıfırdan farklıysa, ``x.bit_length()``, ``2**(k-1) <= " +"abs(x) < 2**k`` olacak şekilde benzersiz ``k`` pozitif tam sayıdır. Aynı " +"şekilde, ``abs(x)`` doğru olarak yuvarlatılmış bir logaritmaya sahip olacak " +"kadar küçük olduğunda, ``k = 1 + int(log(abs(x), 2))`` olur. ``x`` sıfır " +"ise, ``x.bit_length()``, ``0`` döndürür." #: library/stdtypes.rst:496 msgid "Equivalent to::" @@ -825,11 +895,11 @@ msgstr "Eşittir::" #: library/stdtypes.rst:484 msgid "" -"Return the number of ones in the binary representation of the absolute value of the integer. " -"This is also known as the population count. Example::" +"Return the number of ones in the binary representation of the absolute value " +"of the integer. This is also known as the population count. Example::" msgstr "" -"Tam sayının mutlak değerinin ikili gösterimindeki birlerin sayısını döndürün. Buna nüfus " -"sayımı da denir. Örneğin::" +"Tam sayının mutlak değerinin ikili gösterimindeki birlerin sayısını " +"döndürün. Buna nüfus sayımı da denir. Örneğin::" #: library/stdtypes.rst:505 msgid "Return an array of bytes representing an integer." @@ -837,34 +907,38 @@ msgstr "Bir tam sayıyı temsil eden bir bayt dizisi döndürür." #: library/stdtypes.rst:517 msgid "" -"The integer is represented using *length* bytes. An :exc:`OverflowError` is raised if the " -"integer is not representable with the given number of bytes." +"The integer is represented using *length* bytes. An :exc:`OverflowError` is " +"raised if the integer is not representable with the given number of bytes." msgstr "" -"Tam sayı, *length* bayt kullanılarak temsil edilir. Tam sayı verilen bayt sayısıyla " -"gösterilemezse :exc:`OverflowError` hatası ortaya çıkar." +"Tam sayı, *length* bayt kullanılarak temsil edilir. Tam sayı verilen bayt " +"sayısıyla gösterilemezse :exc:`OverflowError` hatası ortaya çıkar." #: library/stdtypes.rst:553 msgid "" -"The *byteorder* argument determines the byte order used to represent the integer. If " -"*byteorder* is ``\"big\"``, the most significant byte is at the beginning of the byte array. " -"If *byteorder* is ``\"little\"``, the most significant byte is at the end of the byte array. " -"To request the native byte order of the host system, use :data:`sys.byteorder` as the byte " -"order value." +"The *byteorder* argument determines the byte order used to represent the " +"integer. If *byteorder* is ``\"big\"``, the most significant byte is at the " +"beginning of the byte array. If *byteorder* is ``\"little\"``, the most " +"significant byte is at the end of the byte array. To request the native " +"byte order of the host system, use :data:`sys.byteorder` as the byte order " +"value." msgstr "" -"*byteorder* argümanı, tam sayıyı temsil etmek için kullanılan bayt sırasını belirler. " -"*byteorder* ``\"big\"`` ise, en önemli bayt, bayt dizisinin başındadır. *byteorder* ``\"little" -"\"`` ise, en önemli bayt, bayt dizisinin sonundadır. Ana sistemin yerel bayt sırasını istemek " -"için bayt sırası değeri olarak :data:`sys.byteorder` kullanın." +"*byteorder* argümanı, tam sayıyı temsil etmek için kullanılan bayt sırasını " +"belirler. *byteorder* ``\"big\"`` ise, en önemli bayt, bayt dizisinin " +"başındadır. *byteorder* ``\"little\"`` ise, en önemli bayt, bayt dizisinin " +"sonundadır. Ana sistemin yerel bayt sırasını istemek için bayt sırası değeri " +"olarak :data:`sys.byteorder` kullanın." #: library/stdtypes.rst:528 msgid "" -"The *signed* argument determines whether two's complement is used to represent the integer. " -"If *signed* is ``False`` and a negative integer is given, an :exc:`OverflowError` is raised. " -"The default value for *signed* is ``False``." +"The *signed* argument determines whether two's complement is used to " +"represent the integer. If *signed* is ``False`` and a negative integer is " +"given, an :exc:`OverflowError` is raised. The default value for *signed* is " +"``False``." msgstr "" -"*signed* argümanı, tam sayıyı temsil etmek için ikinin tümleyeninin kullanılıp " -"kullanılmayacağını belirler. *signed* ``False`` ise ve negatif bir tam sayı verilirse, bir :" -"exc:`OverflowError` hatası ortaya çıkar. *signed* için varsayılan değer ``False`` şeklindedir." +"*signed* argümanı, tam sayıyı temsil etmek için ikinin tümleyeninin " +"kullanılıp kullanılmayacağını belirler. *signed* ``False`` ise ve negatif " +"bir tam sayı verilirse, bir :exc:`OverflowError` hatası ortaya çıkar. " +"*signed* için varsayılan değer ``False`` şeklindedir." #: library/stdtypes.rst:537 msgid "Return the integer represented by the given array of bytes." @@ -873,25 +947,30 @@ msgstr "Verilen bayt dizisi tarafından temsil edilen tam sayıyı döndürür." #: library/stdtypes.rst:550 #, fuzzy msgid "" -"The argument *bytes* must either be a :term:`bytes-like object` or an iterable producing bytes." +"The argument *bytes* must either be a :term:`bytes-like object` or an " +"iterable producing bytes." msgstr "" -"*bytes* argümanı ya bir :term:`bytes-like object` ya da yinelenebilir üreten bayt olabilir." +"*bytes* argümanı ya bir :term:`bytes-like object` ya da yinelenebilir üreten " +"bayt olabilir." #: library/stdtypes.rst:560 msgid "" -"The *signed* argument indicates whether two's complement is used to represent the integer." +"The *signed* argument indicates whether two's complement is used to " +"represent the integer." msgstr "" -"*signed* argümanı, tam sayıyı temsil etmek için ikinin tümleyeninin kullanılıp " -"kullanılmadığını gösterir." +"*signed* argümanı, tam sayıyı temsil etmek için ikinin tümleyeninin " +"kullanılıp kullanılmadığını gösterir." #: library/stdtypes.rst:567 msgid "" -"Return a pair of integers whose ratio is exactly equal to the original integer and with a " -"positive denominator. The integer ratio of integers (whole numbers) is always the integer as " -"the numerator and ``1`` as the denominator." +"Return a pair of integers whose ratio is exactly equal to the original " +"integer and with a positive denominator. The integer ratio of integers " +"(whole numbers) is always the integer as the numerator and ``1`` as the " +"denominator." msgstr "" -"Oranı, orijinal tam sayıya tam olarak eşit ve pozitif bir paydaya sahip bir tam sayı çifti " -"döndürür. Integerlerin tam sayı oranı her zaman pay olarak tam sayı ve payda olarak ``1``dir." +"Oranı, orijinal tam sayıya tam olarak eşit ve pozitif bir paydaya sahip bir " +"tam sayı çifti döndürür. Integerlerin tam sayı oranı her zaman pay olarak " +"tam sayı ve payda olarak ``1``dir." #: library/stdtypes.rst:575 msgid "Additional Methods on Float" @@ -899,65 +978,72 @@ msgstr "Gerçel Sayılarda Ek Metotlar" #: library/stdtypes.rst:577 msgid "" -"The float type implements the :class:`numbers.Real` :term:`abstract base class`. float also " -"has the following additional methods." +"The float type implements the :class:`numbers.Real` :term:`abstract base " +"class`. float also has the following additional methods." msgstr "" -"Float türü, :class:`numbers.Real` :term:`abstract base class` 'ı uygular. Float ayrıca " -"aşağıdaki ek metotlara sahiptir." +"Float türü, :class:`numbers.Real` :term:`abstract base class` 'ı uygular. " +"Float ayrıca aşağıdaki ek metotlara sahiptir." #: library/stdtypes.rst:582 msgid "" -"Return a pair of integers whose ratio is exactly equal to the original float and with a " -"positive denominator. Raises :exc:`OverflowError` on infinities and a :exc:`ValueError` on " -"NaNs." +"Return a pair of integers whose ratio is exactly equal to the original float " +"and with a positive denominator. Raises :exc:`OverflowError` on infinities " +"and a :exc:`ValueError` on NaNs." msgstr "" -"Oranı tam olarak orijinal gerçel sayıya eşit ve pozitif bir paydaya sahip bir çift tam sayı " -"döndürür. Sonsuzluklarda :exc `OverflowError` ve NaN'lerde (SayıDeğil) :exc:`ValueError` " -"hataları ortaya çıkar." +"Oranı tam olarak orijinal gerçel sayıya eşit ve pozitif bir paydaya sahip " +"bir çift tam sayı döndürür. Sonsuzluklarda :exc `OverflowError` ve NaN'lerde " +"(SayıDeğil) :exc:`ValueError` hataları ortaya çıkar." #: library/stdtypes.rst:589 msgid "" -"Return ``True`` if the float instance is finite with integral value, and ``False`` otherwise::" -msgstr "Float örneği integral değeriyle sonluysa ``True``, aksi takdirde ``False`` döndürür::" +"Return ``True`` if the float instance is finite with integral value, and " +"``False`` otherwise::" +msgstr "" +"Float örneği integral değeriyle sonluysa ``True``, aksi takdirde ``False`` " +"döndürür::" #: library/stdtypes.rst:597 msgid "" -"Two methods support conversion to and from hexadecimal strings. Since Python's floats are " -"stored internally as binary numbers, converting a float to or from a *decimal* string usually " -"involves a small rounding error. In contrast, hexadecimal strings allow exact representation " -"and specification of floating-point numbers. This can be useful when debugging, and in " +"Two methods support conversion to and from hexadecimal strings. Since " +"Python's floats are stored internally as binary numbers, converting a float " +"to or from a *decimal* string usually involves a small rounding error. In " +"contrast, hexadecimal strings allow exact representation and specification " +"of floating-point numbers. This can be useful when debugging, and in " "numerical work." msgstr "" -"İki yöntem, onaltılık dizelere dönüştürmeyi destekler. Python'un floatları dahili olarak ikili " -"sayılar olarak depolandığından, bir kayan noktayı *decimal* (ondalık) dizgeye dönüştürmek veya " -"bu karakter dizisinden dönüştürmek genellikle küçük bir yuvarlama hatası içerir. Buna " -"karşılık, onaltılık diziler, gerçel sayıların tam olarak gösterilmesine ve belirtilmesine izin " -"verir. Bu, hata ayıklama sırasında ve sayısal çalışmalarda yararlı olabilir." +"İki yöntem, onaltılık dizelere dönüştürmeyi destekler. Python'un floatları " +"dahili olarak ikili sayılar olarak depolandığından, bir kayan noktayı " +"*decimal* (ondalık) dizgeye dönüştürmek veya bu karakter dizisinden " +"dönüştürmek genellikle küçük bir yuvarlama hatası içerir. Buna karşılık, " +"onaltılık diziler, gerçel sayıların tam olarak gösterilmesine ve " +"belirtilmesine izin verir. Bu, hata ayıklama sırasında ve sayısal " +"çalışmalarda yararlı olabilir." #: library/stdtypes.rst:608 msgid "" -"Return a representation of a floating-point number as a hexadecimal string. For finite " -"floating-point numbers, this representation will always include a leading ``0x`` and a " -"trailing ``p`` and exponent." +"Return a representation of a floating-point number as a hexadecimal string. " +"For finite floating-point numbers, this representation will always include a " +"leading ``0x`` and a trailing ``p`` and exponent." msgstr "" -"Bir gerçel sayının temsilini, onaltılık bir dize olarak döndürür. Sonlu gerçel sayılar için, " -"bu gösterim her zaman başında bir ``0x`` ve sonunda bir ``p`` ve üs içerecektir." +"Bir gerçel sayının temsilini, onaltılık bir dize olarak döndürür. Sonlu " +"gerçel sayılar için, bu gösterim her zaman başında bir ``0x`` ve sonunda bir " +"``p`` ve üs içerecektir." #: library/stdtypes.rst:616 msgid "" -"Class method to return the float represented by a hexadecimal string *s*. The string *s* may " -"have leading and trailing whitespace." +"Class method to return the float represented by a hexadecimal string *s*. " +"The string *s* may have leading and trailing whitespace." msgstr "" -"Gerçel sayıyı temsil eden bir onaltılık dize *s*'yi döndüren için sınıf (class) metodu. *s* " -"dizesinin başında ve sonunda boşluk olabilir." +"Gerçel sayıyı temsil eden bir onaltılık dize *s*'yi döndüren için sınıf " +"(class) metodu. *s* dizesinin başında ve sonunda boşluk olabilir." #: library/stdtypes.rst:621 msgid "" -"Note that :meth:`float.hex` is an instance method, while :meth:`float.fromhex` is a class " -"method." +"Note that :meth:`float.hex` is an instance method, while :meth:`float." +"fromhex` is a class method." msgstr "" -":meth:`float.hex` 'in bir örnek (instance) metodu olduğunu, :meth:`float.fromhex` 'in ise bir " -"sınıf (class) metodu olduğunu unutmayın." +":meth:`float.hex` 'in bir örnek (instance) metodu olduğunu, :meth:`float." +"fromhex` 'in ise bir sınıf (class) metodu olduğunu unutmayın." #: library/stdtypes.rst:624 msgid "A hexadecimal string takes the form::" @@ -966,42 +1052,47 @@ msgstr "Onaltılık bir dize şu biçimi alır::" #: library/stdtypes.rst:628 #, fuzzy msgid "" -"where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and ``fraction`` are " -"strings of hexadecimal digits, and ``exponent`` is a decimal integer with an optional leading " -"sign. Case is not significant, and there must be at least one hexadecimal digit in either the " -"integer or the fraction. This syntax is similar to the syntax specified in section 6.4.4.2 of " -"the C99 standard, and also to the syntax used in Java 1.5 onwards. In particular, the output " -"of :meth:`float.hex` is usable as a hexadecimal floating-point literal in C or Java code, and " -"hexadecimal strings produced by C's ``%a`` format character or Java's ``Double.toHexString`` " -"are accepted by :meth:`float.fromhex`." -msgstr "" -"burada opsiyonel ``işaret``, ``+`` veya ``-`` olabilir; ``tam sayı`` ve ``kesir`` onaltılı " -"basamaklı dizelerdir; ``üs`` opsiyonel ön işaretle birlikte ondalık tam sayıdır. Büyük/küçük " -"harf önemli değildir ve tam sayı veya kesirde en az bir onaltılık basamak olmalıdır. Bu söz " -"dizimi, C99 standardının 6.4.4.2 bölümünde belirtilen söz dizimine ve ayrıca Java 1.5'ten " -"itibaren kullanılan söz dizimine benzer. Özellikle, :meth:`float.hex` 'in çıktısı, C veya " -"Java kodunda bir onaltılık gerçel değişmezi olarak kullanılabilir ve C'nin ``%a`` biçim " -"karakteri veya Java'nın ``Double.toHexString`` 'i tarafından üretilen onaltılık dizeler :meth:" -"`float.fromhex` tarafından kabul edilir." +"where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and " +"``fraction`` are strings of hexadecimal digits, and ``exponent`` is a " +"decimal integer with an optional leading sign. Case is not significant, and " +"there must be at least one hexadecimal digit in either the integer or the " +"fraction. This syntax is similar to the syntax specified in section 6.4.4.2 " +"of the C99 standard, and also to the syntax used in Java 1.5 onwards. In " +"particular, the output of :meth:`float.hex` is usable as a hexadecimal " +"floating-point literal in C or Java code, and hexadecimal strings produced " +"by C's ``%a`` format character or Java's ``Double.toHexString`` are accepted " +"by :meth:`float.fromhex`." +msgstr "" +"burada opsiyonel ``işaret``, ``+`` veya ``-`` olabilir; ``tam sayı`` ve " +"``kesir`` onaltılı basamaklı dizelerdir; ``üs`` opsiyonel ön işaretle " +"birlikte ondalık tam sayıdır. Büyük/küçük harf önemli değildir ve tam sayı " +"veya kesirde en az bir onaltılık basamak olmalıdır. Bu söz dizimi, C99 " +"standardının 6.4.4.2 bölümünde belirtilen söz dizimine ve ayrıca Java " +"1.5'ten itibaren kullanılan söz dizimine benzer. Özellikle, :meth:`float." +"hex` 'in çıktısı, C veya Java kodunda bir onaltılık gerçel değişmezi olarak " +"kullanılabilir ve C'nin ``%a`` biçim karakteri veya Java'nın ``Double." +"toHexString`` 'i tarafından üretilen onaltılık dizeler :meth:`float.fromhex` " +"tarafından kabul edilir." #: library/stdtypes.rst:641 msgid "" -"Note that the exponent is written in decimal rather than hexadecimal, and that it gives the " -"power of 2 by which to multiply the coefficient. For example, the hexadecimal string ``0x3." -"a7p10`` represents the floating-point number ``(3 + 10./16 + 7./16**2) * 2.0**10``, or " -"``3740.0``::" +"Note that the exponent is written in decimal rather than hexadecimal, and " +"that it gives the power of 2 by which to multiply the coefficient. For " +"example, the hexadecimal string ``0x3.a7p10`` represents the floating-point " +"number ``(3 + 10./16 + 7./16**2) * 2.0**10``, or ``3740.0``::" msgstr "" -"Üssün onaltılık değil ondalık olarak yazıldığına ve katsayıyı çarpmak için 2'nin gücünü " -"verdiğine dikkat edin. Örneğin, ``0x3.a7p10`` onaltılık dizesi, ``(3 + 10./16 + 7./16**2) * " -"2.0**10`` veya ``3740.0`` gerçel sayısını temsil eder::" +"Üssün onaltılık değil ondalık olarak yazıldığına ve katsayıyı çarpmak için " +"2'nin gücünü verdiğine dikkat edin. Örneğin, ``0x3.a7p10`` onaltılık dizesi, " +"``(3 + 10./16 + 7./16**2) * 2.0**10`` veya ``3740.0`` gerçel sayısını temsil " +"eder::" #: library/stdtypes.rst:651 msgid "" -"Applying the reverse conversion to ``3740.0`` gives a different hexadecimal string " -"representing the same number::" +"Applying the reverse conversion to ``3740.0`` gives a different hexadecimal " +"string representing the same number::" msgstr "" -"``3740.0`` 'a ters dönüştürme uygulamak, aynı sayıyı temsil eden farklı bir onaltılık dize " -"verir::" +"``3740.0`` 'a ters dönüştürme uygulamak, aynı sayıyı temsil eden farklı bir " +"onaltılık dize verir::" #: library/stdtypes.rst:661 msgid "Hashing of numeric types" @@ -1009,33 +1100,37 @@ msgstr "Sayısal türlerin hashlemesi" #: library/stdtypes.rst:663 msgid "" -"For numbers ``x`` and ``y``, possibly of different types, it's a requirement that ``hash(x) == " -"hash(y)`` whenever ``x == y`` (see the :meth:`~object.__hash__` method documentation for more " -"details). For ease of implementation and efficiency across a variety of numeric types " -"(including :class:`int`, :class:`float`, :class:`decimal.Decimal` and :class:`fractions." -"Fraction`) Python's hash for numeric types is based on a single mathematical function that's " -"defined for any rational number, and hence applies to all instances of :class:`int` and :class:" -"`fractions.Fraction`, and all finite instances of :class:`float` and :class:`decimal." -"Decimal`. Essentially, this function is given by reduction modulo ``P`` for a fixed prime " -"``P``. The value of ``P`` is made available to Python as the :attr:`modulus` attribute of :" -"data:`sys.hash_info`." -msgstr "" -"Muhtemelen farklı türlerdeki ``x`` ve ``y`` sayıları için, ``x == y`` olduğunda ``hash(x) == " -"hash(y)`` olması bir gerekliliktir (bkz. :meth:`~object.__hash__`). Çeşitli sayısal türler " -"arasında uygulama kolaylığı ve verimlilik için (:class:`int`, :class:`float`, :class:`decimal." -"Decimal` ve :class:`fractions.Fraction` dahil) Python'un sayısal türler için ``hash`` 'i, " -"herhangi bir rasyonel sayı için tanımlanmış tek bir matematiksel fonksiyona dayanır ve bu " -"nedenle :class:`int` ve :class:`fractions` 'ın tüm örnekleri için geçerlidir. Esasen, bu " -"fonksiyon sabit bir asal sayı olan ``P`` için ``reduction modulo`` ``P`` ile verilir. ``P`` " -"değeri Python'a :data:`sys.hash_info` 'nun :attr:`modulus` özelliği olarak sunulur." +"For numbers ``x`` and ``y``, possibly of different types, it's a requirement " +"that ``hash(x) == hash(y)`` whenever ``x == y`` (see the :meth:`~object." +"__hash__` method documentation for more details). For ease of " +"implementation and efficiency across a variety of numeric types (including :" +"class:`int`, :class:`float`, :class:`decimal.Decimal` and :class:`fractions." +"Fraction`) Python's hash for numeric types is based on a single mathematical " +"function that's defined for any rational number, and hence applies to all " +"instances of :class:`int` and :class:`fractions.Fraction`, and all finite " +"instances of :class:`float` and :class:`decimal.Decimal`. Essentially, this " +"function is given by reduction modulo ``P`` for a fixed prime ``P``. The " +"value of ``P`` is made available to Python as the :attr:`modulus` attribute " +"of :data:`sys.hash_info`." +msgstr "" +"Muhtemelen farklı türlerdeki ``x`` ve ``y`` sayıları için, ``x == y`` " +"olduğunda ``hash(x) == hash(y)`` olması bir gerekliliktir (bkz. :meth:" +"`~object.__hash__`). Çeşitli sayısal türler arasında uygulama kolaylığı ve " +"verimlilik için (:class:`int`, :class:`float`, :class:`decimal.Decimal` ve :" +"class:`fractions.Fraction` dahil) Python'un sayısal türler için ``hash`` 'i, " +"herhangi bir rasyonel sayı için tanımlanmış tek bir matematiksel fonksiyona " +"dayanır ve bu nedenle :class:`int` ve :class:`fractions` 'ın tüm örnekleri " +"için geçerlidir. Esasen, bu fonksiyon sabit bir asal sayı olan ``P`` için " +"``reduction modulo`` ``P`` ile verilir. ``P`` değeri Python'a :data:`sys." +"hash_info` 'nun :attr:`modulus` özelliği olarak sunulur." #: library/stdtypes.rst:678 msgid "" -"Currently, the prime used is ``P = 2**31 - 1`` on machines with 32-bit C longs and ``P = 2**61 " -"- 1`` on machines with 64-bit C longs." +"Currently, the prime used is ``P = 2**31 - 1`` on machines with 32-bit C " +"longs and ``P = 2**61 - 1`` on machines with 64-bit C longs." msgstr "" -"Şu anda kullanılan asal sayı, 32 bit C uzunluğundaki makinelerde ``P = 2**31 - 1`` ve 64-bit C " -"uzunluğundaki makinelerde ``P = 2**61 - 1`` şeklindedir." +"Şu anda kullanılan asal sayı, 32 bit C uzunluğundaki makinelerde ``P = 2**31 " +"- 1`` ve 64-bit C uzunluğundaki makinelerde ``P = 2**61 - 1`` şeklindedir." #: library/stdtypes.rst:681 msgid "Here are the rules in detail:" @@ -1043,61 +1138,68 @@ msgstr "İşte ayrıntılı kurallar:" #: library/stdtypes.rst:683 msgid "" -"If ``x = m / n`` is a nonnegative rational number and ``n`` is not divisible by ``P``, define " -"``hash(x)`` as ``m * invmod(n, P) % P``, where ``invmod(n, P)`` gives the inverse of ``n`` " -"modulo ``P``." +"If ``x = m / n`` is a nonnegative rational number and ``n`` is not divisible " +"by ``P``, define ``hash(x)`` as ``m * invmod(n, P) % P``, where ``invmod(n, " +"P)`` gives the inverse of ``n`` modulo ``P``." msgstr "" -"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n`` ``P`` ile bölünemiyorsa, " -"``hash(x)`` 'i ``m * invmod(n, P) % P`` olarak tanımlayın, bu durumda ``invmod(n, P)``, ``n`` " -"modül ``P`` 'nin tersini verir." +"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n`` ``P`` ile " +"bölünemiyorsa, ``hash(x)`` 'i ``m * invmod(n, P) % P`` olarak tanımlayın, bu " +"durumda ``invmod(n, P)``, ``n`` modül ``P`` 'nin tersini verir." #: library/stdtypes.rst:687 msgid "" -"If ``x = m / n`` is a nonnegative rational number and ``n`` is divisible by ``P`` (but ``m`` " -"is not) then ``n`` has no inverse modulo ``P`` and the rule above doesn't apply; in this case " -"define ``hash(x)`` to be the constant value ``sys.hash_info.inf``." +"If ``x = m / n`` is a nonnegative rational number and ``n`` is divisible by " +"``P`` (but ``m`` is not) then ``n`` has no inverse modulo ``P`` and the rule " +"above doesn't apply; in this case define ``hash(x)`` to be the constant " +"value ``sys.hash_info.inf``." msgstr "" -"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n``, ``P`` ile bölünebiliyorsa (ancak " -"``m`` değildir), o zaman ``n`` 'nin ``P`` şeklinde ters modülü yoktur ve yukarıdaki kural " -"geçerli değildir; bu durumda ``hash(x)`` i ``sys.hash_info.inf`` olarak tanımlayın." +"``x = m / n`` negatif olmayan bir rasyonel sayıysa ve ``n``, ``P`` ile " +"bölünebiliyorsa (ancak ``m`` değildir), o zaman ``n`` 'nin ``P`` şeklinde " +"ters modülü yoktur ve yukarıdaki kural geçerli değildir; bu durumda " +"``hash(x)`` i ``sys.hash_info.inf`` olarak tanımlayın." #: library/stdtypes.rst:692 msgid "" -"If ``x = m / n`` is a negative rational number define ``hash(x)`` as ``-hash(-x)``. If the " -"resulting hash is ``-1``, replace it with ``-2``." +"If ``x = m / n`` is a negative rational number define ``hash(x)`` as ``-" +"hash(-x)``. If the resulting hash is ``-1``, replace it with ``-2``." msgstr "" -"``x = m / n`` negatif bir rasyonel sayıysa, ``hash(x)`` 'i ``-hash(-x)`` olarak tanımlayın. " -"Elde edilen ``hash`` ``-1`` ise, bunu ``-2`` ile değiştirin." +"``x = m / n`` negatif bir rasyonel sayıysa, ``hash(x)`` 'i ``-hash(-x)`` " +"olarak tanımlayın. Elde edilen ``hash`` ``-1`` ise, bunu ``-2`` ile " +"değiştirin." #: library/stdtypes.rst:696 msgid "" -"The particular values ``sys.hash_info.inf`` and ``-sys.hash_info.inf`` are used as hash values " -"for positive infinity or negative infinity (respectively)." +"The particular values ``sys.hash_info.inf`` and ``-sys.hash_info.inf`` are " +"used as hash values for positive infinity or negative infinity " +"(respectively)." msgstr "" -"``sys.hash_info.inf`` ve ``-sys.hash_info.inf``, pozitif sonsuz veya negatif sonsuz " -"(sırasıyla) için ``hash`` değerleri olarak kullanılır." +"``sys.hash_info.inf`` ve ``-sys.hash_info.inf``, pozitif sonsuz veya negatif " +"sonsuz (sırasıyla) için ``hash`` değerleri olarak kullanılır." #: library/stdtypes.rst:700 #, fuzzy msgid "" -"For a :class:`complex` number ``z``, the hash values of the real and imaginary parts are " -"combined by computing ``hash(z.real) + sys.hash_info.imag * hash(z.imag)``, reduced modulo " -"``2**sys.hash_info.width`` so that it lies in ``range(-2**(sys.hash_info.width - 1), 2**(sys." -"hash_info.width - 1))``. Again, if the result is ``-1``, it's replaced with ``-2``." +"For a :class:`complex` number ``z``, the hash values of the real and " +"imaginary parts are combined by computing ``hash(z.real) + sys.hash_info." +"imag * hash(z.imag)``, reduced modulo ``2**sys.hash_info.width`` so that it " +"lies in ``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - " +"1))``. Again, if the result is ``-1``, it's replaced with ``-2``." msgstr "" -"Bir :class:`complex` sayı ``z`` için, gerçek ve sanal parçaların ```hash`` değerleri, ``hash(z." -"real) + sys.hash_info.imag * hash(z.imag)`` , ``reduced modulo`` ``2**sys.hash_info.width`` " -"hesaplanarak birleştirilir, böylece ``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info." -"width - 1))`` 'de bulunur. Yine sonuç ``-1`` ise, ``-2`` ile değiştirilir." +"Bir :class:`complex` sayı ``z`` için, gerçek ve sanal parçaların ```hash`` " +"değerleri, ``hash(z.real) + sys.hash_info.imag * hash(z.imag)`` , ``reduced " +"modulo`` ``2**sys.hash_info.width`` hesaplanarak birleştirilir, böylece " +"``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - 1))`` 'de " +"bulunur. Yine sonuç ``-1`` ise, ``-2`` ile değiştirilir." #: library/stdtypes.rst:708 msgid "" -"To clarify the above rules, here's some example Python code, equivalent to the built-in hash, " -"for computing the hash of a rational number, :class:`float`, or :class:`complex`::" +"To clarify the above rules, here's some example Python code, equivalent to " +"the built-in hash, for computing the hash of a rational number, :class:" +"`float`, or :class:`complex`::" msgstr "" -"Yukarıdaki kuralları açıklığa kavuşturmak için, :class:`float` veya :class:`complex` olan " -"rasyonel bir sayının ``hash`` 'ini hesaplamak için gömülü ``hash`` 'e eş değer örnek Python " -"kodu::" +"Yukarıdaki kuralları açıklığa kavuşturmak için, :class:`float` veya :class:" +"`complex` olan rasyonel bir sayının ``hash`` 'ini hesaplamak için gömülü " +"``hash`` 'e eş değer örnek Python kodu::" #: library/stdtypes.rst:763 msgid "Iterator Types" @@ -1105,85 +1207,98 @@ msgstr "Yineleyici Türleri" #: library/stdtypes.rst:771 msgid "" -"Python supports a concept of iteration over containers. This is implemented using two " -"distinct methods; these are used to allow user-defined classes to support iteration. " -"Sequences, described below in more detail, always support the iteration methods." +"Python supports a concept of iteration over containers. This is implemented " +"using two distinct methods; these are used to allow user-defined classes to " +"support iteration. Sequences, described below in more detail, always " +"support the iteration methods." msgstr "" -"Python, konteynerler üzerinde yineleme kavramını destekler. Bu, iki farklı metot kullanılarak " -"uygulanır; bunlar, kullanıcı tanımlı sınıfların yinelemeyi desteklemesine izin vermek için " -"kullanılır. Aşağıda daha ayrıntılı olarak açıklanan diziler, her zaman yineleme metotlarını " -"destekler." +"Python, konteynerler üzerinde yineleme kavramını destekler. Bu, iki farklı " +"metot kullanılarak uygulanır; bunlar, kullanıcı tanımlı sınıfların " +"yinelemeyi desteklemesine izin vermek için kullanılır. Aşağıda daha " +"ayrıntılı olarak açıklanan diziler, her zaman yineleme metotlarını destekler." #: library/stdtypes.rst:776 -msgid "One method needs to be defined for container objects to provide :term:`iterable` support:" +msgid "" +"One method needs to be defined for container objects to provide :term:" +"`iterable` support:" msgstr "" -"Container nesnelerinin :term:`iterable` desteği sağlaması için bir metodun tanımlanması " -"gerekir:" +"Container nesnelerinin :term:`iterable` desteği sağlaması için bir metodun " +"tanımlanması gerekir:" #: library/stdtypes.rst:783 msgid "" -"Return an :term:`iterator` object. The object is required to support the iterator protocol " -"described below. If a container supports different types of iteration, additional methods can " -"be provided to specifically request iterators for those iteration types. (An example of an " -"object supporting multiple forms of iteration would be a tree structure which supports both " -"breadth-first and depth-first traversal.) This method corresponds to the :c:member:" -"`~PyTypeObject.tp_iter` slot of the type structure for Python objects in the Python/C API." -msgstr "" -"Bir :term:`iterator` nesnesi döndürür. Nesnenin aşağıda açıklanan yineleyici protokolünü " -"desteklemesi gerekir. Bir container, farklı yineleme türlerini destekliyorsa, bu yineleme " -"türleri için özel olarak yineleyiciler istemek için ek yöntemler sağlanabilir. (Birden çok " -"yineleme biçimini destekleyen bir nesneye örnek olarak hem genişlik öncelikli hem de derinlik " -"öncelikli geçişi destekleyen bir ağaç yapısı verilebilir.) Bu metot, Python/C API'sindeki " -"Python nesneleri için tür yapısının :c:member:`~PyTypeObject.tp_iter` yuvasına karşılık gelir." +"Return an :term:`iterator` object. The object is required to support the " +"iterator protocol described below. If a container supports different types " +"of iteration, additional methods can be provided to specifically request " +"iterators for those iteration types. (An example of an object supporting " +"multiple forms of iteration would be a tree structure which supports both " +"breadth-first and depth-first traversal.) This method corresponds to the :c:" +"member:`~PyTypeObject.tp_iter` slot of the type structure for Python objects " +"in the Python/C API." +msgstr "" +"Bir :term:`iterator` nesnesi döndürür. Nesnenin aşağıda açıklanan " +"yineleyici protokolünü desteklemesi gerekir. Bir container, farklı yineleme " +"türlerini destekliyorsa, bu yineleme türleri için özel olarak yineleyiciler " +"istemek için ek yöntemler sağlanabilir. (Birden çok yineleme biçimini " +"destekleyen bir nesneye örnek olarak hem genişlik öncelikli hem de derinlik " +"öncelikli geçişi destekleyen bir ağaç yapısı verilebilir.) Bu metot, Python/" +"C API'sindeki Python nesneleri için tür yapısının :c:member:`~PyTypeObject." +"tp_iter` yuvasına karşılık gelir." #: library/stdtypes.rst:792 msgid "" -"The iterator objects themselves are required to support the following two methods, which " -"together form the :dfn:`iterator protocol`:" +"The iterator objects themselves are required to support the following two " +"methods, which together form the :dfn:`iterator protocol`:" msgstr "" -"Yineleyici nesnelerinin kendilerinin, birlikte :dfn:`iterator protocol` 'ü oluşturan aşağıdaki " -"iki yöntemi desteklemesi gerekir:" +"Yineleyici nesnelerinin kendilerinin, birlikte :dfn:`iterator protocol` 'ü " +"oluşturan aşağıdaki iki yöntemi desteklemesi gerekir:" #: library/stdtypes.rst:798 msgid "" -"Return the :term:`iterator` object itself. This is required to allow both containers and " -"iterators to be used with the :keyword:`for` and :keyword:`in` statements. This method " -"corresponds to the :c:member:`~PyTypeObject.tp_iter` slot of the type structure for Python " -"objects in the Python/C API." +"Return the :term:`iterator` object itself. This is required to allow both " +"containers and iterators to be used with the :keyword:`for` and :keyword:" +"`in` statements. This method corresponds to the :c:member:`~PyTypeObject." +"tp_iter` slot of the type structure for Python objects in the Python/C API." msgstr "" -":term:`iterator` nesnesinin kendisini döndürür. Bu, hem containerların hem de " -"yineleyicilerin :keyword:`for` ve :keyword:`in` ifadeleriyle birlikte kullanılmasına izin " -"vermek için gereklidir. Bu metot, Python/C API'sindeki Python nesneleri için tür yapısının :c:" -"member:`~PyTypeObject.tp_iter` yuvasına karşılık gelir." +":term:`iterator` nesnesinin kendisini döndürür. Bu, hem containerların hem " +"de yineleyicilerin :keyword:`for` ve :keyword:`in` ifadeleriyle birlikte " +"kullanılmasına izin vermek için gereklidir. Bu metot, Python/C API'sindeki " +"Python nesneleri için tür yapısının :c:member:`~PyTypeObject.tp_iter` " +"yuvasına karşılık gelir." #: library/stdtypes.rst:807 msgid "" -"Return the next item from the :term:`iterator`. If there are no further items, raise the :exc:" -"`StopIteration` exception. This method corresponds to the :c:member:`~PyTypeObject." -"tp_iternext` slot of the type structure for Python objects in the Python/C API." +"Return the next item from the :term:`iterator`. If there are no further " +"items, raise the :exc:`StopIteration` exception. This method corresponds to " +"the :c:member:`~PyTypeObject.tp_iternext` slot of the type structure for " +"Python objects in the Python/C API." msgstr "" -":term:`iterator` 'den sonraki öğeyi döndürür. Başka öğe yoksa, :exc:`StopIteration` hatasını " -"verir. Bu metot, Python/C API'sindeki Python nesneleri için tür yapısının :c:member:" -"`~PyTypeObject.tp_iternext` yuvasına karşılık gelir." +":term:`iterator` 'den sonraki öğeyi döndürür. Başka öğe yoksa, :exc:" +"`StopIteration` hatasını verir. Bu metot, Python/C API'sindeki Python " +"nesneleri için tür yapısının :c:member:`~PyTypeObject.tp_iternext` yuvasına " +"karşılık gelir." #: library/stdtypes.rst:812 msgid "" -"Python defines several iterator objects to support iteration over general and specific " -"sequence types, dictionaries, and other more specialized forms. The specific types are not " -"important beyond their implementation of the iterator protocol." +"Python defines several iterator objects to support iteration over general " +"and specific sequence types, dictionaries, and other more specialized " +"forms. The specific types are not important beyond their implementation of " +"the iterator protocol." msgstr "" -"Python, genel ve özel dizi türleri, sözlükler ve diğer daha özel formlar üzerinde yinelemeyi " -"desteklemek için birkaç yineleyici nesnesi tanımlar. Belirli türler, yineleyici protokolünün " -"uygulanmasının ötesinde önemli değildir." +"Python, genel ve özel dizi türleri, sözlükler ve diğer daha özel formlar " +"üzerinde yinelemeyi desteklemek için birkaç yineleyici nesnesi tanımlar. " +"Belirli türler, yineleyici protokolünün uygulanmasının ötesinde önemli " +"değildir." #: library/stdtypes.rst:817 msgid "" -"Once an iterator's :meth:`~iterator.__next__` method raises :exc:`StopIteration`, it must " -"continue to do so on subsequent calls. Implementations that do not obey this property are " -"deemed broken." +"Once an iterator's :meth:`~iterator.__next__` method raises :exc:" +"`StopIteration`, it must continue to do so on subsequent calls. " +"Implementations that do not obey this property are deemed broken." msgstr "" -"Bir yineleyicinin :meth:`~iterator.__next__` yöntemi :exc:`StopIteration` hatasını verdiğinde, " -"sonraki çağrılarda bunu yapmaya devam etmelidir. Bu özelliğe uymayan uygulamalar bozuk sayılır." +"Bir yineleyicinin :meth:`~iterator.__next__` yöntemi :exc:`StopIteration` " +"hatasını verdiğinde, sonraki çağrılarda bunu yapmaya devam etmelidir. Bu " +"özelliğe uymayan uygulamalar bozuk sayılır." #: library/stdtypes.rst:825 msgid "Generator Types" @@ -1191,17 +1306,20 @@ msgstr "Oluşturucu Tipleri" #: library/stdtypes.rst:827 msgid "" -"Python's :term:`generator`\\s provide a convenient way to implement the iterator protocol. If " -"a container object's :meth:`__iter__` method is implemented as a generator, it will " -"automatically return an iterator object (technically, a generator object) supplying the :meth:" -"`__iter__` and :meth:`~generator.__next__` methods. More information about generators can be " +"Python's :term:`generator`\\s provide a convenient way to implement the " +"iterator protocol. If a container object's :meth:`__iter__` method is " +"implemented as a generator, it will automatically return an iterator object " +"(technically, a generator object) supplying the :meth:`__iter__` and :meth:" +"`~generator.__next__` methods. More information about generators can be " "found in :ref:`the documentation for the yield expression `." msgstr "" -"Python'un :term:`generator`\\s, yineleyici protokolünü uygulamak için uygun bir yol sağlar. " -"Bir container nesnesinin :meth:`__iter__` yöntemi bir oluşturucu olarak uygulanırsa, otomatik " -"olarak :meth:`__iter__` ve :meth:`~generator.__next__` yöntemlerini sağlayan bir yineleyici " -"nesne (teknik olarak bir oluşturucu nesnesi) döndürür. Oluşturucular hakkında daha fazla " -"bilgi :ref:`the documentation for the yield expression ` adresinde bulunabilir." +"Python'un :term:`generator`\\s, yineleyici protokolünü uygulamak için uygun " +"bir yol sağlar. Bir container nesnesinin :meth:`__iter__` yöntemi bir " +"oluşturucu olarak uygulanırsa, otomatik olarak :meth:`__iter__` ve :meth:" +"`~generator.__next__` yöntemlerini sağlayan bir yineleyici nesne (teknik " +"olarak bir oluşturucu nesnesi) döndürür. Oluşturucular hakkında daha fazla " +"bilgi :ref:`the documentation for the yield expression ` " +"adresinde bulunabilir." #: library/stdtypes.rst:839 msgid "Sequence Types --- :class:`list`, :class:`tuple`, :class:`range`" @@ -1209,13 +1327,14 @@ msgstr "Dizi Tipleri --- :class:`list`, :class:`tuple`, :class:`range`" #: library/stdtypes.rst:841 msgid "" -"There are three basic sequence types: lists, tuples, and range objects. Additional sequence " -"types tailored for processing of :ref:`binary data ` and :ref:`text strings " -"` are described in dedicated sections." +"There are three basic sequence types: lists, tuples, and range objects. " +"Additional sequence types tailored for processing of :ref:`binary data " +"` and :ref:`text strings ` are described in dedicated " +"sections." msgstr "" -"Üç temel dizi türü vardır: listeler, demetler ve aralık nesneleri. :ref:`binary data " -"` ve :ref:`text strings ` 'in işlenmesi için uyarlanmış ek dizi türleri, " -"özel bölümlerde açıklanmıştır." +"Üç temel dizi türü vardır: listeler, demetler ve aralık nesneleri. :ref:" +"`binary data ` ve :ref:`text strings ` 'in işlenmesi " +"için uyarlanmış ek dizi türleri, özel bölümlerde açıklanmıştır." #: library/stdtypes.rst:850 msgid "Common Sequence Operations" @@ -1223,33 +1342,38 @@ msgstr "Yaygın Dizi İşlemleri" #: library/stdtypes.rst:854 msgid "" -"The operations in the following table are supported by most sequence types, both mutable and " -"immutable. The :class:`collections.abc.Sequence` ABC is provided to make it easier to " -"correctly implement these operations on custom sequence types." +"The operations in the following table are supported by most sequence types, " +"both mutable and immutable. The :class:`collections.abc.Sequence` ABC is " +"provided to make it easier to correctly implement these operations on custom " +"sequence types." msgstr "" -"Aşağıdaki tablodaki işlemler, hem değiştirilebilir hem de değiştirilemez olan çoğu dizi türü " -"tarafından desteklenir. :class:`collections.abc.Sequence` ABC, bu işlemleri özel dize " -"türlerinde doğru şekilde uygulamayı kolaylaştırmak için sağlanmıştır." +"Aşağıdaki tablodaki işlemler, hem değiştirilebilir hem de değiştirilemez " +"olan çoğu dizi türü tarafından desteklenir. :class:`collections.abc." +"Sequence` ABC, bu işlemleri özel dize türlerinde doğru şekilde uygulamayı " +"kolaylaştırmak için sağlanmıştır." #: library/stdtypes.rst:859 msgid "" -"This table lists the sequence operations sorted in ascending priority. In the table, *s* and " -"*t* are sequences of the same type, *n*, *i*, *j* and *k* are integers and *x* is an arbitrary " -"object that meets any type and value restrictions imposed by *s*." +"This table lists the sequence operations sorted in ascending priority. In " +"the table, *s* and *t* are sequences of the same type, *n*, *i*, *j* and *k* " +"are integers and *x* is an arbitrary object that meets any type and value " +"restrictions imposed by *s*." msgstr "" -"Bu tablo artan önceliğe göre sıralanmış dizi işlemlerini listeler. Tabloda *s* ve *t* aynı " -"türden dizilerdir, *n*, *i*, *j* ve *k* tam sayılardır ve *x*, *s* tarafından dayatılan her " -"tür ve değer kısıtlamasını karşılayan isteğe bağlı bir nesnedir." +"Bu tablo artan önceliğe göre sıralanmış dizi işlemlerini listeler. Tabloda " +"*s* ve *t* aynı türden dizilerdir, *n*, *i*, *j* ve *k* tam sayılardır ve " +"*x*, *s* tarafından dayatılan her tür ve değer kısıtlamasını karşılayan " +"isteğe bağlı bir nesnedir." #: library/stdtypes.rst:864 msgid "" -"The ``in`` and ``not in`` operations have the same priorities as the comparison operations. " -"The ``+`` (concatenation) and ``*`` (repetition) operations have the same priority as the " -"corresponding numeric operations. [3]_" +"The ``in`` and ``not in`` operations have the same priorities as the " +"comparison operations. The ``+`` (concatenation) and ``*`` (repetition) " +"operations have the same priority as the corresponding numeric operations. " +"[3]_" msgstr "" -"``in`` ve ``not in`` işlemleri, karşılaştırma işlemleriyle aynı önceliklere sahiptir. ``+`` " -"(birleştirme) ve ``*`` (yineleme) işlemleri, karşılık gelen sayısal işlemlerle aynı önceliğe " -"sahiptir. [3]_" +"``in`` ve ``not in`` işlemleri, karşılaştırma işlemleriyle aynı önceliklere " +"sahiptir. ``+`` (birleştirme) ve ``*`` (yineleme) işlemleri, karşılık gelen " +"sayısal işlemlerle aynı önceliğe sahiptir. [3]_" #: library/stdtypes.rst:885 msgid "``x in s``" @@ -1318,8 +1442,8 @@ msgstr "``s[i:j:k]``" #: library/stdtypes.rst:901 msgid "slice of *s* from *i* to *j* with step *k*" msgstr "" -"*s* 'nin *i* 'den *j* 'ye kadar olan dilimi, *k* 'lik adımlarla (örneğin *k* = 2 ise, ikişer " -"ikişer)" +"*s* 'nin *i* 'den *j* 'ye kadar olan dilimi, *k* 'lik adımlarla (örneğin *k* " +"= 2 ise, ikişer ikişer)" #: library/stdtypes.rst:901 msgid "(3)(5)" @@ -1354,10 +1478,12 @@ msgid "``s.index(x[, i[, j]])``" msgstr "``s.index(x[, i[, j]])``" #: library/stdtypes.rst:910 -msgid "index of the first occurrence of *x* in *s* (at or after index *i* and before index *j*)" +msgid "" +"index of the first occurrence of *x* in *s* (at or after index *i* and " +"before index *j*)" msgstr "" -"*x* 'in *s* içindeki ilk görüldüğü dizini (*i* dizininde veya sonrasında ve *j* dizininden " -"önce)" +"*x* 'in *s* içindeki ilk görüldüğü dizini (*i* dizininde veya sonrasında ve " +"*j* dizininden önce)" #: library/stdtypes.rst:3539 msgid "\\(8)" @@ -1373,119 +1499,139 @@ msgstr "*s* 'de *x*'in toplam görülme sayısı" #: library/stdtypes.rst:918 msgid "" -"Sequences of the same type also support comparisons. In particular, tuples and lists are " -"compared lexicographically by comparing corresponding elements. This means that to compare " -"equal, every element must compare equal and the two sequences must be of the same type and " -"have the same length. (For full details see :ref:`comparisons` in the language reference.)" -msgstr "" -"Aynı türden diziler de karşılaştırmaları destekler. Özellikle, demetler ve listeler, karşılık " -"gelen öğeler ile sözlükbilimsel olarak karşılaştırılır. Bu, eşit karşılaştırma yapılabilmesi " -"için her öğenin eşit olarak karşılaştırması gerektiği ve iki dizinin aynı türde ve aynı " -"uzunlukta olması gerektiği anlamına gelir. (Tüm ayrıntılar için dil referansındaki :ref:" +"Sequences of the same type also support comparisons. In particular, tuples " +"and lists are compared lexicographically by comparing corresponding " +"elements. This means that to compare equal, every element must compare equal " +"and the two sequences must be of the same type and have the same length. " +"(For full details see :ref:`comparisons` in the language reference.)" +msgstr "" +"Aynı türden diziler de karşılaştırmaları destekler. Özellikle, demetler ve " +"listeler, karşılık gelen öğeler ile sözlükbilimsel olarak karşılaştırılır. " +"Bu, eşit karşılaştırma yapılabilmesi için her öğenin eşit olarak " +"karşılaştırması gerektiği ve iki dizinin aynı türde ve aynı uzunlukta olması " +"gerektiği anlamına gelir. (Tüm ayrıntılar için dil referansındaki :ref:" "`comparisons` bölümüne bakın.)" #: library/stdtypes.rst:927 msgid "" -"While the ``in`` and ``not in`` operations are used only for simple containment testing in the " -"general case, some specialised sequences (such as :class:`str`, :class:`bytes` and :class:" -"`bytearray`) also use them for subsequence testing::" +"While the ``in`` and ``not in`` operations are used only for simple " +"containment testing in the general case, some specialised sequences (such " +"as :class:`str`, :class:`bytes` and :class:`bytearray`) also use them for " +"subsequence testing::" msgstr "" -"``in`` ve ``not in`` işlemleri, genel durumda yalnızca basit sınırlama testi için " -"kullanılırken, bazı özel diziler (örneğin: :class:`str`, :class:`bytes` ve :class:`bytearray`) " -"bunları sonraki dizi testi için de kullanır:" +"``in`` ve ``not in`` işlemleri, genel durumda yalnızca basit sınırlama testi " +"için kullanılırken, bazı özel diziler (örneğin: :class:`str`, :class:`bytes` " +"ve :class:`bytearray`) bunları sonraki dizi testi için de kullanır:" #: library/stdtypes.rst:936 msgid "" -"Values of *n* less than ``0`` are treated as ``0`` (which yields an empty sequence of the same " -"type as *s*). Note that items in the sequence *s* are not copied; they are referenced " -"multiple times. This often haunts new Python programmers; consider::" +"Values of *n* less than ``0`` are treated as ``0`` (which yields an empty " +"sequence of the same type as *s*). Note that items in the sequence *s* are " +"not copied; they are referenced multiple times. This often haunts new " +"Python programmers; consider::" msgstr "" -"*n* 'nin ```0`` 'dan küçük değerleri ``0`` olarak değerlendirilir (bu, *s* ile aynı türde boş " -"bir dizi verir). *s* dizisindeki öğeler kopyalanmaz, birden çok kez referans gösterilir " -"(kullanılır). Bu, çoğunlukla yeni Python programcılarına musallat olur; şunu düşünün::" +"*n* 'nin ```0`` 'dan küçük değerleri ``0`` olarak değerlendirilir (bu, *s* " +"ile aynı türde boş bir dizi verir). *s* dizisindeki öğeler kopyalanmaz, " +"birden çok kez referans gösterilir (kullanılır). Bu, çoğunlukla yeni Python " +"programcılarına musallat olur; şunu düşünün::" #: library/stdtypes.rst:948 msgid "" -"What has happened is that ``[[]]`` is a one-element list containing an empty list, so all " -"three elements of ``[[]] * 3`` are references to this single empty list. Modifying any of the " -"elements of ``lists`` modifies this single list. You can create a list of different lists this " -"way::" +"What has happened is that ``[[]]`` is a one-element list containing an empty " +"list, so all three elements of ``[[]] * 3`` are references to this single " +"empty list. Modifying any of the elements of ``lists`` modifies this single " +"list. You can create a list of different lists this way::" msgstr "" -"Olan şu ki, ``[[]]`` boş bir liste içeren tek elemanlı bir listedir, dolayısıyla ``[[]] * 3`` " -"'ün üç elemanı da bu boş listeye referanstır. ``lists`` öğelerinin herhangi birinin " -"değiştirilmesi bu listeyi değiştirir. Bu şekilde farklı listelerin bir listesini " -"oluşturabilirsiniz::" +"Olan şu ki, ``[[]]`` boş bir liste içeren tek elemanlı bir listedir, " +"dolayısıyla ``[[]] * 3`` 'ün üç elemanı da bu boş listeye referanstır. " +"``lists`` öğelerinin herhangi birinin değiştirilmesi bu listeyi değiştirir. " +"Bu şekilde farklı listelerin bir listesini oluşturabilirsiniz::" #: library/stdtypes.rst:960 -msgid "Further explanation is available in the FAQ entry :ref:`faq-multidimensional-list`." -msgstr "Daha fazla açıklama SSS gönderisinde mevcuttur: :ref:`faq-multidimensional-list`." +msgid "" +"Further explanation is available in the FAQ entry :ref:`faq-multidimensional-" +"list`." +msgstr "" +"Daha fazla açıklama SSS gönderisinde mevcuttur: :ref:`faq-multidimensional-" +"list`." #: library/stdtypes.rst:964 msgid "" -"If *i* or *j* is negative, the index is relative to the end of sequence *s*: ``len(s) + i`` or " -"``len(s) + j`` is substituted. But note that ``-0`` is still ``0``." +"If *i* or *j* is negative, the index is relative to the end of sequence *s*: " +"``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is " +"still ``0``." msgstr "" -"*i* veya *j* negatifse, dizin *s*: dizisinin sonuna göredir: ``len(s) + i`` veya ``len(s) + " -"j`` değiştirilir. Ancak ``-0``ın hala ``0`` olduğuna dikkat edin." +"*i* veya *j* negatifse, dizin *s*: dizisinin sonuna göredir: ``len(s) + i`` " +"veya ``len(s) + j`` değiştirilir. Ancak ``-0``ın hala ``0`` olduğuna dikkat " +"edin." #: library/stdtypes.rst:969 msgid "" -"The slice of *s* from *i* to *j* is defined as the sequence of items with index *k* such that " -"``i <= k < j``. If *i* or *j* is greater than ``len(s)``, use ``len(s)``. If *i* is omitted " -"or ``None``, use ``0``. If *j* is omitted or ``None``, use ``len(s)``. If *i* is greater " -"than or equal to *j*, the slice is empty." +"The slice of *s* from *i* to *j* is defined as the sequence of items with " +"index *k* such that ``i <= k < j``. If *i* or *j* is greater than " +"``len(s)``, use ``len(s)``. If *i* is omitted or ``None``, use ``0``. If " +"*j* is omitted or ``None``, use ``len(s)``. If *i* is greater than or equal " +"to *j*, the slice is empty." msgstr "" -"*s* 'nin *i* ile *j* arasındaki dilimi, ```i <= k < j`` olacak şekilde *k* indeksine sahip " -"öğelerin dizisi olarak tanımlanır. *i* veya *j* ``len(s)`` 'den büyükse,``len(s)`` kullanın. " -"*i* atlanırsa veya ``None`` ise, ``0`` kullanın. *j* atlanırsa veya ``None`` ise, ``len(s)`` " -"kullanın. *i*, *j* 'den büyük veya ona eşitse, dilim boştur." +"*s* 'nin *i* ile *j* arasındaki dilimi, ```i <= k < j`` olacak şekilde *k* " +"indeksine sahip öğelerin dizisi olarak tanımlanır. *i* veya *j* ``len(s)`` " +"'den büyükse,``len(s)`` kullanın. *i* atlanırsa veya ``None`` ise, ``0`` " +"kullanın. *j* atlanırsa veya ``None`` ise, ``len(s)`` kullanın. *i*, *j* " +"'den büyük veya ona eşitse, dilim boştur." #: library/stdtypes.rst:976 msgid "" -"The slice of *s* from *i* to *j* with step *k* is defined as the sequence of items with index " -"``x = i + n*k`` such that ``0 <= n < (j-i)/k``. In other words, the indices are ``i``, ``i" -"+k``, ``i+2*k``, ``i+3*k`` and so on, stopping when *j* is reached (but never including *j*). " -"When *k* is positive, *i* and *j* are reduced to ``len(s)`` if they are greater. When *k* is " -"negative, *i* and *j* are reduced to ``len(s) - 1`` if they are greater. If *i* or *j* are " -"omitted or ``None``, they become \"end\" values (which end depends on the sign of *k*). Note, " -"*k* cannot be zero. If *k* is ``None``, it is treated like ``1``." +"The slice of *s* from *i* to *j* with step *k* is defined as the sequence of " +"items with index ``x = i + n*k`` such that ``0 <= n < (j-i)/k``. In other " +"words, the indices are ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` and so on, " +"stopping when *j* is reached (but never including *j*). When *k* is " +"positive, *i* and *j* are reduced to ``len(s)`` if they are greater. When " +"*k* is negative, *i* and *j* are reduced to ``len(s) - 1`` if they are " +"greater. If *i* or *j* are omitted or ``None``, they become \"end\" values " +"(which end depends on the sign of *k*). Note, *k* cannot be zero. If *k* is " +"``None``, it is treated like ``1``." msgstr "" #: library/stdtypes.rst:987 msgid "" -"Concatenating immutable sequences always results in a new object. This means that building up " -"a sequence by repeated concatenation will have a quadratic runtime cost in the total sequence " -"length. To get a linear runtime cost, you must switch to one of the alternatives below:" +"Concatenating immutable sequences always results in a new object. This " +"means that building up a sequence by repeated concatenation will have a " +"quadratic runtime cost in the total sequence length. To get a linear " +"runtime cost, you must switch to one of the alternatives below:" msgstr "" -"Değiştirilemez dizileri birleştirmek her zaman yeni bir nesneyle sonuçlanır. Bu, tekrarlanan " -"birleştirme ile bir dizi oluşturmanın, toplam dizi uzunluğunda ikinci dereceden bir çalışma " -"zamanı maliyetine sahip olacağı anlamına gelir. Doğrusal bir çalışma zamanı maliyeti elde " -"etmek için aşağıdaki alternatiflerden birine geçmelisiniz:" +"Değiştirilemez dizileri birleştirmek her zaman yeni bir nesneyle " +"sonuçlanır. Bu, tekrarlanan birleştirme ile bir dizi oluşturmanın, toplam " +"dizi uzunluğunda ikinci dereceden bir çalışma zamanı maliyetine sahip " +"olacağı anlamına gelir. Doğrusal bir çalışma zamanı maliyeti elde etmek " +"için aşağıdaki alternatiflerden birine geçmelisiniz:" #: library/stdtypes.rst:992 msgid "" -"if concatenating :class:`str` objects, you can build a list and use :meth:`str.join` at the " -"end or else write to an :class:`io.StringIO` instance and retrieve its value when complete" +"if concatenating :class:`str` objects, you can build a list and use :meth:" +"`str.join` at the end or else write to an :class:`io.StringIO` instance and " +"retrieve its value when complete" msgstr "" -":class:`str` nesnelerini birleştiriyorsanız, bir liste oluşturabilir ve sonunda :meth:`str." -"join` kullanabilir veya bir :class:`io.StringIO` örneğine yazabilir ve tamamlandığında " -"değerini alabilirsiniz" +":class:`str` nesnelerini birleştiriyorsanız, bir liste oluşturabilir ve " +"sonunda :meth:`str.join` kullanabilir veya bir :class:`io.StringIO` örneğine " +"yazabilir ve tamamlandığında değerini alabilirsiniz" #: library/stdtypes.rst:996 msgid "" -"if concatenating :class:`bytes` objects, you can similarly use :meth:`bytes.join` or :class:" -"`io.BytesIO`, or you can do in-place concatenation with a :class:`bytearray` object. :class:" -"`bytearray` objects are mutable and have an efficient overallocation mechanism" +"if concatenating :class:`bytes` objects, you can similarly use :meth:`bytes." +"join` or :class:`io.BytesIO`, or you can do in-place concatenation with a :" +"class:`bytearray` object. :class:`bytearray` objects are mutable and have " +"an efficient overallocation mechanism" msgstr "" -":class:`bytes` nesnelerini birleştiriyorsanız, benzer şekilde :meth:`bytes.join` veya :class:" -"`io.BytesIO` kullanabilir veya bir :class:`bytearray` nesnesiyle yerinde birleştirme " -"yapabilirsiniz. :class:`bytearray` nesneleri değiştirilebilirdir ve verimli bir aşırı tahsis " -"mekanizmasına sahiptir" +":class:`bytes` nesnelerini birleştiriyorsanız, benzer şekilde :meth:`bytes." +"join` veya :class:`io.BytesIO` kullanabilir veya bir :class:`bytearray` " +"nesnesiyle yerinde birleştirme yapabilirsiniz. :class:`bytearray` nesneleri " +"değiştirilebilirdir ve verimli bir aşırı tahsis mekanizmasına sahiptir" #: library/stdtypes.rst:1001 msgid "if concatenating :class:`tuple` objects, extend a :class:`list` instead" msgstr "" -":class:`tuple` nesneleri birleştiriyorsanız, bunun yerine bir :class:`list` öğesini genişletin" +":class:`tuple` nesneleri birleştiriyorsanız, bunun yerine bir :class:`list` " +"öğesini genişletin" #: library/stdtypes.rst:1003 msgid "for other types, investigate the relevant class documentation" @@ -1493,25 +1639,29 @@ msgstr "diğer türler için ilgili sınıf dokümantasyonunu inceleyin" #: library/stdtypes.rst:1007 msgid "" -"Some sequence types (such as :class:`range`) only support item sequences that follow specific " -"patterns, and hence don't support sequence concatenation or repetition." +"Some sequence types (such as :class:`range`) only support item sequences " +"that follow specific patterns, and hence don't support sequence " +"concatenation or repetition." msgstr "" -"Bazı dizi türleri (örneğin :class:`range`) yalnızca belirli kalıpları takip eden öğe " -"dizilerini destekler ve bu nedenle dizi birleştirmeyi veya tekrarlamayı desteklemez." +"Bazı dizi türleri (örneğin :class:`range`) yalnızca belirli kalıpları takip " +"eden öğe dizilerini destekler ve bu nedenle dizi birleştirmeyi veya " +"tekrarlamayı desteklemez." #: library/stdtypes.rst:1012 msgid "" -"``index`` raises :exc:`ValueError` when *x* is not found in *s*. Not all implementations " -"support passing the additional arguments *i* and *j*. These arguments allow efficient " -"searching of subsections of the sequence. Passing the extra arguments is roughly equivalent to " -"using ``s[i:j].index(x)``, only without copying any data and with the returned index being " -"relative to the start of the sequence rather than the start of the slice." +"``index`` raises :exc:`ValueError` when *x* is not found in *s*. Not all " +"implementations support passing the additional arguments *i* and *j*. These " +"arguments allow efficient searching of subsections of the sequence. Passing " +"the extra arguments is roughly equivalent to using ``s[i:j].index(x)``, only " +"without copying any data and with the returned index being relative to the " +"start of the sequence rather than the start of the slice." msgstr "" -"*s* içinde *x* bulunmadığında ``index`` :exc:`ValueError` hatasını verir. Tüm uygulamalar *i* " -"ve *j* ek argümanlarının iletilmesini desteklemez. Bu argümanlar, dizinin alt bölümlerinin " -"verimli bir şekilde aranmasını sağlar. Fazladan argümanları iletmek kabaca ``s[i:j].index(x)`` " -"kullanmaya eş değerdir, yalnızca herhangi bir veri kopyalamadan ve döndürülen index dilimin " -"başlangıcından ziyade dizinin başlangıcına göredir." +"*s* içinde *x* bulunmadığında ``index`` :exc:`ValueError` hatasını verir. " +"Tüm uygulamalar *i* ve *j* ek argümanlarının iletilmesini desteklemez. Bu " +"argümanlar, dizinin alt bölümlerinin verimli bir şekilde aranmasını sağlar. " +"Fazladan argümanları iletmek kabaca ``s[i:j].index(x)`` kullanmaya eş " +"değerdir, yalnızca herhangi bir veri kopyalamadan ve döndürülen index " +"dilimin başlangıcından ziyade dizinin başlangıcına göredir." #: library/stdtypes.rst:1023 msgid "Immutable Sequence Types" @@ -1519,28 +1669,32 @@ msgstr "Değiştirilemez Dizi Tipleri" #: library/stdtypes.rst:1030 msgid "" -"The only operation that immutable sequence types generally implement that is not also " -"implemented by mutable sequence types is support for the :func:`hash` built-in." +"The only operation that immutable sequence types generally implement that is " +"not also implemented by mutable sequence types is support for the :func:" +"`hash` built-in." msgstr "" -"Değiştirilemez dizi türlerinin genellikle uyguladığı ve aynı zamanda değişken dizi türleri " -"tarafından uygulanmayan tek işlem, gömülü :func:`hash` desteğidir." +"Değiştirilemez dizi türlerinin genellikle uyguladığı ve aynı zamanda " +"değişken dizi türleri tarafından uygulanmayan tek işlem, gömülü :func:`hash` " +"desteğidir." #: library/stdtypes.rst:1034 msgid "" -"This support allows immutable sequences, such as :class:`tuple` instances, to be used as :" -"class:`dict` keys and stored in :class:`set` and :class:`frozenset` instances." +"This support allows immutable sequences, such as :class:`tuple` instances, " +"to be used as :class:`dict` keys and stored in :class:`set` and :class:" +"`frozenset` instances." msgstr "" -"Bu destek, :class:`tuple` örnekleri gibi değiştirilemez dizilerin :class:`dict` anahtarları " -"olarak kullanılmasına, :class:`set` ve :class:`frozenset` örneklerinde saklanmasına izin verir." +"Bu destek, :class:`tuple` örnekleri gibi değiştirilemez dizilerin :class:" +"`dict` anahtarları olarak kullanılmasına, :class:`set` ve :class:`frozenset` " +"örneklerinde saklanmasına izin verir." #: library/stdtypes.rst:1038 #, fuzzy msgid "" -"Attempting to hash an immutable sequence that contains unhashable values will result in :exc:" -"`TypeError`." +"Attempting to hash an immutable sequence that contains unhashable values " +"will result in :exc:`TypeError`." msgstr "" -"Hash edilemez değerler içeren değiştirilemez bir diziyi hashlemeye çalışmak :exc:`TypeError` " -"ile sonuçlanır." +"Hash edilemez değerler içeren değiştirilemez bir diziyi hashlemeye çalışmak :" +"exc:`TypeError` ile sonuçlanır." #: library/stdtypes.rst:1045 msgid "Mutable Sequence Types" @@ -1548,25 +1702,27 @@ msgstr "Değiştirilebilir Dizi Tipleri" #: library/stdtypes.rst:1052 msgid "" -"The operations in the following table are defined on mutable sequence types. The :class:" -"`collections.abc.MutableSequence` ABC is provided to make it easier to correctly implement " -"these operations on custom sequence types." +"The operations in the following table are defined on mutable sequence types. " +"The :class:`collections.abc.MutableSequence` ABC is provided to make it " +"easier to correctly implement these operations on custom sequence types." msgstr "" -"Aşağıdaki tabloda yer alan işlemler değiştirilebilir dizi tiplerinde tanımlanmıştır. :class:" -"`collections.abc.MutableSequence` ABC, bu işlemleri özel dizi türlerinde doğru şekilde " -"uygulamayı kolaylaştırmak için sağlanmıştır." +"Aşağıdaki tabloda yer alan işlemler değiştirilebilir dizi tiplerinde " +"tanımlanmıştır. :class:`collections.abc.MutableSequence` ABC, bu işlemleri " +"özel dizi türlerinde doğru şekilde uygulamayı kolaylaştırmak için " +"sağlanmıştır." #: library/stdtypes.rst:1056 msgid "" -"In the table *s* is an instance of a mutable sequence type, *t* is any iterable object and *x* " -"is an arbitrary object that meets any type and value restrictions imposed by *s* (for " -"example, :class:`bytearray` only accepts integers that meet the value restriction ``0 <= x <= " -"255``)." +"In the table *s* is an instance of a mutable sequence type, *t* is any " +"iterable object and *x* is an arbitrary object that meets any type and value " +"restrictions imposed by *s* (for example, :class:`bytearray` only accepts " +"integers that meet the value restriction ``0 <= x <= 255``)." msgstr "" -"Tabloda *s* değiştirilebilir bir dizi türünün bir örneğidir, *t* yinelenebilir herhangi bir " -"nesnedir ve *x*, *s* tarafından dayatılan herhangi bir tür ve değer kısıtlamasını karşılayan " -"rastgele bir nesnedir (örneğin, :class:`bytearray` yalnızca ``0 <= x <= 255`` değer " -"kısıtlamasını karşılayan tam sayıları kabul eder)." +"Tabloda *s* değiştirilebilir bir dizi türünün bir örneğidir, *t* " +"yinelenebilir herhangi bir nesnedir ve *x*, *s* tarafından dayatılan " +"herhangi bir tür ve değer kısıtlamasını karşılayan rastgele bir nesnedir " +"(örneğin, :class:`bytearray` yalnızca ``0 <= x <= 255`` değer kısıtlamasını " +"karşılayan tam sayıları kabul eder)." #: library/stdtypes.rst:1080 msgid "``s[i] = x``" @@ -1581,8 +1737,11 @@ msgid "``s[i:j] = t``" msgstr "``s[i:j] = t``" #: library/stdtypes.rst:1083 -msgid "slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*" -msgstr "*s* 'nin *i* ile *j* arasındaki dilimi, yinelenebilir *t* içeriğiyle değiştirilir" +msgid "" +"slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*" +msgstr "" +"*s* 'nin *i* ile *j* arasındaki dilimi, yinelenebilir *t* içeriğiyle " +"değiştirilir" #: library/stdtypes.rst:1087 msgid "``del s[i:j]``" @@ -1613,7 +1772,8 @@ msgid "``s.append(x)``" msgstr "``s.append(x)``" #: library/stdtypes.rst:1095 -msgid "appends *x* to the end of the sequence (same as ``s[len(s):len(s)] = [x]``)" +msgid "" +"appends *x* to the end of the sequence (same as ``s[len(s):len(s)] = [x]``)" msgstr "dizinin sonuna *x* ekler (``s[len(s):len(s)] = [x]`` ile eş değerdir)" #: library/stdtypes.rst:1099 @@ -1638,9 +1798,11 @@ msgstr "``s.extend(t)`` veya ``s += t``" #: library/stdtypes.rst:1105 msgid "" -"extends *s* with the contents of *t* (for the most part the same as ``s[len(s):len(s)] = t``)" +"extends *s* with the contents of *t* (for the most part the same as " +"``s[len(s):len(s)] = t``)" msgstr "" -"*s* 'yi *t* 'nin içeriğiyle genişletir (çoğunlukla ``s[len(s):len(s)] = t`` ile eş değerdir)" +"*s* 'yi *t* 'nin içeriğiyle genişletir (çoğunlukla ``s[len(s):len(s)] = t`` " +"ile eş değerdir)" #: library/stdtypes.rst:1110 msgid "``s *= n``" @@ -1655,9 +1817,11 @@ msgid "``s.insert(i, x)``" msgstr "``s.insert(i, x)``" #: library/stdtypes.rst:1113 -msgid "inserts *x* into *s* at the index given by *i* (same as ``s[i:i] = [x]``)" +msgid "" +"inserts *x* into *s* at the index given by *i* (same as ``s[i:i] = [x]``)" msgstr "" -"*i* tarafından verilen dizinde *s* 'nin içine *x* ekler (``s[i:i] = [x]`` ile eş değerdir)" +"*i* tarafından verilen dizinde *s* 'nin içine *x* ekler (``s[i:i] = [x]`` " +"ile eş değerdir)" #: library/stdtypes.rst:1117 msgid "``s.pop()`` or ``s.pop(i)``" @@ -1690,39 +1854,42 @@ msgstr "*t*, değiştirdiği dilimle aynı uzunlukta olmalıdır." #: library/stdtypes.rst:1134 msgid "" -"The optional argument *i* defaults to ``-1``, so that by default the last item is removed and " -"returned." +"The optional argument *i* defaults to ``-1``, so that by default the last " +"item is removed and returned." msgstr "" -"İsteğe bağlı *i* argümanı varsayılan olarak ``-1`` şeklindedir, böylece varsayılan olarak son " -"öğe kaldırılır ve döndürülür." +"İsteğe bağlı *i* argümanı varsayılan olarak ``-1`` şeklindedir, böylece " +"varsayılan olarak son öğe kaldırılır ve döndürülür." #: library/stdtypes.rst:1138 msgid ":meth:`remove` raises :exc:`ValueError` when *x* is not found in *s*." msgstr "" -"*s* 'nin içinde *x* bulunmadığında :meth:`remove` işlemi :exc:`ValueError` hatasını verir." +"*s* 'nin içinde *x* bulunmadığında :meth:`remove` işlemi :exc:`ValueError` " +"hatasını verir." #: library/stdtypes.rst:1141 msgid "" -"The :meth:`reverse` method modifies the sequence in place for economy of space when reversing " -"a large sequence. To remind users that it operates by side effect, it does not return the " -"reversed sequence." +"The :meth:`reverse` method modifies the sequence in place for economy of " +"space when reversing a large sequence. To remind users that it operates by " +"side effect, it does not return the reversed sequence." msgstr "" -":meth:`reverse` metodu, büyük bir diziyi tersine çevirirken yerden tasarruf sağlamak için " -"diziyi yerinde değiştirir. Kullanıcılara yan etki ile çalıştığını hatırlatmak için ters diziyi " -"döndürmez." +":meth:`reverse` metodu, büyük bir diziyi tersine çevirirken yerden tasarruf " +"sağlamak için diziyi yerinde değiştirir. Kullanıcılara yan etki ile " +"çalıştığını hatırlatmak için ters diziyi döndürmez." #: library/stdtypes.rst:1146 #, fuzzy msgid "" -":meth:`clear` and :meth:`!copy` are included for consistency with the interfaces of mutable " -"containers that don't support slicing operations (such as :class:`dict` and :class:`set`). :" -"meth:`!copy` is not part of the :class:`collections.abc.MutableSequence` ABC, but most " -"concrete mutable sequence classes provide it." +":meth:`clear` and :meth:`!copy` are included for consistency with the " +"interfaces of mutable containers that don't support slicing operations (such " +"as :class:`dict` and :class:`set`). :meth:`!copy` is not part of the :class:" +"`collections.abc.MutableSequence` ABC, but most concrete mutable sequence " +"classes provide it." msgstr "" -":meth:`clear` ve :meth:`!copy`, dilimleme işlemlerini desteklemeyen değiştirilebilir " -"containerların (örneğin :class:`dict` ve :class:`set` gibi) arayüzleriyle tutarlılık için " -"dahil edilmiştir. :meth:`!copy`, :class:`collections.abc.MutableSequence` ABC'nin bir parçası " -"değildir, ancak çoğu somut değiştirilebilir dizi sınıfı bunu sağlar." +":meth:`clear` ve :meth:`!copy`, dilimleme işlemlerini desteklemeyen " +"değiştirilebilir containerların (örneğin :class:`dict` ve :class:`set` gibi) " +"arayüzleriyle tutarlılık için dahil edilmiştir. :meth:`!copy`, :class:" +"`collections.abc.MutableSequence` ABC'nin bir parçası değildir, ancak çoğu " +"somut değiştirilebilir dizi sınıfı bunu sağlar." #: library/stdtypes.rst:1152 msgid ":meth:`clear` and :meth:`!copy` methods." @@ -1730,13 +1897,15 @@ msgstr ":meth:`clear` ve :meth:`!copy` metotları." #: library/stdtypes.rst:1156 msgid "" -"The value *n* is an integer, or an object implementing :meth:`~object.__index__`. Zero and " -"negative values of *n* clear the sequence. Items in the sequence are not copied; they are " -"referenced multiple times, as explained for ``s * n`` under :ref:`typesseq-common`." +"The value *n* is an integer, or an object implementing :meth:`~object." +"__index__`. Zero and negative values of *n* clear the sequence. Items in " +"the sequence are not copied; they are referenced multiple times, as " +"explained for ``s * n`` under :ref:`typesseq-common`." msgstr "" -"*n* değeri bir tam sayıdır veya :meth:`~object.__index__` uygulayan bir nesnedir. *n* 'nin " -"sıfır ve negatif değerleri diziyi temizler. Dizideki öğeler kopyalanmaz; :ref:`typesseq-" -"common` altında ```s * n`` için açıklandığı gibi, bunlara birden çok kez başvurulur." +"*n* değeri bir tam sayıdır veya :meth:`~object.__index__` uygulayan bir " +"nesnedir. *n* 'nin sıfır ve negatif değerleri diziyi temizler. Dizideki " +"öğeler kopyalanmaz; :ref:`typesseq-common` altında ```s * n`` için " +"açıklandığı gibi, bunlara birden çok kez başvurulur." #: library/stdtypes.rst:1165 msgid "Lists" @@ -1744,11 +1913,13 @@ msgstr "Listeler" #: library/stdtypes.rst:1169 msgid "" -"Lists are mutable sequences, typically used to store collections of homogeneous items (where " -"the precise degree of similarity will vary by application)." +"Lists are mutable sequences, typically used to store collections of " +"homogeneous items (where the precise degree of similarity will vary by " +"application)." msgstr "" -"Listeler, tipik olarak (kesin benzerlik derecesinin uygulamaya göre değişeceği) homojen " -"öğelerin koleksiyonlarını depolamak için kullanılan değiştirilebilir dizilerdir." +"Listeler, tipik olarak (kesin benzerlik derecesinin uygulamaya göre " +"değişeceği) homojen öğelerin koleksiyonlarını depolamak için kullanılan " +"değiştirilebilir dizilerdir." #: library/stdtypes.rst:1175 msgid "Lists may be constructed in several ways:" @@ -1759,8 +1930,10 @@ msgid "Using a pair of square brackets to denote the empty list: ``[]``" msgstr "Boş listeyi belirtmek için bir çift köşeli parantez kullanma: ``[]``" #: library/stdtypes.rst:1178 -msgid "Using square brackets, separating items with commas: ``[a]``, ``[a, b, c]``" -msgstr "Köşeli parantez kullanarak, öğeleri virgülle ayırarak: ``[a]``, ``[a, b, c]``" +msgid "" +"Using square brackets, separating items with commas: ``[a]``, ``[a, b, c]``" +msgstr "" +"Köşeli parantez kullanarak, öğeleri virgülle ayırarak: ``[a]``, ``[a, b, c]``" #: library/stdtypes.rst:1179 msgid "Using a list comprehension: ``[x for x in iterable]``" @@ -1772,113 +1945,133 @@ msgstr "Tür oluşturucuyu kullanma: ``list()`` veya ``list(iterable)``" #: library/stdtypes.rst:1182 msgid "" -"The constructor builds a list whose items are the same and in the same order as *iterable*'s " -"items. *iterable* may be either a sequence, a container that supports iteration, or an " -"iterator object. If *iterable* is already a list, a copy is made and returned, similar to " -"``iterable[:]``. For example, ``list('abc')`` returns ``['a', 'b', 'c']`` and ``list( (1, 2, " -"3) )`` returns ``[1, 2, 3]``. If no argument is given, the constructor creates a new empty " -"list, ``[]``." -msgstr "" -"Yapıcı, öğeleri *iterable* 'ın öğeleriyle aynı ve aynı sırada olan bir liste oluşturur. " -"*iterable*; bir dizi, yinelemeyi destekleyen bir container veya yineleyici nesne olabilir. " -"*iterable* zaten bir listeyse, ``iterable[:]`` 'e benzer şekilde bir kopya oluşturulur ve " -"döndürülür. Örneğin, ``list('abc')``, ``['a', 'b', 'c']`` değerini döndürür ve ``list( (1, 2, " -"3) )``, ``[ 1, 2, 3]``. Argüman verilmezse, yapıcı ``[]`` yeni bir boş liste oluşturur." +"The constructor builds a list whose items are the same and in the same order " +"as *iterable*'s items. *iterable* may be either a sequence, a container " +"that supports iteration, or an iterator object. If *iterable* is already a " +"list, a copy is made and returned, similar to ``iterable[:]``. For example, " +"``list('abc')`` returns ``['a', 'b', 'c']`` and ``list( (1, 2, 3) )`` " +"returns ``[1, 2, 3]``. If no argument is given, the constructor creates a " +"new empty list, ``[]``." +msgstr "" +"Yapıcı, öğeleri *iterable* 'ın öğeleriyle aynı ve aynı sırada olan bir liste " +"oluşturur. *iterable*; bir dizi, yinelemeyi destekleyen bir container veya " +"yineleyici nesne olabilir. *iterable* zaten bir listeyse, ``iterable[:]`` " +"'e benzer şekilde bir kopya oluşturulur ve döndürülür. Örneğin, " +"``list('abc')``, ``['a', 'b', 'c']`` değerini döndürür ve ``list( (1, 2, " +"3) )``, ``[ 1, 2, 3]``. Argüman verilmezse, yapıcı ``[]`` yeni bir boş liste " +"oluşturur." #: library/stdtypes.rst:1191 -msgid "Many other operations also produce lists, including the :func:`sorted` built-in." -msgstr "Gömülü :func:`sorted` dahil olmak üzere diğer birçok işlem de listeler üretir." +msgid "" +"Many other operations also produce lists, including the :func:`sorted` built-" +"in." +msgstr "" +"Gömülü :func:`sorted` dahil olmak üzere diğer birçok işlem de listeler " +"üretir." #: library/stdtypes.rst:1194 msgid "" -"Lists implement all of the :ref:`common ` and :ref:`mutable ` sequence operations. Lists also provide the following additional method:" +"Lists implement all of the :ref:`common ` and :ref:`mutable " +"` sequence operations. Lists also provide the following " +"additional method:" msgstr "" -"Listeler, tüm :ref:`common ` ve :ref:`mutable ` dizi " -"işlemlerini uygular. Listeler ayrıca aşağıdaki ek metodu da sağlar:" +"Listeler, tüm :ref:`common ` ve :ref:`mutable ` dizi işlemlerini uygular. Listeler ayrıca aşağıdaki ek metodu da " +"sağlar:" #: library/stdtypes.rst:1200 msgid "" -"This method sorts the list in place, using only ``<`` comparisons between items. Exceptions " -"are not suppressed - if any comparison operations fail, the entire sort operation will fail " -"(and the list will likely be left in a partially modified state)." +"This method sorts the list in place, using only ``<`` comparisons between " +"items. Exceptions are not suppressed - if any comparison operations fail, " +"the entire sort operation will fail (and the list will likely be left in a " +"partially modified state)." msgstr "" -"Bu metot, öğeler arasında yalnızca ``<`` karşılaştırmalarını kullanarak listeyi yerinde " -"sıralar. Hatalar bastırılmaz - herhangi bir karşılaştırma işlemi başarısız olursa, tüm " -"sıralama işlemi başarısız olur (ve liste büyük olasılıkla kısmen değiştirilmiş durumda kalır)." +"Bu metot, öğeler arasında yalnızca ``<`` karşılaştırmalarını kullanarak " +"listeyi yerinde sıralar. Hatalar bastırılmaz - herhangi bir karşılaştırma " +"işlemi başarısız olursa, tüm sıralama işlemi başarısız olur (ve liste büyük " +"olasılıkla kısmen değiştirilmiş durumda kalır)." #: library/stdtypes.rst:1205 msgid "" -":meth:`sort` accepts two arguments that can only be passed by keyword (:ref:`keyword-only " -"arguments `):" -msgstr "" -":meth:`sort` yalnızca anahtar kelime tarafından iletilebilen iki argümanı kabul eder (:ref:" +":meth:`sort` accepts two arguments that can only be passed by keyword (:ref:" "`keyword-only arguments `):" +msgstr "" +":meth:`sort` yalnızca anahtar kelime tarafından iletilebilen iki argümanı " +"kabul eder (:ref:`keyword-only arguments `):" #: library/stdtypes.rst:1208 msgid "" -"*key* specifies a function of one argument that is used to extract a comparison key from each " -"list element (for example, ``key=str.lower``). The key corresponding to each item in the list " -"is calculated once and then used for the entire sorting process. The default value of ``None`` " -"means that list items are sorted directly without calculating a separate key value." +"*key* specifies a function of one argument that is used to extract a " +"comparison key from each list element (for example, ``key=str.lower``). The " +"key corresponding to each item in the list is calculated once and then used " +"for the entire sorting process. The default value of ``None`` means that " +"list items are sorted directly without calculating a separate key value." msgstr "" -"*key*, her liste öğesinden bir karşılaştırma anahtarı çıkarmak için kullanılan bir argümanın " -"işlevini belirtir (örneğin, ``key=str.lower``). Listedeki her bir öğeye karşılık gelen anahtar " -"bir kez hesaplanır ve ardından tüm sıralama işlemi için kullanılır. Varsayılan değer olan " -"``None``, liste öğelerinin ayrı bir anahtar değeri hesaplamadan doğrudan sıralandığı anlamına " -"gelir." +"*key*, her liste öğesinden bir karşılaştırma anahtarı çıkarmak için " +"kullanılan bir argümanın işlevini belirtir (örneğin, ``key=str.lower``). " +"Listedeki her bir öğeye karşılık gelen anahtar bir kez hesaplanır ve " +"ardından tüm sıralama işlemi için kullanılır. Varsayılan değer olan " +"``None``, liste öğelerinin ayrı bir anahtar değeri hesaplamadan doğrudan " +"sıralandığı anlamına gelir." #: library/stdtypes.rst:1215 msgid "" -"The :func:`functools.cmp_to_key` utility is available to convert a 2.x style *cmp* function to " -"a *key* function." +"The :func:`functools.cmp_to_key` utility is available to convert a 2.x style " +"*cmp* function to a *key* function." msgstr "" -":func:`functools.cmp_to_key` yardımcı programı, 2.x stili *cmp* işlevini bir *key* işlevine " -"dönüştürmek için kullanılabilir." +":func:`functools.cmp_to_key` yardımcı programı, 2.x stili *cmp* işlevini bir " +"*key* işlevine dönüştürmek için kullanılabilir." #: library/stdtypes.rst:1218 msgid "" -"*reverse* is a boolean value. If set to ``True``, then the list elements are sorted as if " -"each comparison were reversed." +"*reverse* is a boolean value. If set to ``True``, then the list elements " +"are sorted as if each comparison were reversed." msgstr "" -"*reverse* bir boolean değeridir. ``True`` olarak ayarlanırsa, liste öğeleri, her karşılaştırma " -"tersine çevrilmiş gibi sıralanır." +"*reverse* bir boolean değeridir. ``True`` olarak ayarlanırsa, liste öğeleri, " +"her karşılaştırma tersine çevrilmiş gibi sıralanır." #: library/stdtypes.rst:1221 msgid "" -"This method modifies the sequence in place for economy of space when sorting a large " -"sequence. To remind users that it operates by side effect, it does not return the sorted " -"sequence (use :func:`sorted` to explicitly request a new sorted list instance)." +"This method modifies the sequence in place for economy of space when sorting " +"a large sequence. To remind users that it operates by side effect, it does " +"not return the sorted sequence (use :func:`sorted` to explicitly request a " +"new sorted list instance)." msgstr "" -"Bu yöntem, büyük bir diziyi sıralarken yerden tasarruf sağlamak için diziyi yerinde " -"değiştirir. Kullanıcılara yan etki ile çalıştığını hatırlatmak için, sıralanan diziyi " -"döndürmez (açıkça yeni bir sıralanmış liste örneği istemek için :func:`sorted` kullanın)." +"Bu yöntem, büyük bir diziyi sıralarken yerden tasarruf sağlamak için diziyi " +"yerinde değiştirir. Kullanıcılara yan etki ile çalıştığını hatırlatmak için, " +"sıralanan diziyi döndürmez (açıkça yeni bir sıralanmış liste örneği istemek " +"için :func:`sorted` kullanın)." #: library/stdtypes.rst:1226 msgid "" -"The :meth:`sort` method is guaranteed to be stable. A sort is stable if it guarantees not to " -"change the relative order of elements that compare equal --- this is helpful for sorting in " -"multiple passes (for example, sort by department, then by salary grade)." +"The :meth:`sort` method is guaranteed to be stable. A sort is stable if it " +"guarantees not to change the relative order of elements that compare equal " +"--- this is helpful for sorting in multiple passes (for example, sort by " +"department, then by salary grade)." msgstr "" -":meth:`sort` metodunun kararlı olduğu garanti edilir. Bir sıralama, eşit olarak " -"karşılaştırılan öğelerin göreli sırasını değiştirmemeyi garanti ediyorsa kararlıdır --- bu, " -"birden çok geçişte sıralama için yararlıdır (örneğin, departmana göre sıralama, ardından maaş " -"derecesine göre)." +":meth:`sort` metodunun kararlı olduğu garanti edilir. Bir sıralama, eşit " +"olarak karşılaştırılan öğelerin göreli sırasını değiştirmemeyi garanti " +"ediyorsa kararlıdır --- bu, birden çok geçişte sıralama için yararlıdır " +"(örneğin, departmana göre sıralama, ardından maaş derecesine göre)." #: library/stdtypes.rst:1231 -msgid "For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." -msgstr "Sıralama örnekleri ve kısa bir sıralama eğitimi için bkz. :ref:`sortinghowto`." +msgid "" +"For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." +msgstr "" +"Sıralama örnekleri ve kısa bir sıralama eğitimi için bkz. :ref:" +"`sortinghowto`." #: library/stdtypes.rst:1235 msgid "" -"While a list is being sorted, the effect of attempting to mutate, or even inspect, the list is " -"undefined. The C implementation of Python makes the list appear empty for the duration, and " -"raises :exc:`ValueError` if it can detect that the list has been mutated during a sort." +"While a list is being sorted, the effect of attempting to mutate, or even " +"inspect, the list is undefined. The C implementation of Python makes the " +"list appear empty for the duration, and raises :exc:`ValueError` if it can " +"detect that the list has been mutated during a sort." msgstr "" -"Bir liste sıralanırken, listeyi değiştirmeye ve hatta incelemeye çalışmanın etkisi " -"tanımsızdır. Python'un C uygulaması, listenin süre boyunca boş görünmesini sağlar ve bir " -"sıralama sırasında listenin mutasyona uğradığını algılayabilirse :exc:`ValueError` hatasını " -"verir." +"Bir liste sıralanırken, listeyi değiştirmeye ve hatta incelemeye çalışmanın " +"etkisi tanımsızdır. Python'un C uygulaması, listenin süre boyunca boş " +"görünmesini sağlar ve bir sıralama sırasında listenin mutasyona uğradığını " +"algılayabilirse :exc:`ValueError` hatasını verir." #: library/stdtypes.rst:1244 msgid "Tuples" @@ -1886,15 +2079,17 @@ msgstr "Demetler" #: library/stdtypes.rst:1248 msgid "" -"Tuples are immutable sequences, typically used to store collections of heterogeneous data " -"(such as the 2-tuples produced by the :func:`enumerate` built-in). Tuples are also used for " -"cases where an immutable sequence of homogeneous data is needed (such as allowing storage in " -"a :class:`set` or :class:`dict` instance)." +"Tuples are immutable sequences, typically used to store collections of " +"heterogeneous data (such as the 2-tuples produced by the :func:`enumerate` " +"built-in). Tuples are also used for cases where an immutable sequence of " +"homogeneous data is needed (such as allowing storage in a :class:`set` or :" +"class:`dict` instance)." msgstr "" -"Tuple'lar, tipik olarak heterojen veri koleksiyonlarını depolamak için kullanılan " -"değiştirilemez dizilerdir (örneğin, gömülü :func:`enumerate` tarafından üretilen 2 tuple). " -"Tuple'lar, değiştirilemez bir homojen veri dizisinin gerekli olduğu durumlarda da kullanılır " -"(bir :class:`set` veya :class:`dict` örneğinde depolamaya izin vermek gibi)." +"Tuple'lar, tipik olarak heterojen veri koleksiyonlarını depolamak için " +"kullanılan değiştirilemez dizilerdir (örneğin, gömülü :func:`enumerate` " +"tarafından üretilen 2 tuple). Tuple'lar, değiştirilemez bir homojen veri " +"dizisinin gerekli olduğu durumlarda da kullanılır (bir :class:`set` veya :" +"class:`dict` örneğinde depolamaya izin vermek gibi)." #: library/stdtypes.rst:1256 msgid "Tuples may be constructed in a number of ways:" @@ -1918,41 +2113,51 @@ msgstr "Gömülü :func:`tuple` kullanmak: ``tuple()`` veya ``tuple(iterable)``" #: library/stdtypes.rst:1263 msgid "" -"The constructor builds a tuple whose items are the same and in the same order as *iterable*'s " -"items. *iterable* may be either a sequence, a container that supports iteration, or an " -"iterator object. If *iterable* is already a tuple, it is returned unchanged. For example, " -"``tuple('abc')`` returns ``('a', 'b', 'c')`` and ``tuple( [1, 2, 3] )`` returns ``(1, 2, 3)``. " -"If no argument is given, the constructor creates a new empty tuple, ``()``." -msgstr "" -"Yapıcı, öğeleri *iterable* öğeleriyle aynı ve aynı sırada olan bir demet oluşturur. " -"*iterable* bir dizi, yinelemeyi destekleyen bir container veya yineleyici nesne olabilir. " -"*iterable* zaten bir tuple ise, değiştirilmeden döndürülür. Örneğin, ``tuple('abc')``, ``('a', " -"'b', 'c')`` 'yi ve ``tuple( [1, 2, 3] )``, ``(1, 2, 3)`` 'yi döndürür. Herhangi bir argüman " +"The constructor builds a tuple whose items are the same and in the same " +"order as *iterable*'s items. *iterable* may be either a sequence, a " +"container that supports iteration, or an iterator object. If *iterable* is " +"already a tuple, it is returned unchanged. For example, ``tuple('abc')`` " +"returns ``('a', 'b', 'c')`` and ``tuple( [1, 2, 3] )`` returns ``(1, 2, " +"3)``. If no argument is given, the constructor creates a new empty tuple, " +"``()``." +msgstr "" +"Yapıcı, öğeleri *iterable* öğeleriyle aynı ve aynı sırada olan bir demet " +"oluşturur. *iterable* bir dizi, yinelemeyi destekleyen bir container veya " +"yineleyici nesne olabilir. *iterable* zaten bir tuple ise, değiştirilmeden " +"döndürülür. Örneğin, ``tuple('abc')``, ``('a', 'b', 'c')`` 'yi ve " +"``tuple( [1, 2, 3] )``, ``(1, 2, 3)`` 'yi döndürür. Herhangi bir argüman " "verilmezse, yapıcı yeni bir boş demet oluşturur ``()``." #: library/stdtypes.rst:1271 msgid "" -"Note that it is actually the comma which makes a tuple, not the parentheses. The parentheses " -"are optional, except in the empty tuple case, or when they are needed to avoid syntactic " -"ambiguity. For example, ``f(a, b, c)`` is a function call with three arguments, while ``f((a, " -"b, c))`` is a function call with a 3-tuple as the sole argument." +"Note that it is actually the comma which makes a tuple, not the parentheses. " +"The parentheses are optional, except in the empty tuple case, or when they " +"are needed to avoid syntactic ambiguity. For example, ``f(a, b, c)`` is a " +"function call with three arguments, while ``f((a, b, c))`` is a function " +"call with a 3-tuple as the sole argument." msgstr "" -"Bir demeti oluşturanın aslında parantez değil virgül olduğuna dikkat edin. Boş demet durumunda " -"veya söz dizimsel belirsizliği önlemek için gerektiğinde parantezler isteğe bağlıdır. Örneğin, " -"``f(a, b, c)`` üç argümanlı bir fonksiyon çağrısı iken ``f((a, b, c))``, tek argüman olarak " -"3'lü bir tuple içeren bir fonksiyon çağrısıdır." +"Bir demeti oluşturanın aslında parantez değil virgül olduğuna dikkat edin. " +"Boş demet durumunda veya söz dizimsel belirsizliği önlemek için gerektiğinde " +"parantezler isteğe bağlıdır. Örneğin, ``f(a, b, c)`` üç argümanlı bir " +"fonksiyon çağrısı iken ``f((a, b, c))``, tek argüman olarak 3'lü bir tuple " +"içeren bir fonksiyon çağrısıdır." #: library/stdtypes.rst:1277 -msgid "Tuples implement all of the :ref:`common ` sequence operations." -msgstr "Tuple'lar, tüm :ref:`common ` dizi işlemlerini uygular." +msgid "" +"Tuples implement all of the :ref:`common ` sequence " +"operations." +msgstr "" +"Tuple'lar, tüm :ref:`common ` dizi işlemlerini uygular." #: library/stdtypes.rst:1280 msgid "" -"For heterogeneous collections of data where access by name is clearer than access by index, :" -"func:`collections.namedtuple` may be a more appropriate choice than a simple tuple object." +"For heterogeneous collections of data where access by name is clearer than " +"access by index, :func:`collections.namedtuple` may be a more appropriate " +"choice than a simple tuple object." msgstr "" -"Ada göre erişimin dizine göre erişimden daha net olduğu heterojen veri koleksiyonları için, :" -"func:`collections.namedtuple` basit bir tuple nesnesinden daha uygun bir seçim olabilir." +"Ada göre erişimin dizine göre erişimden daha net olduğu heterojen veri " +"koleksiyonları için, :func:`collections.namedtuple` basit bir tuple " +"nesnesinden daha uygun bir seçim olabilir." #: library/stdtypes.rst:1288 msgid "Ranges" @@ -1960,57 +2165,64 @@ msgstr "Aralıklar" #: library/stdtypes.rst:1292 msgid "" -"The :class:`range` type represents an immutable sequence of numbers and is commonly used for " -"looping a specific number of times in :keyword:`for` loops." +"The :class:`range` type represents an immutable sequence of numbers and is " +"commonly used for looping a specific number of times in :keyword:`for` loops." msgstr "" -":class:`range` türü, değiştirilemez bir sayı dizisini temsil eder ve genellikle :keyword:`for` " -"döngülerinde belirli sayıda döngü yapmak için kullanılır." +":class:`range` türü, değiştirilemez bir sayı dizisini temsil eder ve " +"genellikle :keyword:`for` döngülerinde belirli sayıda döngü yapmak için " +"kullanılır." #: library/stdtypes.rst:1299 msgid "" -"The arguments to the range constructor must be integers (either built-in :class:`int` or any " -"object that implements the :meth:`~object.__index__` special method). If the *step* argument " -"is omitted, it defaults to ``1``. If the *start* argument is omitted, it defaults to ``0``. If " -"*step* is zero, :exc:`ValueError` is raised." +"The arguments to the range constructor must be integers (either built-in :" +"class:`int` or any object that implements the :meth:`~object.__index__` " +"special method). If the *step* argument is omitted, it defaults to ``1``. " +"If the *start* argument is omitted, it defaults to ``0``. If *step* is " +"zero, :exc:`ValueError` is raised." msgstr "" -"Aralık oluşturucunun argümanları tamsayı olmalıdır (gömülü :class:`int` veya :meth:`~object." -"__index__` özel metodunu uygulayan herhangi bir nesne). *step* argümanı atlanırsa, varsayılan " -"olarak ``1`` olur. *start* argümanı atlanırsa, varsayılan olarak ``0`` olur. *step* sıfırsa, :" -"exc:`ValueError` hatası ortaya çıkar." +"Aralık oluşturucunun argümanları tamsayı olmalıdır (gömülü :class:`int` " +"veya :meth:`~object.__index__` özel metodunu uygulayan herhangi bir nesne). " +"*step* argümanı atlanırsa, varsayılan olarak ``1`` olur. *start* argümanı " +"atlanırsa, varsayılan olarak ``0`` olur. *step* sıfırsa, :exc:`ValueError` " +"hatası ortaya çıkar." #: library/stdtypes.rst:1305 msgid "" -"For a positive *step*, the contents of a range ``r`` are determined by the formula ``r[i] = " -"start + step*i`` where ``i >= 0`` and ``r[i] < stop``." +"For a positive *step*, the contents of a range ``r`` are determined by the " +"formula ``r[i] = start + step*i`` where ``i >= 0`` and ``r[i] < stop``." msgstr "" -"Pozitif *step* için, ``r`` aralığının içeriği, ``i >= 0`` ve ``r[i] < stop`` olmak üzere " -"``r[i] = start + step*i`` formülüyle belirlenir." +"Pozitif *step* için, ``r`` aralığının içeriği, ``i >= 0`` ve ``r[i] < stop`` " +"olmak üzere ``r[i] = start + step*i`` formülüyle belirlenir." #: library/stdtypes.rst:1309 msgid "" -"For a negative *step*, the contents of the range are still determined by the formula ``r[i] = " -"start + step*i``, but the constraints are ``i >= 0`` and ``r[i] > stop``." +"For a negative *step*, the contents of the range are still determined by the " +"formula ``r[i] = start + step*i``, but the constraints are ``i >= 0`` and " +"``r[i] > stop``." msgstr "" -"Negatif bir *step* için, aralığın içeriği hala ``r[i] = start + step*i`` formülüyle " -"belirlenir, ancak kısıtlamalar ``i >= 0`` ve ``r[i] > stop`` 'dir." +"Negatif bir *step* için, aralığın içeriği hala ``r[i] = start + step*i`` " +"formülüyle belirlenir, ancak kısıtlamalar ``i >= 0`` ve ``r[i] > stop`` 'dir." #: library/stdtypes.rst:1313 msgid "" -"A range object will be empty if ``r[0]`` does not meet the value constraint. Ranges do support " -"negative indices, but these are interpreted as indexing from the end of the sequence " -"determined by the positive indices." +"A range object will be empty if ``r[0]`` does not meet the value constraint. " +"Ranges do support negative indices, but these are interpreted as indexing " +"from the end of the sequence determined by the positive indices." msgstr "" -"Bir aralık nesnesi ``r[0]`` değer kısıtlamasını karşılamıyorsa, boş olacaktır. Aralıklar " -"negatif indeksleri destekler, ancak bunlar pozitif indeksler tarafından belirlenen dizinin " -"sonundan indeksleme olarak yorumlanır." +"Bir aralık nesnesi ``r[0]`` değer kısıtlamasını karşılamıyorsa, boş " +"olacaktır. Aralıklar negatif indeksleri destekler, ancak bunlar pozitif " +"indeksler tarafından belirlenen dizinin sonundan indeksleme olarak " +"yorumlanır." #: library/stdtypes.rst:1318 msgid "" -"Ranges containing absolute values larger than :data:`sys.maxsize` are permitted but some " -"features (such as :func:`len`) may raise :exc:`OverflowError`." +"Ranges containing absolute values larger than :data:`sys.maxsize` are " +"permitted but some features (such as :func:`len`) may raise :exc:" +"`OverflowError`." msgstr "" -":data:`sys.maxsize` 'dan büyük mutlak değerler içeren aralıklara izin verilir, ancak bazı " -"özellikler (:func:`len` gibi), :exc:`OverflowError` hatasınının ortaya çıkmasını sağlayabilir." +":data:`sys.maxsize` 'dan büyük mutlak değerler içeren aralıklara izin " +"verilir, ancak bazı özellikler (:func:`len` gibi), :exc:`OverflowError` " +"hatasınının ortaya çıkmasını sağlayabilir." #: library/stdtypes.rst:1322 msgid "Range examples::" @@ -2018,17 +2230,20 @@ msgstr "Aralık örnekleri::" #: library/stdtypes.rst:1339 msgid "" -"Ranges implement all of the :ref:`common ` sequence operations except " -"concatenation and repetition (due to the fact that range objects can only represent sequences " -"that follow a strict pattern and repetition and concatenation will usually violate that " -"pattern)." +"Ranges implement all of the :ref:`common ` sequence " +"operations except concatenation and repetition (due to the fact that range " +"objects can only represent sequences that follow a strict pattern and " +"repetition and concatenation will usually violate that pattern)." msgstr "" -"Aralıklar, birleştirme ve tekrar dışında tüm :ref:`common ` dizi işlemlerini " -"uygular (aralık nesnelerinin yalnızca katı bir kalıp izleyen dizileri temsil edebilmesi ve " -"tekrarlama ve birleştirmenin genellikle bu kalıbı ihlal etmesi nedeniyle)." +"Aralıklar, birleştirme ve tekrar dışında tüm :ref:`common ` " +"dizi işlemlerini uygular (aralık nesnelerinin yalnızca katı bir kalıp " +"izleyen dizileri temsil edebilmesi ve tekrarlama ve birleştirmenin " +"genellikle bu kalıbı ihlal etmesi nedeniyle)." #: library/stdtypes.rst:1346 -msgid "The value of the *start* parameter (or ``0`` if the parameter was not supplied)" +msgid "" +"The value of the *start* parameter (or ``0`` if the parameter was not " +"supplied)" msgstr "*start* parametresinin değeri (veya parametre sağlanmadıysa ``0``)" #: library/stdtypes.rst:1351 @@ -2036,57 +2251,66 @@ msgid "The value of the *stop* parameter" msgstr "*stop* parametresinin değeri" #: library/stdtypes.rst:1355 -msgid "The value of the *step* parameter (or ``1`` if the parameter was not supplied)" +msgid "" +"The value of the *step* parameter (or ``1`` if the parameter was not " +"supplied)" msgstr "*step* parametresinin değeri (veya parametre sağlanmadıysa ``1``)" #: library/stdtypes.rst:1358 msgid "" -"The advantage of the :class:`range` type over a regular :class:`list` or :class:`tuple` is " -"that a :class:`range` object will always take the same (small) amount of memory, no matter the " -"size of the range it represents (as it only stores the ``start``, ``stop`` and ``step`` " -"values, calculating individual items and subranges as needed)." +"The advantage of the :class:`range` type over a regular :class:`list` or :" +"class:`tuple` is that a :class:`range` object will always take the same " +"(small) amount of memory, no matter the size of the range it represents (as " +"it only stores the ``start``, ``stop`` and ``step`` values, calculating " +"individual items and subranges as needed)." msgstr "" -":class:`range` türünün normal bir :class:`list` veya :class:`tuple` üzerindeki avantajı, bir :" -"class:`range` nesnesinin temsil ettiği aralığın boyutu ne olursa olsun her zaman aynı (küçük) " -"miktarda bellek almasıdır (yalnızca ``start``, ``stop`` ve ``step`` değerlerini sakladığı " -"için, tek tek öğeleri ve alt aralıkları gerektiği gibi hesaplar)." +":class:`range` türünün normal bir :class:`list` veya :class:`tuple` " +"üzerindeki avantajı, bir :class:`range` nesnesinin temsil ettiği aralığın " +"boyutu ne olursa olsun her zaman aynı (küçük) miktarda bellek almasıdır " +"(yalnızca ``start``, ``stop`` ve ``step`` değerlerini sakladığı için, tek " +"tek öğeleri ve alt aralıkları gerektiği gibi hesaplar)." #: library/stdtypes.rst:1364 msgid "" -"Range objects implement the :class:`collections.abc.Sequence` ABC, and provide features such " -"as containment tests, element index lookup, slicing and support for negative indices (see :ref:" -"`typesseq`):" +"Range objects implement the :class:`collections.abc.Sequence` ABC, and " +"provide features such as containment tests, element index lookup, slicing " +"and support for negative indices (see :ref:`typesseq`):" msgstr "" #: library/stdtypes.rst:1384 msgid "" -"Testing range objects for equality with ``==`` and ``!=`` compares them as sequences. That " -"is, two range objects are considered equal if they represent the same sequence of values. " -"(Note that two range objects that compare equal might have different :attr:`~range.start`, :" -"attr:`~range.stop` and :attr:`~range.step` attributes, for example ``range(0) == range(2, 1, " +"Testing range objects for equality with ``==`` and ``!=`` compares them as " +"sequences. That is, two range objects are considered equal if they " +"represent the same sequence of values. (Note that two range objects that " +"compare equal might have different :attr:`~range.start`, :attr:`~range.stop` " +"and :attr:`~range.step` attributes, for example ``range(0) == range(2, 1, " "3)`` or ``range(0, 3, 2) == range(0, 4, 2)``.)" msgstr "" #: library/stdtypes.rst:1391 msgid "" -"Implement the Sequence ABC. Support slicing and negative indices. Test :class:`int` objects " -"for membership in constant time instead of iterating through all items." +"Implement the Sequence ABC. Support slicing and negative indices. Test :" +"class:`int` objects for membership in constant time instead of iterating " +"through all items." msgstr "" #: library/stdtypes.rst:1397 msgid "" -"Define '==' and '!=' to compare range objects based on the sequence of values they define " -"(instead of comparing based on object identity)." +"Define '==' and '!=' to compare range objects based on the sequence of " +"values they define (instead of comparing based on object identity)." msgstr "" #: library/stdtypes.rst:1402 -msgid "The :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` attributes." +msgid "" +"The :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` " +"attributes." msgstr "" #: library/stdtypes.rst:1408 msgid "" -"The `linspace recipe `_ shows how to implement a " -"lazy version of range suitable for floating point applications." +"The `linspace recipe `_ shows " +"how to implement a lazy version of range suitable for floating point " +"applications." msgstr "" #: library/stdtypes.rst:1420 @@ -2095,9 +2319,9 @@ msgstr "" #: library/stdtypes.rst:1422 msgid "" -"Textual data in Python is handled with :class:`str` objects, or :dfn:`strings`. Strings are " -"immutable :ref:`sequences ` of Unicode code points. String literals are written in " -"a variety of ways:" +"Textual data in Python is handled with :class:`str` objects, or :dfn:" +"`strings`. Strings are immutable :ref:`sequences ` of Unicode code " +"points. String literals are written in a variety of ways:" msgstr "" #: library/stdtypes.rst:1427 @@ -2109,88 +2333,99 @@ msgid "Double quotes: ``\"allows embedded 'single' quotes\"``." msgstr "" #: library/stdtypes.rst:1429 -msgid "Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double quotes\"\"\"``" +msgid "" +"Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double quotes" +"\"\"\"``" msgstr "" #: library/stdtypes.rst:1431 msgid "" -"Triple quoted strings may span multiple lines - all associated whitespace will be included in " -"the string literal." +"Triple quoted strings may span multiple lines - all associated whitespace " +"will be included in the string literal." msgstr "" #: library/stdtypes.rst:1434 msgid "" -"String literals that are part of a single expression and have only whitespace between them " -"will be implicitly converted to a single string literal. That is, ``(\"spam \" \"eggs\") == " -"\"spam eggs\"``." +"String literals that are part of a single expression and have only " +"whitespace between them will be implicitly converted to a single string " +"literal. That is, ``(\"spam \" \"eggs\") == \"spam eggs\"``." msgstr "" #: library/stdtypes.rst:1438 msgid "" -"See :ref:`strings` for more about the various forms of string literal, including supported " -"escape sequences, and the ``r`` (\"raw\") prefix that disables most escape sequence processing." +"See :ref:`strings` for more about the various forms of string literal, " +"including supported escape sequences, and the ``r`` (\"raw\") prefix that " +"disables most escape sequence processing." msgstr "" #: library/stdtypes.rst:1442 -msgid "Strings may also be created from other objects using the :class:`str` constructor." +msgid "" +"Strings may also be created from other objects using the :class:`str` " +"constructor." msgstr "" #: library/stdtypes.rst:1445 msgid "" -"Since there is no separate \"character\" type, indexing a string produces strings of length 1. " -"That is, for a non-empty string *s*, ``s[0] == s[0:1]``." +"Since there is no separate \"character\" type, indexing a string produces " +"strings of length 1. That is, for a non-empty string *s*, ``s[0] == s[0:1]``." msgstr "" #: library/stdtypes.rst:1451 msgid "" -"There is also no mutable string type, but :meth:`str.join` or :class:`io.StringIO` can be used " -"to efficiently construct strings from multiple fragments." +"There is also no mutable string type, but :meth:`str.join` or :class:`io." +"StringIO` can be used to efficiently construct strings from multiple " +"fragments." msgstr "" #: library/stdtypes.rst:1455 msgid "" -"For backwards compatibility with the Python 2 series, the ``u`` prefix is once again permitted " -"on string literals. It has no effect on the meaning of string literals and cannot be combined " -"with the ``r`` prefix." +"For backwards compatibility with the Python 2 series, the ``u`` prefix is " +"once again permitted on string literals. It has no effect on the meaning of " +"string literals and cannot be combined with the ``r`` prefix." msgstr "" #: library/stdtypes.rst:1467 msgid "" -"Return a :ref:`string ` version of *object*. If *object* is not provided, returns " -"the empty string. Otherwise, the behavior of ``str()`` depends on whether *encoding* or " -"*errors* is given, as follows." +"Return a :ref:`string ` version of *object*. If *object* is not " +"provided, returns the empty string. Otherwise, the behavior of ``str()`` " +"depends on whether *encoding* or *errors* is given, as follows." msgstr "" #: library/stdtypes.rst:1471 msgid "" -"If neither *encoding* nor *errors* is given, ``str(object)`` returns :meth:`object.__str__() " -"`, which is the \"informal\" or nicely printable string representation of " -"*object*. For string objects, this is the string itself. If *object* does not have a :meth:" -"`~object.__str__` method, then :func:`str` falls back to returning :meth:`repr(object) `." +"If neither *encoding* nor *errors* is given, ``str(object)`` returns :meth:" +"`object.__str__() `, which is the \"informal\" or nicely " +"printable string representation of *object*. For string objects, this is " +"the string itself. If *object* does not have a :meth:`~object.__str__` " +"method, then :func:`str` falls back to returning :meth:`repr(object) `." msgstr "" #: library/stdtypes.rst:1482 msgid "" -"If at least one of *encoding* or *errors* is given, *object* should be a :term:`bytes-like " -"object` (e.g. :class:`bytes` or :class:`bytearray`). In this case, if *object* is a :class:" -"`bytes` (or :class:`bytearray`) object, then ``str(bytes, encoding, errors)`` is equivalent " -"to :meth:`bytes.decode(encoding, errors) `. Otherwise, the bytes object " -"underlying the buffer object is obtained before calling :meth:`bytes.decode`. See :ref:" -"`binaryseq` and :ref:`bufferobjects` for information on buffer objects." +"If at least one of *encoding* or *errors* is given, *object* should be a :" +"term:`bytes-like object` (e.g. :class:`bytes` or :class:`bytearray`). In " +"this case, if *object* is a :class:`bytes` (or :class:`bytearray`) object, " +"then ``str(bytes, encoding, errors)`` is equivalent to :meth:`bytes." +"decode(encoding, errors) `. Otherwise, the bytes object " +"underlying the buffer object is obtained before calling :meth:`bytes." +"decode`. See :ref:`binaryseq` and :ref:`bufferobjects` for information on " +"buffer objects." msgstr "" #: library/stdtypes.rst:1491 msgid "" -"Passing a :class:`bytes` object to :func:`str` without the *encoding* or *errors* arguments " -"falls under the first case of returning the informal string representation (see also the :" -"option:`-b` command-line option to Python). For example::" +"Passing a :class:`bytes` object to :func:`str` without the *encoding* or " +"*errors* arguments falls under the first case of returning the informal " +"string representation (see also the :option:`-b` command-line option to " +"Python). For example::" msgstr "" #: library/stdtypes.rst:1499 msgid "" -"For more information on the ``str`` class and its methods, see :ref:`textseq` and the :ref:" -"`string-methods` section below. To output formatted strings, see the :ref:`f-strings` and :" -"ref:`formatstrings` sections. In addition, see the :ref:`stringservices` section." +"For more information on the ``str`` class and its methods, see :ref:" +"`textseq` and the :ref:`string-methods` section below. To output formatted " +"strings, see the :ref:`f-strings` and :ref:`formatstrings` sections. In " +"addition, see the :ref:`stringservices` section." msgstr "" #: library/stdtypes.rst:1511 @@ -2199,82 +2434,92 @@ msgstr "" #: library/stdtypes.rst:1516 msgid "" -"Strings implement all of the :ref:`common ` sequence operations, along with " -"the additional methods described below." +"Strings implement all of the :ref:`common ` sequence " +"operations, along with the additional methods described below." msgstr "" #: library/stdtypes.rst:1519 msgid "" -"Strings also support two styles of string formatting, one providing a large degree of " -"flexibility and customization (see :meth:`str.format`, :ref:`formatstrings` and :ref:`string-" -"formatting`) and the other based on C ``printf`` style formatting that handles a narrower " -"range of types and is slightly harder to use correctly, but is often faster for the cases it " -"can handle (:ref:`old-string-formatting`)." +"Strings also support two styles of string formatting, one providing a large " +"degree of flexibility and customization (see :meth:`str.format`, :ref:" +"`formatstrings` and :ref:`string-formatting`) and the other based on C " +"``printf`` style formatting that handles a narrower range of types and is " +"slightly harder to use correctly, but is often faster for the cases it can " +"handle (:ref:`old-string-formatting`)." msgstr "" #: library/stdtypes.rst:1526 msgid "" -"The :ref:`textservices` section of the standard library covers a number of other modules that " -"provide various text related utilities (including regular expression support in the :mod:`re` " -"module)." +"The :ref:`textservices` section of the standard library covers a number of " +"other modules that provide various text related utilities (including regular " +"expression support in the :mod:`re` module)." msgstr "" #: library/stdtypes.rst:1532 -msgid "Return a copy of the string with its first character capitalized and the rest lowercased." +msgid "" +"Return a copy of the string with its first character capitalized and the " +"rest lowercased." msgstr "" #: library/stdtypes.rst:1535 msgid "" -"The first character is now put into titlecase rather than uppercase. This means that " -"characters like digraphs will only have their first letter capitalized, instead of the full " -"character." +"The first character is now put into titlecase rather than uppercase. This " +"means that characters like digraphs will only have their first letter " +"capitalized, instead of the full character." msgstr "" #: library/stdtypes.rst:1542 msgid "" -"Return a casefolded copy of the string. Casefolded strings may be used for caseless matching." +"Return a casefolded copy of the string. Casefolded strings may be used for " +"caseless matching." msgstr "" #: library/stdtypes.rst:1545 msgid "" -"Casefolding is similar to lowercasing but more aggressive because it is intended to remove all " -"case distinctions in a string. For example, the German lowercase letter ``'ß'`` is equivalent " -"to ``\"ss\"``. Since it is already lowercase, :meth:`lower` would do nothing to ``'ß'``; :meth:" +"Casefolding is similar to lowercasing but more aggressive because it is " +"intended to remove all case distinctions in a string. For example, the " +"German lowercase letter ``'ß'`` is equivalent to ``\"ss\"``. Since it is " +"already lowercase, :meth:`lower` would do nothing to ``'ß'``; :meth:" "`casefold` converts it to ``\"ss\"``." msgstr "" #: library/stdtypes.rst:1551 -msgid "The casefolding algorithm is described in section 3.13 of the Unicode Standard." +msgid "" +"The casefolding algorithm is described in section 3.13 of the Unicode " +"Standard." msgstr "" #: library/stdtypes.rst:1559 msgid "" -"Return centered in a string of length *width*. Padding is done using the specified *fillchar* " -"(default is an ASCII space). The original string is returned if *width* is less than or equal " -"to ``len(s)``." +"Return centered in a string of length *width*. Padding is done using the " +"specified *fillchar* (default is an ASCII space). The original string is " +"returned if *width* is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:1567 msgid "" -"Return the number of non-overlapping occurrences of substring *sub* in the range [*start*, " -"*end*]. Optional arguments *start* and *end* are interpreted as in slice notation." +"Return the number of non-overlapping occurrences of substring *sub* in the " +"range [*start*, *end*]. Optional arguments *start* and *end* are " +"interpreted as in slice notation." msgstr "" #: library/stdtypes.rst:1574 msgid "" -"Return an encoded version of the string as a bytes object. Default encoding is ``'utf-8'``. " -"*errors* may be given to set a different error handling scheme. The default for *errors* is " -"``'strict'``, meaning that encoding errors raise a :exc:`UnicodeError`. Other possible values " -"are ``'ignore'``, ``'replace'``, ``'xmlcharrefreplace'``, ``'backslashreplace'`` and any other " -"name registered via :func:`codecs.register_error`, see section :ref:`error-handlers`. For a " -"list of possible encodings, see section :ref:`standard-encodings`." +"Return an encoded version of the string as a bytes object. Default encoding " +"is ``'utf-8'``. *errors* may be given to set a different error handling " +"scheme. The default for *errors* is ``'strict'``, meaning that encoding " +"errors raise a :exc:`UnicodeError`. Other possible values are ``'ignore'``, " +"``'replace'``, ``'xmlcharrefreplace'``, ``'backslashreplace'`` and any other " +"name registered via :func:`codecs.register_error`, see section :ref:`error-" +"handlers`. For a list of possible encodings, see section :ref:`standard-" +"encodings`." msgstr "" #: library/stdtypes.rst:1583 msgid "" -"By default, the *errors* argument is not checked for best performances, but only used at the " -"first encoding error. Enable the :ref:`Python Development Mode `, or use a :ref:" -"`debug build ` to check *errors*." +"By default, the *errors* argument is not checked for best performances, but " +"only used at the first encoding error. Enable the :ref:`Python Development " +"Mode `, or use a :ref:`debug build ` to check *errors*." msgstr "" #: library/stdtypes.rst:1588 @@ -2282,132 +2527,149 @@ msgid "Support for keyword arguments added." msgstr "" #: library/stdtypes.rst:2727 -msgid "The *errors* is now checked in development mode and in :ref:`debug mode `." +msgid "" +"The *errors* is now checked in development mode and in :ref:`debug mode " +"`." msgstr "" #: library/stdtypes.rst:1598 msgid "" -"Return ``True`` if the string ends with the specified *suffix*, otherwise return ``False``. " -"*suffix* can also be a tuple of suffixes to look for. With optional *start*, test beginning " -"at that position. With optional *end*, stop comparing at that position." +"Return ``True`` if the string ends with the specified *suffix*, otherwise " +"return ``False``. *suffix* can also be a tuple of suffixes to look for. " +"With optional *start*, test beginning at that position. With optional " +"*end*, stop comparing at that position." msgstr "" #: library/stdtypes.rst:1606 msgid "" -"Return a copy of the string where all tab characters are replaced by one or more spaces, " -"depending on the current column and the given tab size. Tab positions occur every *tabsize* " -"characters (default is 8, giving tab positions at columns 0, 8, 16 and so on). To expand the " -"string, the current column is set to zero and the string is examined character by character. " -"If the character is a tab (``\\t``), one or more space characters are inserted in the result " -"until the current column is equal to the next tab position. (The tab character itself is not " -"copied.) If the character is a newline (``\\n``) or return (``\\r``), it is copied and the " -"current column is reset to zero. Any other character is copied unchanged and the current " -"column is incremented by one regardless of how the character is represented when printed." +"Return a copy of the string where all tab characters are replaced by one or " +"more spaces, depending on the current column and the given tab size. Tab " +"positions occur every *tabsize* characters (default is 8, giving tab " +"positions at columns 0, 8, 16 and so on). To expand the string, the current " +"column is set to zero and the string is examined character by character. If " +"the character is a tab (``\\t``), one or more space characters are inserted " +"in the result until the current column is equal to the next tab position. " +"(The tab character itself is not copied.) If the character is a newline (``" +"\\n``) or return (``\\r``), it is copied and the current column is reset to " +"zero. Any other character is copied unchanged and the current column is " +"incremented by one regardless of how the character is represented when " +"printed." msgstr "" #: library/stdtypes.rst:1627 msgid "" -"Return the lowest index in the string where substring *sub* is found within the slice " -"``s[start:end]``. Optional arguments *start* and *end* are interpreted as in slice notation. " -"Return ``-1`` if *sub* is not found." +"Return the lowest index in the string where substring *sub* is found within " +"the slice ``s[start:end]``. Optional arguments *start* and *end* are " +"interpreted as in slice notation. Return ``-1`` if *sub* is not found." msgstr "" #: library/stdtypes.rst:1633 msgid "" -"The :meth:`~str.find` method should be used only if you need to know the position of *sub*. " -"To check if *sub* is a substring or not, use the :keyword:`in` operator::" +"The :meth:`~str.find` method should be used only if you need to know the " +"position of *sub*. To check if *sub* is a substring or not, use the :" +"keyword:`in` operator::" msgstr "" #: library/stdtypes.rst:1643 msgid "" -"Perform a string formatting operation. The string on which this method is called can contain " -"literal text or replacement fields delimited by braces ``{}``. Each replacement field " -"contains either the numeric index of a positional argument, or the name of a keyword " -"argument. Returns a copy of the string where each replacement field is replaced with the " -"string value of the corresponding argument." +"Perform a string formatting operation. The string on which this method is " +"called can contain literal text or replacement fields delimited by braces " +"``{}``. Each replacement field contains either the numeric index of a " +"positional argument, or the name of a keyword argument. Returns a copy of " +"the string where each replacement field is replaced with the string value of " +"the corresponding argument." msgstr "" #: library/stdtypes.rst:1653 msgid "" -"See :ref:`formatstrings` for a description of the various formatting options that can be " -"specified in format strings." +"See :ref:`formatstrings` for a description of the various formatting options " +"that can be specified in format strings." msgstr "" #: library/stdtypes.rst:1657 msgid "" -"When formatting a number (:class:`int`, :class:`float`, :class:`complex`, :class:`decimal." -"Decimal` and subclasses) with the ``n`` type (ex: ``'{:n}'.format(1234)``), the function " -"temporarily sets the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale to decode " -"``decimal_point`` and ``thousands_sep`` fields of :c:func:`localeconv` if they are non-ASCII " -"or longer than 1 byte, and the ``LC_NUMERIC`` locale is different than the ``LC_CTYPE`` " -"locale. This temporary change affects other threads." +"When formatting a number (:class:`int`, :class:`float`, :class:`complex`, :" +"class:`decimal.Decimal` and subclasses) with the ``n`` type (ex: ``'{:n}'." +"format(1234)``), the function temporarily sets the ``LC_CTYPE`` locale to " +"the ``LC_NUMERIC`` locale to decode ``decimal_point`` and ``thousands_sep`` " +"fields of :c:func:`localeconv` if they are non-ASCII or longer than 1 byte, " +"and the ``LC_NUMERIC`` locale is different than the ``LC_CTYPE`` locale. " +"This temporary change affects other threads." msgstr "" #: library/stdtypes.rst:1666 msgid "" -"When formatting a number with the ``n`` type, the function sets temporarily the ``LC_CTYPE`` " -"locale to the ``LC_NUMERIC`` locale in some cases." +"When formatting a number with the ``n`` type, the function sets temporarily " +"the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale in some cases." msgstr "" #: library/stdtypes.rst:1674 msgid "" -"Similar to ``str.format(**mapping)``, except that ``mapping`` is used directly and not copied " -"to a :class:`dict`. This is useful if for example ``mapping`` is a dict subclass:" +"Similar to ``str.format(**mapping)``, except that ``mapping`` is used " +"directly and not copied to a :class:`dict`. This is useful if for example " +"``mapping`` is a dict subclass:" msgstr "" #: library/stdtypes.rst:1690 -msgid "Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is not found." +msgid "" +"Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is " +"not found." msgstr "" #: library/stdtypes.rst:1696 msgid "" -"Return ``True`` if all characters in the string are alphanumeric and there is at least one " -"character, ``False`` otherwise. A character ``c`` is alphanumeric if one of the following " -"returns ``True``: ``c.isalpha()``, ``c.isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``." +"Return ``True`` if all characters in the string are alphanumeric and there " +"is at least one character, ``False`` otherwise. A character ``c`` is " +"alphanumeric if one of the following returns ``True``: ``c.isalpha()``, ``c." +"isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``." msgstr "" #: library/stdtypes.rst:1704 msgid "" -"Return ``True`` if all characters in the string are alphabetic and there is at least one " -"character, ``False`` otherwise. Alphabetic characters are those characters defined in the " -"Unicode character database as \"Letter\", i.e., those with general category property being one " -"of \"Lm\", \"Lt\", \"Lu\", \"Ll\", or \"Lo\". Note that this is different from the " -"\"Alphabetic\" property defined in the Unicode Standard." +"Return ``True`` if all characters in the string are alphabetic and there is " +"at least one character, ``False`` otherwise. Alphabetic characters are " +"those characters defined in the Unicode character database as \"Letter\", i." +"e., those with general category property being one of \"Lm\", \"Lt\", \"Lu" +"\", \"Ll\", or \"Lo\". Note that this is different from the \"Alphabetic\" " +"property defined in the Unicode Standard." msgstr "" #: library/stdtypes.rst:1713 msgid "" -"Return ``True`` if the string is empty or all characters in the string are ASCII, ``False`` " -"otherwise. ASCII characters have code points in the range U+0000-U+007F." +"Return ``True`` if the string is empty or all characters in the string are " +"ASCII, ``False`` otherwise. ASCII characters have code points in the range U" +"+0000-U+007F." msgstr "" #: library/stdtypes.rst:1722 msgid "" -"Return ``True`` if all characters in the string are decimal characters and there is at least " -"one character, ``False`` otherwise. Decimal characters are those that can be used to form " -"numbers in base 10, e.g. U+0660, ARABIC-INDIC DIGIT ZERO. Formally a decimal character is a " -"character in the Unicode General Category \"Nd\"." +"Return ``True`` if all characters in the string are decimal characters and " +"there is at least one character, ``False`` otherwise. Decimal characters are " +"those that can be used to form numbers in base 10, e.g. U+0660, ARABIC-INDIC " +"DIGIT ZERO. Formally a decimal character is a character in the Unicode " +"General Category \"Nd\"." msgstr "" #: library/stdtypes.rst:1732 msgid "" -"Return ``True`` if all characters in the string are digits and there is at least one " -"character, ``False`` otherwise. Digits include decimal characters and digits that need " -"special handling, such as the compatibility superscript digits. This covers digits which " -"cannot be used to form numbers in base 10, like the Kharosthi numbers. Formally, a digit is a " -"character that has the property value Numeric_Type=Digit or Numeric_Type=Decimal." +"Return ``True`` if all characters in the string are digits and there is at " +"least one character, ``False`` otherwise. Digits include decimal characters " +"and digits that need special handling, such as the compatibility superscript " +"digits. This covers digits which cannot be used to form numbers in base 10, " +"like the Kharosthi numbers. Formally, a digit is a character that has the " +"property value Numeric_Type=Digit or Numeric_Type=Decimal." msgstr "" #: library/stdtypes.rst:1742 msgid "" -"Return ``True`` if the string is a valid identifier according to the language definition, " -"section :ref:`identifiers`." +"Return ``True`` if the string is a valid identifier according to the " +"language definition, section :ref:`identifiers`." msgstr "" #: library/stdtypes.rst:1745 msgid "" -"Call :func:`keyword.iskeyword` to test whether string ``s`` is a reserved identifier, such as :" -"keyword:`def` and :keyword:`class`." +"Call :func:`keyword.iskeyword` to test whether string ``s`` is a reserved " +"identifier, such as :keyword:`def` and :keyword:`class`." msgstr "" #: library/stdtypes.rst:1748 @@ -2416,226 +2678,249 @@ msgstr "" #: library/stdtypes.rst:1761 msgid "" -"Return ``True`` if all cased characters [4]_ in the string are lowercase and there is at least " -"one cased character, ``False`` otherwise." +"Return ``True`` if all cased characters [4]_ in the string are lowercase and " +"there is at least one cased character, ``False`` otherwise." msgstr "" #: library/stdtypes.rst:1767 msgid "" -"Return ``True`` if all characters in the string are numeric characters, and there is at least " -"one character, ``False`` otherwise. Numeric characters include digit characters, and all " -"characters that have the Unicode numeric value property, e.g. U+2155, VULGAR FRACTION ONE " -"FIFTH. Formally, numeric characters are those with the property value Numeric_Type=Digit, " +"Return ``True`` if all characters in the string are numeric characters, and " +"there is at least one character, ``False`` otherwise. Numeric characters " +"include digit characters, and all characters that have the Unicode numeric " +"value property, e.g. U+2155, VULGAR FRACTION ONE FIFTH. Formally, numeric " +"characters are those with the property value Numeric_Type=Digit, " "Numeric_Type=Decimal or Numeric_Type=Numeric." msgstr "" #: library/stdtypes.rst:1777 msgid "" -"Return ``True`` if all characters in the string are printable or the string is empty, " -"``False`` otherwise. Nonprintable characters are those characters defined in the Unicode " -"character database as \"Other\" or \"Separator\", excepting the ASCII space (0x20) which is " -"considered printable. (Note that printable characters in this context are those which should " -"not be escaped when :func:`repr` is invoked on a string. It has no bearing on the handling of " -"strings written to :data:`sys.stdout` or :data:`sys.stderr`.)" +"Return ``True`` if all characters in the string are printable or the string " +"is empty, ``False`` otherwise. Nonprintable characters are those characters " +"defined in the Unicode character database as \"Other\" or \"Separator\", " +"excepting the ASCII space (0x20) which is considered printable. (Note that " +"printable characters in this context are those which should not be escaped " +"when :func:`repr` is invoked on a string. It has no bearing on the handling " +"of strings written to :data:`sys.stdout` or :data:`sys.stderr`.)" msgstr "" #: library/stdtypes.rst:1788 msgid "" -"Return ``True`` if there are only whitespace characters in the string and there is at least " -"one character, ``False`` otherwise." +"Return ``True`` if there are only whitespace characters in the string and " +"there is at least one character, ``False`` otherwise." msgstr "" #: library/stdtypes.rst:1791 msgid "" -"A character is *whitespace* if in the Unicode character database (see :mod:`unicodedata`), " -"either its general category is ``Zs`` (\"Separator, space\"), or its bidirectional class is " -"one of ``WS``, ``B``, or ``S``." +"A character is *whitespace* if in the Unicode character database (see :mod:" +"`unicodedata`), either its general category is ``Zs`` (\"Separator, space" +"\"), or its bidirectional class is one of ``WS``, ``B``, or ``S``." msgstr "" #: library/stdtypes.rst:1799 msgid "" -"Return ``True`` if the string is a titlecased string and there is at least one character, for " -"example uppercase characters may only follow uncased characters and lowercase characters only " -"cased ones. Return ``False`` otherwise." +"Return ``True`` if the string is a titlecased string and there is at least " +"one character, for example uppercase characters may only follow uncased " +"characters and lowercase characters only cased ones. Return ``False`` " +"otherwise." msgstr "" #: library/stdtypes.rst:1806 msgid "" -"Return ``True`` if all cased characters [4]_ in the string are uppercase and there is at least " -"one cased character, ``False`` otherwise." +"Return ``True`` if all cased characters [4]_ in the string are uppercase and " +"there is at least one cased character, ``False`` otherwise." msgstr "" #: library/stdtypes.rst:1822 msgid "" -"Return a string which is the concatenation of the strings in *iterable*. A :exc:`TypeError` " -"will be raised if there are any non-string values in *iterable*, including :class:`bytes` " -"objects. The separator between elements is the string providing this method." +"Return a string which is the concatenation of the strings in *iterable*. A :" +"exc:`TypeError` will be raised if there are any non-string values in " +"*iterable*, including :class:`bytes` objects. The separator between " +"elements is the string providing this method." msgstr "" #: library/stdtypes.rst:1830 msgid "" -"Return the string left justified in a string of length *width*. Padding is done using the " -"specified *fillchar* (default is an ASCII space). The original string is returned if *width* " -"is less than or equal to ``len(s)``." +"Return the string left justified in a string of length *width*. Padding is " +"done using the specified *fillchar* (default is an ASCII space). The " +"original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:1837 -msgid "Return a copy of the string with all the cased characters [4]_ converted to lowercase." +msgid "" +"Return a copy of the string with all the cased characters [4]_ converted to " +"lowercase." msgstr "" #: library/stdtypes.rst:1840 -msgid "The lowercasing algorithm used is described in section 3.13 of the Unicode Standard." +msgid "" +"The lowercasing algorithm used is described in section 3.13 of the Unicode " +"Standard." msgstr "" #: library/stdtypes.rst:1846 msgid "" -"Return a copy of the string with leading characters removed. The *chars* argument is a string " -"specifying the set of characters to be removed. If omitted or ``None``, the *chars* argument " -"defaults to removing whitespace. The *chars* argument is not a prefix; rather, all " -"combinations of its values are stripped::" +"Return a copy of the string with leading characters removed. The *chars* " +"argument is a string specifying the set of characters to be removed. If " +"omitted or ``None``, the *chars* argument defaults to removing whitespace. " +"The *chars* argument is not a prefix; rather, all combinations of its values " +"are stripped::" msgstr "" #: library/stdtypes.rst:1856 msgid "" -"See :meth:`str.removeprefix` for a method that will remove a single prefix string rather than " -"all of a set of characters. For example::" +"See :meth:`str.removeprefix` for a method that will remove a single prefix " +"string rather than all of a set of characters. For example::" msgstr "" #: library/stdtypes.rst:1867 -msgid "This static method returns a translation table usable for :meth:`str.translate`." +msgid "" +"This static method returns a translation table usable for :meth:`str." +"translate`." msgstr "" #: library/stdtypes.rst:1869 msgid "" -"If there is only one argument, it must be a dictionary mapping Unicode ordinals (integers) or " -"characters (strings of length 1) to Unicode ordinals, strings (of arbitrary lengths) or " -"``None``. Character keys will then be converted to ordinals." +"If there is only one argument, it must be a dictionary mapping Unicode " +"ordinals (integers) or characters (strings of length 1) to Unicode ordinals, " +"strings (of arbitrary lengths) or ``None``. Character keys will then be " +"converted to ordinals." msgstr "" #: library/stdtypes.rst:1874 msgid "" -"If there are two arguments, they must be strings of equal length, and in the resulting " -"dictionary, each character in x will be mapped to the character at the same position in y. If " -"there is a third argument, it must be a string, whose characters will be mapped to ``None`` in " -"the result." +"If there are two arguments, they must be strings of equal length, and in the " +"resulting dictionary, each character in x will be mapped to the character at " +"the same position in y. If there is a third argument, it must be a string, " +"whose characters will be mapped to ``None`` in the result." msgstr "" #: library/stdtypes.rst:1882 msgid "" -"Split the string at the first occurrence of *sep*, and return a 3-tuple containing the part " -"before the separator, the separator itself, and the part after the separator. If the " -"separator is not found, return a 3-tuple containing the string itself, followed by two empty " -"strings." +"Split the string at the first occurrence of *sep*, and return a 3-tuple " +"containing the part before the separator, the separator itself, and the part " +"after the separator. If the separator is not found, return a 3-tuple " +"containing the string itself, followed by two empty strings." msgstr "" #: library/stdtypes.rst:1890 msgid "" -"If the string starts with the *prefix* string, return ``string[len(prefix):]``. Otherwise, " -"return a copy of the original string::" +"If the string starts with the *prefix* string, return " +"``string[len(prefix):]``. Otherwise, return a copy of the original string::" msgstr "" #: library/stdtypes.rst:1904 msgid "" -"If the string ends with the *suffix* string and that *suffix* is not empty, return ``string[:-" -"len(suffix)]``. Otherwise, return a copy of the original string::" +"If the string ends with the *suffix* string and that *suffix* is not empty, " +"return ``string[:-len(suffix)]``. Otherwise, return a copy of the original " +"string::" msgstr "" #: library/stdtypes.rst:1918 msgid "" -"Return a copy of the string with all occurrences of substring *old* replaced by *new*. If the " -"optional argument *count* is given, only the first *count* occurrences are replaced." +"Return a copy of the string with all occurrences of substring *old* replaced " +"by *new*. If the optional argument *count* is given, only the first *count* " +"occurrences are replaced." msgstr "" #: library/stdtypes.rst:1925 msgid "" -"Return the highest index in the string where substring *sub* is found, such that *sub* is " -"contained within ``s[start:end]``. Optional arguments *start* and *end* are interpreted as in " -"slice notation. Return ``-1`` on failure." +"Return the highest index in the string where substring *sub* is found, such " +"that *sub* is contained within ``s[start:end]``. Optional arguments *start* " +"and *end* are interpreted as in slice notation. Return ``-1`` on failure." msgstr "" #: library/stdtypes.rst:1932 -msgid "Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* is not found." +msgid "" +"Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* is " +"not found." msgstr "" #: library/stdtypes.rst:1938 msgid "" -"Return the string right justified in a string of length *width*. Padding is done using the " -"specified *fillchar* (default is an ASCII space). The original string is returned if *width* " -"is less than or equal to ``len(s)``." +"Return the string right justified in a string of length *width*. Padding is " +"done using the specified *fillchar* (default is an ASCII space). The " +"original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:1945 msgid "" -"Split the string at the last occurrence of *sep*, and return a 3-tuple containing the part " -"before the separator, the separator itself, and the part after the separator. If the " -"separator is not found, return a 3-tuple containing two empty strings, followed by the string " -"itself." +"Split the string at the last occurrence of *sep*, and return a 3-tuple " +"containing the part before the separator, the separator itself, and the part " +"after the separator. If the separator is not found, return a 3-tuple " +"containing two empty strings, followed by the string itself." msgstr "" #: library/stdtypes.rst:1953 msgid "" -"Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* " -"is given, at most *maxsplit* splits are done, the *rightmost* ones. If *sep* is not specified " -"or ``None``, any whitespace string is a separator. Except for splitting from the right, :meth:" -"`rsplit` behaves like :meth:`split` which is described in detail below." +"Return a list of the words in the string, using *sep* as the delimiter " +"string. If *maxsplit* is given, at most *maxsplit* splits are done, the " +"*rightmost* ones. If *sep* is not specified or ``None``, any whitespace " +"string is a separator. Except for splitting from the right, :meth:`rsplit` " +"behaves like :meth:`split` which is described in detail below." msgstr "" #: library/stdtypes.rst:1962 msgid "" -"Return a copy of the string with trailing characters removed. The *chars* argument is a " -"string specifying the set of characters to be removed. If omitted or ``None``, the *chars* " -"argument defaults to removing whitespace. The *chars* argument is not a suffix; rather, all " -"combinations of its values are stripped::" +"Return a copy of the string with trailing characters removed. The *chars* " +"argument is a string specifying the set of characters to be removed. If " +"omitted or ``None``, the *chars* argument defaults to removing whitespace. " +"The *chars* argument is not a suffix; rather, all combinations of its values " +"are stripped::" msgstr "" #: library/stdtypes.rst:1972 msgid "" -"See :meth:`str.removesuffix` for a method that will remove a single suffix string rather than " -"all of a set of characters. For example::" +"See :meth:`str.removesuffix` for a method that will remove a single suffix " +"string rather than all of a set of characters. For example::" msgstr "" #: library/stdtypes.rst:1982 msgid "" -"Return a list of the words in the string, using *sep* as the delimiter string. If *maxsplit* " -"is given, at most *maxsplit* splits are done (thus, the list will have at most ``maxsplit+1`` " -"elements). If *maxsplit* is not specified or ``-1``, then there is no limit on the number of " -"splits (all possible splits are made)." +"Return a list of the words in the string, using *sep* as the delimiter " +"string. If *maxsplit* is given, at most *maxsplit* splits are done (thus, " +"the list will have at most ``maxsplit+1`` elements). If *maxsplit* is not " +"specified or ``-1``, then there is no limit on the number of splits (all " +"possible splits are made)." msgstr "" #: library/stdtypes.rst:1988 msgid "" -"If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit " -"empty strings (for example, ``'1,,2'.split(',')`` returns ``['1', '', '2']``). The *sep* " -"argument may consist of multiple characters (for example, ``'1<>2<>3'.split('<>')`` returns " -"``['1', '2', '3']``). Splitting an empty string with a specified separator returns ``['']``." +"If *sep* is given, consecutive delimiters are not grouped together and are " +"deemed to delimit empty strings (for example, ``'1,,2'.split(',')`` returns " +"``['1', '', '2']``). The *sep* argument may consist of multiple characters " +"(for example, ``'1<>2<>3'.split('<>')`` returns ``['1', '2', '3']``). " +"Splitting an empty string with a specified separator returns ``['']``." msgstr "" -#: library/stdtypes.rst:2010 library/stdtypes.rst:2130 library/stdtypes.rst:3043 -#: library/stdtypes.rst:3150 library/stdtypes.rst:3191 library/stdtypes.rst:3233 -#: library/stdtypes.rst:3265 library/stdtypes.rst:3315 library/stdtypes.rst:3384 -#: library/stdtypes.rst:3408 +#: library/stdtypes.rst:2010 library/stdtypes.rst:2130 +#: library/stdtypes.rst:3043 library/stdtypes.rst:3150 +#: library/stdtypes.rst:3191 library/stdtypes.rst:3233 +#: library/stdtypes.rst:3265 library/stdtypes.rst:3315 +#: library/stdtypes.rst:3384 library/stdtypes.rst:3408 msgid "For example::" msgstr "" #: library/stdtypes.rst:2003 msgid "" -"If *sep* is not specified or is ``None``, a different splitting algorithm is applied: runs of " -"consecutive whitespace are regarded as a single separator, and the result will contain no " -"empty strings at the start or end if the string has leading or trailing whitespace. " -"Consequently, splitting an empty string or a string consisting of just whitespace with a " -"``None`` separator returns ``[]``." +"If *sep* is not specified or is ``None``, a different splitting algorithm is " +"applied: runs of consecutive whitespace are regarded as a single separator, " +"and the result will contain no empty strings at the start or end if the " +"string has leading or trailing whitespace. Consequently, splitting an empty " +"string or a string consisting of just whitespace with a ``None`` separator " +"returns ``[]``." msgstr "" #: library/stdtypes.rst:2025 msgid "" -"Return a list of the lines in the string, breaking at line boundaries. Line breaks are not " -"included in the resulting list unless *keepends* is given and true." +"Return a list of the lines in the string, breaking at line boundaries. Line " +"breaks are not included in the resulting list unless *keepends* is given and " +"true." msgstr "" #: library/stdtypes.rst:2029 msgid "" -"This method splits on the following line boundaries. In particular, the boundaries are a " -"superset of :term:`universal newlines`." +"This method splits on the following line boundaries. In particular, the " +"boundaries are a superset of :term:`universal newlines`." msgstr "" #: library/stdtypes.rst:2033 @@ -2740,8 +3025,9 @@ msgstr "" #: library/stdtypes.rst:2069 msgid "" -"Unlike :meth:`~str.split` when a delimiter string *sep* is given, this method returns an empty " -"list for the empty string, and a terminal line break does not result in an extra line::" +"Unlike :meth:`~str.split` when a delimiter string *sep* is given, this " +"method returns an empty list for the empty string, and a terminal line break " +"does not result in an extra line::" msgstr "" #: library/stdtypes.rst:2078 @@ -2750,90 +3036,100 @@ msgstr "" #: library/stdtypes.rst:2088 msgid "" -"Return ``True`` if string starts with the *prefix*, otherwise return ``False``. *prefix* can " -"also be a tuple of prefixes to look for. With optional *start*, test string beginning at that " -"position. With optional *end*, stop comparing string at that position." +"Return ``True`` if string starts with the *prefix*, otherwise return " +"``False``. *prefix* can also be a tuple of prefixes to look for. With " +"optional *start*, test string beginning at that position. With optional " +"*end*, stop comparing string at that position." msgstr "" #: library/stdtypes.rst:2096 msgid "" -"Return a copy of the string with the leading and trailing characters removed. The *chars* " -"argument is a string specifying the set of characters to be removed. If omitted or ``None``, " -"the *chars* argument defaults to removing whitespace. The *chars* argument is not a prefix or " -"suffix; rather, all combinations of its values are stripped::" +"Return a copy of the string with the leading and trailing characters " +"removed. The *chars* argument is a string specifying the set of characters " +"to be removed. If omitted or ``None``, the *chars* argument defaults to " +"removing whitespace. The *chars* argument is not a prefix or suffix; rather, " +"all combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:2107 msgid "" -"The outermost leading and trailing *chars* argument values are stripped from the string. " -"Characters are removed from the leading end until reaching a string character that is not " -"contained in the set of characters in *chars*. A similar action takes place on the trailing " -"end. For example::" +"The outermost leading and trailing *chars* argument values are stripped from " +"the string. Characters are removed from the leading end until reaching a " +"string character that is not contained in the set of characters in *chars*. " +"A similar action takes place on the trailing end. For example::" msgstr "" #: library/stdtypes.rst:2120 msgid "" -"Return a copy of the string with uppercase characters converted to lowercase and vice versa. " -"Note that it is not necessarily true that ``s.swapcase().swapcase() == s``." +"Return a copy of the string with uppercase characters converted to lowercase " +"and vice versa. Note that it is not necessarily true that ``s.swapcase()." +"swapcase() == s``." msgstr "" #: library/stdtypes.rst:2127 msgid "" -"Return a titlecased version of the string where words start with an uppercase character and " -"the remaining characters are lowercase." +"Return a titlecased version of the string where words start with an " +"uppercase character and the remaining characters are lowercase." msgstr "" #: library/stdtypes.rst:3352 msgid "" -"The algorithm uses a simple language-independent definition of a word as groups of consecutive " -"letters. The definition works in many contexts but it means that apostrophes in contractions " -"and possessives form word boundaries, which may not be the desired result::" +"The algorithm uses a simple language-independent definition of a word as " +"groups of consecutive letters. The definition works in many contexts but it " +"means that apostrophes in contractions and possessives form word boundaries, " +"which may not be the desired result::" msgstr "" #: library/stdtypes.rst:3360 -msgid "A workaround for apostrophes can be constructed using regular expressions::" +msgid "" +"A workaround for apostrophes can be constructed using regular expressions::" msgstr "" #: library/stdtypes.rst:2157 msgid "" -"Return a copy of the string in which each character has been mapped through the given " -"translation table. The table must be an object that implements indexing via :meth:" -"`__getitem__`, typically a :term:`mapping` or :term:`sequence`. When indexed by a Unicode " -"ordinal (an integer), the table object can do any of the following: return a Unicode ordinal " -"or a string, to map the character to one or more other characters; return ``None``, to delete " -"the character from the return string; or raise a :exc:`LookupError` exception, to map the " -"character to itself." +"Return a copy of the string in which each character has been mapped through " +"the given translation table. The table must be an object that implements " +"indexing via :meth:`__getitem__`, typically a :term:`mapping` or :term:" +"`sequence`. When indexed by a Unicode ordinal (an integer), the table " +"object can do any of the following: return a Unicode ordinal or a string, to " +"map the character to one or more other characters; return ``None``, to " +"delete the character from the return string; or raise a :exc:`LookupError` " +"exception, to map the character to itself." msgstr "" #: library/stdtypes.rst:2166 msgid "" -"You can use :meth:`str.maketrans` to create a translation map from character-to-character " -"mappings in different formats." +"You can use :meth:`str.maketrans` to create a translation map from character-" +"to-character mappings in different formats." msgstr "" #: library/stdtypes.rst:2169 msgid "" -"See also the :mod:`codecs` module for a more flexible approach to custom character mappings." +"See also the :mod:`codecs` module for a more flexible approach to custom " +"character mappings." msgstr "" #: library/stdtypes.rst:2175 msgid "" -"Return a copy of the string with all the cased characters [4]_ converted to uppercase. Note " -"that ``s.upper().isupper()`` might be ``False`` if ``s`` contains uncased characters or if the " -"Unicode category of the resulting character(s) is not \"Lu\" (Letter, uppercase), but e.g. \"Lt" -"\" (Letter, titlecase)." +"Return a copy of the string with all the cased characters [4]_ converted to " +"uppercase. Note that ``s.upper().isupper()`` might be ``False`` if ``s`` " +"contains uncased characters or if the Unicode category of the resulting " +"character(s) is not \"Lu\" (Letter, uppercase), but e.g. \"Lt\" (Letter, " +"titlecase)." msgstr "" #: library/stdtypes.rst:2181 -msgid "The uppercasing algorithm used is described in section 3.13 of the Unicode Standard." +msgid "" +"The uppercasing algorithm used is described in section 3.13 of the Unicode " +"Standard." msgstr "" #: library/stdtypes.rst:2187 msgid "" -"Return a copy of the string left filled with ASCII ``'0'`` digits to make a string of length " -"*width*. A leading sign prefix (``'+'``/``'-'``) is handled by inserting the padding *after* " -"the sign character rather than before. The original string is returned if *width* is less than " -"or equal to ``len(s)``." +"Return a copy of the string left filled with ASCII ``'0'`` digits to make a " +"string of length *width*. A leading sign prefix (``'+'``/``'-'``) is handled " +"by inserting the padding *after* the sign character rather than before. The " +"original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:2205 @@ -2842,33 +3138,37 @@ msgstr "" #: library/stdtypes.rst:2218 msgid "" -"The formatting operations described here exhibit a variety of quirks that lead to a number of " -"common errors (such as failing to display tuples and dictionaries correctly). Using the " -"newer :ref:`formatted string literals `, the :meth:`str.format` interface, or :ref:" -"`template strings ` may help avoid these errors. Each of these alternatives " -"provides their own trade-offs and benefits of simplicity, flexibility, and/or extensibility." +"The formatting operations described here exhibit a variety of quirks that " +"lead to a number of common errors (such as failing to display tuples and " +"dictionaries correctly). Using the newer :ref:`formatted string literals `, the :meth:`str.format` interface, or :ref:`template strings " +"` may help avoid these errors. Each of these alternatives " +"provides their own trade-offs and benefits of simplicity, flexibility, and/" +"or extensibility." msgstr "" #: library/stdtypes.rst:2226 msgid "" -"String objects have one unique built-in operation: the ``%`` operator (modulo). This is also " -"known as the string *formatting* or *interpolation* operator. Given ``format % values`` (where " -"*format* is a string), ``%`` conversion specifications in *format* are replaced with zero or " -"more elements of *values*. The effect is similar to using the :c:func:`sprintf` in the C " -"language." +"String objects have one unique built-in operation: the ``%`` operator " +"(modulo). This is also known as the string *formatting* or *interpolation* " +"operator. Given ``format % values`` (where *format* is a string), ``%`` " +"conversion specifications in *format* are replaced with zero or more " +"elements of *values*. The effect is similar to using the :c:func:`sprintf` " +"in the C language." msgstr "" #: library/stdtypes.rst:2232 msgid "" -"If *format* requires a single argument, *values* may be a single non-tuple object. [5]_ " -"Otherwise, *values* must be a tuple with exactly the number of items specified by the format " -"string, or a single mapping object (for example, a dictionary)." +"If *format* requires a single argument, *values* may be a single non-tuple " +"object. [5]_ Otherwise, *values* must be a tuple with exactly the number of " +"items specified by the format string, or a single mapping object (for " +"example, a dictionary)." msgstr "" #: library/stdtypes.rst:3463 msgid "" -"A conversion specifier contains two or more characters and has the following components, which " -"must occur in this order:" +"A conversion specifier contains two or more characters and has the following " +"components, which must occur in this order:" msgstr "" #: library/stdtypes.rst:3466 @@ -2877,26 +3177,29 @@ msgstr "" #: library/stdtypes.rst:3468 msgid "" -"Mapping key (optional), consisting of a parenthesised sequence of characters (for example, " -"``(somename)``)." +"Mapping key (optional), consisting of a parenthesised sequence of characters " +"(for example, ``(somename)``)." msgstr "" #: library/stdtypes.rst:3471 -msgid "Conversion flags (optional), which affect the result of some conversion types." +msgid "" +"Conversion flags (optional), which affect the result of some conversion " +"types." msgstr "" #: library/stdtypes.rst:3474 msgid "" -"Minimum field width (optional). If specified as an ``'*'`` (asterisk), the actual width is " -"read from the next element of the tuple in *values*, and the object to convert comes after the " -"minimum field width and optional precision." +"Minimum field width (optional). If specified as an ``'*'`` (asterisk), the " +"actual width is read from the next element of the tuple in *values*, and the " +"object to convert comes after the minimum field width and optional precision." msgstr "" #: library/stdtypes.rst:3478 msgid "" -"Precision (optional), given as a ``'.'`` (dot) followed by the precision. If specified as " -"``'*'`` (an asterisk), the actual precision is read from the next element of the tuple in " -"*values*, and the value to convert comes after the precision." +"Precision (optional), given as a ``'.'`` (dot) followed by the precision. " +"If specified as ``'*'`` (an asterisk), the actual precision is read from the " +"next element of the tuple in *values*, and the value to convert comes after " +"the precision." msgstr "" #: library/stdtypes.rst:3483 @@ -2909,16 +3212,16 @@ msgstr "" #: library/stdtypes.rst:2266 msgid "" -"When the right argument is a dictionary (or other mapping type), then the formats in the " -"string *must* include a parenthesised mapping key into that dictionary inserted immediately " -"after the ``'%'`` character. The mapping key selects the value to be formatted from the " -"mapping. For example:" +"When the right argument is a dictionary (or other mapping type), then the " +"formats in the string *must* include a parenthesised mapping key into that " +"dictionary inserted immediately after the ``'%'`` character. The mapping key " +"selects the value to be formatted from the mapping. For example:" msgstr "" #: library/stdtypes.rst:3496 msgid "" -"In this case no ``*`` specifiers may occur in a format (since they require a sequential " -"parameter list)." +"In this case no ``*`` specifiers may occur in a format (since they require a " +"sequential parameter list)." msgstr "" #: library/stdtypes.rst:3499 @@ -2934,7 +3237,8 @@ msgid "``'#'``" msgstr "" #: library/stdtypes.rst:3510 -msgid "The value conversion will use the \"alternate form\" (where defined below)." +msgid "" +"The value conversion will use the \"alternate form\" (where defined below)." msgstr "" #: library/stdtypes.rst:3513 @@ -2951,7 +3255,8 @@ msgstr "" #: library/stdtypes.rst:3515 msgid "" -"The converted value is left adjusted (overrides the ``'0'`` conversion if both are given)." +"The converted value is left adjusted (overrides the ``'0'`` conversion if " +"both are given)." msgstr "" #: library/stdtypes.rst:3518 @@ -2960,8 +3265,8 @@ msgstr "" #: library/stdtypes.rst:3518 msgid "" -"(a space) A blank should be left before a positive number (or empty string) produced by a " -"signed conversion." +"(a space) A blank should be left before a positive number (or empty string) " +"produced by a signed conversion." msgstr "" #: library/stdtypes.rst:3521 @@ -2970,13 +3275,14 @@ msgstr "" #: library/stdtypes.rst:3521 msgid "" -"A sign character (``'+'`` or ``'-'``) will precede the conversion (overrides a \"space\" flag)." +"A sign character (``'+'`` or ``'-'``) will precede the conversion (overrides " +"a \"space\" flag)." msgstr "" #: library/stdtypes.rst:3525 msgid "" -"A length modifier (``h``, ``l``, or ``L``) may be present, but is ignored as it is not " -"necessary for Python -- so e.g. ``%ld`` is identical to ``%d``." +"A length modifier (``h``, ``l``, or ``L``) may be present, but is ignored as " +"it is not necessary for Python -- so e.g. ``%ld`` is identical to ``%d``." msgstr "" #: library/stdtypes.rst:3528 @@ -3065,8 +3371,8 @@ msgstr "" #: library/stdtypes.rst:3553 msgid "" -"Floating point format. Uses lowercase exponential format if exponent is less than -4 or not " -"less than precision, decimal format otherwise." +"Floating point format. Uses lowercase exponential format if exponent is less " +"than -4 or not less than precision, decimal format otherwise." msgstr "" #: library/stdtypes.rst:3557 @@ -3075,8 +3381,8 @@ msgstr "" #: library/stdtypes.rst:3557 msgid "" -"Floating point format. Uses uppercase exponential format if exponent is less than -4 or not " -"less than precision, decimal format otherwise." +"Floating point format. Uses uppercase exponential format if exponent is less " +"than -4 or not less than precision, decimal format otherwise." msgstr "" #: library/stdtypes.rst:3561 @@ -3121,36 +3427,39 @@ msgstr "" #: library/stdtypes.rst:3584 msgid "" -"The alternate form causes a leading octal specifier (``'0o'``) to be inserted before the first " -"digit." +"The alternate form causes a leading octal specifier (``'0o'``) to be " +"inserted before the first digit." msgstr "" #: library/stdtypes.rst:3588 msgid "" -"The alternate form causes a leading ``'0x'`` or ``'0X'`` (depending on whether the ``'x'`` or " -"``'X'`` format was used) to be inserted before the first digit." +"The alternate form causes a leading ``'0x'`` or ``'0X'`` (depending on " +"whether the ``'x'`` or ``'X'`` format was used) to be inserted before the " +"first digit." msgstr "" #: library/stdtypes.rst:3592 msgid "" -"The alternate form causes the result to always contain a decimal point, even if no digits " -"follow it." +"The alternate form causes the result to always contain a decimal point, even " +"if no digits follow it." msgstr "" #: library/stdtypes.rst:3595 -msgid "The precision determines the number of digits after the decimal point and defaults to 6." +msgid "" +"The precision determines the number of digits after the decimal point and " +"defaults to 6." msgstr "" #: library/stdtypes.rst:3599 msgid "" -"The alternate form causes the result to always contain a decimal point, and trailing zeroes " -"are not removed as they would otherwise be." +"The alternate form causes the result to always contain a decimal point, and " +"trailing zeroes are not removed as they would otherwise be." msgstr "" #: library/stdtypes.rst:3602 msgid "" -"The precision determines the number of significant digits before and after the decimal point " -"and defaults to 6." +"The precision determines the number of significant digits before and after " +"the decimal point and defaults to 6." msgstr "" #: library/stdtypes.rst:3606 @@ -3163,31 +3472,34 @@ msgstr "" #: library/stdtypes.rst:2386 msgid "" -"Since Python strings have an explicit length, ``%s`` conversions do not assume that ``'\\0'`` " -"is the end of the string." +"Since Python strings have an explicit length, ``%s`` conversions do not " +"assume that ``'\\0'`` is the end of the string." msgstr "" #: library/stdtypes.rst:2391 msgid "" -"``%f`` conversions for numbers whose absolute value is over 1e50 are no longer replaced by ``" -"%g`` conversions." +"``%f`` conversions for numbers whose absolute value is over 1e50 are no " +"longer replaced by ``%g`` conversions." msgstr "" #: library/stdtypes.rst:2402 -msgid "Binary Sequence Types --- :class:`bytes`, :class:`bytearray`, :class:`memoryview`" +msgid "" +"Binary Sequence Types --- :class:`bytes`, :class:`bytearray`, :class:" +"`memoryview`" msgstr "" #: library/stdtypes.rst:2410 msgid "" -"The core built-in types for manipulating binary data are :class:`bytes` and :class:" -"`bytearray`. They are supported by :class:`memoryview` which uses the :ref:`buffer protocol " -"` to access the memory of other binary objects without needing to make a copy." +"The core built-in types for manipulating binary data are :class:`bytes` and :" +"class:`bytearray`. They are supported by :class:`memoryview` which uses the :" +"ref:`buffer protocol ` to access the memory of other binary " +"objects without needing to make a copy." msgstr "" #: library/stdtypes.rst:2415 msgid "" -"The :mod:`array` module supports efficient storage of basic data types like 32-bit integers " -"and IEEE754 double-precision floating values." +"The :mod:`array` module supports efficient storage of basic data types like " +"32-bit integers and IEEE754 double-precision floating values." msgstr "" #: library/stdtypes.rst:2421 @@ -3196,16 +3508,16 @@ msgstr "" #: library/stdtypes.rst:2425 msgid "" -"Bytes objects are immutable sequences of single bytes. Since many major binary protocols are " -"based on the ASCII text encoding, bytes objects offer several methods that are only valid when " -"working with ASCII compatible data and are closely related to string objects in a variety of " -"other ways." +"Bytes objects are immutable sequences of single bytes. Since many major " +"binary protocols are based on the ASCII text encoding, bytes objects offer " +"several methods that are only valid when working with ASCII compatible data " +"and are closely related to string objects in a variety of other ways." msgstr "" #: library/stdtypes.rst:2432 msgid "" -"Firstly, the syntax for bytes literals is largely the same as that for string literals, except " -"that a ``b`` prefix is added:" +"Firstly, the syntax for bytes literals is largely the same as that for " +"string literals, except that a ``b`` prefix is added:" msgstr "" #: library/stdtypes.rst:2435 @@ -3217,36 +3529,41 @@ msgid "Double quotes: ``b\"still allows embedded 'single' quotes\"``." msgstr "" #: library/stdtypes.rst:2437 -msgid "Triple quoted: ``b'''3 single quotes'''``, ``b\"\"\"3 double quotes\"\"\"``" +msgid "" +"Triple quoted: ``b'''3 single quotes'''``, ``b\"\"\"3 double quotes\"\"\"``" msgstr "" #: library/stdtypes.rst:2439 msgid "" -"Only ASCII characters are permitted in bytes literals (regardless of the declared source code " -"encoding). Any binary values over 127 must be entered into bytes literals using the " -"appropriate escape sequence." +"Only ASCII characters are permitted in bytes literals (regardless of the " +"declared source code encoding). Any binary values over 127 must be entered " +"into bytes literals using the appropriate escape sequence." msgstr "" #: library/stdtypes.rst:2443 msgid "" -"As with string literals, bytes literals may also use a ``r`` prefix to disable processing of " -"escape sequences. See :ref:`strings` for more about the various forms of bytes literal, " -"including supported escape sequences." +"As with string literals, bytes literals may also use a ``r`` prefix to " +"disable processing of escape sequences. See :ref:`strings` for more about " +"the various forms of bytes literal, including supported escape sequences." msgstr "" #: library/stdtypes.rst:2447 msgid "" -"While bytes literals and representations are based on ASCII text, bytes objects actually " -"behave like immutable sequences of integers, with each value in the sequence restricted such " -"that ``0 <= x < 256`` (attempts to violate this restriction will trigger :exc:`ValueError`). " -"This is done deliberately to emphasise that while many binary formats include ASCII based " -"elements and can be usefully manipulated with some text-oriented algorithms, this is not " -"generally the case for arbitrary binary data (blindly applying text processing algorithms to " -"binary data formats that are not ASCII compatible will usually lead to data corruption)." +"While bytes literals and representations are based on ASCII text, bytes " +"objects actually behave like immutable sequences of integers, with each " +"value in the sequence restricted such that ``0 <= x < 256`` (attempts to " +"violate this restriction will trigger :exc:`ValueError`). This is done " +"deliberately to emphasise that while many binary formats include ASCII based " +"elements and can be usefully manipulated with some text-oriented algorithms, " +"this is not generally the case for arbitrary binary data (blindly applying " +"text processing algorithms to binary data formats that are not ASCII " +"compatible will usually lead to data corruption)." msgstr "" #: library/stdtypes.rst:2457 -msgid "In addition to the literal forms, bytes objects can be created in a number of other ways:" +msgid "" +"In addition to the literal forms, bytes objects can be created in a number " +"of other ways:" msgstr "" #: library/stdtypes.rst:2460 @@ -3267,67 +3584,77 @@ msgstr "" #: library/stdtypes.rst:2466 msgid "" -"Since 2 hexadecimal digits correspond precisely to a single byte, hexadecimal numbers are a " -"commonly used format for describing binary data. Accordingly, the bytes type has an additional " -"class method to read data in that format:" +"Since 2 hexadecimal digits correspond precisely to a single byte, " +"hexadecimal numbers are a commonly used format for describing binary data. " +"Accordingly, the bytes type has an additional class method to read data in " +"that format:" msgstr "" #: library/stdtypes.rst:2472 msgid "" -"This :class:`bytes` class method returns a bytes object, decoding the given string object. " -"The string must contain two hexadecimal digits per byte, with ASCII whitespace being ignored." +"This :class:`bytes` class method returns a bytes object, decoding the given " +"string object. The string must contain two hexadecimal digits per byte, " +"with ASCII whitespace being ignored." msgstr "" #: library/stdtypes.rst:2479 -msgid ":meth:`bytes.fromhex` now skips all ASCII whitespace in the string, not just spaces." +msgid "" +":meth:`bytes.fromhex` now skips all ASCII whitespace in the string, not just " +"spaces." msgstr "" #: library/stdtypes.rst:2483 msgid "" -"A reverse conversion function exists to transform a bytes object into its hexadecimal " -"representation." +"A reverse conversion function exists to transform a bytes object into its " +"hexadecimal representation." msgstr "" #: library/stdtypes.rst:2582 -msgid "Return a string object containing two hexadecimal digits for each byte in the instance." +msgid "" +"Return a string object containing two hexadecimal digits for each byte in " +"the instance." msgstr "" #: library/stdtypes.rst:2494 msgid "" -"If you want to make the hex string easier to read, you can specify a single character " -"separator *sep* parameter to include in the output. By default between each byte. A second " -"optional *bytes_per_sep* parameter controls the spacing. Positive values calculate the " -"separator position from the right, negative values from the left." +"If you want to make the hex string easier to read, you can specify a single " +"character separator *sep* parameter to include in the output. By default " +"between each byte. A second optional *bytes_per_sep* parameter controls the " +"spacing. Positive values calculate the separator position from the right, " +"negative values from the left." msgstr "" #: library/stdtypes.rst:2510 msgid "" -":meth:`bytes.hex` now supports optional *sep* and *bytes_per_sep* parameters to insert " -"separators between bytes in the hex output." +":meth:`bytes.hex` now supports optional *sep* and *bytes_per_sep* parameters " +"to insert separators between bytes in the hex output." msgstr "" #: library/stdtypes.rst:2514 msgid "" -"Since bytes objects are sequences of integers (akin to a tuple), for a bytes object *b*, " -"``b[0]`` will be an integer, while ``b[0:1]`` will be a bytes object of length 1. (This " -"contrasts with text strings, where both indexing and slicing will produce a string of length 1)" +"Since bytes objects are sequences of integers (akin to a tuple), for a bytes " +"object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytes " +"object of length 1. (This contrasts with text strings, where both indexing " +"and slicing will produce a string of length 1)" msgstr "" #: library/stdtypes.rst:2519 msgid "" -"The representation of bytes objects uses the literal format (``b'...'``) since it is often " -"more useful than e.g. ``bytes([46, 46, 46])``. You can always convert a bytes object into a " -"list of integers using ``list(b)``." +"The representation of bytes objects uses the literal format (``b'...'``) " +"since it is often more useful than e.g. ``bytes([46, 46, 46])``. You can " +"always convert a bytes object into a list of integers using ``list(b)``." msgstr "" #: library/stdtypes.rst:2524 msgid "" -"For Python 2.x users: In the Python 2.x series, a variety of implicit conversions between 8-" -"bit strings (the closest thing 2.x offers to a built-in binary data type) and Unicode strings " -"were permitted. This was a backwards compatibility workaround to account for the fact that " -"Python originally only supported 8-bit text, and Unicode text was a later addition. In Python " -"3.x, those implicit conversions are gone - conversions between 8-bit binary data and Unicode " -"text must be explicit, and bytes and string objects will always compare unequal." +"For Python 2.x users: In the Python 2.x series, a variety of implicit " +"conversions between 8-bit strings (the closest thing 2.x offers to a built-" +"in binary data type) and Unicode strings were permitted. This was a " +"backwards compatibility workaround to account for the fact that Python " +"originally only supported 8-bit text, and Unicode text was a later addition. " +"In Python 3.x, those implicit conversions are gone - conversions between 8-" +"bit binary data and Unicode text must be explicit, and bytes and string " +"objects will always compare unequal." msgstr "" #: library/stdtypes.rst:2537 @@ -3335,13 +3662,15 @@ msgid "Bytearray Objects" msgstr "" #: library/stdtypes.rst:2541 -msgid ":class:`bytearray` objects are a mutable counterpart to :class:`bytes` objects." +msgid "" +":class:`bytearray` objects are a mutable counterpart to :class:`bytes` " +"objects." msgstr "" #: library/stdtypes.rst:2546 msgid "" -"There is no dedicated literal syntax for bytearray objects, instead they are always created by " -"calling the constructor:" +"There is no dedicated literal syntax for bytearray objects, instead they are " +"always created by calling the constructor:" msgstr "" #: library/stdtypes.rst:2549 @@ -3357,14 +3686,15 @@ msgid "From an iterable of integers: ``bytearray(range(20))``" msgstr "" #: library/stdtypes.rst:2552 -msgid "Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!')``" +msgid "" +"Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!')``" msgstr "" #: library/stdtypes.rst:2554 msgid "" -"As bytearray objects are mutable, they support the :ref:`mutable ` sequence " -"operations in addition to the common bytes and bytearray operations described in :ref:`bytes-" -"methods`." +"As bytearray objects are mutable, they support the :ref:`mutable ` sequence operations in addition to the common bytes and bytearray " +"operations described in :ref:`bytes-methods`." msgstr "" #: library/stdtypes.rst:2558 @@ -3373,47 +3703,52 @@ msgstr "" #: library/stdtypes.rst:2560 msgid "" -"Since 2 hexadecimal digits correspond precisely to a single byte, hexadecimal numbers are a " -"commonly used format for describing binary data. Accordingly, the bytearray type has an " -"additional class method to read data in that format:" +"Since 2 hexadecimal digits correspond precisely to a single byte, " +"hexadecimal numbers are a commonly used format for describing binary data. " +"Accordingly, the bytearray type has an additional class method to read data " +"in that format:" msgstr "" #: library/stdtypes.rst:2566 msgid "" -"This :class:`bytearray` class method returns bytearray object, decoding the given string " -"object. The string must contain two hexadecimal digits per byte, with ASCII whitespace being " -"ignored." +"This :class:`bytearray` class method returns bytearray object, decoding the " +"given string object. The string must contain two hexadecimal digits per " +"byte, with ASCII whitespace being ignored." msgstr "" #: library/stdtypes.rst:2573 -msgid ":meth:`bytearray.fromhex` now skips all ASCII whitespace in the string, not just spaces." +msgid "" +":meth:`bytearray.fromhex` now skips all ASCII whitespace in the string, not " +"just spaces." msgstr "" #: library/stdtypes.rst:2577 msgid "" -"A reverse conversion function exists to transform a bytearray object into its hexadecimal " -"representation." +"A reverse conversion function exists to transform a bytearray object into " +"its hexadecimal representation." msgstr "" #: library/stdtypes.rst:2590 msgid "" -"Similar to :meth:`bytes.hex`, :meth:`bytearray.hex` now supports optional *sep* and " -"*bytes_per_sep* parameters to insert separators between bytes in the hex output." +"Similar to :meth:`bytes.hex`, :meth:`bytearray.hex` now supports optional " +"*sep* and *bytes_per_sep* parameters to insert separators between bytes in " +"the hex output." msgstr "" #: library/stdtypes.rst:2595 msgid "" -"Since bytearray objects are sequences of integers (akin to a list), for a bytearray object " -"*b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytearray object of length 1. " -"(This contrasts with text strings, where both indexing and slicing will produce a string of " -"length 1)" +"Since bytearray objects are sequences of integers (akin to a list), for a " +"bytearray object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be " +"a bytearray object of length 1. (This contrasts with text strings, where " +"both indexing and slicing will produce a string of length 1)" msgstr "" #: library/stdtypes.rst:2600 msgid "" -"The representation of bytearray objects uses the bytes literal format (``bytearray(b'...')``) " -"since it is often more useful than e.g. ``bytearray([46, 46, 46])``. You can always convert a " -"bytearray object into a list of integers using ``list(b)``." +"The representation of bytearray objects uses the bytes literal format " +"(``bytearray(b'...')``) since it is often more useful than e.g. " +"``bytearray([46, 46, 46])``. You can always convert a bytearray object into " +"a list of integers using ``list(b)``." msgstr "" #: library/stdtypes.rst:2609 @@ -3422,16 +3757,18 @@ msgstr "" #: library/stdtypes.rst:2614 msgid "" -"Both bytes and bytearray objects support the :ref:`common ` sequence " -"operations. They interoperate not just with operands of the same type, but with any :term:" -"`bytes-like object`. Due to this flexibility, they can be freely mixed in operations without " -"causing errors. However, the return type of the result may depend on the order of operands." +"Both bytes and bytearray objects support the :ref:`common ` " +"sequence operations. They interoperate not just with operands of the same " +"type, but with any :term:`bytes-like object`. Due to this flexibility, they " +"can be freely mixed in operations without causing errors. However, the " +"return type of the result may depend on the order of operands." msgstr "" #: library/stdtypes.rst:2622 msgid "" -"The methods on bytes and bytearray objects don't accept strings as their arguments, just as " -"the methods on strings don't accept bytes as their arguments. For example, you have to write::" +"The methods on bytes and bytearray objects don't accept strings as their " +"arguments, just as the methods on strings don't accept bytes as their " +"arguments. For example, you have to write::" msgstr "" #: library/stdtypes.rst:2629 @@ -3440,60 +3777,68 @@ msgstr "" #: library/stdtypes.rst:2634 msgid "" -"Some bytes and bytearray operations assume the use of ASCII compatible binary formats, and " -"hence should be avoided when working with arbitrary binary data. These restrictions are " -"covered below." +"Some bytes and bytearray operations assume the use of ASCII compatible " +"binary formats, and hence should be avoided when working with arbitrary " +"binary data. These restrictions are covered below." msgstr "" #: library/stdtypes.rst:2639 msgid "" -"Using these ASCII based operations to manipulate binary data that is not stored in an ASCII " -"based format may lead to data corruption." +"Using these ASCII based operations to manipulate binary data that is not " +"stored in an ASCII based format may lead to data corruption." msgstr "" #: library/stdtypes.rst:2642 msgid "" -"The following methods on bytes and bytearray objects can be used with arbitrary binary data." +"The following methods on bytes and bytearray objects can be used with " +"arbitrary binary data." msgstr "" #: library/stdtypes.rst:2648 msgid "" -"Return the number of non-overlapping occurrences of subsequence *sub* in the range [*start*, " -"*end*]. Optional arguments *start* and *end* are interpreted as in slice notation." +"Return the number of non-overlapping occurrences of subsequence *sub* in the " +"range [*start*, *end*]. Optional arguments *start* and *end* are " +"interpreted as in slice notation." msgstr "" -#: library/stdtypes.rst:2751 library/stdtypes.rst:2839 library/stdtypes.rst:2852 +#: library/stdtypes.rst:2751 library/stdtypes.rst:2839 +#: library/stdtypes.rst:2852 msgid "" -"The subsequence to search for may be any :term:`bytes-like object` or an integer in the range " -"0 to 255." +"The subsequence to search for may be any :term:`bytes-like object` or an " +"integer in the range 0 to 255." msgstr "" -#: library/stdtypes.rst:2763 library/stdtypes.rst:2842 library/stdtypes.rst:2855 +#: library/stdtypes.rst:2763 library/stdtypes.rst:2842 +#: library/stdtypes.rst:2855 msgid "Also accept an integer in the range 0 to 255 as the subsequence." msgstr "" #: library/stdtypes.rst:2662 msgid "" -"If the binary data starts with the *prefix* string, return ``bytes[len(prefix):]``. Otherwise, " -"return a copy of the original binary data::" +"If the binary data starts with the *prefix* string, return " +"``bytes[len(prefix):]``. Otherwise, return a copy of the original binary " +"data::" msgstr "" #: library/stdtypes.rst:2671 msgid "The *prefix* may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:2697 library/stdtypes.rst:2920 library/stdtypes.rst:2965 -#: library/stdtypes.rst:3021 library/stdtypes.rst:3109 library/stdtypes.rst:3276 -#: library/stdtypes.rst:3374 library/stdtypes.rst:3417 library/stdtypes.rst:3619 +#: library/stdtypes.rst:2697 library/stdtypes.rst:2920 +#: library/stdtypes.rst:2965 library/stdtypes.rst:3021 +#: library/stdtypes.rst:3109 library/stdtypes.rst:3276 +#: library/stdtypes.rst:3374 library/stdtypes.rst:3417 +#: library/stdtypes.rst:3619 msgid "" -"The bytearray version of this method does *not* operate in place - it always produces a new " -"object, even if no changes were made." +"The bytearray version of this method does *not* operate in place - it always " +"produces a new object, even if no changes were made." msgstr "" #: library/stdtypes.rst:2684 msgid "" -"If the binary data ends with the *suffix* string and that *suffix* is not empty, return " -"``bytes[:-len(suffix)]``. Otherwise, return a copy of the original binary data::" +"If the binary data ends with the *suffix* string and that *suffix* is not " +"empty, return ``bytes[:-len(suffix)]``. Otherwise, return a copy of the " +"original binary data::" msgstr "" #: library/stdtypes.rst:2693 @@ -3502,25 +3847,27 @@ msgstr "" #: library/stdtypes.rst:2706 msgid "" -"Return a string decoded from the given bytes. Default encoding is ``'utf-8'``. *errors* may " -"be given to set a different error handling scheme. The default for *errors* is ``'strict'``, " -"meaning that encoding errors raise a :exc:`UnicodeError`. Other possible values are " -"``'ignore'``, ``'replace'`` and any other name registered via :func:`codecs.register_error`, " -"see section :ref:`error-handlers`. For a list of possible encodings, see section :ref:" -"`standard-encodings`." +"Return a string decoded from the given bytes. Default encoding is " +"``'utf-8'``. *errors* may be given to set a different error handling " +"scheme. The default for *errors* is ``'strict'``, meaning that encoding " +"errors raise a :exc:`UnicodeError`. Other possible values are ``'ignore'``, " +"``'replace'`` and any other name registered via :func:`codecs." +"register_error`, see section :ref:`error-handlers`. For a list of possible " +"encodings, see section :ref:`standard-encodings`." msgstr "" #: library/stdtypes.rst:2714 msgid "" -"By default, the *errors* argument is not checked for best performances, but only used at the " -"first decoding error. Enable the :ref:`Python Development Mode `, or use a :ref:" -"`debug build ` to check *errors*." +"By default, the *errors* argument is not checked for best performances, but " +"only used at the first decoding error. Enable the :ref:`Python Development " +"Mode `, or use a :ref:`debug build ` to check *errors*." msgstr "" #: library/stdtypes.rst:2720 msgid "" -"Passing the *encoding* argument to :class:`str` allows decoding any :term:`bytes-like object` " -"directly, without needing to make a temporary bytes or bytearray object." +"Passing the *encoding* argument to :class:`str` allows decoding any :term:" +"`bytes-like object` directly, without needing to make a temporary bytes or " +"bytearray object." msgstr "" #: library/stdtypes.rst:2724 @@ -3529,9 +3876,10 @@ msgstr "" #: library/stdtypes.rst:2735 msgid "" -"Return ``True`` if the binary data ends with the specified *suffix*, otherwise return " -"``False``. *suffix* can also be a tuple of suffixes to look for. With optional *start*, test " -"beginning at that position. With optional *end*, stop comparing at that position." +"Return ``True`` if the binary data ends with the specified *suffix*, " +"otherwise return ``False``. *suffix* can also be a tuple of suffixes to " +"look for. With optional *start*, test beginning at that position. With " +"optional *end*, stop comparing at that position." msgstr "" #: library/stdtypes.rst:2740 @@ -3540,43 +3888,50 @@ msgstr "" #: library/stdtypes.rst:2746 msgid "" -"Return the lowest index in the data where the subsequence *sub* is found, such that *sub* is " -"contained in the slice ``s[start:end]``. Optional arguments *start* and *end* are interpreted " -"as in slice notation. Return ``-1`` if *sub* is not found." +"Return the lowest index in the data where the subsequence *sub* is found, " +"such that *sub* is contained in the slice ``s[start:end]``. Optional " +"arguments *start* and *end* are interpreted as in slice notation. Return " +"``-1`` if *sub* is not found." msgstr "" #: library/stdtypes.rst:2756 msgid "" -"The :meth:`~bytes.find` method should be used only if you need to know the position of *sub*. " -"To check if *sub* is a substring or not, use the :keyword:`in` operator::" +"The :meth:`~bytes.find` method should be used only if you need to know the " +"position of *sub*. To check if *sub* is a substring or not, use the :" +"keyword:`in` operator::" msgstr "" #: library/stdtypes.rst:2770 -msgid "Like :meth:`~bytes.find`, but raise :exc:`ValueError` when the subsequence is not found." +msgid "" +"Like :meth:`~bytes.find`, but raise :exc:`ValueError` when the subsequence " +"is not found." msgstr "" #: library/stdtypes.rst:2783 msgid "" -"Return a bytes or bytearray object which is the concatenation of the binary data sequences in " -"*iterable*. A :exc:`TypeError` will be raised if there are any values in *iterable* that are " -"not :term:`bytes-like objects `, including :class:`str` objects. The " -"separator between elements is the contents of the bytes or bytearray object providing this " +"Return a bytes or bytearray object which is the concatenation of the binary " +"data sequences in *iterable*. A :exc:`TypeError` will be raised if there " +"are any values in *iterable* that are not :term:`bytes-like objects `, including :class:`str` objects. The separator between " +"elements is the contents of the bytes or bytearray object providing this " "method." msgstr "" #: library/stdtypes.rst:2794 msgid "" -"This static method returns a translation table usable for :meth:`bytes.translate` that will " -"map each character in *from* into the character at the same position in *to*; *from* and *to* " -"must both be :term:`bytes-like objects ` and have the same length." +"This static method returns a translation table usable for :meth:`bytes." +"translate` that will map each character in *from* into the character at the " +"same position in *to*; *from* and *to* must both be :term:`bytes-like " +"objects ` and have the same length." msgstr "" #: library/stdtypes.rst:2805 msgid "" -"Split the sequence at the first occurrence of *sep*, and return a 3-tuple containing the part " -"before the separator, the separator itself or its bytearray copy, and the part after the " -"separator. If the separator is not found, return a 3-tuple containing a copy of the original " -"sequence, followed by two empty bytes or bytearray objects." +"Split the sequence at the first occurrence of *sep*, and return a 3-tuple " +"containing the part before the separator, the separator itself or its " +"bytearray copy, and the part after the separator. If the separator is not " +"found, return a 3-tuple containing a copy of the original sequence, followed " +"by two empty bytes or bytearray objects." msgstr "" #: library/stdtypes.rst:2869 @@ -3585,39 +3940,46 @@ msgstr "" #: library/stdtypes.rst:2818 msgid "" -"Return a copy of the sequence with all occurrences of subsequence *old* replaced by *new*. If " -"the optional argument *count* is given, only the first *count* occurrences are replaced." +"Return a copy of the sequence with all occurrences of subsequence *old* " +"replaced by *new*. If the optional argument *count* is given, only the " +"first *count* occurrences are replaced." msgstr "" #: library/stdtypes.rst:2822 -msgid "The subsequence to search for and its replacement may be any :term:`bytes-like object`." +msgid "" +"The subsequence to search for and its replacement may be any :term:`bytes-" +"like object`." msgstr "" #: library/stdtypes.rst:2834 msgid "" -"Return the highest index in the sequence where the subsequence *sub* is found, such that *sub* " -"is contained within ``s[start:end]``. Optional arguments *start* and *end* are interpreted as " -"in slice notation. Return ``-1`` on failure." +"Return the highest index in the sequence where the subsequence *sub* is " +"found, such that *sub* is contained within ``s[start:end]``. Optional " +"arguments *start* and *end* are interpreted as in slice notation. Return " +"``-1`` on failure." msgstr "" #: library/stdtypes.rst:2849 msgid "" -"Like :meth:`~bytes.rfind` but raises :exc:`ValueError` when the subsequence *sub* is not found." +"Like :meth:`~bytes.rfind` but raises :exc:`ValueError` when the subsequence " +"*sub* is not found." msgstr "" #: library/stdtypes.rst:2862 msgid "" -"Split the sequence at the last occurrence of *sep*, and return a 3-tuple containing the part " -"before the separator, the separator itself or its bytearray copy, and the part after the " -"separator. If the separator is not found, return a 3-tuple containing two empty bytes or " -"bytearray objects, followed by a copy of the original sequence." +"Split the sequence at the last occurrence of *sep*, and return a 3-tuple " +"containing the part before the separator, the separator itself or its " +"bytearray copy, and the part after the separator. If the separator is not " +"found, return a 3-tuple containing two empty bytes or bytearray objects, " +"followed by a copy of the original sequence." msgstr "" #: library/stdtypes.rst:2875 msgid "" -"Return ``True`` if the binary data starts with the specified *prefix*, otherwise return " -"``False``. *prefix* can also be a tuple of prefixes to look for. With optional *start*, test " -"beginning at that position. With optional *end*, stop comparing at that position." +"Return ``True`` if the binary data starts with the specified *prefix*, " +"otherwise return ``False``. *prefix* can also be a tuple of prefixes to " +"look for. With optional *start*, test beginning at that position. With " +"optional *end*, stop comparing at that position." msgstr "" #: library/stdtypes.rst:2880 @@ -3626,17 +3988,21 @@ msgstr "" #: library/stdtypes.rst:2886 msgid "" -"Return a copy of the bytes or bytearray object where all bytes occurring in the optional " -"argument *delete* are removed, and the remaining bytes have been mapped through the given " -"translation table, which must be a bytes object of length 256." +"Return a copy of the bytes or bytearray object where all bytes occurring in " +"the optional argument *delete* are removed, and the remaining bytes have " +"been mapped through the given translation table, which must be a bytes " +"object of length 256." msgstr "" #: library/stdtypes.rst:2891 -msgid "You can use the :func:`bytes.maketrans` method to create a translation table." +msgid "" +"You can use the :func:`bytes.maketrans` method to create a translation table." msgstr "" #: library/stdtypes.rst:2894 -msgid "Set the *table* argument to ``None`` for translations that only delete characters::" +msgid "" +"Set the *table* argument to ``None`` for translations that only delete " +"characters::" msgstr "" #: library/stdtypes.rst:2900 @@ -3645,259 +4011,287 @@ msgstr "" #: library/stdtypes.rst:2904 msgid "" -"The following methods on bytes and bytearray objects have default behaviours that assume the " -"use of ASCII compatible binary formats, but can still be used with arbitrary binary data by " -"passing appropriate arguments. Note that all of the bytearray methods in this section do *not* " -"operate in place, and instead produce new objects." +"The following methods on bytes and bytearray objects have default behaviours " +"that assume the use of ASCII compatible binary formats, but can still be " +"used with arbitrary binary data by passing appropriate arguments. Note that " +"all of the bytearray methods in this section do *not* operate in place, and " +"instead produce new objects." msgstr "" #: library/stdtypes.rst:2913 msgid "" -"Return a copy of the object centered in a sequence of length *width*. Padding is done using " -"the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the original " -"sequence is returned if *width* is less than or equal to ``len(s)``." +"Return a copy of the object centered in a sequence of length *width*. " +"Padding is done using the specified *fillbyte* (default is an ASCII space). " +"For :class:`bytes` objects, the original sequence is returned if *width* is " +"less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:2927 msgid "" -"Return a copy of the object left justified in a sequence of length *width*. Padding is done " -"using the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the " -"original sequence is returned if *width* is less than or equal to ``len(s)``." +"Return a copy of the object left justified in a sequence of length *width*. " +"Padding is done using the specified *fillbyte* (default is an ASCII space). " +"For :class:`bytes` objects, the original sequence is returned if *width* is " +"less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:2941 msgid "" -"Return a copy of the sequence with specified leading bytes removed. The *chars* argument is a " -"binary sequence specifying the set of byte values to be removed - the name refers to the fact " -"this method is usually used with ASCII characters. If omitted or ``None``, the *chars* " -"argument defaults to removing ASCII whitespace. The *chars* argument is not a prefix; rather, " +"Return a copy of the sequence with specified leading bytes removed. The " +"*chars* argument is a binary sequence specifying the set of byte values to " +"be removed - the name refers to the fact this method is usually used with " +"ASCII characters. If omitted or ``None``, the *chars* argument defaults to " +"removing ASCII whitespace. The *chars* argument is not a prefix; rather, " "all combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:2953 msgid "" -"The binary sequence of byte values to remove may be any :term:`bytes-like object`. See :meth:" -"`~bytes.removeprefix` for a method that will remove a single prefix string rather than all of " -"a set of characters. For example::" +"The binary sequence of byte values to remove may be any :term:`bytes-like " +"object`. See :meth:`~bytes.removeprefix` for a method that will remove a " +"single prefix string rather than all of a set of characters. For example::" msgstr "" #: library/stdtypes.rst:2972 msgid "" -"Return a copy of the object right justified in a sequence of length *width*. Padding is done " -"using the specified *fillbyte* (default is an ASCII space). For :class:`bytes` objects, the " -"original sequence is returned if *width* is less than or equal to ``len(s)``." +"Return a copy of the object right justified in a sequence of length *width*. " +"Padding is done using the specified *fillbyte* (default is an ASCII space). " +"For :class:`bytes` objects, the original sequence is returned if *width* is " +"less than or equal to ``len(s)``." msgstr "" #: library/stdtypes.rst:2986 msgid "" -"Split the binary sequence into subsequences of the same type, using *sep* as the delimiter " -"string. If *maxsplit* is given, at most *maxsplit* splits are done, the *rightmost* ones. If " -"*sep* is not specified or ``None``, any subsequence consisting solely of ASCII whitespace is a " -"separator. Except for splitting from the right, :meth:`rsplit` behaves like :meth:`split` " -"which is described in detail below." +"Split the binary sequence into subsequences of the same type, using *sep* as " +"the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are " +"done, the *rightmost* ones. If *sep* is not specified or ``None``, any " +"subsequence consisting solely of ASCII whitespace is a separator. Except for " +"splitting from the right, :meth:`rsplit` behaves like :meth:`split` which is " +"described in detail below." msgstr "" #: library/stdtypes.rst:2997 msgid "" -"Return a copy of the sequence with specified trailing bytes removed. The *chars* argument is " -"a binary sequence specifying the set of byte values to be removed - the name refers to the " -"fact this method is usually used with ASCII characters. If omitted or ``None``, the *chars* " -"argument defaults to removing ASCII whitespace. The *chars* argument is not a suffix; rather, " +"Return a copy of the sequence with specified trailing bytes removed. The " +"*chars* argument is a binary sequence specifying the set of byte values to " +"be removed - the name refers to the fact this method is usually used with " +"ASCII characters. If omitted or ``None``, the *chars* argument defaults to " +"removing ASCII whitespace. The *chars* argument is not a suffix; rather, " "all combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:3009 msgid "" -"The binary sequence of byte values to remove may be any :term:`bytes-like object`. See :meth:" -"`~bytes.removesuffix` for a method that will remove a single suffix string rather than all of " -"a set of characters. For example::" +"The binary sequence of byte values to remove may be any :term:`bytes-like " +"object`. See :meth:`~bytes.removesuffix` for a method that will remove a " +"single suffix string rather than all of a set of characters. For example::" msgstr "" #: library/stdtypes.rst:3028 msgid "" -"Split the binary sequence into subsequences of the same type, using *sep* as the delimiter " -"string. If *maxsplit* is given and non-negative, at most *maxsplit* splits are done (thus, the " -"list will have at most ``maxsplit+1`` elements). If *maxsplit* is not specified or is ``-1``, " -"then there is no limit on the number of splits (all possible splits are made)." +"Split the binary sequence into subsequences of the same type, using *sep* as " +"the delimiter string. If *maxsplit* is given and non-negative, at most " +"*maxsplit* splits are done (thus, the list will have at most ``maxsplit+1`` " +"elements). If *maxsplit* is not specified or is ``-1``, then there is no " +"limit on the number of splits (all possible splits are made)." msgstr "" #: library/stdtypes.rst:3034 msgid "" -"If *sep* is given, consecutive delimiters are not grouped together and are deemed to delimit " -"empty subsequences (for example, ``b'1,,2'.split(b',')`` returns ``[b'1', b'', b'2']``). The " -"*sep* argument may consist of a multibyte sequence (for example, ``b'1<>2<>3'.split(b'<>')`` " -"returns ``[b'1', b'2', b'3']``). Splitting an empty sequence with a specified separator " -"returns ``[b'']`` or ``[bytearray(b'')]`` depending on the type of object being split. The " -"*sep* argument may be any :term:`bytes-like object`." +"If *sep* is given, consecutive delimiters are not grouped together and are " +"deemed to delimit empty subsequences (for example, ``b'1,,2'.split(b',')`` " +"returns ``[b'1', b'', b'2']``). The *sep* argument may consist of a " +"multibyte sequence (for example, ``b'1<>2<>3'.split(b'<>')`` returns " +"``[b'1', b'2', b'3']``). Splitting an empty sequence with a specified " +"separator returns ``[b'']`` or ``[bytearray(b'')]`` depending on the type of " +"object being split. The *sep* argument may be any :term:`bytes-like object`." msgstr "" #: library/stdtypes.rst:3052 msgid "" -"If *sep* is not specified or is ``None``, a different splitting algorithm is applied: runs of " -"consecutive ASCII whitespace are regarded as a single separator, and the result will contain " -"no empty strings at the start or end if the sequence has leading or trailing whitespace. " -"Consequently, splitting an empty sequence or a sequence consisting solely of ASCII whitespace " +"If *sep* is not specified or is ``None``, a different splitting algorithm is " +"applied: runs of consecutive ASCII whitespace are regarded as a single " +"separator, and the result will contain no empty strings at the start or end " +"if the sequence has leading or trailing whitespace. Consequently, splitting " +"an empty sequence or a sequence consisting solely of ASCII whitespace " "without a specified separator returns ``[]``." msgstr "" #: library/stdtypes.rst:3073 msgid "" -"Return a copy of the sequence with specified leading and trailing bytes removed. The *chars* " -"argument is a binary sequence specifying the set of byte values to be removed - the name " -"refers to the fact this method is usually used with ASCII characters. If omitted or ``None``, " -"the *chars* argument defaults to removing ASCII whitespace. The *chars* argument is not a " -"prefix or suffix; rather, all combinations of its values are stripped::" +"Return a copy of the sequence with specified leading and trailing bytes " +"removed. The *chars* argument is a binary sequence specifying the set of " +"byte values to be removed - the name refers to the fact this method is " +"usually used with ASCII characters. If omitted or ``None``, the *chars* " +"argument defaults to removing ASCII whitespace. The *chars* argument is not " +"a prefix or suffix; rather, all combinations of its values are stripped::" msgstr "" #: library/stdtypes.rst:3086 -msgid "The binary sequence of byte values to remove may be any :term:`bytes-like object`." +msgid "" +"The binary sequence of byte values to remove may be any :term:`bytes-like " +"object`." msgstr "" #: library/stdtypes.rst:3095 msgid "" -"The following methods on bytes and bytearray objects assume the use of ASCII compatible binary " -"formats and should not be applied to arbitrary binary data. Note that all of the bytearray " -"methods in this section do *not* operate in place, and instead produce new objects." +"The following methods on bytes and bytearray objects assume the use of ASCII " +"compatible binary formats and should not be applied to arbitrary binary " +"data. Note that all of the bytearray methods in this section do *not* " +"operate in place, and instead produce new objects." msgstr "" #: library/stdtypes.rst:3103 msgid "" -"Return a copy of the sequence with each byte interpreted as an ASCII character, and the first " -"byte capitalized and the rest lowercased. Non-ASCII byte values are passed through unchanged." +"Return a copy of the sequence with each byte interpreted as an ASCII " +"character, and the first byte capitalized and the rest lowercased. Non-ASCII " +"byte values are passed through unchanged." msgstr "" #: library/stdtypes.rst:3116 msgid "" -"Return a copy of the sequence where all ASCII tab characters are replaced by one or more ASCII " -"spaces, depending on the current column and the given tab size. Tab positions occur every " -"*tabsize* bytes (default is 8, giving tab positions at columns 0, 8, 16 and so on). To expand " -"the sequence, the current column is set to zero and the sequence is examined byte by byte. If " -"the byte is an ASCII tab character (``b'\\t'``), one or more space characters are inserted in " -"the result until the current column is equal to the next tab position. (The tab character " -"itself is not copied.) If the current byte is an ASCII newline (``b'\\n'``) or carriage " -"return (``b'\\r'``), it is copied and the current column is reset to zero. Any other byte " -"value is copied unchanged and the current column is incremented by one regardless of how the " -"byte value is represented when printed::" +"Return a copy of the sequence where all ASCII tab characters are replaced by " +"one or more ASCII spaces, depending on the current column and the given tab " +"size. Tab positions occur every *tabsize* bytes (default is 8, giving tab " +"positions at columns 0, 8, 16 and so on). To expand the sequence, the " +"current column is set to zero and the sequence is examined byte by byte. If " +"the byte is an ASCII tab character (``b'\\t'``), one or more space " +"characters are inserted in the result until the current column is equal to " +"the next tab position. (The tab character itself is not copied.) If the " +"current byte is an ASCII newline (``b'\\n'``) or carriage return " +"(``b'\\r'``), it is copied and the current column is reset to zero. Any " +"other byte value is copied unchanged and the current column is incremented " +"by one regardless of how the byte value is represented when printed::" msgstr "" #: library/stdtypes.rst:3144 msgid "" -"Return ``True`` if all bytes in the sequence are alphabetical ASCII characters or ASCII " -"decimal digits and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII characters " -"are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``. ASCII decimal digits are those " -"byte values in the sequence ``b'0123456789'``." +"Return ``True`` if all bytes in the sequence are alphabetical ASCII " +"characters or ASCII decimal digits and the sequence is not empty, ``False`` " +"otherwise. Alphabetic ASCII characters are those byte values in the sequence " +"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``. ASCII decimal " +"digits are those byte values in the sequence ``b'0123456789'``." msgstr "" #: library/stdtypes.rst:3161 msgid "" -"Return ``True`` if all bytes in the sequence are alphabetic ASCII characters and the sequence " -"is not empty, ``False`` otherwise. Alphabetic ASCII characters are those byte values in the " -"sequence ``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``." +"Return ``True`` if all bytes in the sequence are alphabetic ASCII characters " +"and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII " +"characters are those byte values in the sequence " +"``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" #: library/stdtypes.rst:3177 msgid "" -"Return ``True`` if the sequence is empty or all bytes in the sequence are ASCII, ``False`` " -"otherwise. ASCII bytes are in the range 0-0x7F." +"Return ``True`` if the sequence is empty or all bytes in the sequence are " +"ASCII, ``False`` otherwise. ASCII bytes are in the range 0-0x7F." msgstr "" #: library/stdtypes.rst:3187 msgid "" -"Return ``True`` if all bytes in the sequence are ASCII decimal digits and the sequence is not " -"empty, ``False`` otherwise. ASCII decimal digits are those byte values in the sequence " -"``b'0123456789'``." +"Return ``True`` if all bytes in the sequence are ASCII decimal digits and " +"the sequence is not empty, ``False`` otherwise. ASCII decimal digits are " +"those byte values in the sequence ``b'0123456789'``." msgstr "" #: library/stdtypes.rst:3202 msgid "" -"Return ``True`` if there is at least one lowercase ASCII character in the sequence and no " -"uppercase ASCII characters, ``False`` otherwise." +"Return ``True`` if there is at least one lowercase ASCII character in the " +"sequence and no uppercase ASCII characters, ``False`` otherwise." msgstr "" -#: library/stdtypes.rst:3254 library/stdtypes.rst:3320 library/stdtypes.rst:3389 +#: library/stdtypes.rst:3254 library/stdtypes.rst:3320 +#: library/stdtypes.rst:3389 msgid "" "Lowercase ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte values in the " -"sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``." +"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte " +"values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" #: library/stdtypes.rst:3220 msgid "" -"Return ``True`` if all bytes in the sequence are ASCII whitespace and the sequence is not " -"empty, ``False`` otherwise. ASCII whitespace characters are those byte values in the sequence " -"``b' \\t\\n\\r\\x0b\\f'`` (space, tab, newline, carriage return, vertical tab, form feed)." +"Return ``True`` if all bytes in the sequence are ASCII whitespace and the " +"sequence is not empty, ``False`` otherwise. ASCII whitespace characters are " +"those byte values in the sequence ``b' \\t\\n\\r\\x0b\\f'`` (space, tab, " +"newline, carriage return, vertical tab, form feed)." msgstr "" #: library/stdtypes.rst:3229 msgid "" -"Return ``True`` if the sequence is ASCII titlecase and the sequence is not empty, ``False`` " -"otherwise. See :meth:`bytes.title` for more details on the definition of \"titlecase\"." +"Return ``True`` if the sequence is ASCII titlecase and the sequence is not " +"empty, ``False`` otherwise. See :meth:`bytes.title` for more details on the " +"definition of \"titlecase\"." msgstr "" #: library/stdtypes.rst:3244 msgid "" -"Return ``True`` if there is at least one uppercase alphabetic ASCII character in the sequence " -"and no lowercase ASCII characters, ``False`` otherwise." +"Return ``True`` if there is at least one uppercase alphabetic ASCII " +"character in the sequence and no lowercase ASCII characters, ``False`` " +"otherwise." msgstr "" #: library/stdtypes.rst:3262 msgid "" -"Return a copy of the sequence with all the uppercase ASCII characters converted to their " -"corresponding lowercase counterpart." +"Return a copy of the sequence with all the uppercase ASCII characters " +"converted to their corresponding lowercase counterpart." msgstr "" #: library/stdtypes.rst:3287 msgid "" -"Return a list of the lines in the binary sequence, breaking at ASCII line boundaries. This " -"method uses the :term:`universal newlines` approach to splitting lines. Line breaks are not " -"included in the resulting list unless *keepends* is given and true." +"Return a list of the lines in the binary sequence, breaking at ASCII line " +"boundaries. This method uses the :term:`universal newlines` approach to " +"splitting lines. Line breaks are not included in the resulting list unless " +"*keepends* is given and true." msgstr "" #: library/stdtypes.rst:3299 msgid "" -"Unlike :meth:`~bytes.split` when a delimiter string *sep* is given, this method returns an " -"empty list for the empty string, and a terminal line break does not result in an extra line::" +"Unlike :meth:`~bytes.split` when a delimiter string *sep* is given, this " +"method returns an empty list for the empty string, and a terminal line break " +"does not result in an extra line::" msgstr "" #: library/stdtypes.rst:3312 msgid "" -"Return a copy of the sequence with all the lowercase ASCII characters converted to their " -"corresponding uppercase counterpart and vice-versa." +"Return a copy of the sequence with all the lowercase ASCII characters " +"converted to their corresponding uppercase counterpart and vice-versa." msgstr "" #: library/stdtypes.rst:3324 msgid "" -"Unlike :func:`str.swapcase()`, it is always the case that ``bin.swapcase().swapcase() == bin`` " -"for the binary versions. Case conversions are symmetrical in ASCII, even though that is not " -"generally true for arbitrary Unicode code points." +"Unlike :func:`str.swapcase()`, it is always the case that ``bin.swapcase()." +"swapcase() == bin`` for the binary versions. Case conversions are " +"symmetrical in ASCII, even though that is not generally true for arbitrary " +"Unicode code points." msgstr "" #: library/stdtypes.rst:3338 msgid "" -"Return a titlecased version of the binary sequence where words start with an uppercase ASCII " -"character and the remaining characters are lowercase. Uncased byte values are left unmodified." +"Return a titlecased version of the binary sequence where words start with an " +"uppercase ASCII character and the remaining characters are lowercase. " +"Uncased byte values are left unmodified." msgstr "" #: library/stdtypes.rst:3347 msgid "" "Lowercase ASCII characters are those byte values in the sequence " -"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte values in the " -"sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. All other byte values are uncased." +"``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte " +"values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``. All other byte " +"values are uncased." msgstr "" #: library/stdtypes.rst:3381 msgid "" -"Return a copy of the sequence with all the lowercase ASCII characters converted to their " -"corresponding uppercase counterpart." +"Return a copy of the sequence with all the lowercase ASCII characters " +"converted to their corresponding uppercase counterpart." msgstr "" #: library/stdtypes.rst:3402 msgid "" -"Return a copy of the sequence left filled with ASCII ``b'0'`` digits to make a sequence of " -"length *width*. A leading sign prefix (``b'+'``/ ``b'-'``) is handled by inserting the padding " -"*after* the sign character rather than before. For :class:`bytes` objects, the original " -"sequence is returned if *width* is less than or equal to ``len(seq)``." +"Return a copy of the sequence left filled with ASCII ``b'0'`` digits to make " +"a sequence of length *width*. A leading sign prefix (``b'+'``/ ``b'-'``) is " +"handled by inserting the padding *after* the sign character rather than " +"before. For :class:`bytes` objects, the original sequence is returned if " +"*width* is less than or equal to ``len(seq)``." msgstr "" #: library/stdtypes.rst:3424 @@ -3906,33 +4300,36 @@ msgstr "" #: library/stdtypes.rst:3441 msgid "" -"The formatting operations described here exhibit a variety of quirks that lead to a number of " -"common errors (such as failing to display tuples and dictionaries correctly). If the value " -"being printed may be a tuple or dictionary, wrap it in a tuple." +"The formatting operations described here exhibit a variety of quirks that " +"lead to a number of common errors (such as failing to display tuples and " +"dictionaries correctly). If the value being printed may be a tuple or " +"dictionary, wrap it in a tuple." msgstr "" #: library/stdtypes.rst:3446 msgid "" -"Bytes objects (``bytes``/``bytearray``) have one unique built-in operation: the ``%`` operator " -"(modulo). This is also known as the bytes *formatting* or *interpolation* operator. Given " -"``format % values`` (where *format* is a bytes object), ``%`` conversion specifications in " -"*format* are replaced with zero or more elements of *values*. The effect is similar to using " -"the :c:func:`sprintf` in the C language." +"Bytes objects (``bytes``/``bytearray``) have one unique built-in operation: " +"the ``%`` operator (modulo). This is also known as the bytes *formatting* or " +"*interpolation* operator. Given ``format % values`` (where *format* is a " +"bytes object), ``%`` conversion specifications in *format* are replaced with " +"zero or more elements of *values*. The effect is similar to using the :c:" +"func:`sprintf` in the C language." msgstr "" #: library/stdtypes.rst:3453 msgid "" -"If *format* requires a single argument, *values* may be a single non-tuple object. [5]_ " -"Otherwise, *values* must be a tuple with exactly the number of items specified by the format " -"bytes object, or a single mapping object (for example, a dictionary)." +"If *format* requires a single argument, *values* may be a single non-tuple " +"object. [5]_ Otherwise, *values* must be a tuple with exactly the number of " +"items specified by the format bytes object, or a single mapping object (for " +"example, a dictionary)." msgstr "" #: library/stdtypes.rst:3487 msgid "" -"When the right argument is a dictionary (or other mapping type), then the formats in the bytes " -"object *must* include a parenthesised mapping key into that dictionary inserted immediately " -"after the ``'%'`` character. The mapping key selects the value to be formatted from the " -"mapping. For example:" +"When the right argument is a dictionary (or other mapping type), then the " +"formats in the bytes object *must* include a parenthesised mapping key into " +"that dictionary inserted immediately after the ``'%'`` character. The " +"mapping key selects the value to be formatted from the mapping. For example:" msgstr "" #: library/stdtypes.rst:3561 @@ -3945,20 +4342,26 @@ msgstr "" #: library/stdtypes.rst:3564 msgid "" -"Bytes (any object that follows the :ref:`buffer protocol ` or has :meth:" -"`__bytes__`)." +"Bytes (any object that follows the :ref:`buffer protocol ` or " +"has :meth:`__bytes__`)." msgstr "" #: library/stdtypes.rst:3568 -msgid "``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code bases." +msgid "" +"``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code " +"bases." msgstr "" #: library/stdtypes.rst:3571 -msgid "Bytes (converts any Python object using ``repr(obj).encode('ascii','backslashreplace)``)." +msgid "" +"Bytes (converts any Python object using ``repr(obj)." +"encode('ascii','backslashreplace)``)." msgstr "" #: library/stdtypes.rst:3574 -msgid "``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code bases." +msgid "" +"``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code " +"bases." msgstr "" #: library/stdtypes.rst:3574 @@ -3983,48 +4386,51 @@ msgstr "" #: library/stdtypes.rst:3633 msgid "" -":class:`memoryview` objects allow Python code to access the internal data of an object that " -"supports the :ref:`buffer protocol ` without copying." +":class:`memoryview` objects allow Python code to access the internal data of " +"an object that supports the :ref:`buffer protocol ` without " +"copying." msgstr "" #: library/stdtypes.rst:3639 msgid "" -"Create a :class:`memoryview` that references *object*. *object* must support the buffer " -"protocol. Built-in objects that support the buffer protocol include :class:`bytes` and :class:" -"`bytearray`." +"Create a :class:`memoryview` that references *object*. *object* must " +"support the buffer protocol. Built-in objects that support the buffer " +"protocol include :class:`bytes` and :class:`bytearray`." msgstr "" #: library/stdtypes.rst:3643 msgid "" -"A :class:`memoryview` has the notion of an *element*, which is the atomic memory unit handled " -"by the originating *object*. For many simple types such as :class:`bytes` and :class:" -"`bytearray`, an element is a single byte, but other types such as :class:`array.array` may " -"have bigger elements." +"A :class:`memoryview` has the notion of an *element*, which is the atomic " +"memory unit handled by the originating *object*. For many simple types such " +"as :class:`bytes` and :class:`bytearray`, an element is a single byte, but " +"other types such as :class:`array.array` may have bigger elements." msgstr "" #: library/stdtypes.rst:3648 msgid "" -"``len(view)`` is equal to the length of :class:`~memoryview.tolist`. If ``view.ndim = 0``, the " -"length is 1. If ``view.ndim = 1``, the length is equal to the number of elements in the view. " -"For higher dimensions, the length is equal to the length of the nested list representation of " -"the view. The :class:`~memoryview.itemsize` attribute will give you the number of bytes in a " -"single element." +"``len(view)`` is equal to the length of :class:`~memoryview.tolist`. If " +"``view.ndim = 0``, the length is 1. If ``view.ndim = 1``, the length is " +"equal to the number of elements in the view. For higher dimensions, the " +"length is equal to the length of the nested list representation of the view. " +"The :class:`~memoryview.itemsize` attribute will give you the number of " +"bytes in a single element." msgstr "" #: library/stdtypes.rst:3655 msgid "" -"A :class:`memoryview` supports slicing and indexing to expose its data. One-dimensional " -"slicing will result in a subview::" +"A :class:`memoryview` supports slicing and indexing to expose its data. One-" +"dimensional slicing will result in a subview::" msgstr "" #: library/stdtypes.rst:3668 msgid "" -"If :class:`~memoryview.format` is one of the native format specifiers from the :mod:`struct` " -"module, indexing with an integer or a tuple of integers is also supported and returns a single " -"*element* with the correct type. One-dimensional memoryviews can be indexed with an integer " -"or a one-integer tuple. Multi-dimensional memoryviews can be indexed with tuples of exactly " -"*ndim* integers where *ndim* is the number of dimensions. Zero-dimensional memoryviews can be " -"indexed with the empty tuple." +"If :class:`~memoryview.format` is one of the native format specifiers from " +"the :mod:`struct` module, indexing with an integer or a tuple of integers is " +"also supported and returns a single *element* with the correct type. One-" +"dimensional memoryviews can be indexed with an integer or a one-integer " +"tuple. Multi-dimensional memoryviews can be indexed with tuples of exactly " +"*ndim* integers where *ndim* is the number of dimensions. Zero-dimensional " +"memoryviews can be indexed with the empty tuple." msgstr "" #: library/stdtypes.rst:3677 @@ -4033,24 +4439,27 @@ msgstr "" #: library/stdtypes.rst:3689 msgid "" -"If the underlying object is writable, the memoryview supports one-dimensional slice " -"assignment. Resizing is not allowed::" +"If the underlying object is writable, the memoryview supports one-" +"dimensional slice assignment. Resizing is not allowed::" msgstr "" #: library/stdtypes.rst:3710 msgid "" -"One-dimensional memoryviews of hashable (read-only) types with formats 'B', 'b' or 'c' are " -"also hashable. The hash is defined as ``hash(m) == hash(m.tobytes())``::" +"One-dimensional memoryviews of hashable (read-only) types with formats 'B', " +"'b' or 'c' are also hashable. The hash is defined as ``hash(m) == hash(m." +"tobytes())``::" msgstr "" #: library/stdtypes.rst:3722 msgid "" -"One-dimensional memoryviews can now be sliced. One-dimensional memoryviews with formats 'B', " -"'b' or 'c' are now hashable." +"One-dimensional memoryviews can now be sliced. One-dimensional memoryviews " +"with formats 'B', 'b' or 'c' are now hashable." msgstr "" #: library/stdtypes.rst:3726 -msgid "memoryview is now registered automatically with :class:`collections.abc.Sequence`" +msgid "" +"memoryview is now registered automatically with :class:`collections.abc." +"Sequence`" msgstr "" #: library/stdtypes.rst:3730 @@ -4063,64 +4472,70 @@ msgstr "" #: library/stdtypes.rst:3737 msgid "" -"A memoryview and a :pep:`3118` exporter are equal if their shapes are equivalent and if all " -"corresponding values are equal when the operands' respective format codes are interpreted " -"using :mod:`struct` syntax." +"A memoryview and a :pep:`3118` exporter are equal if their shapes are " +"equivalent and if all corresponding values are equal when the operands' " +"respective format codes are interpreted using :mod:`struct` syntax." msgstr "" #: library/stdtypes.rst:3741 msgid "" -"For the subset of :mod:`struct` format strings currently supported by :meth:`tolist`, ``v`` " -"and ``w`` are equal if ``v.tolist() == w.tolist()``::" +"For the subset of :mod:`struct` format strings currently supported by :meth:" +"`tolist`, ``v`` and ``w`` are equal if ``v.tolist() == w.tolist()``::" msgstr "" #: library/stdtypes.rst:3760 msgid "" -"If either format string is not supported by the :mod:`struct` module, then the objects will " -"always compare as unequal (even if the format strings and buffer contents are identical)::" +"If either format string is not supported by the :mod:`struct` module, then " +"the objects will always compare as unequal (even if the format strings and " +"buffer contents are identical)::" msgstr "" #: library/stdtypes.rst:3776 msgid "" -"Note that, as with floating point numbers, ``v is w`` does *not* imply ``v == w`` for " -"memoryview objects." +"Note that, as with floating point numbers, ``v is w`` does *not* imply ``v " +"== w`` for memoryview objects." msgstr "" #: library/stdtypes.rst:3779 msgid "" -"Previous versions compared the raw memory disregarding the item format and the logical array " -"structure." +"Previous versions compared the raw memory disregarding the item format and " +"the logical array structure." msgstr "" #: library/stdtypes.rst:3785 msgid "" -"Return the data in the buffer as a bytestring. This is equivalent to calling the :class:" -"`bytes` constructor on the memoryview. ::" +"Return the data in the buffer as a bytestring. This is equivalent to " +"calling the :class:`bytes` constructor on the memoryview. ::" msgstr "" #: library/stdtypes.rst:3794 msgid "" -"For non-contiguous arrays the result is equal to the flattened list representation with all " -"elements converted to bytes. :meth:`tobytes` supports all format strings, including those that " -"are not in :mod:`struct` module syntax." +"For non-contiguous arrays the result is equal to the flattened list " +"representation with all elements converted to bytes. :meth:`tobytes` " +"supports all format strings, including those that are not in :mod:`struct` " +"module syntax." msgstr "" #: library/stdtypes.rst:3799 msgid "" -"*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the original array is " -"converted to C or Fortran order. For contiguous views, 'A' returns an exact copy of the " -"physical memory. In particular, in-memory Fortran order is preserved. For non-contiguous " -"views, the data is converted to C first. *order=None* is the same as *order='C'*." +"*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the " +"original array is converted to C or Fortran order. For contiguous views, 'A' " +"returns an exact copy of the physical memory. In particular, in-memory " +"Fortran order is preserved. For non-contiguous views, the data is converted " +"to C first. *order=None* is the same as *order='C'*." msgstr "" #: library/stdtypes.rst:3808 -msgid "Return a string object containing two hexadecimal digits for each byte in the buffer. ::" +msgid "" +"Return a string object containing two hexadecimal digits for each byte in " +"the buffer. ::" msgstr "" #: library/stdtypes.rst:3817 msgid "" -"Similar to :meth:`bytes.hex`, :meth:`memoryview.hex` now supports optional *sep* and " -"*bytes_per_sep* parameters to insert separators between bytes in the hex output." +"Similar to :meth:`bytes.hex`, :meth:`memoryview.hex` now supports optional " +"*sep* and *bytes_per_sep* parameters to insert separators between bytes in " +"the hex output." msgstr "" #: library/stdtypes.rst:3824 @@ -4129,49 +4544,52 @@ msgstr "" #: library/stdtypes.rst:3834 msgid "" -":meth:`tolist` now supports all single character native formats in :mod:`struct` module syntax " -"as well as multi-dimensional representations." +":meth:`tolist` now supports all single character native formats in :mod:" +"`struct` module syntax as well as multi-dimensional representations." msgstr "" #: library/stdtypes.rst:3841 msgid "" -"Return a readonly version of the memoryview object. The original memoryview object is " -"unchanged. ::" +"Return a readonly version of the memoryview object. The original memoryview " +"object is unchanged. ::" msgstr "" #: library/stdtypes.rst:3860 msgid "" -"Release the underlying buffer exposed by the memoryview object. Many objects take special " -"actions when a view is held on them (for example, a :class:`bytearray` would temporarily " -"forbid resizing); therefore, calling release() is handy to remove these restrictions (and free " -"any dangling resources) as soon as possible." +"Release the underlying buffer exposed by the memoryview object. Many " +"objects take special actions when a view is held on them (for example, a :" +"class:`bytearray` would temporarily forbid resizing); therefore, calling " +"release() is handy to remove these restrictions (and free any dangling " +"resources) as soon as possible." msgstr "" #: library/stdtypes.rst:3866 msgid "" -"After this method has been called, any further operation on the view raises a :class:" -"`ValueError` (except :meth:`release()` itself which can be called multiple times)::" +"After this method has been called, any further operation on the view raises " +"a :class:`ValueError` (except :meth:`release()` itself which can be called " +"multiple times)::" msgstr "" #: library/stdtypes.rst:3877 msgid "" -"The context management protocol can be used for a similar effect, using the ``with`` " -"statement::" +"The context management protocol can be used for a similar effect, using the " +"``with`` statement::" msgstr "" #: library/stdtypes.rst:3893 msgid "" -"Cast a memoryview to a new format or shape. *shape* defaults to ``[byte_length//" -"new_itemsize]``, which means that the result view will be one-dimensional. The return value is " -"a new memoryview, but the buffer itself is not copied. Supported casts are 1D -> C-:term:" -"`contiguous` and C-contiguous -> 1D." +"Cast a memoryview to a new format or shape. *shape* defaults to " +"``[byte_length//new_itemsize]``, which means that the result view will be " +"one-dimensional. The return value is a new memoryview, but the buffer itself " +"is not copied. Supported casts are 1D -> C-:term:`contiguous` and C-" +"contiguous -> 1D." msgstr "" #: library/stdtypes.rst:3899 msgid "" -"The destination format is restricted to a single element native format in :mod:`struct` " -"syntax. One of the formats must be a byte format ('B', 'b' or 'c'). The byte length of the " -"result must be the same as the original length." +"The destination format is restricted to a single element native format in :" +"mod:`struct` syntax. One of the formats must be a byte format ('B', 'b' or " +"'c'). The byte length of the result must be the same as the original length." msgstr "" #: library/stdtypes.rst:3904 @@ -4204,9 +4622,9 @@ msgstr "" #: library/stdtypes.rst:3998 msgid "" -"``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the amount of space in " -"bytes that the array would use in a contiguous representation. It is not necessarily equal to " -"``len(m)``::" +"``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the " +"amount of space in bytes that the array would use in a contiguous " +"representation. It is not necessarily equal to ``len(m)``::" msgstr "" #: library/stdtypes.rst:4017 @@ -4219,15 +4637,16 @@ msgstr "" #: library/stdtypes.rst:4038 msgid "" -"A string containing the format (in :mod:`struct` module style) for each element in the view. A " -"memoryview can be created from exporters with arbitrary format strings, but some methods (e." -"g. :meth:`tolist`) are restricted to native single element formats." +"A string containing the format (in :mod:`struct` module style) for each " +"element in the view. A memoryview can be created from exporters with " +"arbitrary format strings, but some methods (e.g. :meth:`tolist`) are " +"restricted to native single element formats." msgstr "" #: library/stdtypes.rst:4043 msgid "" -"format ``'B'`` is now handled according to the struct module syntax. This means that " -"``memoryview(b'abc')[0] == b'abc'[0] == 97``." +"format ``'B'`` is now handled according to the struct module syntax. This " +"means that ``memoryview(b'abc')[0] == b'abc'[0] == 97``." msgstr "" #: library/stdtypes.rst:4049 @@ -4236,13 +4655,14 @@ msgstr "" #: library/stdtypes.rst:4062 msgid "" -"An integer indicating how many dimensions of a multi-dimensional array the memory represents." +"An integer indicating how many dimensions of a multi-dimensional array the " +"memory represents." msgstr "" #: library/stdtypes.rst:4067 msgid "" -"A tuple of integers the length of :attr:`ndim` giving the shape of the memory as an N-" -"dimensional array." +"A tuple of integers the length of :attr:`ndim` giving the shape of the " +"memory as an N-dimensional array." msgstr "" #: library/stdtypes.rst:4078 @@ -4251,8 +4671,8 @@ msgstr "" #: library/stdtypes.rst:4075 msgid "" -"A tuple of integers the length of :attr:`ndim` giving the size in bytes to access each element " -"for each dimension of the array." +"A tuple of integers the length of :attr:`ndim` giving the size in bytes to " +"access each element for each dimension of the array." msgstr "" #: library/stdtypes.rst:4083 @@ -4277,35 +4697,39 @@ msgstr "" #: library/stdtypes.rst:4111 msgid "" -"A :dfn:`set` object is an unordered collection of distinct :term:`hashable` objects. Common " -"uses include membership testing, removing duplicates from a sequence, and computing " -"mathematical operations such as intersection, union, difference, and symmetric difference. " -"(For other containers see the built-in :class:`dict`, :class:`list`, and :class:`tuple` " -"classes, and the :mod:`collections` module.)" +"A :dfn:`set` object is an unordered collection of distinct :term:`hashable` " +"objects. Common uses include membership testing, removing duplicates from a " +"sequence, and computing mathematical operations such as intersection, union, " +"difference, and symmetric difference. (For other containers see the built-" +"in :class:`dict`, :class:`list`, and :class:`tuple` classes, and the :mod:" +"`collections` module.)" msgstr "" #: library/stdtypes.rst:4118 msgid "" -"Like other collections, sets support ``x in set``, ``len(set)``, and ``for x in set``. Being " -"an unordered collection, sets do not record element position or order of insertion. " -"Accordingly, sets do not support indexing, slicing, or other sequence-like behavior." +"Like other collections, sets support ``x in set``, ``len(set)``, and ``for x " +"in set``. Being an unordered collection, sets do not record element " +"position or order of insertion. Accordingly, sets do not support indexing, " +"slicing, or other sequence-like behavior." msgstr "" #: library/stdtypes.rst:4123 msgid "" -"There are currently two built-in set types, :class:`set` and :class:`frozenset`. The :class:" -"`set` type is mutable --- the contents can be changed using methods like :meth:`~set.add` and :" -"meth:`~set.remove`. Since it is mutable, it has no hash value and cannot be used as either a " -"dictionary key or as an element of another set. The :class:`frozenset` type is immutable and :" -"term:`hashable` --- its contents cannot be altered after it is created; it can therefore be " -"used as a dictionary key or as an element of another set." +"There are currently two built-in set types, :class:`set` and :class:" +"`frozenset`. The :class:`set` type is mutable --- the contents can be " +"changed using methods like :meth:`~set.add` and :meth:`~set.remove`. Since " +"it is mutable, it has no hash value and cannot be used as either a " +"dictionary key or as an element of another set. The :class:`frozenset` type " +"is immutable and :term:`hashable` --- its contents cannot be altered after " +"it is created; it can therefore be used as a dictionary key or as an element " +"of another set." msgstr "" #: library/stdtypes.rst:4131 msgid "" -"Non-empty sets (not frozensets) can be created by placing a comma-separated list of elements " -"within braces, for example: ``{'jack', 'sjoerd'}``, in addition to the :class:`set` " -"constructor." +"Non-empty sets (not frozensets) can be created by placing a comma-separated " +"list of elements within braces, for example: ``{'jack', 'sjoerd'}``, in " +"addition to the :class:`set` constructor." msgstr "" #: library/stdtypes.rst:4135 @@ -4314,9 +4738,10 @@ msgstr "" #: library/stdtypes.rst:4140 msgid "" -"Return a new set or frozenset object whose elements are taken from *iterable*. The elements " -"of a set must be :term:`hashable`. To represent sets of sets, the inner sets must be :class:" -"`frozenset` objects. If *iterable* is not specified, a new empty set is returned." +"Return a new set or frozenset object whose elements are taken from " +"*iterable*. The elements of a set must be :term:`hashable`. To represent " +"sets of sets, the inner sets must be :class:`frozenset` objects. If " +"*iterable* is not specified, a new empty set is returned." msgstr "" #: library/stdtypes.rst:4146 @@ -4324,19 +4749,25 @@ msgid "Sets can be created by several means:" msgstr "" #: library/stdtypes.rst:4148 -msgid "Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``" +msgid "" +"Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``" msgstr "" #: library/stdtypes.rst:4149 -msgid "Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``" +msgid "" +"Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``" msgstr "" #: library/stdtypes.rst:4150 -msgid "Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', 'foo'])``" +msgid "" +"Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', " +"'foo'])``" msgstr "" #: library/stdtypes.rst:4152 -msgid "Instances of :class:`set` and :class:`frozenset` provide the following operations:" +msgid "" +"Instances of :class:`set` and :class:`frozenset` provide the following " +"operations:" msgstr "" #: library/stdtypes.rst:4157 @@ -4353,8 +4784,8 @@ msgstr "" #: library/stdtypes.rst:4169 msgid "" -"Return ``True`` if the set has no elements in common with *other*. Sets are disjoint if and " -"only if their intersection is the empty set." +"Return ``True`` if the set has no elements in common with *other*. Sets are " +"disjoint if and only if their intersection is the empty set." msgstr "" #: library/stdtypes.rst:4175 @@ -4363,7 +4794,8 @@ msgstr "" #: library/stdtypes.rst:4179 msgid "" -"Test whether the set is a proper subset of *other*, that is, ``set <= other and set != other``." +"Test whether the set is a proper subset of *other*, that is, ``set <= other " +"and set != other``." msgstr "" #: library/stdtypes.rst:4185 @@ -4372,8 +4804,8 @@ msgstr "" #: library/stdtypes.rst:4189 msgid "" -"Test whether the set is a proper superset of *other*, that is, ``set >= other and set != " -"other``." +"Test whether the set is a proper superset of *other*, that is, ``set >= " +"other and set != other``." msgstr "" #: library/stdtypes.rst:4195 @@ -4389,7 +4821,8 @@ msgid "Return a new set with elements in the set that are not in the others." msgstr "" #: library/stdtypes.rst:4210 -msgid "Return a new set with elements in either the set or *other* but not both." +msgid "" +"Return a new set with elements in either the set or *other* but not both." msgstr "" #: library/stdtypes.rst:4214 @@ -4398,40 +4831,43 @@ msgstr "" #: library/stdtypes.rst:4217 msgid "" -"Note, the non-operator versions of :meth:`union`, :meth:`intersection`, :meth:`difference`, :" -"meth:`symmetric_difference`, :meth:`issubset`, and :meth:`issuperset` methods will accept any " -"iterable as an argument. In contrast, their operator based counterparts require their " -"arguments to be sets. This precludes error-prone constructions like ``set('abc') & 'cbs'`` in " -"favor of the more readable ``set('abc').intersection('cbs')``." +"Note, the non-operator versions of :meth:`union`, :meth:`intersection`, :" +"meth:`difference`, :meth:`symmetric_difference`, :meth:`issubset`, and :meth:" +"`issuperset` methods will accept any iterable as an argument. In contrast, " +"their operator based counterparts require their arguments to be sets. This " +"precludes error-prone constructions like ``set('abc') & 'cbs'`` in favor of " +"the more readable ``set('abc').intersection('cbs')``." msgstr "" #: library/stdtypes.rst:4224 msgid "" -"Both :class:`set` and :class:`frozenset` support set to set comparisons. Two sets are equal if " -"and only if every element of each set is contained in the other (each is a subset of the " -"other). A set is less than another set if and only if the first set is a proper subset of the " -"second set (is a subset, but is not equal). A set is greater than another set if and only if " -"the first set is a proper superset of the second set (is a superset, but is not equal)." +"Both :class:`set` and :class:`frozenset` support set to set comparisons. Two " +"sets are equal if and only if every element of each set is contained in the " +"other (each is a subset of the other). A set is less than another set if and " +"only if the first set is a proper subset of the second set (is a subset, but " +"is not equal). A set is greater than another set if and only if the first " +"set is a proper superset of the second set (is a superset, but is not equal)." msgstr "" #: library/stdtypes.rst:4231 msgid "" -"Instances of :class:`set` are compared to instances of :class:`frozenset` based on their " -"members. For example, ``set('abc') == frozenset('abc')`` returns ``True`` and so does " -"``set('abc') in set([frozenset('abc')])``." +"Instances of :class:`set` are compared to instances of :class:`frozenset` " +"based on their members. For example, ``set('abc') == frozenset('abc')`` " +"returns ``True`` and so does ``set('abc') in set([frozenset('abc')])``." msgstr "" #: library/stdtypes.rst:4235 msgid "" -"The subset and equality comparisons do not generalize to a total ordering function. For " -"example, any two nonempty disjoint sets are not equal and are not subsets of each other, so " -"*all* of the following return ``False``: ``ab``." +"The subset and equality comparisons do not generalize to a total ordering " +"function. For example, any two nonempty disjoint sets are not equal and are " +"not subsets of each other, so *all* of the following return ``False``: " +"``ab``." msgstr "" #: library/stdtypes.rst:4240 msgid "" -"Since sets only define partial ordering (subset relationships), the output of the :meth:`list." -"sort` method is undefined for lists of sets." +"Since sets only define partial ordering (subset relationships), the output " +"of the :meth:`list.sort` method is undefined for lists of sets." msgstr "" #: library/stdtypes.rst:4243 @@ -4440,15 +4876,15 @@ msgstr "" #: library/stdtypes.rst:4245 msgid "" -"Binary operations that mix :class:`set` instances with :class:`frozenset` return the type of " -"the first operand. For example: ``frozenset('ab') | set('bc')`` returns an instance of :class:" -"`frozenset`." +"Binary operations that mix :class:`set` instances with :class:`frozenset` " +"return the type of the first operand. For example: ``frozenset('ab') | " +"set('bc')`` returns an instance of :class:`frozenset`." msgstr "" #: library/stdtypes.rst:4249 msgid "" -"The following table lists operations available for :class:`set` that do not apply to immutable " -"instances of :class:`frozenset`:" +"The following table lists operations available for :class:`set` that do not " +"apply to immutable instances of :class:`frozenset`:" msgstr "" #: library/stdtypes.rst:4255 @@ -4464,7 +4900,8 @@ msgid "Update the set, removing elements found in others." msgstr "" #: library/stdtypes.rst:4270 -msgid "Update the set, keeping only elements found in either set, but not in both." +msgid "" +"Update the set, keeping only elements found in either set, but not in both." msgstr "" #: library/stdtypes.rst:4274 @@ -4473,8 +4910,8 @@ msgstr "" #: library/stdtypes.rst:4278 msgid "" -"Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is not contained in the " -"set." +"Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is not " +"contained in the set." msgstr "" #: library/stdtypes.rst:4283 @@ -4483,8 +4920,8 @@ msgstr "" #: library/stdtypes.rst:4287 msgid "" -"Remove and return an arbitrary element from the set. Raises :exc:`KeyError` if the set is " -"empty." +"Remove and return an arbitrary element from the set. Raises :exc:`KeyError` " +"if the set is empty." msgstr "" #: library/stdtypes.rst:4292 @@ -4493,16 +4930,17 @@ msgstr "" #: library/stdtypes.rst:4295 msgid "" -"Note, the non-operator versions of the :meth:`update`, :meth:`intersection_update`, :meth:" -"`difference_update`, and :meth:`symmetric_difference_update` methods will accept any iterable " -"as an argument." +"Note, the non-operator versions of the :meth:`update`, :meth:" +"`intersection_update`, :meth:`difference_update`, and :meth:" +"`symmetric_difference_update` methods will accept any iterable as an " +"argument." msgstr "" #: library/stdtypes.rst:4300 msgid "" -"Note, the *elem* argument to the :meth:`__contains__`, :meth:`remove`, and :meth:`discard` " -"methods may be a set. To support searching for an equivalent frozenset, a temporary one is " -"created from *elem*." +"Note, the *elem* argument to the :meth:`__contains__`, :meth:`remove`, and :" +"meth:`discard` methods may be a set. To support searching for an equivalent " +"frozenset, a temporary one is created from *elem*." msgstr "" #: library/stdtypes.rst:4308 @@ -4511,34 +4949,36 @@ msgstr "" #: library/stdtypes.rst:4318 msgid "" -"A :term:`mapping` object maps :term:`hashable` values to arbitrary objects. Mappings are " -"mutable objects. There is currently only one standard mapping type, the :dfn:`dictionary`. " -"(For other containers see the built-in :class:`list`, :class:`set`, and :class:`tuple` " -"classes, and the :mod:`collections` module.)" +"A :term:`mapping` object maps :term:`hashable` values to arbitrary objects. " +"Mappings are mutable objects. There is currently only one standard mapping " +"type, the :dfn:`dictionary`. (For other containers see the built-in :class:" +"`list`, :class:`set`, and :class:`tuple` classes, and the :mod:`collections` " +"module.)" msgstr "" #: library/stdtypes.rst:4324 msgid "" -"A dictionary's keys are *almost* arbitrary values. Values that are not :term:`hashable`, that " -"is, values containing lists, dictionaries or other mutable types (that are compared by value " -"rather than by object identity) may not be used as keys. Numeric types used for keys obey the " -"normal rules for numeric comparison: if two numbers compare equal (such as ``1`` and ``1.0``) " -"then they can be used interchangeably to index the same dictionary entry. (Note however, that " -"since computers store floating-point numbers as approximations it is usually unwise to use " -"them as dictionary keys.)" +"A dictionary's keys are *almost* arbitrary values. Values that are not :" +"term:`hashable`, that is, values containing lists, dictionaries or other " +"mutable types (that are compared by value rather than by object identity) " +"may not be used as keys. Numeric types used for keys obey the normal rules " +"for numeric comparison: if two numbers compare equal (such as ``1`` and " +"``1.0``) then they can be used interchangeably to index the same dictionary " +"entry. (Note however, that since computers store floating-point numbers as " +"approximations it is usually unwise to use them as dictionary keys.)" msgstr "" #: library/stdtypes.rst:4333 msgid "" -"Dictionaries can be created by placing a comma-separated list of ``key: value`` pairs within " -"braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``, " -"or by the :class:`dict` constructor." +"Dictionaries can be created by placing a comma-separated list of ``key: " +"value`` pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` " +"or ``{4098: 'jack', 4127: 'sjoerd'}``, or by the :class:`dict` constructor." msgstr "" #: library/stdtypes.rst:4341 msgid "" -"Return a new dictionary initialized from an optional positional argument and a possibly empty " -"set of keyword arguments." +"Return a new dictionary initialized from an optional positional argument and " +"a possibly empty set of keyword arguments." msgstr "" #: library/stdtypes.rst:4344 @@ -4547,8 +4987,8 @@ msgstr "" #: library/stdtypes.rst:4346 msgid "" -"Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': 4098, 'sjoerd': " -"4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``" +"Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': " +"4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``" msgstr "" #: library/stdtypes.rst:4348 @@ -4557,44 +4997,46 @@ msgstr "" #: library/stdtypes.rst:4349 msgid "" -"Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', 200)])``, ``dict(foo=100, " -"bar=200)``" +"Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', " +"200)])``, ``dict(foo=100, bar=200)``" msgstr "" #: library/stdtypes.rst:4352 msgid "" -"If no positional argument is given, an empty dictionary is created. If a positional argument " -"is given and it is a mapping object, a dictionary is created with the same key-value pairs as " -"the mapping object. Otherwise, the positional argument must be an :term:`iterable` object. " -"Each item in the iterable must itself be an iterable with exactly two objects. The first " -"object of each item becomes a key in the new dictionary, and the second object the " -"corresponding value. If a key occurs more than once, the last value for that key becomes the " -"corresponding value in the new dictionary." +"If no positional argument is given, an empty dictionary is created. If a " +"positional argument is given and it is a mapping object, a dictionary is " +"created with the same key-value pairs as the mapping object. Otherwise, the " +"positional argument must be an :term:`iterable` object. Each item in the " +"iterable must itself be an iterable with exactly two objects. The first " +"object of each item becomes a key in the new dictionary, and the second " +"object the corresponding value. If a key occurs more than once, the last " +"value for that key becomes the corresponding value in the new dictionary." msgstr "" #: library/stdtypes.rst:4362 msgid "" -"If keyword arguments are given, the keyword arguments and their values are added to the " -"dictionary created from the positional argument. If a key being added is already present, the " -"value from the keyword argument replaces the value from the positional argument." +"If keyword arguments are given, the keyword arguments and their values are " +"added to the dictionary created from the positional argument. If a key " +"being added is already present, the value from the keyword argument replaces " +"the value from the positional argument." msgstr "" #: library/stdtypes.rst:4367 msgid "" -"To illustrate, the following examples all return a dictionary equal to ``{\"one\": 1, \"two\": " -"2, \"three\": 3}``::" +"To illustrate, the following examples all return a dictionary equal to " +"``{\"one\": 1, \"two\": 2, \"three\": 3}``::" msgstr "" #: library/stdtypes.rst:4379 msgid "" -"Providing keyword arguments as in the first example only works for keys that are valid Python " -"identifiers. Otherwise, any valid keys can be used." +"Providing keyword arguments as in the first example only works for keys that " +"are valid Python identifiers. Otherwise, any valid keys can be used." msgstr "" #: library/stdtypes.rst:4383 msgid "" -"These are the operations that dictionaries support (and therefore, custom mapping types should " -"support too):" +"These are the operations that dictionaries support (and therefore, custom " +"mapping types should support too):" msgstr "" #: library/stdtypes.rst:4388 @@ -4607,23 +5049,26 @@ msgstr "" #: library/stdtypes.rst:4396 msgid "" -"Return the item of *d* with key *key*. Raises a :exc:`KeyError` if *key* is not in the map." +"Return the item of *d* with key *key*. Raises a :exc:`KeyError` if *key* is " +"not in the map." msgstr "" #: library/stdtypes.rst:4401 msgid "" -"If a subclass of dict defines a method :meth:`__missing__` and *key* is not present, the " -"``d[key]`` operation calls that method with the key *key* as argument. The ``d[key]`` " -"operation then returns or raises whatever is returned or raised by the ``__missing__(key)`` " -"call. No other operations or methods invoke :meth:`__missing__`. If :meth:`__missing__` is not " -"defined, :exc:`KeyError` is raised. :meth:`__missing__` must be a method; it cannot be an " -"instance variable::" +"If a subclass of dict defines a method :meth:`__missing__` and *key* is not " +"present, the ``d[key]`` operation calls that method with the key *key* as " +"argument. The ``d[key]`` operation then returns or raises whatever is " +"returned or raised by the ``__missing__(key)`` call. No other operations or " +"methods invoke :meth:`__missing__`. If :meth:`__missing__` is not defined, :" +"exc:`KeyError` is raised. :meth:`__missing__` must be a method; it cannot be " +"an instance variable::" msgstr "" #: library/stdtypes.rst:4419 msgid "" -"The example above shows part of the implementation of :class:`collections.Counter`. A " -"different ``__missing__`` method is used by :class:`collections.defaultdict`." +"The example above shows part of the implementation of :class:`collections." +"Counter`. A different ``__missing__`` method is used by :class:`collections." +"defaultdict`." msgstr "" #: library/stdtypes.rst:4425 @@ -4631,7 +5076,9 @@ msgid "Set ``d[key]`` to *value*." msgstr "" #: library/stdtypes.rst:4429 -msgid "Remove ``d[key]`` from *d*. Raises a :exc:`KeyError` if *key* is not in the map." +msgid "" +"Remove ``d[key]`` from *d*. Raises a :exc:`KeyError` if *key* is not in the " +"map." msgstr "" #: library/stdtypes.rst:4434 @@ -4644,7 +5091,8 @@ msgstr "" #: library/stdtypes.rst:4442 msgid "" -"Return an iterator over the keys of the dictionary. This is a shortcut for ``iter(d.keys())``." +"Return an iterator over the keys of the dictionary. This is a shortcut for " +"``iter(d.keys())``." msgstr "" #: library/stdtypes.rst:4447 @@ -4656,125 +5104,134 @@ msgid "Return a shallow copy of the dictionary." msgstr "" #: library/stdtypes.rst:4455 -msgid "Create a new dictionary with keys from *iterable* and values set to *value*." +msgid "" +"Create a new dictionary with keys from *iterable* and values set to *value*." msgstr "" #: library/stdtypes.rst:4457 msgid "" -":meth:`fromkeys` is a class method that returns a new dictionary. *value* defaults to " -"``None``. All of the values refer to just a single instance, so it generally doesn't make " -"sense for *value* to be a mutable object such as an empty list. To get distinct values, use " -"a :ref:`dict comprehension ` instead." +":meth:`fromkeys` is a class method that returns a new dictionary. *value* " +"defaults to ``None``. All of the values refer to just a single instance, so " +"it generally doesn't make sense for *value* to be a mutable object such as " +"an empty list. To get distinct values, use a :ref:`dict comprehension " +"` instead." msgstr "" #: library/stdtypes.rst:4465 msgid "" -"Return the value for *key* if *key* is in the dictionary, else *default*. If *default* is not " -"given, it defaults to ``None``, so that this method never raises a :exc:`KeyError`." +"Return the value for *key* if *key* is in the dictionary, else *default*. If " +"*default* is not given, it defaults to ``None``, so that this method never " +"raises a :exc:`KeyError`." msgstr "" #: library/stdtypes.rst:4471 msgid "" -"Return a new view of the dictionary's items (``(key, value)`` pairs). See the :ref:" -"`documentation of view objects `." +"Return a new view of the dictionary's items (``(key, value)`` pairs). See " +"the :ref:`documentation of view objects `." msgstr "" #: library/stdtypes.rst:4476 msgid "" -"Return a new view of the dictionary's keys. See the :ref:`documentation of view objects `." +"Return a new view of the dictionary's keys. See the :ref:`documentation of " +"view objects `." msgstr "" #: library/stdtypes.rst:4481 msgid "" -"If *key* is in the dictionary, remove it and return its value, else return *default*. If " -"*default* is not given and *key* is not in the dictionary, a :exc:`KeyError` is raised." +"If *key* is in the dictionary, remove it and return its value, else return " +"*default*. If *default* is not given and *key* is not in the dictionary, a :" +"exc:`KeyError` is raised." msgstr "" #: library/stdtypes.rst:4487 msgid "" -"Remove and return a ``(key, value)`` pair from the dictionary. Pairs are returned in :abbr:" -"`LIFO (last-in, first-out)` order." +"Remove and return a ``(key, value)`` pair from the dictionary. Pairs are " +"returned in :abbr:`LIFO (last-in, first-out)` order." msgstr "" #: library/stdtypes.rst:4490 msgid "" -":meth:`popitem` is useful to destructively iterate over a dictionary, as often used in set " -"algorithms. If the dictionary is empty, calling :meth:`popitem` raises a :exc:`KeyError`." +":meth:`popitem` is useful to destructively iterate over a dictionary, as " +"often used in set algorithms. If the dictionary is empty, calling :meth:" +"`popitem` raises a :exc:`KeyError`." msgstr "" #: library/stdtypes.rst:4494 msgid "" -"LIFO order is now guaranteed. In prior versions, :meth:`popitem` would return an arbitrary key/" -"value pair." +"LIFO order is now guaranteed. In prior versions, :meth:`popitem` would " +"return an arbitrary key/value pair." msgstr "" #: library/stdtypes.rst:4500 msgid "" -"Return a reverse iterator over the keys of the dictionary. This is a shortcut for ``reversed(d." -"keys())``." +"Return a reverse iterator over the keys of the dictionary. This is a " +"shortcut for ``reversed(d.keys())``." msgstr "" #: library/stdtypes.rst:4507 msgid "" -"If *key* is in the dictionary, return its value. If not, insert *key* with a value of " -"*default* and return *default*. *default* defaults to ``None``." +"If *key* is in the dictionary, return its value. If not, insert *key* with " +"a value of *default* and return *default*. *default* defaults to ``None``." msgstr "" #: library/stdtypes.rst:4513 msgid "" -"Update the dictionary with the key/value pairs from *other*, overwriting existing keys. " -"Return ``None``." +"Update the dictionary with the key/value pairs from *other*, overwriting " +"existing keys. Return ``None``." msgstr "" #: library/stdtypes.rst:4516 msgid "" -":meth:`update` accepts either another dictionary object or an iterable of key/value pairs (as " -"tuples or other iterables of length two). If keyword arguments are specified, the dictionary " -"is then updated with those key/value pairs: ``d.update(red=1, blue=2)``." +":meth:`update` accepts either another dictionary object or an iterable of " +"key/value pairs (as tuples or other iterables of length two). If keyword " +"arguments are specified, the dictionary is then updated with those key/value " +"pairs: ``d.update(red=1, blue=2)``." msgstr "" #: library/stdtypes.rst:4523 msgid "" -"Return a new view of the dictionary's values. See the :ref:`documentation of view objects " -"`." +"Return a new view of the dictionary's values. See the :ref:`documentation " +"of view objects `." msgstr "" #: library/stdtypes.rst:4526 msgid "" -"An equality comparison between one ``dict.values()`` view and another will always return " -"``False``. This also applies when comparing ``dict.values()`` to itself::" +"An equality comparison between one ``dict.values()`` view and another will " +"always return ``False``. This also applies when comparing ``dict.values()`` " +"to itself::" msgstr "" #: library/stdtypes.rst:4536 msgid "" -"Create a new dictionary with the merged keys and values of *d* and *other*, which must both be " -"dictionaries. The values of *other* take priority when *d* and *other* share keys." +"Create a new dictionary with the merged keys and values of *d* and *other*, " +"which must both be dictionaries. The values of *other* take priority when " +"*d* and *other* share keys." msgstr "" #: library/stdtypes.rst:4544 msgid "" -"Update the dictionary *d* with keys and values from *other*, which may be either a :term:" -"`mapping` or an :term:`iterable` of key/value pairs. The values of *other* take priority when " -"*d* and *other* share keys." +"Update the dictionary *d* with keys and values from *other*, which may be " +"either a :term:`mapping` or an :term:`iterable` of key/value pairs. The " +"values of *other* take priority when *d* and *other* share keys." msgstr "" #: library/stdtypes.rst:4550 msgid "" -"Dictionaries compare equal if and only if they have the same ``(key, value)`` pairs " -"(regardless of ordering). Order comparisons ('<', '<=', '>=', '>') raise :exc:`TypeError`." +"Dictionaries compare equal if and only if they have the same ``(key, " +"value)`` pairs (regardless of ordering). Order comparisons ('<', '<=', '>=', " +"'>') raise :exc:`TypeError`." msgstr "" #: library/stdtypes.rst:4554 msgid "" -"Dictionaries preserve insertion order. Note that updating a key does not affect the order. " -"Keys added after deletion are inserted at the end. ::" +"Dictionaries preserve insertion order. Note that updating a key does not " +"affect the order. Keys added after deletion are inserted at the end. ::" msgstr "" #: library/stdtypes.rst:4572 msgid "" -"Dictionary order is guaranteed to be insertion order. This behavior was an implementation " -"detail of CPython from 3.6." +"Dictionary order is guaranteed to be insertion order. This behavior was an " +"implementation detail of CPython from 3.6." msgstr "" #: library/stdtypes.rst:4576 @@ -4787,7 +5244,8 @@ msgstr "" #: library/stdtypes.rst:4593 msgid "" -":class:`types.MappingProxyType` can be used to create a read-only view of a :class:`dict`." +":class:`types.MappingProxyType` can be used to create a read-only view of a :" +"class:`dict`." msgstr "" #: library/stdtypes.rst:4600 @@ -4796,15 +5254,16 @@ msgstr "" #: library/stdtypes.rst:4602 msgid "" -"The objects returned by :meth:`dict.keys`, :meth:`dict.values` and :meth:`dict.items` are " -"*view objects*. They provide a dynamic view on the dictionary's entries, which means that " -"when the dictionary changes, the view reflects these changes." +"The objects returned by :meth:`dict.keys`, :meth:`dict.values` and :meth:" +"`dict.items` are *view objects*. They provide a dynamic view on the " +"dictionary's entries, which means that when the dictionary changes, the view " +"reflects these changes." msgstr "" #: library/stdtypes.rst:4607 msgid "" -"Dictionary views can be iterated over to yield their respective data, and support membership " -"tests:" +"Dictionary views can be iterated over to yield their respective data, and " +"support membership tests:" msgstr "" #: library/stdtypes.rst:4612 @@ -4813,21 +5272,22 @@ msgstr "" #: library/stdtypes.rst:4616 msgid "" -"Return an iterator over the keys, values or items (represented as tuples of ``(key, value)``) " -"in the dictionary." +"Return an iterator over the keys, values or items (represented as tuples of " +"``(key, value)``) in the dictionary." msgstr "" #: library/stdtypes.rst:4619 msgid "" -"Keys and values are iterated over in insertion order. This allows the creation of ``(value, " -"key)`` pairs using :func:`zip`: ``pairs = zip(d.values(), d.keys())``. Another way to create " -"the same list is ``pairs = [(v, k) for (k, v) in d.items()]``." +"Keys and values are iterated over in insertion order. This allows the " +"creation of ``(value, key)`` pairs using :func:`zip`: ``pairs = zip(d." +"values(), d.keys())``. Another way to create the same list is ``pairs = " +"[(v, k) for (k, v) in d.items()]``." msgstr "" #: library/stdtypes.rst:4624 msgid "" -"Iterating views while adding or deleting entries in the dictionary may raise a :exc:" -"`RuntimeError` or fail to iterate over all entries." +"Iterating views while adding or deleting entries in the dictionary may raise " +"a :exc:`RuntimeError` or fail to iterate over all entries." msgstr "" #: library/stdtypes.rst:4627 @@ -4836,14 +5296,14 @@ msgstr "" #: library/stdtypes.rst:4632 msgid "" -"Return ``True`` if *x* is in the underlying dictionary's keys, values or items (in the latter " -"case, *x* should be a ``(key, value)`` tuple)." +"Return ``True`` if *x* is in the underlying dictionary's keys, values or " +"items (in the latter case, *x* should be a ``(key, value)`` tuple)." msgstr "" #: library/stdtypes.rst:4637 msgid "" -"Return a reverse iterator over the keys, values or items of the dictionary. The view will be " -"iterated in reverse order of the insertion." +"Return a reverse iterator over the keys, values or items of the dictionary. " +"The view will be iterated in reverse order of the insertion." msgstr "" #: library/stdtypes.rst:4640 @@ -4852,17 +5312,18 @@ msgstr "" #: library/stdtypes.rst:4645 msgid "" -"Return a :class:`types.MappingProxyType` that wraps the original dictionary to which the view " -"refers." +"Return a :class:`types.MappingProxyType` that wraps the original dictionary " +"to which the view refers." msgstr "" #: library/stdtypes.rst:4650 msgid "" -"Keys views are set-like since their entries are unique and hashable. If all values are " -"hashable, so that ``(key, value)`` pairs are unique and hashable, then the items view is also " -"set-like. (Values views are not treated as set-like since the entries are generally not " -"unique.) For set-like views, all of the operations defined for the abstract base class :class:" -"`collections.abc.Set` are available (for example, ``==``, ``<``, or ``^``)." +"Keys views are set-like since their entries are unique and hashable. If all " +"values are hashable, so that ``(key, value)`` pairs are unique and hashable, " +"then the items view is also set-like. (Values views are not treated as set-" +"like since the entries are generally not unique.) For set-like views, all " +"of the operations defined for the abstract base class :class:`collections." +"abc.Set` are available (for example, ``==``, ``<``, or ``^``)." msgstr "" #: library/stdtypes.rst:4657 @@ -4875,94 +5336,104 @@ msgstr "" #: library/stdtypes.rst:4705 msgid "" -"Python's :keyword:`with` statement supports the concept of a runtime context defined by a " -"context manager. This is implemented using a pair of methods that allow user-defined classes " -"to define a runtime context that is entered before the statement body is executed and exited " -"when the statement ends:" +"Python's :keyword:`with` statement supports the concept of a runtime context " +"defined by a context manager. This is implemented using a pair of methods " +"that allow user-defined classes to define a runtime context that is entered " +"before the statement body is executed and exited when the statement ends:" msgstr "" #: library/stdtypes.rst:4713 msgid "" -"Enter the runtime context and return either this object or another object related to the " -"runtime context. The value returned by this method is bound to the identifier in the :keyword:" -"`!as` clause of :keyword:`with` statements using this context manager." +"Enter the runtime context and return either this object or another object " +"related to the runtime context. The value returned by this method is bound " +"to the identifier in the :keyword:`!as` clause of :keyword:`with` statements " +"using this context manager." msgstr "" #: library/stdtypes.rst:4718 msgid "" -"An example of a context manager that returns itself is a :term:`file object`. File objects " -"return themselves from __enter__() to allow :func:`open` to be used as the context expression " -"in a :keyword:`with` statement." +"An example of a context manager that returns itself is a :term:`file " +"object`. File objects return themselves from __enter__() to allow :func:" +"`open` to be used as the context expression in a :keyword:`with` statement." msgstr "" #: library/stdtypes.rst:4722 msgid "" -"An example of a context manager that returns a related object is the one returned by :func:" -"`decimal.localcontext`. These managers set the active decimal context to a copy of the " -"original decimal context and then return the copy. This allows changes to be made to the " -"current decimal context in the body of the :keyword:`with` statement without affecting code " -"outside the :keyword:`!with` statement." +"An example of a context manager that returns a related object is the one " +"returned by :func:`decimal.localcontext`. These managers set the active " +"decimal context to a copy of the original decimal context and then return " +"the copy. This allows changes to be made to the current decimal context in " +"the body of the :keyword:`with` statement without affecting code outside " +"the :keyword:`!with` statement." msgstr "" #: library/stdtypes.rst:4732 msgid "" -"Exit the runtime context and return a Boolean flag indicating if any exception that occurred " -"should be suppressed. If an exception occurred while executing the body of the :keyword:`with` " -"statement, the arguments contain the exception type, value and traceback information. " -"Otherwise, all three arguments are ``None``." +"Exit the runtime context and return a Boolean flag indicating if any " +"exception that occurred should be suppressed. If an exception occurred while " +"executing the body of the :keyword:`with` statement, the arguments contain " +"the exception type, value and traceback information. Otherwise, all three " +"arguments are ``None``." msgstr "" #: library/stdtypes.rst:4737 msgid "" -"Returning a true value from this method will cause the :keyword:`with` statement to suppress " -"the exception and continue execution with the statement immediately following the :keyword:`!" -"with` statement. Otherwise the exception continues propagating after this method has finished " -"executing. Exceptions that occur during execution of this method will replace any exception " -"that occurred in the body of the :keyword:`!with` statement." +"Returning a true value from this method will cause the :keyword:`with` " +"statement to suppress the exception and continue execution with the " +"statement immediately following the :keyword:`!with` statement. Otherwise " +"the exception continues propagating after this method has finished " +"executing. Exceptions that occur during execution of this method will " +"replace any exception that occurred in the body of the :keyword:`!with` " +"statement." msgstr "" #: library/stdtypes.rst:4744 msgid "" -"The exception passed in should never be reraised explicitly - instead, this method should " -"return a false value to indicate that the method completed successfully and does not want to " -"suppress the raised exception. This allows context management code to easily detect whether or " -"not an :meth:`__exit__` method has actually failed." +"The exception passed in should never be reraised explicitly - instead, this " +"method should return a false value to indicate that the method completed " +"successfully and does not want to suppress the raised exception. This allows " +"context management code to easily detect whether or not an :meth:`__exit__` " +"method has actually failed." msgstr "" #: library/stdtypes.rst:4750 msgid "" -"Python defines several context managers to support easy thread synchronisation, prompt closure " -"of files or other objects, and simpler manipulation of the active decimal arithmetic context. " -"The specific types are not treated specially beyond their implementation of the context " +"Python defines several context managers to support easy thread " +"synchronisation, prompt closure of files or other objects, and simpler " +"manipulation of the active decimal arithmetic context. The specific types " +"are not treated specially beyond their implementation of the context " "management protocol. See the :mod:`contextlib` module for some examples." msgstr "" #: library/stdtypes.rst:4756 msgid "" -"Python's :term:`generator`\\s and the :class:`contextlib.contextmanager` decorator provide a " -"convenient way to implement these protocols. If a generator function is decorated with the :" -"class:`contextlib.contextmanager` decorator, it will return a context manager implementing the " -"necessary :meth:`~contextmanager.__enter__` and :meth:`~contextmanager.__exit__` methods, " +"Python's :term:`generator`\\s and the :class:`contextlib.contextmanager` " +"decorator provide a convenient way to implement these protocols. If a " +"generator function is decorated with the :class:`contextlib.contextmanager` " +"decorator, it will return a context manager implementing the necessary :meth:" +"`~contextmanager.__enter__` and :meth:`~contextmanager.__exit__` methods, " "rather than the iterator produced by an undecorated generator function." msgstr "" #: library/stdtypes.rst:4763 msgid "" -"Note that there is no specific slot for any of these methods in the type structure for Python " -"objects in the Python/C API. Extension types wanting to define these methods must provide them " -"as a normal Python accessible method. Compared to the overhead of setting up the runtime " -"context, the overhead of a single class dictionary lookup is negligible." +"Note that there is no specific slot for any of these methods in the type " +"structure for Python objects in the Python/C API. Extension types wanting to " +"define these methods must provide them as a normal Python accessible method. " +"Compared to the overhead of setting up the runtime context, the overhead of " +"a single class dictionary lookup is negligible." msgstr "" #: library/stdtypes.rst:4771 msgid "" -"Type Annotation Types --- :ref:`Generic Alias `, :ref:`Union `" +"Type Annotation Types --- :ref:`Generic Alias `, :ref:" +"`Union `" msgstr "" #: library/stdtypes.rst:4776 msgid "" -"The core built-in types for :term:`type annotations ` are :ref:`Generic Alias " -"` and :ref:`Union `." +"The core built-in types for :term:`type annotations ` are :ref:" +"`Generic Alias ` and :ref:`Union `." msgstr "" #: library/stdtypes.rst:4783 @@ -4971,86 +5442,95 @@ msgstr "" #: library/stdtypes.rst:4789 msgid "" -"``GenericAlias`` objects are created by subscripting a class (usually a container), such as " -"``list[int]``. They are intended primarily for :term:`type annotations `." +"``GenericAlias`` objects are created by subscripting a class (usually a " +"container), such as ``list[int]``. They are intended primarily for :term:" +"`type annotations `." msgstr "" #: library/stdtypes.rst:4793 msgid "" -"Usually, the :ref:`subscription ` of container objects calls the method :meth:" -"`__getitem__` of the object. However, the subscription of some containers' classes may call " -"the classmethod :meth:`__class_getitem__` of the class instead. The classmethod :meth:" -"`__class_getitem__` should return a ``GenericAlias`` object." +"Usually, the :ref:`subscription ` of container objects calls " +"the method :meth:`__getitem__` of the object. However, the subscription of " +"some containers' classes may call the classmethod :meth:`__class_getitem__` " +"of the class instead. The classmethod :meth:`__class_getitem__` should " +"return a ``GenericAlias`` object." msgstr "" #: library/stdtypes.rst:4800 msgid "" -"If the :meth:`__getitem__` of the class' metaclass is present, it will take precedence over " -"the :meth:`__class_getitem__` defined in the class (see :pep:`560` for more details)." +"If the :meth:`__getitem__` of the class' metaclass is present, it will take " +"precedence over the :meth:`__class_getitem__` defined in the class (see :pep:" +"`560` for more details)." msgstr "" #: library/stdtypes.rst:4804 msgid "" -"The ``GenericAlias`` object acts as a proxy for :term:`generic types `, " -"implementing *parameterized generics* - a specific instance of a generic which provides the " -"types for container elements." +"The ``GenericAlias`` object acts as a proxy for :term:`generic types " +"`, implementing *parameterized generics* - a specific instance " +"of a generic which provides the types for container elements." msgstr "" #: library/stdtypes.rst:4808 msgid "" -"The user-exposed type for the ``GenericAlias`` object can be accessed from :class:`types." -"GenericAlias` and used for :func:`isinstance` checks. It can also be used to create " -"``GenericAlias`` objects directly." +"The user-exposed type for the ``GenericAlias`` object can be accessed from :" +"class:`types.GenericAlias` and used for :func:`isinstance` checks. It can " +"also be used to create ``GenericAlias`` objects directly." msgstr "" #: library/stdtypes.rst:4814 msgid "" -"Creates a ``GenericAlias`` representing a type ``T`` containing elements of types *X*, *Y*, " -"and more depending on the ``T`` used. For example, a function expecting a :class:`list` " -"containing :class:`float` elements::" +"Creates a ``GenericAlias`` representing a type ``T`` containing elements of " +"types *X*, *Y*, and more depending on the ``T`` used. For example, a " +"function expecting a :class:`list` containing :class:`float` elements::" msgstr "" #: library/stdtypes.rst:4822 msgid "" -"Another example for :term:`mapping` objects, using a :class:`dict`, which is a generic type " -"expecting two type parameters representing the key type and the value type. In this example, " -"the function expects a ``dict`` with keys of type :class:`str` and values of type :class:" -"`int`::" +"Another example for :term:`mapping` objects, using a :class:`dict`, which is " +"a generic type expecting two type parameters representing the key type and " +"the value type. In this example, the function expects a ``dict`` with keys " +"of type :class:`str` and values of type :class:`int`::" msgstr "" #: library/stdtypes.rst:4830 msgid "" -"The builtin functions :func:`isinstance` and :func:`issubclass` do not accept ``GenericAlias`` " -"types for their second argument::" +"The builtin functions :func:`isinstance` and :func:`issubclass` do not " +"accept ``GenericAlias`` types for their second argument::" msgstr "" #: library/stdtypes.rst:4838 msgid "" -"The Python runtime does not enforce :term:`type annotations `. This extends to " -"generic types and their type parameters. When creating an object from a ``GenericAlias``, " -"container elements are not checked against their type. For example, the following code is " -"discouraged, but will run without errors::" +"The Python runtime does not enforce :term:`type annotations `. " +"This extends to generic types and their type parameters. When creating an " +"object from a ``GenericAlias``, container elements are not checked against " +"their type. For example, the following code is discouraged, but will run " +"without errors::" msgstr "" #: library/stdtypes.rst:4848 -msgid "Furthermore, parameterized generics erase type parameters during object creation::" +msgid "" +"Furthermore, parameterized generics erase type parameters during object " +"creation::" msgstr "" #: library/stdtypes.rst:4859 -msgid "Calling :func:`repr` or :func:`str` on a generic shows the parameterized type::" +msgid "" +"Calling :func:`repr` or :func:`str` on a generic shows the parameterized " +"type::" msgstr "" #: library/stdtypes.rst:4867 msgid "" -"The :meth:`__getitem__` method of generics will raise an exception to disallow mistakes like " -"``dict[str][str]``::" +"The :meth:`__getitem__` method of generics will raise an exception to " +"disallow mistakes like ``dict[str][str]``::" msgstr "" #: library/stdtypes.rst:4875 msgid "" -"However, such expressions are valid when :ref:`type variables ` are used. The index " -"must have as many elements as there are type variable items in the ``GenericAlias`` object's :" -"attr:`__args__ `. ::" +"However, such expressions are valid when :ref:`type variables ` " +"are used. The index must have as many elements as there are type variable " +"items in the ``GenericAlias`` object's :attr:`__args__ `. ::" msgstr "" #: library/stdtypes.rst:4886 @@ -5227,21 +5707,21 @@ msgstr "" #: library/stdtypes.rst:4945 msgid "" -"This attribute is a :class:`tuple` (possibly of length 1) of generic types passed to the " -"original :meth:`__class_getitem__` of the generic container::" +"This attribute is a :class:`tuple` (possibly of length 1) of generic types " +"passed to the original :meth:`__class_getitem__` of the generic container::" msgstr "" #: library/stdtypes.rst:4955 msgid "" -"This attribute is a lazily computed tuple (possibly empty) of unique type variables found in " -"``__args__``::" +"This attribute is a lazily computed tuple (possibly empty) of unique type " +"variables found in ``__args__``::" msgstr "" #: library/stdtypes.rst:4966 msgid "" -"A ``GenericAlias`` object with :class:`typing.ParamSpec` parameters may not have correct " -"``__parameters__`` after substitution because :class:`typing.ParamSpec` is intended primarily " -"for static type checking." +"A ``GenericAlias`` object with :class:`typing.ParamSpec` parameters may not " +"have correct ``__parameters__`` after substitution because :class:`typing." +"ParamSpec` is intended primarily for static type checking." msgstr "" #: library/stdtypes.rst:4972 @@ -5262,21 +5742,24 @@ msgstr "" #: library/stdtypes.rst:4988 msgid "" -"A union object holds the value of the ``|`` (bitwise or) operation on multiple :ref:`type " -"objects `. These types are intended primarily for :term:`type annotations " -"`. The union type expression enables cleaner type hinting syntax compared to :data:" -"`typing.Union`." +"A union object holds the value of the ``|`` (bitwise or) operation on " +"multiple :ref:`type objects `. These types are intended " +"primarily for :term:`type annotations `. The union type " +"expression enables cleaner type hinting syntax compared to :data:`typing." +"Union`." msgstr "" #: library/stdtypes.rst:4995 msgid "" -"Defines a union object which holds types *X*, *Y*, and so forth. ``X | Y`` means either X or " -"Y. It is equivalent to ``typing.Union[X, Y]``. For example, the following function expects an " -"argument of type :class:`int` or :class:`float`::" +"Defines a union object which holds types *X*, *Y*, and so forth. ``X | Y`` " +"means either X or Y. It is equivalent to ``typing.Union[X, Y]``. For " +"example, the following function expects an argument of type :class:`int` or :" +"class:`float`::" msgstr "" #: library/stdtypes.rst:5005 -msgid "Union objects can be tested for equality with other union objects. Details:" +msgid "" +"Union objects can be tested for equality with other union objects. Details:" msgstr "" #: library/stdtypes.rst:5007 @@ -5301,25 +5784,28 @@ msgstr "" #: library/stdtypes.rst:5030 msgid "" -"Calls to :func:`isinstance` and :func:`issubclass` are also supported with a union object::" +"Calls to :func:`isinstance` and :func:`issubclass` are also supported with a " +"union object::" msgstr "" #: library/stdtypes.rst:5036 msgid "" -"However, union objects containing :ref:`parameterized generics ` cannot be " -"used::" +"However, union objects containing :ref:`parameterized generics ` cannot be used::" msgstr "" #: library/stdtypes.rst:5044 msgid "" -"The user-exposed type for the union object can be accessed from :data:`types.UnionType` and " -"used for :func:`isinstance` checks. An object cannot be instantiated from the type::" +"The user-exposed type for the union object can be accessed from :data:`types." +"UnionType` and used for :func:`isinstance` checks. An object cannot be " +"instantiated from the type::" msgstr "" #: library/stdtypes.rst:5057 msgid "" -"The :meth:`__or__` method for type objects was added to support the syntax ``X | Y``. If a " -"metaclass implements :meth:`__or__`, the Union may override it::" +"The :meth:`__or__` method for type objects was added to support the syntax " +"``X | Y``. If a metaclass implements :meth:`__or__`, the Union may override " +"it::" msgstr "" #: library/stdtypes.rst:5075 @@ -5332,8 +5818,8 @@ msgstr "" #: library/stdtypes.rst:5085 msgid "" -"The interpreter supports several other kinds of objects. Most of these support only one or two " -"operations." +"The interpreter supports several other kinds of objects. Most of these " +"support only one or two operations." msgstr "" #: library/stdtypes.rst:5092 @@ -5342,28 +5828,31 @@ msgstr "" #: library/stdtypes.rst:5094 msgid "" -"The only special operation on a module is attribute access: ``m.name``, where *m* is a module " -"and *name* accesses a name defined in *m*'s symbol table. Module attributes can be assigned " -"to. (Note that the :keyword:`import` statement is not, strictly speaking, an operation on a " -"module object; ``import foo`` does not require a module object named *foo* to exist, rather it " -"requires an (external) *definition* for a module named *foo* somewhere.)" +"The only special operation on a module is attribute access: ``m.name``, " +"where *m* is a module and *name* accesses a name defined in *m*'s symbol " +"table. Module attributes can be assigned to. (Note that the :keyword:" +"`import` statement is not, strictly speaking, an operation on a module " +"object; ``import foo`` does not require a module object named *foo* to " +"exist, rather it requires an (external) *definition* for a module named " +"*foo* somewhere.)" msgstr "" #: library/stdtypes.rst:5101 msgid "" -"A special attribute of every module is :attr:`~object.__dict__`. This is the dictionary " -"containing the module's symbol table. Modifying this dictionary will actually change the " -"module's symbol table, but direct assignment to the :attr:`~object.__dict__` attribute is not " -"possible (you can write ``m.__dict__['a'] = 1``, which defines ``m.a`` to be ``1``, but you " -"can't write ``m.__dict__ = {}``). Modifying :attr:`~object.__dict__` directly is not " +"A special attribute of every module is :attr:`~object.__dict__`. This is the " +"dictionary containing the module's symbol table. Modifying this dictionary " +"will actually change the module's symbol table, but direct assignment to " +"the :attr:`~object.__dict__` attribute is not possible (you can write ``m." +"__dict__['a'] = 1``, which defines ``m.a`` to be ``1``, but you can't write " +"``m.__dict__ = {}``). Modifying :attr:`~object.__dict__` directly is not " "recommended." msgstr "" #: library/stdtypes.rst:5109 msgid "" -"Modules built into the interpreter are written like this: ````. If " -"loaded from a file, they are written as ````." +"Modules built into the interpreter are written like this: ````. If loaded from a file, they are written as ````." msgstr "" #: library/stdtypes.rst:5117 @@ -5380,15 +5869,16 @@ msgstr "" #: library/stdtypes.rst:5127 msgid "" -"Function objects are created by function definitions. The only operation on a function object " -"is to call it: ``func(argument-list)``." +"Function objects are created by function definitions. The only operation on " +"a function object is to call it: ``func(argument-list)``." msgstr "" #: library/stdtypes.rst:5130 msgid "" -"There are really two flavors of function objects: built-in functions and user-defined " -"functions. Both support the same operation (to call the function), but the implementation is " -"different, hence the different object types." +"There are really two flavors of function objects: built-in functions and " +"user-defined functions. Both support the same operation (to call the " +"function), but the implementation is different, hence the different object " +"types." msgstr "" #: library/stdtypes.rst:5134 @@ -5401,28 +5891,32 @@ msgstr "" #: library/stdtypes.rst:5144 msgid "" -"Methods are functions that are called using the attribute notation. There are two flavors: " -"built-in methods (such as :meth:`append` on lists) and class instance methods. Built-in " -"methods are described with the types that support them." +"Methods are functions that are called using the attribute notation. There " +"are two flavors: built-in methods (such as :meth:`append` on lists) and " +"class instance methods. Built-in methods are described with the types that " +"support them." msgstr "" #: library/stdtypes.rst:5149 msgid "" -"If you access a method (a function defined in a class namespace) through an instance, you get " -"a special object: a :dfn:`bound method` (also called :dfn:`instance method`) object. When " -"called, it will add the ``self`` argument to the argument list. Bound methods have two " -"special read-only attributes: ``m.__self__`` is the object on which the method operates, and " -"``m.__func__`` is the function implementing the method. Calling ``m(arg-1, arg-2, ..., arg-" -"n)`` is completely equivalent to calling ``m.__func__(m.__self__, arg-1, arg-2, ..., arg-n)``." +"If you access a method (a function defined in a class namespace) through an " +"instance, you get a special object: a :dfn:`bound method` (also called :dfn:" +"`instance method`) object. When called, it will add the ``self`` argument to " +"the argument list. Bound methods have two special read-only attributes: ``m." +"__self__`` is the object on which the method operates, and ``m.__func__`` is " +"the function implementing the method. Calling ``m(arg-1, arg-2, ..., arg-" +"n)`` is completely equivalent to calling ``m.__func__(m.__self__, arg-1, " +"arg-2, ..., arg-n)``." msgstr "" #: library/stdtypes.rst:5158 msgid "" -"Like function objects, bound method objects support getting arbitrary attributes. However, " -"since method attributes are actually stored on the underlying function object (``meth." -"__func__``), setting method attributes on bound methods is disallowed. Attempting to set an " -"attribute on a method results in an :exc:`AttributeError` being raised. In order to set a " -"method attribute, you need to explicitly set it on the underlying function object::" +"Like function objects, bound method objects support getting arbitrary " +"attributes. However, since method attributes are actually stored on the " +"underlying function object (``meth.__func__``), setting method attributes on " +"bound methods is disallowed. Attempting to set an attribute on a method " +"results in an :exc:`AttributeError` being raised. In order to set a method " +"attribute, you need to explicitly set it on the underlying function object::" msgstr "" #: library/stdtypes.rst:5209 @@ -5435,23 +5929,24 @@ msgstr "" #: library/stdtypes.rst:5192 msgid "" -"Code objects are used by the implementation to represent \"pseudo-compiled\" executable Python " -"code such as a function body. They differ from function objects because they don't contain a " -"reference to their global execution environment. Code objects are returned by the built-in :" -"func:`compile` function and can be extracted from function objects through their :attr:" +"Code objects are used by the implementation to represent \"pseudo-compiled\" " +"executable Python code such as a function body. They differ from function " +"objects because they don't contain a reference to their global execution " +"environment. Code objects are returned by the built-in :func:`compile` " +"function and can be extracted from function objects through their :attr:" "`__code__` attribute. See also the :mod:`code` module." msgstr "" #: library/stdtypes.rst:5199 msgid "" -"Accessing ``__code__`` raises an :ref:`auditing event ` ``object.__getattr__`` with " -"arguments ``obj`` and ``\"__code__\"``." +"Accessing ``__code__`` raises an :ref:`auditing event ` ``object." +"__getattr__`` with arguments ``obj`` and ``\"__code__\"``." msgstr "" #: library/stdtypes.rst:5206 msgid "" -"A code object can be executed or evaluated by passing it (instead of a source string) to the :" -"func:`exec` or :func:`eval` built-in functions." +"A code object can be executed or evaluated by passing it (instead of a " +"source string) to the :func:`exec` or :func:`eval` built-in functions." msgstr "" #: library/stdtypes.rst:5215 @@ -5460,9 +5955,10 @@ msgstr "" #: library/stdtypes.rst:5221 msgid "" -"Type objects represent the various object types. An object's type is accessed by the built-in " -"function :func:`type`. There are no special operations on types. The standard module :mod:" -"`types` defines names for all standard built-in types." +"Type objects represent the various object types. An object's type is " +"accessed by the built-in function :func:`type`. There are no special " +"operations on types. The standard module :mod:`types` defines names for all " +"standard built-in types." msgstr "" #: library/stdtypes.rst:5226 @@ -5475,9 +5971,9 @@ msgstr "" #: library/stdtypes.rst:5234 msgid "" -"This object is returned by functions that don't explicitly return a value. It supports no " -"special operations. There is exactly one null object, named ``None`` (a built-in name). " -"``type(None)()`` produces the same singleton." +"This object is returned by functions that don't explicitly return a value. " +"It supports no special operations. There is exactly one null object, named " +"``None`` (a built-in name). ``type(None)()`` produces the same singleton." msgstr "" #: library/stdtypes.rst:5238 @@ -5490,9 +5986,10 @@ msgstr "" #: library/stdtypes.rst:5247 msgid "" -"This object is commonly used by slicing (see :ref:`slicings`). It supports no special " -"operations. There is exactly one ellipsis object, named :const:`Ellipsis` (a built-in name). " -"``type(Ellipsis)()`` produces the :const:`Ellipsis` singleton." +"This object is commonly used by slicing (see :ref:`slicings`). It supports " +"no special operations. There is exactly one ellipsis object, named :const:" +"`Ellipsis` (a built-in name). ``type(Ellipsis)()`` produces the :const:" +"`Ellipsis` singleton." msgstr "" #: library/stdtypes.rst:5252 @@ -5505,9 +6002,10 @@ msgstr "" #: library/stdtypes.rst:5260 msgid "" -"This object is returned from comparisons and binary operations when they are asked to operate " -"on types they don't support. See :ref:`comparisons` for more information. There is exactly " -"one ``NotImplemented`` object. ``type(NotImplemented)()`` produces the singleton instance." +"This object is returned from comparisons and binary operations when they are " +"asked to operate on types they don't support. See :ref:`comparisons` for " +"more information. There is exactly one ``NotImplemented`` object. " +"``type(NotImplemented)()`` produces the singleton instance." msgstr "" #: library/stdtypes.rst:5265 @@ -5520,12 +6018,13 @@ msgstr "" #: library/stdtypes.rst:5273 msgid "" -"Boolean values are the two constant objects ``False`` and ``True``. They are used to " -"represent truth values (although other values can also be considered false or true). In " -"numeric contexts (for example when used as the argument to an arithmetic operator), they " -"behave like the integers 0 and 1, respectively. The built-in function :func:`bool` can be used " -"to convert any value to a Boolean, if the value can be interpreted as a truth value (see " -"section :ref:`truth` above)." +"Boolean values are the two constant objects ``False`` and ``True``. They " +"are used to represent truth values (although other values can also be " +"considered false or true). In numeric contexts (for example when used as " +"the argument to an arithmetic operator), they behave like the integers 0 and " +"1, respectively. The built-in function :func:`bool` can be used to convert " +"any value to a Boolean, if the value can be interpreted as a truth value " +"(see section :ref:`truth` above)." msgstr "" #: library/stdtypes.rst:5286 @@ -5538,8 +6037,8 @@ msgstr "" #: library/stdtypes.rst:5294 msgid "" -"See :ref:`types` for this information. It describes stack frame objects, traceback objects, " -"and slice objects." +"See :ref:`types` for this information. It describes stack frame objects, " +"traceback objects, and slice objects." msgstr "" #: library/stdtypes.rst:5301 @@ -5548,12 +6047,15 @@ msgstr "" #: library/stdtypes.rst:5303 msgid "" -"The implementation adds a few special read-only attributes to several object types, where they " -"are relevant. Some of these are not reported by the :func:`dir` built-in function." +"The implementation adds a few special read-only attributes to several object " +"types, where they are relevant. Some of these are not reported by the :func:" +"`dir` built-in function." msgstr "" #: library/stdtypes.rst:5310 -msgid "A dictionary or other mapping object used to store an object's (writable) attributes." +msgid "" +"A dictionary or other mapping object used to store an object's (writable) " +"attributes." msgstr "" #: library/stdtypes.rst:5316 @@ -5565,31 +6067,34 @@ msgid "The tuple of base classes of a class object." msgstr "" #: library/stdtypes.rst:5326 -msgid "The name of the class, function, method, descriptor, or generator instance." +msgid "" +"The name of the class, function, method, descriptor, or generator instance." msgstr "" #: library/stdtypes.rst:5332 msgid "" -"The :term:`qualified name` of the class, function, method, descriptor, or generator instance." +"The :term:`qualified name` of the class, function, method, descriptor, or " +"generator instance." msgstr "" #: library/stdtypes.rst:5340 msgid "" -"This attribute is a tuple of classes that are considered when looking for base classes during " -"method resolution." +"This attribute is a tuple of classes that are considered when looking for " +"base classes during method resolution." msgstr "" #: library/stdtypes.rst:5346 msgid "" -"This method can be overridden by a metaclass to customize the method resolution order for its " -"instances. It is called at class instantiation, and its result is stored in :attr:`~class." -"__mro__`." +"This method can be overridden by a metaclass to customize the method " +"resolution order for its instances. It is called at class instantiation, " +"and its result is stored in :attr:`~class.__mro__`." msgstr "" #: library/stdtypes.rst:5353 msgid "" -"Each class keeps a list of weak references to its immediate subclasses. This method returns a " -"list of all those references still alive. The list is in definition order. Example::" +"Each class keeps a list of weak references to its immediate subclasses. " +"This method returns a list of all those references still alive. The list is " +"in definition order. Example::" msgstr "" #: library/stdtypes.rst:5362 @@ -5598,14 +6103,14 @@ msgstr "" #: library/stdtypes.rst:5363 msgid "" -"Additional information on these special methods may be found in the Python Reference Manual (:" -"ref:`customization`)." +"Additional information on these special methods may be found in the Python " +"Reference Manual (:ref:`customization`)." msgstr "" #: library/stdtypes.rst:5366 msgid "" -"As a consequence, the list ``[1, 2]`` is considered equal to ``[1.0, 2.0]``, and similarly for " -"tuples." +"As a consequence, the list ``[1, 2]`` is considered equal to ``[1.0, 2.0]``, " +"and similarly for tuples." msgstr "" #: library/stdtypes.rst:5369 @@ -5614,12 +6119,13 @@ msgstr "" #: library/stdtypes.rst:5371 msgid "" -"Cased characters are those with general category property being one of \"Lu\" (Letter, " -"uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, titlecase)." +"Cased characters are those with general category property being one of \"Lu" +"\" (Letter, uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, " +"titlecase)." msgstr "" #: library/stdtypes.rst:5374 msgid "" -"To format only a tuple you should therefore provide a singleton tuple whose only element is " -"the tuple to be formatted." +"To format only a tuple you should therefore provide a singleton tuple whose " +"only element is the tuple to be formatted." msgstr "" diff --git a/tutorial/stdlib.po b/tutorial/stdlib.po index 5d98c16bf..69d4a838f 100644 --- a/tutorial/stdlib.po +++ b/tutorial/stdlib.po @@ -381,4 +381,4 @@ msgid "" "`gettext`, :mod:`locale`, and the :mod:`codecs` package." msgstr "" "Uluslararasılaştırma: mod:`gettext`, :mod:`locale` ve :mod:`codecs` paketi " -"dahil olmak üzere bir dizi modül tarafından desteklenir." \ No newline at end of file +"dahil olmak üzere bir dizi modül tarafından desteklenir." From 91c3e26f9442bffef1e6fbe917bb9cf114ceb45b Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 3 Apr 2022 18:26:25 +0300 Subject: [PATCH 25/37] update --- library/stdtypes.po | 130 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 114 insertions(+), 16 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index d44045df4..13e36f525 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2022-02-20 18:26+0300\n" +"PO-Revision-Date: 2022-04-03 18:26+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -82,8 +82,8 @@ msgid "" "built-in objects considered false:" msgstr "" "Varsayılan olarak, bir nesne, sınıfı \"False\" döndüren bir :meth:`__bool__` " -"yöntemini veya nesneyle birlikte çağrıldığında sıfır döndüren bir :meth:" -"`__len__` yöntemini tanımlamadıkça doğru kabul edilir. [1]_ Yanlış olarak " +"metodunu veya nesneyle birlikte çağrıldığında sıfır döndüren bir :meth:" +"`__len__` metodunu tanımlamadıkça doğru kabul edilir. [1]_ Yanlış olarak " "kabul edilen yerleşik nesnelerin çoğu:" #: library/stdtypes.rst:55 @@ -323,7 +323,7 @@ msgid "" "class defines the :meth:`~object.__eq__` method." msgstr "" "Normalde, bir sınıfın özdeş olmayan örnekleri, sınıf :meth:`~object.__eq__` " -"yöntemini tanımlamadığı sürece eşit olmayan olarak karşılaştırılır." +"metodunu tanımlamadığı sürece eşit olmayan olarak karşılaştırılır." #: library/stdtypes.rst:183 msgid "" @@ -334,7 +334,7 @@ msgid "" "meth:`~object.__eq__` are sufficient, if you want the conventional meanings " "of the comparison operators)." msgstr "" -"Bir sınıfın örnekleri, sınıf yeterli yöntemleri tanımlamadıkça, aynı sınıfın " +"Bir sınıfın örnekleri, sınıf yeterli metotları tanımlamadıkça, aynı sınıfın " "diğer örneklerine veya diğer nesne türlerine göre sıralanamaz :meth:`~object." "__lt__`, :meth:`~object.__le__` , :meth:`~object.__gt__` ve :meth:`~object." "__ge__` (karşılaştırma operatörlerin geleneksel anlamlarını istiyorsanız, :" @@ -358,8 +358,8 @@ msgid "" "implement the :meth:`__contains__` method." msgstr "" "Aynı söz dizimsel önceliğe sahip iki işlem daha, :keyword:`in` ve :keyword:" -"`not in`, :term:`iterable` olan veya :meth:`__contains__` yöntemini " -"uygulayan türler tarafından desteklenir." +"`not in`, :term:`iterable` olan veya :meth:`__contains__` metodunu uygulayan " +"türler tarafından desteklenir." #: library/stdtypes.rst:205 msgid "Numeric Types --- :class:`int`, :class:`float`, :class:`complex`" @@ -1251,7 +1251,7 @@ msgid "" "methods, which together form the :dfn:`iterator protocol`:" msgstr "" "Yineleyici nesnelerinin kendilerinin, birlikte :dfn:`iterator protocol` 'ü " -"oluşturan aşağıdaki iki yöntemi desteklemesi gerekir:" +"oluşturan aşağıdaki iki metodu desteklemesi gerekir:" #: library/stdtypes.rst:798 msgid "" @@ -1296,7 +1296,7 @@ msgid "" "`StopIteration`, it must continue to do so on subsequent calls. " "Implementations that do not obey this property are deemed broken." msgstr "" -"Bir yineleyicinin :meth:`~iterator.__next__` yöntemi :exc:`StopIteration` " +"Bir yineleyicinin :meth:`~iterator.__next__` metodu :exc:`StopIteration` " "hatasını verdiğinde, sonraki çağrılarda bunu yapmaya devam etmelidir. Bu " "özelliğe uymayan uygulamalar bozuk sayılır." @@ -1314,9 +1314,9 @@ msgid "" "found in :ref:`the documentation for the yield expression `." msgstr "" "Python'un :term:`generator`\\s, yineleyici protokolünü uygulamak için uygun " -"bir yol sağlar. Bir container nesnesinin :meth:`__iter__` yöntemi bir " +"bir yol sağlar. Bir container nesnesinin :meth:`__iter__` metodu bir " "oluşturucu olarak uygulanırsa, otomatik olarak :meth:`__iter__` ve :meth:" -"`~generator.__next__` yöntemlerini sağlayan bir yineleyici nesne (teknik " +"`~generator.__next__` metotlarını sağlayan bir yineleyici nesne (teknik " "olarak bir oluşturucu nesnesi) döndürür. Oluşturucular hakkında daha fazla " "bilgi :ref:`the documentation for the yield expression ` " "adresinde bulunabilir." @@ -2276,6 +2276,9 @@ msgid "" "provide features such as containment tests, element index lookup, slicing " "and support for negative indices (see :ref:`typesseq`):" msgstr "" +"Aralık (range) nesneleri :class:`collections.abc.Sequence` ABC'sini uygular " +"ve sınırlama testleri, eleman indeksi araması, dilimleme ve negatif " +"indeksler için destek gibi özellikler sağlar (bkz. :ref:`typesseq`):" #: library/stdtypes.rst:1384 msgid "" @@ -2286,6 +2289,12 @@ msgid "" "and :attr:`~range.step` attributes, for example ``range(0) == range(2, 1, " "3)`` or ``range(0, 3, 2) == range(0, 4, 2)``.)" msgstr "" +"Aralık nesnelerini ``==`` ve ``!=`` ile eşitlik açısından test etmek, " +"bunları diziler olarak karşılaştırır. Yani, aynı değer dizisini temsil " +"ediyorlarsa, iki aralık nesnesi eşit kabul edilir. (Eşit karşılaştıran iki " +"aralık nesnesinin farklı :attr:`~range.start`, :attr:`~range.stop` ve :attr:" +"`~range.step` niteliklerine sahip olabileceğini unutmayın, örneğin " +"``range(0) == range(2, 1, 3)`` veya ``range(0, 3, 2) == range(0, 4, 2)``.)" #: library/stdtypes.rst:1391 msgid "" @@ -2293,18 +2302,24 @@ msgid "" "class:`int` objects for membership in constant time instead of iterating " "through all items." msgstr "" +"Dizi ABC'sini uygular, Dilimleme ve negatif indekslemeyi destekler, Tüm " +"öğeleri yinelemek yerine sabit zamanda üyelik için :class:`int` nesnelerini " +"test eder." #: library/stdtypes.rst:1397 msgid "" "Define '==' and '!=' to compare range objects based on the sequence of " "values they define (instead of comparing based on object identity)." msgstr "" +"Aralık nesnelerini tanımladıkları değer sırasına göre karşılaştırmak için " +"'==' ve '!=' tanımlayın (nesne kimliğine göre karşılaştırmak yerine)." #: library/stdtypes.rst:1402 msgid "" "The :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` " "attributes." msgstr "" +":attr:`~range.start`, :attr:`~range.stop` ve :attr:`~range.step` özellikleri." #: library/stdtypes.rst:1408 msgid "" @@ -2312,10 +2327,13 @@ msgid "" "how to implement a lazy version of range suitable for floating point " "applications." msgstr "" +"`Linspace tarifi `_ , kayan " +"nokta uygulamaları için uygun olan tembel bir aralığın nasıl uygulanacağını " +"gösterir." #: library/stdtypes.rst:1420 msgid "Text Sequence Type --- :class:`str`" -msgstr "" +msgstr "Metin Sırası Türü --- :class:`str`" #: library/stdtypes.rst:1422 msgid "" @@ -2323,26 +2341,31 @@ msgid "" "`strings`. Strings are immutable :ref:`sequences ` of Unicode code " "points. String literals are written in a variety of ways:" msgstr "" +"Python'da metinsel veriler :class:`str` nesneleri veya :dfn:`strings` ile " +"işlenir. Dizeler, Unicode kod noktalarının değişmez :ref:`dizgeleridir " +"`. Dize değişmezleri çeşitli şekillerde yazılır:" #: library/stdtypes.rst:1427 msgid "Single quotes: ``'allows embedded \"double\" quotes'``" -msgstr "" +msgstr "Tek tırnak: ``'katıştırılmış \"çift\" tırnaklara izin verir'``" #: library/stdtypes.rst:1428 msgid "Double quotes: ``\"allows embedded 'single' quotes\"``." -msgstr "" +msgstr "Çift tırnak: ``\"katıştırılmış 'tek' tırnaklara izin verir\"``." #: library/stdtypes.rst:1429 msgid "" "Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double quotes" "\"\"\"``" -msgstr "" +msgstr "Üçlü tırnak: ``'''Üç tek tırnak'''``, ``\"\"\"Üç çift tırnak\"\"\"``" #: library/stdtypes.rst:1431 msgid "" "Triple quoted strings may span multiple lines - all associated whitespace " "will be included in the string literal." msgstr "" +"Üçlü tırnak içine alınmış dizeler birden çok satıra yayılabilir - ilişkili " +"tüm boşluklar dize değişmezine dahil edilecektir." #: library/stdtypes.rst:1434 msgid "" @@ -2350,6 +2373,9 @@ msgid "" "whitespace between them will be implicitly converted to a single string " "literal. That is, ``(\"spam \" \"eggs\") == \"spam eggs\"``." msgstr "" +"Tek bir ifadenin parçası olan ve aralarında yalnızca boşluk bulunan dize " +"değişmezleri, örtük olarak tek bir dize değişmezine dönüştürülür. Yani, " +"``(\"spam\" \"yumurtalar\") == \"spam yumurtalar\"``." #: library/stdtypes.rst:1438 msgid "" @@ -2357,18 +2383,27 @@ msgid "" "including supported escape sequences, and the ``r`` (\"raw\") prefix that " "disables most escape sequence processing." msgstr "" +"Desteklenen kaçış dizileri ve çoğu kaçış dizisi işlemeyi devre dışı bırakan " +"``r`` (\"raw\", Türkçesiyle \"ham\") ön eki dahil olmak üzere dize " +"değişmezinin çeşitli biçimleri hakkında daha fazla bilgi için bkz. :ref:" +"`strings`." #: library/stdtypes.rst:1442 msgid "" "Strings may also be created from other objects using the :class:`str` " "constructor." msgstr "" +"Dizeler, :class:`str` yapıcısı kullanılarak diğer nesnelerden de " +"oluşturulabilir." #: library/stdtypes.rst:1445 msgid "" "Since there is no separate \"character\" type, indexing a string produces " "strings of length 1. That is, for a non-empty string *s*, ``s[0] == s[0:1]``." msgstr "" +"Ayrı bir \"karakter\" türü olmadığından, bir dizenin indekslenmesi 1 " +"uzunluğunda dizeler üretir. Yani, boş olmayan bir *s* dizesi için ``s[0] == " +"s[0:1]``." #: library/stdtypes.rst:1451 msgid "" @@ -2376,6 +2411,9 @@ msgid "" "StringIO` can be used to efficiently construct strings from multiple " "fragments." msgstr "" +"Değiştirilebilir bir dize türü de yoktur, ancak :meth:`str.join` veya :class:" +"`io.StringIO` birden çok parçadan dizeleri verimli bir şekilde oluşturmak " +"için kullanılabilir." #: library/stdtypes.rst:1455 msgid "" @@ -2383,13 +2421,20 @@ msgid "" "once again permitted on string literals. It has no effect on the meaning of " "string literals and cannot be combined with the ``r`` prefix." msgstr "" +"Python 2 serisiyle geriye dönük uyumluluk için, dize değişmezlerinde ``u`` " +"ön ekine izin verilir. Bunun dize değişmezlerinin anlamı üzerinde hiçbir " +"etkisi yoktur ve ``r`` ön ekiyle birleştirilemez." #: library/stdtypes.rst:1467 +#, fuzzy msgid "" "Return a :ref:`string ` version of *object*. If *object* is not " "provided, returns the empty string. Otherwise, the behavior of ``str()`` " "depends on whether *encoding* or *errors* is given, as follows." msgstr "" +"*nesne* 'nin :ref:`string ` sürümünü döndürür. *nesne* sağlanmazsa " +"boş dizeyi döndürür. Aksi takdirde, ``str()`` davranışı, aşağıdaki gibi " +"*kodlama* veya *hatalar* 'ın verilmesine bağlıdır." #: library/stdtypes.rst:1471 msgid "" @@ -2399,6 +2444,11 @@ msgid "" "the string itself. If *object* does not have a :meth:`~object.__str__` " "method, then :func:`str` falls back to returning :meth:`repr(object) `." msgstr "" +"Ne *kodlama* ne de *hatalar* verilmezse, ``str(object)`` :meth:`object." +"__str__() ` döndürür; bu, *object* ifadesinin \"gayriresmi\" " +"veya güzel yazdırılabilir dize temsilidir. Dize nesneleri için bu, dizenin " +"kendisidir. *object*'in bir :meth:`~object.__str__` metodu yoksa, :func:" +"`str`, :meth:`repr(object) ` döndürmeye geri döner." #: library/stdtypes.rst:1482 msgid "" @@ -2411,6 +2461,14 @@ msgid "" "decode`. See :ref:`binaryseq` and :ref:`bufferobjects` for information on " "buffer objects." msgstr "" +"*kodlama* veya *hatalar* 'dan en az biri verilirse, *nesne* bir :term:`bytes-" +"like object` olmalıdır (ör. :class:`bytes` veya :class:`bytearray`). Bu " +"durumda, *nesne* bir :class:`bytes` (veya :class:`bytearray`) nesnesiyse " +"``str(bytes, *kodlama*, *hatalar*)``, :meth:`bytes.decode(*kodlama*, " +"*hatalar*) ` 'a eşdeğerdir. Aksi takdirde, arabellek " +"nesnesinin altında yatan bayt nesnesi, :meth:`bytes.decode` çağrılmadan önce " +"elde edilir. Arabellek nesneleri hakkında bilgi için bkz. :ref:`binaryseq` " +"ve :ref:`bufferobjects`." #: library/stdtypes.rst:1491 msgid "" @@ -2419,6 +2477,9 @@ msgid "" "string representation (see also the :option:`-b` command-line option to " "Python). For example::" msgstr "" +"Bir :class:`bytes` nesnesini *kodlama* veya *hatalar* argümanları olmadan :" +"func:`str` 'ye iletmek, gayriresmi dize temsilini döndürmenin ilk durumuna " +"girer (ayrıca bkz. Python için :option:`-b` komut satırı seçeneği)." #: library/stdtypes.rst:1499 msgid "" @@ -2427,18 +2488,25 @@ msgid "" "strings, see the :ref:`f-strings` and :ref:`formatstrings` sections. In " "addition, see the :ref:`stringservices` section." msgstr "" +"``str`` sınıfı ve metotları hakkında daha fazla bilgi için aşağıdaki :ref:" +"`textseq` ve :ref:`string-methods` bölümüne bakın. Biçimlendirilmiş " +"dizelerin çıktısını almak için :ref:`f-strings` ve :ref:`formatstrings` " +"bölümlerine bakın. Ayrıca, :ref:`stringservices` bölümüne de bakın." #: library/stdtypes.rst:1511 msgid "String Methods" -msgstr "" +msgstr "String (Dize) Metotları" #: library/stdtypes.rst:1516 msgid "" "Strings implement all of the :ref:`common ` sequence " "operations, along with the additional methods described below." msgstr "" +"Dizeler, aşağıda açıklanan ek yöntemlerle birlikte tüm :ref:`ortak ` dizi işlemlerini uygular." #: library/stdtypes.rst:1519 +#, fuzzy msgid "" "Strings also support two styles of string formatting, one providing a large " "degree of flexibility and customization (see :meth:`str.format`, :ref:" @@ -2447,6 +2515,12 @@ msgid "" "slightly harder to use correctly, but is often faster for the cases it can " "handle (:ref:`old-string-formatting`)." msgstr "" +"Ayrıca dizeler, biri büyük ölçüde esneklik ve özelleştirme sağlayan ve " +"diğeri daha dar bir tür aralığını işleyen (bkz. :meth:`str.format`, :ref:" +"`formatstrings` ve :ref:`string-formatting`) ve doğru kullanımı biraz daha " +"zor olan C ``printf`` stili biçimlendirmesine dayanan iki dize biçimlendirme " +"stilini destekler, ancak genellikle işleyebileceği durumlar için daha " +"hızlıdır (:ref:`old-string-formatting`)." #: library/stdtypes.rst:1526 msgid "" @@ -2454,25 +2528,36 @@ msgid "" "other modules that provide various text related utilities (including regular " "expression support in the :mod:`re` module)." msgstr "" +"Standart kütüphanenin :ref:`textservices` bölümü, metinle ilgili çeşitli " +"yardımcı programlar sağlayan bir dizi başka modülü kapsar (:mod:`re` " +"modülündeki normal ifade desteği dahil)." #: library/stdtypes.rst:1532 msgid "" "Return a copy of the string with its first character capitalized and the " "rest lowercased." msgstr "" +"İlk karakteri büyük ve geri kalanı küçük harf ile, dizenin bir kopyasını " +"döndürür." #: library/stdtypes.rst:1535 +#, fuzzy msgid "" "The first character is now put into titlecase rather than uppercase. This " "means that characters like digraphs will only have their first letter " "capitalized, instead of the full character." msgstr "" +"Dizenin ilk karakteri başlıklarda olduğu gibi büyük harfe çevrilir. Bu " +"digraf gibi karakterlerin, sadece ilk harflerinin büyütüleceği anlamına " +"gelir." #: library/stdtypes.rst:1542 msgid "" "Return a casefolded copy of the string. Casefolded strings may be used for " "caseless matching." msgstr "" +"Dizenin küçük harfe katlanmış bir kopyasını döndürür. Küçük harfe katlanmış " +"dizeler, büyük/küçük harfsiz eşleştirme için kullanılabilir." #: library/stdtypes.rst:1545 msgid "" @@ -2482,12 +2567,18 @@ msgid "" "already lowercase, :meth:`lower` would do nothing to ``'ß'``; :meth:" "`casefold` converts it to ``\"ss\"``." msgstr "" +"Büyük harf katlama, harf küçültmeye (lowercasing) benzer ancak daha " +"agresiftir, çünkü bir dizedeki tüm büyük/küçük harf ayrımlarını kaldırmayı " +"amaçlar. Örneğin, Almanca küçük harf ``'ß'``, ``\"ss\"`` ile eşdeğerdir. " +"Zaten küçük harf olduğundan, :meth:`lower` ``'ß'`` için hiçbir şey yapmaz; :" +"meth:`casefold` onu ``\"ss\"`` biçimine dönüştürür." #: library/stdtypes.rst:1551 msgid "" "The casefolding algorithm is described in section 3.13 of the Unicode " "Standard." msgstr "" +"Casefolding algoritması, Unicode Standardının 3.13 bölümünde açıklanmıştır." #: library/stdtypes.rst:1559 msgid "" @@ -2495,6 +2586,10 @@ msgid "" "specified *fillchar* (default is an ASCII space). The original string is " "returned if *width* is less than or equal to ``len(s)``." msgstr "" +"*width* uzunluğundaki bir dizede ortalanmış olarak döndürür. Doldurma, " +"belirtilen *fillchar* kullanılarak yapılır (varsayılanı bir ASCII " +"boşluğudur). *width*, ``len(s)`` değerinden küçük veya ona eşitse orijinal " +"dize döndürülür." #: library/stdtypes.rst:1567 msgid "" @@ -2502,6 +2597,9 @@ msgid "" "range [*start*, *end*]. Optional arguments *start* and *end* are " "interpreted as in slice notation." msgstr "" +"[*start*, *end*] aralığında *sub* alt dizesinin örtüşmeyen oluşumlarının " +"sayısını döndürür. İsteğe bağlı bağımsız değişkenler *start* ve *end*, dilim " +"notasyonunda olduğu gibi yorumlanır." #: library/stdtypes.rst:1574 msgid "" From f497cf0c2808ff9ab565f0c7cc5d6e3352cdb87f Mon Sep 17 00:00:00 2001 From: Bengisuyarbas Date: Sun, 3 Apr 2022 21:38:56 +0300 Subject: [PATCH 26/37] update --- library/stdtypes.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 13e36f525..15364fba9 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2022-04-03 18:26+0300\n" +"PO-Revision-Date: 2022-04-03 21:38+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -2479,7 +2479,8 @@ msgid "" msgstr "" "Bir :class:`bytes` nesnesini *kodlama* veya *hatalar* argümanları olmadan :" "func:`str` 'ye iletmek, gayriresmi dize temsilini döndürmenin ilk durumuna " -"girer (ayrıca bkz. Python için :option:`-b` komut satırı seçeneği)." +"girer (ayrıca bkz. Python için :option:`-b` komut satırı seçeneği). " +"Örneğin::" #: library/stdtypes.rst:1499 msgid "" From 9a1c32a4e835d23e87ac8c3bf3599223009bec90 Mon Sep 17 00:00:00 2001 From: Bengisuyarbas Date: Fri, 15 Apr 2022 19:18:35 +0300 Subject: [PATCH 27/37] update --- library/stdtypes.po | 209 ++++++++++++++++++++++++++++++-------------- 1 file changed, 142 insertions(+), 67 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 15364fba9..69c2e8698 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2022-04-03 21:38+0300\n" +"PO-Revision-Date: 2022-04-15 19:17+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -5642,179 +5642,183 @@ msgstr "" #: library/stdtypes.rst:4890 msgid ":class:`tuple`" -msgstr "" +msgstr ":class:`tuple`" #: library/stdtypes.rst:4891 msgid ":class:`list`" -msgstr "" +msgstr ":class:`list`" #: library/stdtypes.rst:4892 msgid ":class:`dict`" -msgstr "" +msgstr ":class:`dict`" #: library/stdtypes.rst:4893 msgid ":class:`set`" -msgstr "" +msgstr ":class:`set`" #: library/stdtypes.rst:4894 msgid ":class:`frozenset`" -msgstr "" +msgstr ":class:`frozenset`" #: library/stdtypes.rst:4895 msgid ":class:`type`" -msgstr "" +msgstr ":class:`type`" #: library/stdtypes.rst:4896 msgid ":class:`collections.deque`" -msgstr "" +msgstr ":class:`collections.deque`" #: library/stdtypes.rst:4897 msgid ":class:`collections.defaultdict`" -msgstr "" +msgstr ":class:`collections.defaultdict`" #: library/stdtypes.rst:4898 msgid ":class:`collections.OrderedDict`" -msgstr "" +msgstr ":class:`collections.OrderedDict`" #: library/stdtypes.rst:4899 msgid ":class:`collections.Counter`" -msgstr "" +msgstr ":class:`collections.Counter`" #: library/stdtypes.rst:4900 msgid ":class:`collections.ChainMap`" -msgstr "" +msgstr ":class:`collections.ChainMap`" #: library/stdtypes.rst:4901 msgid ":class:`collections.abc.Awaitable`" -msgstr "" +msgstr ":class:`collections.abc.Awaitable`" #: library/stdtypes.rst:4902 msgid ":class:`collections.abc.Coroutine`" -msgstr "" +msgstr ":class:`collections.abc.Coroutine`" #: library/stdtypes.rst:4903 msgid ":class:`collections.abc.AsyncIterable`" -msgstr "" +msgstr ":class:`collections.abc.AsyncIterable`" #: library/stdtypes.rst:4904 msgid ":class:`collections.abc.AsyncIterator`" -msgstr "" +msgstr ":class:`collections.abc.AsyncIterator`" #: library/stdtypes.rst:4905 msgid ":class:`collections.abc.AsyncGenerator`" -msgstr "" +msgstr ":class:`collections.abc.AsyncGenerator`" #: library/stdtypes.rst:4906 msgid ":class:`collections.abc.Iterable`" -msgstr "" +msgstr ":class:`collections.abc.Iterable`" #: library/stdtypes.rst:4907 msgid ":class:`collections.abc.Iterator`" -msgstr "" +msgstr ":class:`collections.abc.Iterator`" #: library/stdtypes.rst:4908 msgid ":class:`collections.abc.Generator`" -msgstr "" +msgstr ":class:`collections.abc.Generator`" #: library/stdtypes.rst:4909 msgid ":class:`collections.abc.Reversible`" -msgstr "" +msgstr ":class:`collections.abc.Reversible`" #: library/stdtypes.rst:4910 msgid ":class:`collections.abc.Container`" -msgstr "" +msgstr ":class:`collections.abc.Container`" #: library/stdtypes.rst:4911 msgid ":class:`collections.abc.Collection`" -msgstr "" +msgstr ":class:`collections.abc.Collection`" #: library/stdtypes.rst:4912 msgid ":class:`collections.abc.Callable`" -msgstr "" +msgstr ":class:`collections.abc.Callable`" #: library/stdtypes.rst:4913 msgid ":class:`collections.abc.Set`" -msgstr "" +msgstr ":class:`collections.abc.Set`" #: library/stdtypes.rst:4914 msgid ":class:`collections.abc.MutableSet`" -msgstr "" +msgstr ":class:`collections.abc.MutableSet`" #: library/stdtypes.rst:4915 msgid ":class:`collections.abc.Mapping`" -msgstr "" +msgstr ":class:`collections.abc.Mapping`" #: library/stdtypes.rst:4916 msgid ":class:`collections.abc.MutableMapping`" -msgstr "" +msgstr ":class:`collections.abc.MutableMapping`" #: library/stdtypes.rst:4917 msgid ":class:`collections.abc.Sequence`" -msgstr "" +msgstr ":class:`collections.abc.Sequence`" #: library/stdtypes.rst:4918 msgid ":class:`collections.abc.MutableSequence`" -msgstr "" +msgstr ":class:`collections.abc.MutableSequence`" #: library/stdtypes.rst:4919 msgid ":class:`collections.abc.ByteString`" -msgstr "" +msgstr ":class:`collections.abc.ByteString`" #: library/stdtypes.rst:4920 msgid ":class:`collections.abc.MappingView`" -msgstr "" +msgstr ":class:`collections.abc.MappingView`" #: library/stdtypes.rst:4921 msgid ":class:`collections.abc.KeysView`" -msgstr "" +msgstr ":class:`collections.abc.KeysView`" #: library/stdtypes.rst:4922 msgid ":class:`collections.abc.ItemsView`" -msgstr "" +msgstr ":class:`collections.abc.ItemsView`" #: library/stdtypes.rst:4923 msgid ":class:`collections.abc.ValuesView`" -msgstr "" +msgstr ":class:`collections.abc.ValuesView`" #: library/stdtypes.rst:4924 msgid ":class:`contextlib.AbstractContextManager`" -msgstr "" +msgstr ":class:`contextlib.AbstractContextManager`" #: library/stdtypes.rst:4925 msgid ":class:`contextlib.AbstractAsyncContextManager`" -msgstr "" +msgstr ":class:`contextlib.AbstractAsyncContextManager`" #: library/stdtypes.rst:4926 msgid ":ref:`re.Pattern `" -msgstr "" +msgstr ":ref:`re.Pattern `" #: library/stdtypes.rst:4927 msgid ":ref:`re.Match `" -msgstr "" +msgstr ":ref:`re.Match `" #: library/stdtypes.rst:4931 msgid "Special Attributes of Generic Alias" -msgstr "" +msgstr "Genel Takma Adın Özel Öznitelikleri" #: library/stdtypes.rst:4933 msgid "All parameterized generics implement special read-only attributes." -msgstr "" +msgstr "Tüm parametreli jenerikler özel salt okunur öznitelikler uygular." #: library/stdtypes.rst:4937 msgid "This attribute points at the non-parameterized generic class::" -msgstr "" +msgstr "Bu öznitelik, parametrelendirilmemiş genel sınıfa işaret eder::" #: library/stdtypes.rst:4945 msgid "" "This attribute is a :class:`tuple` (possibly of length 1) of generic types " "passed to the original :meth:`__class_getitem__` of the generic container::" msgstr "" +"Bu öznitelik, genel kabın orijinal :meth:`__class_getitem__` öğesine " +"geçirilen genel türlerin :class:`tuple` (muhtemelen uzunluğu 1'dir):" #: library/stdtypes.rst:4955 msgid "" "This attribute is a lazily computed tuple (possibly empty) of unique type " "variables found in ``__args__``::" msgstr "" +"Bu öznitelik, ''__args__'' içinde bulunan benzersiz tür değişkenlerin tembel " +"bir şekilde hesaplanmış bir demetidir (muhtemelen boş):" #: library/stdtypes.rst:4966 msgid "" @@ -5822,22 +5826,27 @@ msgid "" "have correct ``__parameters__`` after substitution because :class:`typing." "ParamSpec` is intended primarily for static type checking." msgstr "" +"``GenericAlias`` nesnesi ile :class:`typing.ParamSpec` parametreleri " +"değiştirildikten sonra doğru ``__parameters__`` olmayabilir çünkü :class:" +"`typing.ParamSpec` öncelikle statik tip kontrolü için tasarlanmıştır." #: library/stdtypes.rst:4972 msgid ":pep:`585` -- \"Type Hinting Generics In Standard Collections\"" -msgstr "" +msgstr ":pep:`585` -- \"Standart Koleksiyonlarda Tip İma Eden Jenerikler\"" #: library/stdtypes.rst:4973 msgid ":meth:`__class_getitem__` -- Used to implement parameterized generics." msgstr "" +":meth:`__class_getitem__` -- Parametreli jenerikleri uygulamak için " +"kullanılır." #: library/stdtypes.rst:4974 msgid ":ref:`generics` -- Generics in the :mod:`typing` module." -msgstr "" +msgstr ":ref:`generics` -- :mod:`typing` modülündeki jenerikler." #: library/stdtypes.rst:4982 msgid "Union Type" -msgstr "" +msgstr "Sendika Türü" #: library/stdtypes.rst:4988 msgid "" @@ -5847,6 +5856,11 @@ msgid "" "expression enables cleaner type hinting syntax compared to :data:`typing." "Union`." msgstr "" +"Bir birleşim nesnesi, birden çok :ref:`type objects ` " +"üzerinde ``|`` (bitsel veya) işleminin değerini tutar. Bu türler öncelikle " +"aşağıdakiler için tasarlanmıştır :term:`type annotations `. " +"Birleşim türü ifadesi, aşağıdakilere kıyasla daha temiz tür ipucu sözdizimi " +"sağlar :data:`typing.Union`." #: library/stdtypes.rst:4995 msgid "" @@ -5855,37 +5869,44 @@ msgid "" "example, the following function expects an argument of type :class:`int` or :" "class:`float`::" msgstr "" +"*X*, *Y* vb. türleri tutan bir birleşim nesnesi tanımlar. ``X | Y`` X veya Y " +"anlamına gelir. Bu, ``typing.Union[X, Y]`` ile eşdeğerdir. Örneğin, " +"aşağıdaki işlev :class:`int` veya :class:`float`::" #: library/stdtypes.rst:5005 msgid "" "Union objects can be tested for equality with other union objects. Details:" msgstr "" +"Birlik nesneleri, diğer birlik nesneleriyle eşitlik açısından test " +"edilebilir. Detaylar:" #: library/stdtypes.rst:5007 msgid "Unions of unions are flattened::" -msgstr "" +msgstr "Birliklerin birlikleri düzleştirimiştir::" #: library/stdtypes.rst:5011 msgid "Redundant types are removed::" -msgstr "" +msgstr "Gereksiz türler kaldırılır::" #: library/stdtypes.rst:5015 msgid "When comparing unions, the order is ignored::" -msgstr "" +msgstr "Birlikleri karşılaştırırken, sipariş göz ardı edilir::" #: library/stdtypes.rst:5019 msgid "It is compatible with :data:`typing.Union`::" -msgstr "" +msgstr ":data:`typing.Union`:: ile uyumludur:" #: library/stdtypes.rst:5023 msgid "Optional types can be spelled as a union with ``None``::" -msgstr "" +msgstr "İsteğe bağlı türler ``None``:: ile bir birlik olarak yazılabilir:" #: library/stdtypes.rst:5030 msgid "" "Calls to :func:`isinstance` and :func:`issubclass` are also supported with a " "union object::" msgstr "" +":func:`isinstance` ve :func:`issubclass` çağrıları da bir birlik nesnesiyle " +"desteklenir::" #: library/stdtypes.rst:5036 msgid "" @@ -6020,11 +6041,11 @@ msgstr "" #: library/stdtypes.rst:5209 msgid "See :ref:`types` for more information." -msgstr "" +msgstr "Daha fazla bilgi için :ref:`types` sayfasına bakın." #: library/stdtypes.rst:5186 msgid "Code Objects" -msgstr "" +msgstr "Kod Nesneleri" #: library/stdtypes.rst:5192 msgid "" @@ -6041,12 +6062,16 @@ msgid "" "Accessing ``__code__`` raises an :ref:`auditing event ` ``object." "__getattr__`` with arguments ``obj`` and ``\"__code__\"``." msgstr "" +"``__code__``e erişmek,``obj`` ve ``\"__code__\"`` argümanlarıyla ` " +"``object.__getattr__`` oluşturur." #: library/stdtypes.rst:5206 msgid "" "A code object can be executed or evaluated by passing it (instead of a " "source string) to the :func:`exec` or :func:`eval` built-in functions." msgstr "" +"Bir kod nesnesi (kaynak dize yerine) :func:`exec` veya :func:`eval` yerleşik " +"işlevlerine geçirilerek yürütülebilir veya değerlendirilebilir." #: library/stdtypes.rst:5215 msgid "Type Objects" @@ -6059,14 +6084,18 @@ msgid "" "operations on types. The standard module :mod:`types` defines names for all " "standard built-in types." msgstr "" +"Type nesneleri çeşitli nesne türlerini temsil eder. Bir nesnenin türüne " +"yerleşik işlev :func:`type` tarafından erişilir. Türler üzerinde özel bir " +"işlem yoktur. Standart modül :mod:`types` tüm standart yerleşik türler için " +"isimleri tanımlar." #: library/stdtypes.rst:5226 msgid "Types are written like this: ````." -msgstr "" +msgstr "Türler şu şekilde yazılır: ````." #: library/stdtypes.rst:5232 msgid "The Null Object" -msgstr "" +msgstr "Null Nesne" #: library/stdtypes.rst:5234 msgid "" @@ -6074,14 +6103,17 @@ msgid "" "It supports no special operations. There is exactly one null object, named " "``None`` (a built-in name). ``type(None)()`` produces the same singleton." msgstr "" +"Bu nesne, açıkça bir değer döndürmeyen işlevler tarafından döndürülür. Özel " +"operasyonları desteklemez. Tam olarak ``None`` (yerleşik bir ad) adlı bir " +"null nesne vardır. ``type(None)()`` aynı singleton'u üretir." #: library/stdtypes.rst:5238 msgid "It is written as ``None``." -msgstr "" +msgstr "''Yok'' olarak yazılmıştır." #: library/stdtypes.rst:5245 msgid "The Ellipsis Object" -msgstr "" +msgstr "Üç Nokta Nesnesi" #: library/stdtypes.rst:5247 msgid "" @@ -6090,14 +6122,18 @@ msgid "" "`Ellipsis` (a built-in name). ``type(Ellipsis)()`` produces the :const:" "`Ellipsis` singleton." msgstr "" +"Bu nesne genellikle dilimleme tarafından kullanılır (bkz. :ref:`slicings`). " +"Özel operasyonları desteklemez. Tam olarak :const:`Ellipsis` (yerleşik bir " +"ad) adında bir elips nesnesi vardır. ``type(Ellipsis)()``, :const:" +"`Ellipsis` singletonunu üretir." #: library/stdtypes.rst:5252 msgid "It is written as ``Ellipsis`` or ``...``." -msgstr "" +msgstr "``Ellipsis`` veya ``...`` olarak yazılmıştır." #: library/stdtypes.rst:5258 msgid "The NotImplemented Object" -msgstr "" +msgstr "NotImplemented Nesnesi" #: library/stdtypes.rst:5260 msgid "" @@ -6106,14 +6142,18 @@ msgid "" "more information. There is exactly one ``NotImplemented`` object. " "``type(NotImplemented)()`` produces the singleton instance." msgstr "" +"Bu nesne, desteklemedikleri türlerde çalışmaları istendiğinde " +"karşılaştırmalardan ve ikili işlemlerden döndürülür. Daha fazla bilgi için :" +"ref:`comparisons` sayfasına bakın. Tam olarak bir ``NotImplemented`` " +"nesnesi vardır. ``type(NotImplemented)()``, singleton örneğini üretir." #: library/stdtypes.rst:5265 msgid "It is written as ``NotImplemented``." -msgstr "" +msgstr "''NotImplemented'' olarak yazılmıştır." #: library/stdtypes.rst:5271 msgid "Boolean Values" -msgstr "" +msgstr "Boolean Değerleri" #: library/stdtypes.rst:5273 msgid "" @@ -6125,24 +6165,34 @@ msgid "" "any value to a Boolean, if the value can be interpreted as a truth value " "(see section :ref:`truth` above)." msgstr "" +"Boolean değerleri, ``Yanlış`` ve ``Doğru`` olmak üzere iki sabit nesnedir. " +"Doğruluk değerlerini temsil etmek için kullanılırlar (diğer değerler de " +"yanlış veya doğru olarak kabul edilebilir). Sayısal bağlamlarda (örneğin, " +"bir aritmetik işlecinin bağımsız değişkeni olarak kullanıldığında), " +"sırasıyla 0 ve 1 tamsayıları gibi davranırlar. Yerleşik işlev :func:`bool`, " +"değer bir doğruluk değeri olarak yorumlanabiliyorsa, herhangi bir değeri bir " +"Boolean'a dönüştürmek için kullanılabilir (yukarıdaki bölüm :ref:`truth` a " +"bakın)." #: library/stdtypes.rst:5286 msgid "They are written as ``False`` and ``True``, respectively." -msgstr "" +msgstr "Sırasıyla ``Yanlış`` ve ``Doğru`` olarak yazılırlar." #: library/stdtypes.rst:5292 msgid "Internal Objects" -msgstr "" +msgstr "İç Nesneler" #: library/stdtypes.rst:5294 msgid "" "See :ref:`types` for this information. It describes stack frame objects, " "traceback objects, and slice objects." msgstr "" +"Bu bilgi için :ref:`types` sayfasına bakın. Yığın çerçeve nesnelerini, geri " +"izleme nesnelerini ve dilim nesnelerini açıklar." #: library/stdtypes.rst:5301 msgid "Special Attributes" -msgstr "" +msgstr "Özel Özellikler" #: library/stdtypes.rst:5303 msgid "" @@ -6150,37 +6200,46 @@ msgid "" "types, where they are relevant. Some of these are not reported by the :func:" "`dir` built-in function." msgstr "" +"Uygulama, ilgili oldukları çeşitli nesne türlerine birkaç özel salt okunur " +"öznitelik ekler. Bunlardan bazıları :func:`dir` yerleşik işlevi tarafından " +"bildirilmez." #: library/stdtypes.rst:5310 msgid "" "A dictionary or other mapping object used to store an object's (writable) " "attributes." msgstr "" +"Bir nesnenin (yazılabilir) özniteliklerini depolamak için kullanılan sözlük " +"veya başka bir eşleme nesnesi." #: library/stdtypes.rst:5316 msgid "The class to which a class instance belongs." -msgstr "" +msgstr "Bir sınıf örneğinin ait olduğu sınıf." #: library/stdtypes.rst:5321 msgid "The tuple of base classes of a class object." -msgstr "" +msgstr "Bir sınıf elemanının temel sınıflarının kümesi." #: library/stdtypes.rst:5326 msgid "" "The name of the class, function, method, descriptor, or generator instance." -msgstr "" +msgstr "Sınıf, fonksiyon, yöntem, tanımlayıcı veya üretici örneğinin adı." #: library/stdtypes.rst:5332 msgid "" "The :term:`qualified name` of the class, function, method, descriptor, or " "generator instance." msgstr "" +"Sınıf, fonksiyon, yöntem, tanımlayıcı veya üretici örneğinin :term:" +"`qualified name`." #: library/stdtypes.rst:5340 msgid "" "This attribute is a tuple of classes that are considered when looking for " "base classes during method resolution." msgstr "" +"Bu öznitelik, yöntem çözümlemesi sırasında temel sınıfları ararken dikkate " +"alınan bir sınıf kümesidir." #: library/stdtypes.rst:5346 msgid "" @@ -6188,6 +6247,9 @@ msgid "" "resolution order for its instances. It is called at class instantiation, " "and its result is stored in :attr:`~class.__mro__`." msgstr "" +"Bu yöntem, örneklerinin yöntem çözümleme sırasını özelleştirmek için bir " +"meta sınıf tarafından geçersiz kılınabilir. Sınıf örneğinde çağrılır ve " +"sonucu :attr:`~class.__mro__` içinde depolanır." #: library/stdtypes.rst:5353 msgid "" @@ -6195,26 +6257,34 @@ msgid "" "This method returns a list of all those references still alive. The list is " "in definition order. Example::" msgstr "" +"Her sınıf, kendi alt sınıflarına yapılan zayıf referansların bir listesini " +"tutar. Bu yöntem, hala var olan tüm bu başvuruların bir listesini " +"döndürür. Liste tanım sırasına göredir. Örnek::" #: library/stdtypes.rst:5362 msgid "Footnotes" -msgstr "" +msgstr "Dipnotlar" #: library/stdtypes.rst:5363 msgid "" "Additional information on these special methods may be found in the Python " "Reference Manual (:ref:`customization`)." msgstr "" +"Bu özel yöntemler hakkında daha fazla bilgi Python Referans El Kitabında (:" +"ref:`customization`) bulunabilir." #: library/stdtypes.rst:5366 msgid "" "As a consequence, the list ``[1, 2]`` is considered equal to ``[1.0, 2.0]``, " "and similarly for tuples." msgstr "" +"Sonuç olarak, ``[1, 2]`` listesi ``[1.0, 2.0]`` ve benzer şekilde demetler " +"için eşit kabul edilir." #: library/stdtypes.rst:5369 msgid "They must have since the parser can't tell the type of the operands." msgstr "" +"Ayrıştırıcı, işlenenlerin türünü söyleyemediğinden sahip olmaları gerekir." #: library/stdtypes.rst:5371 msgid "" @@ -6222,9 +6292,14 @@ msgid "" "\" (Letter, uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, " "titlecase)." msgstr "" +"Harfli karakterler, genel kategori özelliği \"Lu\" (Harf, büyük), \"Ll" +"\" (Harf, küçük harf) veya \"Lt\" (Harf, başlık) karakterlerinden biri olan " +"karakterlerdir." #: library/stdtypes.rst:5374 msgid "" "To format only a tuple you should therefore provide a singleton tuple whose " "only element is the tuple to be formatted." msgstr "" +"Bu nedenle, yalnızca bir tuple(demet) biçimlendirmek için, tek öğesi " +"biçimlendirilecek tuple(demet) olan tek bir tuple(demet) sağlamanız gerekir." From be3f637a48f7a2d293c877b5a680a4f9ef666b86 Mon Sep 17 00:00:00 2001 From: Ege Akman Date: Sun, 24 Apr 2022 18:55:13 +0300 Subject: [PATCH 28/37] Test workflow --- library/stdtypes.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 69c2e8698..05153a953 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -43,8 +43,7 @@ msgid "" "rearrange their members in place, and don't return a specific item, never " "return the collection instance itself but ``None``." msgstr "" -"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, " -"çıkaran veya yeniden düzenleyen ve belirli bir öğe döndürmeyen metotlar, her " +"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, çıkaran veya yeniden düzenleyen ve belirli bir öğe döndürmeyen metotlar, her " "zaman koleksiyon örneğini değil ``None`` değerini döndürür." #: library/stdtypes.rst:22 From 241f143ca0813a47745a1f5cf583400985a600ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Apr 2022 15:56:42 +0000 Subject: [PATCH 29/37] Wrap translations --- library/stdtypes.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 05153a953..69c2e8698 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -43,7 +43,8 @@ msgid "" "rearrange their members in place, and don't return a specific item, never " "return the collection instance itself but ``None``." msgstr "" -"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, çıkaran veya yeniden düzenleyen ve belirli bir öğe döndürmeyen metotlar, her " +"Bazı koleksiyon sınıfları değişebilirdir. Üyelerini yerinde ekleyen, " +"çıkaran veya yeniden düzenleyen ve belirli bir öğe döndürmeyen metotlar, her " "zaman koleksiyon örneğini değil ``None`` değerini döndürür." #: library/stdtypes.rst:22 From b22dc64850d5d2937c39c08a2fe80aa05edef84e Mon Sep 17 00:00:00 2001 From: Ege Akman Date: Sun, 24 Apr 2022 21:44:29 +0300 Subject: [PATCH 30/37] Update contents.po --- contents.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contents.po b/contents.po index 9a69b157a..268fa98bd 100644 --- a/contents.po +++ b/contents.po @@ -19,4 +19,5 @@ msgstr "" #: contents.rst:3 msgid "Python Documentation contents" -msgstr "Python Dokümantasyon içeriği" +msgstr "" +"Python Dokümantasyon içeriği" From b84287b2c5cb9e5fe32b905dd3ca704f8cbf3c02 Mon Sep 17 00:00:00 2001 From: Ege Akman Date: Sun, 24 Apr 2022 21:47:14 +0300 Subject: [PATCH 31/37] Catch up with master (#39) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update wrap_branch.yml * Update wrap_pr.yml * tutorial/introduction (#27) * Add files via upload * Wrap translations * Update introduction.po Co-authored-by: Ege Akman * Update introduction.po Co-authored-by: Ege Akman * Wrap translations * Delete introduction.po * Rename introduction.po to tutorial/introduction.po * Apply suggestions from code review Co-authored-by: İrfan Karabacak <76447978+irfan-karabacak@users.noreply.github.com> * Wrap translations Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Arda Sak <76947524+Ardasak@users.noreply.github.com> Co-authored-by: Ege Akman Co-authored-by: Ege Akman Co-authored-by: İrfan Karabacak <76447978+irfan-karabacak@users.noreply.github.com> * Update wrap_pr.yml * Create file_reservation.md * Update file_reservation.md * Update file_reservation.md * Update file_reservation.md * Update file_reservation.md * license (#33) * license.po is done * branch fix * fixed * Apply suggestions from code review Co-authored-by: Arda Sak <76947524+Ardasak@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Arda Sak <76947524+Ardasak@users.noreply.github.com> * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: Arda Sak <76947524+Ardasak@users.noreply.github.com> Co-authored-by: Ege Akman * Update wrap_branch.yml * Update wrap_branch.yml * Update wrap_branch.yml * Update wrap_branch.yml * Update wrap_branch.yml * Update wrap_branch.yml * Create get_base_branch.py * Update wrap_branch.yml * Update wrap_branch.yml * Delete get_base_branch.py * Update wrap_branch.yml * Update wrap_branch.yml * Update wrap_branch.yml * Update wrap_branch.yml * Wrap branch: 3.10 (#38) * Wrap translations * Update license.po Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ege Akman Co-authored-by: cvrnk <89136029+cvrnk@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Arda Sak <76947524+Ardasak@users.noreply.github.com> Co-authored-by: İrfan Karabacak <76447978+irfan-karabacak@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/file_reservation.md | 11 + .github/workflows/wrap_branch.yml | 25 ++- .github/workflows/wrap_pr.yml | 4 +- license.po | 214 +++++++++++++------- tutorial/introduction.po | 223 ++++++++++++++++++--- 5 files changed, 370 insertions(+), 107 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/file_reservation.md diff --git a/.github/ISSUE_TEMPLATE/file_reservation.md b/.github/ISSUE_TEMPLATE/file_reservation.md new file mode 100644 index 000000000..c498b2327 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/file_reservation.md @@ -0,0 +1,11 @@ +--- +name: Rezervasyon +about: Bir .po dosyası rezerve etmek istiyorum (üzerinde sadece kendim çalışmak istiyorum). +title: foo/bar.po üzerinde çalışmak istiyorum. +labels: reservation +assignees: '' +--- + + diff --git a/.github/workflows/wrap_branch.yml b/.github/workflows/wrap_branch.yml index 9652ed9bc..bf7ae3b24 100644 --- a/.github/workflows/wrap_branch.yml +++ b/.github/workflows/wrap_branch.yml @@ -14,7 +14,7 @@ jobs: steps: # Checkout the latest code from the repo - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Setup which version of Python to use - name: Set Up Python ${{ matrix.python-version }} @@ -62,10 +62,21 @@ jobs: git commit -m "Wrap translations" echo "WRAPPED=True" >> $GITHUB_ENV fi - # Push changes - - name: Push changes - if: env.WRAPPED == 'True' - uses: ad-m/github-push-action@master + + # Create pull request + - name: Create Pull Request + id: cpr + uses: peter-evans/create-pull-request@v4 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref_name }} + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: Update report + committer: GitHub + author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> + signoff: false + branch: ${{ github.ref_name }}_wrapped + delete-branch: true + title: 'Wrap branch: ${{ github.ref_name }}' + body: Wrapped all translations on branch ${{ github.ref_name }}. + labels: wrap + team-reviewers: reviewers + draft: false diff --git a/.github/workflows/wrap_pr.yml b/.github/workflows/wrap_pr.yml index 3a318f4fb..63096be78 100644 --- a/.github/workflows/wrap_pr.yml +++ b/.github/workflows/wrap_pr.yml @@ -6,6 +6,8 @@ on: jobs: wrap: + # Check if the source branch is from a fork + if: github.event.pull_request.head.repo.full_name == github.repository runs-on: ubuntu-latest strategy: @@ -16,7 +18,7 @@ jobs: steps: # Checkout the latest code from the repo - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.ref }} diff --git a/license.po b/license.po index 062d4f294..6d3799123 100644 --- a/license.po +++ b/license.po @@ -2,27 +2,28 @@ # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"PO-Revision-Date: 2022-04-10 14:55+0300\n" +"Last-Translator: \n" +"Language-Team: TURKISH \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" #: license.rst:7 msgid "History and License" -msgstr "" +msgstr "Tarihçe ve Lisans" #: license.rst:11 msgid "History of the software" -msgstr "" +msgstr "Yazılımın tarihçesi" #: license.rst:13 msgid "" @@ -31,6 +32,10 @@ msgid "" "successor of a language called ABC. Guido remains Python's principal " "author, although it includes many contributions from others." msgstr "" +"Python, 1990'ların başında Guido van Rossum tarafından Hollanda'da Stichting " +"Mathematisch Centrum'da (CWI, bkz. https://www.cwi.nl/) ABC adlı bir dilin " +"devamı olarak oluşturuldu. Guido, diğerlerinin oldukça katkısı olmasına " +"rağmen, Python'un ana yazarı olmaya devam ediyor." #: license.rst:18 msgid "" @@ -38,6 +43,9 @@ msgid "" "Research Initiatives (CNRI, see https://www.cnri.reston.va.us/) in Reston, " "Virginia where he released several versions of the software." msgstr "" +"1995'te Guido, yazılımın çeşitli sürümlerini yayınladığı Virginia, " +"Reston'daki Ulusal Araştırma Girişimleri Kurumu'nda (CNRI, bkz. https://www." +"cnri.reston.va.us/) Python üzerindeki çalışmalarına devam etti." #: license.rst:22 msgid "" @@ -49,6 +57,13 @@ msgid "" "specifically to own Python-related Intellectual Property. Zope Corporation " "is a sponsoring member of the PSF." msgstr "" +"Mayıs 2000'de, Guido ve Python çekirdek geliştirme ekibi, BeOpen PythonLabs " +"ekibini oluşturmak için BeOpen.com'a taşındı. Aynı yılın Ekim ayında " +"PythonLabs ekibi Digital Creations'a (şimdi Zope Corporation; bkz. https://" +"www.zope.org/) taşındı. 2001 yılında, Python Yazılım Vakfı (PSF, bkz. " +"https://www.python.org/psf/) kuruldu, özellikle Python ile ilgili Fikri " +"Mülkiyete sahip olmak için oluşturulmuş kar amacı gütmeyen bir organizasyon. " +"Zope Corporation, PSF'nin sponsor üyesidir." #: license.rst:30 msgid "" @@ -57,138 +72,141 @@ msgid "" "have also been GPL-compatible; the table below summarizes the various " "releases." msgstr "" +"Tüm Python sürümleri Açık Kaynaklıdır (Açık Kaynak Tanımı için bkz. https://" +"opensource.org/). Tarihsel olarak, tümü olmasa da çoğu Python sürümleri de " +"GPL uyumluydu; aşağıdaki tablo çeşitli yayınları özetlemektedir." #: license.rst:35 msgid "Release" -msgstr "" +msgstr "Yayın" #: license.rst:35 msgid "Derived from" -msgstr "" +msgstr "Şundan türedi:" #: license.rst:35 msgid "Year" -msgstr "" +msgstr "Yıl" #: license.rst:35 msgid "Owner" -msgstr "" +msgstr "Sahibi" #: license.rst:35 msgid "GPL compatible?" -msgstr "" +msgstr "GPL uyumlu mu?" #: license.rst:37 msgid "0.9.0 thru 1.2" -msgstr "" +msgstr "0.9.0'dan 1.2'ye" #: license.rst:37 msgid "n/a" -msgstr "" +msgstr "n/a" #: license.rst:37 msgid "1991-1995" -msgstr "" +msgstr "1991-1995" #: license.rst:37 msgid "CWI" -msgstr "" +msgstr "CWI" #: license.rst:49 license.rst:55 license.rst:57 msgid "yes" -msgstr "" +msgstr "evet" #: license.rst:39 msgid "1.3 thru 1.5.2" -msgstr "" +msgstr "1.3 'dan 1.5.2'ye" #: license.rst:39 msgid "1.2" -msgstr "" +msgstr "1.2" #: license.rst:39 msgid "1995-1999" -msgstr "" +msgstr "1995-1999" #: license.rst:45 msgid "CNRI" -msgstr "" +msgstr "CNRI" #: license.rst:45 msgid "1.6" -msgstr "" +msgstr "1.6" #: license.rst:41 msgid "1.5.2" -msgstr "" +msgstr "1.5.2" #: license.rst:43 msgid "2000" -msgstr "" +msgstr "2000" #: license.rst:45 license.rst:47 msgid "no" -msgstr "" +msgstr "hayır" #: license.rst:43 msgid "2.0" -msgstr "" +msgstr "2.0" #: license.rst:43 msgid "BeOpen.com" -msgstr "" +msgstr "BeOpen.com" #: license.rst:45 msgid "1.6.1" -msgstr "" +msgstr "1.6.1" #: license.rst:49 license.rst:51 msgid "2001" -msgstr "" +msgstr "2001" #: license.rst:47 msgid "2.1" -msgstr "" +msgstr "2.1" #: license.rst:49 msgid "2.0+1.6.1" -msgstr "" +msgstr "2.0+1.6.1" #: license.rst:51 license.rst:57 msgid "PSF" -msgstr "" +msgstr "PSF" #: license.rst:49 msgid "2.0.1" -msgstr "" +msgstr "2.0.1" #: license.rst:57 msgid "2.1.1" -msgstr "" +msgstr "2.1.1" #: license.rst:51 msgid "2.1+2.0.1" -msgstr "" +msgstr "2.1+2.0.1" #: license.rst:55 msgid "2.1.2" -msgstr "" +msgstr "2.1.2" #: license.rst:55 msgid "2002" -msgstr "" +msgstr "2002" #: license.rst:55 msgid "2.1.3" -msgstr "" +msgstr "2.1.3" #: license.rst:57 msgid "2.2 and above" -msgstr "" +msgstr "2.2 ve üzeri" #: license.rst:57 msgid "2001-now" -msgstr "" +msgstr "2001-Günümüz" #: license.rst:62 msgid "" @@ -198,22 +216,32 @@ msgid "" "possible to combine Python with other software that is released under the " "GPL; the others don't." msgstr "" +"GPL uyumlu olması, Python'u GPL kapsamında dağıttığımız anlamına gelmez. Tüm " +"Python lisansları, GPL'den farklı olarak, değişikliklerinizi açık kaynak " +"yapmadan değiştirilmiş bir sürümü dağıtmanıza izin verir. GPL uyumlu " +"lisanslar, Python'u GPL kapsamında yayınlanan diğer yazılımlarla " +"birleştirmeyi mümkün kılar; diğerleri yapmaz." #: license.rst:68 msgid "" "Thanks to the many outside volunteers who have worked under Guido's " "direction to make these releases possible." msgstr "" +"Bu yayınları mümkün kılmak için Guido'nun yönetimi altında çalışan birçok " +"gönüllüye teşekkürler." #: license.rst:73 msgid "Terms and conditions for accessing or otherwise using Python" msgstr "" +"Python'a erişmek veya başka bir şekilde kullanmak için şartlar ve koşullar" #: license.rst:75 msgid "" "Python software and documentation are licensed under the :ref:`PSF License " "Agreement `." msgstr "" +"Python yazılımı ve belgeleri :ref:`PSF Lisans Anlaşması ` " +"kapsamında lisanslanmıştır." #: license.rst:78 msgid "" @@ -221,6 +249,9 @@ msgid "" "documentation are dual licensed under the PSF License Agreement and the :ref:" "`Zero-Clause BSD license `." msgstr "" +"Python 3.8.6'dan başlayarak, belgelerdeki örnekler, tarifler ve diğer " +"kodlar, PSF Lisans Sözleşmesi ve :ref:`Zero-Clause BSD license ` " +"kapsamında çift lisanslıdır." #: license.rst:82 msgid "" @@ -228,34 +259,37 @@ msgid "" "licenses are listed with code falling under that license. See :ref:" "`OtherLicenses` for an incomplete list of these licenses." msgstr "" +"Python'a dahil edilen bazı yazılımlar farklı lisanslar altındadır. " +"Lisanslar, bu lisansa giren kodla listelenir. Bu lisansların eksik listesi " +"için bkz. :ref:`OtherLicenses`." #: license.rst:90 msgid "PSF LICENSE AGREEMENT FOR PYTHON |release|" -msgstr "" +msgstr "PYTHON İÇİN PSF LİSANS ANLAŞMASI |release|" #: license.rst:138 msgid "BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0" -msgstr "" +msgstr "PYTHON 2.0 İÇİN BEOPEN.COM LİSANS SÖZLEŞMESİ" #: license.rst:140 msgid "BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1" -msgstr "" +msgstr "BEOPEN PYTHON AÇIK KAYNAK LİSANS SÖZLEŞMESİ SÜRÜM 1" #: license.rst:185 msgid "CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1" -msgstr "" +msgstr "PYTHON 1.6.1 İÇİN CNRI LİSANS ANLAŞMASI" #: license.rst:250 msgid "CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2" -msgstr "" +msgstr "0.9.0 ARASI 1.2 PYTHON İÇİN CWI LİSANS SÖZLEŞMESİ" #: license.rst:277 msgid "ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON |release| DOCUMENTATION" -msgstr "" +msgstr "PYTHON |release| BELGELERİNDEKİ KOD İÇİN SIFIR MADDE BSD LİSANSI" #: license.rst:296 msgid "Licenses and Acknowledgements for Incorporated Software" -msgstr "" +msgstr "Tüzel Yazılımlar için Lisanslar ve Onaylar" #: license.rst:298 msgid "" @@ -263,10 +297,12 @@ msgid "" "acknowledgements for third-party software incorporated in the Python " "distribution." msgstr "" +"Bu bölüm, Python dağıtımına dahil edilmiş üçüncü taraf yazılımlar için " +"tamamlanmamış ancak büyüyen bir lisans ve onay listesidir." #: license.rst:303 msgid "Mersenne Twister" -msgstr "" +msgstr "Mersenne Twister'ı" #: license.rst:305 msgid "" @@ -274,10 +310,13 @@ msgid "" "math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html. The following " "are the verbatim comments from the original code::" msgstr "" +":mod:`_random` modülü, http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/" +"MT2002/emt19937ar.html adresinden indirilen kodu temel alır. Orijinal koddan " +"kelimesi kelimesine yorumlar aşağıdadır::" #: license.rst:352 msgid "Sockets" -msgstr "" +msgstr "Soketler" #: license.rst:354 msgid "" @@ -285,80 +324,86 @@ msgid "" "`getnameinfo`, which are coded in separate source files from the WIDE " "Project, http://www.wide.ad.jp/. ::" msgstr "" +":mod:`socket` modülü, :func:`getaddrinfo` ve :func:`getnameinfo` işlevlerini " +"kullanır, bunlar WIDE Projesi'nden http://www.wide.ad.jp/ ayrı kaynak " +"dosyalarda kodlanmıştır. ::" #: license.rst:387 msgid "Asynchronous socket services" -msgstr "" +msgstr "Asenkron soket hizmetleri" #: license.rst:389 msgid "" "The :mod:`asynchat` and :mod:`asyncore` modules contain the following " "notice::" msgstr "" +":mod:`asynchat` ve :mod:`asyncore` modülleri aşağıdaki uyarıyı içerir::" #: license.rst:414 msgid "Cookie management" -msgstr "" +msgstr "Çerez yönetimi" #: license.rst:416 msgid "The :mod:`http.cookies` module contains the following notice::" -msgstr "" +msgstr ":mod:`http.cookies` modülü aşağıdaki uyarıyı içerir::" #: license.rst:442 msgid "Execution tracing" -msgstr "" +msgstr "Çalıştırma izleme" #: license.rst:444 msgid "The :mod:`trace` module contains the following notice::" -msgstr "" +msgstr ":mod:`trace` modülü aşağıdaki uyarıyı içerir::" #: license.rst:475 msgid "UUencode and UUdecode functions" -msgstr "" +msgstr "UUencode ve UUdecode fonksiyonları" #: license.rst:477 msgid "The :mod:`uu` module contains the following notice::" -msgstr "" +msgstr ":mod:`uu` modülü aşağıdaki uyarıyı içerir::" #: license.rst:505 msgid "XML Remote Procedure Calls" -msgstr "" +msgstr "XML Uzaktan Yordam Çağrıları" #: license.rst:507 msgid "The :mod:`xmlrpc.client` module contains the following notice::" -msgstr "" +msgstr ":mod:`xmlrpc.client` modülü aşağıdaki uyarıyı içerir::" #: license.rst:538 msgid "test_epoll" -msgstr "" +msgstr "test_epoll" #: license.rst:540 msgid "The :mod:`test_epoll` module contains the following notice::" -msgstr "" +msgstr ":mod:`test_epoll` modülü aşağıdaki uyarıyı içerir::" #: license.rst:564 msgid "Select kqueue" -msgstr "" +msgstr "kqueue seçin" #: license.rst:566 msgid "" "The :mod:`select` module contains the following notice for the kqueue " "interface::" -msgstr "" +msgstr ":mod:`select` modülü, kqueue arayüzü için aşağıdaki uyarıyı içerir::" #: license.rst:595 msgid "SipHash24" -msgstr "" +msgstr "SipHash24" #: license.rst:597 msgid "" "The file :file:`Python/pyhash.c` contains Marek Majkowski' implementation of " "Dan Bernstein's SipHash24 algorithm. It contains the following note::" msgstr "" +":file:`Python/pyhash.c` dosyası, Dan Bernstein'ın SipHash24 algoritmasının " +"Marek Majkowski uygulamasını içerir. Burada aşağıdaki not yer alır::" #: license.rst:624 msgid "strtod and dtoa" -msgstr "" +msgstr "strtod ve dtoa" #: license.rst:626 msgid "" @@ -368,10 +413,15 @@ msgid "" "org/fp/. The original file, as retrieved on March 16, 2009, contains the " "following copyright and licensing notice::" msgstr "" +"C double'larının dizgilere ve dizgelerden dönüştürülmesi için dtoa ve strtod " +"C işlevlerini sağlayan :file:`Python/dtoa.c` dosyası, şu anda http://www." +"netlib.org/fp/ adresinden erişilebilen David M. Gay'in aynı adlı dosyasından " +"türetilmiştir. 16 Mart 2009'da alınan orijinal dosya, aşağıdaki telif hakkı " +"ve lisans bildirimini içerir::" #: license.rst:654 msgid "OpenSSL" -msgstr "" +msgstr "OpenSSL" #: license.rst:656 msgid "" @@ -381,30 +431,41 @@ msgid "" "include a copy of the OpenSSL libraries, so we include a copy of the OpenSSL " "license here::" msgstr "" +":mod:`hashlib`, :mod:`posix`, :mod:`ssl`, :mod:`crypt` modülleri, işletim " +"sistemi tarafından sağlanmışsa ek performans için OpenSSL kütüphanesini " +"kullanır. Ek olarak, Python için Windows ve macOS yükleyicileri, OpenSSL " +"kütüphanelerinin bir kopyasını içerebilir, bu nedenle buraya OpenSSL " +"lisansının bir kopyasını ekliyoruz::" #: license.rst:791 msgid "expat" -msgstr "" +msgstr "expat" #: license.rst:793 msgid "" "The :mod:`pyexpat` extension is built using an included copy of the expat " "sources unless the build is configured ``--with-system-expat``::" msgstr "" +":mod:`pyexpat` uzantısı, derleme ``--with-system-expat`` şeklinde " +"yapılandırılmadığı sürece, expat kaynaklarının dahil edildiği bir kopya " +"kullanılarak oluşturulur::" #: license.rst:820 msgid "libffi" -msgstr "" +msgstr "libffi" #: license.rst:822 msgid "" "The :mod:`_ctypes` extension is built using an included copy of the libffi " "sources unless the build is configured ``--with-system-libffi``::" msgstr "" +":mod:`_ctypes` uzantısı, yapı ``--with-system-libffi`` olarak " +"yapılandırılmadığı sürece libffi kaynaklarının dahil edildiği bir kopya " +"kullanılarak oluşturulur::" #: license.rst:849 msgid "zlib" -msgstr "" +msgstr "zlib" #: license.rst:851 msgid "" @@ -412,30 +473,38 @@ msgid "" "sources if the zlib version found on the system is too old to be used for " "the build::" msgstr "" +":mod:`zlib` uzantısı, sistemde bulunan zlib sürümü derleme için " +"kullanılamayacak kadar eskiyse, zlib kaynaklarının dahil edildiği bir kopya " +"kullanılarak oluşturulur::" #: license.rst:880 msgid "cfuhash" -msgstr "" +msgstr "cfuhash" #: license.rst:882 msgid "" "The implementation of the hash table used by the :mod:`tracemalloc` is based " "on the cfuhash project::" msgstr "" +":mod:`tracemalloc` tarafından kullanılan hash tablosunun uygulanması cfuhash " +"projesine dayanmaktadır::" #: license.rst:921 msgid "libmpdec" -msgstr "" +msgstr "libmpdec" #: license.rst:923 msgid "" "The :mod:`_decimal` module is built using an included copy of the libmpdec " "library unless the build is configured ``--with-system-libmpdec``::" msgstr "" +":mod:`_decimal` modülü, yapı ``--with-system-libmpdec`` şeklinde " +"yapılandırılmadığı sürece libmpdec kitaplığının dahil edildiği bir kopya " +"kullanılarak oluşturulur::" #: license.rst:953 msgid "W3C C14N test suite" -msgstr "" +msgstr "W3C C14N test paketi" #: license.rst:955 msgid "" @@ -443,3 +512,6 @@ msgid "" "c14n-20/``) was retrieved from the W3C website at https://www.w3.org/TR/xml-" "c14n2-testcases/ and is distributed under the 3-clause BSD license::" msgstr "" +":mod:`test` paketindeki C14N 2.0 test paketi (``Lib/test/xmltestdata/c14n-20/" +"``), https://www.w3.org/TR/xml-c14n2-testcases/ adresindeki W3C web " +"sitesinden alınmıştır ve 3 maddeli BSD lisansı altında dağıtılmaktadır::" diff --git a/tutorial/introduction.po b/tutorial/introduction.po index 6d9d90244..2860a755d 100644 --- a/tutorial/introduction.po +++ b/tutorial/introduction.po @@ -2,23 +2,24 @@ # Copyright (C) 2001-2021, Python Software Foundation # This file is distributed under the same license as the Python package. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"PO-Revision-Date: 2022-02-27 20:43+0300\n" +"Last-Translator: \n" +"Language-Team: TURKISH \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.0.1\n" #: tutorial/introduction.rst:5 msgid "An Informal Introduction to Python" -msgstr "" +msgstr "Python'a Resmi Olmayan Bir Giriş" #: tutorial/introduction.rst:7 msgid "" @@ -29,6 +30,12 @@ msgid "" "that a secondary prompt on a line by itself in an example means you must " "type a blank line; this is used to end a multi-line command." msgstr "" +"İlerleyen örneklerde; giriş ve çıkış, bilgi istemlerinin olup olmamasına " +"göre ayırt edilir (:term:`>>>` ve :term:`...`): örneği tekrarlamak için " +"bilgi isteminden sonra her şeyi yazmalısınız, istem göründüğünde bir bilgi " +"istemi ile başlamayan satırlar yorumlayıcıdan çıkar. Bir örnekte tek başına " +"bir satırdaki ikincil istemin boş bir satır yazmanız gerektiği anlamına " +"geldiğini unutmayın; bu, çok satırlı bir komutu sonlandırmak için kullanılır." #: tutorial/introduction.rst:16 msgid "" @@ -37,6 +44,10 @@ msgid "" "output for an example, then you can easily copy and paste the input lines " "into your interpreter." msgstr "" +"Bir örnek kutusunun sağ üst köşesindeki ``>>>`` üzerine tıklayarak " +"istemlerin ve çıktıların görüntülenmesini değiştirebilirsiniz. Bir örnek " +"için istemleri ve çıktıyı gizlerseniz, giriş satırlarını kolayca kopyalayıp " +"yorumlayıcınıza yapıştırabilirsiniz." #: tutorial/introduction.rst:23 msgid "" @@ -48,24 +59,33 @@ msgid "" "Since comments are to clarify code and are not interpreted by Python, they " "may be omitted when typing in examples." msgstr "" +"Bu kılavuzdaki örneklerin çoğu, etkileşimli komut isteminde girilenler " +"dahil, yorumlar içerir. Python'da yorumlar, ``#`` hash karakteriyle başlar " +"ve fiziksel satırın sonuna kadar uzanır. Bir satırın başında veya boşluk " +"veya kodun ardından bir yorum görünebilir, ancak bir dize sabiti içinde " +"değil. Bir dize sabiti içindeki bir hash karakteri, yalnızca bir hash " +"karakterdir. Yorumlar kodu netleştirmek için olduğundan ve Python tarafından " +"yorumlanmadığından örnekler yazarken atlanabilirler." #: tutorial/introduction.rst:31 msgid "Some examples::" -msgstr "" +msgstr "Bazı örnekler::" #: tutorial/introduction.rst:42 msgid "Using Python as a Calculator" -msgstr "" +msgstr "Python'ı Hesap Makinesi Olarak Kullanmak" #: tutorial/introduction.rst:44 msgid "" "Let's try some simple Python commands. Start the interpreter and wait for " "the primary prompt, ``>>>``. (It shouldn't take long.)" msgstr "" +"Bazı basit Python komutlarını deneyelim. Yorumlayıcıyı başlatın ve ``>>>`` " +"birincil istemini bekleyin. (Uzun sürmemelidir.)" #: tutorial/introduction.rst:51 msgid "Numbers" -msgstr "" +msgstr "Sayılar" #: tutorial/introduction.rst:53 msgid "" @@ -75,6 +95,11 @@ msgid "" "languages (for example, Pascal or C); parentheses (``()``) can be used for " "grouping. For example::" msgstr "" +"Yorumlayıcı basit bir hesap makinesi görevi görür: ona bir ifade " +"yazabilirsiniz ve değeri yazacaktır. İfade sözdizimi basittir: ``+``, ``-``, " +"``*`` ve ``/`` operatörleri, tıpkı diğer birçok dilde (örneğin, Pascal veya " +"C) olduğu gibi çalışır; gruplama için parantezler (``()``) kullanılabilir. " +"Örneğin::" #: tutorial/introduction.rst:68 msgid "" @@ -82,6 +107,9 @@ msgid "" "ones with a fractional part (e.g. ``5.0``, ``1.6``) have type :class:" "`float`. We will see more about numeric types later in the tutorial." msgstr "" +"Tam sayıların (örneğin ``2``, ``4``, ``20``) türü :class:`int` olup, kesirli " +"kısmı olanlar (örneğin ``5.0``, ``1.6``) :class:`float` türüne sahiptir. " +"Sayısal türler hakkında sonrasında daha fazlasını göreceğiz." #: tutorial/introduction.rst:72 msgid "" @@ -89,30 +117,43 @@ msgid "" "get an integer result (discarding any fractional result) you can use the ``//" "`` operator; to calculate the remainder you can use ``%``::" msgstr "" +"Bölme (``/``) her zaman bir ondalıklı sayı döndürür. :term:`floor division` " +"yapmak ve bir tam sayı sonucu almak için (herhangi bir kesirli sonucu " +"atarak) ``//`` operatörünü kullanabilirsiniz; kalanı hesaplamak içinse ``%`` " +"operatörünü kullanabilirsiniz::" #: tutorial/introduction.rst:86 msgid "" "With Python, it is possible to use the ``**`` operator to calculate powers " "[#]_::" msgstr "" +"Python ile üslü sayıları hesaplamak için ``**`` operatörünü kullanmak " +"mümkündür [#]_::" #: tutorial/introduction.rst:93 msgid "" "The equal sign (``=``) is used to assign a value to a variable. Afterwards, " "no result is displayed before the next interactive prompt::" msgstr "" +"Bir değişkene değer atamak için eşittir işareti (``=``) kullanılır. Daha " +"sonra, bir sonraki etkileşimli komut isteminden önce hiçbir sonuç " +"görüntülenmez::" #: tutorial/introduction.rst:101 msgid "" "If a variable is not \"defined\" (assigned a value), trying to use it will " "give you an error::" msgstr "" +"Bir değişken \"tanımlı\" değilse (bir değer atanmamışsa), onu kullanmaya " +"çalışmak size bir hata verecektir::" #: tutorial/introduction.rst:109 msgid "" "There is full support for floating point; operators with mixed type operands " "convert the integer operand to floating point::" msgstr "" +"Ondalıklı sayı için tam destek var; karışık türde işlenenlere sahip " +"operatörler, tam sayı işlenenini ondalıklı sayıya dönüştürür::" #: tutorial/introduction.rst:115 msgid "" @@ -120,6 +161,9 @@ msgid "" "``_``. This means that when you are using Python as a desk calculator, it " "is somewhat easier to continue calculations, for example::" msgstr "" +"Etkileşimli modda, son yazdırılan ifade ``_`` değişkenine atanır. Bu, " +"Python'ı bir masa hesap makinesi olarak kullandığınızda, hesaplamalara devam " +"etmenin biraz daha kolay olduğu anlamına gelir, örneğin::" #: tutorial/introduction.rst:128 msgid "" @@ -127,6 +171,9 @@ msgid "" "assign a value to it --- you would create an independent local variable with " "the same name masking the built-in variable with its magic behavior." msgstr "" +"Bu değişken, kullanıcı tarafından salt okunur olarak ele alınmalıdır. Açıkça " +"ona bir değer atamayın --- sihirli davranışları olan bu gömülü değişkeni " +"maskeleyen aynı ada sahip bağımsız bir yerel değişken yaratırsınız." #: tutorial/introduction.rst:132 msgid "" @@ -136,10 +183,15 @@ msgid "" "`, and uses the ``j`` or ``J`` suffix to indicate the " "imaginary part (e.g. ``3+5j``)." msgstr "" +":class:`int` ve :class:`float` 'a ek olarak Python, :class:`~decimal." +"Decimal` ve :class:`~fractions.Fraction` gibi diğer sayı türlerini de " +"destekler. Python ayrıca :ref:`karmaşık sayılar ` için gömülü " +"desteğe sahiptir ve hayali kısmı belirtmek için ``j`` veya ``J`` son ekini " +"kullanır (ör. ``3+5j``)." #: tutorial/introduction.rst:142 msgid "Strings" -msgstr "" +msgstr "Dizeler" #: tutorial/introduction.rst:144 msgid "" @@ -148,6 +200,10 @@ msgid "" "double quotes (``\"...\"``) with the same result [#]_. ``\\`` can be used " "to escape quotes::" msgstr "" +"Sayıların yanı sıra Python, çeşitli şekillerde ifade edilebilen dizeleri de " +"değiştirebilir. Tek tırnak (``'...'``) veya çift tırnak (``\"...\"``) içine " +"alınabilirler ve aynı sonuç olur [#]_. ``\\`` tırnaklardan kaçmak için " +"kullanılabilir::" #: tutorial/introduction.rst:162 msgid "" @@ -160,6 +216,13 @@ msgid "" "readable output, by omitting the enclosing quotes and by printing escaped " "and special characters::" msgstr "" +"Etkileşimli yorumlayıcıda, çıktı dizesi tırnak işaretleri içine alınır ve " +"özel karakterler ters eğik çizgiyle çıkarılır. Bu bazen girdiden farklı " +"görünse de (ilgili tırnak işaretleri değişebilir), iki dize eş değerdir. " +"Dize tek bir tırnak işareti içeriyorsa ve çift tırnak içermiyorsa dize çift " +"tırnak içine alınır, aksi takdirde tek tırnak içine alınır. :func:`print` " +"fonksiyonu, ekteki tırnak işaretlerini atlayarak ve çıkış karakterlerini ve " +"özel karakterleri yazdırarak daha okunaklı bir çıktı üretir::" #: tutorial/introduction.rst:182 msgid "" @@ -167,6 +230,9 @@ msgid "" "characters, you can use *raw strings* by adding an ``r`` before the first " "quote::" msgstr "" +"``\\`` ile başlayan karakterlerin özel karakterler olarak yorumlanmasını " +"istemiyorsanız, ilk alıntıdan önce bir ``r`` ekleyerek *ham dizeleri (raw " +"strings)* kullanabilirsiniz::" #: tutorial/introduction.rst:192 msgid "" @@ -175,39 +241,52 @@ msgid "" "in the string, but it's possible to prevent this by adding a ``\\`` at the " "end of the line. The following example::" msgstr "" +"Dize sabitleri birden çok satıra yayılabilir. Bunun bir yolu üçlü tırnak " +"kullanmaktır: ``\"\"\"...\"\"\"`` veya ``'''...'''``. Satır sonu otomatik " +"olarak dizeye dahil edilir, ancak satırın sonuna ``\\`` ekleyerek bunu " +"önlemek mümkündür. Aşağıdaki örnek::" #: tutorial/introduction.rst:203 msgid "" "produces the following output (note that the initial newline is not " "included):" msgstr "" +"aşağıdaki çıktıyı üretir (ilk yeni satırın dahil olmadığını unutmayın):" #: tutorial/introduction.rst:211 msgid "" "Strings can be concatenated (glued together) with the ``+`` operator, and " "repeated with ``*``::" msgstr "" +"Dizeler ``+`` operatörüyle birleştirilebilir (birbirine yapıştırılabilir) ve " +"``*`` ile tekrarlanabilir::" #: tutorial/introduction.rst:218 msgid "" "Two or more *string literals* (i.e. the ones enclosed between quotes) next " "to each other are automatically concatenated. ::" msgstr "" +"Yan yana iki veya daha fazla *dize sabiti* (yani, tırnak işaretleri arasına " +"alınanlar) otomatik olarak birleştirilir. ::" #: tutorial/introduction.rst:224 msgid "" "This feature is particularly useful when you want to break long strings::" msgstr "" +"Bu özellik, özellikle uzun dizeleri kırmak istediğinizde kullanışlıdır::" #: tutorial/introduction.rst:231 msgid "" "This only works with two literals though, not with variables or expressions::" msgstr "" +"Bu, değişkenler veya ifadelerle değil, yalnızca iki sabit değerle çalışır::" #: tutorial/introduction.rst:245 msgid "" "If you want to concatenate variables or a variable and a literal, use ``+``::" msgstr "" +"Değişkenleri veya bir değişkeni ve bir sabiti birleştirmek istiyorsanız, ``" +"+`` kullanın:" #: tutorial/introduction.rst:250 msgid "" @@ -215,15 +294,19 @@ msgid "" "index 0. There is no separate character type; a character is simply a string " "of size one::" msgstr "" +"Dizeler, ilk karakterin indeksi 0 olacak şekilde *dizine eklenebilir* (abone " +"olabilir). Karakterler için ayrı bir tür yoktur; karakterler yalnızca *bir* " +"uzunluğunda dizelerdir::" #: tutorial/introduction.rst:260 msgid "" "Indices may also be negative numbers, to start counting from the right::" -msgstr "" +msgstr "Sağdan saymaya başlamak için indeksler negatif sayılar da olabilir::" #: tutorial/introduction.rst:269 msgid "Note that since -0 is the same as 0, negative indices start from -1." msgstr "" +"-0 ile 0 aynı olduğundan, negatif endekslerin -1'den başladığını unutmayın." #: tutorial/introduction.rst:271 msgid "" @@ -231,18 +314,27 @@ msgid "" "used to obtain individual characters, *slicing* allows you to obtain " "substring::" msgstr "" +"İndekslemeye ek olarak *dilimleme* de desteklenir. Tek tek karakterleri elde " +"etmek için indeksleme kullanılırken, *dilimleme* alt dizeyi elde etmenizi " +"sağlar::" #: tutorial/introduction.rst:279 msgid "" "Slice indices have useful defaults; an omitted first index defaults to zero, " "an omitted second index defaults to the size of the string being sliced. ::" msgstr "" +"Dilim indekslerinin kullanışlı varsayılanları vardır; atlanmış bir ilk dizin " +"varsayılanı sıfırdır, atlanmış bir ikinci dizin varsayılanı dilimlenmekte " +"olan dizenin boyutudur. ::" #: tutorial/introduction.rst:289 msgid "" "Note how the start is always included, and the end always excluded. This " "makes sure that ``s[:i] + s[i:]`` is always equal to ``s``::" msgstr "" +"Başlangıcın her zaman dahil edildiğine ve sonun her zaman hariç tutulduğuna " +"dikkat edin. Bu, ``s[:i] + s[i:]`` değerinin her zaman ``s`` değerine eşit " +"olmasını sağlar::" #: tutorial/introduction.rst:297 msgid "" @@ -251,6 +343,10 @@ msgid "" "Then the right edge of the last character of a string of *n* characters has " "index *n*, for example::" msgstr "" +"Dilimlerin nasıl çalıştığını hatırlamanın bir yolu, dizinleri ilk karakterin " +"sol kenarı 0 ile *arasındaki* karakterleri işaret ediyor olarak düşünmektir. " +"Ardından, *n* karakterli bir dizenin son karakterinin sağ kenarında *n* " +"dizini vardır, örneğin::" #: tutorial/introduction.rst:308 msgid "" @@ -259,6 +355,9 @@ msgid "" "from *i* to *j* consists of all characters between the edges labeled *i* and " "*j*, respectively." msgstr "" +"İlk sayı satırı, dizideki 0...6 endekslerinin konumunu verir; ikinci satır, " +"karşılık gelen negatif endeksleri verir. *i* ile *j* arasındaki dilim, " +"sırasıyla *i* ve *j* etiketli kenarlar arasındaki tüm karakterlerden oluşur." #: tutorial/introduction.rst:313 msgid "" @@ -266,80 +365,90 @@ msgid "" "indices, if both are within bounds. For example, the length of " "``word[1:3]`` is 2." msgstr "" +"Negatif olmayan indeksler için, her ikisi de sınırlar içindeyse, bir dilimin " +"uzunluğu indekslerin farkıdır. Örneğin, ``kelime[1:3]`` 'ün uzunluğu 2'dir." #: tutorial/introduction.rst:317 msgid "Attempting to use an index that is too large will result in an error::" -msgstr "" +msgstr "Çok büyük bir dizin kullanmaya çalışmak bir hataya neden olur::" #: tutorial/introduction.rst:324 msgid "" "However, out of range slice indexes are handled gracefully when used for " "slicing::" msgstr "" +"Ancak, aralık dışı dilim endeksleri, dilimleme için kullanıldığında zarif " +"bir şekilde işlenir::" #: tutorial/introduction.rst:332 msgid "" "Python strings cannot be changed --- they are :term:`immutable`. Therefore, " "assigning to an indexed position in the string results in an error::" msgstr "" +"Python dizeleri değiştirilemez --- bunlar :term:`immutable`dır. Bu nedenle, " +"dizide dizine alınmış bir konuma atamak bir hatayla sonuçlanır::" #: tutorial/introduction.rst:344 msgid "If you need a different string, you should create a new one::" -msgstr "" +msgstr "Farklı bir dizeye ihtiyacınız varsa, yeni bir tane oluşturmalısınız::" #: tutorial/introduction.rst:351 msgid "The built-in function :func:`len` returns the length of a string::" -msgstr "" +msgstr "Yerleşik işlev :func:`len`, bir dizenin uzunluğunu döndürür::" #: tutorial/introduction.rst:362 msgid ":ref:`textseq`" -msgstr "" +msgstr ":ref:`textseq`" #: tutorial/introduction.rst:361 msgid "" "Strings are examples of *sequence types*, and support the common operations " "supported by such types." msgstr "" +"Dizeler, *sıra türlerinin* örnekleridir ve bu türler tarafından desteklenen " +"genel işlemleri destekler." #: tutorial/introduction.rst:366 msgid ":ref:`string-methods`" -msgstr "" +msgstr ":ref:`dize-yöntemleri `" #: tutorial/introduction.rst:365 msgid "" "Strings support a large number of methods for basic transformations and " "searching." -msgstr "" +msgstr "Dizeler, temel dönüşümler ve arama için çok sayıda yöntemi destekler." #: tutorial/introduction.rst:369 msgid ":ref:`f-strings`" -msgstr "" +msgstr ":ref:`f-strings`" #: tutorial/introduction.rst:369 msgid "String literals that have embedded expressions." -msgstr "" +msgstr "Gömülü ifadelere sahip dize sabitleri." #: tutorial/introduction.rst:372 msgid ":ref:`formatstrings`" -msgstr "" +msgstr ":ref:`formatstrings`" #: tutorial/introduction.rst:372 msgid "Information about string formatting with :meth:`str.format`." -msgstr "" +msgstr ":meth:`str.format` ile dize biçimlendirme hakkında bilgi." #: tutorial/introduction.rst:375 msgid ":ref:`old-string-formatting`" -msgstr "" +msgstr ":ref:`old-string-formatting`" #: tutorial/introduction.rst:375 msgid "" "The old formatting operations invoked when strings are the left operand of " "the ``%`` operator are described in more detail here." msgstr "" +"Dizeler ``%`` operatörünün sol işleneni olduğunda çağrılan eski " +"biçimlendirme işlemleri burada daha ayrıntılı olarak açıklanmaktadır." #: tutorial/introduction.rst:382 msgid "Lists" -msgstr "" +msgstr "Listeler" #: tutorial/introduction.rst:384 msgid "" @@ -348,12 +457,19 @@ msgid "" "comma-separated values (items) between square brackets. Lists might contain " "items of different types, but usually the items all have the same type. ::" msgstr "" +"Python, diğer değerleri gruplamak için kullanılan bir dizi *bileşik* veri " +"türünü bilir. En çok yönlü olanı, köşeli parantezler arasında virgülle " +"ayrılmış değerlerin (ögelerin) bir listesi olarak yazılabilen *liste*'dir. " +"Listeler farklı türde ögeler içerebilir, ancak genellikle ögelerin tümü aynı " +"türdedir. ::" #: tutorial/introduction.rst:393 msgid "" "Like strings (and all other built-in :term:`sequence` types), lists can be " "indexed and sliced::" msgstr "" +"Dizeler gibi (ve diğer tüm yerleşik :term:`sequence` türleri), listeler " +"dizine alınabilir ve dilimlenebilir::" #: tutorial/introduction.rst:403 msgid "" @@ -361,42 +477,54 @@ msgid "" "This means that the following slice returns a :ref:`shallow copy " "` of the list::" msgstr "" +"Tüm dilim işlemleri, istenen ögeleri içeren yeni bir liste döndürür. Bu, " +"aşağıdaki dilimin listenin bir :ref:`shallow copy ` " +"döndürdüğü anlamına gelir::" #: tutorial/introduction.rst:410 msgid "Lists also support operations like concatenation::" -msgstr "" +msgstr "Ayrıca listeler birleştirme gibi işlemleri de destekler::" #: tutorial/introduction.rst:415 msgid "" "Unlike strings, which are :term:`immutable`, lists are a :term:`mutable` " "type, i.e. it is possible to change their content::" msgstr "" +":term:`immutable` olan dizelerin aksine, listeler :term:`mutable` " +"türündedir, yani içeriklerini değiştirmek mümkündür::" #: tutorial/introduction.rst:425 msgid "" "You can also add new items at the end of the list, by using the :meth:`~list." "append` *method* (we will see more about methods later)::" msgstr "" +"Ayrıca, :meth:`~list.append` *method*'u kullanarak listenin sonuna yeni " +"öğeler ekleyebilirsiniz (yöntemler hakkında daha fazla bilgiyi daha sonra " +"göreceğiz)::" #: tutorial/introduction.rst:433 msgid "" "Assignment to slices is also possible, and this can even change the size of " "the list or clear it entirely::" msgstr "" +"Dilimlere atama da mümkündür ve bu, listenin boyutunu bile değiştirebilir " +"veya tamamen temizleyebilir::" #: tutorial/introduction.rst:452 msgid "The built-in function :func:`len` also applies to lists::" -msgstr "" +msgstr "Yerleşik işlev :func:`len` ayrıca listeler için de geçerlidir::" #: tutorial/introduction.rst:458 msgid "" "It is possible to nest lists (create lists containing other lists), for " "example::" msgstr "" +"Listeleri iç içe yerleştirmek (diğer listeleri içeren listeler oluşturmak) " +"mümkündür, örneğin::" #: tutorial/introduction.rst:474 msgid "First Steps Towards Programming" -msgstr "" +msgstr "Programlamaya Doğru İlk Adımlar" #: tutorial/introduction.rst:476 msgid "" @@ -405,10 +533,13 @@ msgid "" "`Fibonacci series `_ as " "follows::" msgstr "" +"Elbette Python'ı iki ile ikiyi toplamaktan daha komplike görevler için " +"kullanabiliriz. Örneğin, `Fibonacci serisinin `_ ilk alt dizisini aşağıdaki gibi yazabiliriz:" #: tutorial/introduction.rst:496 msgid "This example introduces several new features." -msgstr "" +msgstr "Bu örnek, birkaç yeni özellik sunar." #: tutorial/introduction.rst:498 msgid "" @@ -418,6 +549,9 @@ msgid "" "all evaluated first before any of the assignments take place. The right-" "hand side expressions are evaluated from the left to the right." msgstr "" +"İlk satır bir *çoklu atama*: ``a`` ve ``b`` değişkenleri aynı anda yeni 0 ve " +"1 değerlerini alır. Tarafların tümü, herhangi bir görev yapılmadan önce " +"değerlendirilir. Sağ taraftaki ifadeler soldan sağa doğru değerlendirilir." #: tutorial/introduction.rst:504 msgid "" @@ -430,6 +564,14 @@ msgid "" "than), ``>`` (greater than), ``==`` (equal to), ``<=`` (less than or equal " "to), ``>=`` (greater than or equal to) and ``!=`` (not equal to)." msgstr "" +":keyword:`while` döngüsü, koşul (burada: ``a < 10``) doğru kaldığı sürece " +"yürütülür. Python'da, C'de olduğu gibi, sıfır olmayan herhangi bir tam sayı " +"değeri doğrudur; sıfır yanlıştır. Koşul ayrıca bir dizi veya liste değeri, " +"aslında herhangi bir dizi olabilir; uzunluğu sıfır olmayan her şey doğrudur, " +"boş diziler yanlıştır. Örnekte kullanılan test basit bir karşılaştırmadır. " +"Standart karşılaştırma işleçleri C'dekiyle aynı şekilde yazılır: ``<`` " +"(küçüktür), ``>`` (büyüktür), ``==`` (eşittir), ``<=`` ( küçük veya eşit), " +"``>=`` (büyük veya eşit) ve ``!=`` (eşit değil)." #: tutorial/introduction.rst:513 msgid "" @@ -442,6 +584,15 @@ msgid "" "(since the parser cannot guess when you have typed the last line). Note " "that each line within a basic block must be indented by the same amount." msgstr "" +"Döngünün *gövdesi girintilidir*: girinti, Python'un ifadeleri gruplama " +"şeklidir. Etkileşimli komut isteminde, girintili her satır için bir sekme " +"veya boşluk(lar) yazmanız gerekir. Pratikte, bir metin düzenleyici ile " +"Python için daha karmaşık girdiler hazırlayacaksınız; tüm düzgün metin " +"editörlerinin otomatik girinti özelliği vardır. Bir bileşik deyim " +"etkileşimli olarak girildiğinde, tamamlandığını belirtmek için boş bir " +"satırdan sonra gelmelidir (çünkü ayrıştırıcı son satırı ne zaman yazdığınızı " +"tahmin edemez). Bir temel blok içindeki her satırın aynı miktarda girintili " +"olması gerektiğini unutmayın." #: tutorial/introduction.rst:522 msgid "" @@ -452,16 +603,24 @@ msgid "" "without quotes, and a space is inserted between items, so you can format " "things nicely, like this::" msgstr "" +":func:`print` işlevi, kendisine verilen argüman(lar)ın değerini yazar. " +"Yalnızca yazmak istediğiniz ifadeyi yazmaktan (daha önce hesap makinesi " +"örneklerinde yaptığımız gibi) birden çok bağımsız değişkeni, kayan nokta " +"miktarlarını ve dizeleri işleme biçiminden farklıdır. Dizeler tırnak " +"işaretleri olmadan yazdırılır ve öğelerin arasına bir boşluk eklenir, " +"böylece şunları güzel bir şekilde biçimlendirebilirsiniz:" #: tutorial/introduction.rst:533 msgid "" "The keyword argument *end* can be used to avoid the newline after the " "output, or end the output with a different string::" msgstr "" +"*end* anahtar sözcüğü argümanı, çıktıdan sonra yeni satırı önlemek veya " +"çıktıyı farklı bir dizeyle bitirmek için kullanılabilir::" #: tutorial/introduction.rst:545 msgid "Footnotes" -msgstr "" +msgstr "Dipnotlar" #: tutorial/introduction.rst:546 msgid "" @@ -469,6 +628,9 @@ msgid "" "as ``-(3**2)`` and thus result in ``-9``. To avoid this and get ``9``, you " "can use ``(-3)**2``." msgstr "" +"``**``, ``-```den daha yüksek önceliğe sahip olduğundan, ```-3**2``, ``-" +"(3**2)`` olarak yorumlanacak ve dolayısıyla ``-9` ile sonuçlanacaktır. `. " +"Bundan kaçınmak ve ``9`` elde etmek için ``(-3)**2`` kullanabilirsiniz." #: tutorial/introduction.rst:550 msgid "" @@ -477,3 +639,8 @@ msgid "" "only difference between the two is that within single quotes you don't need " "to escape ``\"`` (but you have to escape ``\\'``) and vice versa." msgstr "" +"Diğer dillerden farklı olarak, ``\\n`` gibi özel karakterler hem tek " +"(``'...'``) hem de çift (``\"...\"``) tırnak işaretleri ile aynı anlama " +"sahiptir. İkisi arasındaki tek fark, tek tırnak içinde ``\"`` dan kaçmanıza " +"gerek olmamasıdır (ancak ``\\'`` dan kaçmanız gerekir) ve bunun tersi de " +"geçerlidir." From 61e4faf26b1414dc11e8cc0d42c359a9a464e07d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Apr 2022 21:51:42 +0300 Subject: [PATCH 32/37] Wrap translations (#40) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- contents.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contents.po b/contents.po index 268fa98bd..9a69b157a 100644 --- a/contents.po +++ b/contents.po @@ -19,5 +19,4 @@ msgstr "" #: contents.rst:3 msgid "Python Documentation contents" -msgstr "" -"Python Dokümantasyon içeriği" +msgstr "Python Dokümantasyon içeriği" From 0eab45ba950d3355f572451f093d161bb9a2f13c Mon Sep 17 00:00:00 2001 From: egeakman Date: Fri, 27 May 2022 21:51:11 +0300 Subject: [PATCH 33/37] update :( --- library/stdtypes.po | 56 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 2 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index 69c2e8698..a6b088f56 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2022-04-15 19:17+0300\n" +"PO-Revision-Date: 2022-05-27 20:15+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -2613,6 +2613,15 @@ msgid "" "handlers`. For a list of possible encodings, see section :ref:`standard-" "encodings`." msgstr "" +"Bir bayt nesnesi olarak dizenin kodlanmış bir sürümünü döndürün. Varsayılan " +"kodlama ``'utf-8'`` şeklindedir. *hatalar*, farklı bir hata işleme şeması " +"ayarlamak için verilebilir. *Hatalar* için varsayılan değer ``'strict'`` " +"'dir, yani kodlama hataları bir :exc:`UnicodeError` ortaya çıkarır. Diğer " +"olası değerler ``'ignore'``, ``'replace'``, ``'xmlcharreplace'``, " +"``'backslashreplace'`` ve :func:`codecs.register_error` aracılığıyla " +"kaydedilen diğer herhangi bir addır, :ref:`error-handlers` bölümüne bakın. " +"Olası kodlamaların listesi için section :ref:`standard-encodings` bölümüne " +"bakın." #: library/stdtypes.rst:1583 msgid "" @@ -2620,16 +2629,22 @@ msgid "" "only used at the first encoding error. Enable the :ref:`Python Development " "Mode `, or use a :ref:`debug build ` to check *errors*." msgstr "" +"Varsayılan olarak, *error* argümanı en iyi performans için kontrol edilmez, " +"sadece ilk kodlama hatasında kullanılır. :ref:`Python Geliştirme Modu " +"` öğesini etkinleştirin veya *hataları* kontrol etmek için bir :ref:" +"`hata ayıklama derlemesi ` kullanın." #: library/stdtypes.rst:1588 msgid "Support for keyword arguments added." -msgstr "" +msgstr "Anahtar kelime argümanları için destek eklendi." #: library/stdtypes.rst:2727 msgid "" "The *errors* is now checked in development mode and in :ref:`debug mode " "`." msgstr "" +"*Hatalar* şimdi geliştirme modunda ve :ref:`hata ayıklama modunda ` kontrol edilir." #: library/stdtypes.rst:1598 msgid "" @@ -2638,6 +2653,10 @@ msgid "" "With optional *start*, test beginning at that position. With optional " "*end*, stop comparing at that position." msgstr "" +"Dize belirtilen *suffix* ile bitiyorsa ``True``, aksi takdirde ```False`` " +"döndürün. *suffix* ayrıca aranacak bir son ek grubu da olabilir. İsteğe " +"bağlı *start* ile, o konumdan başlayarak test edin. İsteğe bağlı *end* ile, " +"o konumda karşılaştırmayı bırakın." #: library/stdtypes.rst:1606 msgid "" @@ -2654,6 +2673,17 @@ msgid "" "incremented by one regardless of how the character is represented when " "printed." msgstr "" +"Geçerli sütuna ve verilen tab boyutuna bağlı olarak, tüm tab karakterlerinin " +"bir veya daha fazla boşlukla değiştirildiği dizenin bir kopyasını döndürün. " +"Tab konumları her *tab boyutu* karakterinde oluşur (varsayılan 8'dir, 0, 8, " +"16 ve benzeri sütunlarda tab konumları verilir). Dizeyi genişletmek için " +"mevcut sütun sıfıra ayarlanır ve dize karakter karakter incelenir. Karakter " +"bir tab ise (``\\t``), geçerli sütun sonraki tab konumuna eşit olana kadar " +"sonuca bir veya daha fazla boşluk karakteri eklenir. (Tab karakterinin " +"kendisi kopyalanmaz.) Karakter yeni satırsa (``\\n``) veya dönüşse (``" +"\\r``), kopyalanır ve mevcut sütun sıfırlanır. Diğer herhangi bir karakter " +"değiştirilmeden kopyalanır ve mevcut sütun, karakterin yazdırıldığında nasıl " +"temsil edildiğine bakılmaksızın bir artırılır." #: library/stdtypes.rst:1627 msgid "" @@ -2661,6 +2691,9 @@ msgid "" "the slice ``s[start:end]``. Optional arguments *start* and *end* are " "interpreted as in slice notation. Return ``-1`` if *sub* is not found." msgstr "" +"*sub* alt dizesinin ``s[start:end]`` diliminde bulunduğu dizedeki en düşük " +"dizini döndür. İsteğe bağlı argümanlar *start* ve *end*, dilim notasyonunda " +"olduğu gibi yorumlanır. *sub* bulunamazsa ``-1`` döndürür." #: library/stdtypes.rst:1633 msgid "" @@ -2668,6 +2701,9 @@ msgid "" "position of *sub*. To check if *sub* is a substring or not, use the :" "keyword:`in` operator::" msgstr "" +":meth:`~str.find` metodu yalnızca *sub* öğesinin konumunu bilmeniz " +"gerekiyorsa kullanılmalıdır. *sub* 'ın bir alt dize olup olmadığını kontrol " +"etmek için :keyword:`in` operatörünü kullanın::" #: library/stdtypes.rst:1643 msgid "" @@ -2678,14 +2714,23 @@ msgid "" "the string where each replacement field is replaced with the string value of " "the corresponding argument." msgstr "" +"Bir dize biçimlendirme işlemi gerçekleştirin. Bu yöntemin çağrıldığı dize, " +"parantez ``{}`` ile sınırlandırılmış metin veya değiştirme alanları " +"içerebilir. Her değiştirme alanı, ya bir konumsal (sırası önemli) argümanın " +"sayısal dizinini ya da bir anahtar sözcük argmünanının adını içerir. Her " +"değiştirme alanının, karşılık gelen argümanın dize değeriyle değiştirildiği " +"dizenin bir kopyasını döndürür." #: library/stdtypes.rst:1653 msgid "" "See :ref:`formatstrings` for a description of the various formatting options " "that can be specified in format strings." msgstr "" +"Biçim dizelerinde (f string) belirtilebilecek çeşitli biçimlendirme " +"seçeneklerinin açıklaması için bkz. :ref:`formatstrings`." #: library/stdtypes.rst:1657 +#, fuzzy msgid "" "When formatting a number (:class:`int`, :class:`float`, :class:`complex`, :" "class:`decimal.Decimal` and subclasses) with the ``n`` type (ex: ``'{:n}'." @@ -2695,6 +2740,13 @@ msgid "" "and the ``LC_NUMERIC`` locale is different than the ``LC_CTYPE`` locale. " "This temporary change affects other threads." msgstr "" +"Bir sayıyı (:class:`int`, :class:`float`, :class:`complex`, :class:`decimal." +"Decimal` ve alt sınıfları) ``n`` tipiyle (ör``'{:n}'.format(1234)``) " +"biçimlendirirken, fonksiyon, eğer ASCII değillerse veya 1 bayttan uzunlarsa, " +"ve ``LC_NUMERIC``, ``LC_CTYPE`` yerel ayarından farklıysa, :c:func:" +"`localeconv` 'un alanları olan ``decimal_point`` ve ``thousands_sep`` 'i " +"çözmek için, \"LC_CTYPE\" yerel ayarını geçici olarak ``LC_NUMERIC`` yerel " +"ayarına atar. Bu geçici değişiklik diğer iş parçacıklarını da etkiler." #: library/stdtypes.rst:1666 msgid "" From 6dd4f9f267894cce6ba3010d380a628a998215de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Eefika=20Nur=20=C3=96zt=C3=BCrk?= <64414733+sefikaozturk@users.noreply.github.com> Date: Tue, 19 Jul 2022 20:49:03 +0300 Subject: [PATCH 34/37] library/stdtypes (#56) * update stdtypes * update1 --- library/stdtypes.po | 250 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 220 insertions(+), 30 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index a6b088f56..f1a2a0083 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2022-05-27 20:15+0300\n" +"PO-Revision-Date: 2022-07-19 18:15+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.1\n" #: library/stdtypes.rst:8 msgid "Built-in Types" @@ -2753,6 +2753,9 @@ msgid "" "When formatting a number with the ``n`` type, the function sets temporarily " "the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale in some cases." msgstr "" +"Bir sayıyı ``n`` türüyle biçimlendirirken, fonksiyon bazı durumlarda " +"``LC_CTYPE`` yerel ayarını geçici olarak ``LC_NUMERIC`` yerel ayarına " +"ayarlar." #: library/stdtypes.rst:1674 msgid "" @@ -2760,12 +2763,17 @@ msgid "" "directly and not copied to a :class:`dict`. This is useful if for example " "``mapping`` is a dict subclass:" msgstr "" +"Str.format(**mapping)`` ile benzerdir, ancak ``mapping`` doğrudan kullanılır " +"ve bir :class:`dict`e kopyalanmaz. Örneğin, ``mapping`` bir dict alt sınıfı " +"ise bu kullanışlıdır:" #: library/stdtypes.rst:1690 msgid "" "Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is " "not found." msgstr "" +":meth:`~str.find` gibi, ancak alt dize bulunamadığında :exc:`ValueError` " +"yükseltir." #: library/stdtypes.rst:1696 msgid "" @@ -2774,6 +2782,10 @@ msgid "" "alphanumeric if one of the following returns ``True``: ``c.isalpha()``, ``c." "isdecimal()``, ``c.isdigit()``, or ``c.isnumeric()``." msgstr "" +"Dizedeki tüm karakterler alfanümerikse ve en az bir karakter varsa ``True``, " +"aksi takdirde ``False`` döndürür. Bir ``c`` karakteri, aşağıdakilerden biri " +"``True`` döndürüyorsa alfasayısaldır: ``c.isalpha()``, ``c.isdecimal()``, " +"``c.isdigit()`` veya ``c.isnumeric()``." #: library/stdtypes.rst:1704 msgid "" @@ -2784,6 +2796,12 @@ msgid "" "\", \"Ll\", or \"Lo\". Note that this is different from the \"Alphabetic\" " "property defined in the Unicode Standard." msgstr "" +"Dizedeki tüm karakterler alfabetikse ve en az bir karakter varsa ``True``, " +"aksi takdirde ``False`` döndürür. Alfabetik karakterler, Unicode karakter " +"veritabanında \"Harf\" olarak tanımlanan karakterlerdir, yani genel kategori " +"özelliği \"Lm\", \"Lt\", \"Lu\", \"Ll\" veya \"Lo \"dan biri olan " +"karakterlerdir. Bunun Unicode Standardında tanımlanan \"Alfabetik\" " +"özelliğinden farklı olduğunu unutmayın." #: library/stdtypes.rst:1713 msgid "" @@ -2791,6 +2809,9 @@ msgid "" "ASCII, ``False`` otherwise. ASCII characters have code points in the range U" "+0000-U+007F." msgstr "" +"Dize boşsa veya dizedeki tüm karakterler ASCII ise ``True``, aksi takdirde " +"``False`` döndürür. ASCII karakterleri U+0000-U+007F aralığında kod " +"noktalarına sahiptir." #: library/stdtypes.rst:1722 msgid "" @@ -2800,6 +2821,11 @@ msgid "" "DIGIT ZERO. Formally a decimal character is a character in the Unicode " "General Category \"Nd\"." msgstr "" +"Dizedeki tüm karakterler ondalık karakter ise ve en az bir karakter varsa " +"``True``, aksi takdirde ``False`` döndürür. Ondalık karakterler 10 tabanında " +"sayılar oluşturmak için kullanılabilen karakterlerdir, örneğin U+0660, " +"ARAPÇA-HİNTÇE RAKAM SIFIR. Resmi olarak bir ondalık karakter Unicode Genel " +"Kategorisi \"Nd\" içerisindeki bir karakterdir." #: library/stdtypes.rst:1732 msgid "" @@ -2810,28 +2836,40 @@ msgid "" "like the Kharosthi numbers. Formally, a digit is a character that has the " "property value Numeric_Type=Digit or Numeric_Type=Decimal." msgstr "" +"Dizedeki tüm karakterler rakamsa ve en az bir karakter varsa ``True``, aksi " +"takdirde ``False`` döndürür. Rakamlar ondalık karakterleri ve özel işlem " +"gerektiren rakamları (uyumluluk üst simge rakamları gibi) içerir. Bu, " +"Kharosthi sayıları gibi 10 tabanında sayı oluşturmak için kullanılamayan " +"rakamları kapsar. Resmi olarak rakam, Numeric_Type=Digit veya " +"Numeric_Type=Decimal özellik değerine sahip bir karakterdir." #: library/stdtypes.rst:1742 msgid "" "Return ``True`` if the string is a valid identifier according to the " "language definition, section :ref:`identifiers`." msgstr "" +"ref:`identifiers` bölümüne göre dizge dil tanımına göre geçerli bir " +"tanımlayıcı ise ``True`` döndürür." #: library/stdtypes.rst:1745 msgid "" "Call :func:`keyword.iskeyword` to test whether string ``s`` is a reserved " "identifier, such as :keyword:`def` and :keyword:`class`." msgstr "" +":func:`keyword.iskeyword` çağrısı yaparak ``s`` dizesinin :keyword:`def` ve :" +"keyword:`class` gibi ayrılmış bir tanımlayıcı olup olmadığını test eder." #: library/stdtypes.rst:1748 msgid "Example: ::" -msgstr "" +msgstr "Örnek: ::" #: library/stdtypes.rst:1761 msgid "" "Return ``True`` if all cased characters [4]_ in the string are lowercase and " "there is at least one cased character, ``False`` otherwise." msgstr "" +"Dizedeki tüm büyük harfli karakterler [4]_ küçük harfli ise ve en az bir " +"büyük harfli karakter varsa ``True``, aksi takdirde ``False`` döndürür." #: library/stdtypes.rst:1767 msgid "" @@ -2842,6 +2880,12 @@ msgid "" "characters are those with the property value Numeric_Type=Digit, " "Numeric_Type=Decimal or Numeric_Type=Numeric." msgstr "" +"Dizedeki tüm karakterler sayısal karakterlerse ve en az bir karakter varsa " +"``True``, aksi takdirde ``False`` döndürür. Sayısal karakterler rakam " +"karakterlerini ve Unicode sayısal değer özelliğine sahip tüm karakterleri " +"içerir, örneğin U+2155, VULGAR FRAKSİYONU BEŞİNCİ. Resmi olarak, sayısal " +"karakterler Numeric_Type=Digit, Numeric_Type=Decimal veya " +"Numeric_Type=Numeric özellik değerine sahip karakterlerdir." #: library/stdtypes.rst:1777 msgid "" @@ -2853,12 +2897,22 @@ msgid "" "when :func:`repr` is invoked on a string. It has no bearing on the handling " "of strings written to :data:`sys.stdout` or :data:`sys.stderr`.)" msgstr "" +"Dizedeki tüm karakterler yazdırılabilirse veya dize boşsa ``True``, aksi " +"takdirde ``False`` döndürür. Yazdırılamayan karakterler, yazdırılabilir " +"olarak kabul edilen ASCII boşluğu (0x20) dışında, Unicode karakter " +"veritabanında \"Diğer\" veya \"Ayırıcı\" olarak tanımlanan karakterlerdir. " +"(Bu bağlamda, yazdırılabilir karakterlerin :func:`repr` bir dize üzerinde " +"çağrıldığında kaçılmaması gereken karakterler olduğunu unutmayın. Bunun :" +"data:`sys.stdout` veya :data:`sys.stderr` dosyalarına yazılan dizelerin " +"işlenmesiyle bir ilgisi yoktur)" #: library/stdtypes.rst:1788 msgid "" "Return ``True`` if there are only whitespace characters in the string and " "there is at least one character, ``False`` otherwise." msgstr "" +"Dizede yalnızca boşluk karakterleri varsa ve en az bir karakter varsa " +"``True``, aksi takdirde ``False`` döndürür." #: library/stdtypes.rst:1791 msgid "" @@ -2866,6 +2920,9 @@ msgid "" "`unicodedata`), either its general category is ``Zs`` (\"Separator, space" "\"), or its bidirectional class is one of ``WS``, ``B``, or ``S``." msgstr "" +"Bir karakter, genel kategorisi ``Zs`` (“Ayırıcı, boşluk”) ya da çift yönlü " +"sınıfı ``WS``, ``B`` veya ``S``’den biri ise Unicode karakter veritabanında " +"(bkz. :mod:`unicodedata`) *beyaz boşluk karakteri*’dir." #: library/stdtypes.rst:1799 msgid "" @@ -2874,12 +2931,18 @@ msgid "" "characters and lowercase characters only cased ones. Return ``False`` " "otherwise." msgstr "" +"Eğer dizenin yalnızca ilk harfi büyük ise ve en az bir karakter varsa " +"``True`` döndürür. Örneğin, büyük harfli karakterler sadece küçük harfli " +"karakterleri ve küçük harfli karakterler sadece büyük harfli karakterleri " +"takip edebilir. Aksi takdirde ``False`` döndürür." #: library/stdtypes.rst:1806 msgid "" "Return ``True`` if all cased characters [4]_ in the string are uppercase and " "there is at least one cased character, ``False`` otherwise." msgstr "" +"Dizedeki tüm karakterler [4]_ büyük harfli ise ve en az bir büyük harfli " +"karakter varsa ``True``, aksi takdirde ``False`` döndürür." #: library/stdtypes.rst:1822 msgid "" @@ -2888,6 +2951,10 @@ msgid "" "*iterable*, including :class:`bytes` objects. The separator between " "elements is the string providing this method." msgstr "" +"*iterable* içindeki dizgelerin birleşiminden oluşan bir dizge döndürür. Eğer " +"*iterable* içinde :class:`bytes` nesneleri de dahil olmak üzere string " +"olmayan değerler varsa bir :exc:`TypeError` oluşacaktır. Öğeler arasındaki " +"ayırıcı, bu yöntemi sağlayan dizedir." #: library/stdtypes.rst:1830 msgid "" @@ -2895,18 +2962,25 @@ msgid "" "done using the specified *fillchar* (default is an ASCII space). The " "original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" +"*width* uzunluğundaki bir dizeyi sola hizalanmış olarak döndürür. Doldurma, " +"belirtilen *fillchar* kullanılarak yapılır (varsayılanı bir ASCII " +"boşluğudur). *width*, ``len(s)`` değerinden küçük veya ona eşitse orijinal " +"dize döndürülür." #: library/stdtypes.rst:1837 msgid "" "Return a copy of the string with all the cased characters [4]_ converted to " "lowercase." msgstr "" +"Dizenin tüm büyük harfli karakterlerini [4]_ küçük harfe dönüştürerek bir " +"kopyasını döndürür." #: library/stdtypes.rst:1840 msgid "" "The lowercasing algorithm used is described in section 3.13 of the Unicode " "Standard." msgstr "" +"Harf küçültme algoritması, Unicode Standardının 3.13 bölümünde açıklanmıştır." #: library/stdtypes.rst:1846 msgid "" @@ -2916,18 +2990,28 @@ msgid "" "The *chars* argument is not a prefix; rather, all combinations of its values " "are stripped::" msgstr "" +"Dizenin baştaki karakterleri çıkarılmış bir kopyasını döndürür. *chars* " +"bağımsız değişkeni, kaldırılacak karakter kümesini belirten bir dizedir. " +"Atlanırsa veya ``None`` olursa, *chars* bağımsız değişkeni varsayılan olarak " +"boşlukları kaldırır. *chars* bağımsız değişkeni bir ön ek değildir; bunun " +"yerine, değerlerinin tüm kombinasyonları çıkarılır::" #: library/stdtypes.rst:1856 msgid "" "See :meth:`str.removeprefix` for a method that will remove a single prefix " "string rather than all of a set of characters. For example::" msgstr "" +"Bir karakter kümesinin tüm ön ekleri yerine tek bir ön ek dizesini " +"kaldıracak bir yöntem için :meth:`str.removeprefix` bölümüne bakın. " +"Örneğin::" #: library/stdtypes.rst:1867 msgid "" "This static method returns a translation table usable for :meth:`str." "translate`." msgstr "" +"Bu statik yöntem :meth:`str.translate` için kullanılabilecek bir çeviri " +"tablosu döndürür." #: library/stdtypes.rst:1869 msgid "" @@ -2936,6 +3020,11 @@ msgid "" "strings (of arbitrary lengths) or ``None``. Character keys will then be " "converted to ordinals." msgstr "" +"Yalnızca bir bağımsız değişken varsa, Unicode sıradanlarını (tamsayılar) " +"veya karakterlerini (1 uzunluğundaki dizeler) Unicode sıradanlarına, " +"dizelere (isteğe bağlı uzunluklarda) veya ``None`` değerine eşleyen bir " +"sözlük olmalıdır. Karakter anahtarları daha sonra sıradanlara " +"dönüştürülecektir." #: library/stdtypes.rst:1874 msgid "" @@ -2944,6 +3033,10 @@ msgid "" "the same position in y. If there is a third argument, it must be a string, " "whose characters will be mapped to ``None`` in the result." msgstr "" +"İki bağımsız değişken varsa, bunlar eşit uzunlukta dizgeler olmalıdır. " +"Sözlüğün son halinde x'teki her karakter y'de aynı konumdaki karakterle " +"eşlenecektir. Üçüncü bir bağımsız değişken varsa, karakterleri sonuçta " +"``None`` ile eşlenecek bir dizge olmalıdır." #: library/stdtypes.rst:1882 msgid "" @@ -2952,12 +3045,18 @@ msgid "" "after the separator. If the separator is not found, return a 3-tuple " "containing the string itself, followed by two empty strings." msgstr "" +"Dizeyi *sep* öğesinin ilk geçtiği yerden böler ve ayırıcıdan önceki kısmı, " +"ayırıcının kendisini ve ayırıcıdan sonraki kısmı içeren bir 3'lü döndürür. " +"Ayırıcı bulunamazsa, dizenin kendisini ve ardından iki boş dizeyi içeren bir " +"3'lü döndürür." #: library/stdtypes.rst:1890 msgid "" "If the string starts with the *prefix* string, return " "``string[len(prefix):]``. Otherwise, return a copy of the original string::" msgstr "" +"Eğer dize *prefix* dizesi ile başlıyorsa, ``dize[len(prefix):]`` döndürür. " +"Aksi takdirde, orijinal dizgenin bir kopyasını döndürür::" #: library/stdtypes.rst:1904 msgid "" @@ -2965,6 +3064,9 @@ msgid "" "return ``string[:-len(suffix)]``. Otherwise, return a copy of the original " "string::" msgstr "" +"Dize *suffix* (son ek) dizesiyle bitiyorsa ve bu *suffix* boş değilse, " +"``dize[:-len(suffix)]`` döndürür. Aksi takdirde, orijinal dizenin bir " +"kopyasını döndürür::" #: library/stdtypes.rst:1918 msgid "" @@ -2972,6 +3074,9 @@ msgid "" "by *new*. If the optional argument *count* is given, only the first *count* " "occurrences are replaced." msgstr "" +"Dizenin, *eski* alt dizesinin tüm oluşumları *yeni* ile değiştirilmiş bir " +"kopyasını döndürür. İsteğe bağlı olarak *count* bağımsız değişkeni " +"verilirse, yalnızca ilk *count* oluşumu değiştirilir." #: library/stdtypes.rst:1925 msgid "" @@ -2979,12 +3084,18 @@ msgid "" "that *sub* is contained within ``s[start:end]``. Optional arguments *start* " "and *end* are interpreted as in slice notation. Return ``-1`` on failure." msgstr "" +"Dizede *sub* alt dizesinin bulunduğu en yüksek dizini döndürür, öyle ki " +"*sub* ``s[start:end]`` içinde yer alır. İsteğe bağlı argümanlar *start* ve " +"*end* dilim gösterimindeki gibi yorumlanır. Başarısızlık durumunda ``-1`` " +"döndürür." #: library/stdtypes.rst:1932 msgid "" "Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* is " "not found." msgstr "" +":meth:`rfind` gibi, ancak *sub* alt dizesi bulunamadığında :exc:`ValueError` " +"yükseltir." #: library/stdtypes.rst:1938 msgid "" @@ -2992,6 +3103,10 @@ msgid "" "done using the specified *fillchar* (default is an ASCII space). The " "original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" +"*width* uzunluğundaki bir dizeyi sağa hizalanmış olarak döndürür. Doldurma, " +"belirtilen *fillchar* kullanılarak yapılır (varsayılanı bir ASCII " +"boşluğudur). *width*, ``len(s)`` değerinden küçük veya ona eşitse orijinal " +"dize döndürülür." #: library/stdtypes.rst:1945 msgid "" @@ -3000,6 +3115,10 @@ msgid "" "after the separator. If the separator is not found, return a 3-tuple " "containing two empty strings, followed by the string itself." msgstr "" +"Dizeyi *sep* öğesinin ilk geçtiği yerden böler ve ayırıcıdan önceki kısmı, " +"ayırıcının kendisini ve ayırıcıdan sonraki kısmı içeren bir 3'lü döndürür. " +"Ayırıcı bulunamazsa, dizenin kendisini ve ardından iki boş dizeyi içeren bir " +"3'lü döndürür." #: library/stdtypes.rst:1953 msgid "" @@ -3009,6 +3128,11 @@ msgid "" "string is a separator. Except for splitting from the right, :meth:`rsplit` " "behaves like :meth:`split` which is described in detail below." msgstr "" +"Ayırıcı dizge olarak *sep* kullanarak dizgedeki sözcüklerin bir listesini " +"döndürür. Eğer *maxsplit* belirtilmişse, *rightmost* olmak üzere en fazla " +"*maxsplit* bölme yapılır. Eğer *sep* belirtilmemişse veya ``None`` ise, " +"herhangi bir boşluk dizesi ayırıcıdır. Sağdan bölme dışında, :meth:`rsplit` " +"aşağıda ayrıntılı olarak açıklanan :meth:`split` gibi davranır." #: library/stdtypes.rst:1962 msgid "" @@ -3018,12 +3142,20 @@ msgid "" "The *chars* argument is not a suffix; rather, all combinations of its values " "are stripped::" msgstr "" +"Dizenin en sondaki karakterleri çıkarılmış bir kopyasını döndürür. *chars* " +"bağımsız değişkeni, kaldırılacak karakter kümesini belirten bir dizedir. " +"Atlanırsa veya ``None`` olursa, *chars* bağımsız değişkeni varsayılan olarak " +"boşlukları kaldırır. *chars* bağımsız değişkeni bir ön ek değildir; bunun " +"yerine, değerlerinin tüm kombinasyonları çıkarılır::" #: library/stdtypes.rst:1972 msgid "" "See :meth:`str.removesuffix` for a method that will remove a single suffix " "string rather than all of a set of characters. For example::" msgstr "" +"Bir karakter kümesinin tüm son ekleri yerine tek bir son ek dizesini " +"kaldıracak bir yöntem için :meth:`str.removeprefix` bölümüne bakın. " +"Örneğin::" #: library/stdtypes.rst:1982 msgid "" @@ -3033,6 +3165,11 @@ msgid "" "specified or ``-1``, then there is no limit on the number of splits (all " "possible splits are made)." msgstr "" +"Ayırıcı dizge olarak *sep* kullanarak dizgedeki sözcüklerin bir listesini " +"döndürür. Eğer *maxsplit* belirtilmişse, en fazla *maxsplit* bölme işlemi " +"yapılır (dolayısıyla, liste en fazla ``maxsplit+1`` elemana sahip olur). " +"Eğer *maxsplit* belirtilmemişse veya ``-1`` ise, bölme sayısında bir " +"sınırlama yoktur (tüm olası bölmeler yapılır)." #: library/stdtypes.rst:1988 msgid "" @@ -3042,6 +3179,11 @@ msgid "" "(for example, ``'1<>2<>3'.split('<>')`` returns ``['1', '2', '3']``). " "Splitting an empty string with a specified separator returns ``['']``." msgstr "" +"*sep* verilirse, ardışık sınırlayıcılar birlikte gruplanmaz ve boş dizeleri " +"sınırladıkları kabul edilir (örneğin, ``'1,,2'.split(',')``, ``['1', '', " +"'2']`` döndürür). *sep* bağımsız değişkeni birden çok karakterden oluşabilir " +"(örneğin, ``'1<>2<>3'.split('<>')``, ``['1', '2', '3']`` döndürür). Boş bir " +"dizeyi belirtilen bir ayırıcıyla bölmek ``['']`` döndürür." #: library/stdtypes.rst:2010 library/stdtypes.rst:2130 #: library/stdtypes.rst:3043 library/stdtypes.rst:3150 @@ -3049,7 +3191,7 @@ msgstr "" #: library/stdtypes.rst:3265 library/stdtypes.rst:3315 #: library/stdtypes.rst:3384 library/stdtypes.rst:3408 msgid "For example::" -msgstr "" +msgstr "Örneğin: ::" #: library/stdtypes.rst:2003 msgid "" @@ -3060,6 +3202,11 @@ msgid "" "string or a string consisting of just whitespace with a ``None`` separator " "returns ``[]``." msgstr "" +"Eğer *sep* belirtilmemişse veya ``None`` ise, farklı bir bölme algoritması " +"uygulanır: ardışık boşluk dizileri tek bir ayırıcı olarak kabul edilir ve " +"dizgenin başında veya sonunda boşluk varsa, sonucun başında veya sonunda boş " +"dizeler olmaz. Dolayısıyla, boş bir dizeyi veya sadece beyaz boşluktan " +"oluşan bir dizeyi ``None`` ayırıcısıyla bölmek ``[]`` döndürür." #: library/stdtypes.rst:2025 msgid "" @@ -3067,112 +3214,117 @@ msgid "" "breaks are not included in the resulting list unless *keepends* is given and " "true." msgstr "" +"Satır sınırlarında keserek dizedeki satırların bir listesini döndürür. " +"Satır sonları için *keepends* belirtilmediği ve true değerinde olmadığı " +"sürece, satır sonları sonuç listesine dahil edilmez." #: library/stdtypes.rst:2029 msgid "" "This method splits on the following line boundaries. In particular, the " "boundaries are a superset of :term:`universal newlines`." msgstr "" +"Bu yöntem aşağıdaki satır sınırlarında bölme yapar. Spesifik olarak, " +"sınırlar :term:`universal newlines`ın bir üst kümesidir." #: library/stdtypes.rst:2033 msgid "Representation" -msgstr "" +msgstr "Temsil" #: library/stdtypes.rst:2033 msgid "Description" -msgstr "" +msgstr "Açıklama" #: library/stdtypes.rst:2035 msgid "``\\n``" -msgstr "" +msgstr "``\\n``" #: library/stdtypes.rst:2035 msgid "Line Feed" -msgstr "" +msgstr "Satır Atlama" #: library/stdtypes.rst:2037 msgid "``\\r``" -msgstr "" +msgstr "``\\r``" #: library/stdtypes.rst:2037 msgid "Carriage Return" -msgstr "" +msgstr "Satır Başına Alma" #: library/stdtypes.rst:2039 msgid "``\\r\\n``" -msgstr "" +msgstr "``\\r\\n``" #: library/stdtypes.rst:2039 msgid "Carriage Return + Line Feed" -msgstr "" +msgstr "Satır Başına Alma + Satır Atlama" #: library/stdtypes.rst:2041 msgid "``\\v`` or ``\\x0b``" -msgstr "" +msgstr "``\\v`` or ``\\x0b``" #: library/stdtypes.rst:2041 msgid "Line Tabulation" -msgstr "" +msgstr "Satır Tablolama" #: library/stdtypes.rst:2043 msgid "``\\f`` or ``\\x0c``" -msgstr "" +msgstr "``\\f`` or ``\\x0c``" #: library/stdtypes.rst:2043 msgid "Form Feed" -msgstr "" +msgstr "Form Besleme" #: library/stdtypes.rst:2045 msgid "``\\x1c``" -msgstr "" +msgstr "``\\x1c``" #: library/stdtypes.rst:2045 msgid "File Separator" -msgstr "" +msgstr "Dosya Ayırıcı" #: library/stdtypes.rst:2047 msgid "``\\x1d``" -msgstr "" +msgstr "``\\x1d``" #: library/stdtypes.rst:2047 msgid "Group Separator" -msgstr "" +msgstr "Grup Ayırıcı" #: library/stdtypes.rst:2049 msgid "``\\x1e``" -msgstr "" +msgstr "``\\x1e``" #: library/stdtypes.rst:2049 msgid "Record Separator" -msgstr "" +msgstr "Kayıt Ayırıcı" #: library/stdtypes.rst:2051 msgid "``\\x85``" -msgstr "" +msgstr "``\\x85``" #: library/stdtypes.rst:2051 msgid "Next Line (C1 Control Code)" -msgstr "" +msgstr "Yeni Satır (C1 Denetim Kodu)" #: library/stdtypes.rst:2053 msgid "``\\u2028``" -msgstr "" +msgstr "``\\u2028``" #: library/stdtypes.rst:2053 msgid "Line Separator" -msgstr "" +msgstr "Satır Ayrıcı" #: library/stdtypes.rst:2055 msgid "``\\u2029``" -msgstr "" +msgstr "``\\u2029``" #: library/stdtypes.rst:2055 msgid "Paragraph Separator" -msgstr "" +msgstr "Paragraf Ayırıcı" #: library/stdtypes.rst:2060 msgid "``\\v`` and ``\\f`` added to list of line boundaries." -msgstr "" +msgstr "``\\v`` ve ``\\f`` satır sınırlarına eklenir." #: library/stdtypes.rst:2069 msgid "" @@ -3180,10 +3332,13 @@ msgid "" "method returns an empty list for the empty string, and a terminal line break " "does not result in an extra line::" msgstr "" +"Bir sınırlayıcı dize *sep* verildiğinde :meth:`~str.split` yönteminden " +"farklı olarak, bu yöntem boş dize için boş bir liste döndürür ve bir " +"terminal satır sonu fazladan bir satır ile sonuçlanmaz::" #: library/stdtypes.rst:2078 msgid "For comparison, ``split('\\n')`` gives::" -msgstr "" +msgstr "Kıyaslayacak olursak ``split(‘\\n’)`` şu değeri verir::" #: library/stdtypes.rst:2088 msgid "" @@ -3192,6 +3347,10 @@ msgid "" "optional *start*, test string beginning at that position. With optional " "*end*, stop comparing string at that position." msgstr "" +"Dize *önek* ile başlıyorsa ``True`` döndürür, aksi takdirde ``False`` " +"döndürür. *prefix* ayrıca aranacak ön eklerin bir tuple'ı da olabilir. " +"İsteğe bağlı *start* ile, o konumdan başlayan dizeyi sınar. İsteğe bağlı " +"*end* ile, dizeyi o konumda karşılaştırmayı durdurur." #: library/stdtypes.rst:2096 msgid "" @@ -3201,6 +3360,12 @@ msgid "" "removing whitespace. The *chars* argument is not a prefix or suffix; rather, " "all combinations of its values are stripped::" msgstr "" +"Dizenin baştaki ve sondaki karakterleri çıkarılmış bir kopyasını döndürür. " +"*chars* bağımsız değişkeni, kaldırılacak karakter kümesini belirten bir " +"dizedir. Atlanırsa veya ``None`` olursa, *chars* bağımsız değişkeni " +"varsayılan olarak boşlukları kaldırır. *chars* bağımsız değişkeni bir ön ek " +"veya son ek değildir; bunun yerine, değerlerinin tüm kombinasyonları " +"çıkarılır::" #: library/stdtypes.rst:2107 msgid "" @@ -3209,6 +3374,10 @@ msgid "" "string character that is not contained in the set of characters in *chars*. " "A similar action takes place on the trailing end. For example::" msgstr "" +"En dıştaki ön ve son*chars* bağımsız değişken değerleri dizeden çıkarılır. " +"Karakterler, *chars* içindeki karakter kümesinde bulunmayan bir dize " +"karakterine ulaşılana kadar önde gelen uçtan çıkarılır. Benzer bir işlem son " +"uçta da gerçekleşir. Örneğin::" #: library/stdtypes.rst:2120 msgid "" @@ -3216,12 +3385,17 @@ msgid "" "and vice versa. Note that it is not necessarily true that ``s.swapcase()." "swapcase() == s``." msgstr "" +"Büyük harf karakterleri küçük harfe dönüştürülmüş veya tam tersi yapılmış " +"dizenin bir kopyasını döndürür. ``s.swapcase().swapcase() == s`` ifadesinin " +"mutlaka doğru olması gerekmediğine dikkat edin." #: library/stdtypes.rst:2127 msgid "" "Return a titlecased version of the string where words start with an " "uppercase character and the remaining characters are lowercase." msgstr "" +"Sözcüklerin büyük harfle başladığı ve kalan karakterlerin küçük harf olduğu " +"dizenin başlıklandırılmış bir sürümünü döndürür." #: library/stdtypes.rst:3352 msgid "" @@ -3230,11 +3404,17 @@ msgid "" "means that apostrophes in contractions and possessives form word boundaries, " "which may not be the desired result::" msgstr "" +"Algoritma, bir kelimenin ardışık harf grupları olarak dilden bağımsız basit " +"bir tanımını kullanır. Bu tanım birçok bağlamda işe yarar, ancak bu, " +"kısaltmalar ve iyeliklerdeki kesme işaretlerinin kelime sınırları " +"oluşturduğu anlamına gelir ve bu istenen sonuç olmayabilir::" #: library/stdtypes.rst:3360 msgid "" "A workaround for apostrophes can be constructed using regular expressions::" msgstr "" +"Kesme işaretleri için geçici bir çözüm düzenli ifadeler kullanılarak " +"oluşturulabilir::" #: library/stdtypes.rst:2157 msgid "" @@ -3247,6 +3427,15 @@ msgid "" "delete the character from the return string; or raise a :exc:`LookupError` " "exception, to map the character to itself." msgstr "" +"Her karakterin verilen çeviri tablosu aracılığıyla eşlendiği dizgenin bir " +"kopyasını döndürür. Tablo, :meth:`__getitem__` aracılığıyla indeksleme " +"uygulayan bir nesne, tipik olarak bir :term:`mapping` veya :term:`sequence` " +"olmalıdır. Bir Unicode sıra numarası (bir tamsayı) ile indekslendiğinde, " +"tablo nesnesi aşağıdakilerden herhangi birini yapabilir: karakteri bir veya " +"daha fazla başka karakterle eşlemek için bir Unicode sıra numarası veya bir " +"dize döndürmek; karakteri dönüş dizesinden silmek için ``None`` döndürmek; " +"veya karakteri kendisiyle eşlemek için bir :exc:`LookupError` istisnası " +"oluşturmak." #: library/stdtypes.rst:2166 msgid "" @@ -3274,6 +3463,7 @@ msgid "" "The uppercasing algorithm used is described in section 3.13 of the Unicode " "Standard." msgstr "" +"Harf büyütme algoritması, Unicode Standardının 3.13 bölümünde açıklanmıştır." #: library/stdtypes.rst:2187 msgid "" From 8399ca1787774c24bd746ae835964597ffad0fa2 Mon Sep 17 00:00:00 2001 From: Bengisuyarbas Date: Tue, 19 Jul 2022 21:56:55 +0300 Subject: [PATCH 35/37] update --- library/stdtypes.po | 82 +++++++++++++++++++++++++++++++++++++++------ 1 file changed, 71 insertions(+), 11 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index f1a2a0083..c9e3c5832 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2022-07-19 18:15+0300\n" +"PO-Revision-Date: 2022-07-19 21:54+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.1\n" +"X-Generator: Poedit 3.0.1\n" #: library/stdtypes.rst:8 msgid "Built-in Types" @@ -6155,6 +6155,9 @@ msgid "" "However, union objects containing :ref:`parameterized generics ` cannot be used::" msgstr "" +"Ancak, :ref:`parameterized generics` içeren union nesneleri kullanılamaz::" #: library/stdtypes.rst:5044 msgid "" @@ -6162,6 +6165,9 @@ msgid "" "UnionType` and used for :func:`isinstance` checks. An object cannot be " "instantiated from the type::" msgstr "" +"Union nesnesinin kullanıcıya açık türüne :data:`types.UnionType` adresinden " +"erişilebilir ve :func:`isinstance` kontrolleri için kullanılabilir. Bir " +"nesne şu türden örneklenemez::" #: library/stdtypes.rst:5057 msgid "" @@ -6169,24 +6175,29 @@ msgid "" "``X | Y``. If a metaclass implements :meth:`__or__`, the Union may override " "it::" msgstr "" +"Tür nesneleri için :meth:`__or__` yöntemi, ``X | Y`` sözdizimini desteklemek " +"için eklendi. Eğer bir metaclass :meth:`__or__` metodunu uygularsa, Union " +"bunu geçersiz kılabilir::" #: library/stdtypes.rst:5075 msgid ":pep:`604` -- PEP proposing the ``X | Y`` syntax and the Union type." -msgstr "" +msgstr ":pep:`604` -- ``X | Y`` sözdizimini ve Birlik türünü öneren PEP." #: library/stdtypes.rst:5083 msgid "Other Built-in Types" -msgstr "" +msgstr "Diğer Yerleşik Tipler" #: library/stdtypes.rst:5085 msgid "" "The interpreter supports several other kinds of objects. Most of these " "support only one or two operations." msgstr "" +"Yorumlayıcı başka nesne türlerini de destekler. Bunların çoğu yalnızca bir " +"veya iki işlemi destekler." #: library/stdtypes.rst:5092 msgid "Modules" -msgstr "" +msgstr "Modüller" #: library/stdtypes.rst:5094 msgid "" @@ -6198,6 +6209,13 @@ msgid "" "exist, rather it requires an (external) *definition* for a module named " "*foo* somewhere.)" msgstr "" +"Bir modül üzerindeki tek özel işlem öznitelik erişimidir: ``m.name``, burada " +"*m* bir modüldür ve *name* *m*'nin sembol tablosunda tanımlanan bir isme " +"erişir. Modül nitelikleri atanabilir. (:keyword:`import` deyiminin " +"kesinlikle bir modül nesnesi üzerinde bir işlem olmadığına dikkat edin; " +"``import foo`` *foo* adında bir modül nesnesinin var olmasını gerektirmez, " +"bunun yerine bir yerlerde *foo* adında bir modül için (harici) bir " +"*tanımlama* gerektirir)" #: library/stdtypes.rst:5101 msgid "" @@ -6209,6 +6227,13 @@ msgid "" "``m.__dict__ = {}``). Modifying :attr:`~object.__dict__` directly is not " "recommended." msgstr "" +"Her modülün özel bir niteliği :attr:`~object.__dict__`dir. Bu, modülün " +"sembol tablosunu içeren sözlüktür. Bu sözlüğü değiştirmek aslında modülün " +"sembol tablosunu değiştirecektir, ancak :attr:`~object.__dict__` niteliğine " +"doğrudan atama yapmak mümkün değildir (``m.__dict__['a'] = 1`` " +"yazabilirsiniz, bu ``m.a`` yı ``1`` olarak tanımlar, ancak ``m.__dict__ = {}" +"`` yazamazsınız). Attr:`~object.__dict__` öğesinin doğrudan değiştirilmesi " +"önerilmez." #: library/stdtypes.rst:5109 msgid "" @@ -6216,24 +6241,30 @@ msgid "" "'sys' (built-in)>``. If loaded from a file, they are written as ````." msgstr "" +"Yorumlayıcıda yerleşik olarak bulunan modüller şu şekilde yazılır: ````. Eğer bir dosyadan yüklenmişlerse, ```` şeklinde yazılırlar." #: library/stdtypes.rst:5117 msgid "Classes and Class Instances" -msgstr "" +msgstr "Sınıflar ve Sınıf Örnekleri" #: library/stdtypes.rst:5119 msgid "See :ref:`objects` and :ref:`class` for these." -msgstr "" +msgstr "Bunlar için :ref:`class` ve :ref:`objects` bakın." #: library/stdtypes.rst:5125 msgid "Functions" -msgstr "" +msgstr "Fonksiyonlar" #: library/stdtypes.rst:5127 msgid "" "Function objects are created by function definitions. The only operation on " "a function object is to call it: ``func(argument-list)``." msgstr "" +"Fonksiyon nesneleri fonksiyon tanımları tarafından oluşturulur. Bir " +"fonksiyon nesnesi üzerindeki tek işlem onu çağırmaktır: ``func(argument-" +"list)``." #: library/stdtypes.rst:5130 msgid "" @@ -6242,14 +6273,18 @@ msgid "" "function), but the implementation is different, hence the different object " "types." msgstr "" +"Fonksiyon nesnelerinin gerçekten iki çeşidi vardır: yerleşik fonksiyonlar ve " +"kullanıcı tanımlı fonksiyonlar. Her ikisi de aynı işlemi destekler (işlevi " +"çağırmak için), ancak uygulama farklıdır, dolayısıyla farklı nesne türleri " +"vardır." #: library/stdtypes.rst:5134 msgid "See :ref:`function` for more information." -msgstr "" +msgstr "Daha fazla bilgi için :ref:`function` bölümüne bakınız." #: library/stdtypes.rst:5140 msgid "Methods" -msgstr "" +msgstr "Yöntemler" #: library/stdtypes.rst:5144 msgid "" @@ -6258,6 +6293,10 @@ msgid "" "class instance methods. Built-in methods are described with the types that " "support them." msgstr "" +"Yöntemler, nitelik gösterimi kullanılarak çağrılan işlevlerdir. İki çeşidi " +"vardır: yerleşik yöntemler (listelerde :meth:`append` gibi) ve sınıf örneği " +"yöntemleri. Yerleşik yöntemler, onları destekleyen türlerle birlikte " +"tanımlanır." #: library/stdtypes.rst:5149 msgid "" @@ -6270,6 +6309,14 @@ msgid "" "n)`` is completely equivalent to calling ``m.__func__(m.__self__, arg-1, " "arg-2, ..., arg-n)``." msgstr "" +"Bir yönteme (bir sınıf ad alanında tanımlanmış bir fonksiyon) bir örnek " +"üzerinden erişirseniz, özel bir nesne elde edersiniz: bir :dfn:`bound " +"method` (ayrıca :dfn:`instance method` olarak da adlandırılır) nesnesi. " +"Çağrıldığında, ``self`` argümanını argüman listesine ekleyecektir. Bağlı " +"metotların iki özel salt okunur niteliği vardır: ``m.__self__`` metodun " +"üzerinde çalıştığı nesne ve ``m.__func__`` metodu uygulayan fonksiyondur. " +"M(arg-1, arg-2, ..., arg-n)`` çağrısı tamamen ``m.__func__(m.__self__, " +"arg-1, arg-2, ..., arg-n)`` çağrısına eşdeğerdir." #: library/stdtypes.rst:5158 msgid "" @@ -6280,6 +6327,13 @@ msgid "" "results in an :exc:`AttributeError` being raised. In order to set a method " "attribute, you need to explicitly set it on the underlying function object::" msgstr "" +"Fonksiyon nesneleri gibi, bağlı metot nesneleri de keyfi nitelikler almayı " +"destekler. Ancak, yöntem nitelikleri aslında temel işlev nesnesinde (``meth." +"__func__``) saklandığından, bağlı yöntemlerde yöntem niteliklerinin " +"ayarlanmasına izin verilmez. Bir yöntem üzerinde bir öznitelik ayarlamaya " +"çalışmak :exc:`AttributeError` ile sonuçlanır. Bir yöntem özniteliğini " +"ayarlamak için, bunu temel işlev nesnesi üzerinde açıkça ayarlamanız " +"gerekir::" #: library/stdtypes.rst:5209 msgid "See :ref:`types` for more information." @@ -6298,6 +6352,12 @@ msgid "" "function and can be extracted from function objects through their :attr:" "`__code__` attribute. See also the :mod:`code` module." msgstr "" +"Kod nesneleri, uygulama tarafından bir fonksiyon gövdesi gibi \"sözde " +"derlenmiş\" çalıştırılabilir Python kodunu temsil etmek için kullanılır. " +"Fonksiyon nesnelerinden farklıdırlar çünkü global yürütme ortamlarına bir " +"referans içermezler. Kod nesneleri yerleşik :func:`compile` işlevi " +"tarafından döndürülür ve :attr:`__code__` niteliği aracılığıyla işlev " +"nesnelerinden çıkarılabilir. Ayrıca :mod:`code` modülüne de bakınız." #: library/stdtypes.rst:5199 msgid "" @@ -6317,7 +6377,7 @@ msgstr "" #: library/stdtypes.rst:5215 msgid "Type Objects" -msgstr "" +msgstr "Type Objects" #: library/stdtypes.rst:5221 msgid "" From 3c905a0bbe1d6008b3cd863589a6cc4eacd60f85 Mon Sep 17 00:00:00 2001 From: Bengisuyarbas Date: Mon, 15 Aug 2022 20:58:16 +0300 Subject: [PATCH 36/37] update --- library/stdtypes.po | 198 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 174 insertions(+), 24 deletions(-) diff --git a/library/stdtypes.po b/library/stdtypes.po index c9e3c5832..7e6ef5f20 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-12-17 23:20+0300\n" -"PO-Revision-Date: 2022-07-19 21:54+0300\n" +"PO-Revision-Date: 2022-08-15 20:14+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" "Language: tr\n" @@ -5022,19 +5022,19 @@ msgstr "" #: library/stdtypes.rst:4087 msgid "A bool indicating whether the memory is C-:term:`contiguous`." -msgstr "" +msgstr "Belleğin C-:term:`contiguous` olup olmadığını gösteren bir bool." #: library/stdtypes.rst:4093 msgid "A bool indicating whether the memory is Fortran :term:`contiguous`." -msgstr "" +msgstr "Belleğin Fortran :term:`contiguous` olup olmadığını gösteren bir bool." #: library/stdtypes.rst:4099 msgid "A bool indicating whether the memory is :term:`contiguous`." -msgstr "" +msgstr "Belleğin :term:`contiguous` olup olmadığını gösteren bir bool." #: library/stdtypes.rst:4107 msgid "Set Types --- :class:`set`, :class:`frozenset`" -msgstr "" +msgstr "Set Türleri --- :class:`set`, :class:`frozenset`" #: library/stdtypes.rst:4111 msgid "" @@ -5045,6 +5045,12 @@ msgid "" "in :class:`dict`, :class:`list`, and :class:`tuple` classes, and the :mod:" "`collections` module.)" msgstr "" +"Bir :dfn:`set` nesnesi, farklı :term:`hashable` nesnelerinin sıralanmamış " +"bir koleksiyonudur. Yaygın kullanımları arasında üyelik sınaması, bir " +"diziden yinelenenlerin kaldırılması ve kesişim, birleşim, fark ve simetrik " +"fark gibi matematiksel işlemlerin hesaplanması yer alır. (Diğer kapsayıcılar " +"için yerleşik :class:`dict`, :class:`list` ve :class:`tuple` sınıflarına ve :" +"mod:`collections` modülüne bakın)" #: library/stdtypes.rst:4118 msgid "" @@ -5053,6 +5059,10 @@ msgid "" "position or order of insertion. Accordingly, sets do not support indexing, " "slicing, or other sequence-like behavior." msgstr "" +"Diğer koleksiyonlar gibi, kümeler de ``x in set``, ``len(set)``, ve ``for x " +"in set`` özelliklerini destekler. Sırasız bir koleksiyon olan kümeler, " +"eleman konumunu veya ekleme sırasını kaydetmez. Buna göre, kümeler " +"dizinleme, dilimleme veya sıra benzeri davranışları desteklemez." #: library/stdtypes.rst:4123 msgid "" @@ -5065,6 +5075,13 @@ msgid "" "it is created; it can therefore be used as a dictionary key or as an element " "of another set." msgstr "" +"Şu anda iki yerleşik set türü vardır, :class:`set` ve :class:`frozenset`. " +"Class:`set` türü değişkendir --- içeriği :meth:`~set.add` ve :meth:`~set." +"remove` gibi yöntemler kullanılarak değiştirilebilir. Değiştirilebilir " +"olduğu için hash değeri yoktur ve bir sözlük anahtarı ya da başka bir " +"kümenin elemanı olarak kullanılamaz. Class:`frozenset` türü değişmezdir ve :" +"term:`hashable` --- içeriği oluşturulduktan sonra değiştirilemez; bu nedenle " +"bir sözlük anahtarı veya başka bir kümenin öğesi olarak kullanılabilir." #: library/stdtypes.rst:4131 msgid "" @@ -5072,10 +5089,13 @@ msgid "" "list of elements within braces, for example: ``{'jack', 'sjoerd'}``, in " "addition to the :class:`set` constructor." msgstr "" +"Boş olmayan kümeler (frozensetler değil), :class:`set` yapıcısına ek olarak " +"parantez içine virgülle ayrılmış bir öğe listesi yerleştirilerek " +"oluşturulabilir, örneğin: ``{'jack', 'sjoerd'}``." #: library/stdtypes.rst:4135 msgid "The constructors for both classes work the same:" -msgstr "" +msgstr "Her iki sınıfın kurucuları aynı şekilde çalışır:" #: library/stdtypes.rst:4140 msgid "" @@ -5084,91 +5104,112 @@ msgid "" "sets of sets, the inner sets must be :class:`frozenset` objects. If " "*iterable* is not specified, a new empty set is returned." msgstr "" +"Elemanları *iterable* öğesinden alınan yeni bir küme veya frozenset nesnesi " +"döndürür. Bir kümenin elemanları :term:`hashable` olmalıdır. Kümelerin " +"kümelerini temsil etmek için, iç kümeler :class:`frozenset` nesneleri " +"olmalıdır. Eğer *iterable* belirtilmemişse, yeni bir boş küme döndürülür." #: library/stdtypes.rst:4146 msgid "Sets can be created by several means:" -msgstr "" +msgstr "Setler çeşitli yollarla oluşturulabilir:" #: library/stdtypes.rst:4148 msgid "" "Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``" msgstr "" +"Parantez içinde virgülle ayrılmış bir öğe listesi kullanın: ``{'jack', " +"'sjoerd'}``" #: library/stdtypes.rst:4149 msgid "" "Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``" msgstr "" +"Bir küme kavrayışı kullanın: ``{c for c in 'abracadabra' if c not in 'abc'}``" #: library/stdtypes.rst:4150 msgid "" "Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', " "'foo'])``" msgstr "" +"Tür kurucusunu kullanın: ``set()``, ``set('foobar')``, ``set(['a', 'b', " +"'foo'])``" #: library/stdtypes.rst:4152 msgid "" "Instances of :class:`set` and :class:`frozenset` provide the following " "operations:" msgstr "" +"Class:`set` ve :class:`frozenset` örnekleri aşağıdaki işlemleri sağlar:" #: library/stdtypes.rst:4157 msgid "Return the number of elements in set *s* (cardinality of *s*)." -msgstr "" +msgstr "*s* kümesindeki eleman sayısını döndürür (*s*'nin kardinalitesi)." #: library/stdtypes.rst:4161 msgid "Test *x* for membership in *s*." -msgstr "" +msgstr "*x*'i *s* üyeliği için test edin." #: library/stdtypes.rst:4165 msgid "Test *x* for non-membership in *s*." -msgstr "" +msgstr "*x*'in *s*'ye üye olup olmadığını test edin." #: library/stdtypes.rst:4169 msgid "" "Return ``True`` if the set has no elements in common with *other*. Sets are " "disjoint if and only if their intersection is the empty set." msgstr "" +"Kümenin *other* kümelerle ortak hiçbir elemanı yoksa ``True`` döndürür. " +"Kümeler, ancak ve ancak kesişimleri boş küme ise ayrıktır." #: library/stdtypes.rst:4175 msgid "Test whether every element in the set is in *other*." -msgstr "" +msgstr "Kümedeki her elemanın *other* içinde olup olmadığını test edin." #: library/stdtypes.rst:4179 msgid "" "Test whether the set is a proper subset of *other*, that is, ``set <= other " "and set != other``." msgstr "" +"Kümenin *other* kümenin uygun bir alt kümesi olup olmadığını, yani ``set <= " +"other and set != other`` olup olmadığını test eder." #: library/stdtypes.rst:4185 msgid "Test whether every element in *other* is in the set." -msgstr "" +msgstr "Kümedeki her elemanın *other* içinde olup olmadığını test edin." #: library/stdtypes.rst:4189 msgid "" "Test whether the set is a proper superset of *other*, that is, ``set >= " "other and set != other``." msgstr "" +"Kümenin *other* kümenin uygun bir üst kümesi olup olmadığını, yani ``set >= " +"other and set != other`` olup olmadığını test edin." #: library/stdtypes.rst:4195 msgid "Return a new set with elements from the set and all others." msgstr "" +"Kümedeki ve diğer tüm kümelerdeki elemanları içeren yeni bir küme döndürür." #: library/stdtypes.rst:4200 msgid "Return a new set with elements common to the set and all others." msgstr "" +"Küme ve diğer tüm kümeler için ortak öğeler içeren yeni bir küme döndürür." #: library/stdtypes.rst:4205 msgid "Return a new set with elements in the set that are not in the others." msgstr "" +"Küme içinde diğerlerinde olmayan elemanlar içeren yeni bir küme döndürür." #: library/stdtypes.rst:4210 msgid "" "Return a new set with elements in either the set or *other* but not both." msgstr "" +"Elemanları ya kümede ya da *diğer* kümede olan ancak her ikisinde de olmayan " +"yeni bir küme döndürür." #: library/stdtypes.rst:4214 msgid "Return a shallow copy of the set." -msgstr "" +msgstr "Kümenin yüzeysel bir kopyasını döndürür." #: library/stdtypes.rst:4217 msgid "" @@ -5179,6 +5220,14 @@ msgid "" "precludes error-prone constructions like ``set('abc') & 'cbs'`` in favor of " "the more readable ``set('abc').intersection('cbs')``." msgstr "" +"Not: :meth:`union`, :meth:`intersection`, :meth:`difference`, :meth:" +"`symmetric_difference`, :meth:`issubset` ve :meth:`issuperset` metotlarının " +"operatörsüz versiyonları herhangi bir yinelenebiliri argüman olarak kabul " +"edecektir. Buna karşılık, operatör tabanlı benzerleri argümanlarının küme " +"olmasını gerektirir. Bu, daha okunabilir ``set('abc').intersection('cbs')`` " +"yerine ``set('abc') & 'cbs'`` gibi hataya açık yapıları engeller.\n" +"\n" +"Translated with www.DeepL.com/Translator (free version)" #: library/stdtypes.rst:4224 msgid "" @@ -5189,6 +5238,15 @@ msgid "" "is not equal). A set is greater than another set if and only if the first " "set is a proper superset of the second set (is a superset, but is not equal)." msgstr "" +"Hem :class:`set` hem de :class:`frozenset` kümeden kümeye karşılaştırmaları " +"destekler. İki küme, ancak ve ancak her kümenin her elemanı diğerinin içinde " +"bulunuyorsa (her biri diğerinin alt kümesi ise) eşittir. Bir küme başka bir " +"kümeden ancak ve ancak birinci küme ikinci kümenin uygun bir alt kümesi ise " +"(bir alt kümedir, ancak eşit değildir) küçüktür. Bir küme, ancak ve ancak " +"birinci küme ikinci kümenin uygun bir üst kümesi ise (bir üst kümedir, ancak " +"eşit değildir) başka bir kümeden büyüktür.\n" +"\n" +"Translated with www.DeepL.com/Translator (free version)" #: library/stdtypes.rst:4231 msgid "" @@ -5196,6 +5254,9 @@ msgid "" "based on their members. For example, ``set('abc') == frozenset('abc')`` " "returns ``True`` and so does ``set('abc') in set([frozenset('abc')])``." msgstr "" +"class:`set` örnekleri, üyelerine göre :class:`frozenset` örnekleriyle " +"karşılaştırılır. Örneğin, ``set('abc') == frozenset('abc')`` ``True`` " +"döndürür ve ``set('abc') in set([frozenset('abc')])`` de öyle." #: library/stdtypes.rst:4235 msgid "" @@ -5204,16 +5265,22 @@ msgid "" "not subsets of each other, so *all* of the following return ``False``: " "``ab``." msgstr "" +"Alt küme ve eşitlik karşılaştırmaları toplam sıralama fonksiyonuna " +"genelleştirilemez. Örneğin, boş olmayan herhangi iki ayrık küme eşit " +"değildir ve birbirinin alt kümesi değildir, bu nedenle aşağıdakilerin *all* " +"``Yanlış`` döndürür: ``ab``." #: library/stdtypes.rst:4240 msgid "" "Since sets only define partial ordering (subset relationships), the output " "of the :meth:`list.sort` method is undefined for lists of sets." msgstr "" +"Kümeler yalnızca kısmi sıralama (alt küme ilişkileri) tanımladığından, :meth:" +"`list.sort` yönteminin çıktısı küme listeleri için tanımsızdır." #: library/stdtypes.rst:4243 msgid "Set elements, like dictionary keys, must be :term:`hashable`." -msgstr "" +msgstr "Sözlük anahtarları gibi küme öğeleri de :term:`hashable` olmalıdır." #: library/stdtypes.rst:4245 msgid "" @@ -5221,53 +5288,65 @@ msgid "" "return the type of the first operand. For example: ``frozenset('ab') | " "set('bc')`` returns an instance of :class:`frozenset`." msgstr "" +"class:`set` örneklerini :class:`frozenset` ile karıştıran ikili işlemler ilk " +"işlenenin türünü döndürür. Örneğin: ``frozenset('ab') | set('bc')`` bir :" +"class:`frozenset` örneği döndürür." #: library/stdtypes.rst:4249 msgid "" "The following table lists operations available for :class:`set` that do not " "apply to immutable instances of :class:`frozenset`:" msgstr "" +"Aşağıdaki tabloda :class:`set` için kullanılabilen ve :class:`frozenset`in " +"değişmez örneklerine uygulanmayan işlemler listelenmektedir:" #: library/stdtypes.rst:4255 msgid "Update the set, adding elements from all others." -msgstr "" +msgstr "Diğer tüm öğeleri ekleyerek seti güncelleyin." #: library/stdtypes.rst:4260 msgid "Update the set, keeping only elements found in it and all others." msgstr "" +"Yalnızca içinde bulunan öğeleri ve diğerlerini koruyarak seti güncelleyin." #: library/stdtypes.rst:4265 msgid "Update the set, removing elements found in others." -msgstr "" +msgstr "Diğerlerinde bulunan öğeleri kaldırarak kümeyi güncelleyin." #: library/stdtypes.rst:4270 msgid "" "Update the set, keeping only elements found in either set, but not in both." msgstr "" +"Kümeyi güncelleyin, yalnızca her iki kümede de bulunan öğeleri saklayın, " +"ancak her ikisinde de bulunmayın." #: library/stdtypes.rst:4274 msgid "Add element *elem* to the set." -msgstr "" +msgstr "Kümeye *elem* öğesini ekleyin." #: library/stdtypes.rst:4278 msgid "" "Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is not " "contained in the set." msgstr "" +"Kümeden *elem* elemanını kaldırır. Eğer *elem* kümede bulunmuyorsa :exc:" +"`KeyError` değerini yükseltir." #: library/stdtypes.rst:4283 msgid "Remove element *elem* from the set if it is present." -msgstr "" +msgstr "Eğer varsa *elem* öğesini kümeden kaldırır." #: library/stdtypes.rst:4287 msgid "" "Remove and return an arbitrary element from the set. Raises :exc:`KeyError` " "if the set is empty." msgstr "" +"Kümeden rastgele bir elemanı kaldırır ve döndürür. Küme boşsa :exc:" +"`KeyError` değerini yükseltir." #: library/stdtypes.rst:4292 msgid "Remove all elements from the set." -msgstr "" +msgstr "Kümeden tüm öğeleri kaldırın." #: library/stdtypes.rst:4295 msgid "" @@ -5276,6 +5355,9 @@ msgid "" "`symmetric_difference_update` methods will accept any iterable as an " "argument." msgstr "" +"Not: :meth:`update`, :meth:`intersection_update`, :meth:`difference_update` " +"ve :meth:`symmetric_difference_update` metotlarının operatör olmayan " +"versiyonları herhangi bir iterable'ı argüman olarak kabul edecektir." #: library/stdtypes.rst:4300 msgid "" @@ -5283,10 +5365,13 @@ msgid "" "meth:`discard` methods may be a set. To support searching for an equivalent " "frozenset, a temporary one is created from *elem*." msgstr "" +"Not: :meth:`__contains__`, :meth:`remove` ve :meth:`discard` yöntemlerinin " +"*elem* argümanı bir küme olabilir. Eşdeğer bir frozenset aramayı " +"desteklemek için, *elem*'den geçici bir tane oluşturulur." #: library/stdtypes.rst:4308 msgid "Mapping Types --- :class:`dict`" -msgstr "" +msgstr "Mapping Types --- :class:`dict`" #: library/stdtypes.rst:4318 msgid "" @@ -5296,6 +5381,11 @@ msgid "" "`list`, :class:`set`, and :class:`tuple` classes, and the :mod:`collections` " "module.)" msgstr "" +"Bir :term:`mapping` nesnesi :term:`hashable` değerlerini rastgele nesnelere " +"eşler. Eşlemeler değiştirilebilir nesnelerdir. Şu anda sadece bir standart " +"eşleme türü vardır, :dfn:`dictionary`. (Diğer kapsayıcılar için yerleşik :" +"class:`list`, :class:`set` ve :class:`tuple` sınıflarına ve :mod:" +"`collections` modülüne bakın)." #: library/stdtypes.rst:4324 msgid "" @@ -5308,6 +5398,15 @@ msgid "" "entry. (Note however, that since computers store floating-point numbers as " "approximations it is usually unwise to use them as dictionary keys.)" msgstr "" +"Bir sözlüğün anahtarları *almost* rastgele değerlerdir. term:`hashable` " +"olmayan değerler, yani listeler, sözlükler veya diğer değişebilir türleri " +"içeren değerler (nesne kimliği yerine değere göre karşılaştırılan) anahtar " +"olarak kullanılamaz. Anahtarlar için kullanılan sayısal türler, sayısal " +"karşılaştırma için normal kurallara uyar: iki sayı eşit karşılaştırılırsa " +"(örneğin ``1`` ve ``1.0``), aynı sözlük girdisini indekslemek için " +"birbirlerinin yerine kullanılabilirler. (Bununla birlikte, bilgisayarlar " +"kayan noktalı sayıları yaklaşık olarak sakladığından, bunları sözlük " +"anahtarları olarak kullanmak genellikle akıllıca değildir)." #: library/stdtypes.rst:4333 msgid "" @@ -5315,16 +5414,22 @@ msgid "" "value`` pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` " "or ``{4098: 'jack', 4127: 'sjoerd'}``, or by the :class:`dict` constructor." msgstr "" +"Sözlükler, ``key: value`` çiftlerinin virgülle ayrılmış bir listesini " +"parantez içine yerleştirerek oluşturulabilir, örneğin: ``{'jack': 4098, " +"'sjoerd': 4127}`` veya ``{4098: 'jack', 4127: 'sjoerd'}`` veya :class:`dict` " +"yapıcısı ile oluşturulabilir." #: library/stdtypes.rst:4341 msgid "" "Return a new dictionary initialized from an optional positional argument and " "a possibly empty set of keyword arguments." msgstr "" +"İsteğe bağlı bir konumsal bağımsız değişken ve muhtemelen boş bir anahtar " +"sözcük bağımsız değişken kümesinden başlatılan yeni bir sözlük döndürür." #: library/stdtypes.rst:4344 msgid "Dictionaries can be created by several means:" -msgstr "" +msgstr "Sözlükler çeşitli yollarla oluşturulabilir:" #: library/stdtypes.rst:4346 msgid "" @@ -5673,7 +5778,7 @@ msgstr "" #: library/stdtypes.rst:4698 msgid "Context Manager Types" -msgstr "" +msgstr "Bağlam Yöneticisi Türleri" #: library/stdtypes.rst:4705 msgid "" @@ -5779,7 +5884,7 @@ msgstr "" #: library/stdtypes.rst:4783 msgid "Generic Alias Type" -msgstr "" +msgstr "Genel Takma Ad Türü" #: library/stdtypes.rst:4789 msgid "" @@ -5787,6 +5892,9 @@ msgid "" "container), such as ``list[int]``. They are intended primarily for :term:" "`type annotations `." msgstr "" +"``GenericAlias`` nesneleri, ``list[int]`` gibi bir sınıfın (genellikle bir " +"kapsayıcı) alt kodlanmasıyla oluşturulur. Bunlar öncelikle :term:`type " +"annotations ` için tasarlanmıştır." #: library/stdtypes.rst:4793 msgid "" @@ -5796,6 +5904,11 @@ msgid "" "of the class instead. The classmethod :meth:`__class_getitem__` should " "return a ``GenericAlias`` object." msgstr "" +"Genellikle, kapsayıcı nesnelerinin :ref:`subscription `, " +"nesnenin :meth:`__getitem__` yöntemini çağırır. Ancak, bazı konteyner " +"sınıflarının aboneliğinin içinde sınıfın :meth:`__class_getitem__` sınıf " +"metodunu çağırabilir. :meth:`__class_getitem__` sınıf yöntemi " +"bir``GenerAlias`` nesnesine döndürmeli." #: library/stdtypes.rst:4800 msgid "" @@ -5803,6 +5916,9 @@ msgid "" "precedence over the :meth:`__class_getitem__` defined in the class (see :pep:" "`560` for more details)." msgstr "" +"Sınıfın üst sınıfının :meth:`__getitem__`'i mevcutsa, sınıfta tanımlanan :" +"meth:`__class_getitem__`'e göre öncelikli olacaktır (daha fazla ayrıntı " +"için :pep:`560`'a bakın)." #: library/stdtypes.rst:4804 msgid "" @@ -5810,6 +5926,9 @@ msgid "" "`, implementing *parameterized generics* - a specific instance " "of a generic which provides the types for container elements." msgstr "" +"GenericAlias`` nesnesi, :term:`generic types ` için bir vekil " +"olarak hareket eder, *parametreli jenerikler* uygulamak - kapsayıcı öğeleri " +"için türler sağlayan belirli bir jenerik örneği." #: library/stdtypes.rst:4808 msgid "" @@ -5817,6 +5936,10 @@ msgid "" "class:`types.GenericAlias` and used for :func:`isinstance` checks. It can " "also be used to create ``GenericAlias`` objects directly." msgstr "" +"GenericAlias`` nesnesi için kullanıcıya açık tipe :class:`types." +"GenericAlias` öğesinden erişilebilir ve :func:`isinstance` kontrolleri için " +"kullanılabilir. Ayrıca doğrudan ``GenericAlias`` nesneleri oluşturmak için " +"de kullanılabilir." #: library/stdtypes.rst:4814 msgid "" @@ -5824,6 +5947,10 @@ msgid "" "types *X*, *Y*, and more depending on the ``T`` used. For example, a " "function expecting a :class:`list` containing :class:`float` elements::" msgstr "" +"Kullanılan ``T`` türüne bağlı olarak *X*, *Y* ve daha fazla türde öğeler " +"içeren bir ``T`` türünü temsil eden bir ``GenericAlias`` oluşturur. " +"Örneğin, :class:`float` elemanları içeren bir :class:`list` bekleyen bir " +"fonksiyon::" #: library/stdtypes.rst:4822 msgid "" @@ -5832,12 +5959,18 @@ msgid "" "the value type. In this example, the function expects a ``dict`` with keys " "of type :class:`str` and values of type :class:`int`::" msgstr "" +"Anahtar türünü ve değer türünü temsil eden iki tür parametresi bekleyen " +"genel bir tür olan :class:`dict` kullanarak :term:`mapping` nesneleri için " +"başka bir örnek. Bu örnekte, fonksiyon :class:`str` türünde anahtarları ve :" +"class:`int` türünde değerleri olan bir ``dict`` bekler::" #: library/stdtypes.rst:4830 msgid "" "The builtin functions :func:`isinstance` and :func:`issubclass` do not " "accept ``GenericAlias`` types for their second argument::" msgstr "" +"Yerleşik :func:`isinstance` ve :func:`issubclass` işlevleri ikinci " +"argümanları için ``GenericAlias`` türlerini kabul etmez::" #: library/stdtypes.rst:4838 msgid "" @@ -5847,24 +5980,35 @@ msgid "" "their type. For example, the following code is discouraged, but will run " "without errors::" msgstr "" +"Python çalışma zamanı :term:`type annotations ` zorlamaz. " +"Bu, genel türlere ve bunların tür parametrelerine kadar uzanır. " +"Bir ``GenericAlias`` türünden bir nesne oluştururken, kapsayıcı elemanlar " +"türlerine göre kontrol edilmez. Örneğin, aşağıdaki kod tavsiye edilmez, " +"ancak hatasız çalışacaktır::" #: library/stdtypes.rst:4848 msgid "" "Furthermore, parameterized generics erase type parameters during object " "creation::" msgstr "" +"Ayrıca, parametrelendirilmiş jenerikler nesne oluşturma sırasında tip " +"parametrelerini siler::" #: library/stdtypes.rst:4859 msgid "" "Calling :func:`repr` or :func:`str` on a generic shows the parameterized " "type::" msgstr "" +"Bir jenerik üzerinde :func:`repr` veya :func:`str` çağrısı " +"parametrelendirilmiş türü gösterir::" #: library/stdtypes.rst:4867 msgid "" "The :meth:`__getitem__` method of generics will raise an exception to " "disallow mistakes like ``dict[str][str]``::" msgstr "" +"Generics'in :meth:`__getitem__` yöntemi, ``dict[str][str]``: gibi hatalara " +"izin vermemek için bir istisna oluşturacaktır:" #: library/stdtypes.rst:4875 msgid "" @@ -5873,14 +6017,20 @@ msgid "" "items in the ``GenericAlias`` object's :attr:`__args__ `. ::" msgstr "" +"Ancak, bu tür ifadeler :ref:`type variables ` kullanıldığında " +"geçerlidir. Dizin, ``GenericAlias`` nesnesinin :attr:`__args__` " +"öğesindeki tür değişkeni öğeleri kadar öğeye sahip olmalıdır `. ::" #: library/stdtypes.rst:4886 msgid "Standard Generic Collections" -msgstr "" +msgstr "Standart Jenerik Koleksiyonlar" #: library/stdtypes.rst:4888 msgid "These standard library collections support parameterized generics." msgstr "" +"Bu standart kütüphane koleksiyonları parametrelendirilmiş jenerikleri " +"destekler." #: library/stdtypes.rst:4890 msgid ":class:`tuple`" From 3f02dd7979bcda7f85332382771468e0a8fa3e6f Mon Sep 17 00:00:00 2001 From: egeakman Date: Tue, 29 Nov 2022 14:33:56 +0300 Subject: [PATCH 37/37] Bump years --- about.po | 2 +- bugs.po | 2 +- c-api/abstract.po | 2 +- c-api/allocation.po | 2 +- c-api/apiabiversion.po | 2 +- c-api/arg.po | 2 +- c-api/bool.po | 2 +- c-api/buffer.po | 2 +- c-api/bytearray.po | 2 +- c-api/bytes.po | 2 +- c-api/call.po | 2 +- c-api/capsule.po | 2 +- c-api/cell.po | 2 +- c-api/code.po | 2 +- c-api/codec.po | 2 +- c-api/complex.po | 2 +- c-api/concrete.po | 2 +- c-api/contextvars.po | 2 +- c-api/conversion.po | 2 +- c-api/coro.po | 2 +- c-api/datetime.po | 2 +- c-api/descriptor.po | 2 +- c-api/dict.po | 2 +- c-api/exceptions.po | 2 +- c-api/file.po | 2 +- c-api/float.po | 2 +- c-api/function.po | 2 +- c-api/gcsupport.po | 2 +- c-api/gen.po | 2 +- c-api/import.po | 2 +- c-api/index.po | 2 +- c-api/init.po | 2 +- c-api/init_config.po | 2 +- c-api/intro.po | 2 +- c-api/iter.po | 2 +- c-api/iterator.po | 2 +- c-api/list.po | 2 +- c-api/long.po | 2 +- c-api/mapping.po | 2 +- c-api/marshal.po | 2 +- c-api/memory.po | 2 +- c-api/memoryview.po | 2 +- c-api/method.po | 2 +- c-api/module.po | 2 +- c-api/none.po | 2 +- c-api/number.po | 2 +- c-api/objbuffer.po | 2 +- c-api/object.po | 2 +- c-api/objimpl.po | 2 +- c-api/refcounting.po | 2 +- c-api/reflection.po | 2 +- c-api/sequence.po | 2 +- c-api/set.po | 2 +- c-api/slice.po | 2 +- c-api/stable.po | 2 +- c-api/structures.po | 2 +- c-api/sys.po | 2 +- c-api/tuple.po | 2 +- c-api/type.po | 2 +- c-api/typehints.po | 2 +- c-api/typeobj.po | 2 +- c-api/unicode.po | 2 +- c-api/utilities.po | 2 +- c-api/veryhigh.po | 2 +- c-api/weakref.po | 2 +- contents.po | 2 +- copyright.po | 2 +- distributing/index.po | 2 +- distutils/_setuptools_disclaimer.po | 2 +- distutils/apiref.po | 2 +- distutils/builtdist.po | 2 +- distutils/commandref.po | 2 +- distutils/configfile.po | 2 +- distutils/examples.po | 2 +- distutils/extending.po | 2 +- distutils/index.po | 2 +- distutils/introduction.po | 2 +- distutils/packageindex.po | 2 +- distutils/setupscript.po | 2 +- distutils/sourcedist.po | 2 +- distutils/uploading.po | 2 +- extending/building.po | 2 +- extending/embedding.po | 2 +- extending/extending.po | 2 +- extending/index.po | 2 +- extending/newtypes.po | 2 +- extending/newtypes_tutorial.po | 2 +- extending/windows.po | 2 +- faq/design.po | 2 +- faq/extending.po | 2 +- faq/general.po | 2 +- faq/gui.po | 2 +- faq/index.po | 2 +- faq/installed.po | 2 +- faq/library.po | 2 +- faq/programming.po | 2 +- faq/windows.po | 2 +- glossary.po | 2 +- howto/annotations.po | 2 +- howto/argparse.po | 2 +- howto/clinic.po | 2 +- howto/cporting.po | 2 +- howto/curses.po | 2 +- howto/descriptor.po | 2 +- howto/functional.po | 2 +- howto/index.po | 2 +- howto/instrumentation.po | 2 +- howto/ipaddress.po | 2 +- howto/logging-cookbook.po | 2 +- howto/logging.po | 2 +- howto/pyporting.po | 2 +- howto/regex.po | 2 +- howto/sockets.po | 2 +- howto/sorting.po | 2 +- howto/unicode.po | 2 +- howto/urllib2.po | 2 +- install/index.po | 2 +- installing/index.po | 2 +- library/2to3.po | 2 +- library/__future__.po | 2 +- library/__main__.po | 2 +- library/_thread.po | 2 +- library/abc.po | 2 +- library/aifc.po | 2 +- library/allos.po | 2 +- library/archiving.po | 2 +- library/argparse.po | 2 +- library/array.po | 2 +- library/ast.po | 2 +- library/asynchat.po | 2 +- library/asyncio-api-index.po | 2 +- library/asyncio-dev.po | 2 +- library/asyncio-eventloop.po | 2 +- library/asyncio-exceptions.po | 2 +- library/asyncio-future.po | 2 +- library/asyncio-llapi-index.po | 2 +- library/asyncio-platforms.po | 2 +- library/asyncio-policy.po | 2 +- library/asyncio-protocol.po | 2 +- library/asyncio-queue.po | 2 +- library/asyncio-stream.po | 2 +- library/asyncio-subprocess.po | 2 +- library/asyncio-sync.po | 2 +- library/asyncio-task.po | 2 +- library/asyncio.po | 2 +- library/asyncore.po | 2 +- library/atexit.po | 2 +- library/audioop.po | 2 +- library/audit_events.po | 2 +- library/base64.po | 2 +- library/bdb.po | 2 +- library/binary.po | 2 +- library/binascii.po | 2 +- library/binhex.po | 2 +- library/bisect.po | 2 +- library/builtins.po | 2 +- library/bz2.po | 2 +- library/calendar.po | 2 +- library/cgi.po | 2 +- library/cgitb.po | 2 +- library/chunk.po | 2 +- library/cmath.po | 2 +- library/cmd.po | 2 +- library/code.po | 2 +- library/codecs.po | 2 +- library/codeop.po | 2 +- library/collections.abc.po | 2 +- library/collections.po | 2 +- library/colorsys.po | 2 +- library/compileall.po | 2 +- library/concurrency.po | 2 +- library/concurrent.futures.po | 2 +- library/concurrent.po | 2 +- library/configparser.po | 2 +- library/constants.po | 2 +- library/contextlib.po | 2 +- library/contextvars.po | 2 +- library/copy.po | 2 +- library/copyreg.po | 2 +- library/crypt.po | 2 +- library/crypto.po | 2 +- library/csv.po | 2 +- library/ctypes.po | 2 +- library/curses.ascii.po | 2 +- library/curses.panel.po | 2 +- library/curses.po | 2 +- library/custominterp.po | 2 +- library/dataclasses.po | 2 +- library/datatypes.po | 2 +- library/datetime.po | 2 +- library/dbm.po | 2 +- library/debug.po | 2 +- library/decimal.po | 2 +- library/development.po | 2 +- library/devmode.po | 2 +- library/dialog.po | 2 +- library/difflib.po | 2 +- library/dis.po | 2 +- library/distribution.po | 2 +- library/distutils.po | 2 +- library/doctest.po | 2 +- library/email.charset.po | 2 +- library/email.compat32-message.po | 2 +- library/email.contentmanager.po | 2 +- library/email.encoders.po | 2 +- library/email.errors.po | 2 +- library/email.examples.po | 2 +- library/email.generator.po | 2 +- library/email.header.po | 2 +- library/email.headerregistry.po | 2 +- library/email.iterators.po | 2 +- library/email.message.po | 2 +- library/email.mime.po | 2 +- library/email.parser.po | 2 +- library/email.po | 2 +- library/email.policy.po | 2 +- library/email.utils.po | 2 +- library/ensurepip.po | 2 +- library/enum.po | 2 +- library/errno.po | 2 +- library/exceptions.po | 2 +- library/faulthandler.po | 2 +- library/fcntl.po | 2 +- library/filecmp.po | 2 +- library/fileformats.po | 2 +- library/fileinput.po | 2 +- library/filesys.po | 2 +- library/fnmatch.po | 2 +- library/fractions.po | 2 +- library/frameworks.po | 2 +- library/ftplib.po | 2 +- library/functional.po | 2 +- library/functions.po | 2 +- library/functools.po | 2 +- library/gc.po | 2 +- library/getopt.po | 2 +- library/getpass.po | 2 +- library/gettext.po | 2 +- library/glob.po | 2 +- library/graphlib.po | 2 +- library/grp.po | 2 +- library/gzip.po | 2 +- library/hashlib.po | 2 +- library/heapq.po | 2 +- library/hmac.po | 2 +- library/html.entities.po | 2 +- library/html.parser.po | 2 +- library/html.po | 2 +- library/http.client.po | 2 +- library/http.cookiejar.po | 2 +- library/http.cookies.po | 2 +- library/http.po | 2 +- library/http.server.po | 2 +- library/i18n.po | 2 +- library/idle.po | 2 +- library/imaplib.po | 2 +- library/imghdr.po | 2 +- library/imp.po | 2 +- library/importlib.metadata.po | 2 +- library/importlib.po | 2 +- library/index.po | 2 +- library/inspect.po | 2 +- library/internet.po | 2 +- library/intro.po | 2 +- library/io.po | 2 +- library/ipaddress.po | 2 +- library/ipc.po | 2 +- library/itertools.po | 2 +- library/json.po | 2 +- library/keyword.po | 2 +- library/language.po | 2 +- library/linecache.po | 2 +- library/locale.po | 2 +- library/logging.config.po | 2 +- library/logging.handlers.po | 2 +- library/logging.po | 2 +- library/lzma.po | 2 +- library/mailbox.po | 2 +- library/mailcap.po | 2 +- library/markup.po | 2 +- library/marshal.po | 2 +- library/math.po | 2 +- library/mimetypes.po | 2 +- library/mm.po | 2 +- library/mmap.po | 2 +- library/modulefinder.po | 2 +- library/modules.po | 2 +- library/msilib.po | 2 +- library/msvcrt.po | 2 +- library/multiprocessing.po | 2 +- library/multiprocessing.shared_memory.po | 2 +- library/netdata.po | 2 +- library/netrc.po | 2 +- library/nis.po | 2 +- library/nntplib.po | 2 +- library/numbers.po | 2 +- library/numeric.po | 2 +- library/operator.po | 2 +- library/optparse.po | 2 +- library/os.path.po | 2 +- library/os.po | 2 +- library/ossaudiodev.po | 2 +- library/pathlib.po | 2 +- library/pdb.po | 2 +- library/persistence.po | 2 +- library/pickle.po | 2 +- library/pickletools.po | 2 +- library/pipes.po | 2 +- library/pkgutil.po | 2 +- library/platform.po | 2 +- library/plistlib.po | 2 +- library/poplib.po | 2 +- library/posix.po | 2 +- library/pprint.po | 2 +- library/profile.po | 2 +- library/pty.po | 2 +- library/pwd.po | 2 +- library/py_compile.po | 2 +- library/pyclbr.po | 2 +- library/pydoc.po | 2 +- library/pyexpat.po | 2 +- library/python.po | 2 +- library/queue.po | 2 +- library/quopri.po | 2 +- library/random.po | 2 +- library/re.po | 2 +- library/readline.po | 2 +- library/reprlib.po | 2 +- library/resource.po | 2 +- library/rlcompleter.po | 2 +- library/runpy.po | 2 +- library/sched.po | 2 +- library/secrets.po | 2 +- library/security_warnings.po | 2 +- library/select.po | 2 +- library/selectors.po | 2 +- library/shelve.po | 2 +- library/shlex.po | 2 +- library/shutil.po | 2 +- library/signal.po | 2 +- library/site.po | 2 +- library/smtpd.po | 2 +- library/smtplib.po | 2 +- library/sndhdr.po | 2 +- library/socket.po | 2 +- library/socketserver.po | 2 +- library/spwd.po | 2 +- library/sqlite3.po | 2 +- library/ssl.po | 2 +- library/stat.po | 2 +- library/statistics.po | 2 +- library/stdtypes.po | 2 +- library/string.po | 2 +- library/stringprep.po | 2 +- library/struct.po | 2 +- library/subprocess.po | 2 +- library/sunau.po | 2 +- library/superseded.po | 2 +- library/symtable.po | 2 +- library/sys.po | 2 +- library/sysconfig.po | 2 +- library/syslog.po | 2 +- library/tabnanny.po | 2 +- library/tarfile.po | 2 +- library/telnetlib.po | 2 +- library/tempfile.po | 2 +- library/termios.po | 2 +- library/test.po | 2 +- library/text.po | 2 +- library/textwrap.po | 2 +- library/threading.po | 2 +- library/time.po | 2 +- library/timeit.po | 2 +- library/tk.po | 2 +- library/tkinter.colorchooser.po | 2 +- library/tkinter.dnd.po | 2 +- library/tkinter.font.po | 2 +- library/tkinter.messagebox.po | 2 +- library/tkinter.po | 2 +- library/tkinter.scrolledtext.po | 2 +- library/tkinter.tix.po | 2 +- library/tkinter.ttk.po | 2 +- library/token.po | 2 +- library/tokenize.po | 2 +- library/trace.po | 2 +- library/traceback.po | 2 +- library/tracemalloc.po | 2 +- library/tty.po | 2 +- library/turtle.po | 2 +- library/types.po | 2 +- library/typing.po | 2 +- library/undoc.po | 2 +- library/unicodedata.po | 2 +- library/unittest.mock-examples.po | 2 +- library/unittest.mock.po | 2 +- library/unittest.po | 2 +- library/unix.po | 2 +- library/urllib.error.po | 2 +- library/urllib.parse.po | 2 +- library/urllib.po | 2 +- library/urllib.request.po | 2 +- library/urllib.robotparser.po | 2 +- library/uu.po | 2 +- library/uuid.po | 2 +- library/venv.po | 2 +- library/warnings.po | 2 +- library/wave.po | 2 +- library/weakref.po | 2 +- library/webbrowser.po | 2 +- library/windows.po | 2 +- library/winreg.po | 2 +- library/winsound.po | 2 +- library/wsgiref.po | 2 +- library/xdrlib.po | 2 +- library/xml.dom.minidom.po | 2 +- library/xml.dom.po | 2 +- library/xml.dom.pulldom.po | 2 +- library/xml.etree.elementtree.po | 2 +- library/xml.po | 2 +- library/xml.sax.handler.po | 2 +- library/xml.sax.po | 2 +- library/xml.sax.reader.po | 2 +- library/xml.sax.utils.po | 2 +- library/xmlrpc.client.po | 2 +- library/xmlrpc.po | 2 +- library/xmlrpc.server.po | 2 +- library/zipapp.po | 2 +- library/zipfile.po | 2 +- library/zipimport.po | 2 +- library/zlib.po | 2 +- library/zoneinfo.po | 2 +- license.po | 2 +- reference/compound_stmts.po | 2 +- reference/datamodel.po | 2 +- reference/executionmodel.po | 2 +- reference/expressions.po | 2 +- reference/grammar.po | 2 +- reference/import.po | 2 +- reference/index.po | 2 +- reference/introduction.po | 2 +- reference/lexical_analysis.po | 2 +- reference/simple_stmts.po | 2 +- reference/toplevel_components.po | 2 +- sphinx.po | 2 +- tutorial/appendix.po | 2 +- tutorial/appetite.po | 2 +- tutorial/classes.po | 2 +- tutorial/controlflow.po | 2 +- tutorial/datastructures.po | 2 +- tutorial/errors.po | 2 +- tutorial/floatingpoint.po | 2 +- tutorial/index.po | 2 +- tutorial/inputoutput.po | 2 +- tutorial/interactive.po | 2 +- tutorial/interpreter.po | 2 +- tutorial/introduction.po | 2 +- tutorial/modules.po | 2 +- tutorial/stdlib.po | 2 +- tutorial/stdlib2.po | 2 +- tutorial/venv.po | 2 +- tutorial/whatnow.po | 2 +- using/cmdline.po | 2 +- using/configure.po | 2 +- using/editors.po | 2 +- using/index.po | 2 +- using/mac.po | 2 +- using/unix.po | 2 +- using/windows.po | 2 +- whatsnew/2.0.po | 2 +- whatsnew/2.1.po | 2 +- whatsnew/2.2.po | 2 +- whatsnew/2.3.po | 2 +- whatsnew/2.4.po | 2 +- whatsnew/2.5.po | 2 +- whatsnew/2.6.po | 2 +- whatsnew/2.7.po | 2 +- whatsnew/3.0.po | 2 +- whatsnew/3.1.po | 2 +- whatsnew/3.10.po | 2 +- whatsnew/3.2.po | 2 +- whatsnew/3.3.po | 2 +- whatsnew/3.4.po | 2 +- whatsnew/3.5.po | 2 +- whatsnew/3.6.po | 2 +- whatsnew/3.7.po | 2 +- whatsnew/3.8.po | 2 +- whatsnew/3.9.po | 2 +- whatsnew/changelog.po | 2 +- whatsnew/index.po | 2 +- 489 files changed, 489 insertions(+), 489 deletions(-) diff --git a/about.po b/about.po index 8b5b6e5af..a52dbe5e2 100644 --- a/about.po +++ b/about.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/bugs.po b/bugs.po index 9dae7c2f1..1c49be9ef 100644 --- a/bugs.po +++ b/bugs.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/c-api/abstract.po b/c-api/abstract.po index 323ea0c21..489b863da 100644 --- a/c-api/abstract.po +++ b/c-api/abstract.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/allocation.po b/c-api/allocation.po index 89f00b45f..373f14f9a 100644 --- a/c-api/allocation.po +++ b/c-api/allocation.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/apiabiversion.po b/c-api/apiabiversion.po index 78371911f..ad2867a7f 100644 --- a/c-api/apiabiversion.po +++ b/c-api/apiabiversion.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/arg.po b/c-api/arg.po index 36b168c2d..90c464e0a 100644 --- a/c-api/arg.po +++ b/c-api/arg.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/bool.po b/c-api/bool.po index 2bf83d277..9f2c3b2dd 100644 --- a/c-api/bool.po +++ b/c-api/bool.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/buffer.po b/c-api/buffer.po index 511a77fce..cacb60093 100644 --- a/c-api/buffer.po +++ b/c-api/buffer.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/bytearray.po b/c-api/bytearray.po index b2951054e..71652467a 100644 --- a/c-api/bytearray.po +++ b/c-api/bytearray.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/bytes.po b/c-api/bytes.po index b761d9a1c..862ba4c0d 100644 --- a/c-api/bytes.po +++ b/c-api/bytes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/call.po b/c-api/call.po index 2c48c1849..703a03c5a 100644 --- a/c-api/call.po +++ b/c-api/call.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/capsule.po b/c-api/capsule.po index ef0ae478b..6a95441e6 100644 --- a/c-api/capsule.po +++ b/c-api/capsule.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/cell.po b/c-api/cell.po index 32af023b0..b38c80d59 100644 --- a/c-api/cell.po +++ b/c-api/cell.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/code.po b/c-api/code.po index 0eb961ae9..c2d23ba4d 100644 --- a/c-api/code.po +++ b/c-api/code.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/codec.po b/c-api/codec.po index 3e237a46f..ab1eff6db 100644 --- a/c-api/codec.po +++ b/c-api/codec.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/complex.po b/c-api/complex.po index c93fc2b91..7a649d938 100644 --- a/c-api/complex.po +++ b/c-api/complex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/concrete.po b/c-api/concrete.po index 46c6a4014..fe2c0e7f6 100644 --- a/c-api/concrete.po +++ b/c-api/concrete.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/contextvars.po b/c-api/contextvars.po index 6d83d7a9a..c1b83a450 100644 --- a/c-api/contextvars.po +++ b/c-api/contextvars.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/conversion.po b/c-api/conversion.po index 82dbf434b..d781c17a9 100644 --- a/c-api/conversion.po +++ b/c-api/conversion.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/coro.po b/c-api/coro.po index 8971fdc0f..cf5354a8c 100644 --- a/c-api/coro.po +++ b/c-api/coro.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/datetime.po b/c-api/datetime.po index 0e2e1f38d..af538f448 100644 --- a/c-api/datetime.po +++ b/c-api/datetime.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/descriptor.po b/c-api/descriptor.po index affb4a46f..b10e1356b 100644 --- a/c-api/descriptor.po +++ b/c-api/descriptor.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/dict.po b/c-api/dict.po index 7aaf4e31e..00d0cb898 100644 --- a/c-api/dict.po +++ b/c-api/dict.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/exceptions.po b/c-api/exceptions.po index 326faec6d..e67f55b31 100644 --- a/c-api/exceptions.po +++ b/c-api/exceptions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/file.po b/c-api/file.po index 9b55ebe1b..0b742736e 100644 --- a/c-api/file.po +++ b/c-api/file.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/float.po b/c-api/float.po index 8562d8a88..0b59e7c49 100644 --- a/c-api/float.po +++ b/c-api/float.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/function.po b/c-api/function.po index cc1acd9e4..49eb04195 100644 --- a/c-api/function.po +++ b/c-api/function.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/gcsupport.po b/c-api/gcsupport.po index 14731fe3e..0216de318 100644 --- a/c-api/gcsupport.po +++ b/c-api/gcsupport.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/gen.po b/c-api/gen.po index e830a8221..df1be9147 100644 --- a/c-api/gen.po +++ b/c-api/gen.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/import.po b/c-api/import.po index ec0b39df7..82201c986 100644 --- a/c-api/import.po +++ b/c-api/import.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/index.po b/c-api/index.po index d4f7b738f..d18a20208 100644 --- a/c-api/index.po +++ b/c-api/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/init.po b/c-api/init.po index cc4b44714..4cf1ac26b 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/init_config.po b/c-api/init_config.po index b94bc543a..06cefd722 100644 --- a/c-api/init_config.po +++ b/c-api/init_config.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/intro.po b/c-api/intro.po index 81e38cf72..0067b6006 100644 --- a/c-api/intro.po +++ b/c-api/intro.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/iter.po b/c-api/iter.po index 19534dc13..f41a08a08 100644 --- a/c-api/iter.po +++ b/c-api/iter.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/iterator.po b/c-api/iterator.po index 7d63e3c57..9f0974413 100644 --- a/c-api/iterator.po +++ b/c-api/iterator.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/list.po b/c-api/list.po index 8e9c58497..c9b4bfb7b 100644 --- a/c-api/list.po +++ b/c-api/list.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/long.po b/c-api/long.po index ec8cfbc86..06355cdbc 100644 --- a/c-api/long.po +++ b/c-api/long.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/mapping.po b/c-api/mapping.po index 187bebcf8..afeb86711 100644 --- a/c-api/mapping.po +++ b/c-api/mapping.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/marshal.po b/c-api/marshal.po index 32c86f196..11ce6341d 100644 --- a/c-api/marshal.po +++ b/c-api/marshal.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/memory.po b/c-api/memory.po index a1a3b3066..913334821 100644 --- a/c-api/memory.po +++ b/c-api/memory.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/memoryview.po b/c-api/memoryview.po index 873b9f6c9..bc13071e6 100644 --- a/c-api/memoryview.po +++ b/c-api/memoryview.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/method.po b/c-api/method.po index 1e5f86165..51010fc0b 100644 --- a/c-api/method.po +++ b/c-api/method.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/module.po b/c-api/module.po index bce705c82..627b677dc 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/none.po b/c-api/none.po index 5b69e7f83..bf435d6d4 100644 --- a/c-api/none.po +++ b/c-api/none.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/number.po b/c-api/number.po index 375bd1e94..6fcde76ef 100644 --- a/c-api/number.po +++ b/c-api/number.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/objbuffer.po b/c-api/objbuffer.po index c378b998c..a1580805c 100644 --- a/c-api/objbuffer.po +++ b/c-api/objbuffer.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/object.po b/c-api/object.po index a0708ec5e..91f7f6c7b 100644 --- a/c-api/object.po +++ b/c-api/object.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/objimpl.po b/c-api/objimpl.po index 766bdcfe1..d8bf6cf38 100644 --- a/c-api/objimpl.po +++ b/c-api/objimpl.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/refcounting.po b/c-api/refcounting.po index ae97db6ff..ca1a1db66 100644 --- a/c-api/refcounting.po +++ b/c-api/refcounting.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/reflection.po b/c-api/reflection.po index fa3cf1b7e..dba86d964 100644 --- a/c-api/reflection.po +++ b/c-api/reflection.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/sequence.po b/c-api/sequence.po index 8dd0fe380..583ccb7d7 100644 --- a/c-api/sequence.po +++ b/c-api/sequence.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/set.po b/c-api/set.po index 0e4bf3108..64dfd3adb 100644 --- a/c-api/set.po +++ b/c-api/set.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/slice.po b/c-api/slice.po index a2fafa7df..424e5f6b9 100644 --- a/c-api/slice.po +++ b/c-api/slice.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/stable.po b/c-api/stable.po index d6d11f035..9d4427507 100644 --- a/c-api/stable.po +++ b/c-api/stable.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/structures.po b/c-api/structures.po index 269c2259d..f34e7dff5 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/sys.po b/c-api/sys.po index 166c56a5c..2e4a708d3 100644 --- a/c-api/sys.po +++ b/c-api/sys.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/tuple.po b/c-api/tuple.po index de7699ebe..44cc5e079 100644 --- a/c-api/tuple.po +++ b/c-api/tuple.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/type.po b/c-api/type.po index 90d8358b2..3d1142340 100644 --- a/c-api/type.po +++ b/c-api/type.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/typehints.po b/c-api/typehints.po index 3a7224542..e9f1853fd 100644 --- a/c-api/typehints.po +++ b/c-api/typehints.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/typeobj.po b/c-api/typeobj.po index a77157765..6043b76f7 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/unicode.po b/c-api/unicode.po index 285aa76fc..942dc2b6f 100644 --- a/c-api/unicode.po +++ b/c-api/unicode.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/utilities.po b/c-api/utilities.po index 57104cb2b..638b2e656 100644 --- a/c-api/utilities.po +++ b/c-api/utilities.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/veryhigh.po b/c-api/veryhigh.po index 48896f9b9..9ee8d7995 100644 --- a/c-api/veryhigh.po +++ b/c-api/veryhigh.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/weakref.po b/c-api/weakref.po index 3b2bb8303..ce966cc18 100644 --- a/c-api/weakref.po +++ b/c-api/weakref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/contents.po b/contents.po index 9a69b157a..9d1cd977f 100644 --- a/contents.po +++ b/contents.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/copyright.po b/copyright.po index 6d26a069c..7a0c93290 100644 --- a/copyright.po +++ b/copyright.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/distributing/index.po b/distributing/index.po index 8e02b432d..883420153 100644 --- a/distributing/index.po +++ b/distributing/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/distutils/_setuptools_disclaimer.po b/distutils/_setuptools_disclaimer.po index 70e38dbad..c812b2d4e 100644 --- a/distutils/_setuptools_disclaimer.po +++ b/distutils/_setuptools_disclaimer.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/apiref.po b/distutils/apiref.po index 00a734246..706019df4 100644 --- a/distutils/apiref.po +++ b/distutils/apiref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/builtdist.po b/distutils/builtdist.po index 20216829e..1b52a3edc 100644 --- a/distutils/builtdist.po +++ b/distutils/builtdist.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/commandref.po b/distutils/commandref.po index 9be25c00a..7db008085 100644 --- a/distutils/commandref.po +++ b/distutils/commandref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/configfile.po b/distutils/configfile.po index eeaed467d..5e8f1fd45 100644 --- a/distutils/configfile.po +++ b/distutils/configfile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/examples.po b/distutils/examples.po index 0273e9175..cf2afeb84 100644 --- a/distutils/examples.po +++ b/distutils/examples.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/extending.po b/distutils/extending.po index f78d86687..0d27f4a7a 100644 --- a/distutils/extending.po +++ b/distutils/extending.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/index.po b/distutils/index.po index 41e1d49bc..8a3e3fc79 100644 --- a/distutils/index.po +++ b/distutils/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/distutils/introduction.po b/distutils/introduction.po index 158d58c79..2dd50256b 100644 --- a/distutils/introduction.po +++ b/distutils/introduction.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/packageindex.po b/distutils/packageindex.po index 9b91d939a..eb7b05fa6 100644 --- a/distutils/packageindex.po +++ b/distutils/packageindex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/setupscript.po b/distutils/setupscript.po index d73834424..2dd6d31ae 100644 --- a/distutils/setupscript.po +++ b/distutils/setupscript.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/sourcedist.po b/distutils/sourcedist.po index 8f6a7a6f5..d476cd875 100644 --- a/distutils/sourcedist.po +++ b/distutils/sourcedist.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/distutils/uploading.po b/distutils/uploading.po index 79ff2b4d6..90c8da1d9 100644 --- a/distutils/uploading.po +++ b/distutils/uploading.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/extending/building.po b/extending/building.po index 54392acb8..ba01f5afb 100644 --- a/extending/building.po +++ b/extending/building.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/extending/embedding.po b/extending/embedding.po index 75849b8ab..b69c83536 100644 --- a/extending/embedding.po +++ b/extending/embedding.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/extending/extending.po b/extending/extending.po index 354704396..b380e9fad 100644 --- a/extending/extending.po +++ b/extending/extending.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/extending/index.po b/extending/index.po index e5d43570a..2f7b79074 100644 --- a/extending/index.po +++ b/extending/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/extending/newtypes.po b/extending/newtypes.po index 005d0ba22..b96f98013 100644 --- a/extending/newtypes.po +++ b/extending/newtypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/extending/newtypes_tutorial.po b/extending/newtypes_tutorial.po index 78ec3a4cf..ac03fdd75 100644 --- a/extending/newtypes_tutorial.po +++ b/extending/newtypes_tutorial.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/extending/windows.po b/extending/windows.po index d7c73b2e5..0a4bacd80 100644 --- a/extending/windows.po +++ b/extending/windows.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/faq/design.po b/faq/design.po index 9e3f398ca..99d714988 100644 --- a/faq/design.po +++ b/faq/design.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/faq/extending.po b/faq/extending.po index 4d8c4506f..844a773ad 100644 --- a/faq/extending.po +++ b/faq/extending.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/faq/general.po b/faq/general.po index 43a7ee9c3..d0abaf8f9 100644 --- a/faq/general.po +++ b/faq/general.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/faq/gui.po b/faq/gui.po index e95f1ee4a..630adb764 100644 --- a/faq/gui.po +++ b/faq/gui.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/faq/index.po b/faq/index.po index b63bd9668..14280161a 100644 --- a/faq/index.po +++ b/faq/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/faq/installed.po b/faq/installed.po index 6da6e6d4d..5fba5e25f 100644 --- a/faq/installed.po +++ b/faq/installed.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/faq/library.po b/faq/library.po index 8b058e358..4a27531db 100644 --- a/faq/library.po +++ b/faq/library.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/faq/programming.po b/faq/programming.po index d11eedf84..f752114ef 100644 --- a/faq/programming.po +++ b/faq/programming.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/faq/windows.po b/faq/windows.po index 4f4c5371b..9d35ba717 100644 --- a/faq/windows.po +++ b/faq/windows.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/glossary.po b/glossary.po index a3a9d20a7..e69c2641b 100644 --- a/glossary.po +++ b/glossary.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/annotations.po b/howto/annotations.po index 9d77eaa00..2c3105ff7 100644 --- a/howto/annotations.po +++ b/howto/annotations.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/argparse.po b/howto/argparse.po index 3a4073d52..3bbc221cd 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/clinic.po b/howto/clinic.po index c6cab35df..258a061bc 100644 --- a/howto/clinic.po +++ b/howto/clinic.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/cporting.po b/howto/cporting.po index 1e7c2a455..7067f393b 100644 --- a/howto/cporting.po +++ b/howto/cporting.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/curses.po b/howto/curses.po index d93dd007c..0de2b34a4 100644 --- a/howto/curses.po +++ b/howto/curses.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/descriptor.po b/howto/descriptor.po index 40af10546..00db13d88 100644 --- a/howto/descriptor.po +++ b/howto/descriptor.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/functional.po b/howto/functional.po index ca5972072..7de58036a 100644 --- a/howto/functional.po +++ b/howto/functional.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/index.po b/howto/index.po index af4aa0cb4..d08aa298d 100644 --- a/howto/index.po +++ b/howto/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/instrumentation.po b/howto/instrumentation.po index 02f66b92b..28515ec24 100644 --- a/howto/instrumentation.po +++ b/howto/instrumentation.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/ipaddress.po b/howto/ipaddress.po index 83ff7081d..ca5518de0 100644 --- a/howto/ipaddress.po +++ b/howto/ipaddress.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index 489b52cc2..96f8fd092 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/logging.po b/howto/logging.po index 19226b329..bffe7dde4 100644 --- a/howto/logging.po +++ b/howto/logging.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/pyporting.po b/howto/pyporting.po index 3767d3e22..27c93a38c 100644 --- a/howto/pyporting.po +++ b/howto/pyporting.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/regex.po b/howto/regex.po index 4ddf44bba..0bb71efe3 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/sockets.po b/howto/sockets.po index c8680d3f9..cea5d990d 100644 --- a/howto/sockets.po +++ b/howto/sockets.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/sorting.po b/howto/sorting.po index 32df1a46a..6d374ef49 100644 --- a/howto/sorting.po +++ b/howto/sorting.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/unicode.po b/howto/unicode.po index 1a45f03fd..1896659a0 100644 --- a/howto/unicode.po +++ b/howto/unicode.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/urllib2.po b/howto/urllib2.po index c6eab5fd8..187d11e84 100644 --- a/howto/urllib2.po +++ b/howto/urllib2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/install/index.po b/install/index.po index 7da8015bf..d53567170 100644 --- a/install/index.po +++ b/install/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/installing/index.po b/installing/index.po index 734de0c8f..07cd612bc 100644 --- a/installing/index.po +++ b/installing/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/2to3.po b/library/2to3.po index 79f27b761..4549daa2d 100644 --- a/library/2to3.po +++ b/library/2to3.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/__future__.po b/library/__future__.po index 5da30ac10..fcefbdbd9 100644 --- a/library/__future__.po +++ b/library/__future__.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/__main__.po b/library/__main__.po index 779230b63..f4701e454 100644 --- a/library/__main__.po +++ b/library/__main__.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/_thread.po b/library/_thread.po index f9565e7b3..9d751d4a9 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/abc.po b/library/abc.po index c39a2c380..9e225a6af 100644 --- a/library/abc.po +++ b/library/abc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/aifc.po b/library/aifc.po index 5da06fd08..4cba0a4a0 100644 --- a/library/aifc.po +++ b/library/aifc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/allos.po b/library/allos.po index eee0f46b5..751c44cc4 100644 --- a/library/allos.po +++ b/library/allos.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/archiving.po b/library/archiving.po index 34afc0124..e621a3624 100644 --- a/library/archiving.po +++ b/library/archiving.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/argparse.po b/library/argparse.po index a1fb57cde..5bb6b7e00 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/array.po b/library/array.po index 43a0fc5df..b210b8024 100644 --- a/library/array.po +++ b/library/array.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/ast.po b/library/ast.po index a3b1c77a5..0cc318404 100644 --- a/library/ast.po +++ b/library/ast.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asynchat.po b/library/asynchat.po index 767aa23cd..932479253 100644 --- a/library/asynchat.po +++ b/library/asynchat.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-api-index.po b/library/asyncio-api-index.po index e2d80583d..19b1b0ab6 100644 --- a/library/asyncio-api-index.po +++ b/library/asyncio-api-index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-dev.po b/library/asyncio-dev.po index e9aea6641..8e613aa78 100644 --- a/library/asyncio-dev.po +++ b/library/asyncio-dev.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-eventloop.po b/library/asyncio-eventloop.po index c4b42d7ed..6e73ff250 100644 --- a/library/asyncio-eventloop.po +++ b/library/asyncio-eventloop.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-exceptions.po b/library/asyncio-exceptions.po index 145d579d6..9eb00bc13 100644 --- a/library/asyncio-exceptions.po +++ b/library/asyncio-exceptions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-future.po b/library/asyncio-future.po index 4c0f6d26e..21687c31d 100644 --- a/library/asyncio-future.po +++ b/library/asyncio-future.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-llapi-index.po b/library/asyncio-llapi-index.po index 8a0ba547a..8b47ca546 100644 --- a/library/asyncio-llapi-index.po +++ b/library/asyncio-llapi-index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-platforms.po b/library/asyncio-platforms.po index f2eecceed..982e5355c 100644 --- a/library/asyncio-platforms.po +++ b/library/asyncio-platforms.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-policy.po b/library/asyncio-policy.po index 101cd3f93..3df56cb54 100644 --- a/library/asyncio-policy.po +++ b/library/asyncio-policy.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-protocol.po b/library/asyncio-protocol.po index c5049ac77..ce8e8c679 100644 --- a/library/asyncio-protocol.po +++ b/library/asyncio-protocol.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-queue.po b/library/asyncio-queue.po index 57ffda953..df9cbac48 100644 --- a/library/asyncio-queue.po +++ b/library/asyncio-queue.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index 5af1a2ca2..37e54c0d1 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-subprocess.po b/library/asyncio-subprocess.po index 65a9ab198..1f88c1d82 100644 --- a/library/asyncio-subprocess.po +++ b/library/asyncio-subprocess.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-sync.po b/library/asyncio-sync.po index 0796a4817..2746484f5 100644 --- a/library/asyncio-sync.po +++ b/library/asyncio-sync.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-task.po b/library/asyncio-task.po index 197cfa975..e27f2b56f 100644 --- a/library/asyncio-task.po +++ b/library/asyncio-task.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio.po b/library/asyncio.po index 6b356562b..247bebbd2 100644 --- a/library/asyncio.po +++ b/library/asyncio.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncore.po b/library/asyncore.po index 44642e248..1c7cbb02e 100644 --- a/library/asyncore.po +++ b/library/asyncore.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/atexit.po b/library/atexit.po index c7dd74082..e65b40d10 100644 --- a/library/atexit.po +++ b/library/atexit.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/audioop.po b/library/audioop.po index 03b400c94..0983cb507 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/audit_events.po b/library/audit_events.po index d307fe409..d22f5e894 100644 --- a/library/audit_events.po +++ b/library/audit_events.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/base64.po b/library/base64.po index 541e31f9b..f840ae7a6 100644 --- a/library/base64.po +++ b/library/base64.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/bdb.po b/library/bdb.po index 44a4a4cf0..c1d3d2000 100644 --- a/library/bdb.po +++ b/library/bdb.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/binary.po b/library/binary.po index b6755527e..3ebaf2d01 100644 --- a/library/binary.po +++ b/library/binary.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/binascii.po b/library/binascii.po index 4a3e3a4e6..7a2422959 100644 --- a/library/binascii.po +++ b/library/binascii.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/binhex.po b/library/binhex.po index 4d8e7f411..b3f881770 100644 --- a/library/binhex.po +++ b/library/binhex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/bisect.po b/library/bisect.po index 9b751ef0d..93ea27d7c 100644 --- a/library/bisect.po +++ b/library/bisect.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/builtins.po b/library/builtins.po index e1f8939cd..10e8f7476 100644 --- a/library/builtins.po +++ b/library/builtins.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/bz2.po b/library/bz2.po index 2e5717e0b..d31066787 100644 --- a/library/bz2.po +++ b/library/bz2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/calendar.po b/library/calendar.po index 182290756..a4e98d403 100644 --- a/library/calendar.po +++ b/library/calendar.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/cgi.po b/library/cgi.po index f6872b04d..429f62930 100644 --- a/library/cgi.po +++ b/library/cgi.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/cgitb.po b/library/cgitb.po index 37579ce75..c06bb6bf4 100644 --- a/library/cgitb.po +++ b/library/cgitb.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/chunk.po b/library/chunk.po index 6ba6c22ed..742a01bd0 100644 --- a/library/chunk.po +++ b/library/chunk.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/cmath.po b/library/cmath.po index c3f77e0a1..5b96fb0c9 100644 --- a/library/cmath.po +++ b/library/cmath.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/cmd.po b/library/cmd.po index 666867c85..96bc82be2 100644 --- a/library/cmd.po +++ b/library/cmd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/code.po b/library/code.po index 8fb2595ff..e9c5297ff 100644 --- a/library/code.po +++ b/library/code.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/codecs.po b/library/codecs.po index c3f13871a..43a1ed51e 100644 --- a/library/codecs.po +++ b/library/codecs.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/codeop.po b/library/codeop.po index 050db9d4d..8d061a82f 100644 --- a/library/codeop.po +++ b/library/codeop.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/collections.abc.po b/library/collections.abc.po index 9b8b42867..24a00a810 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/collections.po b/library/collections.po index 1ae5eb29a..2e117dd51 100644 --- a/library/collections.po +++ b/library/collections.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/colorsys.po b/library/colorsys.po index 939c8d63d..dfe013822 100644 --- a/library/colorsys.po +++ b/library/colorsys.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/compileall.po b/library/compileall.po index c7cfdead9..9cff0df40 100644 --- a/library/compileall.po +++ b/library/compileall.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/concurrency.po b/library/concurrency.po index 2705e1bd8..283567d6f 100644 --- a/library/concurrency.po +++ b/library/concurrency.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/concurrent.futures.po b/library/concurrent.futures.po index e1b67b615..162766b26 100644 --- a/library/concurrent.futures.po +++ b/library/concurrent.futures.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/concurrent.po b/library/concurrent.po index 1650be109..46cefddd7 100644 --- a/library/concurrent.po +++ b/library/concurrent.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/configparser.po b/library/configparser.po index 1a0183bdd..f5c0e9f02 100644 --- a/library/configparser.po +++ b/library/configparser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/constants.po b/library/constants.po index 0043c1ba9..ae5b4f3a6 100644 --- a/library/constants.po +++ b/library/constants.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/contextlib.po b/library/contextlib.po index ac97c8cd4..59ca27d5d 100644 --- a/library/contextlib.po +++ b/library/contextlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/contextvars.po b/library/contextvars.po index 8b8d949ea..0fd1c15fc 100644 --- a/library/contextvars.po +++ b/library/contextvars.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/copy.po b/library/copy.po index 5b3bcdeb2..9e93c6eea 100644 --- a/library/copy.po +++ b/library/copy.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/copyreg.po b/library/copyreg.po index 05bcb0e8f..a39878327 100644 --- a/library/copyreg.po +++ b/library/copyreg.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/crypt.po b/library/crypt.po index fd60be631..5f73c7102 100644 --- a/library/crypt.po +++ b/library/crypt.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/crypto.po b/library/crypto.po index fb6ec4dea..a55a504f1 100644 --- a/library/crypto.po +++ b/library/crypto.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/csv.po b/library/csv.po index 8f08e4397..7801af6fd 100644 --- a/library/csv.po +++ b/library/csv.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/ctypes.po b/library/ctypes.po index c8668b52a..5dedb222b 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/curses.ascii.po b/library/curses.ascii.po index 7d9966760..294eb0f27 100644 --- a/library/curses.ascii.po +++ b/library/curses.ascii.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/curses.panel.po b/library/curses.panel.po index 41cc42ce5..553582522 100644 --- a/library/curses.panel.po +++ b/library/curses.panel.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/curses.po b/library/curses.po index fd56176e4..08e581ace 100644 --- a/library/curses.po +++ b/library/curses.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/custominterp.po b/library/custominterp.po index 59cdd74e5..be69d0f8b 100644 --- a/library/custominterp.po +++ b/library/custominterp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/dataclasses.po b/library/dataclasses.po index fdf673d95..4d3536acc 100644 --- a/library/dataclasses.po +++ b/library/dataclasses.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/datatypes.po b/library/datatypes.po index 13cc7a5af..590b28ac0 100644 --- a/library/datatypes.po +++ b/library/datatypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/datetime.po b/library/datetime.po index 551d483c9..8f0bacf54 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/dbm.po b/library/dbm.po index 5f5885935..cef0894d1 100644 --- a/library/dbm.po +++ b/library/dbm.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/debug.po b/library/debug.po index b4a921521..3376c7361 100644 --- a/library/debug.po +++ b/library/debug.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/decimal.po b/library/decimal.po index f824936ac..5a751860d 100644 --- a/library/decimal.po +++ b/library/decimal.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/development.po b/library/development.po index c7e981e1b..5641dc830 100644 --- a/library/development.po +++ b/library/development.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/devmode.po b/library/devmode.po index 9434f8103..bb6dda780 100644 --- a/library/devmode.po +++ b/library/devmode.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/dialog.po b/library/dialog.po index cd25eff08..45600aad5 100644 --- a/library/dialog.po +++ b/library/dialog.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/difflib.po b/library/difflib.po index 24478bbdc..4aa608415 100644 --- a/library/difflib.po +++ b/library/difflib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/dis.po b/library/dis.po index d48edf9ca..d1c0edc9e 100644 --- a/library/dis.po +++ b/library/dis.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/distribution.po b/library/distribution.po index e9d719704..41167b6a8 100644 --- a/library/distribution.po +++ b/library/distribution.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/distutils.po b/library/distutils.po index b00cc34b0..d74c02403 100644 --- a/library/distutils.po +++ b/library/distutils.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/doctest.po b/library/doctest.po index 05b9eee10..93eb09be2 100644 --- a/library/doctest.po +++ b/library/doctest.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.charset.po b/library/email.charset.po index a4dc829a8..c86897650 100644 --- a/library/email.charset.po +++ b/library/email.charset.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.compat32-message.po b/library/email.compat32-message.po index 4ace00812..5e2a96069 100644 --- a/library/email.compat32-message.po +++ b/library/email.compat32-message.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.contentmanager.po b/library/email.contentmanager.po index 742288961..468778124 100644 --- a/library/email.contentmanager.po +++ b/library/email.contentmanager.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.encoders.po b/library/email.encoders.po index 5d27adf89..4831bcbd1 100644 --- a/library/email.encoders.po +++ b/library/email.encoders.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.errors.po b/library/email.errors.po index 8d5e1a21d..e869d4367 100644 --- a/library/email.errors.po +++ b/library/email.errors.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.examples.po b/library/email.examples.po index 9b8c9192e..0cd90f4f6 100644 --- a/library/email.examples.po +++ b/library/email.examples.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.generator.po b/library/email.generator.po index e5e553d07..a09ab87ac 100644 --- a/library/email.generator.po +++ b/library/email.generator.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.header.po b/library/email.header.po index 1bcfc54ff..66bb45d83 100644 --- a/library/email.header.po +++ b/library/email.header.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.headerregistry.po b/library/email.headerregistry.po index 8b988390f..f11f62efc 100644 --- a/library/email.headerregistry.po +++ b/library/email.headerregistry.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.iterators.po b/library/email.iterators.po index 54d82c6bb..f979d4ad2 100644 --- a/library/email.iterators.po +++ b/library/email.iterators.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.message.po b/library/email.message.po index e3540a34b..0ba37a4a2 100644 --- a/library/email.message.po +++ b/library/email.message.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.mime.po b/library/email.mime.po index 257004075..a37999a7d 100644 --- a/library/email.mime.po +++ b/library/email.mime.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.parser.po b/library/email.parser.po index 25df005c5..e19aa937a 100644 --- a/library/email.parser.po +++ b/library/email.parser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.po b/library/email.po index 75a688387..e41d132e3 100644 --- a/library/email.po +++ b/library/email.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.policy.po b/library/email.policy.po index 534844705..fe0ef34d0 100644 --- a/library/email.policy.po +++ b/library/email.policy.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/email.utils.po b/library/email.utils.po index 8dfc02d89..d5e7fa283 100644 --- a/library/email.utils.po +++ b/library/email.utils.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/ensurepip.po b/library/ensurepip.po index 6d3d17087..0aeb4375d 100644 --- a/library/ensurepip.po +++ b/library/ensurepip.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/enum.po b/library/enum.po index 209219e96..b22f88d93 100644 --- a/library/enum.po +++ b/library/enum.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/errno.po b/library/errno.po index 397965077..11841311e 100644 --- a/library/errno.po +++ b/library/errno.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/exceptions.po b/library/exceptions.po index 32d790f6a..a4fe746cc 100644 --- a/library/exceptions.po +++ b/library/exceptions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/faulthandler.po b/library/faulthandler.po index 4d3520727..bbebaa644 100644 --- a/library/faulthandler.po +++ b/library/faulthandler.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/fcntl.po b/library/fcntl.po index 987a6ab5a..bdacc75f2 100644 --- a/library/fcntl.po +++ b/library/fcntl.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/filecmp.po b/library/filecmp.po index 434125f60..f6c123471 100644 --- a/library/filecmp.po +++ b/library/filecmp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/fileformats.po b/library/fileformats.po index 4c1fec132..8db0afc2b 100644 --- a/library/fileformats.po +++ b/library/fileformats.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/fileinput.po b/library/fileinput.po index 9cb34d5b7..4f8528268 100644 --- a/library/fileinput.po +++ b/library/fileinput.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/filesys.po b/library/filesys.po index 91c0313b3..1381a64eb 100644 --- a/library/filesys.po +++ b/library/filesys.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/fnmatch.po b/library/fnmatch.po index 61b9948ec..a3b38d298 100644 --- a/library/fnmatch.po +++ b/library/fnmatch.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/fractions.po b/library/fractions.po index 24eb4c485..4d1743bc6 100644 --- a/library/fractions.po +++ b/library/fractions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/frameworks.po b/library/frameworks.po index 70cdedf8d..0fff9ac4c 100644 --- a/library/frameworks.po +++ b/library/frameworks.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/ftplib.po b/library/ftplib.po index b097fbb89..2136047ab 100644 --- a/library/ftplib.po +++ b/library/ftplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/functional.po b/library/functional.po index a3db817f5..dc2066964 100644 --- a/library/functional.po +++ b/library/functional.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/functions.po b/library/functions.po index 7ed3d4f6f..1ca847817 100644 --- a/library/functions.po +++ b/library/functions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/functools.po b/library/functools.po index 64f091374..41e3dd563 100644 --- a/library/functools.po +++ b/library/functools.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/gc.po b/library/gc.po index 70a321352..34ae5eb5a 100644 --- a/library/gc.po +++ b/library/gc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/getopt.po b/library/getopt.po index 4814eb725..405f7500d 100644 --- a/library/getopt.po +++ b/library/getopt.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/getpass.po b/library/getpass.po index 7d7a4526a..e38dc78fd 100644 --- a/library/getpass.po +++ b/library/getpass.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/gettext.po b/library/gettext.po index 8b6b398d9..aa0b91dd1 100644 --- a/library/gettext.po +++ b/library/gettext.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/glob.po b/library/glob.po index 6f3967801..151cf6781 100644 --- a/library/glob.po +++ b/library/glob.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/graphlib.po b/library/graphlib.po index 2a9a66349..a937235b3 100644 --- a/library/graphlib.po +++ b/library/graphlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/grp.po b/library/grp.po index 7d6083cb8..bcc625670 100644 --- a/library/grp.po +++ b/library/grp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/gzip.po b/library/gzip.po index fb24af375..5b9f6f17a 100644 --- a/library/gzip.po +++ b/library/gzip.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/hashlib.po b/library/hashlib.po index 8eaab638f..c0ad74fa6 100644 --- a/library/hashlib.po +++ b/library/hashlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/heapq.po b/library/heapq.po index a204cf664..3a1a3238d 100644 --- a/library/heapq.po +++ b/library/heapq.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/hmac.po b/library/hmac.po index 6ea8235e2..44493cd6e 100644 --- a/library/hmac.po +++ b/library/hmac.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/html.entities.po b/library/html.entities.po index aae998136..a644dd4f2 100644 --- a/library/html.entities.po +++ b/library/html.entities.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/html.parser.po b/library/html.parser.po index fa6169dc0..a4bd5fd65 100644 --- a/library/html.parser.po +++ b/library/html.parser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/html.po b/library/html.po index d6fec78de..412eaf0e1 100644 --- a/library/html.po +++ b/library/html.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/http.client.po b/library/http.client.po index 885d35c16..a593b8e3d 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/http.cookiejar.po b/library/http.cookiejar.po index 90d940a55..1517ba091 100644 --- a/library/http.cookiejar.po +++ b/library/http.cookiejar.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/http.cookies.po b/library/http.cookies.po index 1d52684e1..d4bcfb097 100644 --- a/library/http.cookies.po +++ b/library/http.cookies.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/http.po b/library/http.po index 5142e7554..af306d7ba 100644 --- a/library/http.po +++ b/library/http.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/http.server.po b/library/http.server.po index 743b98461..2ba2f514c 100644 --- a/library/http.server.po +++ b/library/http.server.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/i18n.po b/library/i18n.po index 7e9ef4655..020ab52f5 100644 --- a/library/i18n.po +++ b/library/i18n.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/idle.po b/library/idle.po index c9835a097..3254d0bc9 100644 --- a/library/idle.po +++ b/library/idle.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/imaplib.po b/library/imaplib.po index bd39d8763..b7cda8491 100644 --- a/library/imaplib.po +++ b/library/imaplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/imghdr.po b/library/imghdr.po index b31f3f22a..11568937e 100644 --- a/library/imghdr.po +++ b/library/imghdr.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/imp.po b/library/imp.po index 57898a14e..7f2477d77 100644 --- a/library/imp.po +++ b/library/imp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/importlib.metadata.po b/library/importlib.metadata.po index fd6b8b5e9..f0681b102 100644 --- a/library/importlib.metadata.po +++ b/library/importlib.metadata.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/importlib.po b/library/importlib.po index 39adde399..378dbb166 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/index.po b/library/index.po index ecf31d10e..dd6127738 100644 --- a/library/index.po +++ b/library/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/inspect.po b/library/inspect.po index 9d4e2fd02..02e231d64 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/internet.po b/library/internet.po index d47be90eb..f0fe464d4 100644 --- a/library/internet.po +++ b/library/internet.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/intro.po b/library/intro.po index 64e2163f2..9d436f964 100644 --- a/library/intro.po +++ b/library/intro.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/io.po b/library/io.po index 590b3311f..c570bb10d 100644 --- a/library/io.po +++ b/library/io.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/ipaddress.po b/library/ipaddress.po index d1c70b592..d8a62fac7 100644 --- a/library/ipaddress.po +++ b/library/ipaddress.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/ipc.po b/library/ipc.po index 394b57ace..5eaf992c9 100644 --- a/library/ipc.po +++ b/library/ipc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/itertools.po b/library/itertools.po index 99137f255..a7616c079 100644 --- a/library/itertools.po +++ b/library/itertools.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/json.po b/library/json.po index 080ad96c4..15d6ca422 100644 --- a/library/json.po +++ b/library/json.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/keyword.po b/library/keyword.po index f71b01eab..ae579022c 100644 --- a/library/keyword.po +++ b/library/keyword.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/language.po b/library/language.po index 347ae4ffd..13367b271 100644 --- a/library/language.po +++ b/library/language.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/linecache.po b/library/linecache.po index dd1a8b7ab..2d88eb27e 100644 --- a/library/linecache.po +++ b/library/linecache.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/locale.po b/library/locale.po index 7d83a9072..666c3054f 100644 --- a/library/locale.po +++ b/library/locale.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/logging.config.po b/library/logging.config.po index d1eb5ebc3..9d7872e15 100644 --- a/library/logging.config.po +++ b/library/logging.config.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/logging.handlers.po b/library/logging.handlers.po index 407dffd13..edcd1bee9 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/logging.po b/library/logging.po index 1a8982ed4..c55a53741 100644 --- a/library/logging.po +++ b/library/logging.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/lzma.po b/library/lzma.po index a319dd916..c40bb31ba 100644 --- a/library/lzma.po +++ b/library/lzma.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/mailbox.po b/library/mailbox.po index ae142a10b..6b0faa25a 100644 --- a/library/mailbox.po +++ b/library/mailbox.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/mailcap.po b/library/mailcap.po index 4ebfd76bc..396f64c58 100644 --- a/library/mailcap.po +++ b/library/mailcap.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/markup.po b/library/markup.po index 60f0a0f28..98a3bab6e 100644 --- a/library/markup.po +++ b/library/markup.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/marshal.po b/library/marshal.po index 351328f83..ad7aa4a6d 100644 --- a/library/marshal.po +++ b/library/marshal.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/math.po b/library/math.po index b54fcf881..ed729a4f5 100644 --- a/library/math.po +++ b/library/math.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/mimetypes.po b/library/mimetypes.po index 003793188..ea1e3b733 100644 --- a/library/mimetypes.po +++ b/library/mimetypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/mm.po b/library/mm.po index d114cbb6d..296bdda81 100644 --- a/library/mm.po +++ b/library/mm.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/mmap.po b/library/mmap.po index 02229f011..fa34174b8 100644 --- a/library/mmap.po +++ b/library/mmap.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/modulefinder.po b/library/modulefinder.po index 607bb2f0c..1ad9cac40 100644 --- a/library/modulefinder.po +++ b/library/modulefinder.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/modules.po b/library/modules.po index 05d2acf7b..57e26b6d2 100644 --- a/library/modules.po +++ b/library/modules.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/msilib.po b/library/msilib.po index f2e9bb0a9..1d4c93353 100644 --- a/library/msilib.po +++ b/library/msilib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/msvcrt.po b/library/msvcrt.po index 5bd324ca1..c4d20b7d4 100644 --- a/library/msvcrt.po +++ b/library/msvcrt.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/multiprocessing.po b/library/multiprocessing.po index 659251969..5e1bf8552 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/multiprocessing.shared_memory.po b/library/multiprocessing.shared_memory.po index 10a599200..3193a0bd2 100644 --- a/library/multiprocessing.shared_memory.po +++ b/library/multiprocessing.shared_memory.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/netdata.po b/library/netdata.po index 7f39dee7f..f3f342298 100644 --- a/library/netdata.po +++ b/library/netdata.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/netrc.po b/library/netrc.po index 6594c23d3..18080c6cb 100644 --- a/library/netrc.po +++ b/library/netrc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/nis.po b/library/nis.po index 7d55579c9..c549aff91 100644 --- a/library/nis.po +++ b/library/nis.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/nntplib.po b/library/nntplib.po index 7f61941b9..0adcf5958 100644 --- a/library/nntplib.po +++ b/library/nntplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/numbers.po b/library/numbers.po index 4d9b77e95..eff4f71e2 100644 --- a/library/numbers.po +++ b/library/numbers.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/numeric.po b/library/numeric.po index 4518b216f..8065b18a4 100644 --- a/library/numeric.po +++ b/library/numeric.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/operator.po b/library/operator.po index df5b9e87f..d896a5e53 100644 --- a/library/operator.po +++ b/library/operator.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/optparse.po b/library/optparse.po index 067f57090..729c727a8 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/os.path.po b/library/os.path.po index 42176c9c1..3fd0dbe90 100644 --- a/library/os.path.po +++ b/library/os.path.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/os.po b/library/os.po index 2c5235416..1f6f051f7 100644 --- a/library/os.po +++ b/library/os.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/ossaudiodev.po b/library/ossaudiodev.po index 78094b14d..0ed01b68a 100644 --- a/library/ossaudiodev.po +++ b/library/ossaudiodev.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pathlib.po b/library/pathlib.po index 0d1337b31..f97f5e0b5 100644 --- a/library/pathlib.po +++ b/library/pathlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pdb.po b/library/pdb.po index e1be32635..5246bf11b 100644 --- a/library/pdb.po +++ b/library/pdb.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/persistence.po b/library/persistence.po index c8509762a..bcbb45185 100644 --- a/library/persistence.po +++ b/library/persistence.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pickle.po b/library/pickle.po index f97708f8a..9db0c6453 100644 --- a/library/pickle.po +++ b/library/pickle.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pickletools.po b/library/pickletools.po index f5dcb5bf0..79187b2f4 100644 --- a/library/pickletools.po +++ b/library/pickletools.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pipes.po b/library/pipes.po index 0d6799d0d..c50538cfc 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pkgutil.po b/library/pkgutil.po index aa65e4b91..1e3aaa04b 100644 --- a/library/pkgutil.po +++ b/library/pkgutil.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/platform.po b/library/platform.po index 1f5420494..ca376d230 100644 --- a/library/platform.po +++ b/library/platform.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/plistlib.po b/library/plistlib.po index f970003e0..9b8fffebb 100644 --- a/library/plistlib.po +++ b/library/plistlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/poplib.po b/library/poplib.po index dec5a7bf0..709685f52 100644 --- a/library/poplib.po +++ b/library/poplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/posix.po b/library/posix.po index 733a4771d..3dbb8b7dc 100644 --- a/library/posix.po +++ b/library/posix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pprint.po b/library/pprint.po index 2d0f21e5c..811e2e86e 100644 --- a/library/pprint.po +++ b/library/pprint.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/profile.po b/library/profile.po index 5f04db79b..fa0f77457 100644 --- a/library/profile.po +++ b/library/profile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pty.po b/library/pty.po index 89891b194..14c2cace9 100644 --- a/library/pty.po +++ b/library/pty.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pwd.po b/library/pwd.po index 2391521cb..a00d8740e 100644 --- a/library/pwd.po +++ b/library/pwd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/py_compile.po b/library/py_compile.po index f00336e34..8aed0f3c9 100644 --- a/library/py_compile.po +++ b/library/py_compile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pyclbr.po b/library/pyclbr.po index 738a5591a..a680246d6 100644 --- a/library/pyclbr.po +++ b/library/pyclbr.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pydoc.po b/library/pydoc.po index e75d11208..1f906f8cb 100644 --- a/library/pydoc.po +++ b/library/pydoc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/pyexpat.po b/library/pyexpat.po index fee7b1cbd..a978ab9ab 100644 --- a/library/pyexpat.po +++ b/library/pyexpat.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/python.po b/library/python.po index c33bda096..b2315b4d2 100644 --- a/library/python.po +++ b/library/python.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/queue.po b/library/queue.po index fdfde3eec..3edb2ebc2 100644 --- a/library/queue.po +++ b/library/queue.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/quopri.po b/library/quopri.po index dc0494768..c253d724e 100644 --- a/library/quopri.po +++ b/library/quopri.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/random.po b/library/random.po index 35d1fea20..969d4b424 100644 --- a/library/random.po +++ b/library/random.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/re.po b/library/re.po index 4128db539..b16900977 100644 --- a/library/re.po +++ b/library/re.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/readline.po b/library/readline.po index 7634e4f0a..2443385a7 100644 --- a/library/readline.po +++ b/library/readline.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/reprlib.po b/library/reprlib.po index 29cd49036..bfe23b86e 100644 --- a/library/reprlib.po +++ b/library/reprlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/resource.po b/library/resource.po index 2919bdd66..02d03de5a 100644 --- a/library/resource.po +++ b/library/resource.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/rlcompleter.po b/library/rlcompleter.po index 21363f0ef..0fb3330b8 100644 --- a/library/rlcompleter.po +++ b/library/rlcompleter.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/runpy.po b/library/runpy.po index 81c2c2ec3..73cc5f16a 100644 --- a/library/runpy.po +++ b/library/runpy.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/sched.po b/library/sched.po index 7b491fda5..ae7ad53e3 100644 --- a/library/sched.po +++ b/library/sched.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/secrets.po b/library/secrets.po index a1bb9b8ff..f130ba82f 100644 --- a/library/secrets.po +++ b/library/secrets.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/security_warnings.po b/library/security_warnings.po index bc8b63bbb..2e420a2d4 100644 --- a/library/security_warnings.po +++ b/library/security_warnings.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/select.po b/library/select.po index 26a6ecec0..42622d1cd 100644 --- a/library/select.po +++ b/library/select.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/selectors.po b/library/selectors.po index cb19a54f7..46f60b146 100644 --- a/library/selectors.po +++ b/library/selectors.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/shelve.po b/library/shelve.po index 3c6c6eaad..16fac89f0 100644 --- a/library/shelve.po +++ b/library/shelve.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/shlex.po b/library/shlex.po index 3500ec3e1..36108c990 100644 --- a/library/shlex.po +++ b/library/shlex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/shutil.po b/library/shutil.po index 0fe19a94a..a41419f0b 100644 --- a/library/shutil.po +++ b/library/shutil.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/signal.po b/library/signal.po index 866fbea71..5a1d6fa8d 100644 --- a/library/signal.po +++ b/library/signal.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/site.po b/library/site.po index f18487e96..f3904cf22 100644 --- a/library/site.po +++ b/library/site.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/smtpd.po b/library/smtpd.po index 51133daaf..8b28b0989 100644 --- a/library/smtpd.po +++ b/library/smtpd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/smtplib.po b/library/smtplib.po index 283ffb835..6d08c564e 100644 --- a/library/smtplib.po +++ b/library/smtplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/sndhdr.po b/library/sndhdr.po index 80b052a68..77a82a012 100644 --- a/library/sndhdr.po +++ b/library/sndhdr.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/socket.po b/library/socket.po index c570bdffd..c2701b4d5 100644 --- a/library/socket.po +++ b/library/socket.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/socketserver.po b/library/socketserver.po index 8acd8e720..a510aaafd 100644 --- a/library/socketserver.po +++ b/library/socketserver.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/spwd.po b/library/spwd.po index 770586a1b..0584dcacd 100644 --- a/library/spwd.po +++ b/library/spwd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/sqlite3.po b/library/sqlite3.po index f9b6f8df3..db400a125 100644 --- a/library/sqlite3.po +++ b/library/sqlite3.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/ssl.po b/library/ssl.po index 21e2192cf..9a63435ba 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/stat.po b/library/stat.po index 16329e725..ae9f5ec57 100644 --- a/library/stat.po +++ b/library/stat.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/statistics.po b/library/statistics.po index 9b144bac8..515ab4c67 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/stdtypes.po b/library/stdtypes.po index 7e6ef5f20..741a5c6e6 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/library/string.po b/library/string.po index 3ad8a5563..9dce39cb3 100644 --- a/library/string.po +++ b/library/string.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/stringprep.po b/library/stringprep.po index 8e99753c0..9d4f42ffb 100644 --- a/library/stringprep.po +++ b/library/stringprep.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/struct.po b/library/struct.po index 9cea4b1cf..2550c7676 100644 --- a/library/struct.po +++ b/library/struct.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/subprocess.po b/library/subprocess.po index fec727c78..c71a6c0b2 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/sunau.po b/library/sunau.po index 935b61b40..19579d339 100644 --- a/library/sunau.po +++ b/library/sunau.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/superseded.po b/library/superseded.po index 5609128b2..1ac0f5476 100644 --- a/library/superseded.po +++ b/library/superseded.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/symtable.po b/library/symtable.po index 4af247913..447d53c1a 100644 --- a/library/symtable.po +++ b/library/symtable.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/sys.po b/library/sys.po index ea4d1540a..9f9828d05 100644 --- a/library/sys.po +++ b/library/sys.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/sysconfig.po b/library/sysconfig.po index bfbeeb058..6e50100c3 100644 --- a/library/sysconfig.po +++ b/library/sysconfig.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/syslog.po b/library/syslog.po index cc3fb1573..a260c0d07 100644 --- a/library/syslog.po +++ b/library/syslog.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tabnanny.po b/library/tabnanny.po index a0d54461a..e0b9a146d 100644 --- a/library/tabnanny.po +++ b/library/tabnanny.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tarfile.po b/library/tarfile.po index f3f4de40c..abfeebd96 100644 --- a/library/tarfile.po +++ b/library/tarfile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/telnetlib.po b/library/telnetlib.po index d72619849..2245d9c22 100644 --- a/library/telnetlib.po +++ b/library/telnetlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tempfile.po b/library/tempfile.po index f4f05e782..dab97a38d 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/termios.po b/library/termios.po index 021a86b7a..ac6cc5033 100644 --- a/library/termios.po +++ b/library/termios.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/test.po b/library/test.po index 7bc760b2a..2fcc7a56a 100644 --- a/library/test.po +++ b/library/test.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/text.po b/library/text.po index e95340493..f6430e5ba 100644 --- a/library/text.po +++ b/library/text.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/textwrap.po b/library/textwrap.po index 8c750cafc..95c2fc2d1 100644 --- a/library/textwrap.po +++ b/library/textwrap.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/threading.po b/library/threading.po index 8f3a6ad6d..3cf945ae3 100644 --- a/library/threading.po +++ b/library/threading.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/time.po b/library/time.po index d52594d15..1089cc3d3 100644 --- a/library/time.po +++ b/library/time.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/timeit.po b/library/timeit.po index 670a1eb28..3cbd5b216 100644 --- a/library/timeit.po +++ b/library/timeit.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tk.po b/library/tk.po index 4b3f79767..ba4f2eb2a 100644 --- a/library/tk.po +++ b/library/tk.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tkinter.colorchooser.po b/library/tkinter.colorchooser.po index 509724e86..540c3a2a8 100644 --- a/library/tkinter.colorchooser.po +++ b/library/tkinter.colorchooser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tkinter.dnd.po b/library/tkinter.dnd.po index e348ed1bf..e096a9294 100644 --- a/library/tkinter.dnd.po +++ b/library/tkinter.dnd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tkinter.font.po b/library/tkinter.font.po index dae4377cc..f8aecca08 100644 --- a/library/tkinter.font.po +++ b/library/tkinter.font.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tkinter.messagebox.po b/library/tkinter.messagebox.po index 74d64368e..2b3fd51b9 100644 --- a/library/tkinter.messagebox.po +++ b/library/tkinter.messagebox.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tkinter.po b/library/tkinter.po index 31bd7388c..a447f6ce1 100644 --- a/library/tkinter.po +++ b/library/tkinter.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tkinter.scrolledtext.po b/library/tkinter.scrolledtext.po index 54dd1dedd..f0535470f 100644 --- a/library/tkinter.scrolledtext.po +++ b/library/tkinter.scrolledtext.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tkinter.tix.po b/library/tkinter.tix.po index f75739ca4..9951d7ccc 100644 --- a/library/tkinter.tix.po +++ b/library/tkinter.tix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tkinter.ttk.po b/library/tkinter.ttk.po index d91439643..07395ea91 100644 --- a/library/tkinter.ttk.po +++ b/library/tkinter.ttk.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/token.po b/library/token.po index 9b672b2d3..a61e371ea 100644 --- a/library/token.po +++ b/library/token.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tokenize.po b/library/tokenize.po index f2da80ece..1d350b673 100644 --- a/library/tokenize.po +++ b/library/tokenize.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/trace.po b/library/trace.po index 3ef65f2eb..00800c3f8 100644 --- a/library/trace.po +++ b/library/trace.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/traceback.po b/library/traceback.po index c1333a762..988da4541 100644 --- a/library/traceback.po +++ b/library/traceback.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tracemalloc.po b/library/tracemalloc.po index 14cf003ec..0754760cb 100644 --- a/library/tracemalloc.po +++ b/library/tracemalloc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tty.po b/library/tty.po index a4a51e01c..926bc83a6 100644 --- a/library/tty.po +++ b/library/tty.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/turtle.po b/library/turtle.po index 7665106b8..577ad36ae 100644 --- a/library/turtle.po +++ b/library/turtle.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/types.po b/library/types.po index 841fa0509..6c3fe2568 100644 --- a/library/types.po +++ b/library/types.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/typing.po b/library/typing.po index 045a69f6e..67c73b060 100644 --- a/library/typing.po +++ b/library/typing.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/undoc.po b/library/undoc.po index 4f1170f5c..2cf816493 100644 --- a/library/undoc.po +++ b/library/undoc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/unicodedata.po b/library/unicodedata.po index 37b8b41fa..8f27bbeba 100644 --- a/library/unicodedata.po +++ b/library/unicodedata.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/unittest.mock-examples.po b/library/unittest.mock-examples.po index c91e0b4aa..2372b85ba 100644 --- a/library/unittest.mock-examples.po +++ b/library/unittest.mock-examples.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/unittest.mock.po b/library/unittest.mock.po index 74a9e4586..558ba7bba 100644 --- a/library/unittest.mock.po +++ b/library/unittest.mock.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/unittest.po b/library/unittest.po index 0548141c7..dad66f354 100644 --- a/library/unittest.po +++ b/library/unittest.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/unix.po b/library/unix.po index c47d3e165..6bd0710a1 100644 --- a/library/unix.po +++ b/library/unix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/urllib.error.po b/library/urllib.error.po index 37ebc0438..6275621e5 100644 --- a/library/urllib.error.po +++ b/library/urllib.error.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/urllib.parse.po b/library/urllib.parse.po index f974a90f2..eeccfe061 100644 --- a/library/urllib.parse.po +++ b/library/urllib.parse.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/urllib.po b/library/urllib.po index df2cfba23..4ffe2d837 100644 --- a/library/urllib.po +++ b/library/urllib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/urllib.request.po b/library/urllib.request.po index 75cd3be89..8c91b760a 100644 --- a/library/urllib.request.po +++ b/library/urllib.request.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/urllib.robotparser.po b/library/urllib.robotparser.po index 2aba9e9fa..43ef79875 100644 --- a/library/urllib.robotparser.po +++ b/library/urllib.robotparser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/uu.po b/library/uu.po index 4c6ffeac0..4ceb3ef85 100644 --- a/library/uu.po +++ b/library/uu.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/uuid.po b/library/uuid.po index 41e7aedd7..e78e0719b 100644 --- a/library/uuid.po +++ b/library/uuid.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/venv.po b/library/venv.po index 22ea3ce29..596de3f3b 100644 --- a/library/venv.po +++ b/library/venv.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/warnings.po b/library/warnings.po index e11b27c95..2330b2cd4 100644 --- a/library/warnings.po +++ b/library/warnings.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/wave.po b/library/wave.po index 44cd96a50..a3fb0f164 100644 --- a/library/wave.po +++ b/library/wave.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/weakref.po b/library/weakref.po index 980b69c64..e599e7884 100644 --- a/library/weakref.po +++ b/library/weakref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/webbrowser.po b/library/webbrowser.po index dabc1d023..c90eab265 100644 --- a/library/webbrowser.po +++ b/library/webbrowser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/windows.po b/library/windows.po index 86580cdf3..496f67057 100644 --- a/library/windows.po +++ b/library/windows.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/winreg.po b/library/winreg.po index 81a067198..63d00353f 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/winsound.po b/library/winsound.po index a15c79aa5..bdae99688 100644 --- a/library/winsound.po +++ b/library/winsound.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/wsgiref.po b/library/wsgiref.po index 36ba39b4b..8bc755326 100644 --- a/library/wsgiref.po +++ b/library/wsgiref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xdrlib.po b/library/xdrlib.po index 0c05a1773..d6fadd122 100644 --- a/library/xdrlib.po +++ b/library/xdrlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.dom.minidom.po b/library/xml.dom.minidom.po index 30c4706d8..8ab9bab0c 100644 --- a/library/xml.dom.minidom.po +++ b/library/xml.dom.minidom.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.dom.po b/library/xml.dom.po index 9fb494ac9..093aa0346 100644 --- a/library/xml.dom.po +++ b/library/xml.dom.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.dom.pulldom.po b/library/xml.dom.pulldom.po index 2f01eac1f..8e583daca 100644 --- a/library/xml.dom.pulldom.po +++ b/library/xml.dom.pulldom.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.etree.elementtree.po b/library/xml.etree.elementtree.po index d0049fd6a..1ebfed78a 100644 --- a/library/xml.etree.elementtree.po +++ b/library/xml.etree.elementtree.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.po b/library/xml.po index 66c3b0e56..a69cce8b2 100644 --- a/library/xml.po +++ b/library/xml.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.sax.handler.po b/library/xml.sax.handler.po index 9d0d10e10..39e1ced39 100644 --- a/library/xml.sax.handler.po +++ b/library/xml.sax.handler.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.sax.po b/library/xml.sax.po index 091b74444..216713727 100644 --- a/library/xml.sax.po +++ b/library/xml.sax.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.sax.reader.po b/library/xml.sax.reader.po index 98341d5e9..07dddaeba 100644 --- a/library/xml.sax.reader.po +++ b/library/xml.sax.reader.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xml.sax.utils.po b/library/xml.sax.utils.po index a2877f0aa..92a374e5d 100644 --- a/library/xml.sax.utils.po +++ b/library/xml.sax.utils.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xmlrpc.client.po b/library/xmlrpc.client.po index 8671638a9..63be0ad5b 100644 --- a/library/xmlrpc.client.po +++ b/library/xmlrpc.client.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xmlrpc.po b/library/xmlrpc.po index 7a9393a34..12a022a23 100644 --- a/library/xmlrpc.po +++ b/library/xmlrpc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/xmlrpc.server.po b/library/xmlrpc.server.po index eca365860..d8bcb0ce9 100644 --- a/library/xmlrpc.server.po +++ b/library/xmlrpc.server.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/zipapp.po b/library/zipapp.po index 8f2cb969c..0fef63f22 100644 --- a/library/zipapp.po +++ b/library/zipapp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/zipfile.po b/library/zipfile.po index f0fa4f67d..77dcc65e1 100644 --- a/library/zipfile.po +++ b/library/zipfile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/zipimport.po b/library/zipimport.po index c22addf8b..e64455fee 100644 --- a/library/zipimport.po +++ b/library/zipimport.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/zlib.po b/library/zlib.po index aeda786f6..e972af0a2 100644 --- a/library/zlib.po +++ b/library/zlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/zoneinfo.po b/library/zoneinfo.po index 44515346b..8a2d34cab 100644 --- a/library/zoneinfo.po +++ b/library/zoneinfo.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/license.po b/license.po index 6d3799123..44874e1ce 100644 --- a/license.po +++ b/license.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/reference/compound_stmts.po b/reference/compound_stmts.po index cb0f3df61..ea38ac862 100644 --- a/reference/compound_stmts.po +++ b/reference/compound_stmts.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/datamodel.po b/reference/datamodel.po index c0f16233c..a60156acd 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/executionmodel.po b/reference/executionmodel.po index 40c9f8e5a..863a70da7 100644 --- a/reference/executionmodel.po +++ b/reference/executionmodel.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/expressions.po b/reference/expressions.po index 1feab8a96..d4d0c45cc 100644 --- a/reference/expressions.po +++ b/reference/expressions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/grammar.po b/reference/grammar.po index 43657cabc..e7617c1c2 100644 --- a/reference/grammar.po +++ b/reference/grammar.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/import.po b/reference/import.po index 462a96a0c..02226cfec 100644 --- a/reference/import.po +++ b/reference/import.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/index.po b/reference/index.po index 54582c8ee..a45eeaded 100644 --- a/reference/index.po +++ b/reference/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/introduction.po b/reference/introduction.po index ec5db5c86..bdac2d4b6 100644 --- a/reference/introduction.po +++ b/reference/introduction.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/lexical_analysis.po b/reference/lexical_analysis.po index 90667b853..c23e45420 100644 --- a/reference/lexical_analysis.po +++ b/reference/lexical_analysis.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/simple_stmts.po b/reference/simple_stmts.po index 4ebcfac71..f2384b43b 100644 --- a/reference/simple_stmts.po +++ b/reference/simple_stmts.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/reference/toplevel_components.po b/reference/toplevel_components.po index 4365e473e..4d78a3b2a 100644 --- a/reference/toplevel_components.po +++ b/reference/toplevel_components.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/sphinx.po b/sphinx.po index 79958af11..68596a9f0 100644 --- a/sphinx.po +++ b/sphinx.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/appendix.po b/tutorial/appendix.po index 3d12797b1..898c491cc 100644 --- a/tutorial/appendix.po +++ b/tutorial/appendix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/appetite.po b/tutorial/appetite.po index ce6bd835c..2dc2ec601 100644 --- a/tutorial/appetite.po +++ b/tutorial/appetite.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/classes.po b/tutorial/classes.po index 04eebe96d..0b8842247 100644 --- a/tutorial/classes.po +++ b/tutorial/classes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/controlflow.po b/tutorial/controlflow.po index df2515b56..96d77cab0 100644 --- a/tutorial/controlflow.po +++ b/tutorial/controlflow.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/tutorial/datastructures.po b/tutorial/datastructures.po index 12c199e6e..a6da5457f 100644 --- a/tutorial/datastructures.po +++ b/tutorial/datastructures.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/errors.po b/tutorial/errors.po index 855169235..933a4a9b5 100644 --- a/tutorial/errors.po +++ b/tutorial/errors.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/floatingpoint.po b/tutorial/floatingpoint.po index 2c1d98ed1..a49064a7a 100644 --- a/tutorial/floatingpoint.po +++ b/tutorial/floatingpoint.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/index.po b/tutorial/index.po index 29e5a718e..c0dffbcb9 100644 --- a/tutorial/index.po +++ b/tutorial/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/inputoutput.po b/tutorial/inputoutput.po index 175ba3266..2e4ccfc17 100644 --- a/tutorial/inputoutput.po +++ b/tutorial/inputoutput.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/interactive.po b/tutorial/interactive.po index 4f03d7b76..84d3a0b22 100644 --- a/tutorial/interactive.po +++ b/tutorial/interactive.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/interpreter.po b/tutorial/interpreter.po index ab6fa43c0..4dc59b6f4 100644 --- a/tutorial/interpreter.po +++ b/tutorial/interpreter.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/introduction.po b/tutorial/introduction.po index 2860a755d..32bdd1e59 100644 --- a/tutorial/introduction.po +++ b/tutorial/introduction.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/modules.po b/tutorial/modules.po index 36a398615..30aad1c32 100644 --- a/tutorial/modules.po +++ b/tutorial/modules.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/stdlib.po b/tutorial/stdlib.po index 69d4a838f..ae0c1f576 100644 --- a/tutorial/stdlib.po +++ b/tutorial/stdlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/stdlib2.po b/tutorial/stdlib2.po index ab74a088b..241d2c35d 100644 --- a/tutorial/stdlib2.po +++ b/tutorial/stdlib2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/venv.po b/tutorial/venv.po index 1fd565d3f..af5347c0c 100644 --- a/tutorial/venv.po +++ b/tutorial/venv.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/whatnow.po b/tutorial/whatnow.po index 3963a72be..9726a1ac7 100644 --- a/tutorial/whatnow.po +++ b/tutorial/whatnow.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/using/cmdline.po b/using/cmdline.po index c7ce4332c..bac4ad977 100644 --- a/using/cmdline.po +++ b/using/cmdline.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/using/configure.po b/using/configure.po index 117bf98dc..3d67c5bd3 100644 --- a/using/configure.po +++ b/using/configure.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/using/editors.po b/using/editors.po index aa6b703c9..e91f11a0e 100644 --- a/using/editors.po +++ b/using/editors.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/using/index.po b/using/index.po index 0130d9cea..c228eaacd 100644 --- a/using/index.po +++ b/using/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/using/mac.po b/using/mac.po index f0f1c1cfe..c62ec7fbc 100644 --- a/using/mac.po +++ b/using/mac.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/using/unix.po b/using/unix.po index bfc7a752e..d3d604810 100644 --- a/using/unix.po +++ b/using/unix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/using/windows.po b/using/windows.po index c25f45c3d..d74c79294 100644 --- a/using/windows.po +++ b/using/windows.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/2.0.po b/whatsnew/2.0.po index 25f93dd7b..09da134ed 100644 --- a/whatsnew/2.0.po +++ b/whatsnew/2.0.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/2.1.po b/whatsnew/2.1.po index c6f97ba9c..c71f242c9 100644 --- a/whatsnew/2.1.po +++ b/whatsnew/2.1.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/2.2.po b/whatsnew/2.2.po index f2e79d1ad..322aa734b 100644 --- a/whatsnew/2.2.po +++ b/whatsnew/2.2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/2.3.po b/whatsnew/2.3.po index be8676cc3..97a439cbf 100644 --- a/whatsnew/2.3.po +++ b/whatsnew/2.3.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/2.4.po b/whatsnew/2.4.po index 9ce86eb9a..fde05dbde 100644 --- a/whatsnew/2.4.po +++ b/whatsnew/2.4.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/2.5.po b/whatsnew/2.5.po index 25e36a374..13c5adea5 100644 --- a/whatsnew/2.5.po +++ b/whatsnew/2.5.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/2.6.po b/whatsnew/2.6.po index eb74e90aa..9a9cd8b73 100644 --- a/whatsnew/2.6.po +++ b/whatsnew/2.6.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/2.7.po b/whatsnew/2.7.po index 5de60668b..b7efde9a4 100644 --- a/whatsnew/2.7.po +++ b/whatsnew/2.7.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.0.po b/whatsnew/3.0.po index 6a8ba7356..3ec04f16b 100644 --- a/whatsnew/3.0.po +++ b/whatsnew/3.0.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.1.po b/whatsnew/3.1.po index 85fe9268a..07f881c1b 100644 --- a/whatsnew/3.1.po +++ b/whatsnew/3.1.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.10.po b/whatsnew/3.10.po index dea4bbe9d..7708374fb 100644 --- a/whatsnew/3.10.po +++ b/whatsnew/3.10.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.2.po b/whatsnew/3.2.po index b3c99de41..4e285f74a 100644 --- a/whatsnew/3.2.po +++ b/whatsnew/3.2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.3.po b/whatsnew/3.3.po index 82032caba..25dc067c7 100644 --- a/whatsnew/3.3.po +++ b/whatsnew/3.3.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.4.po b/whatsnew/3.4.po index b61e6d147..fce7bae4a 100644 --- a/whatsnew/3.4.po +++ b/whatsnew/3.4.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.5.po b/whatsnew/3.5.po index d3530a999..613b26db7 100644 --- a/whatsnew/3.5.po +++ b/whatsnew/3.5.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.6.po b/whatsnew/3.6.po index 1cb6c3005..444bee2c8 100644 --- a/whatsnew/3.6.po +++ b/whatsnew/3.6.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.7.po b/whatsnew/3.7.po index 3ab970bb2..176479e10 100644 --- a/whatsnew/3.7.po +++ b/whatsnew/3.7.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.8.po b/whatsnew/3.8.po index 53960fe6e..9d49539c4 100644 --- a/whatsnew/3.8.po +++ b/whatsnew/3.8.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.9.po b/whatsnew/3.9.po index cdbd800d1..27d8c3378 100644 --- a/whatsnew/3.9.po +++ b/whatsnew/3.9.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/changelog.po b/whatsnew/changelog.po index 4d9fe8485..07a98b257 100644 --- a/whatsnew/changelog.po +++ b/whatsnew/changelog.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/index.po b/whatsnew/index.po index f7d010ecc..c93940554 100644 --- a/whatsnew/index.po +++ b/whatsnew/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2021, Python Software Foundation +# Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy