From 4f7c3bfd2c4283157d03e4b160dcd574b839d007 Mon Sep 17 00:00:00 2001 From: python-docs-turkish Date: Sat, 4 Feb 2023 22:39:39 +0000 Subject: [PATCH 1/3] Get changes from CPython Doc for 3.11 --- Makefile | 2 +- c-api/code.po | 12 +- library/array.po | 86 +++--- library/asyncio-stream.po | 67 +++-- library/faulthandler.po | 75 +++-- library/pdb.po | 204 +++++++------ library/sqlite3.po | 610 +++++++++++++++++++------------------- library/traceback.po | 162 +++++----- tutorial/venv.po | 7 +- 9 files changed, 644 insertions(+), 581 deletions(-) diff --git a/Makefile b/Makefile index 1d26088f2..61162d2ab 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ # test build, we're building with the .rst files that generated our # .po files. -CPYTHON_CURRENT_COMMIT := e98fa7121dd80496c60f07bb51101b648fe27cda +CPYTHON_CURRENT_COMMIT := 7cbcfbe2fffebfc57c9b50ae937bfbb896401fba LANGUAGE := tr BRANCH := 3.11 diff --git a/c-api/code.po b/c-api/code.po index 3ff974df0..eda58bdcd 100644 --- a/c-api/code.po +++ b/c-api/code.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" +"POT-Creation-Date: 2023-02-04 22:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -103,28 +103,28 @@ msgstr "" msgid "Returns ``1`` if the function succeeds and 0 otherwise." msgstr "" -#: c-api/code.rst:82 +#: c-api/code.rst:84 msgid "" "Equivalent to the Python code ``getattr(co, 'co_code')``. Returns a strong " "reference to a :c:type:`PyBytesObject` representing the bytecode in a code " "object. On error, ``NULL`` is returned and an exception is raised." msgstr "" -#: c-api/code.rst:87 +#: c-api/code.rst:89 msgid "" "This ``PyBytesObject`` may be created on-demand by the interpreter and does " "not necessarily represent the bytecode actually executed by CPython. The " "primary use case for this function is debuggers and profilers." msgstr "" -#: c-api/code.rst:95 +#: c-api/code.rst:97 msgid "" "Equivalent to the Python code ``getattr(co, 'co_varnames')``. Returns a new " "reference to a :c:type:`PyTupleObject` containing the names of the local " "variables. On error, ``NULL`` is returned and an exception is raised." msgstr "" -#: c-api/code.rst:104 +#: c-api/code.rst:106 msgid "" "Equivalent to the Python code ``getattr(co, 'co_cellvars')``. Returns a new " "reference to a :c:type:`PyTupleObject` containing the names of the local " @@ -132,7 +132,7 @@ msgid "" "returned and an exception is raised." msgstr "" -#: c-api/code.rst:113 +#: c-api/code.rst:115 msgid "" "Equivalent to the Python code ``getattr(co, 'co_freevars')``. Returns a new " "reference to a :c:type:`PyTupleObject` containing the names of the free " diff --git a/library/array.po b/library/array.po index cf944e3b1..8c8a98885 100644 --- a/library/array.po +++ b/library/array.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-01 22:19+0000\n" +"POT-Creation-Date: 2023-02-04 22:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -202,7 +202,7 @@ msgstr "" msgid "" "The actual representation of values is determined by the machine " "architecture (strictly speaking, by the C implementation). The actual size " -"can be accessed through the :attr:`itemsize` attribute." +"can be accessed through the :attr:`array.itemsize` attribute." msgstr "" #: library/array.rst:65 @@ -232,13 +232,7 @@ msgid "" "initializer is passed to the :meth:`extend` method." msgstr "" -#: library/array.rst:11 -msgid "" -"Raises an :ref:`auditing event ` ``array.__new__`` with arguments " -"``typecode``, ``initializer``." -msgstr "" - -#: library/array.rst:91 +#: library/array.rst:88 msgid "" "Array objects support the ordinary sequence operations of indexing, slicing, " "concatenation, and multiplication. When using slice assignment, the " @@ -248,35 +242,37 @@ msgid "" "object>` are supported." msgstr "" -#: library/array.rst:97 -msgid "The following data items and methods are also supported:" +#: library/array.rst:17 +msgid "" +"Raises an :ref:`auditing event ` ``array.__new__`` with arguments " +"``typecode``, ``initializer``." msgstr "" -#: library/array.rst:101 +#: library/array.rst:99 msgid "The typecode character used to create the array." msgstr "" -#: library/array.rst:106 +#: library/array.rst:104 msgid "The length in bytes of one array item in the internal representation." msgstr "" -#: library/array.rst:111 +#: library/array.rst:109 msgid "Append a new item with value *x* to the end of the array." msgstr "" -#: library/array.rst:116 +#: library/array.rst:114 msgid "" "Return a tuple ``(address, length)`` giving the current memory address and " "the length in elements of the buffer used to hold array's contents. The " "size of the memory buffer in bytes can be computed as ``array.buffer_info()" "[1] * array.itemsize``. This is occasionally useful when working with low-" "level (and inherently unsafe) I/O interfaces that require memory addresses, " -"such as certain :c:func:`ioctl` operations. The returned numbers are valid " +"such as certain :c:func:`!ioctl` operations. The returned numbers are valid " "as long as the array exists and no length-changing operations are applied to " "it." msgstr "" -#: library/array.rst:126 +#: library/array.rst:124 msgid "" "When using array objects from code written in C or C++ (the only way to " "effectively make use of this information), it makes more sense to use the " @@ -285,7 +281,7 @@ msgid "" "interface is documented in :ref:`bufferobjects`." msgstr "" -#: library/array.rst:135 +#: library/array.rst:133 msgid "" "\"Byteswap\" all items of the array. This is only supported for values " "which are 1, 2, 4, or 8 bytes in size; for other types of values, :exc:" @@ -293,11 +289,11 @@ msgid "" "written on a machine with a different byte order." msgstr "" -#: library/array.rst:143 +#: library/array.rst:141 msgid "Return the number of occurrences of *x* in the array." msgstr "" -#: library/array.rst:148 +#: library/array.rst:146 msgid "" "Append items from *iterable* to the end of the array. If *iterable* is " "another array, it must have *exactly* the same type code; if not, :exc:" @@ -305,18 +301,18 @@ msgid "" "iterable and its elements must be the right type to be appended to the array." msgstr "" -#: library/array.rst:156 +#: library/array.rst:154 msgid "" "Appends items from the string, interpreting the string as an array of " "machine values (as if it had been read from a file using the :meth:" "`fromfile` method)." msgstr "" -#: library/array.rst:159 -msgid ":meth:`fromstring` is renamed to :meth:`frombytes` for clarity." +#: library/array.rst:157 +msgid ":meth:`!fromstring` is renamed to :meth:`frombytes` for clarity." msgstr "" -#: library/array.rst:165 +#: library/array.rst:163 msgid "" "Read *n* items (as machine values) from the :term:`file object` *f* and " "append them to the end of the array. If less than *n* items are available, :" @@ -324,13 +320,13 @@ msgid "" "inserted into the array." msgstr "" -#: library/array.rst:173 +#: library/array.rst:171 msgid "" "Append items from the list. This is equivalent to ``for x in list: a." "append(x)`` except that if there is a type error, the array is unchanged." msgstr "" -#: library/array.rst:179 +#: library/array.rst:177 msgid "" "Extends this array with data from the given unicode string. The array must " "be a type ``'u'`` array; otherwise a :exc:`ValueError` is raised. Use " @@ -338,7 +334,7 @@ msgid "" "array of some other type." msgstr "" -#: library/array.rst:187 +#: library/array.rst:185 msgid "" "Return the smallest *i* such that *i* is the index of the first occurrence " "of *x* in the array. The optional arguments *start* and *stop* can be " @@ -346,58 +342,58 @@ msgid "" "`ValueError` if *x* is not found." msgstr "" -#: library/array.rst:192 +#: library/array.rst:190 msgid "Added optional *start* and *stop* parameters." msgstr "" -#: library/array.rst:197 +#: library/array.rst:196 msgid "" "Insert a new item with value *x* in the array before position *i*. Negative " "values are treated as being relative to the end of the array." msgstr "" -#: library/array.rst:203 +#: library/array.rst:202 msgid "" "Removes the item with the index *i* from the array and returns it. The " "optional argument defaults to ``-1``, so that by default the last item is " "removed and returned." msgstr "" -#: library/array.rst:210 +#: library/array.rst:209 msgid "Remove the first occurrence of *x* from the array." msgstr "" -#: library/array.rst:215 +#: library/array.rst:214 msgid "Reverse the order of the items in the array." msgstr "" -#: library/array.rst:220 +#: library/array.rst:219 msgid "" "Convert the array to an array of machine values and return the bytes " "representation (the same sequence of bytes that would be written to a file " "by the :meth:`tofile` method.)" msgstr "" -#: library/array.rst:224 -msgid ":meth:`tostring` is renamed to :meth:`tobytes` for clarity." +#: library/array.rst:223 +msgid ":meth:`!tostring` is renamed to :meth:`tobytes` for clarity." msgstr "" -#: library/array.rst:230 +#: library/array.rst:229 msgid "Write all items (as machine values) to the :term:`file object` *f*." msgstr "" -#: library/array.rst:235 +#: library/array.rst:234 msgid "Convert the array to an ordinary list with the same items." msgstr "" -#: library/array.rst:240 +#: library/array.rst:239 msgid "" "Convert the array to a unicode string. The array must be a type ``'u'`` " "array; otherwise a :exc:`ValueError` is raised. Use ``array.tobytes()." "decode(enc)`` to obtain a unicode string from an array of some other type." msgstr "" -#: library/array.rst:245 +#: library/array.rst:244 msgid "" "When an array object is printed or converted to a string, it is represented " "as ``array(typecode, initializer)``. The *initializer* is omitted if the " @@ -408,28 +404,28 @@ msgid "" "``from array import array``. Examples::" msgstr "" -#: library/array.rst:262 +#: library/array.rst:261 msgid "Module :mod:`struct`" msgstr "" -#: library/array.rst:262 +#: library/array.rst:261 msgid "Packing and unpacking of heterogeneous binary data." msgstr "" -#: library/array.rst:266 +#: library/array.rst:265 msgid "Module :mod:`xdrlib`" msgstr "" -#: library/array.rst:265 +#: library/array.rst:264 msgid "" "Packing and unpacking of External Data Representation (XDR) data as used in " "some remote procedure call systems." msgstr "" -#: library/array.rst:268 +#: library/array.rst:267 msgid "`NumPy `_" msgstr "" -#: library/array.rst:269 +#: library/array.rst:268 msgid "The NumPy package defines another array type." msgstr "" diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index 8e49a83c7..6d76f2b60 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" +"POT-Creation-Date: 2023-02-04 22:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -299,35 +299,37 @@ msgid "The method closes the stream and the underlying socket." msgstr "" #: library/asyncio-stream.rst:298 -msgid "The method should be used along with the ``wait_closed()`` method::" +msgid "" +"The method should be used, though not mandatory, along with the " +"``wait_closed()`` method::" msgstr "" -#: library/asyncio-stream.rst:305 +#: library/asyncio-stream.rst:306 msgid "" "Return ``True`` if the underlying transport supports the :meth:`write_eof` " "method, ``False`` otherwise." msgstr "" -#: library/asyncio-stream.rst:310 +#: library/asyncio-stream.rst:311 msgid "" "Close the write end of the stream after the buffered write data is flushed." msgstr "" -#: library/asyncio-stream.rst:315 +#: library/asyncio-stream.rst:316 msgid "Return the underlying asyncio transport." msgstr "" -#: library/asyncio-stream.rst:319 +#: library/asyncio-stream.rst:320 msgid "" "Access optional transport information; see :meth:`BaseTransport." "get_extra_info` for details." msgstr "" -#: library/asyncio-stream.rst:324 +#: library/asyncio-stream.rst:325 msgid "Wait until it is appropriate to resume writing to the stream. Example::" msgstr "" -#: library/asyncio-stream.rst:330 +#: library/asyncio-stream.rst:331 msgid "" "This is a flow control method that interacts with the underlying IO write " "buffer. When the size of the buffer reaches the high watermark, *drain()* " @@ -336,115 +338,116 @@ msgid "" "`drain` returns immediately." msgstr "" -#: library/asyncio-stream.rst:340 +#: library/asyncio-stream.rst:341 msgid "Upgrade an existing stream-based connection to TLS." msgstr "" -#: library/asyncio-stream.rst:342 +#: library/asyncio-stream.rst:343 msgid "Parameters:" msgstr "" -#: library/asyncio-stream.rst:344 +#: library/asyncio-stream.rst:345 msgid "*sslcontext*: a configured instance of :class:`~ssl.SSLContext`." msgstr "" -#: library/asyncio-stream.rst:346 +#: library/asyncio-stream.rst:347 msgid "" "*server_hostname*: sets or overrides the host name that the target server's " "certificate will be matched against." msgstr "" -#: library/asyncio-stream.rst:349 +#: library/asyncio-stream.rst:350 msgid "" "*ssl_handshake_timeout* is the time in seconds to wait for the TLS handshake " "to complete before aborting the connection. ``60.0`` seconds if ``None`` " "(default)." msgstr "" -#: library/asyncio-stream.rst:357 +#: library/asyncio-stream.rst:358 msgid "" "Return ``True`` if the stream is closed or in the process of being closed." msgstr "" -#: library/asyncio-stream.rst:364 +#: library/asyncio-stream.rst:365 msgid "Wait until the stream is closed." msgstr "" -#: library/asyncio-stream.rst:366 +#: library/asyncio-stream.rst:367 msgid "" "Should be called after :meth:`close` to wait until the underlying connection " -"is closed." +"is closed, ensuring that all data has been flushed before e.g. exiting the " +"program." msgstr "" -#: library/asyncio-stream.rst:373 +#: library/asyncio-stream.rst:375 msgid "Examples" msgstr "" -#: library/asyncio-stream.rst:378 +#: library/asyncio-stream.rst:380 msgid "TCP echo client using streams" msgstr "" -#: library/asyncio-stream.rst:380 +#: library/asyncio-stream.rst:382 msgid "TCP echo client using the :func:`asyncio.open_connection` function::" msgstr "" -#: library/asyncio-stream.rst:403 +#: library/asyncio-stream.rst:406 msgid "" "The :ref:`TCP echo client protocol " "` example uses the low-level :meth:" "`loop.create_connection` method." msgstr "" -#: library/asyncio-stream.rst:410 +#: library/asyncio-stream.rst:413 msgid "TCP echo server using streams" msgstr "" -#: library/asyncio-stream.rst:412 +#: library/asyncio-stream.rst:415 msgid "TCP echo server using the :func:`asyncio.start_server` function::" msgstr "" -#: library/asyncio-stream.rst:445 +#: library/asyncio-stream.rst:449 msgid "" "The :ref:`TCP echo server protocol " "` example uses the :meth:`loop." "create_server` method." msgstr "" -#: library/asyncio-stream.rst:450 +#: library/asyncio-stream.rst:454 msgid "Get HTTP headers" msgstr "" -#: library/asyncio-stream.rst:452 +#: library/asyncio-stream.rst:456 msgid "" "Simple example querying HTTP headers of the URL passed on the command line::" msgstr "" -#: library/asyncio-stream.rst:490 +#: library/asyncio-stream.rst:495 msgid "Usage::" msgstr "" -#: library/asyncio-stream.rst:494 +#: library/asyncio-stream.rst:499 msgid "or with HTTPS::" msgstr "" -#: library/asyncio-stream.rst:502 +#: library/asyncio-stream.rst:507 msgid "Register an open socket to wait for data using streams" msgstr "" -#: library/asyncio-stream.rst:504 +#: library/asyncio-stream.rst:509 msgid "" "Coroutine waiting until a socket receives data using the :func:" "`open_connection` function::" msgstr "" -#: library/asyncio-stream.rst:538 +#: library/asyncio-stream.rst:544 msgid "" "The :ref:`register an open socket to wait for data using a protocol " "` example uses a low-level protocol and " "the :meth:`loop.create_connection` method." msgstr "" -#: library/asyncio-stream.rst:542 +#: library/asyncio-stream.rst:548 msgid "" "The :ref:`watch a file descriptor for read events " "` example uses the low-level :meth:`loop." diff --git a/library/faulthandler.po b/library/faulthandler.po index abd52be25..defa3a550 100644 --- a/library/faulthandler.po +++ b/library/faulthandler.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" +"POT-Creation-Date: 2023-02-04 22:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -90,25 +90,48 @@ msgid "" "enable` at Python startup." msgstr "" -#: library/faulthandler.rst:48 -msgid "Dumping the traceback" +#: library/faulthandler.rst:49 +msgid "Module :mod:`pdb`" +msgstr "" + +#: library/faulthandler.rst:49 +msgid "Interactive source code debugger for Python programs." +msgstr "" + +#: library/faulthandler.rst:51 +msgid "Module :mod:`traceback`" msgstr "" #: library/faulthandler.rst:52 msgid "" +"Standard interface to extract, format and print stack traces of Python " +"programs." +msgstr "" + +#: library/faulthandler.rst:55 +msgid "Dumping the traceback" +msgstr "" + +#: library/faulthandler.rst:59 +msgid "" "Dump the tracebacks of all threads into *file*. If *all_threads* is " "``False``, dump only the current thread." msgstr "" -#: library/faulthandler.rst:73 library/faulthandler.rst:137 +#: library/faulthandler.rst:62 +msgid "" +":func:`traceback.print_tb`, which can be used to print a traceback object." +msgstr "" + +#: library/faulthandler.rst:82 library/faulthandler.rst:146 msgid "Added support for passing file descriptor to this function." msgstr "" -#: library/faulthandler.rst:60 +#: library/faulthandler.rst:69 msgid "Fault handler state" msgstr "" -#: library/faulthandler.rst:64 +#: library/faulthandler.rst:73 msgid "" "Enable the fault handler: install handlers for the :const:`SIGSEGV`, :const:" "`SIGFPE`, :const:`SIGABRT`, :const:`SIGBUS` and :const:`SIGILL` signals to " @@ -116,37 +139,37 @@ msgid "" "for every running thread. Otherwise, dump only the current thread." msgstr "" -#: library/faulthandler.rst:70 +#: library/faulthandler.rst:79 msgid "" "The *file* must be kept open until the fault handler is disabled: see :ref:" "`issue with file descriptors `." msgstr "" -#: library/faulthandler.rst:76 +#: library/faulthandler.rst:85 msgid "On Windows, a handler for Windows exception is also installed." msgstr "" -#: library/faulthandler.rst:79 +#: library/faulthandler.rst:88 msgid "" "The dump now mentions if a garbage collector collection is running if " "*all_threads* is true." msgstr "" -#: library/faulthandler.rst:85 +#: library/faulthandler.rst:94 msgid "" "Disable the fault handler: uninstall the signal handlers installed by :func:" "`enable`." msgstr "" -#: library/faulthandler.rst:90 +#: library/faulthandler.rst:99 msgid "Check if the fault handler is enabled." msgstr "" -#: library/faulthandler.rst:94 +#: library/faulthandler.rst:103 msgid "Dumping the tracebacks after a timeout" msgstr "" -#: library/faulthandler.rst:98 +#: library/faulthandler.rst:107 msgid "" "Dump the tracebacks of all threads, after a timeout of *timeout* seconds, or " "every *timeout* seconds if *repeat* is ``True``. If *exit* is ``True``, " @@ -157,58 +180,58 @@ msgid "" "a sub-second resolution." msgstr "" -#: library/faulthandler.rst:106 +#: library/faulthandler.rst:115 msgid "" "The *file* must be kept open until the traceback is dumped or :func:" "`cancel_dump_traceback_later` is called: see :ref:`issue with file " "descriptors `." msgstr "" -#: library/faulthandler.rst:110 +#: library/faulthandler.rst:119 msgid "This function is implemented using a watchdog thread." msgstr "" -#: library/faulthandler.rst:112 +#: library/faulthandler.rst:121 msgid "This function is now always available." msgstr "" -#: library/faulthandler.rst:120 +#: library/faulthandler.rst:129 msgid "Cancel the last call to :func:`dump_traceback_later`." msgstr "" -#: library/faulthandler.rst:124 +#: library/faulthandler.rst:133 msgid "Dumping the traceback on a user signal" msgstr "" -#: library/faulthandler.rst:128 +#: library/faulthandler.rst:137 msgid "" "Register a user signal: install a handler for the *signum* signal to dump " "the traceback of all threads, or of the current thread if *all_threads* is " "``False``, into *file*. Call the previous handler if chain is ``True``." msgstr "" -#: library/faulthandler.rst:132 +#: library/faulthandler.rst:141 msgid "" "The *file* must be kept open until the signal is unregistered by :func:" "`unregister`: see :ref:`issue with file descriptors `." msgstr "" -#: library/faulthandler.rst:146 +#: library/faulthandler.rst:155 msgid "Not available on Windows." msgstr "" -#: library/faulthandler.rst:142 +#: library/faulthandler.rst:151 msgid "" "Unregister a user signal: uninstall the handler of the *signum* signal " "installed by :func:`register`. Return ``True`` if the signal was registered, " "``False`` otherwise." msgstr "" -#: library/faulthandler.rst:152 +#: library/faulthandler.rst:161 msgid "Issue with file descriptors" msgstr "" -#: library/faulthandler.rst:154 +#: library/faulthandler.rst:163 msgid "" ":func:`enable`, :func:`dump_traceback_later` and :func:`register` keep the " "file descriptor of their *file* argument. If the file is closed and its file " @@ -217,11 +240,11 @@ msgid "" "Call these functions again each time that the file is replaced." msgstr "" -#: library/faulthandler.rst:162 +#: library/faulthandler.rst:171 msgid "Example" msgstr "" -#: library/faulthandler.rst:164 +#: library/faulthandler.rst:173 msgid "" "Example of a segmentation fault on Linux with and without enabling the fault " "handler:" diff --git a/library/pdb.po b/library/pdb.po index 39c0cf1dd..3be8c7195 100644 --- a/library/pdb.po +++ b/library/pdb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-01 22:19+0000\n" +"POT-Creation-Date: 2023-02-04 22:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -41,26 +41,46 @@ msgid "" "source. The extension interface uses the modules :mod:`bdb` and :mod:`cmd`." msgstr "" -#: library/pdb.rst:30 +#: library/pdb.rst:34 +msgid "Module :mod:`faulthandler`" +msgstr "" + +#: library/pdb.rst:33 +msgid "" +"Used to dump Python tracebacks explicitly, on a fault, after a timeout, or " +"on a user signal." +msgstr "" + +#: library/pdb.rst:36 +msgid "Module :mod:`traceback`" +msgstr "" + +#: library/pdb.rst:37 +msgid "" +"Standard interface to extract, format and print stack traces of Python " +"programs." +msgstr "" + +#: library/pdb.rst:39 msgid "" "The debugger's prompt is ``(Pdb)``. Typical usage to run a program under " "control of the debugger is::" msgstr "" -#: library/pdb.rst:44 +#: library/pdb.rst:53 msgid "" "Tab-completion via the :mod:`readline` module is available for commands and " "command arguments, e.g. the current global and local names are offered as " "arguments of the ``p`` command." msgstr "" -#: library/pdb.rst:49 +#: library/pdb.rst:58 msgid "" ":file:`pdb.py` can also be invoked as a script to debug other scripts. For " "example::" msgstr "" -#: library/pdb.rst:54 +#: library/pdb.rst:63 msgid "" "When invoked as a script, pdb will automatically enter post-mortem debugging " "if the program being debugged exits abnormally. After post-mortem debugging " @@ -69,47 +89,47 @@ msgid "" "cases is more useful than quitting the debugger upon program's exit." msgstr "" -#: library/pdb.rst:60 +#: library/pdb.rst:69 msgid "" ":file:`pdb.py` now accepts a ``-c`` option that executes commands as if " "given in a :file:`.pdbrc` file, see :ref:`debugger-commands`." msgstr "" -#: library/pdb.rst:64 +#: library/pdb.rst:73 msgid "" ":file:`pdb.py` now accepts a ``-m`` option that execute modules similar to " "the way ``python3 -m`` does. As with a script, the debugger will pause " "execution just before the first line of the module." msgstr "" -#: library/pdb.rst:70 +#: library/pdb.rst:79 msgid "The typical usage to break into the debugger is to insert::" msgstr "" -#: library/pdb.rst:74 +#: library/pdb.rst:83 msgid "" "at the location you want to break into the debugger, and then run the " "program. You can then step through the code following this statement, and " "continue running without the debugger using the :pdbcmd:`continue` command." msgstr "" -#: library/pdb.rst:78 +#: library/pdb.rst:87 msgid "" "The built-in :func:`breakpoint()`, when called with defaults, can be used " "instead of ``import pdb; pdb.set_trace()``." msgstr "" -#: library/pdb.rst:82 +#: library/pdb.rst:91 msgid "The typical usage to inspect a crashed program is::" msgstr "" -#: library/pdb.rst:100 +#: library/pdb.rst:109 msgid "" "The module defines the following functions; each enters the debugger in a " "slightly different way:" msgstr "" -#: library/pdb.rst:105 +#: library/pdb.rst:114 msgid "" "Execute the *statement* (given as a string or a code object) under debugger " "control. The debugger prompt appears before any code is executed; you can " @@ -121,14 +141,14 @@ msgid "" "`exec` or :func:`eval` functions.)" msgstr "" -#: library/pdb.rst:117 +#: library/pdb.rst:126 msgid "" "Evaluate the *expression* (given as a string or a code object) under " "debugger control. When :func:`runeval` returns, it returns the value of the " "expression. Otherwise this function is similar to :func:`run`." msgstr "" -#: library/pdb.rst:124 +#: library/pdb.rst:133 msgid "" "Call the *function* (a function or method object, not a string) with the " "given arguments. When :func:`runcall` returns, it returns whatever the " @@ -136,7 +156,7 @@ msgid "" "is entered." msgstr "" -#: library/pdb.rst:132 +#: library/pdb.rst:141 msgid "" "Enter the debugger at the calling stack frame. This is useful to hard-code " "a breakpoint at a given point in a program, even if the code is not " @@ -144,11 +164,11 @@ msgid "" "is printed to the console just before debugging begins." msgstr "" -#: library/pdb.rst:137 +#: library/pdb.rst:146 msgid "The keyword-only argument *header*." msgstr "" -#: library/pdb.rst:143 +#: library/pdb.rst:152 msgid "" "Enter post-mortem debugging of the given *traceback* object. If no " "*traceback* is given, it uses the one of the exception that is currently " @@ -156,37 +176,37 @@ msgid "" "used)." msgstr "" -#: library/pdb.rst:151 +#: library/pdb.rst:160 msgid "" "Enter post-mortem debugging of the traceback found in :data:`sys." "last_traceback`." msgstr "" -#: library/pdb.rst:155 +#: library/pdb.rst:164 msgid "" "The ``run*`` functions and :func:`set_trace` are aliases for instantiating " "the :class:`Pdb` class and calling the method of the same name. If you want " "to access further features, you have to do this yourself:" msgstr "" -#: library/pdb.rst:162 +#: library/pdb.rst:171 msgid ":class:`Pdb` is the debugger class." msgstr "" -#: library/pdb.rst:164 +#: library/pdb.rst:173 msgid "" "The *completekey*, *stdin* and *stdout* arguments are passed to the " "underlying :class:`cmd.Cmd` class; see the description there." msgstr "" -#: library/pdb.rst:167 +#: library/pdb.rst:176 msgid "" "The *skip* argument, if given, must be an iterable of glob-style module name " "patterns. The debugger will not step into frames that originate in a module " "that matches one of these patterns. [1]_" msgstr "" -#: library/pdb.rst:171 +#: library/pdb.rst:180 msgid "" "By default, Pdb sets a handler for the SIGINT signal (which is sent when the " "user presses :kbd:`Ctrl-C` on the console) when you give a ``continue`` " @@ -195,13 +215,13 @@ msgid "" "to true." msgstr "" -#: library/pdb.rst:176 +#: library/pdb.rst:185 msgid "" "The *readrc* argument defaults to true and controls whether Pdb will load ." "pdbrc files from the filesystem." msgstr "" -#: library/pdb.rst:179 +#: library/pdb.rst:188 msgid "Example call to enable tracing with *skip*::" msgstr "" @@ -210,28 +230,28 @@ msgid "" "Raises an :ref:`auditing event ` ``pdb.Pdb`` with no arguments." msgstr "" -#: library/pdb.rst:185 +#: library/pdb.rst:194 msgid "The *skip* argument." msgstr "" -#: library/pdb.rst:188 +#: library/pdb.rst:197 msgid "" "The *nosigint* argument. Previously, a SIGINT handler was never set by Pdb." msgstr "" -#: library/pdb.rst:192 +#: library/pdb.rst:201 msgid "The *readrc* argument." msgstr "" -#: library/pdb.rst:200 +#: library/pdb.rst:209 msgid "See the documentation for the functions explained above." msgstr "" -#: library/pdb.rst:206 +#: library/pdb.rst:215 msgid "Debugger Commands" msgstr "" -#: library/pdb.rst:208 +#: library/pdb.rst:217 msgid "" "The commands recognized by the debugger are listed below. Most commands can " "be abbreviated to one or two letters as indicated; e.g. ``h(elp)`` means " @@ -243,13 +263,13 @@ msgid "" "are separated by a vertical bar (``|``)." msgstr "" -#: library/pdb.rst:217 +#: library/pdb.rst:226 msgid "" "Entering a blank line repeats the last command entered. Exception: if the " "last command was a :pdbcmd:`list` command, the next 11 lines are listed." msgstr "" -#: library/pdb.rst:220 +#: library/pdb.rst:229 msgid "" "Commands that the debugger doesn't recognize are assumed to be Python " "statements and are executed in the context of the program being debugged. " @@ -260,14 +280,14 @@ msgid "" "is not changed." msgstr "" -#: library/pdb.rst:228 +#: library/pdb.rst:237 msgid "" "The debugger supports :ref:`aliases `. Aliases can have " "parameters which allows one a certain level of adaptability to the context " "under examination." msgstr "" -#: library/pdb.rst:232 +#: library/pdb.rst:241 msgid "" "Multiple commands may be entered on a single line, separated by ``;;``. (A " "single ``;`` is not used as it is the separator for multiple commands in a " @@ -278,7 +298,7 @@ msgid "" "\"\";\"``." msgstr "" -#: library/pdb.rst:243 +#: library/pdb.rst:252 msgid "" "If a file :file:`.pdbrc` exists in the user's home directory or in the " "current directory, it is read with ``'utf-8'`` encoding and executed as if " @@ -287,20 +307,20 @@ msgid "" "and aliases defined there can be overridden by the local file." msgstr "" -#: library/pdb.rst:249 +#: library/pdb.rst:258 msgid "" ":file:`.pdbrc` is now read with ``'utf-8'`` encoding. Previously, it was " "read with the system locale encoding." msgstr "" -#: library/pdb.rst:253 +#: library/pdb.rst:262 msgid "" ":file:`.pdbrc` can now contain commands that continue debugging, such as :" "pdbcmd:`continue` or :pdbcmd:`next`. Previously, these commands had no " "effect." msgstr "" -#: library/pdb.rst:261 +#: library/pdb.rst:270 msgid "" "Without argument, print the list of available commands. With a *command* as " "argument, print help about that command. ``help pdb`` displays the full " @@ -309,25 +329,25 @@ msgid "" "the ``!`` command." msgstr "" -#: library/pdb.rst:269 +#: library/pdb.rst:278 msgid "" "Print a stack trace, with the most recent frame at the bottom. An arrow " "indicates the current frame, which determines the context of most commands." msgstr "" -#: library/pdb.rst:274 +#: library/pdb.rst:283 msgid "" "Move the current frame *count* (default one) levels down in the stack trace " "(to a newer frame)." msgstr "" -#: library/pdb.rst:279 +#: library/pdb.rst:288 msgid "" "Move the current frame *count* (default one) levels up in the stack trace " "(to an older frame)." msgstr "" -#: library/pdb.rst:284 +#: library/pdb.rst:293 msgid "" "With a *lineno* argument, set a break there in the current file. With a " "*function* argument, set a break at the first executable statement within " @@ -338,33 +358,33 @@ msgid "" "refer." msgstr "" -#: library/pdb.rst:291 +#: library/pdb.rst:300 msgid "" "If a second argument is present, it is an expression which must evaluate to " "true before the breakpoint is honored." msgstr "" -#: library/pdb.rst:294 +#: library/pdb.rst:303 msgid "" "Without argument, list all breaks, including for each breakpoint, the number " "of times that breakpoint has been hit, the current ignore count, and the " "associated condition if any." msgstr "" -#: library/pdb.rst:300 +#: library/pdb.rst:309 msgid "" "Temporary breakpoint, which is removed automatically when it is first hit. " "The arguments are the same as for :pdbcmd:`break`." msgstr "" -#: library/pdb.rst:305 +#: library/pdb.rst:314 msgid "" "With a *filename:lineno* argument, clear all the breakpoints at this line. " "With a space separated list of breakpoint numbers, clear those breakpoints. " "Without argument, clear all breaks (but first ask confirmation)." msgstr "" -#: library/pdb.rst:311 +#: library/pdb.rst:320 msgid "" "Disable the breakpoints given as a space separated list of breakpoint " "numbers. Disabling a breakpoint means it cannot cause the program to stop " @@ -372,11 +392,11 @@ msgid "" "breakpoints and can be (re-)enabled." msgstr "" -#: library/pdb.rst:318 +#: library/pdb.rst:327 msgid "Enable the breakpoints specified." msgstr "" -#: library/pdb.rst:322 +#: library/pdb.rst:331 msgid "" "Set the ignore count for the given breakpoint number. If count is omitted, " "the ignore count is set to 0. A breakpoint becomes active when the ignore " @@ -385,39 +405,39 @@ msgid "" "condition evaluates to true." msgstr "" -#: library/pdb.rst:330 +#: library/pdb.rst:339 msgid "" "Set a new *condition* for the breakpoint, an expression which must evaluate " "to true before the breakpoint is honored. If *condition* is absent, any " "existing condition is removed; i.e., the breakpoint is made unconditional." msgstr "" -#: library/pdb.rst:336 +#: library/pdb.rst:345 msgid "" "Specify a list of commands for breakpoint number *bpnumber*. The commands " "themselves appear on the following lines. Type a line containing just " "``end`` to terminate the commands. An example::" msgstr "" -#: library/pdb.rst:345 +#: library/pdb.rst:354 msgid "" "To remove all commands from a breakpoint, type ``commands`` and follow it " "immediately with ``end``; that is, give no commands." msgstr "" -#: library/pdb.rst:348 +#: library/pdb.rst:357 msgid "" "With no *bpnumber* argument, ``commands`` refers to the last breakpoint set." msgstr "" -#: library/pdb.rst:350 +#: library/pdb.rst:359 msgid "" "You can use breakpoint commands to start your program up again. Simply use " "the :pdbcmd:`continue` command, or :pdbcmd:`step`, or any other command that " "resumes execution." msgstr "" -#: library/pdb.rst:354 +#: library/pdb.rst:363 msgid "" "Specifying any command resuming execution (currently :pdbcmd:`continue`, :" "pdbcmd:`step`, :pdbcmd:`next`, :pdbcmd:`return`, :pdbcmd:`jump`, :pdbcmd:" @@ -428,7 +448,7 @@ msgid "" "ambiguities about which list to execute." msgstr "" -#: library/pdb.rst:363 +#: library/pdb.rst:372 msgid "" "If you use the 'silent' command in the command list, the usual message about " "stopping at a breakpoint is not printed. This may be desirable for " @@ -437,13 +457,13 @@ msgid "" "was reached." msgstr "" -#: library/pdb.rst:370 +#: library/pdb.rst:379 msgid "" "Execute the current line, stop at the first possible occasion (either in a " "function that is called or on the next line in the current function)." msgstr "" -#: library/pdb.rst:375 +#: library/pdb.rst:384 msgid "" "Continue execution until the next line in the current function is reached or " "it returns. (The difference between :pdbcmd:`next` and :pdbcmd:`step` is " @@ -452,46 +472,46 @@ msgid "" "line in the current function.)" msgstr "" -#: library/pdb.rst:383 +#: library/pdb.rst:392 msgid "" "Without argument, continue execution until the line with a number greater " "than the current one is reached." msgstr "" -#: library/pdb.rst:386 +#: library/pdb.rst:395 msgid "" "With a line number, continue execution until a line with a number greater or " "equal to that is reached. In both cases, also stop when the current frame " "returns." msgstr "" -#: library/pdb.rst:390 +#: library/pdb.rst:399 msgid "Allow giving an explicit line number." msgstr "" -#: library/pdb.rst:395 +#: library/pdb.rst:404 msgid "Continue execution until the current function returns." msgstr "" -#: library/pdb.rst:399 +#: library/pdb.rst:408 msgid "Continue execution, only stop when a breakpoint is encountered." msgstr "" -#: library/pdb.rst:403 +#: library/pdb.rst:412 msgid "" "Set the next line that will be executed. Only available in the bottom-most " "frame. This lets you jump back and execute code again, or jump forward to " "skip code that you don't want to run." msgstr "" -#: library/pdb.rst:407 +#: library/pdb.rst:416 msgid "" "It should be noted that not all jumps are allowed -- for instance it is not " "possible to jump into the middle of a :keyword:`for` loop or out of a :" "keyword:`finally` clause." msgstr "" -#: library/pdb.rst:413 +#: library/pdb.rst:422 msgid "" "List source code for the current file. Without arguments, list 11 lines " "around the current line or continue the previous listing. With ``.`` as " @@ -500,7 +520,7 @@ msgid "" "second argument is less than the first, it is interpreted as a count." msgstr "" -#: library/pdb.rst:419 +#: library/pdb.rst:428 msgid "" "The current line in the current frame is indicated by ``->``. If an " "exception is being debugged, the line where the exception was originally " @@ -508,68 +528,68 @@ msgid "" "line." msgstr "" -#: library/pdb.rst:424 +#: library/pdb.rst:433 msgid "The ``>>`` marker." msgstr "" -#: library/pdb.rst:429 +#: library/pdb.rst:438 msgid "" "List all source code for the current function or frame. Interesting lines " "are marked as for :pdbcmd:`list`." msgstr "" -#: library/pdb.rst:436 +#: library/pdb.rst:445 msgid "Print the argument list of the current function." msgstr "" -#: library/pdb.rst:440 +#: library/pdb.rst:449 msgid "Evaluate the *expression* in the current context and print its value." msgstr "" -#: library/pdb.rst:444 +#: library/pdb.rst:453 msgid "" "``print()`` can also be used, but is not a debugger command --- this " "executes the Python :func:`print` function." msgstr "" -#: library/pdb.rst:450 +#: library/pdb.rst:459 msgid "" "Like the :pdbcmd:`p` command, except the value of the expression is pretty-" "printed using the :mod:`pprint` module." msgstr "" -#: library/pdb.rst:455 +#: library/pdb.rst:464 msgid "Print the type of the *expression*." msgstr "" -#: library/pdb.rst:459 +#: library/pdb.rst:468 msgid "Try to get source code for the given object and display it." msgstr "" -#: library/pdb.rst:465 +#: library/pdb.rst:474 msgid "" "Display the value of the expression if it changed, each time execution stops " "in the current frame." msgstr "" -#: library/pdb.rst:468 +#: library/pdb.rst:477 msgid "Without expression, list all display expressions for the current frame." msgstr "" -#: library/pdb.rst:474 +#: library/pdb.rst:483 msgid "" "Do not display the expression any more in the current frame. Without " "expression, clear all display expressions for the current frame." msgstr "" -#: library/pdb.rst:481 +#: library/pdb.rst:490 msgid "" "Start an interactive interpreter (using the :mod:`code` module) whose global " "namespace contains all the (global and local) names found in the current " "scope." msgstr "" -#: library/pdb.rst:491 +#: library/pdb.rst:500 msgid "" "Create an alias called *name* that executes *command*. The command must " "*not* be enclosed in quotes. Replaceable parameters can be indicated by " @@ -578,7 +598,7 @@ msgid "" "arguments are given, all aliases are listed." msgstr "" -#: library/pdb.rst:497 +#: library/pdb.rst:506 msgid "" "Aliases may be nested and can contain anything that can be legally typed at " "the pdb prompt. Note that internal pdb commands *can* be overridden by " @@ -587,17 +607,17 @@ msgid "" "other words in the line are left alone." msgstr "" -#: library/pdb.rst:503 +#: library/pdb.rst:512 msgid "" "As an example, here are two useful aliases (especially when placed in the :" "file:`.pdbrc` file)::" msgstr "" -#: library/pdb.rst:513 +#: library/pdb.rst:522 msgid "Delete the specified alias." msgstr "" -#: library/pdb.rst:517 +#: library/pdb.rst:526 msgid "" "Execute the (one-line) *statement* in the context of the current stack " "frame. The exclamation point can be omitted unless the first word of the " @@ -606,7 +626,7 @@ msgid "" "line, e.g.::" msgstr "" -#: library/pdb.rst:529 +#: library/pdb.rst:538 msgid "" "Restart the debugged Python program. If an argument is supplied, it is " "split with :mod:`shlex` and the result is used as the new :data:`sys.argv`. " @@ -614,25 +634,25 @@ msgid "" "`restart` is an alias for :pdbcmd:`run`." msgstr "" -#: library/pdb.rst:536 +#: library/pdb.rst:545 msgid "Quit from the debugger. The program being executed is aborted." msgstr "" -#: library/pdb.rst:540 +#: library/pdb.rst:549 msgid "" "Enter a recursive debugger that steps through the code argument (which is an " "arbitrary expression or statement to be executed in the current environment)." msgstr "" -#: library/pdb.rst:546 +#: library/pdb.rst:555 msgid "Print the return value for the last return of a function." msgstr "" -#: library/pdb.rst:549 +#: library/pdb.rst:558 msgid "Footnotes" msgstr "" -#: library/pdb.rst:550 +#: library/pdb.rst:559 msgid "" "Whether a frame is considered to originate in a certain module is determined " "by the ``__name__`` in the frame globals." diff --git a/library/sqlite3.po b/library/sqlite3.po index 0a91b5dda..9ce2f1eec 100644 --- a/library/sqlite3.po +++ b/library/sqlite3.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-01 22:19+0000\n" +"POT-Creation-Date: 2023-02-04 22:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -234,7 +234,7 @@ msgstr "" msgid ":ref:`sqlite3-converters`" msgstr "" -#: library/sqlite3.rst:554 +#: library/sqlite3.rst:557 msgid ":ref:`sqlite3-connection-context-manager`" msgstr "" @@ -301,24 +301,26 @@ msgstr "" #: library/sqlite3.rst:301 msgid "" -"If ``True`` (default), only the creating thread may use the connection. If " -"``False``, the connection may be shared across multiple threads; if so, " -"write operations should be serialized by the user to avoid data corruption." +"If ``True`` (default), :exc:`ProgrammingError` will be raised if the " +"database connection is used by a thread other than the one that created it. " +"If ``False``, the connection may be accessed in multiple threads; write " +"operations may need to be serialized by the user to avoid data corruption. " +"See :attr:`threadsafety` for more information." msgstr "" -#: library/sqlite3.rst:307 +#: library/sqlite3.rst:310 msgid "" "A custom subclass of :class:`Connection` to create the connection with, if " "not the default :class:`Connection` class." msgstr "" -#: library/sqlite3.rst:311 +#: library/sqlite3.rst:314 msgid "" "The number of statements that :mod:`!sqlite3` should internally cache for " "this connection, to avoid parsing overhead. By default, 128 statements." msgstr "" -#: library/sqlite3.rst:316 +#: library/sqlite3.rst:319 msgid "" "If set to ``True``, *database* is interpreted as a :abbr:`URI (Uniform " "Resource Identifier)` with a file path and an optional query string. The " @@ -331,32 +333,32 @@ msgstr "" msgid "Return type" msgstr "" -#: library/sqlite3.rst:64 +#: library/sqlite3.rst:67 msgid "" "Raises an :ref:`auditing event ` ``sqlite3.connect`` with argument " "``database``." msgstr "" -#: library/sqlite3.rst:65 +#: library/sqlite3.rst:68 msgid "" "Raises an :ref:`auditing event ` ``sqlite3.connect/handle`` with " "argument ``connection_handle``." msgstr "" -#: library/sqlite3.rst:330 +#: library/sqlite3.rst:333 msgid "The *uri* parameter." msgstr "" -#: library/sqlite3.rst:333 +#: library/sqlite3.rst:336 msgid "" "*database* can now also be a :term:`path-like object`, not only a string." msgstr "" -#: library/sqlite3.rst:336 +#: library/sqlite3.rst:339 msgid "The ``sqlite3.connect/handle`` auditing event." msgstr "" -#: library/sqlite3.rst:341 +#: library/sqlite3.rst:344 msgid "" "Return ``True`` if the string *statement* appears to contain one or more " "complete SQL statements. No syntactic verification or parsing of any kind is " @@ -364,18 +366,18 @@ msgid "" "and the statement is terminated by a semicolon." msgstr "" -#: library/sqlite3.rst:347 +#: library/sqlite3.rst:350 msgid "For example:" msgstr "" -#: library/sqlite3.rst:356 +#: library/sqlite3.rst:359 msgid "" "This function may be useful during command-line input to determine if the " "entered text seems to form a complete SQL statement, or if additional input " "is needed before calling :meth:`~Cursor.execute`." msgstr "" -#: library/sqlite3.rst:362 +#: library/sqlite3.rst:365 msgid "" "Enable or disable callback tracebacks. By default you will not get any " "tracebacks in user-defined functions, aggregates, converters, authorizer " @@ -384,13 +386,13 @@ msgid "" "on :data:`sys.stderr`. Use ``False`` to disable the feature again." msgstr "" -#: library/sqlite3.rst:369 +#: library/sqlite3.rst:372 msgid "" "Register an :func:`unraisable hook handler ` for an " "improved debug experience:" msgstr "" -#: library/sqlite3.rst:394 +#: library/sqlite3.rst:397 msgid "" "Register an *adapter* callable to adapt the Python type *type* into an " "SQLite type. The adapter is called with a Python object of type *type* as " @@ -398,7 +400,7 @@ msgid "" "natively understands `." msgstr "" -#: library/sqlite3.rst:402 +#: library/sqlite3.rst:405 msgid "" "Register the *converter* callable to convert SQLite objects of type " "*typename* into a Python object of a specific type. The converter is invoked " @@ -408,17 +410,17 @@ msgid "" "type detection works." msgstr "" -#: library/sqlite3.rst:410 +#: library/sqlite3.rst:413 msgid "" "Note: *typename* and the name of the type in your query are matched case-" "insensitively." msgstr "" -#: library/sqlite3.rst:417 +#: library/sqlite3.rst:420 msgid "Module constants" msgstr "" -#: library/sqlite3.rst:421 +#: library/sqlite3.rst:424 msgid "" "Pass this flag value to the *detect_types* parameter of :func:`connect` to " "look up a converter function by using the type name, parsed from the query " @@ -426,13 +428,13 @@ msgid "" "in square brackets (``[]``)." msgstr "" -#: library/sqlite3.rst:431 +#: library/sqlite3.rst:434 msgid "" "This flag may be combined with :const:`PARSE_DECLTYPES` using the ``|`` " "(bitwise or) operator." msgstr "" -#: library/sqlite3.rst:436 +#: library/sqlite3.rst:439 msgid "" "Pass this flag value to the *detect_types* parameter of :func:`connect` to " "look up a converter function using the declared types for each column. The " @@ -441,61 +443,61 @@ msgid "" "the converter dictionary key. For example:" msgstr "" -#: library/sqlite3.rst:452 +#: library/sqlite3.rst:455 msgid "" "This flag may be combined with :const:`PARSE_COLNAMES` using the ``|`` " "(bitwise or) operator." msgstr "" -#: library/sqlite3.rst:459 +#: library/sqlite3.rst:462 msgid "" "Flags that should be returned by the *authorizer_callback* callable passed " "to :meth:`Connection.set_authorizer`, to indicate whether:" msgstr "" -#: library/sqlite3.rst:462 +#: library/sqlite3.rst:465 msgid "Access is allowed (:const:`!SQLITE_OK`)," msgstr "" -#: library/sqlite3.rst:463 +#: library/sqlite3.rst:466 msgid "" "The SQL statement should be aborted with an error (:const:`!SQLITE_DENY`)" msgstr "" -#: library/sqlite3.rst:464 +#: library/sqlite3.rst:467 msgid "" "The column should be treated as a ``NULL`` value (:const:`!SQLITE_IGNORE`)" msgstr "" -#: library/sqlite3.rst:468 +#: library/sqlite3.rst:471 msgid "" "String constant stating the supported DB-API level. Required by the DB-API. " "Hard-coded to ``\"2.0\"``." msgstr "" -#: library/sqlite3.rst:473 +#: library/sqlite3.rst:476 msgid "" "String constant stating the type of parameter marker formatting expected by " "the :mod:`!sqlite3` module. Required by the DB-API. Hard-coded to " "``\"qmark\"``." msgstr "" -#: library/sqlite3.rst:479 +#: library/sqlite3.rst:482 msgid "The ``named`` DB-API parameter style is also supported." msgstr "" -#: library/sqlite3.rst:483 +#: library/sqlite3.rst:486 msgid "" "Version number of the runtime SQLite library as a :class:`string `." msgstr "" -#: library/sqlite3.rst:487 +#: library/sqlite3.rst:490 msgid "" "Version number of the runtime SQLite library as a :class:`tuple` of :class:" "`integers `." msgstr "" -#: library/sqlite3.rst:492 +#: library/sqlite3.rst:495 msgid "" "Integer constant required by the DB-API 2.0, stating the level of thread " "safety the :mod:`!sqlite3` module supports. This attribute is set based on " @@ -503,154 +505,154 @@ msgid "" "underlying SQLite library is compiled with. The SQLite threading modes are:" msgstr "" -#: library/sqlite3.rst:497 +#: library/sqlite3.rst:500 msgid "" "**Single-thread**: In this mode, all mutexes are disabled and SQLite is " "unsafe to use in more than a single thread at once." msgstr "" -#: library/sqlite3.rst:499 +#: library/sqlite3.rst:502 msgid "" "**Multi-thread**: In this mode, SQLite can be safely used by multiple " "threads provided that no single database connection is used simultaneously " "in two or more threads." msgstr "" -#: library/sqlite3.rst:502 +#: library/sqlite3.rst:505 msgid "" "**Serialized**: In serialized mode, SQLite can be safely used by multiple " "threads with no restriction." msgstr "" -#: library/sqlite3.rst:505 +#: library/sqlite3.rst:508 msgid "" "The mappings from SQLite threading modes to DB-API 2.0 threadsafety levels " "are as follows:" msgstr "" -#: library/sqlite3.rst:509 +#: library/sqlite3.rst:512 msgid "SQLite threading mode" msgstr "" -#: library/sqlite3.rst:509 +#: library/sqlite3.rst:512 msgid "`threadsafety`_" msgstr "" -#: library/sqlite3.rst:509 +#: library/sqlite3.rst:512 msgid "`SQLITE_THREADSAFE`_" msgstr "" -#: library/sqlite3.rst:509 +#: library/sqlite3.rst:512 msgid "DB-API 2.0 meaning" msgstr "" -#: library/sqlite3.rst:512 +#: library/sqlite3.rst:515 msgid "single-thread" msgstr "" -#: library/sqlite3.rst:512 +#: library/sqlite3.rst:515 msgid "0" msgstr "" -#: library/sqlite3.rst:512 +#: library/sqlite3.rst:515 msgid "Threads may not share the module" msgstr "" -#: library/sqlite3.rst:515 +#: library/sqlite3.rst:518 msgid "multi-thread" msgstr "" -#: library/sqlite3.rst:518 +#: library/sqlite3.rst:521 msgid "1" msgstr "" -#: library/sqlite3.rst:515 +#: library/sqlite3.rst:518 msgid "2" msgstr "" -#: library/sqlite3.rst:515 +#: library/sqlite3.rst:518 msgid "Threads may share the module, but not connections" msgstr "" -#: library/sqlite3.rst:518 +#: library/sqlite3.rst:521 msgid "serialized" msgstr "" -#: library/sqlite3.rst:518 +#: library/sqlite3.rst:521 msgid "3" msgstr "" -#: library/sqlite3.rst:518 +#: library/sqlite3.rst:521 msgid "Threads may share the module, connections and cursors" msgstr "" -#: library/sqlite3.rst:525 +#: library/sqlite3.rst:528 msgid "Set *threadsafety* dynamically instead of hard-coding it to ``1``." msgstr "" -#: library/sqlite3.rst:530 +#: library/sqlite3.rst:533 msgid "" "Version number of this module as a :class:`string `. This is not the " "version of the SQLite library." msgstr "" -#: library/sqlite3.rst:535 +#: library/sqlite3.rst:538 msgid "" "Version number of this module as a :class:`tuple` of :class:`integers " "`. This is not the version of the SQLite library." msgstr "" -#: library/sqlite3.rst:542 +#: library/sqlite3.rst:545 msgid "Connection objects" msgstr "" -#: library/sqlite3.rst:546 +#: library/sqlite3.rst:549 msgid "" "Each open SQLite database is represented by a ``Connection`` object, which " "is created using :func:`sqlite3.connect`. Their main purpose is creating :" "class:`Cursor` objects, and :ref:`sqlite3-controlling-transactions`." msgstr "" -#: library/sqlite3.rst:553 +#: library/sqlite3.rst:556 msgid ":ref:`sqlite3-connection-shortcuts`" msgstr "" -#: library/sqlite3.rst:556 +#: library/sqlite3.rst:559 msgid "An SQLite database connection has the following attributes and methods:" msgstr "" -#: library/sqlite3.rst:560 +#: library/sqlite3.rst:563 msgid "" "Create and return a :class:`Cursor` object. The cursor method accepts a " "single optional parameter *factory*. If supplied, this must be a callable " "returning an instance of :class:`Cursor` or its subclasses." msgstr "" -#: library/sqlite3.rst:567 +#: library/sqlite3.rst:570 msgid "" "Open a :class:`Blob` handle to an existing :abbr:`BLOB (Binary Large " "OBject)`." msgstr "" -#: library/sqlite3.rst:570 +#: library/sqlite3.rst:573 msgid "The name of the table where the blob is located." msgstr "" -#: library/sqlite3.rst:573 +#: library/sqlite3.rst:576 msgid "The name of the column where the blob is located." msgstr "" -#: library/sqlite3.rst:576 +#: library/sqlite3.rst:579 msgid "The name of the row where the blob is located." msgstr "" -#: library/sqlite3.rst:579 +#: library/sqlite3.rst:582 msgid "" "Set to ``True`` if the blob should be opened without write permissions. " "Defaults to ``False``." msgstr "" -#: library/sqlite3.rst:584 +#: library/sqlite3.rst:587 msgid "" "The name of the database where the blob is located. Defaults to ``\"main\"``." msgstr "" @@ -659,109 +661,109 @@ msgstr "" msgid "Raises" msgstr "" -#: library/sqlite3.rst:588 +#: library/sqlite3.rst:591 msgid "When trying to open a blob in a ``WITHOUT ROWID`` table." msgstr "" -#: library/sqlite3.rst:595 +#: library/sqlite3.rst:598 msgid "" "The blob size cannot be changed using the :class:`Blob` class. Use the SQL " "function ``zeroblob`` to create a blob with a fixed size." msgstr "" -#: library/sqlite3.rst:602 +#: library/sqlite3.rst:605 msgid "" "Commit any pending transaction to the database. If there is no open " "transaction, this method is a no-op." msgstr "" -#: library/sqlite3.rst:607 +#: library/sqlite3.rst:610 msgid "" "Roll back to the start of any pending transaction. If there is no open " "transaction, this method is a no-op." msgstr "" -#: library/sqlite3.rst:612 +#: library/sqlite3.rst:615 msgid "" "Close the database connection. Any pending transaction is not committed " "implicitly; make sure to :meth:`commit` before closing to avoid losing " "pending changes." msgstr "" -#: library/sqlite3.rst:619 +#: library/sqlite3.rst:622 msgid "" "Create a new :class:`Cursor` object and call :meth:`~Cursor.execute` on it " "with the given *sql* and *parameters*. Return the new cursor object." msgstr "" -#: library/sqlite3.rst:625 +#: library/sqlite3.rst:628 msgid "" "Create a new :class:`Cursor` object and call :meth:`~Cursor.executemany` on " "it with the given *sql* and *parameters*. Return the new cursor object." msgstr "" -#: library/sqlite3.rst:631 +#: library/sqlite3.rst:634 msgid "" "Create a new :class:`Cursor` object and call :meth:`~Cursor.executescript` " "on it with the given *sql_script*. Return the new cursor object." msgstr "" -#: library/sqlite3.rst:637 +#: library/sqlite3.rst:640 msgid "Create or remove a user-defined SQL function." msgstr "" -#: library/sqlite3.rst:639 +#: library/sqlite3.rst:642 msgid "The name of the SQL function." msgstr "" -#: library/sqlite3.rst:642 +#: library/sqlite3.rst:645 msgid "" "The number of arguments the SQL function can accept. If ``-1``, it may take " "any number of arguments." msgstr "" -#: library/sqlite3.rst:646 +#: library/sqlite3.rst:649 msgid "" "A callable that is called when the SQL function is invoked. The callable " "must return :ref:`a type natively supported by SQLite `. Set " "to ``None`` to remove an existing SQL function." msgstr "" -#: library/sqlite3.rst:653 +#: library/sqlite3.rst:656 msgid "" "If ``True``, the created SQL function is marked as `deterministic `_, which allows SQLite to perform additional " "optimizations." msgstr "" -#: library/sqlite3.rst:658 +#: library/sqlite3.rst:661 msgid "If *deterministic* is used with SQLite versions older than 3.8.3." msgstr "" -#: library/sqlite3.rst:661 +#: library/sqlite3.rst:664 msgid "The *deterministic* parameter." msgstr "" -#: library/sqlite3.rst:702 library/sqlite3.rst:1016 library/sqlite3.rst:1359 -#: library/sqlite3.rst:1380 +#: library/sqlite3.rst:705 library/sqlite3.rst:1019 library/sqlite3.rst:1362 +#: library/sqlite3.rst:1383 msgid "Example:" msgstr "" -#: library/sqlite3.rst:680 +#: library/sqlite3.rst:683 msgid "Create or remove a user-defined SQL aggregate function." msgstr "" -#: library/sqlite3.rst:682 +#: library/sqlite3.rst:685 msgid "The name of the SQL aggregate function." msgstr "" -#: library/sqlite3.rst:685 +#: library/sqlite3.rst:688 msgid "" "The number of arguments the SQL aggregate function can accept. If ``-1``, it " "may take any number of arguments." msgstr "" -#: library/sqlite3.rst:689 +#: library/sqlite3.rst:692 msgid "" "A class must implement the following methods: * ``step()``: Add a row to " "the aggregate. * ``finalize()``: Return the final result of the aggregate " @@ -770,45 +772,45 @@ msgid "" "*n_arg*. Set to ``None`` to remove an existing SQL aggregate function." msgstr "" -#: library/sqlite3.rst:690 +#: library/sqlite3.rst:693 msgid "A class must implement the following methods:" msgstr "" -#: library/sqlite3.rst:692 +#: library/sqlite3.rst:695 msgid "``step()``: Add a row to the aggregate." msgstr "" -#: library/sqlite3.rst:749 +#: library/sqlite3.rst:752 msgid "" "``finalize()``: Return the final result of the aggregate as :ref:`a type " "natively supported by SQLite `." msgstr "" -#: library/sqlite3.rst:696 +#: library/sqlite3.rst:699 msgid "" "The number of arguments that the ``step()`` method must accept is controlled " "by *n_arg*." msgstr "" -#: library/sqlite3.rst:699 +#: library/sqlite3.rst:702 msgid "Set to ``None`` to remove an existing SQL aggregate function." msgstr "" -#: library/sqlite3.rst:734 +#: library/sqlite3.rst:737 msgid "Create or remove a user-defined aggregate window function." msgstr "" -#: library/sqlite3.rst:736 +#: library/sqlite3.rst:739 msgid "The name of the SQL aggregate window function to create or remove." msgstr "" -#: library/sqlite3.rst:739 +#: library/sqlite3.rst:742 msgid "" "The number of arguments the SQL aggregate window function can accept. If " "``-1``, it may take any number of arguments." msgstr "" -#: library/sqlite3.rst:743 +#: library/sqlite3.rst:746 msgid "" "A class that must implement the following methods: * ``step()``: Add a row " "to the current window. * ``value()``: Return the current value of the " @@ -820,78 +822,78 @@ msgid "" "function." msgstr "" -#: library/sqlite3.rst:744 +#: library/sqlite3.rst:747 msgid "A class that must implement the following methods:" msgstr "" -#: library/sqlite3.rst:746 +#: library/sqlite3.rst:749 msgid "``step()``: Add a row to the current window." msgstr "" -#: library/sqlite3.rst:747 +#: library/sqlite3.rst:750 msgid "``value()``: Return the current value of the aggregate." msgstr "" -#: library/sqlite3.rst:748 +#: library/sqlite3.rst:751 msgid "``inverse()``: Remove a row from the current window." msgstr "" -#: library/sqlite3.rst:752 +#: library/sqlite3.rst:755 msgid "" "The number of arguments that the ``step()`` and ``value()`` methods must " "accept is controlled by *num_params*." msgstr "" -#: library/sqlite3.rst:755 +#: library/sqlite3.rst:758 msgid "Set to ``None`` to remove an existing SQL aggregate window function." msgstr "" -#: library/sqlite3.rst:757 +#: library/sqlite3.rst:760 msgid "" "If used with a version of SQLite older than 3.25.0, which does not support " "aggregate window functions." msgstr "" -#: library/sqlite3.rst:820 +#: library/sqlite3.rst:823 msgid "" "Create a collation named *name* using the collating function *callable*. " "*callable* is passed two :class:`string ` arguments, and it should " "return an :class:`integer `:" msgstr "" -#: library/sqlite3.rst:824 +#: library/sqlite3.rst:827 msgid "``1`` if the first is ordered higher than the second" msgstr "" -#: library/sqlite3.rst:825 +#: library/sqlite3.rst:828 msgid "``-1`` if the first is ordered lower than the second" msgstr "" -#: library/sqlite3.rst:826 +#: library/sqlite3.rst:829 msgid "``0`` if they are ordered equal" msgstr "" -#: library/sqlite3.rst:828 +#: library/sqlite3.rst:831 msgid "The following example shows a reverse sorting collation:" msgstr "" -#: library/sqlite3.rst:856 +#: library/sqlite3.rst:859 msgid "Remove a collation function by setting *callable* to ``None``." msgstr "" -#: library/sqlite3.rst:858 +#: library/sqlite3.rst:861 msgid "" "The collation name can contain any Unicode character. Earlier, only ASCII " "characters were allowed." msgstr "" -#: library/sqlite3.rst:865 +#: library/sqlite3.rst:868 msgid "" "Call this method from a different thread to abort any queries that might be " "executing on the connection. Aborted queries will raise an exception." msgstr "" -#: library/sqlite3.rst:872 +#: library/sqlite3.rst:875 msgid "" "Register callable *authorizer_callback* to be invoked for each attempt to " "access a column of a table in the database. The callback should return one " @@ -900,7 +902,7 @@ msgid "" "library." msgstr "" -#: library/sqlite3.rst:878 +#: library/sqlite3.rst:881 msgid "" "The first argument to the callback signifies what kind of operation is to be " "authorized. The second and third argument will be arguments or ``None`` " @@ -910,7 +912,7 @@ msgid "" "attempt or ``None`` if this access attempt is directly from input SQL code." msgstr "" -#: library/sqlite3.rst:885 +#: library/sqlite3.rst:888 msgid "" "Please consult the SQLite documentation about the possible values for the " "first argument and the meaning of the second and third argument depending on " @@ -918,15 +920,15 @@ msgid "" "module." msgstr "" -#: library/sqlite3.rst:889 +#: library/sqlite3.rst:892 msgid "Passing ``None`` as *authorizer_callback* will disable the authorizer." msgstr "" -#: library/sqlite3.rst:891 +#: library/sqlite3.rst:894 msgid "Added support for disabling the authorizer using ``None``." msgstr "" -#: library/sqlite3.rst:897 +#: library/sqlite3.rst:900 msgid "" "Register callable *progress_handler* to be invoked for every *n* " "instructions of the SQLite virtual machine. This is useful if you want to " @@ -934,26 +936,26 @@ msgid "" "a GUI." msgstr "" -#: library/sqlite3.rst:902 +#: library/sqlite3.rst:905 msgid "" "If you want to clear any previously installed progress handler, call the " "method with ``None`` for *progress_handler*." msgstr "" -#: library/sqlite3.rst:905 +#: library/sqlite3.rst:908 msgid "" "Returning a non-zero value from the handler function will terminate the " "currently executing query and cause it to raise an :exc:`OperationalError` " "exception." msgstr "" -#: library/sqlite3.rst:912 +#: library/sqlite3.rst:915 msgid "" "Register callable *trace_callback* to be invoked for each SQL statement that " "is actually executed by the SQLite backend." msgstr "" -#: library/sqlite3.rst:915 +#: library/sqlite3.rst:918 msgid "" "The only argument passed to the callback is the statement (as :class:`str`) " "that is being executed. The return value of the callback is ignored. Note " @@ -963,18 +965,18 @@ msgid "" "execution of triggers defined in the current database." msgstr "" -#: library/sqlite3.rst:923 +#: library/sqlite3.rst:926 msgid "Passing ``None`` as *trace_callback* will disable the trace callback." msgstr "" -#: library/sqlite3.rst:926 +#: library/sqlite3.rst:929 msgid "" "Exceptions raised in the trace callback are not propagated. As a development " "and debugging aid, use :meth:`~sqlite3.enable_callback_tracebacks` to enable " "printing tracebacks from exceptions raised in the trace callback." msgstr "" -#: library/sqlite3.rst:936 +#: library/sqlite3.rst:939 msgid "" "Enable the SQLite engine to load SQLite extensions from shared libraries if " "*enabled* is ``True``; else, disallow loading SQLite extensions. SQLite " @@ -983,7 +985,7 @@ msgid "" "distributed with SQLite." msgstr "" -#: library/sqlite3.rst:945 +#: library/sqlite3.rst:948 msgid "" "The :mod:`!sqlite3` module is not built with loadable extension support by " "default, because some platforms (notably macOS) have SQLite libraries which " @@ -998,11 +1000,11 @@ msgid "" "with arguments ``connection``, ``enabled``." msgstr "" -#: library/sqlite3.rst:956 +#: library/sqlite3.rst:959 msgid "Added the ``sqlite3.enable_load_extension`` auditing event." msgstr "" -#: library/sqlite3.rst:999 +#: library/sqlite3.rst:1002 msgid "" "Load an SQLite extension from a shared library located at *path*. Enable " "extension loading with :meth:`enable_load_extension` before calling this " @@ -1015,38 +1017,38 @@ msgid "" "arguments ``connection``, ``path``." msgstr "" -#: library/sqlite3.rst:1007 +#: library/sqlite3.rst:1010 msgid "Added the ``sqlite3.load_extension`` auditing event." msgstr "" -#: library/sqlite3.rst:1012 +#: library/sqlite3.rst:1015 msgid "" "Return an :term:`iterator` to dump the database as SQL source code. Useful " "when saving an in-memory database for later restoration. Similar to the ``." "dump`` command in the :program:`sqlite3` shell." msgstr "" -#: library/sqlite3.rst:1030 +#: library/sqlite3.rst:1033 msgid "Create a backup of an SQLite database." msgstr "" -#: library/sqlite3.rst:1032 +#: library/sqlite3.rst:1035 msgid "" "Works even if the database is being accessed by other clients or " "concurrently by the same connection." msgstr "" -#: library/sqlite3.rst:1035 +#: library/sqlite3.rst:1038 msgid "The database connection to save the backup to." msgstr "" -#: library/sqlite3.rst:1038 +#: library/sqlite3.rst:1041 msgid "" "The number of pages to copy at a time. If equal to or less than ``0``, the " "entire database is copied in a single step. Defaults to ``-1``." msgstr "" -#: library/sqlite3.rst:1044 +#: library/sqlite3.rst:1047 msgid "" "If set to a callable, it is invoked with three integer arguments for every " "backup iteration: the *status* of the last iteration, the *remaining* number " @@ -1054,46 +1056,46 @@ msgid "" "``None``." msgstr "" -#: library/sqlite3.rst:1053 +#: library/sqlite3.rst:1056 msgid "" "The name of the database to back up. Either ``\"main\"`` (the default) for " "the main database, ``\"temp\"`` for the temporary database, or the name of a " "custom database as attached using the ``ATTACH DATABASE`` SQL statement." msgstr "" -#: library/sqlite3.rst:1060 +#: library/sqlite3.rst:1063 msgid "" "The number of seconds to sleep between successive attempts to back up " "remaining pages." msgstr "" -#: library/sqlite3.rst:1064 +#: library/sqlite3.rst:1067 msgid "Example 1, copy an existing database into another:" msgstr "" -#: library/sqlite3.rst:1083 +#: library/sqlite3.rst:1086 msgid "Example 2, copy an existing database into a transient copy:" msgstr "" -#: library/sqlite3.rst:1095 +#: library/sqlite3.rst:1098 msgid "Get a connection runtime limit." msgstr "" -#: library/sqlite3.rst:1097 +#: library/sqlite3.rst:1100 msgid "The `SQLite limit category`_ to be queried." msgstr "" -#: library/sqlite3.rst:1139 +#: library/sqlite3.rst:1142 msgid "If *category* is not recognised by the underlying SQLite library." msgstr "" -#: library/sqlite3.rst:1105 +#: library/sqlite3.rst:1108 msgid "" "Example, query the maximum length of an SQL statement for :class:" "`Connection` ``con`` (the default is 1000000000):" msgstr "" -#: library/sqlite3.rst:1125 +#: library/sqlite3.rst:1128 msgid "" "Set a connection runtime limit. Attempts to increase a limit above its hard " "upper bound are silently truncated to the hard upper bound. Regardless of " @@ -1101,22 +1103,22 @@ msgid "" "returned." msgstr "" -#: library/sqlite3.rst:1130 +#: library/sqlite3.rst:1133 msgid "The `SQLite limit category`_ to be set." msgstr "" -#: library/sqlite3.rst:1133 +#: library/sqlite3.rst:1136 msgid "" "The value of the new limit. If negative, the current limit is unchanged." msgstr "" -#: library/sqlite3.rst:1142 +#: library/sqlite3.rst:1145 msgid "" "Example, limit the number of attached databases to 1 for :class:`Connection` " "``con`` (the default limit is 10):" msgstr "" -#: library/sqlite3.rst:1159 +#: library/sqlite3.rst:1162 msgid "" "Serialize a database into a :class:`bytes` object. For an ordinary on-disk " "database file, the serialization is just a copy of the disk file. For an in-" @@ -1125,17 +1127,17 @@ msgid "" "backed up to disk." msgstr "" -#: library/sqlite3.rst:1165 +#: library/sqlite3.rst:1168 msgid "The database name to be serialized. Defaults to ``\"main\"``." msgstr "" -#: library/sqlite3.rst:1173 +#: library/sqlite3.rst:1176 msgid "" "This method is only available if the underlying SQLite library has the " "serialize API." msgstr "" -#: library/sqlite3.rst:1181 +#: library/sqlite3.rst:1184 msgid "" "Deserialize a :meth:`serialized ` database into a :class:" "`Connection`. This method causes the database connection to disconnect from " @@ -1143,47 +1145,47 @@ msgid "" "serialization contained in *data*." msgstr "" -#: library/sqlite3.rst:1187 +#: library/sqlite3.rst:1190 msgid "A serialized database." msgstr "" -#: library/sqlite3.rst:1190 +#: library/sqlite3.rst:1193 msgid "The database name to deserialize into. Defaults to ``\"main\"``." msgstr "" -#: library/sqlite3.rst:1194 +#: library/sqlite3.rst:1197 msgid "" "If the database connection is currently involved in a read transaction or a " "backup operation." msgstr "" -#: library/sqlite3.rst:1198 +#: library/sqlite3.rst:1201 msgid "If *data* does not contain a valid SQLite database." msgstr "" -#: library/sqlite3.rst:1201 +#: library/sqlite3.rst:1204 msgid "If :func:`len(data) ` is larger than ``2**63 - 1``." msgstr "" -#: library/sqlite3.rst:1206 +#: library/sqlite3.rst:1209 msgid "" "This method is only available if the underlying SQLite library has the " "deserialize API." msgstr "" -#: library/sqlite3.rst:1213 +#: library/sqlite3.rst:1216 msgid "" "This read-only attribute corresponds to the low-level SQLite `autocommit " "mode`_." msgstr "" -#: library/sqlite3.rst:1216 +#: library/sqlite3.rst:1219 msgid "" "``True`` if a transaction is active (there are uncommitted changes), " "``False`` otherwise." msgstr "" -#: library/sqlite3.rst:1223 +#: library/sqlite3.rst:1226 msgid "" "This attribute controls the :ref:`transaction handling ` performed by :mod:`!sqlite3`. If set to ``None``, " @@ -1193,13 +1195,13 @@ msgid "" "` is performed." msgstr "" -#: library/sqlite3.rst:1231 +#: library/sqlite3.rst:1234 msgid "" "If not overridden by the *isolation_level* parameter of :func:`connect`, the " "default is ``\"\"``, which is an alias for ``\"DEFERRED\"``." msgstr "" -#: library/sqlite3.rst:1236 +#: library/sqlite3.rst:1239 msgid "" "The initial :attr:`~Cursor.row_factory` for :class:`Cursor` objects created " "from this connection. Assigning to this attribute does not affect the :attr:" @@ -1208,11 +1210,11 @@ msgid "" "`tuple`." msgstr "" -#: library/sqlite3.rst:1504 library/sqlite3.rst:1527 +#: library/sqlite3.rst:1507 library/sqlite3.rst:1530 msgid "See :ref:`sqlite3-howto-row-factory` for more details." msgstr "" -#: library/sqlite3.rst:1247 +#: library/sqlite3.rst:1250 msgid "" "A callable that accepts a :class:`bytes` parameter and returns a text " "representation of it. The callable is invoked for SQLite values with the " @@ -1220,17 +1222,17 @@ msgid "" "you want to return ``bytes`` instead, set *text_factory* to ``bytes``." msgstr "" -#: library/sqlite3.rst:1287 +#: library/sqlite3.rst:1290 msgid "" "Return the total number of database rows that have been modified, inserted, " "or deleted since the database connection was opened." msgstr "" -#: library/sqlite3.rst:1294 +#: library/sqlite3.rst:1297 msgid "Cursor objects" msgstr "" -#: library/sqlite3.rst:1296 +#: library/sqlite3.rst:1299 msgid "" "A ``Cursor`` object represents a `database cursor`_ which is used to execute " "SQL statements, and manage the context of a fetch operation. Cursors are " @@ -1238,25 +1240,25 @@ msgid "" "`connection shortcut methods `." msgstr "" -#: library/sqlite3.rst:1303 +#: library/sqlite3.rst:1306 msgid "" "Cursor objects are :term:`iterators `, meaning that if you :meth:" "`~Cursor.execute` a ``SELECT`` query, you can simply iterate over the cursor " "to fetch the resulting rows:" msgstr "" -#: library/sqlite3.rst:1328 +#: library/sqlite3.rst:1331 msgid "A :class:`Cursor` instance has the following attributes and methods." msgstr "" -#: library/sqlite3.rst:1335 +#: library/sqlite3.rst:1338 msgid "" "Execute SQL statement *sql*. Bind values to the statement using :ref:" "`placeholders ` that map to the :term:`sequence` or :" "class:`dict` *parameters*." msgstr "" -#: library/sqlite3.rst:1340 +#: library/sqlite3.rst:1343 msgid "" ":meth:`execute` will only execute a single SQL statement. If you try to " "execute more than one statement with it, it will raise a :exc:" @@ -1264,7 +1266,7 @@ msgid "" "multiple SQL statements with one call." msgstr "" -#: library/sqlite3.rst:1345 +#: library/sqlite3.rst:1348 msgid "" "If :attr:`~Connection.isolation_level` is not ``None``, *sql* is an " "``INSERT``, ``UPDATE``, ``DELETE``, or ``REPLACE`` statement, and there is " @@ -1272,7 +1274,7 @@ msgid "" "*sql*." msgstr "" -#: library/sqlite3.rst:1353 +#: library/sqlite3.rst:1356 msgid "" "Execute :ref:`parameterized ` SQL statement *sql* " "against all parameter sequences or mappings found in the sequence " @@ -1281,7 +1283,7 @@ msgid "" "handling as :meth:`~Cursor.execute`." msgstr "" -#: library/sqlite3.rst:1372 +#: library/sqlite3.rst:1375 msgid "" "Execute the SQL statements in *sql_script*. If there is a pending " "transaction, an implicit ``COMMIT`` statement is executed first. No other " @@ -1289,24 +1291,24 @@ msgid "" "added to *sql_script*." msgstr "" -#: library/sqlite3.rst:1378 +#: library/sqlite3.rst:1381 msgid "*sql_script* must be a :class:`string `." msgstr "" -#: library/sqlite3.rst:1396 +#: library/sqlite3.rst:1399 msgid "" "If :attr:`~Cursor.row_factory` is ``None``, return the next row query result " "set as a :class:`tuple`. Else, pass it to the row factory and return its " "result. Return ``None`` if no more data is available." msgstr "" -#: library/sqlite3.rst:1404 +#: library/sqlite3.rst:1407 msgid "" "Return the next set of rows of a query result as a :class:`list`. Return an " "empty list if no more rows are available." msgstr "" -#: library/sqlite3.rst:1407 +#: library/sqlite3.rst:1410 msgid "" "The number of rows to fetch per call is specified by the *size* parameter. " "If *size* is not given, :attr:`arraysize` determines the number of rows to " @@ -1314,7 +1316,7 @@ msgid "" "available are returned." msgstr "" -#: library/sqlite3.rst:1413 +#: library/sqlite3.rst:1416 msgid "" "Note there are performance considerations involved with the *size* " "parameter. For optimal performance, it is usually best to use the arraysize " @@ -1322,36 +1324,36 @@ msgid "" "the same value from one :meth:`fetchmany` call to the next." msgstr "" -#: library/sqlite3.rst:1420 +#: library/sqlite3.rst:1423 msgid "" "Return all (remaining) rows of a query result as a :class:`list`. Return an " "empty list if no rows are available. Note that the :attr:`arraysize` " "attribute can affect the performance of this operation." msgstr "" -#: library/sqlite3.rst:1427 +#: library/sqlite3.rst:1430 msgid "Close the cursor now (rather than whenever ``__del__`` is called)." msgstr "" -#: library/sqlite3.rst:1429 +#: library/sqlite3.rst:1432 msgid "" "The cursor will be unusable from this point forward; a :exc:" "`ProgrammingError` exception will be raised if any operation is attempted " "with the cursor." msgstr "" -#: library/sqlite3.rst:1438 +#: library/sqlite3.rst:1441 msgid "Required by the DB-API. Does nothing in :mod:`!sqlite3`." msgstr "" -#: library/sqlite3.rst:1442 +#: library/sqlite3.rst:1445 msgid "" "Read/write attribute that controls the number of rows returned by :meth:" "`fetchmany`. The default value is 1 which means a single row would be " "fetched per call." msgstr "" -#: library/sqlite3.rst:1447 +#: library/sqlite3.rst:1450 msgid "" "Read-only attribute that provides the SQLite database :class:`Connection` " "belonging to the cursor. A :class:`Cursor` object created by calling :meth:" @@ -1359,18 +1361,18 @@ msgid "" "that refers to *con*:" msgstr "" -#: library/sqlite3.rst:1461 +#: library/sqlite3.rst:1464 msgid "" "Read-only attribute that provides the column names of the last query. To " "remain compatible with the Python DB API, it returns a 7-tuple for each " "column where the last six items of each tuple are ``None``." msgstr "" -#: library/sqlite3.rst:1465 +#: library/sqlite3.rst:1468 msgid "It is set for ``SELECT`` statements without any matching rows as well." msgstr "" -#: library/sqlite3.rst:1469 +#: library/sqlite3.rst:1472 msgid "" "Read-only attribute that provides the row id of the last inserted row. It is " "only updated after successful ``INSERT`` or ``REPLACE`` statements using " @@ -1380,15 +1382,15 @@ msgid "" "``None``." msgstr "" -#: library/sqlite3.rst:1477 +#: library/sqlite3.rst:1480 msgid "Inserts into ``WITHOUT ROWID`` tables are not recorded." msgstr "" -#: library/sqlite3.rst:1479 +#: library/sqlite3.rst:1482 msgid "Added support for the ``REPLACE`` statement." msgstr "" -#: library/sqlite3.rst:1484 +#: library/sqlite3.rst:1487 msgid "" "Read-only attribute that provides the number of modified rows for " "``INSERT``, ``UPDATE``, ``DELETE``, and ``REPLACE`` statements; is ``-1`` " @@ -1397,7 +1399,7 @@ msgid "" "methods." msgstr "" -#: library/sqlite3.rst:1492 +#: library/sqlite3.rst:1495 msgid "" "Control how a row fetched from this :class:`!Cursor` is represented. If " "``None``, a row is represented as a :class:`tuple`. Can be set to the " @@ -1406,18 +1408,18 @@ msgid "" "and returns a custom object representing an SQLite row." msgstr "" -#: library/sqlite3.rst:1499 +#: library/sqlite3.rst:1502 msgid "" "Defaults to what :attr:`Connection.row_factory` was set to when the :class:`!" "Cursor` was created. Assigning to this attribute does not affect :attr:" "`Connection.row_factory` of the parent connection." msgstr "" -#: library/sqlite3.rst:1515 +#: library/sqlite3.rst:1518 msgid "Row objects" msgstr "" -#: library/sqlite3.rst:1519 +#: library/sqlite3.rst:1522 msgid "" "A :class:`!Row` instance serves as a highly optimized :attr:`~Connection." "row_factory` for :class:`Connection` objects. It supports iteration, " @@ -1425,28 +1427,28 @@ msgid "" "index." msgstr "" -#: library/sqlite3.rst:1524 +#: library/sqlite3.rst:1527 msgid "" "Two :class:`!Row` objects compare equal if they have identical column names " "and values." msgstr "" -#: library/sqlite3.rst:1531 +#: library/sqlite3.rst:1534 msgid "" "Return a :class:`list` of column names as :class:`strings `. " "Immediately after a query, it is the first member of each tuple in :attr:" "`Cursor.description`." msgstr "" -#: library/sqlite3.rst:1535 +#: library/sqlite3.rst:1538 msgid "Added support of slicing." msgstr "" -#: library/sqlite3.rst:1542 +#: library/sqlite3.rst:1545 msgid "Blob objects" msgstr "" -#: library/sqlite3.rst:1548 +#: library/sqlite3.rst:1551 msgid "" "A :class:`Blob` instance is a :term:`file-like object` that can read and " "write data in an SQLite :abbr:`BLOB (Binary Large OBject)`. Call :func:" @@ -1454,24 +1456,24 @@ msgid "" "and :term:`slices ` for direct access to the blob data." msgstr "" -#: library/sqlite3.rst:1553 +#: library/sqlite3.rst:1556 msgid "" "Use the :class:`Blob` as a :term:`context manager` to ensure that the blob " "handle is closed after use." msgstr "" -#: library/sqlite3.rst:1583 +#: library/sqlite3.rst:1586 msgid "Close the blob." msgstr "" -#: library/sqlite3.rst:1585 +#: library/sqlite3.rst:1588 msgid "" "The blob will be unusable from this point onward. An :class:`~sqlite3." "Error` (or subclass) exception will be raised if any further operation is " "attempted with the blob." msgstr "" -#: library/sqlite3.rst:1591 +#: library/sqlite3.rst:1594 msgid "" "Read *length* bytes of data from the blob at the current offset position. If " "the end of the blob is reached, the data up to :abbr:`EOF (End of File)` " @@ -1479,18 +1481,18 @@ msgid "" "`~Blob.read` will read until the end of the blob." msgstr "" -#: library/sqlite3.rst:1599 +#: library/sqlite3.rst:1602 msgid "" "Write *data* to the blob at the current offset. This function cannot change " "the blob length. Writing beyond the end of the blob will raise :exc:" "`ValueError`." msgstr "" -#: library/sqlite3.rst:1605 +#: library/sqlite3.rst:1608 msgid "Return the current access position of the blob." msgstr "" -#: library/sqlite3.rst:1609 +#: library/sqlite3.rst:1612 msgid "" "Set the current access position of the blob to *offset*. The *origin* " "argument defaults to :data:`os.SEEK_SET` (absolute blob positioning). Other " @@ -1498,26 +1500,26 @@ msgid "" "position) and :data:`os.SEEK_END` (seek relative to the blob’s end)." msgstr "" -#: library/sqlite3.rst:1617 +#: library/sqlite3.rst:1620 msgid "PrepareProtocol objects" msgstr "" -#: library/sqlite3.rst:1621 +#: library/sqlite3.rst:1624 msgid "" "The PrepareProtocol type's single purpose is to act as a :pep:`246` style " "adaption protocol for objects that can :ref:`adapt themselves ` to :ref:`native SQLite types `." msgstr "" -#: library/sqlite3.rst:1629 +#: library/sqlite3.rst:1632 msgid "Exceptions" msgstr "" -#: library/sqlite3.rst:1631 +#: library/sqlite3.rst:1634 msgid "The exception hierarchy is defined by the DB-API 2.0 (:pep:`249`)." msgstr "" -#: library/sqlite3.rst:1635 +#: library/sqlite3.rst:1638 msgid "" "This exception is not currently raised by the :mod:`!sqlite3` module, but " "may be raised by applications using :mod:`!sqlite3`, for example if a user-" @@ -1525,39 +1527,39 @@ msgid "" "of :exc:`Exception`." msgstr "" -#: library/sqlite3.rst:1642 +#: library/sqlite3.rst:1645 msgid "" "The base class of the other exceptions in this module. Use this to catch all " "errors with one single :keyword:`except` statement. ``Error`` is a subclass " "of :exc:`Exception`." msgstr "" -#: library/sqlite3.rst:1646 +#: library/sqlite3.rst:1649 msgid "" "If the exception originated from within the SQLite library, the following " "two attributes are added to the exception:" msgstr "" -#: library/sqlite3.rst:1651 +#: library/sqlite3.rst:1654 msgid "" "The numeric error code from the `SQLite API `_" msgstr "" -#: library/sqlite3.rst:1658 +#: library/sqlite3.rst:1661 msgid "" "The symbolic name of the numeric error code from the `SQLite API `_" msgstr "" -#: library/sqlite3.rst:1665 +#: library/sqlite3.rst:1668 msgid "" "Exception raised for misuse of the low-level SQLite C API. In other words, " "if this exception is raised, it probably indicates a bug in the :mod:`!" "sqlite3` module. ``InterfaceError`` is a subclass of :exc:`Error`." msgstr "" -#: library/sqlite3.rst:1672 +#: library/sqlite3.rst:1675 msgid "" "Exception raised for errors that are related to the database. This serves as " "the base exception for several types of database errors. It is only raised " @@ -1565,14 +1567,14 @@ msgid "" "subclass of :exc:`Error`." msgstr "" -#: library/sqlite3.rst:1679 +#: library/sqlite3.rst:1682 msgid "" "Exception raised for errors caused by problems with the processed data, like " "numeric values out of range, and strings which are too long. ``DataError`` " "is a subclass of :exc:`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1685 +#: library/sqlite3.rst:1688 msgid "" "Exception raised for errors that are related to the database's operation, " "and not necessarily under the control of the programmer. For example, the " @@ -1580,20 +1582,20 @@ msgid "" "``OperationalError`` is a subclass of :exc:`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1693 +#: library/sqlite3.rst:1696 msgid "" "Exception raised when the relational integrity of the database is affected, " "e.g. a foreign key check fails. It is a subclass of :exc:`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1698 +#: library/sqlite3.rst:1701 msgid "" "Exception raised when SQLite encounters an internal error. If this is " "raised, it may indicate that there is a problem with the runtime SQLite " "library. ``InternalError`` is a subclass of :exc:`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1705 +#: library/sqlite3.rst:1708 msgid "" "Exception raised for :mod:`!sqlite3` API programming errors, for example " "supplying the wrong number of bindings to a query, or trying to operate on a " @@ -1601,7 +1603,7 @@ msgid "" "`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1712 +#: library/sqlite3.rst:1715 msgid "" "Exception raised in case a method or database API is not supported by the " "underlying SQLite library. For example, setting *deterministic* to ``True`` " @@ -1610,78 +1612,78 @@ msgid "" "subclass of :exc:`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1722 +#: library/sqlite3.rst:1725 msgid "SQLite and Python types" msgstr "" -#: library/sqlite3.rst:1724 +#: library/sqlite3.rst:1727 msgid "" "SQLite natively supports the following types: ``NULL``, ``INTEGER``, " "``REAL``, ``TEXT``, ``BLOB``." msgstr "" -#: library/sqlite3.rst:1727 +#: library/sqlite3.rst:1730 msgid "" "The following Python types can thus be sent to SQLite without any problem:" msgstr "" -#: library/sqlite3.rst:1747 +#: library/sqlite3.rst:1750 msgid "Python type" msgstr "" -#: library/sqlite3.rst:1747 +#: library/sqlite3.rst:1750 msgid "SQLite type" msgstr "" -#: library/sqlite3.rst:1749 +#: library/sqlite3.rst:1752 msgid "``None``" msgstr "" -#: library/sqlite3.rst:1749 +#: library/sqlite3.rst:1752 msgid "``NULL``" msgstr "" -#: library/sqlite3.rst:1751 +#: library/sqlite3.rst:1754 msgid ":class:`int`" msgstr "" -#: library/sqlite3.rst:1751 +#: library/sqlite3.rst:1754 msgid "``INTEGER``" msgstr "" -#: library/sqlite3.rst:1753 +#: library/sqlite3.rst:1756 msgid ":class:`float`" msgstr "" -#: library/sqlite3.rst:1753 +#: library/sqlite3.rst:1756 msgid "``REAL``" msgstr "" -#: library/sqlite3.rst:1738 +#: library/sqlite3.rst:1741 msgid ":class:`str`" msgstr "" -#: library/sqlite3.rst:1755 +#: library/sqlite3.rst:1758 msgid "``TEXT``" msgstr "" -#: library/sqlite3.rst:1758 +#: library/sqlite3.rst:1761 msgid ":class:`bytes`" msgstr "" -#: library/sqlite3.rst:1758 +#: library/sqlite3.rst:1761 msgid "``BLOB``" msgstr "" -#: library/sqlite3.rst:1744 +#: library/sqlite3.rst:1747 msgid "This is how SQLite types are converted to Python types by default:" msgstr "" -#: library/sqlite3.rst:1755 +#: library/sqlite3.rst:1758 msgid "depends on :attr:`~Connection.text_factory`, :class:`str` by default" msgstr "" -#: library/sqlite3.rst:1761 +#: library/sqlite3.rst:1764 msgid "" "The type system of the :mod:`!sqlite3` module is extensible in two ways: you " "can store additional Python types in an SQLite database via :ref:`object " @@ -1690,42 +1692,42 @@ msgid "" "converters>`." msgstr "" -#: library/sqlite3.rst:1771 +#: library/sqlite3.rst:1774 msgid "Default adapters and converters" msgstr "" -#: library/sqlite3.rst:1773 +#: library/sqlite3.rst:1776 msgid "" "There are default adapters for the date and datetime types in the datetime " "module. They will be sent as ISO dates/ISO timestamps to SQLite." msgstr "" -#: library/sqlite3.rst:1776 +#: library/sqlite3.rst:1779 msgid "" "The default converters are registered under the name \"date\" for :class:" "`datetime.date` and under the name \"timestamp\" for :class:`datetime." "datetime`." msgstr "" -#: library/sqlite3.rst:1780 +#: library/sqlite3.rst:1783 msgid "" "This way, you can use date/timestamps from Python without any additional " "fiddling in most cases. The format of the adapters is also compatible with " "the experimental SQLite date/time functions." msgstr "" -#: library/sqlite3.rst:1784 +#: library/sqlite3.rst:1787 msgid "The following example demonstrates this." msgstr "" -#: library/sqlite3.rst:1788 +#: library/sqlite3.rst:1791 msgid "" "If a timestamp stored in SQLite has a fractional part longer than 6 numbers, " "its value will be truncated to microsecond precision by the timestamp " "converter." msgstr "" -#: library/sqlite3.rst:1794 +#: library/sqlite3.rst:1797 msgid "" "The default \"timestamp\" converter ignores UTC offsets in the database and " "always returns a naive :class:`datetime.datetime` object. To preserve UTC " @@ -1733,15 +1735,15 @@ msgid "" "offset-aware converter with :func:`register_converter`." msgstr "" -#: library/sqlite3.rst:1803 +#: library/sqlite3.rst:1806 msgid "How-to guides" msgstr "" -#: library/sqlite3.rst:1808 +#: library/sqlite3.rst:1811 msgid "How to use placeholders to bind values in SQL queries" msgstr "" -#: library/sqlite3.rst:1810 +#: library/sqlite3.rst:1813 msgid "" "SQL operations usually need to use values from Python variables. However, " "beware of using Python's string operations to assemble queries, as they are " @@ -1749,7 +1751,7 @@ msgid "" "close the single quote and inject ``OR TRUE`` to select all rows::" msgstr "" -#: library/sqlite3.rst:1823 +#: library/sqlite3.rst:1826 msgid "" "Instead, use the DB-API's parameter substitution. To insert a variable into " "a query string, use a placeholder in the string, and substitute the actual " @@ -1757,7 +1759,7 @@ msgid "" "second argument of the cursor's :meth:`~Cursor.execute` method." msgstr "" -#: library/sqlite3.rst:1828 +#: library/sqlite3.rst:1831 msgid "" "An SQL statement may use one of two kinds of placeholders: question marks " "(qmark style) or named placeholders (named style). For the qmark style, " @@ -1768,24 +1770,24 @@ msgid "" "are ignored. Here's an example of both styles:" msgstr "" -#: library/sqlite3.rst:1865 +#: library/sqlite3.rst:1868 msgid "" ":pep:`249` numeric placeholders are *not* supported. If used, they will be " "interpreted as named placeholders." msgstr "" -#: library/sqlite3.rst:1872 +#: library/sqlite3.rst:1875 msgid "How to adapt custom Python types to SQLite values" msgstr "" -#: library/sqlite3.rst:1874 +#: library/sqlite3.rst:1877 msgid "" "SQLite supports only a limited set of data types natively. To store custom " "Python types in SQLite databases, *adapt* them to one of the :ref:`Python " "types SQLite natively understands `." msgstr "" -#: library/sqlite3.rst:1878 +#: library/sqlite3.rst:1881 msgid "" "There are two ways to adapt Python objects to SQLite types: letting your " "object adapt itself, or using an *adapter callable*. The latter will take " @@ -1795,11 +1797,11 @@ msgid "" "custom adapter functions." msgstr "" -#: library/sqlite3.rst:1890 +#: library/sqlite3.rst:1893 msgid "How to write adaptable objects" msgstr "" -#: library/sqlite3.rst:1892 +#: library/sqlite3.rst:1895 msgid "" "Suppose we have a :class:`!Point` class that represents a pair of " "coordinates, ``x`` and ``y``, in a Cartesian coordinate system. The " @@ -1809,84 +1811,84 @@ msgid "" "object passed to *protocol* will be of type :class:`PrepareProtocol`." msgstr "" -#: library/sqlite3.rst:1923 +#: library/sqlite3.rst:1926 msgid "How to register adapter callables" msgstr "" -#: library/sqlite3.rst:1925 +#: library/sqlite3.rst:1928 msgid "" "The other possibility is to create a function that converts the Python " "object to an SQLite-compatible type. This function can then be registered " "using :func:`register_adapter`." msgstr "" -#: library/sqlite3.rst:1955 +#: library/sqlite3.rst:1958 msgid "How to convert SQLite values to custom Python types" msgstr "" -#: library/sqlite3.rst:1957 +#: library/sqlite3.rst:1960 msgid "" "Writing an adapter lets you convert *from* custom Python types *to* SQLite " "values. To be able to convert *from* SQLite values *to* custom Python types, " "we use *converters*." msgstr "" -#: library/sqlite3.rst:1962 +#: library/sqlite3.rst:1965 msgid "" "Let's go back to the :class:`!Point` class. We stored the x and y " "coordinates separated via semicolons as strings in SQLite." msgstr "" -#: library/sqlite3.rst:1965 +#: library/sqlite3.rst:1968 msgid "" "First, we'll define a converter function that accepts the string as a " "parameter and constructs a :class:`!Point` object from it." msgstr "" -#: library/sqlite3.rst:1970 +#: library/sqlite3.rst:1973 msgid "" "Converter functions are **always** passed a :class:`bytes` object, no matter " "the underlying SQLite data type." msgstr "" -#: library/sqlite3.rst:1979 +#: library/sqlite3.rst:1982 msgid "" "We now need to tell :mod:`!sqlite3` when it should convert a given SQLite " "value. This is done when connecting to a database, using the *detect_types* " "parameter of :func:`connect`. There are three options:" msgstr "" -#: library/sqlite3.rst:1983 +#: library/sqlite3.rst:1986 msgid "Implicit: set *detect_types* to :const:`PARSE_DECLTYPES`" msgstr "" -#: library/sqlite3.rst:1984 +#: library/sqlite3.rst:1987 msgid "Explicit: set *detect_types* to :const:`PARSE_COLNAMES`" msgstr "" -#: library/sqlite3.rst:1985 +#: library/sqlite3.rst:1988 msgid "" "Both: set *detect_types* to ``sqlite3.PARSE_DECLTYPES | sqlite3." "PARSE_COLNAMES``. Column names take precedence over declared types." msgstr "" -#: library/sqlite3.rst:1989 +#: library/sqlite3.rst:1992 msgid "The following example illustrates the implicit and explicit approaches:" msgstr "" -#: library/sqlite3.rst:2040 +#: library/sqlite3.rst:2043 msgid "Adapter and converter recipes" msgstr "" -#: library/sqlite3.rst:2042 +#: library/sqlite3.rst:2045 msgid "This section shows recipes for common adapters and converters." msgstr "" -#: library/sqlite3.rst:2104 +#: library/sqlite3.rst:2107 msgid "How to use connection shortcut methods" msgstr "" -#: library/sqlite3.rst:2106 +#: library/sqlite3.rst:2109 msgid "" "Using the :meth:`~Connection.execute`, :meth:`~Connection.executemany`, and :" "meth:`~Connection.executescript` methods of the :class:`Connection` class, " @@ -1898,11 +1900,11 @@ msgid "" "object." msgstr "" -#: library/sqlite3.rst:2147 +#: library/sqlite3.rst:2150 msgid "How to use the connection context manager" msgstr "" -#: library/sqlite3.rst:2149 +#: library/sqlite3.rst:2152 msgid "" "A :class:`Connection` object can be used as a context manager that " "automatically commits or rolls back open transactions when leaving the body " @@ -1912,58 +1914,58 @@ msgid "" "exception, the transaction is rolled back." msgstr "" -#: library/sqlite3.rst:2158 +#: library/sqlite3.rst:2161 msgid "" "If there is no open transaction upon leaving the body of the ``with`` " "statement, the context manager is a no-op." msgstr "" -#: library/sqlite3.rst:2163 +#: library/sqlite3.rst:2166 msgid "" "The context manager neither implicitly opens a new transaction nor closes " "the connection." msgstr "" -#: library/sqlite3.rst:2196 +#: library/sqlite3.rst:2199 msgid "How to work with SQLite URIs" msgstr "" -#: library/sqlite3.rst:2198 +#: library/sqlite3.rst:2201 msgid "Some useful URI tricks include:" msgstr "" -#: library/sqlite3.rst:2200 +#: library/sqlite3.rst:2203 msgid "Open a database in read-only mode:" msgstr "" -#: library/sqlite3.rst:2209 +#: library/sqlite3.rst:2212 msgid "" "Do not implicitly create a new database file if it does not already exist; " "will raise :exc:`~sqlite3.OperationalError` if unable to create a new file:" msgstr "" -#: library/sqlite3.rst:2219 +#: library/sqlite3.rst:2222 msgid "Create a shared named in-memory database:" msgstr "" -#: library/sqlite3.rst:2233 +#: library/sqlite3.rst:2236 msgid "" "More information about this feature, including a list of parameters, can be " "found in the `SQLite URI documentation`_." msgstr "" -#: library/sqlite3.rst:2242 +#: library/sqlite3.rst:2245 msgid "How to create and use row factories" msgstr "" -#: library/sqlite3.rst:2244 +#: library/sqlite3.rst:2247 msgid "" "By default, :mod:`!sqlite3` represents each row as a :class:`tuple`. If a :" "class:`!tuple` does not suit your needs, you can use the :class:`sqlite3." "Row` class or a custom :attr:`~Cursor.row_factory`." msgstr "" -#: library/sqlite3.rst:2249 +#: library/sqlite3.rst:2252 msgid "" "While :attr:`!row_factory` exists as an attribute both on the :class:" "`Cursor` and the :class:`Connection`, it is recommended to set :class:" @@ -1971,7 +1973,7 @@ msgid "" "use the same row factory." msgstr "" -#: library/sqlite3.rst:2254 +#: library/sqlite3.rst:2257 msgid "" ":class:`!Row` provides indexed and case-insensitive named access to columns, " "with minimal memory overhead and performance impact over a :class:`!tuple`. " @@ -1979,51 +1981,51 @@ msgid "" "attribute:" msgstr "" -#: library/sqlite3.rst:2264 +#: library/sqlite3.rst:2267 msgid "Queries now return :class:`!Row` objects:" msgstr "" -#: library/sqlite3.rst:2279 +#: library/sqlite3.rst:2282 msgid "" "You can create a custom :attr:`~Cursor.row_factory` that returns each row as " "a :class:`dict`, with column names mapped to values:" msgstr "" -#: library/sqlite3.rst:2288 +#: library/sqlite3.rst:2291 msgid "" "Using it, queries now return a :class:`!dict` instead of a :class:`!tuple`:" msgstr "" -#: library/sqlite3.rst:2298 +#: library/sqlite3.rst:2301 msgid "The following row factory returns a :term:`named tuple`:" msgstr "" -#: library/sqlite3.rst:2309 +#: library/sqlite3.rst:2312 msgid ":func:`!namedtuple_factory` can be used as follows:" msgstr "" -#: library/sqlite3.rst:2324 +#: library/sqlite3.rst:2327 msgid "" "With some adjustments, the above recipe can be adapted to use a :class:" "`~dataclasses.dataclass`, or any other custom class, instead of a :class:" "`~collections.namedtuple`." msgstr "" -#: library/sqlite3.rst:2332 +#: library/sqlite3.rst:2335 msgid "Explanation" msgstr "" -#: library/sqlite3.rst:2337 +#: library/sqlite3.rst:2340 msgid "Transaction control" msgstr "" -#: library/sqlite3.rst:2339 +#: library/sqlite3.rst:2342 msgid "" "The :mod:`!sqlite3` module does not adhere to the transaction handling " "recommended by :pep:`249`." msgstr "" -#: library/sqlite3.rst:2342 +#: library/sqlite3.rst:2345 msgid "" "If the connection attribute :attr:`~Connection.isolation_level` is not " "``None``, new transactions are implicitly opened before :meth:`~Cursor." @@ -2037,7 +2039,7 @@ msgid "" "attribute." msgstr "" -#: library/sqlite3.rst:2355 +#: library/sqlite3.rst:2358 msgid "" "If :attr:`~Connection.isolation_level` is set to ``None``, no transactions " "are implicitly opened at all. This leaves the underlying SQLite library in " @@ -2047,14 +2049,14 @@ msgid "" "in_transaction` attribute." msgstr "" -#: library/sqlite3.rst:2363 +#: library/sqlite3.rst:2366 msgid "" "The :meth:`~Cursor.executescript` method implicitly commits any pending " "transaction before execution of the given SQL script, regardless of the " "value of :attr:`~Connection.isolation_level`." msgstr "" -#: library/sqlite3.rst:2367 +#: library/sqlite3.rst:2370 msgid "" ":mod:`!sqlite3` used to implicitly commit an open transaction before DDL " "statements. This is no longer the case." diff --git a/library/traceback.po b/library/traceback.po index 19257104d..33e1dd433 100644 --- a/library/traceback.po +++ b/library/traceback.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" +"POT-Creation-Date: 2023-02-04 22:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -40,11 +40,29 @@ msgid "" "from :func:`sys.exc_info`." msgstr "" -#: library/traceback.rst:23 -msgid "The module defines the following functions:" +#: library/traceback.rst:26 +msgid "Module :mod:`faulthandler`" +msgstr "" + +#: library/traceback.rst:26 +msgid "" +"Used to dump Python tracebacks explicitly, on a fault, after a timeout, or " +"on a user signal." msgstr "" #: library/traceback.rst:28 +msgid "Module :mod:`pdb`" +msgstr "" + +#: library/traceback.rst:29 +msgid "Interactive source code debugger for Python programs." +msgstr "" + +#: library/traceback.rst:31 +msgid "The module defines the following functions:" +msgstr "" + +#: library/traceback.rst:35 msgid "" "Print up to *limit* stack trace entries from traceback object *tb* (starting " "from the caller's frame) if *limit* is positive. Otherwise, print the last " @@ -54,41 +72,41 @@ msgid "" "the output." msgstr "" -#: library/traceback.rst:98 +#: library/traceback.rst:105 msgid "Added negative *limit* support." msgstr "" -#: library/traceback.rst:42 +#: library/traceback.rst:49 msgid "" "Print exception information and stack trace entries from traceback object " "*tb* to *file*. This differs from :func:`print_tb` in the following ways:" msgstr "" -#: library/traceback.rst:46 +#: library/traceback.rst:53 msgid "" "if *tb* is not ``None``, it prints a header ``Traceback (most recent call " "last):``" msgstr "" -#: library/traceback.rst:49 +#: library/traceback.rst:56 msgid "it prints the exception type and *value* after the stack trace" msgstr "" -#: library/traceback.rst:53 +#: library/traceback.rst:60 msgid "" "if *type(value)* is :exc:`SyntaxError` and *value* has the appropriate " "format, it prints the line where the syntax error occurred with a caret " "indicating the approximate position of the error." msgstr "" -#: library/traceback.rst:57 +#: library/traceback.rst:64 msgid "" "Since Python 3.10, instead of passing *value* and *tb*, an exception object " "can be passed as the first argument. If *value* and *tb* are provided, the " "first argument is ignored in order to provide backwards compatibility." msgstr "" -#: library/traceback.rst:61 +#: library/traceback.rst:68 msgid "" "The optional *limit* argument has the same meaning as for :func:`print_tb`. " "If *chain* is true (the default), then chained exceptions (the :attr:" @@ -97,29 +115,29 @@ msgid "" "exception." msgstr "" -#: library/traceback.rst:160 +#: library/traceback.rst:167 msgid "The *etype* argument is ignored and inferred from the type of *value*." msgstr "" -#: library/traceback.rst:147 +#: library/traceback.rst:154 msgid "" "The *etype* parameter has been renamed to *exc* and is now positional-only." msgstr "" -#: library/traceback.rst:77 +#: library/traceback.rst:84 msgid "" "This is a shorthand for ``print_exception(*sys.exc_info(), limit, file, " "chain)``." msgstr "" -#: library/traceback.rst:83 +#: library/traceback.rst:90 msgid "" "This is a shorthand for ``print_exception(sys.last_type, sys.last_value, sys." "last_traceback, limit, file, chain)``. In general it will work only after " "an exception has reached an interactive prompt (see :data:`sys.last_type`)." msgstr "" -#: library/traceback.rst:91 +#: library/traceback.rst:98 msgid "" "Print up to *limit* stack trace entries (starting from the invocation point) " "if *limit* is positive. Otherwise, print the last ``abs(limit)`` entries. " @@ -128,7 +146,7 @@ msgid "" "optional *file* argument has the same meaning as for :func:`print_tb`." msgstr "" -#: library/traceback.rst:104 +#: library/traceback.rst:111 msgid "" "Return a :class:`StackSummary` object representing a list of \"pre-" "processed\" stack trace entries extracted from the traceback object *tb*. " @@ -142,14 +160,14 @@ msgid "" "stripped; if the source is not available it is ``None``." msgstr "" -#: library/traceback.rst:118 +#: library/traceback.rst:125 msgid "" "Extract the raw traceback from the current stack frame. The return value " "has the same format as for :func:`extract_tb`. The optional *f* and *limit* " "arguments have the same meaning as for :func:`print_stack`." msgstr "" -#: library/traceback.rst:125 +#: library/traceback.rst:132 msgid "" "Given a list of tuples or :class:`FrameSummary` objects as returned by :func:" "`extract_tb` or :func:`extract_stack`, return a list of strings ready for " @@ -159,7 +177,7 @@ msgid "" "text line is not ``None``." msgstr "" -#: library/traceback.rst:135 +#: library/traceback.rst:142 msgid "" "Format the exception part of a traceback using an exception value such as " "given by ``sys.last_value``. The return value is a list of strings, each " @@ -170,14 +188,14 @@ msgid "" "the list." msgstr "" -#: library/traceback.rst:143 +#: library/traceback.rst:150 msgid "" "Since Python 3.10, instead of passing *value*, an exception object can be " "passed as the first argument. If *value* is provided, the first argument is " "ignored in order to provide backwards compatibility." msgstr "" -#: library/traceback.rst:154 +#: library/traceback.rst:161 msgid "" "Format a stack trace and the exception information. The arguments have the " "same meaning as the corresponding arguments to :func:`print_exception`. The " @@ -186,66 +204,66 @@ msgid "" "printed, exactly the same text is printed as does :func:`print_exception`." msgstr "" -#: library/traceback.rst:163 +#: library/traceback.rst:170 msgid "" "This function's behavior and signature were modified to match :func:" "`print_exception`." msgstr "" -#: library/traceback.rst:170 +#: library/traceback.rst:177 msgid "" "This is like ``print_exc(limit)`` but returns a string instead of printing " "to a file." msgstr "" -#: library/traceback.rst:176 +#: library/traceback.rst:183 msgid "A shorthand for ``format_list(extract_tb(tb, limit))``." msgstr "" -#: library/traceback.rst:181 +#: library/traceback.rst:188 msgid "A shorthand for ``format_list(extract_stack(f, limit))``." msgstr "" -#: library/traceback.rst:185 +#: library/traceback.rst:192 msgid "" "Clears the local variables of all the stack frames in a traceback *tb* by " "calling the :meth:`clear` method of each frame object." msgstr "" -#: library/traceback.rst:192 +#: library/traceback.rst:199 msgid "" "Walk a stack following ``f.f_back`` from the given frame, yielding the frame " "and line number for each frame. If *f* is ``None``, the current stack is " "used. This helper is used with :meth:`StackSummary.extract`." msgstr "" -#: library/traceback.rst:200 +#: library/traceback.rst:207 msgid "" "Walk a traceback following ``tb_next`` yielding the frame and line number " "for each frame. This helper is used with :meth:`StackSummary.extract`." msgstr "" -#: library/traceback.rst:205 +#: library/traceback.rst:212 msgid "The module also defines the following classes:" msgstr "" -#: library/traceback.rst:208 +#: library/traceback.rst:215 msgid ":class:`TracebackException` Objects" msgstr "" -#: library/traceback.rst:212 +#: library/traceback.rst:219 msgid "" ":class:`TracebackException` objects are created from actual exceptions to " "capture data for later printing in a lightweight fashion." msgstr "" -#: library/traceback.rst:277 +#: library/traceback.rst:284 msgid "" "Capture an exception for later rendering. *limit*, *lookup_lines* and " "*capture_locals* are as for the :class:`StackSummary` class." msgstr "" -#: library/traceback.rst:220 +#: library/traceback.rst:227 msgid "" "If *compact* is true, only data that is required by :class:" "`TracebackException`'s ``format`` method is saved in the class attributes. " @@ -253,122 +271,122 @@ msgid "" "is ``None`` and ``__suppress_context__`` is false." msgstr "" -#: library/traceback.rst:280 +#: library/traceback.rst:287 msgid "" "Note that when locals are captured, they are also shown in the traceback." msgstr "" -#: library/traceback.rst:229 +#: library/traceback.rst:236 msgid "A :class:`TracebackException` of the original ``__cause__``." msgstr "" -#: library/traceback.rst:233 +#: library/traceback.rst:240 msgid "A :class:`TracebackException` of the original ``__context__``." msgstr "" -#: library/traceback.rst:237 +#: library/traceback.rst:244 msgid "The ``__suppress_context__`` value from the original exception." msgstr "" -#: library/traceback.rst:241 +#: library/traceback.rst:248 msgid "" "The ``__notes__`` value from the original exception, or ``None`` if the " "exception does not have any notes. If it is not ``None`` is it formatted in " "the traceback after the exception string." msgstr "" -#: library/traceback.rst:249 +#: library/traceback.rst:256 msgid "A :class:`StackSummary` representing the traceback." msgstr "" -#: library/traceback.rst:253 +#: library/traceback.rst:260 msgid "The class of the original traceback." msgstr "" -#: library/traceback.rst:257 +#: library/traceback.rst:264 msgid "For syntax errors - the file name where the error occurred." msgstr "" -#: library/traceback.rst:261 +#: library/traceback.rst:268 msgid "For syntax errors - the line number where the error occurred." msgstr "" -#: library/traceback.rst:265 +#: library/traceback.rst:272 msgid "For syntax errors - the text where the error occurred." msgstr "" -#: library/traceback.rst:269 +#: library/traceback.rst:276 msgid "For syntax errors - the offset into the text where the error occurred." msgstr "" -#: library/traceback.rst:273 +#: library/traceback.rst:280 msgid "For syntax errors - the compiler error message." msgstr "" -#: library/traceback.rst:284 +#: library/traceback.rst:291 msgid "" "Print to *file* (default ``sys.stderr``) the exception information returned " "by :meth:`format`." msgstr "" -#: library/traceback.rst:291 +#: library/traceback.rst:298 msgid "Format the exception." msgstr "" -#: library/traceback.rst:293 +#: library/traceback.rst:300 msgid "" "If *chain* is not ``True``, ``__cause__`` and ``__context__`` will not be " "formatted." msgstr "" -#: library/traceback.rst:296 +#: library/traceback.rst:303 msgid "" "The return value is a generator of strings, each ending in a newline and " "some containing internal newlines. :func:`~traceback.print_exception` is a " "wrapper around this method which just prints the lines to a file." msgstr "" -#: library/traceback.rst:314 +#: library/traceback.rst:321 msgid "" "The message indicating which exception occurred is always the last string in " "the output." msgstr "" -#: library/traceback.rst:305 +#: library/traceback.rst:312 msgid "Format the exception part of the traceback." msgstr "" -#: library/traceback.rst:307 +#: library/traceback.rst:314 msgid "The return value is a generator of strings, each ending in a newline." msgstr "" -#: library/traceback.rst:309 +#: library/traceback.rst:316 msgid "" "Normally, the generator emits a single string; however, for :exc:" "`SyntaxError` exceptions, it emits several lines that (when printed) display " "detailed information about where the syntax error occurred." msgstr "" -#: library/traceback.rst:317 +#: library/traceback.rst:324 msgid "Added the *compact* parameter." msgstr "" -#: library/traceback.rst:322 +#: library/traceback.rst:329 msgid ":class:`StackSummary` Objects" msgstr "" -#: library/traceback.rst:326 +#: library/traceback.rst:333 msgid "" ":class:`StackSummary` objects represent a call stack ready for formatting." msgstr "" -#: library/traceback.rst:332 +#: library/traceback.rst:339 msgid "" "Construct a :class:`StackSummary` object from a frame generator (such as is " "returned by :func:`~traceback.walk_stack` or :func:`~traceback.walk_tb`)." msgstr "" -#: library/traceback.rst:336 +#: library/traceback.rst:343 msgid "" "If *limit* is supplied, only this many frames are taken from *frame_gen*. If " "*lookup_lines* is ``False``, the returned :class:`FrameSummary` objects will " @@ -378,14 +396,14 @@ msgid "" "class:`FrameSummary` are captured as object representations." msgstr "" -#: library/traceback.rst:346 +#: library/traceback.rst:353 msgid "" "Construct a :class:`StackSummary` object from a supplied list of :class:" "`FrameSummary` objects or old-style list of tuples. Each tuple should be a " "4-tuple with filename, lineno, name, line as the elements." msgstr "" -#: library/traceback.rst:352 +#: library/traceback.rst:359 msgid "" "Returns a list of strings ready for printing. Each string in the resulting " "list corresponds to a single frame from the stack. Each string ends in a " @@ -393,18 +411,18 @@ msgid "" "with source text lines." msgstr "" -#: library/traceback.rst:357 +#: library/traceback.rst:364 msgid "" "For long sequences of the same frame and line, the first few repetitions are " "shown, followed by a summary line stating the exact number of further " "repetitions." msgstr "" -#: library/traceback.rst:361 +#: library/traceback.rst:368 msgid "Long sequences of repeated frames are now abbreviated." msgstr "" -#: library/traceback.rst:366 +#: library/traceback.rst:373 msgid "" "Returns a string for printing one of the frames involved in the stack. This " "method is called for each :class:`FrameSummary` object to be printed by :" @@ -412,16 +430,16 @@ msgid "" "from the output." msgstr "" -#: library/traceback.rst:375 +#: library/traceback.rst:382 msgid ":class:`FrameSummary` Objects" msgstr "" -#: library/traceback.rst:379 +#: library/traceback.rst:386 msgid "" "A :class:`FrameSummary` object represents a single frame in a traceback." msgstr "" -#: library/traceback.rst:383 +#: library/traceback.rst:390 msgid "" "Represent a single frame in the traceback or stack that is being formatted " "or printed. It may optionally have a stringified version of the frames " @@ -434,11 +452,11 @@ msgid "" "display." msgstr "" -#: library/traceback.rst:396 +#: library/traceback.rst:403 msgid "Traceback Examples" msgstr "" -#: library/traceback.rst:398 +#: library/traceback.rst:405 msgid "" "This simple example implements a basic read-eval-print loop, similar to (but " "less useful than) the standard Python interactive interpreter loop. For a " @@ -446,22 +464,22 @@ msgid "" "`code` module. ::" msgstr "" -#: library/traceback.rst:420 +#: library/traceback.rst:427 msgid "" "The following example demonstrates the different ways to print and format " "the exception and traceback:" msgstr "" -#: library/traceback.rst:455 +#: library/traceback.rst:462 msgid "The output for the example would look similar to this:" msgstr "" -#: library/traceback.rst:497 +#: library/traceback.rst:504 msgid "" "The following example shows the different ways to print and format the " "stack::" msgstr "" -#: library/traceback.rst:523 +#: library/traceback.rst:530 msgid "This last example demonstrates the final few formatting functions:" msgstr "" diff --git a/tutorial/venv.po b/tutorial/venv.po index 6b84cbe7b..ebbec924d 100644 --- a/tutorial/venv.po +++ b/tutorial/venv.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" +"POT-Creation-Date: 2023-02-04 22:37+0000\n" "PO-Revision-Date: 2022-12-28 23:02+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -174,10 +174,11 @@ msgid "Managing Packages with pip" msgstr "Paketleri pip ile Yönetme" #: tutorial/venv.rst:100 +#, fuzzy msgid "" "You can install, upgrade, and remove packages using a program called :" -"program:`pip`. By default ``pip`` will install packages from the Python " -"Package Index, . You can browse the Python Package Index " +"program:`pip`. By default ``pip`` will install packages from the `Python " +"Package Index `_. You can browse the Python Package Index " "by going to it in your web browser." msgstr "" ":program:`pip` adlı bir program kullanarak paketleri yükleyebilir, " From 281ce868a3365e1ccddba8605a553f0d3c7c79d2 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 5 Feb 2023 02:00:04 +0300 Subject: [PATCH 2/3] Fix fuzzies --- tutorial/venv.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tutorial/venv.po b/tutorial/venv.po index ebbec924d..327ba878a 100644 --- a/tutorial/venv.po +++ b/tutorial/venv.po @@ -174,7 +174,6 @@ msgid "Managing Packages with pip" msgstr "Paketleri pip ile Yönetme" #: tutorial/venv.rst:100 -#, fuzzy msgid "" "You can install, upgrade, and remove packages using a program called :" "program:`pip`. By default ``pip`` will install packages from the `Python " @@ -182,8 +181,8 @@ msgid "" "by going to it in your web browser." msgstr "" ":program:`pip` adlı bir program kullanarak paketleri yükleyebilir, " -"yükseltebilir ve kaldırabilirsiniz. Varsayılan olarak ``pip``, Python Paket Dizini'nden paketler yükler. Python Paket Dizini'ne " +"yükseltebilir ve kaldırabilirsiniz. Varsayılan olarak ``pip``, `Python Paket " +"Dizini `_ 'nden paketler yükler. Python Paket Dizini'ne " "web tarayıcınızdan giderek göz atabilirsiniz." #: tutorial/venv.rst:105 From 2a65984f753adee0be2cb9b9c1f083a761627cb0 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 5 Feb 2023 02:41:51 +0300 Subject: [PATCH 3/3] Bump year --- 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/frame.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 | 5 ++--- 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/enum.po | 2 +- howto/functional.po | 2 +- howto/index.po | 2 +- howto/instrumentation.po | 2 +- howto/ipaddress.po | 2 +- howto/isolating-extensions.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 +- includes/wasm-notavail.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-extending.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-runner.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/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/importlib.resources.abc.po | 2 +- library/importlib.resources.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/sys_path_init.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/tomllib.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/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.11.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/index.po | 2 +- 497 files changed, 498 insertions(+), 499 deletions(-) diff --git a/about.po b/about.po index d9ef2a42b..953cd8db1 100644 --- a/about.po +++ b/about.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9e7ea5366..009b1b878 100644 --- a/bugs.po +++ b/bugs.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 db622ddd7..55bb7f795 100644 --- a/c-api/abstract.po +++ b/c-api/abstract.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 60285f674..88fc9ab80 100644 --- a/c-api/allocation.po +++ b/c-api/allocation.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a297f45db..c4d1633c2 100644 --- a/c-api/apiabiversion.po +++ b/c-api/apiabiversion.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f6db83baa..9cd91eef9 100644 --- a/c-api/arg.po +++ b/c-api/arg.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0024b5f14..5d8c74e9e 100644 --- a/c-api/bool.po +++ b/c-api/bool.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5686a3ce5..827f85db8 100644 --- a/c-api/buffer.po +++ b/c-api/buffer.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0addfd72c..fc51fa253 100644 --- a/c-api/bytearray.po +++ b/c-api/bytearray.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6217ccb30..8288e1c18 100644 --- a/c-api/bytes.po +++ b/c-api/bytes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5f83a06f3..b1f8aed1e 100644 --- a/c-api/call.po +++ b/c-api/call.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 43df10740..77802d9a0 100644 --- a/c-api/capsule.po +++ b/c-api/capsule.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 8f1992e78..dea3f2d86 100644 --- a/c-api/cell.po +++ b/c-api/cell.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 eda58bdcd..230e9559a 100644 --- a/c-api/code.po +++ b/c-api/code.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 88cf0122c..e9d4029fe 100644 --- a/c-api/codec.po +++ b/c-api/codec.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 231e8cd72..da0cd0239 100644 --- a/c-api/complex.po +++ b/c-api/complex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 3b750d0a7..ceba1fe4c 100644 --- a/c-api/concrete.po +++ b/c-api/concrete.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ed89637f8..598599eaa 100644 --- a/c-api/contextvars.po +++ b/c-api/contextvars.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 069d11114..3a06f0687 100644 --- a/c-api/conversion.po +++ b/c-api/conversion.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b69389116..df9001741 100644 --- a/c-api/coro.po +++ b/c-api/coro.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e53b5c26e..bc870c3fe 100644 --- a/c-api/datetime.po +++ b/c-api/datetime.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 820a4d70d..b42fba6d9 100644 --- a/c-api/descriptor.po +++ b/c-api/descriptor.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b138a39d4..05b7ba2c6 100644 --- a/c-api/dict.po +++ b/c-api/dict.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ce0a2694e..81a4d32b5 100644 --- a/c-api/exceptions.po +++ b/c-api/exceptions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c420d0029..46e259cf9 100644 --- a/c-api/file.po +++ b/c-api/file.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 84ba9cc68..fa96e1321 100644 --- a/c-api/float.po +++ b/c-api/float.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/c-api/frame.po b/c-api/frame.po index 7830c6c9f..81bf72d0f 100644 --- a/c-api/frame.po +++ b/c-api/frame.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 de5b35f39..7b420c048 100644 --- a/c-api/function.po +++ b/c-api/function.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d1d4738ad..0eb830745 100644 --- a/c-api/gcsupport.po +++ b/c-api/gcsupport.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d41239af3..fd4547f7a 100644 --- a/c-api/gen.po +++ b/c-api/gen.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 bc0343d6b..ca407e655 100644 --- a/c-api/import.po +++ b/c-api/import.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2402e1ec3..c853fd29e 100644 --- a/c-api/index.po +++ b/c-api/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/c-api/init.po b/c-api/init.po index 8a07ebff5..ea5c20ce8 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 385b13dfc..42f206abe 100644 --- a/c-api/init_config.po +++ b/c-api/init_config.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 931f4557c..bbfef62b5 100644 --- a/c-api/intro.po +++ b/c-api/intro.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f43eab019..2c9276135 100644 --- a/c-api/iter.po +++ b/c-api/iter.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ae7d8afd4..794c5767f 100644 --- a/c-api/iterator.po +++ b/c-api/iterator.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f0f487ea5..2afb99ef3 100644 --- a/c-api/list.po +++ b/c-api/list.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6be5b873e..007bcbe01 100644 --- a/c-api/long.po +++ b/c-api/long.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 81f78a28b..4d45704a2 100644 --- a/c-api/mapping.po +++ b/c-api/mapping.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 98e77fd75..166b68fc0 100644 --- a/c-api/marshal.po +++ b/c-api/marshal.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 26a89f5c9..228472a3e 100644 --- a/c-api/memory.po +++ b/c-api/memory.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1651dc278..88ec5f25e 100644 --- a/c-api/memoryview.po +++ b/c-api/memoryview.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 88733ad37..66cd87963 100644 --- a/c-api/method.po +++ b/c-api/method.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 edc67f666..2ec194b63 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 92807a1de..8119a1179 100644 --- a/c-api/none.po +++ b/c-api/none.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a6e3cb89e..f6fda920c 100644 --- a/c-api/number.po +++ b/c-api/number.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c1f44bb04..3fb8400ce 100644 --- a/c-api/objbuffer.po +++ b/c-api/objbuffer.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a10504962..97abdea25 100644 --- a/c-api/object.po +++ b/c-api/object.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2a58800f4..9883ed394 100644 --- a/c-api/objimpl.po +++ b/c-api/objimpl.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fc0cc46ed..8710c69ee 100644 --- a/c-api/refcounting.po +++ b/c-api/refcounting.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a21006b74..ce4ec6cfc 100644 --- a/c-api/reflection.po +++ b/c-api/reflection.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 faacbbda2..f82e5de5c 100644 --- a/c-api/sequence.po +++ b/c-api/sequence.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d309ff0fb..1378b098c 100644 --- a/c-api/set.po +++ b/c-api/set.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c6e5ef86e..eb8ecda7d 100644 --- a/c-api/slice.po +++ b/c-api/slice.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f02ae2bb2..125d83324 100644 --- a/c-api/stable.po +++ b/c-api/stable.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6e9c2f2a4..b30686144 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 253854538..e29c3fad8 100644 --- a/c-api/sys.po +++ b/c-api/sys.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 629309a94..41c9bfead 100644 --- a/c-api/tuple.po +++ b/c-api/tuple.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6c736c92e..fc1f78203 100644 --- a/c-api/type.po +++ b/c-api/type.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fd6b24144..3e6fb5e82 100644 --- a/c-api/typehints.po +++ b/c-api/typehints.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0685c6862..add2fc054 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9fecf97ab..42a1d42b5 100644 --- a/c-api/unicode.po +++ b/c-api/unicode.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e2cf700cf..c412c103c 100644 --- a/c-api/utilities.po +++ b/c-api/utilities.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 71e56a89b..ef61c5b81 100644 --- a/c-api/veryhigh.po +++ b/c-api/veryhigh.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5ded58729..2e7acce97 100644 --- a/c-api/weakref.po +++ b/c-api/weakref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 604ae0a2a..d071be89d 100644 --- a/contents.po +++ b/contents.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 59207e354..0ffb0ecb3 100644 --- a/copyright.po +++ b/copyright.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" @@ -26,10 +26,9 @@ msgid "Python and this documentation is:" msgstr "Python ve bu dokümantasyon:" #: copyright.rst:7 -#, fuzzy msgid "Copyright © 2001-2023 Python Software Foundation. All rights reserved." msgstr "" -"Telif Hakkı © 2001-2022 Python Software Foundation. Tüm hakları saklıdır." +"Telif Hakkı © 2001-2023 Python Software Foundation. Tüm hakları saklıdır." #: copyright.rst:9 msgid "Copyright © 2000 BeOpen.com. All rights reserved." diff --git a/distributing/index.po b/distributing/index.po index 44d62a7b0..a4c4055cc 100644 --- a/distributing/index.po +++ b/distributing/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6259be15d..78a51439e 100644 --- a/distutils/_setuptools_disclaimer.po +++ b/distutils/_setuptools_disclaimer.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d9a7bb17d..e2a62d2c9 100644 --- a/distutils/apiref.po +++ b/distutils/apiref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6a66ba0e8..0575ccd87 100644 --- a/distutils/builtdist.po +++ b/distutils/builtdist.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a2e6611b5..6c98ed11d 100644 --- a/distutils/commandref.po +++ b/distutils/commandref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 96a0eee1f..f5e9a7af3 100644 --- a/distutils/configfile.po +++ b/distutils/configfile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0386e957b..120c5e271 100644 --- a/distutils/examples.po +++ b/distutils/examples.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0029fee7c..51677dedf 100644 --- a/distutils/extending.po +++ b/distutils/extending.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4c8d0ad6b..cb5e13271 100644 --- a/distutils/index.po +++ b/distutils/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 849f9dcbc..b0dfa97c4 100644 --- a/distutils/introduction.po +++ b/distutils/introduction.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 892332018..c447bd751 100644 --- a/distutils/packageindex.po +++ b/distutils/packageindex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 90c923291..8d9c2a88b 100644 --- a/distutils/setupscript.po +++ b/distutils/setupscript.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9cb489fee..ab2e916a1 100644 --- a/distutils/sourcedist.po +++ b/distutils/sourcedist.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e5b341f5e..6a90f70d0 100644 --- a/distutils/uploading.po +++ b/distutils/uploading.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5fd6cea4d..ec3a43c52 100644 --- a/extending/building.po +++ b/extending/building.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 86193b03e..5b5ae1c56 100644 --- a/extending/embedding.po +++ b/extending/embedding.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4c82f9953..88a61a85a 100644 --- a/extending/extending.po +++ b/extending/extending.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 53ee06f05..1c19a15cd 100644 --- a/extending/index.po +++ b/extending/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/extending/newtypes.po b/extending/newtypes.po index de70ae6da..a6ed9e2c4 100644 --- a/extending/newtypes.po +++ b/extending/newtypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 bad7d7889..5b1bfed0f 100644 --- a/extending/newtypes_tutorial.po +++ b/extending/newtypes_tutorial.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6e7d5dfd9..72d21efe7 100644 --- a/extending/windows.po +++ b/extending/windows.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1ff978eab..6d9ac120a 100644 --- a/faq/design.po +++ b/faq/design.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6b0e571da..b653a985c 100644 --- a/faq/extending.po +++ b/faq/extending.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/faq/general.po b/faq/general.po index 468658f3e..f52d1b661 100644 --- a/faq/general.po +++ b/faq/general.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 54a9ad1b7..d4002cffa 100644 --- a/faq/gui.po +++ b/faq/gui.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 546caaff9..69659ec9c 100644 --- a/faq/index.po +++ b/faq/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 95a140443..52ee038d4 100644 --- a/faq/installed.po +++ b/faq/installed.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 78904c3db..7d1c40f29 100644 --- a/faq/library.po +++ b/faq/library.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 24b580950..723e73973 100644 --- a/faq/programming.po +++ b/faq/programming.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cf79c508b..0f31f6496 100644 --- a/faq/windows.po +++ b/faq/windows.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 77f327784..503ce77da 100644 --- a/glossary.po +++ b/glossary.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/howto/annotations.po b/howto/annotations.po index ef3ab9c08..d9130bd52 100644 --- a/howto/annotations.po +++ b/howto/annotations.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fce58a11a..0e4fddb40 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 364831c76..80cba5413 100644 --- a/howto/clinic.po +++ b/howto/clinic.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f05df826e..27e998e39 100644 --- a/howto/cporting.po +++ b/howto/cporting.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9d796d822..4ba7cd40b 100644 --- a/howto/curses.po +++ b/howto/curses.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2a68d7017..11d66fefd 100644 --- a/howto/descriptor.po +++ b/howto/descriptor.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/enum.po b/howto/enum.po index 5e00cb0eb..33ebd65a1 100644 --- a/howto/enum.po +++ b/howto/enum.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 26190bc7f..1e518d926 100644 --- a/howto/functional.po +++ b/howto/functional.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d7b44c237..94c135f67 100644 --- a/howto/index.po +++ b/howto/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/howto/instrumentation.po b/howto/instrumentation.po index c1ce51655..845ef0125 100644 --- a/howto/instrumentation.po +++ b/howto/instrumentation.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 99f32c6d0..db05f8487 100644 --- a/howto/ipaddress.po +++ b/howto/ipaddress.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/howto/isolating-extensions.po b/howto/isolating-extensions.po index c65ac450c..b65ae411b 100644 --- a/howto/isolating-extensions.po +++ b/howto/isolating-extensions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c5fe5b967..ab39b88a9 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 74e39ff23..1b22ad15e 100644 --- a/howto/logging.po +++ b/howto/logging.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 347be7a88..bc4261b6a 100644 --- a/howto/pyporting.po +++ b/howto/pyporting.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4cb4c6dab..941fe245e 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 777e5a040..b76efd893 100644 --- a/howto/sockets.po +++ b/howto/sockets.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2d54f5b89..5ac715e04 100644 --- a/howto/sorting.po +++ b/howto/sorting.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 40b372a79..0da6f206f 100644 --- a/howto/unicode.po +++ b/howto/unicode.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b091c4652..9a92a11c4 100644 --- a/howto/urllib2.po +++ b/howto/urllib2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/includes/wasm-notavail.po b/includes/wasm-notavail.po index ada07c297..8797ed503 100644 --- a/includes/wasm-notavail.po +++ b/includes/wasm-notavail.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 73b5d33ab..f0fae5fc7 100644 --- a/install/index.po +++ b/install/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cde4645a5..761795698 100644 --- a/installing/index.po +++ b/installing/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/library/2to3.po b/library/2to3.po index 8dfdc2807..a4dd9361a 100644 --- a/library/2to3.po +++ b/library/2to3.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fe09f54f0..e7d1145a4 100644 --- a/library/__future__.po +++ b/library/__future__.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4f32db689..4574ad2ea 100644 --- a/library/__main__.po +++ b/library/__main__.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c59d9d6b6..8fd7af7ac 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ce20e1f94..3d5246659 100644 --- a/library/abc.po +++ b/library/abc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 97c668687..bf6026fa1 100644 --- a/library/aifc.po +++ b/library/aifc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 49171a0ec..185c8262c 100644 --- a/library/allos.po +++ b/library/allos.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6dc1ad11b..382119ed4 100644 --- a/library/archiving.po +++ b/library/archiving.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 902986ab0..230ec9ea9 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 8c8a98885..9f8d43bac 100644 --- a/library/array.po +++ b/library/array.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5cad54a39..59e4ac951 100644 --- a/library/ast.po +++ b/library/ast.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6eddeef7f..002269db9 100644 --- a/library/asynchat.po +++ b/library/asynchat.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b355026cc..bfc6e3e3a 100644 --- a/library/asyncio-api-index.po +++ b/library/asyncio-api-index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9f7cde9cd..1daa6aafe 100644 --- a/library/asyncio-dev.po +++ b/library/asyncio-dev.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 90942d2ae..91be5b7e8 100644 --- a/library/asyncio-eventloop.po +++ b/library/asyncio-eventloop.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 819f65d1b..aff8786bd 100644 --- a/library/asyncio-exceptions.po +++ b/library/asyncio-exceptions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-extending.po b/library/asyncio-extending.po index 9760d29e2..1e6948f6f 100644 --- a/library/asyncio-extending.po +++ b/library/asyncio-extending.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 62654a484..35aab59d8 100644 --- a/library/asyncio-future.po +++ b/library/asyncio-future.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0f155bef6..c5987d182 100644 --- a/library/asyncio-llapi-index.po +++ b/library/asyncio-llapi-index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6496f5b45..ad98fe23d 100644 --- a/library/asyncio-platforms.po +++ b/library/asyncio-platforms.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b64b0b10d..208d2c246 100644 --- a/library/asyncio-policy.po +++ b/library/asyncio-policy.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c44f620a0..26da0dcd9 100644 --- a/library/asyncio-protocol.po +++ b/library/asyncio-protocol.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a28d5b0d2..72e3bffe4 100644 --- a/library/asyncio-queue.po +++ b/library/asyncio-queue.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/asyncio-runner.po b/library/asyncio-runner.po index 27bd47ec5..6f57691ac 100644 --- a/library/asyncio-runner.po +++ b/library/asyncio-runner.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6d76f2b60..5c743f044 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f4300ba03..4abf6a3f7 100644 --- a/library/asyncio-subprocess.po +++ b/library/asyncio-subprocess.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 06e679759..59e40f077 100644 --- a/library/asyncio-sync.po +++ b/library/asyncio-sync.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9c725b31f..03efc922a 100644 --- a/library/asyncio-task.po +++ b/library/asyncio-task.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 51f877c4d..f42c0468c 100644 --- a/library/asyncio.po +++ b/library/asyncio.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b1c5684cf..cf6190881 100644 --- a/library/asyncore.po +++ b/library/asyncore.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 235123feb..4d5bfe435 100644 --- a/library/atexit.po +++ b/library/atexit.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f5107a150..a1f6d7352 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d45e558f9..1a0a3857a 100644 --- a/library/audit_events.po +++ b/library/audit_events.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f22cb36bb..27715f336 100644 --- a/library/base64.po +++ b/library/base64.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 374f50792..c8f75bf51 100644 --- a/library/bdb.po +++ b/library/bdb.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b31f483fd..dd7982314 100644 --- a/library/binary.po +++ b/library/binary.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f52b59eb3..ad6b8e256 100644 --- a/library/binascii.po +++ b/library/binascii.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 eec3e8cfe..4a4246806 100644 --- a/library/bisect.po +++ b/library/bisect.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cbdf75bcf..ec8f3cb4c 100644 --- a/library/builtins.po +++ b/library/builtins.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1c93dbee3..486e787fa 100644 --- a/library/bz2.po +++ b/library/bz2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 954fd700a..b1b1bd377 100644 --- a/library/calendar.po +++ b/library/calendar.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c7b6299e3..0e503f9da 100644 --- a/library/cgi.po +++ b/library/cgi.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d7ea9864b..7d973dd24 100644 --- a/library/cgitb.po +++ b/library/cgitb.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 08407cab9..97b009f71 100644 --- a/library/chunk.po +++ b/library/chunk.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 435518cdd..6ad0190d3 100644 --- a/library/cmath.po +++ b/library/cmath.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 312819416..fdb94838c 100644 --- a/library/cmd.po +++ b/library/cmd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 faf19475d..013f49f2f 100644 --- a/library/code.po +++ b/library/code.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5ad75cce4..74def4822 100644 --- a/library/codecs.po +++ b/library/codecs.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2448ba989..16aadd0ed 100644 --- a/library/codeop.po +++ b/library/codeop.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6e8ceee24..461aab4dc 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e8d889a83..d4bd9798a 100644 --- a/library/collections.po +++ b/library/collections.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0cf62fd44..a68b8afb9 100644 --- a/library/colorsys.po +++ b/library/colorsys.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d58d0eb10..e06176a68 100644 --- a/library/compileall.po +++ b/library/compileall.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cd0776ec2..9fda97f05 100644 --- a/library/concurrency.po +++ b/library/concurrency.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c0b3fcb16..b2e8a4d03 100644 --- a/library/concurrent.futures.po +++ b/library/concurrent.futures.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 97f46fd37..ad9ebb1f5 100644 --- a/library/concurrent.po +++ b/library/concurrent.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 49fd4ad22..c25dc771e 100644 --- a/library/configparser.po +++ b/library/configparser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 55ce8769b..877d8f49a 100644 --- a/library/constants.po +++ b/library/constants.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 55686baf0..451e6fb30 100644 --- a/library/contextlib.po +++ b/library/contextlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e79df802d..642e9f97e 100644 --- a/library/contextvars.po +++ b/library/contextvars.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 42e5613ec..f76957416 100644 --- a/library/copy.po +++ b/library/copy.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cc78c89da..ce039eef4 100644 --- a/library/copyreg.po +++ b/library/copyreg.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f956296e6..a6e38ca80 100644 --- a/library/crypt.po +++ b/library/crypt.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 323c89c8b..e3907eb76 100644 --- a/library/crypto.po +++ b/library/crypto.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 99db6aa11..47f14809f 100644 --- a/library/csv.po +++ b/library/csv.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0b5d00320..67bde6b56 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 497d54bc0..60a641c97 100644 --- a/library/curses.ascii.po +++ b/library/curses.ascii.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c2756270f..632c8e651 100644 --- a/library/curses.panel.po +++ b/library/curses.panel.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b2fdee86a..41b801cf3 100644 --- a/library/curses.po +++ b/library/curses.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a234918ba..83697d578 100644 --- a/library/custominterp.po +++ b/library/custominterp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 48124f11b..6c584c855 100644 --- a/library/dataclasses.po +++ b/library/dataclasses.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fb69bf8c4..983c05fbd 100644 --- a/library/datatypes.po +++ b/library/datatypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ae6183496..f90e28704 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c60778c1b..510055282 100644 --- a/library/dbm.po +++ b/library/dbm.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 56e1c14ea..6bbf967ea 100644 --- a/library/debug.po +++ b/library/debug.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fd13ac904..6ca4fdc77 100644 --- a/library/decimal.po +++ b/library/decimal.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c9bba44d0..bce80ed89 100644 --- a/library/development.po +++ b/library/development.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c4cac324f..621e2a963 100644 --- a/library/devmode.po +++ b/library/devmode.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 25e2bfbfc..26cd0cc5e 100644 --- a/library/dialog.po +++ b/library/dialog.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6dbf55318..84d49d3c3 100644 --- a/library/difflib.po +++ b/library/difflib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d7fcdf90b..7720b8f5c 100644 --- a/library/dis.po +++ b/library/dis.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 10cd890a1..7cf3d315e 100644 --- a/library/distribution.po +++ b/library/distribution.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0ae60a941..db27e9eed 100644 --- a/library/distutils.po +++ b/library/distutils.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fdef9f77c..98c0b3904 100644 --- a/library/doctest.po +++ b/library/doctest.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 548d9f2fa..cb3b34a2b 100644 --- a/library/email.charset.po +++ b/library/email.charset.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 df3e38ef1..4e30cef49 100644 --- a/library/email.compat32-message.po +++ b/library/email.compat32-message.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 329d39c4e..95dbbc79e 100644 --- a/library/email.contentmanager.po +++ b/library/email.contentmanager.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6af4450b7..24919dd29 100644 --- a/library/email.encoders.po +++ b/library/email.encoders.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c06da615e..43872d68f 100644 --- a/library/email.errors.po +++ b/library/email.errors.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e915c08c1..cad7f9718 100644 --- a/library/email.examples.po +++ b/library/email.examples.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 940d85155..1fc4878fa 100644 --- a/library/email.generator.po +++ b/library/email.generator.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 dafc0771a..d02607ca5 100644 --- a/library/email.header.po +++ b/library/email.header.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fac17ccff..33cd8cd64 100644 --- a/library/email.headerregistry.po +++ b/library/email.headerregistry.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 272c3a87e..4b6757895 100644 --- a/library/email.iterators.po +++ b/library/email.iterators.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4ce661034..236a16deb 100644 --- a/library/email.message.po +++ b/library/email.message.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 36febea50..f1a414bca 100644 --- a/library/email.mime.po +++ b/library/email.mime.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 da094b97c..dd0b09caa 100644 --- a/library/email.parser.po +++ b/library/email.parser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2f2c30589..a5d2d0610 100644 --- a/library/email.po +++ b/library/email.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6ed3b86dd..31e113c88 100644 --- a/library/email.policy.po +++ b/library/email.policy.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ee0dd3293..3e2b012f3 100644 --- a/library/email.utils.po +++ b/library/email.utils.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e1f3b8a16..ebcac5d17 100644 --- a/library/ensurepip.po +++ b/library/ensurepip.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9502c1ff5..b2e6f17a7 100644 --- a/library/enum.po +++ b/library/enum.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 adc8ee53d..3c54db286 100644 --- a/library/errno.po +++ b/library/errno.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 38948e897..0f2b35e94 100644 --- a/library/exceptions.po +++ b/library/exceptions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 defa3a550..77eb9b495 100644 --- a/library/faulthandler.po +++ b/library/faulthandler.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5b19e2198..5e215415c 100644 --- a/library/fcntl.po +++ b/library/fcntl.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 20125c5db..8c543da08 100644 --- a/library/filecmp.po +++ b/library/filecmp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 99aa53044..751208578 100644 --- a/library/fileformats.po +++ b/library/fileformats.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 815baae16..d8308dc1f 100644 --- a/library/fileinput.po +++ b/library/fileinput.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d37d6bcb7..06a4fbc08 100644 --- a/library/filesys.po +++ b/library/filesys.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f30cf528c..d69e47889 100644 --- a/library/fnmatch.po +++ b/library/fnmatch.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4ce8a745c..5247f010c 100644 --- a/library/fractions.po +++ b/library/fractions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c9ed21f9c..84064656b 100644 --- a/library/frameworks.po +++ b/library/frameworks.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d2364c13e..df1b08667 100644 --- a/library/ftplib.po +++ b/library/ftplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9eff0033a..128ee7c13 100644 --- a/library/functional.po +++ b/library/functional.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fa0e1bd80..a84e34f74 100644 --- a/library/functions.po +++ b/library/functions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/library/functools.po b/library/functools.po index c2b96c88c..d889e10ee 100644 --- a/library/functools.po +++ b/library/functools.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 977baeba8..1980ec68a 100644 --- a/library/gc.po +++ b/library/gc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 69cce0f00..5ab4bf28f 100644 --- a/library/getopt.po +++ b/library/getopt.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 39c16cca9..e1a0d180e 100644 --- a/library/getpass.po +++ b/library/getpass.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1ffff8879..f47b48884 100644 --- a/library/gettext.po +++ b/library/gettext.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b481d4299..ca0840cc4 100644 --- a/library/glob.po +++ b/library/glob.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e9c3703b4..cd8552557 100644 --- a/library/graphlib.po +++ b/library/graphlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 90142b7ff..52a04f2d0 100644 --- a/library/grp.po +++ b/library/grp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 29f0fd8a7..e5872b06c 100644 --- a/library/gzip.po +++ b/library/gzip.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2ccb62f3c..ea099a3f5 100644 --- a/library/hashlib.po +++ b/library/hashlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cc0763cd4..e3eae3cca 100644 --- a/library/heapq.po +++ b/library/heapq.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 30e2b4cdf..1f8a8295c 100644 --- a/library/hmac.po +++ b/library/hmac.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d9d8de675..d29f106ae 100644 --- a/library/html.entities.po +++ b/library/html.entities.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 7b488d159..6f411b0e8 100644 --- a/library/html.parser.po +++ b/library/html.parser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 72ae4cdfd..a676d01a5 100644 --- a/library/html.po +++ b/library/html.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5c28359f9..93e7b8da3 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cb36a238c..ff76a5505 100644 --- a/library/http.cookiejar.po +++ b/library/http.cookiejar.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d32fca8e2..606880685 100644 --- a/library/http.cookies.po +++ b/library/http.cookies.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 87442162c..98b8c12e7 100644 --- a/library/http.po +++ b/library/http.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5c6f015fa..f7ec8718b 100644 --- a/library/http.server.po +++ b/library/http.server.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6c2dbdca3..119e8089b 100644 --- a/library/i18n.po +++ b/library/i18n.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 3b2b374e9..17097ad7b 100644 --- a/library/idle.po +++ b/library/idle.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 590c13d06..4fc4e73a7 100644 --- a/library/imaplib.po +++ b/library/imaplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 725db3fd9..60e075ba4 100644 --- a/library/imghdr.po +++ b/library/imghdr.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 495e64c3c..e205606e4 100644 --- a/library/imp.po +++ b/library/imp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 7e7fd417b..d1118f772 100644 --- a/library/importlib.metadata.po +++ b/library/importlib.metadata.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2b2cc1f6e..37e47cea2 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/importlib.resources.abc.po b/library/importlib.resources.abc.po index a122ed6f9..ff12d5b1c 100644 --- a/library/importlib.resources.abc.po +++ b/library/importlib.resources.abc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/importlib.resources.po b/library/importlib.resources.po index 5d433a7f7..5ee281a50 100644 --- a/library/importlib.resources.po +++ b/library/importlib.resources.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d4ace2ab5..151f1c9ba 100644 --- a/library/index.po +++ b/library/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a1be6e6ce..1c5d23cd8 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cfd593833..cce4c00af 100644 --- a/library/internet.po +++ b/library/internet.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f1e52b2d3..a9c857ded 100644 --- a/library/intro.po +++ b/library/intro.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6eb181a71..cb0ad2aec 100644 --- a/library/io.po +++ b/library/io.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 64bac9eb4..930f99576 100644 --- a/library/ipaddress.po +++ b/library/ipaddress.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 355f7fd99..3f6c65bc7 100644 --- a/library/ipc.po +++ b/library/ipc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 25c894072..b2040e5de 100644 --- a/library/itertools.po +++ b/library/itertools.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c6e989451..de16e00d1 100644 --- a/library/json.po +++ b/library/json.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b72003fa6..393661b63 100644 --- a/library/keyword.po +++ b/library/keyword.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 66713055a..f0cbb714d 100644 --- a/library/language.po +++ b/library/language.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6372b6568..972e1c9ab 100644 --- a/library/linecache.po +++ b/library/linecache.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f98fc0d0a..75f4c4817 100644 --- a/library/locale.po +++ b/library/locale.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 bc36f5fbf..2ebbb8320 100644 --- a/library/logging.config.po +++ b/library/logging.config.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a0feda0f4..bad5fa8a2 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 96e720b09..2dcda77f9 100644 --- a/library/logging.po +++ b/library/logging.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 68ab14f3a..2f2f6eb32 100644 --- a/library/lzma.po +++ b/library/lzma.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e6b3e8b7d..039541619 100644 --- a/library/mailbox.po +++ b/library/mailbox.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 8eaa6b92e..61d4461f2 100644 --- a/library/mailcap.po +++ b/library/mailcap.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 678e4ba0c..1a0ddcf3d 100644 --- a/library/markup.po +++ b/library/markup.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 820833bad..ac73371f4 100644 --- a/library/marshal.po +++ b/library/marshal.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 49a451bfe..bd86e6241 100644 --- a/library/math.po +++ b/library/math.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 7e49f1d02..d05049cc3 100644 --- a/library/mimetypes.po +++ b/library/mimetypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 624c5b864..9e94ee208 100644 --- a/library/mm.po +++ b/library/mm.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 33bd05274..0005b7f3c 100644 --- a/library/mmap.po +++ b/library/mmap.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a0d20d57e..d3d84e645 100644 --- a/library/modulefinder.po +++ b/library/modulefinder.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9fdfedc18..92dc2daee 100644 --- a/library/modules.po +++ b/library/modules.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 81d2554b4..2b54b4307 100644 --- a/library/msilib.po +++ b/library/msilib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1be7713a1..55548239e 100644 --- a/library/msvcrt.po +++ b/library/msvcrt.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 67f25a60b..f1026d309 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 37118247f..ec14ab2f6 100644 --- a/library/multiprocessing.shared_memory.po +++ b/library/multiprocessing.shared_memory.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c7d4c007e..5e6c183ab 100644 --- a/library/netdata.po +++ b/library/netdata.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 011192309..ef1b96e1f 100644 --- a/library/netrc.po +++ b/library/netrc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2e47785eb..cc653765c 100644 --- a/library/nis.po +++ b/library/nis.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 31be4143c..194fe4102 100644 --- a/library/nntplib.po +++ b/library/nntplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 24e8e424d..b3a53d0d5 100644 --- a/library/numbers.po +++ b/library/numbers.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 46f319a09..2624145fa 100644 --- a/library/numeric.po +++ b/library/numeric.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f601b87d9..8d257b54f 100644 --- a/library/operator.po +++ b/library/operator.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0827b4bcf..11573583e 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 362259a17..d67a1d272 100644 --- a/library/os.path.po +++ b/library/os.path.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1c1440170..7b69ec33b 100644 --- a/library/os.po +++ b/library/os.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6e1cf4230..76771294c 100644 --- a/library/ossaudiodev.po +++ b/library/ossaudiodev.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ce3954136..30a971a1d 100644 --- a/library/pathlib.po +++ b/library/pathlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 3be8c7195..4457d4e54 100644 --- a/library/pdb.po +++ b/library/pdb.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9654088c5..c73b2bff3 100644 --- a/library/persistence.po +++ b/library/persistence.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e27ac1531..71211827a 100644 --- a/library/pickle.po +++ b/library/pickle.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 107ae4c7d..f30207f48 100644 --- a/library/pickletools.po +++ b/library/pickletools.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 dbcbb07b5..a6199041f 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 db9370b6b..75f2e05de 100644 --- a/library/pkgutil.po +++ b/library/pkgutil.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 80b036050..53de0ccea 100644 --- a/library/platform.po +++ b/library/platform.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 941a241fd..09ab60ac3 100644 --- a/library/plistlib.po +++ b/library/plistlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 82d84a284..a8d3b6cbd 100644 --- a/library/poplib.po +++ b/library/poplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f09a6b0a2..562d25ee0 100644 --- a/library/posix.po +++ b/library/posix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e2ac1b174..ea08e0ce5 100644 --- a/library/pprint.po +++ b/library/pprint.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 878945975..9c27dbb38 100644 --- a/library/profile.po +++ b/library/profile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 59daa66a4..070fb16ab 100644 --- a/library/pty.po +++ b/library/pty.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 864ab3d0f..5ff2b4320 100644 --- a/library/pwd.po +++ b/library/pwd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 db1d06150..7868c0fc2 100644 --- a/library/py_compile.po +++ b/library/py_compile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 71d83f0ec..053cc622a 100644 --- a/library/pyclbr.po +++ b/library/pyclbr.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2fec5e87f..4c4e79961 100644 --- a/library/pydoc.po +++ b/library/pydoc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a61c26efc..0c5fc9941 100644 --- a/library/pyexpat.po +++ b/library/pyexpat.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f5cb8c3bd..7c634ec30 100644 --- a/library/python.po +++ b/library/python.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 994c5c491..d488783e2 100644 --- a/library/queue.po +++ b/library/queue.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 68f17d03f..12b1f7061 100644 --- a/library/quopri.po +++ b/library/quopri.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2cece0ee7..a6ae8192f 100644 --- a/library/random.po +++ b/library/random.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c9c9e158f..6afe653c0 100644 --- a/library/re.po +++ b/library/re.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 255bc51e7..e3e9d6e0c 100644 --- a/library/readline.po +++ b/library/readline.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 809855155..20fc93615 100644 --- a/library/reprlib.po +++ b/library/reprlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 aafc52644..e5db35fa5 100644 --- a/library/resource.po +++ b/library/resource.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 3f4d8419a..b0d279eaf 100644 --- a/library/rlcompleter.po +++ b/library/rlcompleter.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 81cc53c2d..33a51fe29 100644 --- a/library/runpy.po +++ b/library/runpy.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 64a3abc0d..f57906a1d 100644 --- a/library/sched.po +++ b/library/sched.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 846fcdaa2..3252fed9b 100644 --- a/library/secrets.po +++ b/library/secrets.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 36210c57b..e337da7f8 100644 --- a/library/security_warnings.po +++ b/library/security_warnings.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0283e8c87..1ad689d20 100644 --- a/library/select.po +++ b/library/select.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9aab6408b..19e5a629f 100644 --- a/library/selectors.po +++ b/library/selectors.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 56c797ce2..d40d961f0 100644 --- a/library/shelve.po +++ b/library/shelve.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1496d8047..0414b0d76 100644 --- a/library/shlex.po +++ b/library/shlex.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 78bebe5be..a41f97640 100644 --- a/library/shutil.po +++ b/library/shutil.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 55798980c..bae1ddb22 100644 --- a/library/signal.po +++ b/library/signal.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a8bc87b73..e9020b139 100644 --- a/library/site.po +++ b/library/site.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 180e5f03c..75dbc85d9 100644 --- a/library/smtpd.po +++ b/library/smtpd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 92af6b156..6e0349520 100644 --- a/library/smtplib.po +++ b/library/smtplib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 23ff476f7..9abd07d0b 100644 --- a/library/sndhdr.po +++ b/library/sndhdr.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 eac4e2a15..81a0c55f7 100644 --- a/library/socket.po +++ b/library/socket.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 91c0c3a02..5a977caf4 100644 --- a/library/socketserver.po +++ b/library/socketserver.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 29b586e46..29f16a69c 100644 --- a/library/spwd.po +++ b/library/spwd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9ce2f1eec..a7c2d4f6e 100644 --- a/library/sqlite3.po +++ b/library/sqlite3.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 de3a77062..bc8c2a5e5 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 05e26f60f..6c2918905 100644 --- a/library/stat.po +++ b/library/stat.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5f7d24835..0aca50b93 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f59d8383d..957034a68 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f8f8df951..5587f36d6 100644 --- a/library/string.po +++ b/library/string.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 659a6f98a..31c74ce93 100644 --- a/library/stringprep.po +++ b/library/stringprep.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c194d6350..3fd11605f 100644 --- a/library/struct.po +++ b/library/struct.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 517277933..b390b86c4 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 06f8edf11..504d98df7 100644 --- a/library/sunau.po +++ b/library/sunau.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 3033dc64f..3485f4c1d 100644 --- a/library/superseded.po +++ b/library/superseded.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 308e4605d..8b96a4f47 100644 --- a/library/symtable.po +++ b/library/symtable.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 28437d1f0..5f1673f45 100644 --- a/library/sys.po +++ b/library/sys.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/sys_path_init.po b/library/sys_path_init.po index a3e3351c5..79a4f157a 100644 --- a/library/sys_path_init.po +++ b/library/sys_path_init.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2c084d2c2..b1a95185e 100644 --- a/library/sysconfig.po +++ b/library/sysconfig.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0c2b67cbd..6ea0dff9c 100644 --- a/library/syslog.po +++ b/library/syslog.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 765ee8fad..4edae2c90 100644 --- a/library/tabnanny.po +++ b/library/tabnanny.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6f5d58181..ae922d4f9 100644 --- a/library/tarfile.po +++ b/library/tarfile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 57a6cad9f..35445341c 100644 --- a/library/telnetlib.po +++ b/library/telnetlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0b71f6d1f..a2c0199df 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f26a1b89f..eb434d7c2 100644 --- a/library/termios.po +++ b/library/termios.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0f888c314..4cd555c52 100644 --- a/library/test.po +++ b/library/test.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 46ae66197..564441b0f 100644 --- a/library/text.po +++ b/library/text.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 60c47f97b..72fedcce4 100644 --- a/library/textwrap.po +++ b/library/textwrap.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4222e3d9e..d9d87d082 100644 --- a/library/threading.po +++ b/library/threading.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9980ad896..4c146b75f 100644 --- a/library/time.po +++ b/library/time.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a2f7c3d26..1fd48a792 100644 --- a/library/timeit.po +++ b/library/timeit.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d452cacf0..1d76c9d17 100644 --- a/library/tk.po +++ b/library/tk.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b9dedcf0a..58f0d5049 100644 --- a/library/tkinter.colorchooser.po +++ b/library/tkinter.colorchooser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 66e8538da..76fac27af 100644 --- a/library/tkinter.dnd.po +++ b/library/tkinter.dnd.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2763c4ab5..7a7e32f7f 100644 --- a/library/tkinter.font.po +++ b/library/tkinter.font.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9850cefbe..eedab01bd 100644 --- a/library/tkinter.messagebox.po +++ b/library/tkinter.messagebox.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1cacb26df..2fa39f807 100644 --- a/library/tkinter.po +++ b/library/tkinter.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 063439700..cce51c639 100644 --- a/library/tkinter.scrolledtext.po +++ b/library/tkinter.scrolledtext.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 31efc31c0..9325b94e6 100644 --- a/library/tkinter.tix.po +++ b/library/tkinter.tix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a16b6ceef..11ab0f449 100644 --- a/library/tkinter.ttk.po +++ b/library/tkinter.ttk.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 68d8447b7..db67c831a 100644 --- a/library/token.po +++ b/library/token.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 623c785dc..d77e85999 100644 --- a/library/tokenize.po +++ b/library/tokenize.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/library/tomllib.po b/library/tomllib.po index b46f27d17..c44b21cec 100644 --- a/library/tomllib.po +++ b/library/tomllib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 80c7bc303..c723247ea 100644 --- a/library/trace.po +++ b/library/trace.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 33e1dd433..68ada6c6d 100644 --- a/library/traceback.po +++ b/library/traceback.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e19ec8037..ce1243c65 100644 --- a/library/tracemalloc.po +++ b/library/tracemalloc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 9d1b0ee59..21daa230b 100644 --- a/library/tty.po +++ b/library/tty.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d7b19dc0d..f87ce7732 100644 --- a/library/turtle.po +++ b/library/turtle.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d3b5baab7..772d28d20 100644 --- a/library/types.po +++ b/library/types.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c112ba520..e6d2a8a4e 100644 --- a/library/typing.po +++ b/library/typing.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 bd7295e4a..efd8bdef6 100644 --- a/library/unicodedata.po +++ b/library/unicodedata.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e10a2a7eb..e8246d666 100644 --- a/library/unittest.mock-examples.po +++ b/library/unittest.mock-examples.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f57027b41..e37db1801 100644 --- a/library/unittest.mock.po +++ b/library/unittest.mock.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 656fc59ee..199924e08 100644 --- a/library/unittest.po +++ b/library/unittest.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c74effd81..070abc458 100644 --- a/library/unix.po +++ b/library/unix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 366540f21..075bcb7ea 100644 --- a/library/urllib.error.po +++ b/library/urllib.error.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c45f36e2a..48f71bb5e 100644 --- a/library/urllib.parse.po +++ b/library/urllib.parse.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 39674b16e..246467343 100644 --- a/library/urllib.po +++ b/library/urllib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a466091ad..d10e92eb4 100644 --- a/library/urllib.request.po +++ b/library/urllib.request.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 709e7e1ef..80551232e 100644 --- a/library/urllib.robotparser.po +++ b/library/urllib.robotparser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5446515b6..c258f09fc 100644 --- a/library/uu.po +++ b/library/uu.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c0d68dfd5..f95a53b9d 100644 --- a/library/uuid.po +++ b/library/uuid.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 42a806a8a..7622e58b6 100644 --- a/library/venv.po +++ b/library/venv.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ab301d59b..82dbc56a2 100644 --- a/library/warnings.po +++ b/library/warnings.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1ed8ff2e8..1ecbf31ea 100644 --- a/library/wave.po +++ b/library/wave.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c9f41283c..28e0e6016 100644 --- a/library/weakref.po +++ b/library/weakref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1e150e8da..b32bdca37 100644 --- a/library/webbrowser.po +++ b/library/webbrowser.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 880dd3d8e..c29988405 100644 --- a/library/windows.po +++ b/library/windows.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0c7418930..360343ca8 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 69b1f5286..25e304f25 100644 --- a/library/winsound.po +++ b/library/winsound.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5055ce9b5..43a42181d 100644 --- a/library/wsgiref.po +++ b/library/wsgiref.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 70f8ed165..50dcb2157 100644 --- a/library/xdrlib.po +++ b/library/xdrlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0ccf6e69e..1899fbe9d 100644 --- a/library/xml.dom.minidom.po +++ b/library/xml.dom.minidom.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f9e25ee65..26df7da3e 100644 --- a/library/xml.dom.po +++ b/library/xml.dom.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cd20c7ae8..4f89ed877 100644 --- a/library/xml.dom.pulldom.po +++ b/library/xml.dom.pulldom.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 628431440..88084d62e 100644 --- a/library/xml.etree.elementtree.po +++ b/library/xml.etree.elementtree.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 565c24c6e..e02177c3d 100644 --- a/library/xml.po +++ b/library/xml.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2f7da3c93..172aabe97 100644 --- a/library/xml.sax.handler.po +++ b/library/xml.sax.handler.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4a85328d8..81726dc66 100644 --- a/library/xml.sax.po +++ b/library/xml.sax.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a4c4b7700..e4fbe4f51 100644 --- a/library/xml.sax.reader.po +++ b/library/xml.sax.reader.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 68f756ede..720b7ac67 100644 --- a/library/xml.sax.utils.po +++ b/library/xml.sax.utils.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 a79172065..ddf5fa4ca 100644 --- a/library/xmlrpc.client.po +++ b/library/xmlrpc.client.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e7c525a47..aa176937b 100644 --- a/library/xmlrpc.po +++ b/library/xmlrpc.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 34e5a6d49..0505e777a 100644 --- a/library/xmlrpc.server.po +++ b/library/xmlrpc.server.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d9832aea6..d9db3c7f0 100644 --- a/library/zipapp.po +++ b/library/zipapp.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fbdf6498a..e7f6f9a4a 100644 --- a/library/zipfile.po +++ b/library/zipfile.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f0d8c6743..a9c767c94 100644 --- a/library/zipimport.po +++ b/library/zipimport.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4f05565b5..5e37a1760 100644 --- a/library/zlib.po +++ b/library/zlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 44332db59..0755c68d0 100644 --- a/library/zoneinfo.po +++ b/library/zoneinfo.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b5740ab0f..c7e162b83 100644 --- a/license.po +++ b/license.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 162221817..570215c25 100644 --- a/reference/compound_stmts.po +++ b/reference/compound_stmts.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 84d1af7f9..1b6ae585e 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4cd7dce5b..f71eec788 100644 --- a/reference/executionmodel.po +++ b/reference/executionmodel.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 8dc182ff2..d3b2eb4ff 100644 --- a/reference/expressions.po +++ b/reference/expressions.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 276576804..dde16d1da 100644 --- a/reference/grammar.po +++ b/reference/grammar.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 31a2e7865..2a818103f 100644 --- a/reference/import.po +++ b/reference/import.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 65300db26..f86275b92 100644 --- a/reference/index.po +++ b/reference/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 e428bef28..10d37d194 100644 --- a/reference/introduction.po +++ b/reference/introduction.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 57703e33f..15023fac9 100644 --- a/reference/lexical_analysis.po +++ b/reference/lexical_analysis.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b3945f567..bc16e6235 100644 --- a/reference/simple_stmts.po +++ b/reference/simple_stmts.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 758f0b0dd..ca2087746 100644 --- a/reference/toplevel_components.po +++ b/reference/toplevel_components.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 bb97fe738..9f86c44bc 100644 --- a/sphinx.po +++ b/sphinx.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 26837dd6c..00cb92d96 100644 --- a/tutorial/appendix.po +++ b/tutorial/appendix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 28889bc30..a2e7d4f28 100644 --- a/tutorial/appetite.po +++ b/tutorial/appetite.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 cb525522b..f03529cdd 100644 --- a/tutorial/classes.po +++ b/tutorial/classes.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4c661842f..d9c88b68e 100644 --- a/tutorial/controlflow.po +++ b/tutorial/controlflow.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/tutorial/datastructures.po b/tutorial/datastructures.po index 915dd103d..cf3ba3927 100644 --- a/tutorial/datastructures.po +++ b/tutorial/datastructures.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 b6ebe2010..e8f39e62b 100644 --- a/tutorial/errors.po +++ b/tutorial/errors.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6b1ebb302..2a00d348f 100644 --- a/tutorial/floatingpoint.po +++ b/tutorial/floatingpoint.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 6f31baf3a..7bdff00c4 100644 --- a/tutorial/index.po +++ b/tutorial/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 02065733a..f798849b1 100644 --- a/tutorial/inputoutput.po +++ b/tutorial/inputoutput.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 55c10f1c8..91eae5f8e 100644 --- a/tutorial/interactive.po +++ b/tutorial/interactive.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5b2dedc0e..c65082003 100644 --- a/tutorial/interpreter.po +++ b/tutorial/interpreter.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d5c7a8366..524d46055 100644 --- a/tutorial/introduction.po +++ b/tutorial/introduction.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 fcc9306e8..73ee931ff 100644 --- a/tutorial/modules.po +++ b/tutorial/modules.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1344def58..47195e322 100644 --- a/tutorial/stdlib.po +++ b/tutorial/stdlib.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c570f1803..a0fcc2055 100644 --- a/tutorial/stdlib2.po +++ b/tutorial/stdlib2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 327ba878a..9d216a1e1 100644 --- a/tutorial/venv.po +++ b/tutorial/venv.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 71db316c2..100507a01 100644 --- a/tutorial/whatnow.po +++ b/tutorial/whatnow.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5870be837..3134564d3 100644 --- a/using/cmdline.po +++ b/using/cmdline.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ad4724325..bbd351ec1 100644 --- a/using/configure.po +++ b/using/configure.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d1bba9b14..87aed1dca 100644 --- a/using/editors.po +++ b/using/editors.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 015e3aa8c..ef6214b42 100644 --- a/using/index.po +++ b/using/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 81d1c8557..360b88c38 100644 --- a/using/mac.po +++ b/using/mac.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 5291baa98..3c7416dbe 100644 --- a/using/unix.po +++ b/using/unix.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 71f1fe247..853f69b90 100644 --- a/using/windows.po +++ b/using/windows.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 4d3ecb751..78b9ace64 100644 --- a/whatsnew/2.0.po +++ b/whatsnew/2.0.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 199171bf5..d711f23f3 100644 --- a/whatsnew/2.1.po +++ b/whatsnew/2.1.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 3fe1cd633..3bc9222cb 100644 --- a/whatsnew/2.2.po +++ b/whatsnew/2.2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 74f6ddb33..344378419 100644 --- a/whatsnew/2.3.po +++ b/whatsnew/2.3.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 2578d090d..f1dba6654 100644 --- a/whatsnew/2.4.po +++ b/whatsnew/2.4.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 f05717282..4a07c627a 100644 --- a/whatsnew/2.5.po +++ b/whatsnew/2.5.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 59cb7c63e..c0e8a0712 100644 --- a/whatsnew/2.6.po +++ b/whatsnew/2.6.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 3ecc52064..733d1af65 100644 --- a/whatsnew/2.7.po +++ b/whatsnew/2.7.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 c04fe7542..7a90ace4a 100644 --- a/whatsnew/3.0.po +++ b/whatsnew/3.0.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d9fb08796..6ceefc03e 100644 --- a/whatsnew/3.1.po +++ b/whatsnew/3.1.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 46de9cbcf..808c732ea 100644 --- a/whatsnew/3.10.po +++ b/whatsnew/3.10.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy diff --git a/whatsnew/3.11.po b/whatsnew/3.11.po index f0f761c0f..1eac16ad6 100644 --- a/whatsnew/3.11.po +++ b/whatsnew/3.11.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 ba9cb36df..9d2b31a4f 100644 --- a/whatsnew/3.2.po +++ b/whatsnew/3.2.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 1f18ac16f..71560de71 100644 --- a/whatsnew/3.3.po +++ b/whatsnew/3.3.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 686ace6aa..27531213c 100644 --- a/whatsnew/3.4.po +++ b/whatsnew/3.4.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0eb5680d9..ef5b2f7dd 100644 --- a/whatsnew/3.5.po +++ b/whatsnew/3.5.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 af0ae0785..f4796b744 100644 --- a/whatsnew/3.6.po +++ b/whatsnew/3.6.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 53fb5ac2c..dc6a9f23a 100644 --- a/whatsnew/3.7.po +++ b/whatsnew/3.7.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 0022e702b..2ab9099b6 100644 --- a/whatsnew/3.8.po +++ b/whatsnew/3.8.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # msgid "" diff --git a/whatsnew/3.9.po b/whatsnew/3.9.po index 3dfa3bc72..2f46b63e2 100644 --- a/whatsnew/3.9.po +++ b/whatsnew/3.9.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, 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 d4180e490..0317383f7 100644 --- a/whatsnew/index.po +++ b/whatsnew/index.po @@ -1,5 +1,5 @@ # Python Documentation Turkish Translation -# Copyright (C) 2001-2022, Python Software Foundation +# Copyright (C) 2001-2023, Python Software Foundation # This file is distributed under the same license as the Python package. # #, fuzzy