diff --git a/Makefile b/Makefile index b4b8b3fd5..590935552 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 := 17a335dd0291d09e1510157a4ebe02932ec632dd +CPYTHON_CURRENT_COMMIT := 74a7f5d2dacd4c05aad0e64a275dae97d18f5355 LANGUAGE := tr BRANCH := 3.11 diff --git a/c-api/arg.po b/c-api/arg.po index 9a40e76ba..1f99c87a5 100644 --- a/c-api/arg.po +++ b/c-api/arg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -142,7 +142,7 @@ msgid "" "`PyUnicode_FSConverter` as *converter*." msgstr "" -#: c-api/arg.rst:164 +#: c-api/arg.rst:96 msgid "" "Previously, :exc:`TypeError` was raised when embedded null code points were " "encountered in the Python string." @@ -175,7 +175,7 @@ msgid "" "encoding." msgstr "" -#: c-api/arg.rst:584 +#: c-api/arg.rst:547 msgid "``z`` (:class:`str` or ``None``) [const char \\*]" msgstr "" @@ -271,76 +271,22 @@ msgid "" "`PyObject*`." msgstr "" -#: c-api/arg.rst:170 -msgid "``u`` (:class:`str`) [const Py_UNICODE \\*]" -msgstr "" - -#: c-api/arg.rst:156 -msgid "" -"Convert a Python Unicode object to a C pointer to a NUL-terminated buffer of " -"Unicode characters. You must pass the address of a :c:type:`Py_UNICODE` " -"pointer variable, which will be filled with the pointer to an existing " -"Unicode buffer. Please note that the width of a :c:type:`Py_UNICODE` " -"character depends on compilation options (it is either 16 or 32 bits). The " -"Python string must not contain embedded null code points; if it does, a :exc:" -"`ValueError` exception is raised." -msgstr "" - -#: c-api/arg.rst:188 c-api/arg.rst:196 -msgid "" -"Part of the old-style :c:type:`Py_UNICODE` API; please migrate to using :c:" -"func:`PyUnicode_AsWideCharString`." -msgstr "" - -#: c-api/arg.rst:179 -msgid "``u#`` (:class:`str`) [const Py_UNICODE \\*, :c:type:`Py_ssize_t`]" -msgstr "" - -#: c-api/arg.rst:173 -msgid "" -"This variant on ``u`` stores into two C variables, the first one a pointer " -"to a Unicode data buffer, the second one its length. This variant allows " -"null code points." -msgstr "" - -#: c-api/arg.rst:187 -msgid "``Z`` (:class:`str` or ``None``) [const Py_UNICODE \\*]" -msgstr "" - -#: c-api/arg.rst:182 -msgid "" -"Like ``u``, but the Python object may also be ``None``, in which case the :c:" -"type:`Py_UNICODE` pointer is set to ``NULL``." -msgstr "" - -#: c-api/arg.rst:195 -msgid "" -"``Z#`` (:class:`str` or ``None``) [const Py_UNICODE \\*, :c:type:" -"`Py_ssize_t`]" -msgstr "" - -#: c-api/arg.rst:190 -msgid "" -"Like ``u#``, but the Python object may also be ``None``, in which case the :" -"c:type:`Py_UNICODE` pointer is set to ``NULL``." -msgstr "" - -#: c-api/arg.rst:200 +#: c-api/arg.rst:158 msgid "``U`` (:class:`str`) [PyObject \\*]" msgstr "" -#: c-api/arg.rst:198 +#: c-api/arg.rst:156 msgid "" "Requires that the Python object is a Unicode object, without attempting any " "conversion. Raises :exc:`TypeError` if the object is not a Unicode object. " "The C variable may also be declared as :c:expr:`PyObject*`." msgstr "" -#: c-api/arg.rst:206 +#: c-api/arg.rst:164 msgid "``w*`` (read-write :term:`bytes-like object`) [Py_buffer]" msgstr "" -#: c-api/arg.rst:203 +#: c-api/arg.rst:161 msgid "" "This format accepts any object which implements the read-write buffer " "interface. It fills a :c:type:`Py_buffer` structure provided by the caller. " @@ -348,17 +294,17 @@ msgid "" "`PyBuffer_Release` when it is done with the buffer." msgstr "" -#: c-api/arg.rst:223 +#: c-api/arg.rst:181 msgid "``es`` (:class:`str`) [const char \\*encoding, char \\*\\*buffer]" msgstr "" -#: c-api/arg.rst:209 +#: c-api/arg.rst:167 msgid "" "This variant on ``s`` is used for encoding Unicode into a character buffer. " "It only works for encoded data without embedded NUL bytes." msgstr "" -#: c-api/arg.rst:212 +#: c-api/arg.rst:170 msgid "" "This format requires two arguments. The first is only used as input, and " "must be a :c:expr:`const char*` which points to the name of an encoding as a " @@ -369,7 +315,7 @@ msgid "" "The text will be encoded in the encoding specified by the first argument." msgstr "" -#: c-api/arg.rst:220 +#: c-api/arg.rst:178 msgid "" ":c:func:`PyArg_ParseTuple` will allocate a buffer of the needed size, copy " "the encoded data into this buffer and adjust *\\*buffer* to reference the " @@ -377,33 +323,33 @@ msgid "" "`PyMem_Free` to free the allocated buffer after use." msgstr "" -#: c-api/arg.rst:228 +#: c-api/arg.rst:186 msgid "" "``et`` (:class:`str`, :class:`bytes` or :class:`bytearray`) [const char " "\\*encoding, char \\*\\*buffer]" msgstr "" -#: c-api/arg.rst:226 +#: c-api/arg.rst:184 msgid "" "Same as ``es`` except that byte string objects are passed through without " "recoding them. Instead, the implementation assumes that the byte string " "object uses the encoding passed in as parameter." msgstr "" -#: c-api/arg.rst:259 +#: c-api/arg.rst:217 msgid "" "``es#`` (:class:`str`) [const char \\*encoding, char \\*\\*buffer, :c:type:" "`Py_ssize_t` \\*buffer_length]" msgstr "" -#: c-api/arg.rst:231 +#: c-api/arg.rst:189 msgid "" "This variant on ``s#`` is used for encoding Unicode into a character buffer. " "Unlike the ``es`` format, this variant allows input data which contains NUL " "characters." msgstr "" -#: c-api/arg.rst:235 +#: c-api/arg.rst:193 msgid "" "It requires three arguments. The first is only used as input, and must be " "a :c:expr:`const char*` which points to the name of an encoding as a NUL-" @@ -416,11 +362,11 @@ msgid "" "will be set to the number of bytes in the output buffer." msgstr "" -#: c-api/arg.rst:245 +#: c-api/arg.rst:203 msgid "There are two modes of operation:" msgstr "" -#: c-api/arg.rst:247 +#: c-api/arg.rst:205 msgid "" "If *\\*buffer* points a ``NULL`` pointer, the function will allocate a " "buffer of the needed size, copy the encoded data into this buffer and set " @@ -429,7 +375,7 @@ msgid "" "after usage." msgstr "" -#: c-api/arg.rst:252 +#: c-api/arg.rst:210 msgid "" "If *\\*buffer* points to a non-``NULL`` pointer (an already allocated " "buffer), :c:func:`PyArg_ParseTuple` will use this location as the buffer and " @@ -438,186 +384,192 @@ msgid "" "the buffer is not large enough, a :exc:`ValueError` will be set." msgstr "" -#: c-api/arg.rst:258 +#: c-api/arg.rst:216 msgid "" "In both cases, *\\*buffer_length* is set to the length of the encoded data " "without the trailing NUL byte." msgstr "" -#: c-api/arg.rst:264 +#: c-api/arg.rst:222 msgid "" "``et#`` (:class:`str`, :class:`bytes` or :class:`bytearray`) [const char " "\\*encoding, char \\*\\*buffer, :c:type:`Py_ssize_t` \\*buffer_length]" msgstr "" -#: c-api/arg.rst:262 +#: c-api/arg.rst:220 msgid "" "Same as ``es#`` except that byte string objects are passed through without " "recoding them. Instead, the implementation assumes that the byte string " "object uses the encoding passed in as parameter." msgstr "" -#: c-api/arg.rst:267 +#: c-api/arg.rst:224 +msgid "" +"``u``, ``u#``, ``Z``, and ``Z#`` are removed because they used a legacy " +"``Py_UNICODE*`` representation." +msgstr "" + +#: c-api/arg.rst:230 msgid "Numbers" msgstr "" -#: c-api/arg.rst:271 +#: c-api/arg.rst:234 msgid "``b`` (:class:`int`) [unsigned char]" msgstr "" -#: c-api/arg.rst:270 +#: c-api/arg.rst:233 msgid "" "Convert a nonnegative Python integer to an unsigned tiny int, stored in a C :" "c:expr:`unsigned char`." msgstr "" -#: c-api/arg.rst:618 +#: c-api/arg.rst:581 msgid "``B`` (:class:`int`) [unsigned char]" msgstr "" -#: c-api/arg.rst:274 +#: c-api/arg.rst:237 msgid "" "Convert a Python integer to a tiny int without overflow checking, stored in " "a C :c:expr:`unsigned char`." msgstr "" -#: c-api/arg.rst:612 +#: c-api/arg.rst:575 msgid "``h`` (:class:`int`) [short int]" msgstr "" -#: c-api/arg.rst:278 +#: c-api/arg.rst:241 msgid "Convert a Python integer to a C :c:expr:`short int`." msgstr "" -#: c-api/arg.rst:621 +#: c-api/arg.rst:584 msgid "``H`` (:class:`int`) [unsigned short int]" msgstr "" -#: c-api/arg.rst:281 +#: c-api/arg.rst:244 msgid "" "Convert a Python integer to a C :c:expr:`unsigned short int`, without " "overflow checking." msgstr "" -#: c-api/arg.rst:606 +#: c-api/arg.rst:569 msgid "``i`` (:class:`int`) [int]" msgstr "" -#: c-api/arg.rst:285 +#: c-api/arg.rst:248 msgid "Convert a Python integer to a plain C :c:expr:`int`." msgstr "" -#: c-api/arg.rst:624 +#: c-api/arg.rst:587 msgid "``I`` (:class:`int`) [unsigned int]" msgstr "" -#: c-api/arg.rst:288 +#: c-api/arg.rst:251 msgid "" "Convert a Python integer to a C :c:expr:`unsigned int`, without overflow " "checking." msgstr "" -#: c-api/arg.rst:615 +#: c-api/arg.rst:578 msgid "``l`` (:class:`int`) [long int]" msgstr "" -#: c-api/arg.rst:292 +#: c-api/arg.rst:255 msgid "Convert a Python integer to a C :c:expr:`long int`." msgstr "" -#: c-api/arg.rst:627 +#: c-api/arg.rst:590 msgid "``k`` (:class:`int`) [unsigned long]" msgstr "" -#: c-api/arg.rst:295 +#: c-api/arg.rst:258 msgid "" "Convert a Python integer to a C :c:expr:`unsigned long` without overflow " "checking." msgstr "" -#: c-api/arg.rst:630 +#: c-api/arg.rst:593 msgid "``L`` (:class:`int`) [long long]" msgstr "" -#: c-api/arg.rst:299 +#: c-api/arg.rst:262 msgid "Convert a Python integer to a C :c:expr:`long long`." msgstr "" -#: c-api/arg.rst:633 +#: c-api/arg.rst:596 msgid "``K`` (:class:`int`) [unsigned long long]" msgstr "" -#: c-api/arg.rst:302 +#: c-api/arg.rst:265 msgid "" "Convert a Python integer to a C :c:expr:`unsigned long long` without " "overflow checking." msgstr "" -#: c-api/arg.rst:636 +#: c-api/arg.rst:599 msgid "``n`` (:class:`int`) [:c:type:`Py_ssize_t`]" msgstr "" -#: c-api/arg.rst:306 +#: c-api/arg.rst:269 msgid "Convert a Python integer to a C :c:type:`Py_ssize_t`." msgstr "" -#: c-api/arg.rst:313 +#: c-api/arg.rst:276 msgid "``c`` (:class:`bytes` or :class:`bytearray` of length 1) [char]" msgstr "" -#: c-api/arg.rst:309 +#: c-api/arg.rst:272 msgid "" "Convert a Python byte, represented as a :class:`bytes` or :class:`bytearray` " "object of length 1, to a C :c:expr:`char`." msgstr "" -#: c-api/arg.rst:312 +#: c-api/arg.rst:275 msgid "Allow :class:`bytearray` objects." msgstr "" -#: c-api/arg.rst:644 +#: c-api/arg.rst:607 msgid "``C`` (:class:`str` of length 1) [int]" msgstr "" -#: c-api/arg.rst:316 +#: c-api/arg.rst:279 msgid "" "Convert a Python character, represented as a :class:`str` object of length " "1, to a C :c:expr:`int`." msgstr "" -#: c-api/arg.rst:650 +#: c-api/arg.rst:613 msgid "``f`` (:class:`float`) [float]" msgstr "" -#: c-api/arg.rst:320 +#: c-api/arg.rst:283 msgid "Convert a Python floating point number to a C :c:expr:`float`." msgstr "" -#: c-api/arg.rst:647 +#: c-api/arg.rst:610 msgid "``d`` (:class:`float`) [double]" msgstr "" -#: c-api/arg.rst:323 +#: c-api/arg.rst:286 msgid "Convert a Python floating point number to a C :c:expr:`double`." msgstr "" -#: c-api/arg.rst:326 +#: c-api/arg.rst:289 msgid "``D`` (:class:`complex`) [Py_complex]" msgstr "" -#: c-api/arg.rst:326 +#: c-api/arg.rst:289 msgid "Convert a Python complex number to a C :c:type:`Py_complex` structure." msgstr "" -#: c-api/arg.rst:329 +#: c-api/arg.rst:292 msgid "Other objects" msgstr "" -#: c-api/arg.rst:663 +#: c-api/arg.rst:626 msgid "``O`` (object) [PyObject \\*]" msgstr "" -#: c-api/arg.rst:332 +#: c-api/arg.rst:295 msgid "" "Store a Python object (without any conversion) in a C object pointer. The C " "program thus receives the actual object that was passed. A new :term:" @@ -625,11 +577,11 @@ msgid "" "not increased). The pointer stored is not ``NULL``." msgstr "" -#: c-api/arg.rst:343 +#: c-api/arg.rst:306 msgid "``O!`` (object) [*typeobject*, PyObject \\*]" msgstr "" -#: c-api/arg.rst:339 +#: c-api/arg.rst:302 msgid "" "Store a Python object in a C object pointer. This is similar to ``O``, but " "takes two C arguments: the first is the address of a Python type object, the " @@ -638,11 +590,11 @@ msgid "" "required type, :exc:`TypeError` is raised." msgstr "" -#: c-api/arg.rst:677 +#: c-api/arg.rst:640 msgid "``O&`` (object) [*converter*, *anything*]" msgstr "" -#: c-api/arg.rst:348 +#: c-api/arg.rst:311 msgid "" "Convert a Python object to a C variable through a *converter* function. " "This takes two arguments: the first is a function, the second is the address " @@ -650,7 +602,7 @@ msgid "" "*converter* function in turn is called as follows::" msgstr "" -#: c-api/arg.rst:355 +#: c-api/arg.rst:318 msgid "" "where *object* is the Python object to be converted and *address* is the :c:" "expr:`void*` argument that was passed to the ``PyArg_Parse*`` function. The " @@ -660,7 +612,7 @@ msgid "" "unmodified." msgstr "" -#: c-api/arg.rst:361 +#: c-api/arg.rst:324 msgid "" "If the *converter* returns ``Py_CLEANUP_SUPPORTED``, it may get called a " "second time if the argument parsing eventually fails, giving the converter a " @@ -669,15 +621,15 @@ msgid "" "value as in the original call." msgstr "" -#: c-api/arg.rst:367 +#: c-api/arg.rst:330 msgid "``Py_CLEANUP_SUPPORTED`` was added." msgstr "" -#: c-api/arg.rst:377 +#: c-api/arg.rst:340 msgid "``p`` (:class:`bool`) [int]" msgstr "" -#: c-api/arg.rst:371 +#: c-api/arg.rst:334 msgid "" "Tests the value passed in for truth (a boolean **p**\\ redicate) and " "converts the result to its equivalent C true/false integer value. Sets the " @@ -686,18 +638,18 @@ msgid "" "how Python tests values for truth." msgstr "" -#: c-api/arg.rst:680 +#: c-api/arg.rst:643 msgid "``(items)`` (:class:`tuple`) [*matching-items*]" msgstr "" -#: c-api/arg.rst:380 +#: c-api/arg.rst:343 msgid "" "The object must be a Python sequence whose length is the number of format " "units in *items*. The C arguments must correspond to the individual format " "units in *items*. Format units for sequences may be nested." msgstr "" -#: c-api/arg.rst:384 +#: c-api/arg.rst:347 msgid "" "It is possible to pass \"long\" integers (integers whose value exceeds the " "platform's :c:macro:`LONG_MAX`) however no proper range checking is done --- " @@ -706,17 +658,17 @@ msgid "" "downcasts in C --- your mileage may vary)." msgstr "" -#: c-api/arg.rst:390 +#: c-api/arg.rst:353 msgid "" "A few other characters have a meaning in a format string. These may not " "occur inside nested parentheses. They are:" msgstr "" -#: c-api/arg.rst:398 +#: c-api/arg.rst:361 msgid "``|``" msgstr "" -#: c-api/arg.rst:394 +#: c-api/arg.rst:357 msgid "" "Indicates that the remaining arguments in the Python argument list are " "optional. The C variables corresponding to optional arguments should be " @@ -725,11 +677,11 @@ msgid "" "corresponding C variable(s)." msgstr "" -#: c-api/arg.rst:407 +#: c-api/arg.rst:370 msgid "``$``" msgstr "" -#: c-api/arg.rst:401 +#: c-api/arg.rst:364 msgid "" ":c:func:`PyArg_ParseTupleAndKeywords` only: Indicates that the remaining " "arguments in the Python argument list are keyword-only. Currently, all " @@ -737,36 +689,36 @@ msgid "" "be specified before ``$`` in the format string." msgstr "" -#: c-api/arg.rst:412 +#: c-api/arg.rst:375 msgid "``:``" msgstr "" -#: c-api/arg.rst:410 +#: c-api/arg.rst:373 msgid "" "The list of format units ends here; the string after the colon is used as " "the function name in error messages (the \"associated value\" of the " "exception that :c:func:`PyArg_ParseTuple` raises)." msgstr "" -#: c-api/arg.rst:417 +#: c-api/arg.rst:380 msgid "``;``" msgstr "" -#: c-api/arg.rst:415 +#: c-api/arg.rst:378 msgid "" "The list of format units ends here; the string after the semicolon is used " "as the error message *instead* of the default error message. ``:`` and ``;" "`` mutually exclude each other." msgstr "" -#: c-api/arg.rst:419 +#: c-api/arg.rst:382 msgid "" "Note that any Python object references which are provided to the caller are " "*borrowed* references; do not release them (i.e. do not decrement their " "reference count)!" msgstr "" -#: c-api/arg.rst:423 +#: c-api/arg.rst:386 msgid "" "Additional arguments passed to these functions must be addresses of " "variables whose type is determined by the format string; these are used to " @@ -776,7 +728,7 @@ msgid "" "unit in that case." msgstr "" -#: c-api/arg.rst:429 +#: c-api/arg.rst:392 msgid "" "For the conversion to succeed, the *arg* object must match the format and " "the format must be exhausted. On success, the ``PyArg_Parse*`` functions " @@ -786,24 +738,24 @@ msgid "" "the following format units are left untouched." msgstr "" -#: c-api/arg.rst:438 +#: c-api/arg.rst:401 msgid "API Functions" msgstr "" -#: c-api/arg.rst:442 +#: c-api/arg.rst:405 msgid "" "Parse the parameters of a function that takes only positional parameters " "into local variables. Returns true on success; on failure, it returns false " "and raises the appropriate exception." msgstr "" -#: c-api/arg.rst:449 +#: c-api/arg.rst:412 msgid "" "Identical to :c:func:`PyArg_ParseTuple`, except that it accepts a va_list " "rather than a variable number of arguments." msgstr "" -#: c-api/arg.rst:455 +#: c-api/arg.rst:418 msgid "" "Parse the parameters of a function that takes both positional and keyword " "parameters into local variables. The *keywords* argument is a ``NULL``-" @@ -812,26 +764,26 @@ msgid "" "success; on failure, it returns false and raises the appropriate exception." msgstr "" -#: c-api/arg.rst:462 +#: c-api/arg.rst:425 msgid "" "Added support for :ref:`positional-only parameters `." msgstr "" -#: c-api/arg.rst:469 +#: c-api/arg.rst:432 msgid "" "Identical to :c:func:`PyArg_ParseTupleAndKeywords`, except that it accepts a " "va_list rather than a variable number of arguments." msgstr "" -#: c-api/arg.rst:475 +#: c-api/arg.rst:438 msgid "" "Ensure that the keys in the keywords argument dictionary are strings. This " "is only needed if :c:func:`PyArg_ParseTupleAndKeywords` is not used, since " "the latter already does this check." msgstr "" -#: c-api/arg.rst:485 +#: c-api/arg.rst:448 msgid "" "Function used to deconstruct the argument lists of \"old-style\" functions " "--- these are functions which use the :const:`METH_OLDARGS` parameter " @@ -842,7 +794,7 @@ msgid "" "continue to be used for that purpose." msgstr "" -#: c-api/arg.rst:496 +#: c-api/arg.rst:459 msgid "" "A simpler form of parameter retrieval which does not use a format string to " "specify the types of the arguments. Functions which use this method to " @@ -860,23 +812,23 @@ msgid "" "if there was a failure." msgstr "" -#: c-api/arg.rst:511 +#: c-api/arg.rst:474 msgid "" "This is an example of the use of this function, taken from the sources for " "the :mod:`!_weakref` helper module for weak references::" msgstr "" -#: c-api/arg.rst:527 +#: c-api/arg.rst:490 msgid "" "The call to :c:func:`PyArg_UnpackTuple` in this example is entirely " "equivalent to this call to :c:func:`PyArg_ParseTuple`::" msgstr "" -#: c-api/arg.rst:535 +#: c-api/arg.rst:498 msgid "Building values" msgstr "" -#: c-api/arg.rst:539 +#: c-api/arg.rst:502 msgid "" "Create a new value based on a format string similar to those accepted by the " "``PyArg_Parse*`` family of functions and a sequence of values. Returns the " @@ -884,7 +836,7 @@ msgid "" "``NULL`` is returned." msgstr "" -#: c-api/arg.rst:544 +#: c-api/arg.rst:507 msgid "" ":c:func:`Py_BuildValue` does not always build a tuple. It builds a tuple " "only if its format string contains two or more format units. If the format " @@ -893,7 +845,7 @@ msgid "" "it to return a tuple of size 0 or one, parenthesize the format string." msgstr "" -#: c-api/arg.rst:550 +#: c-api/arg.rst:513 msgid "" "When memory buffers are passed as parameters to supply data to build " "objects, as for the ``s`` and ``s#`` formats, the required data is copied. " @@ -904,7 +856,7 @@ msgid "" "`Py_BuildValue` returns." msgstr "" -#: c-api/arg.rst:558 +#: c-api/arg.rst:521 msgid "" "In the following description, the quoted form is the format unit; the entry " "in (round) parentheses is the Python object type that the format unit will " @@ -912,180 +864,180 @@ msgid "" "be passed." msgstr "" -#: c-api/arg.rst:562 +#: c-api/arg.rst:525 msgid "" "The characters space, tab, colon and comma are ignored in format strings " "(but not within format units such as ``s#``). This can be used to make long " "format strings a tad more readable." msgstr "" -#: c-api/arg.rst:568 +#: c-api/arg.rst:531 msgid "``s`` (:class:`str` or ``None``) [const char \\*]" msgstr "" -#: c-api/arg.rst:567 +#: c-api/arg.rst:530 msgid "" "Convert a null-terminated C string to a Python :class:`str` object using " "``'utf-8'`` encoding. If the C string pointer is ``NULL``, ``None`` is used." msgstr "" -#: c-api/arg.rst:573 +#: c-api/arg.rst:536 msgid "" "``s#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: c-api/arg.rst:571 +#: c-api/arg.rst:534 msgid "" "Convert a C string and its length to a Python :class:`str` object using " "``'utf-8'`` encoding. If the C string pointer is ``NULL``, the length is " "ignored and ``None`` is returned." msgstr "" -#: c-api/arg.rst:577 +#: c-api/arg.rst:540 msgid "``y`` (:class:`bytes`) [const char \\*]" msgstr "" -#: c-api/arg.rst:576 +#: c-api/arg.rst:539 msgid "" "This converts a C string to a Python :class:`bytes` object. If the C string " "pointer is ``NULL``, ``None`` is returned." msgstr "" -#: c-api/arg.rst:581 +#: c-api/arg.rst:544 msgid "``y#`` (:class:`bytes`) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: c-api/arg.rst:580 +#: c-api/arg.rst:543 msgid "" "This converts a C string and its lengths to a Python object. If the C " "string pointer is ``NULL``, ``None`` is returned." msgstr "" -#: c-api/arg.rst:600 +#: c-api/arg.rst:563 msgid "Same as ``s``." msgstr "" -#: c-api/arg.rst:587 +#: c-api/arg.rst:550 msgid "" "``z#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: c-api/arg.rst:603 +#: c-api/arg.rst:566 msgid "Same as ``s#``." msgstr "" -#: c-api/arg.rst:592 +#: c-api/arg.rst:555 msgid "``u`` (:class:`str`) [const wchar_t \\*]" msgstr "" -#: c-api/arg.rst:590 +#: c-api/arg.rst:553 msgid "" "Convert a null-terminated :c:type:`wchar_t` buffer of Unicode (UTF-16 or " "UCS-4) data to a Python Unicode object. If the Unicode buffer pointer is " "``NULL``, ``None`` is returned." msgstr "" -#: c-api/arg.rst:597 +#: c-api/arg.rst:560 msgid "``u#`` (:class:`str`) [const wchar_t \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: c-api/arg.rst:595 +#: c-api/arg.rst:558 msgid "" "Convert a Unicode (UTF-16 or UCS-4) data buffer and its length to a Python " "Unicode object. If the Unicode buffer pointer is ``NULL``, the length is " "ignored and ``None`` is returned." msgstr "" -#: c-api/arg.rst:600 +#: c-api/arg.rst:563 msgid "``U`` (:class:`str` or ``None``) [const char \\*]" msgstr "" -#: c-api/arg.rst:603 +#: c-api/arg.rst:566 msgid "" "``U#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" -#: c-api/arg.rst:606 +#: c-api/arg.rst:569 msgid "Convert a plain C :c:expr:`int` to a Python integer object." msgstr "" -#: c-api/arg.rst:609 +#: c-api/arg.rst:572 msgid "``b`` (:class:`int`) [char]" msgstr "" -#: c-api/arg.rst:609 +#: c-api/arg.rst:572 msgid "Convert a plain C :c:expr:`char` to a Python integer object." msgstr "" -#: c-api/arg.rst:612 +#: c-api/arg.rst:575 msgid "Convert a plain C :c:expr:`short int` to a Python integer object." msgstr "" -#: c-api/arg.rst:615 +#: c-api/arg.rst:578 msgid "Convert a C :c:expr:`long int` to a Python integer object." msgstr "" -#: c-api/arg.rst:618 +#: c-api/arg.rst:581 msgid "Convert a C :c:expr:`unsigned char` to a Python integer object." msgstr "" -#: c-api/arg.rst:621 +#: c-api/arg.rst:584 msgid "Convert a C :c:expr:`unsigned short int` to a Python integer object." msgstr "" -#: c-api/arg.rst:624 +#: c-api/arg.rst:587 msgid "Convert a C :c:expr:`unsigned int` to a Python integer object." msgstr "" -#: c-api/arg.rst:627 +#: c-api/arg.rst:590 msgid "Convert a C :c:expr:`unsigned long` to a Python integer object." msgstr "" -#: c-api/arg.rst:630 +#: c-api/arg.rst:593 msgid "Convert a C :c:expr:`long long` to a Python integer object." msgstr "" -#: c-api/arg.rst:633 +#: c-api/arg.rst:596 msgid "Convert a C :c:expr:`unsigned long long` to a Python integer object." msgstr "" -#: c-api/arg.rst:636 +#: c-api/arg.rst:599 msgid "Convert a C :c:type:`Py_ssize_t` to a Python integer." msgstr "" -#: c-api/arg.rst:640 +#: c-api/arg.rst:603 msgid "``c`` (:class:`bytes` of length 1) [char]" msgstr "" -#: c-api/arg.rst:639 +#: c-api/arg.rst:602 msgid "" "Convert a C :c:expr:`int` representing a byte to a Python :class:`bytes` " "object of length 1." msgstr "" -#: c-api/arg.rst:643 +#: c-api/arg.rst:606 msgid "" "Convert a C :c:expr:`int` representing a character to Python :class:`str` " "object of length 1." msgstr "" -#: c-api/arg.rst:647 +#: c-api/arg.rst:610 msgid "Convert a C :c:expr:`double` to a Python floating point number." msgstr "" -#: c-api/arg.rst:650 +#: c-api/arg.rst:613 msgid "Convert a C :c:expr:`float` to a Python floating point number." msgstr "" -#: c-api/arg.rst:653 +#: c-api/arg.rst:616 msgid "``D`` (:class:`complex`) [Py_complex \\*]" msgstr "" -#: c-api/arg.rst:653 +#: c-api/arg.rst:616 msgid "Convert a C :c:type:`Py_complex` structure to a Python complex number." msgstr "" -#: c-api/arg.rst:656 +#: c-api/arg.rst:619 msgid "" "Pass a Python object untouched but create a new :term:`strong reference` to " "it (i.e. its reference count is incremented by one). If the object passed in " @@ -1095,26 +1047,26 @@ msgid "" "no exception has been raised yet, :exc:`SystemError` is set." msgstr "" -#: c-api/arg.rst:666 +#: c-api/arg.rst:629 msgid "``S`` (object) [PyObject \\*]" msgstr "" -#: c-api/arg.rst:666 +#: c-api/arg.rst:629 msgid "Same as ``O``." msgstr "" -#: c-api/arg.rst:671 +#: c-api/arg.rst:634 msgid "``N`` (object) [PyObject \\*]" msgstr "" -#: c-api/arg.rst:669 +#: c-api/arg.rst:632 msgid "" "Same as ``O``, except it doesn't create a new :term:`strong reference`. " "Useful when the object is created by a call to an object constructor in the " "argument list." msgstr "" -#: c-api/arg.rst:674 +#: c-api/arg.rst:637 msgid "" "Convert *anything* to a Python object through a *converter* function. The " "function is called with *anything* (which should be compatible with :c:expr:" @@ -1122,40 +1074,40 @@ msgid "" "``NULL`` if an error occurred." msgstr "" -#: c-api/arg.rst:680 +#: c-api/arg.rst:643 msgid "" "Convert a sequence of C values to a Python tuple with the same number of " "items." msgstr "" -#: c-api/arg.rst:683 +#: c-api/arg.rst:646 msgid "``[items]`` (:class:`list`) [*matching-items*]" msgstr "" -#: c-api/arg.rst:683 +#: c-api/arg.rst:646 msgid "" "Convert a sequence of C values to a Python list with the same number of " "items." msgstr "" -#: c-api/arg.rst:688 +#: c-api/arg.rst:651 msgid "``{items}`` (:class:`dict`) [*matching-items*]" msgstr "" -#: c-api/arg.rst:686 +#: c-api/arg.rst:649 msgid "" "Convert a sequence of C values to a Python dictionary. Each pair of " "consecutive C values adds one item to the dictionary, serving as key and " "value, respectively." msgstr "" -#: c-api/arg.rst:690 +#: c-api/arg.rst:653 msgid "" "If there is an error in the format string, the :exc:`SystemError` exception " "is set and ``NULL`` returned." msgstr "" -#: c-api/arg.rst:695 +#: c-api/arg.rst:658 msgid "" "Identical to :c:func:`Py_BuildValue`, except that it accepts a va_list " "rather than a variable number of arguments." diff --git a/c-api/bool.po b/c-api/bool.po index 556eea3e5..0326ea40b 100644 --- a/c-api/bool.po +++ b/c-api/bool.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -23,7 +23,7 @@ msgstr "" #: c-api/bool.rst:8 msgid "" "Booleans in Python are implemented as a subclass of integers. There are " -"only two booleans, :const:`Py_False` and :const:`Py_True`. As such, the " +"only two booleans, :c:data:`Py_False` and :c:data:`Py_True`. As such, the " "normal creation and deletion functions don't apply to booleans. The " "following macros are available, however." msgstr "" @@ -42,30 +42,34 @@ msgstr "" #: c-api/bool.rst:28 msgid "" -"The Python ``False`` object. This object has no methods. It needs to be " -"treated just like any other object with respect to reference counts." +"The Python ``False`` object. This object has no methods and is `immortal " +"`_." msgstr "" -#: c-api/bool.rst:34 +#: c-api/bool.rst:31 +msgid ":c:data:`Py_False` is immortal." +msgstr "" + +#: c-api/bool.rst:37 msgid "" -"The Python ``True`` object. This object has no methods. It needs to be " -"treated just like any other object with respect to reference counts." +"The Python ``True`` object. This object has no methods and is `immortal " +"`_." msgstr "" #: c-api/bool.rst:40 -msgid "" -"Return :const:`Py_False` from a function, properly incrementing its " -"reference count." +msgid ":c:data:`Py_True` is immortal." msgstr "" #: c-api/bool.rst:46 -msgid "" -"Return :const:`Py_True` from a function, properly incrementing its reference " -"count." +msgid "Return :c:data:`Py_False` from a function." +msgstr "" + +#: c-api/bool.rst:51 +msgid "Return :c:data:`Py_True` from a function." msgstr "" -#: c-api/bool.rst:52 +#: c-api/bool.rst:56 msgid "" -"Return a new reference to :const:`Py_True` or :const:`Py_False` depending on " -"the truth value of *v*." +"Return :c:data:`Py_True` or :c:data:`Py_False`, depending on the truth value " +"of *v*." msgstr "" diff --git a/c-api/bytes.po b/c-api/bytes.po index 08caa0e58..e9217ac54 100644 --- a/c-api/bytes.po +++ b/c-api/bytes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -72,186 +72,186 @@ msgid "" "allowed:" msgstr "" -#: c-api/bytes.rst:68 +#: c-api/bytes.rst:65 msgid "Format Characters" msgstr "" -#: c-api/bytes.rst:68 +#: c-api/bytes.rst:65 msgid "Type" msgstr "" -#: c-api/bytes.rst:68 +#: c-api/bytes.rst:65 msgid "Comment" msgstr "" -#: c-api/bytes.rst:70 +#: c-api/bytes.rst:67 msgid "``%%``" msgstr "" -#: c-api/bytes.rst:70 +#: c-api/bytes.rst:67 msgid "*n/a*" msgstr "" -#: c-api/bytes.rst:70 +#: c-api/bytes.rst:67 msgid "The literal % character." msgstr "" -#: c-api/bytes.rst:72 +#: c-api/bytes.rst:69 msgid "``%c``" msgstr "" -#: c-api/bytes.rst:75 c-api/bytes.rst:96 +#: c-api/bytes.rst:72 c-api/bytes.rst:93 msgid "int" msgstr "" -#: c-api/bytes.rst:72 +#: c-api/bytes.rst:69 msgid "A single byte, represented as a C int." msgstr "" -#: c-api/bytes.rst:75 +#: c-api/bytes.rst:72 msgid "``%d``" msgstr "" -#: c-api/bytes.rst:75 +#: c-api/bytes.rst:72 msgid "Equivalent to ``printf(\"%d\")``. [1]_" msgstr "" -#: c-api/bytes.rst:78 +#: c-api/bytes.rst:75 msgid "``%u``" msgstr "" -#: c-api/bytes.rst:78 +#: c-api/bytes.rst:75 msgid "unsigned int" msgstr "" -#: c-api/bytes.rst:78 +#: c-api/bytes.rst:75 msgid "Equivalent to ``printf(\"%u\")``. [1]_" msgstr "" -#: c-api/bytes.rst:81 +#: c-api/bytes.rst:78 msgid "``%ld``" msgstr "" -#: c-api/bytes.rst:81 +#: c-api/bytes.rst:78 msgid "long" msgstr "" -#: c-api/bytes.rst:81 +#: c-api/bytes.rst:78 msgid "Equivalent to ``printf(\"%ld\")``. [1]_" msgstr "" -#: c-api/bytes.rst:84 +#: c-api/bytes.rst:81 msgid "``%lu``" msgstr "" -#: c-api/bytes.rst:84 +#: c-api/bytes.rst:81 msgid "unsigned long" msgstr "" -#: c-api/bytes.rst:84 +#: c-api/bytes.rst:81 msgid "Equivalent to ``printf(\"%lu\")``. [1]_" msgstr "" -#: c-api/bytes.rst:87 +#: c-api/bytes.rst:84 msgid "``%zd``" msgstr "" -#: c-api/bytes.rst:87 +#: c-api/bytes.rst:84 msgid ":c:type:`\\ Py_ssize_t`" msgstr "" -#: c-api/bytes.rst:87 +#: c-api/bytes.rst:84 msgid "Equivalent to ``printf(\"%zd\")``. [1]_" msgstr "" -#: c-api/bytes.rst:90 +#: c-api/bytes.rst:87 msgid "``%zu``" msgstr "" -#: c-api/bytes.rst:90 +#: c-api/bytes.rst:87 msgid "size_t" msgstr "" -#: c-api/bytes.rst:90 +#: c-api/bytes.rst:87 msgid "Equivalent to ``printf(\"%zu\")``. [1]_" msgstr "" -#: c-api/bytes.rst:93 +#: c-api/bytes.rst:90 msgid "``%i``" msgstr "" -#: c-api/bytes.rst:93 +#: c-api/bytes.rst:90 msgid "Equivalent to ``printf(\"%i\")``. [1]_" msgstr "" -#: c-api/bytes.rst:96 +#: c-api/bytes.rst:93 msgid "``%x``" msgstr "" -#: c-api/bytes.rst:96 +#: c-api/bytes.rst:93 msgid "Equivalent to ``printf(\"%x\")``. [1]_" msgstr "" -#: c-api/bytes.rst:99 +#: c-api/bytes.rst:96 msgid "``%s``" msgstr "" -#: c-api/bytes.rst:99 +#: c-api/bytes.rst:96 msgid "const char\\*" msgstr "" -#: c-api/bytes.rst:99 +#: c-api/bytes.rst:96 msgid "A null-terminated C character array." msgstr "" -#: c-api/bytes.rst:102 +#: c-api/bytes.rst:99 msgid "``%p``" msgstr "" -#: c-api/bytes.rst:102 +#: c-api/bytes.rst:99 msgid "const void\\*" msgstr "" -#: c-api/bytes.rst:102 +#: c-api/bytes.rst:99 msgid "" "The hex representation of a C pointer. Mostly equivalent to " "``printf(\"%p\")`` except that it is guaranteed to start with the literal " "``0x`` regardless of what the platform's ``printf`` yields." msgstr "" -#: c-api/bytes.rst:111 +#: c-api/bytes.rst:108 msgid "" "An unrecognized format character causes all the rest of the format string to " "be copied as-is to the result object, and any extra arguments discarded." msgstr "" -#: c-api/bytes.rst:114 +#: c-api/bytes.rst:111 msgid "" "For integer specifiers (d, u, ld, lu, zd, zu, i, x): the 0-conversion flag " "has effect even when a precision is given." msgstr "" -#: c-api/bytes.rst:120 +#: c-api/bytes.rst:117 msgid "" "Identical to :c:func:`PyBytes_FromFormat` except that it takes exactly two " "arguments." msgstr "" -#: c-api/bytes.rst:126 +#: c-api/bytes.rst:123 msgid "" "Return the bytes representation of object *o* that implements the buffer " "protocol." msgstr "" -#: c-api/bytes.rst:132 +#: c-api/bytes.rst:129 msgid "Return the length of the bytes in bytes object *o*." msgstr "" -#: c-api/bytes.rst:137 +#: c-api/bytes.rst:134 msgid "Similar to :c:func:`PyBytes_Size`, but without error checking." msgstr "" -#: c-api/bytes.rst:142 +#: c-api/bytes.rst:139 msgid "" "Return a pointer to the contents of *o*. The pointer refers to the internal " "buffer of *o*, which consists of ``len(o) + 1`` bytes. The last byte in the " @@ -262,24 +262,24 @@ msgid "" "`PyBytes_AsString` returns ``NULL`` and raises :exc:`TypeError`." msgstr "" -#: c-api/bytes.rst:154 +#: c-api/bytes.rst:151 msgid "Similar to :c:func:`PyBytes_AsString`, but without error checking." msgstr "" -#: c-api/bytes.rst:159 +#: c-api/bytes.rst:156 msgid "" "Return the null-terminated contents of the object *obj* through the output " "variables *buffer* and *length*." msgstr "" -#: c-api/bytes.rst:162 +#: c-api/bytes.rst:159 msgid "" "If *length* is ``NULL``, the bytes object may not contain embedded null " "bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is " "raised." msgstr "" -#: c-api/bytes.rst:166 +#: c-api/bytes.rst:163 msgid "" "The buffer refers to an internal buffer of *obj*, which includes an " "additional null byte at the end (not counted in *length*). The data must " @@ -289,13 +289,13 @@ msgid "" "returns ``-1`` and raises :exc:`TypeError`." msgstr "" -#: c-api/bytes.rst:173 +#: c-api/bytes.rst:170 msgid "" "Previously, :exc:`TypeError` was raised when embedded null bytes were " "encountered in the bytes object." msgstr "" -#: c-api/bytes.rst:180 +#: c-api/bytes.rst:177 msgid "" "Create a new bytes object in *\\*bytes* containing the contents of *newpart* " "appended to *bytes*; the caller will own the new reference. The reference " @@ -304,14 +304,14 @@ msgid "" "of *\\*bytes* will be set to ``NULL``; the appropriate exception will be set." msgstr "" -#: c-api/bytes.rst:189 +#: c-api/bytes.rst:186 msgid "" "Create a new bytes object in *\\*bytes* containing the contents of *newpart* " "appended to *bytes*. This version releases the :term:`strong reference` to " "*newpart* (i.e. decrements its reference count)." msgstr "" -#: c-api/bytes.rst:196 +#: c-api/bytes.rst:193 msgid "" "A way to resize a bytes object even though it is \"immutable\". Only use " "this to build up a brand new bytes object; don't use this if the bytes may " diff --git a/c-api/call.po b/c-api/call.po index f0dc96257..b0f12e65a 100644 --- a/c-api/call.po +++ b/c-api/call.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -83,7 +83,17 @@ msgid "" "`~PyTypeObject.tp_call` with the same semantics." msgstr "" -#: c-api/call.rst:60 +#: c-api/call.rst:62 +msgid "" +"The :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag is now removed from a class " +"when the class's :py:meth:`~object.__call__` method is reassigned. (This " +"internally sets :c:member:`~PyTypeObject.tp_call` only, and thus may make it " +"behave differently than the vectorcall function.) In earlier Python " +"versions, vectorcall should only be used with :c:macro:`immutable " +"` or static types." +msgstr "" + +#: c-api/call.rst:69 msgid "" "A class should not implement vectorcall if that would be slower than " "*tp_call*. For example, if the callee needs to convert the arguments to an " @@ -91,7 +101,7 @@ msgid "" "vectorcall." msgstr "" -#: c-api/call.rst:65 +#: c-api/call.rst:74 msgid "" "Classes can implement the vectorcall protocol by enabling the :c:macro:" "`Py_TPFLAGS_HAVE_VECTORCALL` flag and setting :c:member:`~PyTypeObject." @@ -100,43 +110,43 @@ msgid "" "signature:" msgstr "" -#: c-api/call.rst:73 +#: c-api/call.rst:82 msgid "*callable* is the object being called." msgstr "" -#: c-api/call.rst:75 +#: c-api/call.rst:84 msgid "" "*args* is a C array consisting of the positional arguments followed by the" msgstr "" -#: c-api/call.rst:75 +#: c-api/call.rst:84 msgid "" "values of the keyword arguments. This can be *NULL* if there are no " "arguments." msgstr "" -#: c-api/call.rst:79 +#: c-api/call.rst:88 msgid "*nargsf* is the number of positional arguments plus possibly the" msgstr "" -#: c-api/call.rst:78 +#: c-api/call.rst:87 msgid "" ":c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` flag. To get the actual number of " "positional arguments from *nargsf*, use :c:func:`PyVectorcall_NARGS`." msgstr "" -#: c-api/call.rst:85 +#: c-api/call.rst:94 msgid "*kwnames* is a tuple containing the names of the keyword arguments;" msgstr "" -#: c-api/call.rst:82 +#: c-api/call.rst:91 msgid "" "in other words, the keys of the kwargs dict. These names must be strings " "(instances of ``str`` or a subclass) and they must be unique. If there are " "no keyword arguments, then *kwnames* can instead be *NULL*." msgstr "" -#: c-api/call.rst:89 +#: c-api/call.rst:98 msgid "" "If this flag is set in a vectorcall *nargsf* argument, the callee is allowed " "to temporarily change ``args[-1]``. In other words, *args* points to " @@ -144,13 +154,13 @@ msgid "" "value of ``args[-1]`` before returning." msgstr "" -#: c-api/call.rst:94 +#: c-api/call.rst:103 msgid "" "For :c:func:`PyObject_VectorcallMethod`, this flag means instead that " "``args[0]`` may be changed." msgstr "" -#: c-api/call.rst:97 +#: c-api/call.rst:106 msgid "" "Whenever they can do so cheaply (without additional allocation), callers are " "encouraged to use :c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Doing so will " @@ -158,14 +168,14 @@ msgid "" "include a prepended *self* argument) very efficiently." msgstr "" -#: c-api/call.rst:102 +#: c-api/call.rst:111 msgid "" "To call an object that implements vectorcall, use a :ref:`call API ` function as with any other callable. :c:func:`PyObject_Vectorcall` " "will usually be most efficient." msgstr "" -#: c-api/call.rst:109 +#: c-api/call.rst:118 msgid "" "In CPython 3.8, the vectorcall API and related functions were available " "provisionally under names with a leading underscore: " @@ -177,41 +187,41 @@ msgid "" "as aliases of the new, non-underscored names." msgstr "" -#: c-api/call.rst:121 +#: c-api/call.rst:130 msgid "Recursion Control" msgstr "" -#: c-api/call.rst:123 +#: c-api/call.rst:132 msgid "" "When using *tp_call*, callees do not need to worry about :ref:`recursion " "`: CPython uses :c:func:`Py_EnterRecursiveCall` and :c:func:" "`Py_LeaveRecursiveCall` for calls made using *tp_call*." msgstr "" -#: c-api/call.rst:128 +#: c-api/call.rst:137 msgid "" "For efficiency, this is not the case for calls done using vectorcall: the " "callee should use *Py_EnterRecursiveCall* and *Py_LeaveRecursiveCall* if " "needed." msgstr "" -#: c-api/call.rst:134 +#: c-api/call.rst:143 msgid "Vectorcall Support API" msgstr "" -#: c-api/call.rst:138 +#: c-api/call.rst:147 msgid "" "Given a vectorcall *nargsf* argument, return the actual number of arguments. " "Currently equivalent to::" msgstr "" -#: c-api/call.rst:144 +#: c-api/call.rst:153 msgid "" "However, the function ``PyVectorcall_NARGS`` should be used to allow for " "future extensions." msgstr "" -#: c-api/call.rst:151 +#: c-api/call.rst:160 msgid "" "If *op* does not support the vectorcall protocol (either because the type " "does not or because the specific instance does not), return *NULL*. " @@ -219,19 +229,19 @@ msgid "" "function never raises an exception." msgstr "" -#: c-api/call.rst:156 +#: c-api/call.rst:165 msgid "" "This is mostly useful to check whether or not *op* supports vectorcall, " "which can be done by checking ``PyVectorcall_Function(op) != NULL``." msgstr "" -#: c-api/call.rst:163 +#: c-api/call.rst:172 msgid "" "Call *callable*'s :c:type:`vectorcallfunc` with positional and keyword " "arguments given in a tuple and dict, respectively." msgstr "" -#: c-api/call.rst:166 +#: c-api/call.rst:175 msgid "" "This is a specialized function, intended to be put in the :c:member:" "`~PyTypeObject.tp_call` slot or be used in an implementation of ``tp_call``. " @@ -239,11 +249,11 @@ msgid "" "not fall back to ``tp_call``." msgstr "" -#: c-api/call.rst:177 +#: c-api/call.rst:186 msgid "Object Calling API" msgstr "" -#: c-api/call.rst:179 +#: c-api/call.rst:188 msgid "" "Various functions are available for calling a Python object. Each converts " "its arguments to a convention supported by the called object – either " @@ -251,177 +261,177 @@ msgid "" "pick one that best fits the format of data you have available." msgstr "" -#: c-api/call.rst:185 +#: c-api/call.rst:194 msgid "" "The following table summarizes the available functions; please see " "individual documentation for details." msgstr "" -#: c-api/call.rst:189 +#: c-api/call.rst:198 msgid "Function" msgstr "" -#: c-api/call.rst:189 +#: c-api/call.rst:198 msgid "callable" msgstr "" -#: c-api/call.rst:189 +#: c-api/call.rst:198 msgid "args" msgstr "" -#: c-api/call.rst:189 +#: c-api/call.rst:198 msgid "kwargs" msgstr "" -#: c-api/call.rst:191 +#: c-api/call.rst:200 msgid ":c:func:`PyObject_Call`" msgstr "" -#: c-api/call.rst:193 c-api/call.rst:197 c-api/call.rst:203 c-api/call.rst:213 +#: c-api/call.rst:202 c-api/call.rst:206 c-api/call.rst:212 c-api/call.rst:222 msgid "``PyObject *``" msgstr "" -#: c-api/call.rst:191 +#: c-api/call.rst:200 msgid "tuple" msgstr "" -#: c-api/call.rst:213 +#: c-api/call.rst:222 msgid "dict/``NULL``" msgstr "" -#: c-api/call.rst:193 +#: c-api/call.rst:202 msgid ":c:func:`PyObject_CallNoArgs`" msgstr "" -#: c-api/call.rst:195 c-api/call.rst:199 c-api/call.rst:203 c-api/call.rst:207 -#: c-api/call.rst:209 +#: c-api/call.rst:204 c-api/call.rst:208 c-api/call.rst:212 c-api/call.rst:216 +#: c-api/call.rst:218 msgid "---" msgstr "" -#: c-api/call.rst:195 +#: c-api/call.rst:204 msgid ":c:func:`PyObject_CallOneArg`" msgstr "" -#: c-api/call.rst:209 +#: c-api/call.rst:218 msgid "1 object" msgstr "" -#: c-api/call.rst:197 +#: c-api/call.rst:206 msgid ":c:func:`PyObject_CallObject`" msgstr "" -#: c-api/call.rst:197 +#: c-api/call.rst:206 msgid "tuple/``NULL``" msgstr "" -#: c-api/call.rst:199 +#: c-api/call.rst:208 msgid ":c:func:`PyObject_CallFunction`" msgstr "" -#: c-api/call.rst:201 +#: c-api/call.rst:210 msgid "format" msgstr "" -#: c-api/call.rst:201 +#: c-api/call.rst:210 msgid ":c:func:`PyObject_CallMethod`" msgstr "" -#: c-api/call.rst:201 +#: c-api/call.rst:210 msgid "obj + ``char*``" msgstr "" -#: c-api/call.rst:203 +#: c-api/call.rst:212 msgid ":c:func:`PyObject_CallFunctionObjArgs`" msgstr "" -#: c-api/call.rst:205 +#: c-api/call.rst:214 msgid "variadic" msgstr "" -#: c-api/call.rst:205 +#: c-api/call.rst:214 msgid ":c:func:`PyObject_CallMethodObjArgs`" msgstr "" -#: c-api/call.rst:207 c-api/call.rst:209 +#: c-api/call.rst:216 c-api/call.rst:218 msgid "obj + name" msgstr "" -#: c-api/call.rst:207 +#: c-api/call.rst:216 msgid ":c:func:`PyObject_CallMethodNoArgs`" msgstr "" -#: c-api/call.rst:209 +#: c-api/call.rst:218 msgid ":c:func:`PyObject_CallMethodOneArg`" msgstr "" -#: c-api/call.rst:211 +#: c-api/call.rst:220 msgid ":c:func:`PyObject_Vectorcall`" msgstr "" -#: c-api/call.rst:213 c-api/call.rst:215 +#: c-api/call.rst:222 c-api/call.rst:224 msgid "vectorcall" msgstr "" -#: c-api/call.rst:213 +#: c-api/call.rst:222 msgid ":c:func:`PyObject_VectorcallDict`" msgstr "" -#: c-api/call.rst:215 +#: c-api/call.rst:224 msgid ":c:func:`PyObject_VectorcallMethod`" msgstr "" -#: c-api/call.rst:215 +#: c-api/call.rst:224 msgid "arg + name" msgstr "" -#: c-api/call.rst:221 +#: c-api/call.rst:230 msgid "" "Call a callable Python object *callable*, with arguments given by the tuple " "*args*, and named arguments given by the dictionary *kwargs*." msgstr "" -#: c-api/call.rst:224 +#: c-api/call.rst:233 msgid "" "*args* must not be *NULL*; use an empty tuple if no arguments are needed. If " "no named arguments are needed, *kwargs* can be *NULL*." msgstr "" -#: c-api/call.rst:239 c-api/call.rst:261 c-api/call.rst:293 c-api/call.rst:326 -#: c-api/call.rst:347 c-api/call.rst:394 +#: c-api/call.rst:248 c-api/call.rst:270 c-api/call.rst:302 c-api/call.rst:335 +#: c-api/call.rst:356 c-api/call.rst:403 msgid "" "Return the result of the call on success, or raise an exception and return " "*NULL* on failure." msgstr "" -#: c-api/call.rst:230 +#: c-api/call.rst:239 msgid "" "This is the equivalent of the Python expression: ``callable(*args, " "**kwargs)``." msgstr "" -#: c-api/call.rst:236 +#: c-api/call.rst:245 msgid "" "Call a callable Python object *callable* without any arguments. It is the " "most efficient way to call a callable Python object without any argument." msgstr "" -#: c-api/call.rst:247 +#: c-api/call.rst:256 msgid "" "Call a callable Python object *callable* with exactly 1 positional argument " "*arg* and no keyword arguments." msgstr "" -#: c-api/call.rst:258 +#: c-api/call.rst:267 msgid "" "Call a callable Python object *callable*, with arguments given by the tuple " "*args*. If no arguments are needed, then *args* can be *NULL*." msgstr "" -#: c-api/call.rst:276 +#: c-api/call.rst:285 msgid "This is the equivalent of the Python expression: ``callable(*args)``." msgstr "" -#: c-api/call.rst:269 +#: c-api/call.rst:278 msgid "" "Call a callable Python object *callable*, with a variable number of C " "arguments. The C arguments are described using a :c:func:`Py_BuildValue` " @@ -429,57 +439,57 @@ msgid "" "are provided." msgstr "" -#: c-api/call.rst:278 +#: c-api/call.rst:287 msgid "" "Note that if you only pass :c:expr:`PyObject *` args, :c:func:" "`PyObject_CallFunctionObjArgs` is a faster alternative." msgstr "" -#: c-api/call.rst:281 +#: c-api/call.rst:290 msgid "The type of *format* was changed from ``char *``." msgstr "" -#: c-api/call.rst:287 +#: c-api/call.rst:296 msgid "" "Call the method named *name* of object *obj* with a variable number of C " "arguments. The C arguments are described by a :c:func:`Py_BuildValue` " "format string that should produce a tuple." msgstr "" -#: c-api/call.rst:291 +#: c-api/call.rst:300 msgid "The format can be *NULL*, indicating that no arguments are provided." msgstr "" -#: c-api/call.rst:296 +#: c-api/call.rst:305 msgid "" "This is the equivalent of the Python expression: ``obj.name(arg1, " "arg2, ...)``." msgstr "" -#: c-api/call.rst:299 +#: c-api/call.rst:308 msgid "" "Note that if you only pass :c:expr:`PyObject *` args, :c:func:" "`PyObject_CallMethodObjArgs` is a faster alternative." msgstr "" -#: c-api/call.rst:302 +#: c-api/call.rst:311 msgid "The types of *name* and *format* were changed from ``char *``." msgstr "" -#: c-api/call.rst:308 +#: c-api/call.rst:317 msgid "" "Call a callable Python object *callable*, with a variable number of :c:expr:" "`PyObject *` arguments. The arguments are provided as a variable number of " "parameters followed by *NULL*." msgstr "" -#: c-api/call.rst:315 +#: c-api/call.rst:324 msgid "" "This is the equivalent of the Python expression: ``callable(arg1, " "arg2, ...)``." msgstr "" -#: c-api/call.rst:321 +#: c-api/call.rst:330 msgid "" "Call a method of the Python object *obj*, where the name of the method is " "given as a Python string object in *name*. It is called with a variable " @@ -487,34 +497,34 @@ msgid "" "variable number of parameters followed by *NULL*." msgstr "" -#: c-api/call.rst:332 +#: c-api/call.rst:341 msgid "" "Call a method of the Python object *obj* without arguments, where the name " "of the method is given as a Python string object in *name*." msgstr "" -#: c-api/call.rst:343 +#: c-api/call.rst:352 msgid "" "Call a method of the Python object *obj* with a single positional argument " "*arg*, where the name of the method is given as a Python string object in " "*name*." msgstr "" -#: c-api/call.rst:355 +#: c-api/call.rst:364 msgid "" "Call a callable Python object *callable*. The arguments are the same as for :" "c:type:`vectorcallfunc`. If *callable* supports vectorcall_, this directly " "calls the vectorcall function stored in *callable*." msgstr "" -#: c-api/call.rst:367 +#: c-api/call.rst:376 msgid "" "Call *callable* with positional arguments passed exactly as in the " "vectorcall_ protocol, but with keyword arguments passed as a dictionary " "*kwdict*. The *args* array contains only the positional arguments." msgstr "" -#: c-api/call.rst:371 +#: c-api/call.rst:380 msgid "" "Regardless of which protocol is used internally, a conversion of arguments " "needs to be done. Therefore, this function should only be used if the caller " @@ -522,7 +532,7 @@ msgid "" "tuple for the positional arguments." msgstr "" -#: c-api/call.rst:381 +#: c-api/call.rst:390 msgid "" "Call a method using the vectorcall calling convention. The name of the " "method is given as a Python string *name*. The object whose method is called " @@ -534,17 +544,17 @@ msgid "" "`PyObject_Vectorcall`." msgstr "" -#: c-api/call.rst:390 +#: c-api/call.rst:399 msgid "" "If the object has the :c:macro:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this " "will call the unbound method object with the full *args* vector as arguments." msgstr "" -#: c-api/call.rst:401 +#: c-api/call.rst:410 msgid "Call Support API" msgstr "" -#: c-api/call.rst:405 +#: c-api/call.rst:414 msgid "" "Determine if the object *o* is callable. Return ``1`` if the object is " "callable and ``0`` otherwise. This function always succeeds." diff --git a/c-api/code.po b/c-api/code.po index cca559733..7bdca7638 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: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -52,83 +52,107 @@ msgstr "" #: c-api/code.rst:38 msgid "" "Return a new code object. If you need a dummy code object to create a " -"frame, use :c:func:`PyCode_NewEmpty` instead. Calling :c:func:`PyCode_New` " -"directly will bind you to a precise Python version since the definition of " -"the bytecode changes often. The many arguments of this function are inter-" -"dependent in complex ways, meaning that subtle changes to values are likely " -"to result in incorrect execution or VM crashes. Use this function only with " -"extreme care." +"frame, use :c:func:`PyCode_NewEmpty` instead." msgstr "" -#: c-api/code.rst:45 -msgid "Added ``qualname`` and ``exceptiontable`` parameters." +#: c-api/code.rst:41 +msgid "" +"Since the definition of the bytecode changes often, calling :c:func:" +"`PyUnstable_Code_New` directly can bind you to a precise Python version." msgstr "" -#: c-api/code.rst:50 +#: c-api/code.rst:44 msgid "" -"Similar to :c:func:`PyCode_New`, but with an extra \"posonlyargcount\" for " -"positional-only arguments. The same caveats that apply to ``PyCode_New`` " -"also apply to this function." +"The many arguments of this function are inter-dependent in complex ways, " +"meaning that subtle changes to values are likely to result in incorrect " +"execution or VM crashes. Use this function only with extreme care." +msgstr "" + +#: c-api/code.rst:48 +msgid "Added ``qualname`` and ``exceptiontable`` parameters." msgstr "" #: c-api/code.rst:55 +msgid "" +"Renamed from ``PyCode_New`` as part of :ref:`unstable-c-api`. The old name " +"is deprecated, but will remain available until the signature changes again." +msgstr "" + +#: c-api/code.rst:61 +msgid "" +"Similar to :c:func:`PyUnstable_Code_New`, but with an extra " +"\"posonlyargcount\" for positional-only arguments. The same caveats that " +"apply to ``PyUnstable_Code_New`` also apply to this function." +msgstr "" + +#: c-api/code.rst:66 +msgid "as ``PyCode_NewWithPosOnlyArgs``" +msgstr "" + +#: c-api/code.rst:68 msgid "Added ``qualname`` and ``exceptiontable`` parameters." msgstr "" -#: c-api/code.rst:60 +#: c-api/code.rst:73 +msgid "" +"Renamed to ``PyUnstable_Code_NewWithPosOnlyArgs``. The old name is " +"deprecated, but will remain available until the signature changes again." +msgstr "" + +#: c-api/code.rst:79 msgid "" "Return a new empty code object with the specified filename, function name, " "and first line number. The resulting code object will raise an ``Exception`` " "if executed." msgstr "" -#: c-api/code.rst:66 +#: c-api/code.rst:85 msgid "" "Return the line number of the instruction that occurs on or before " "``byte_offset`` and ends after it. If you just need the line number of a " "frame, use :c:func:`PyFrame_GetLineNumber` instead." msgstr "" -#: c-api/code.rst:69 +#: c-api/code.rst:88 msgid "" "For efficiently iterating over the line numbers in a code object, use `the " "API described in PEP 626 `_." msgstr "" -#: c-api/code.rst:74 +#: c-api/code.rst:93 msgid "" "Sets the passed ``int`` pointers to the source code line and column numbers " "for the instruction at ``byte_offset``. Sets the value to ``0`` when " "information is not available for any particular element." msgstr "" -#: c-api/code.rst:78 +#: c-api/code.rst:97 msgid "Returns ``1`` if the function succeeds and 0 otherwise." msgstr "" -#: c-api/code.rst:84 +#: c-api/code.rst:103 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:89 +#: c-api/code.rst:108 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:97 +#: c-api/code.rst:116 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:106 +#: c-api/code.rst:125 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 " @@ -136,13 +160,165 @@ msgid "" "returned and an exception is raised." msgstr "" -#: c-api/code.rst:115 +#: c-api/code.rst:134 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 " "variables. On error, ``NULL`` is returned and an exception is raised." msgstr "" +#: c-api/code.rst:142 +msgid "" +"Register *callback* as a code object watcher for the current interpreter. " +"Return an ID which may be passed to :c:func:`PyCode_ClearWatcher`. In case " +"of error (e.g. no more watcher IDs available), return ``-1`` and set an " +"exception." +msgstr "" + +#: c-api/code.rst:151 +msgid "" +"Clear watcher identified by *watcher_id* previously returned from :c:func:" +"`PyCode_AddWatcher` for the current interpreter. Return ``0`` on success, or " +"``-1`` and set an exception on error (e.g. if the given *watcher_id* was " +"never registered.)" +msgstr "" + +#: c-api/code.rst:160 +msgid "" +"Enumeration of possible code object watcher events: - " +"``PY_CODE_EVENT_CREATE`` - ``PY_CODE_EVENT_DESTROY``" +msgstr "" + +#: c-api/code.rst:168 +msgid "Type of a code object watcher callback function." +msgstr "" + +#: c-api/code.rst:170 +msgid "" +"If *event* is ``PY_CODE_EVENT_CREATE``, then the callback is invoked after " +"`co` has been fully initialized. Otherwise, the callback is invoked before " +"the destruction of *co* takes place, so the prior state of *co* can be " +"inspected." +msgstr "" + +#: c-api/code.rst:175 +msgid "" +"If *event* is ``PY_CODE_EVENT_DESTROY``, taking a reference in the callback " +"to the about-to-be-destroyed code object will resurrect it and prevent it " +"from being freed at this time. When the resurrected object is destroyed " +"later, any watcher callbacks active at that time will be called again." +msgstr "" + +#: c-api/code.rst:180 +msgid "" +"Users of this API should not rely on internal runtime implementation " +"details. Such details may include, but are not limited to, the exact order " +"and timing of creation and destruction of code objects. While changes in " +"these details may result in differences observable by watchers (including " +"whether a callback is invoked or not), it does not change the semantics of " +"the Python code being executed." +msgstr "" + +#: c-api/code.rst:187 +msgid "" +"If the callback sets an exception, it must return ``-1``; this exception " +"will be printed as an unraisable exception using :c:func:" +"`PyErr_WriteUnraisable`. Otherwise it should return ``0``." +msgstr "" + +#: c-api/code.rst:191 +msgid "" +"There may already be a pending exception set on entry to the callback. In " +"this case, the callback should return ``0`` with the same exception still " +"set. This means the callback may not call any other API that can set an " +"exception unless it saves and clears the exception state first, and restores " +"it before returning." +msgstr "" + +#: c-api/code.rst:201 +msgid "Extra information" +msgstr "" + +#: c-api/code.rst:203 +msgid "" +"To support low-level extensions to frame evaluation, such as external just-" +"in-time compilers, it is possible to attach arbitrary extra data to code " +"objects." +msgstr "" + +#: c-api/code.rst:207 +msgid "" +"These functions are part of the unstable C API tier: this functionality is a " +"CPython implementation detail, and the API may change without deprecation " +"warnings." +msgstr "" + +#: c-api/code.rst:213 +msgid "Return a new an opaque index value used to adding data to code objects." +msgstr "" + +#: c-api/code.rst:215 +msgid "" +"You generally call this function once (per interpreter) and use the result " +"with ``PyCode_GetExtra`` and ``PyCode_SetExtra`` to manipulate data on " +"individual code objects." +msgstr "" + +#: c-api/code.rst:219 +msgid "" +"If *free* is not ``NULL``: when a code object is deallocated, *free* will be " +"called on non-``NULL`` data stored under the new index. Use :c:func:" +"`Py_DecRef` when storing :c:type:`PyObject`." +msgstr "" + +#: c-api/code.rst:225 +msgid "as ``_PyEval_RequestCodeExtraIndex``" +msgstr "" + +#: c-api/code.rst:229 +msgid "" +"Renamed to ``PyUnstable_Eval_RequestCodeExtraIndex``. The old private name " +"is deprecated, but will be available until the API changes." +msgstr "" + +#: c-api/code.rst:235 +msgid "" +"Set *extra* to the extra data stored under the given index. Return 0 on " +"success. Set an exception and return -1 on failure." +msgstr "" + +#: c-api/code.rst:238 +msgid "" +"If no data was set under the index, set *extra* to ``NULL`` and return 0 " +"without setting an exception." +msgstr "" + +#: c-api/code.rst:243 +msgid "as ``_PyCode_GetExtra``" +msgstr "" + +#: c-api/code.rst:247 +msgid "" +"Renamed to ``PyUnstable_Code_GetExtra``. The old private name is deprecated, " +"but will be available until the API changes." +msgstr "" + +#: c-api/code.rst:253 +msgid "" +"Set the extra data stored under the given index to *extra*. Return 0 on " +"success. Set an exception and return -1 on failure." +msgstr "" + +#: c-api/code.rst:258 +msgid "as ``_PyCode_SetExtra``" +msgstr "" + +#: c-api/code.rst:262 +msgid "" +"Renamed to ``PyUnstable_Code_SetExtra``. The old private name is deprecated, " +"but will be available until the API changes." +msgstr "" + #: c-api/code.rst:3 msgid "object" msgstr "" @@ -154,3 +330,23 @@ msgstr "" #: c-api/code.rst:3 msgid "code object" msgstr "" + +#: c-api/code.rst:51 +msgid "PyCode_New" +msgstr "" + +#: c-api/code.rst:64 +msgid "PyCode_NewWithPosOnlyArgs" +msgstr "" + +#: c-api/code.rst:223 +msgid "_PyEval_RequestCodeExtraIndex" +msgstr "" + +#: c-api/code.rst:241 +msgid "_PyCode_GetExtra" +msgstr "" + +#: c-api/code.rst:256 +msgid "_PyCode_SetExtra" +msgstr "" diff --git a/c-api/dict.po b/c-api/dict.po index 4bdba4c1c..dee878c97 100644 --- a/c-api/dict.po +++ b/c-api/dict.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -225,6 +225,103 @@ msgid "" "if an exception was raised. Equivalent Python (except for the return value)::" msgstr "" +#: c-api/dict.rst:247 +msgid "" +"Register *callback* as a dictionary watcher. Return a non-negative integer " +"id which must be passed to future calls to :c:func:`PyDict_Watch`. In case " +"of error (e.g. no more watcher IDs available), return ``-1`` and set an " +"exception." +msgstr "" + +#: c-api/dict.rst:256 +msgid "" +"Clear watcher identified by *watcher_id* previously returned from :c:func:" +"`PyDict_AddWatcher`. Return ``0`` on success, ``-1`` on error (e.g. if the " +"given *watcher_id* was never registered.)" +msgstr "" + +#: c-api/dict.rst:264 +msgid "" +"Mark dictionary *dict* as watched. The callback granted *watcher_id* by :c:" +"func:`PyDict_AddWatcher` will be called when *dict* is modified or " +"deallocated. Return ``0`` on success or ``-1`` on error." +msgstr "" + +#: c-api/dict.rst:272 +msgid "" +"Mark dictionary *dict* as no longer watched. The callback granted " +"*watcher_id* by :c:func:`PyDict_AddWatcher` will no longer be called when " +"*dict* is modified or deallocated. The dict must previously have been " +"watched by this watcher. Return ``0`` on success or ``-1`` on error." +msgstr "" + +#: c-api/dict.rst:281 +msgid "" +"Enumeration of possible dictionary watcher events: ``PyDict_EVENT_ADDED``, " +"``PyDict_EVENT_MODIFIED``, ``PyDict_EVENT_DELETED``, " +"``PyDict_EVENT_CLONED``, ``PyDict_EVENT_CLEARED``, or " +"``PyDict_EVENT_DEALLOCATED``." +msgstr "" + +#: c-api/dict.rst:289 +msgid "Type of a dict watcher callback function." +msgstr "" + +#: c-api/dict.rst:291 +msgid "" +"If *event* is ``PyDict_EVENT_CLEARED`` or ``PyDict_EVENT_DEALLOCATED``, both " +"*key* and *new_value* will be ``NULL``. If *event* is ``PyDict_EVENT_ADDED`` " +"or ``PyDict_EVENT_MODIFIED``, *new_value* will be the new value for *key*. " +"If *event* is ``PyDict_EVENT_DELETED``, *key* is being deleted from the " +"dictionary and *new_value* will be ``NULL``." +msgstr "" + +#: c-api/dict.rst:297 +msgid "" +"``PyDict_EVENT_CLONED`` occurs when *dict* was previously empty and another " +"dict is merged into it. To maintain efficiency of this operation, per-key " +"``PyDict_EVENT_ADDED`` events are not issued in this case; instead a single " +"``PyDict_EVENT_CLONED`` is issued, and *key* will be the source dictionary." +msgstr "" + +#: c-api/dict.rst:303 +msgid "" +"The callback may inspect but must not modify *dict*; doing so could have " +"unpredictable effects, including infinite recursion. Do not trigger Python " +"code execution in the callback, as it could modify the dict as a side effect." +msgstr "" + +#: c-api/dict.rst:307 +msgid "" +"If *event* is ``PyDict_EVENT_DEALLOCATED``, taking a new reference in the " +"callback to the about-to-be-destroyed dictionary will resurrect it and " +"prevent it from being freed at this time. When the resurrected object is " +"destroyed later, any watcher callbacks active at that time will be called " +"again." +msgstr "" + +#: c-api/dict.rst:313 +msgid "" +"Callbacks occur before the notified modification to *dict* takes place, so " +"the prior state of *dict* can be inspected." +msgstr "" + +#: c-api/dict.rst:316 +msgid "" +"If the callback sets an exception, it must return ``-1``; this exception " +"will be printed as an unraisable exception using :c:func:" +"`PyErr_WriteUnraisable`. Otherwise it should return ``0``." +msgstr "" + +#: c-api/dict.rst:320 +msgid "" +"There may already be a pending exception set on entry to the callback. In " +"this case, the callback should return ``0`` with the same exception still " +"set. This means the callback may not call any other API that can set an " +"exception unless it saves and clears the exception state first, and restores " +"it before returning." +msgstr "" + #: c-api/dict.rst:8 msgid "object" msgstr "" diff --git a/c-api/exceptions.po b/c-api/exceptions.po index 63fbd5106..eee8760a2 100644 --- a/c-api/exceptions.po +++ b/c-api/exceptions.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -89,22 +89,28 @@ msgstr "" #: c-api/exceptions.rst:63 msgid "" -"If *set_sys_last_vars* is nonzero, the variables :data:`sys.last_type`, :" -"data:`sys.last_value` and :data:`sys.last_traceback` will be set to the " -"type, value and traceback of the printed exception, respectively." +"If *set_sys_last_vars* is nonzero, the variable :data:`sys.last_exc` is set " +"to the printed exception. For backwards compatibility, the deprecated " +"variables :data:`sys.last_type`, :data:`sys.last_value` and :data:`sys." +"last_traceback` are also set to the type, value and traceback of this " +"exception, respectively." msgstr "" -#: c-api/exceptions.rst:70 -msgid "Alias for ``PyErr_PrintEx(1)``." +#: c-api/exceptions.rst:69 +msgid "The setting of :data:`sys.last_exc` was added." msgstr "" #: c-api/exceptions.rst:75 +msgid "Alias for ``PyErr_PrintEx(1)``." +msgstr "" + +#: c-api/exceptions.rst:80 msgid "" "Call :func:`sys.unraisablehook` using the current exception and *obj* " "argument." msgstr "" -#: c-api/exceptions.rst:78 +#: c-api/exceptions.rst:83 msgid "" "This utility function prints a warning message to ``sys.stderr`` when an " "exception has been set but it is impossible for the interpreter to actually " @@ -112,29 +118,35 @@ msgid "" "an :meth:`~object.__del__` method." msgstr "" -#: c-api/exceptions.rst:83 +#: c-api/exceptions.rst:88 msgid "" "The function is called with a single argument *obj* that identifies the " "context in which the unraisable exception occurred. If possible, the repr of " "*obj* will be printed in the warning message." msgstr "" -#: c-api/exceptions.rst:87 +#: c-api/exceptions.rst:92 msgid "An exception must be set when calling this function." msgstr "" -#: c-api/exceptions.rst:91 +#: c-api/exceptions.rst:96 +msgid "" +"Print the standard traceback display of ``exc`` to ``sys.stderr``, including " +"chained exceptions and notes." +msgstr "" + +#: c-api/exceptions.rst:102 msgid "Raising exceptions" msgstr "" -#: c-api/exceptions.rst:93 +#: c-api/exceptions.rst:104 msgid "" "These functions help you set the current thread's error indicator. For " "convenience, some of these functions will always return a ``NULL`` pointer " "for use in a ``return`` statement." msgstr "" -#: c-api/exceptions.rst:100 +#: c-api/exceptions.rst:111 msgid "" "This is the most common way to set the error indicator. The first argument " "specifies the exception type; it is normally one of the standard exceptions, " @@ -143,13 +155,13 @@ msgid "" "error message; it is decoded from ``'utf-8'``." msgstr "" -#: c-api/exceptions.rst:109 +#: c-api/exceptions.rst:120 msgid "" "This function is similar to :c:func:`PyErr_SetString` but lets you specify " "an arbitrary Python object for the \"value\" of the exception." msgstr "" -#: c-api/exceptions.rst:115 +#: c-api/exceptions.rst:126 msgid "" "This function sets the error indicator and returns ``NULL``. *exception* " "should be a Python exception class. The *format* and subsequent parameters " @@ -157,31 +169,31 @@ msgid "" "c:func:`PyUnicode_FromFormat`. *format* is an ASCII-encoded string." msgstr "" -#: c-api/exceptions.rst:124 +#: c-api/exceptions.rst:135 msgid "" "Same as :c:func:`PyErr_Format`, but taking a :c:type:`va_list` argument " "rather than a variable number of arguments." msgstr "" -#: c-api/exceptions.rst:132 +#: c-api/exceptions.rst:143 msgid "This is a shorthand for ``PyErr_SetObject(type, Py_None)``." msgstr "" -#: c-api/exceptions.rst:137 +#: c-api/exceptions.rst:148 msgid "" "This is a shorthand for ``PyErr_SetString(PyExc_TypeError, message)``, where " "*message* indicates that a built-in operation was invoked with an illegal " "argument. It is mostly for internal use." msgstr "" -#: c-api/exceptions.rst:144 +#: c-api/exceptions.rst:155 msgid "" "This is a shorthand for ``PyErr_SetNone(PyExc_MemoryError)``; it returns " "``NULL`` so an object allocation function can write ``return " "PyErr_NoMemory();`` when it runs out of memory." msgstr "" -#: c-api/exceptions.rst:153 +#: c-api/exceptions.rst:164 msgid "" "This is a convenience function to raise an exception when a C library " "function has returned an error and set the C variable :c:data:`errno`. It " @@ -195,7 +207,7 @@ msgid "" "``return PyErr_SetFromErrno(type);`` when the system call returns an error." msgstr "" -#: c-api/exceptions.rst:167 +#: c-api/exceptions.rst:178 msgid "" "Similar to :c:func:`PyErr_SetFromErrno`, with the additional behavior that " "if *filenameObject* is not ``NULL``, it is passed to the constructor of " @@ -203,21 +215,21 @@ msgid "" "is used to define the :attr:`!filename` attribute of the exception instance." msgstr "" -#: c-api/exceptions.rst:176 +#: c-api/exceptions.rst:187 msgid "" "Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but takes a " "second filename object, for raising errors when a function that takes two " "filenames fails." msgstr "" -#: c-api/exceptions.rst:185 +#: c-api/exceptions.rst:196 msgid "" "Similar to :c:func:`PyErr_SetFromErrnoWithFilenameObject`, but the filename " "is given as a C string. *filename* is decoded from the :term:`filesystem " "encoding and error handler`." msgstr "" -#: c-api/exceptions.rst:192 +#: c-api/exceptions.rst:203 msgid "" "This is a convenience function to raise :exc:`WindowsError`. If called with " "*ierr* of ``0``, the error code returned by a call to :c:func:`!" @@ -230,17 +242,17 @@ msgid "" "returns ``NULL``." msgstr "" -#: c-api/exceptions.rst:209 c-api/exceptions.rst:230 c-api/exceptions.rst:248 +#: c-api/exceptions.rst:220 c-api/exceptions.rst:241 c-api/exceptions.rst:259 msgid ":ref:`Availability `: Windows." msgstr "" -#: c-api/exceptions.rst:206 +#: c-api/exceptions.rst:217 msgid "" "Similar to :c:func:`PyErr_SetFromWindowsErr`, with an additional parameter " "specifying the exception type to be raised." msgstr "" -#: c-api/exceptions.rst:214 +#: c-api/exceptions.rst:225 msgid "" "Similar to :c:func:`PyErr_SetFromWindowsErr`, with the additional behavior " "that if *filename* is not ``NULL``, it is decoded from the filesystem " @@ -249,7 +261,7 @@ msgid "" "attribute of the exception instance." msgstr "" -#: c-api/exceptions.rst:225 +#: c-api/exceptions.rst:236 msgid "" "Similar to :c:func:`PyErr_SetExcFromWindowsErr`, with the additional " "behavior that if *filename* is not ``NULL``, it is passed to the constructor " @@ -257,19 +269,19 @@ msgid "" "filename` attribute of the exception instance." msgstr "" -#: c-api/exceptions.rst:235 +#: c-api/exceptions.rst:246 msgid "" "Similar to :c:func:`PyErr_SetExcFromWindowsErrWithFilenameObject`, but " "accepts a second filename object." msgstr "" -#: c-api/exceptions.rst:245 +#: c-api/exceptions.rst:256 msgid "" "Similar to :c:func:`PyErr_SetFromWindowsErrWithFilename`, with an additional " "parameter specifying the exception type to be raised." msgstr "" -#: c-api/exceptions.rst:253 +#: c-api/exceptions.rst:264 msgid "" "This is a convenience function to raise :exc:`ImportError`. *msg* will be " "set as the exception's message string. *name* and *path*, both of which can " @@ -277,13 +289,13 @@ msgid "" "``path`` attributes." msgstr "" -#: c-api/exceptions.rst:263 +#: c-api/exceptions.rst:274 msgid "" "Much like :c:func:`PyErr_SetImportError` but this function allows for " "specifying a subclass of :exc:`ImportError` to raise." msgstr "" -#: c-api/exceptions.rst:271 +#: c-api/exceptions.rst:282 msgid "" "Set file, line, and offset information for the current exception. If the " "current exception is not a :exc:`SyntaxError`, then it sets additional " @@ -291,19 +303,19 @@ msgid "" "is a :exc:`SyntaxError`." msgstr "" -#: c-api/exceptions.rst:281 +#: c-api/exceptions.rst:292 msgid "" "Like :c:func:`PyErr_SyntaxLocationObject`, but *filename* is a byte string " "decoded from the :term:`filesystem encoding and error handler`." msgstr "" -#: c-api/exceptions.rst:289 +#: c-api/exceptions.rst:300 msgid "" "Like :c:func:`PyErr_SyntaxLocationEx`, but the *col_offset* parameter is " "omitted." msgstr "" -#: c-api/exceptions.rst:295 +#: c-api/exceptions.rst:306 msgid "" "This is a shorthand for ``PyErr_SetString(PyExc_SystemError, message)``, " "where *message* indicates that an internal operation (e.g. a Python/C API " @@ -311,11 +323,11 @@ msgid "" "use." msgstr "" -#: c-api/exceptions.rst:302 +#: c-api/exceptions.rst:313 msgid "Issuing warnings" msgstr "" -#: c-api/exceptions.rst:304 +#: c-api/exceptions.rst:315 msgid "" "Use these functions to issue warnings from C code. They mirror similar " "functions exported by the Python :mod:`warnings` module. They normally " @@ -331,7 +343,7 @@ msgid "" "return an error value)." msgstr "" -#: c-api/exceptions.rst:319 +#: c-api/exceptions.rst:330 msgid "" "Issue a warning message. The *category* argument is a warning category (see " "below) or ``NULL``; the *message* argument is a UTF-8 encoded string. " @@ -341,7 +353,7 @@ msgid "" "`PyErr_WarnEx`, 2 is the function above that, and so forth." msgstr "" -#: c-api/exceptions.rst:326 +#: c-api/exceptions.rst:337 msgid "" "Warning categories must be subclasses of :c:data:`PyExc_Warning`; :c:data:" "`PyExc_Warning` is a subclass of :c:data:`PyExc_Exception`; the default " @@ -350,14 +362,14 @@ msgid "" "enumerated at :ref:`standardwarningcategories`." msgstr "" -#: c-api/exceptions.rst:332 +#: c-api/exceptions.rst:343 msgid "" "For information about warning control, see the documentation for the :mod:" "`warnings` module and the :option:`-W` option in the command line " "documentation. There is no C API for warning control." msgstr "" -#: c-api/exceptions.rst:339 +#: c-api/exceptions.rst:350 msgid "" "Issue a warning message with explicit control over all warning attributes. " "This is a straightforward wrapper around the Python function :func:`warnings." @@ -365,31 +377,31 @@ msgid "" "arguments may be set to ``NULL`` to get the default effect described there." msgstr "" -#: c-api/exceptions.rst:350 +#: c-api/exceptions.rst:361 msgid "" "Similar to :c:func:`PyErr_WarnExplicitObject` except that *message* and " "*module* are UTF-8 encoded strings, and *filename* is decoded from the :term:" "`filesystem encoding and error handler`." msgstr "" -#: c-api/exceptions.rst:357 +#: c-api/exceptions.rst:368 msgid "" "Function similar to :c:func:`PyErr_WarnEx`, but use :c:func:" "`PyUnicode_FromFormat` to format the warning message. *format* is an ASCII-" "encoded string." msgstr "" -#: c-api/exceptions.rst:366 +#: c-api/exceptions.rst:377 msgid "" "Function similar to :c:func:`PyErr_WarnFormat`, but *category* is :exc:" "`ResourceWarning` and it passes *source* to :func:`warnings.WarningMessage`." msgstr "" -#: c-api/exceptions.rst:373 +#: c-api/exceptions.rst:384 msgid "Querying the error indicator" msgstr "" -#: c-api/exceptions.rst:377 +#: c-api/exceptions.rst:388 msgid "" "Test whether the error indicator is set. If set, return the exception " "*type* (the first argument to the last call to one of the ``PyErr_Set*`` " @@ -398,11 +410,11 @@ msgid "" "`Py_DECREF` it." msgstr "" -#: c-api/exceptions.rst:383 +#: c-api/exceptions.rst:394 msgid "The caller must hold the GIL." msgstr "" -#: c-api/exceptions.rst:387 +#: c-api/exceptions.rst:398 msgid "" "Do not compare the return value to a specific exception; use :c:func:" "`PyErr_ExceptionMatches` instead, shown below. (The comparison could easily " @@ -410,14 +422,14 @@ msgid "" "of a class exception, or it may be a subclass of the expected exception.)" msgstr "" -#: c-api/exceptions.rst:395 +#: c-api/exceptions.rst:406 msgid "" "Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This " "should only be called when an exception is actually set; a memory access " "violation will occur if no exception has been raised." msgstr "" -#: c-api/exceptions.rst:402 +#: c-api/exceptions.rst:413 msgid "" "Return true if the *given* exception matches the exception type in *exc*. " "If *exc* is a class object, this also returns true when *given* is an " @@ -425,7 +437,43 @@ msgid "" "tuple (and recursively in subtuples) are searched for a match." msgstr "" -#: c-api/exceptions.rst:410 +#: c-api/exceptions.rst:421 +msgid "" +"Return the exception currently being raised, clearing the error indicator at " +"the same time." +msgstr "" + +#: c-api/exceptions.rst:424 +msgid "" +"This function is used by code that needs to catch exceptions, or code that " +"needs to save and restore the error indicator temporarily." +msgstr "" + +#: c-api/exceptions.rst:471 +msgid "For example::" +msgstr "" + +#: c-api/exceptions.rst:437 +msgid "" +":c:func:`PyErr_GetHandledException`, to save the exception currently being " +"handled." +msgstr "" + +#: c-api/exceptions.rst:445 +msgid "" +"Set *exc* as the exception currently being raised, clearing the existing " +"exception if one is set." +msgstr "" + +#: c-api/exceptions.rst:450 +msgid "This call steals a reference to *exc*, which must be a valid exception." +msgstr "" + +#: c-api/exceptions.rst:459 +msgid "Use :c:func:`PyErr_GetRaisedException` instead." +msgstr "" + +#: c-api/exceptions.rst:461 msgid "" "Retrieve the error indicator into three variables whose addresses are " "passed. If the error indicator is not set, set all three variables to " @@ -434,34 +482,43 @@ msgid "" "the type object is not." msgstr "" -#: c-api/exceptions.rst:417 +#: c-api/exceptions.rst:468 msgid "" -"This function is normally only used by code that needs to catch exceptions " -"or by code that needs to save and restore the error indicator temporarily, e." -"g.::" +"This function is normally only used by legacy code that needs to catch " +"exceptions or save and restore the error indicator temporarily." msgstr "" -#: c-api/exceptions.rst:432 +#: c-api/exceptions.rst:487 +msgid "Use :c:func:`PyErr_SetRaisedException` instead." +msgstr "" + +#: c-api/exceptions.rst:489 msgid "" -"Set the error indicator from the three objects. If the error indicator is " -"already set, it is cleared first. If the objects are ``NULL``, the error " -"indicator is cleared. Do not pass a ``NULL`` type and non-``NULL`` value or " -"traceback. The exception type should be a class. Do not pass an invalid " -"exception type or value. (Violating these rules will cause subtle problems " -"later.) This call takes away a reference to each object: you must own a " -"reference to each object before the call and after the call you no longer " -"own these references. (If you don't understand this, don't use this " -"function. I warned you.)" +"Set the error indicator from the three objects, *type*, *value*, and " +"*traceback*, clearing the existing exception if one is set. If the objects " +"are ``NULL``, the error indicator is cleared. Do not pass a ``NULL`` type " +"and non-``NULL`` value or traceback. The exception type should be a class. " +"Do not pass an invalid exception type or value. (Violating these rules will " +"cause subtle problems later.) This call takes away a reference to each " +"object: you must own a reference to each object before the call and after " +"the call you no longer own these references. (If you don't understand this, " +"don't use this function. I warned you.)" msgstr "" -#: c-api/exceptions.rst:444 +#: c-api/exceptions.rst:503 msgid "" -"This function is normally only used by code that needs to save and restore " -"the error indicator temporarily. Use :c:func:`PyErr_Fetch` to save the " -"current error indicator." +"This function is normally only used by legacy code that needs to save and " +"restore the error indicator temporarily. Use :c:func:`PyErr_Fetch` to save " +"the current error indicator." msgstr "" -#: c-api/exceptions.rst:451 +#: c-api/exceptions.rst:512 +msgid "" +"Use :c:func:`PyErr_GetRaisedException` instead, to avoid any possible de-" +"normalization." +msgstr "" + +#: c-api/exceptions.rst:515 msgid "" "Under certain circumstances, the values returned by :c:func:`PyErr_Fetch` " "below can be \"unnormalized\", meaning that ``*exc`` is a class object but " @@ -471,14 +528,14 @@ msgid "" "improve performance." msgstr "" -#: c-api/exceptions.rst:459 +#: c-api/exceptions.rst:523 msgid "" "This function *does not* implicitly set the ``__traceback__`` attribute on " "the exception value. If setting the traceback appropriately is desired, the " "following additional snippet is needed::" msgstr "" -#: c-api/exceptions.rst:470 +#: c-api/exceptions.rst:534 msgid "" "Retrieve the active exception instance, as would be returned by :func:`sys." "exception`. This refers to an exception that was *already caught*, not to an " @@ -486,7 +543,7 @@ msgid "" "or ``NULL``. Does not modify the interpreter's exception state." msgstr "" -#: c-api/exceptions.rst:477 +#: c-api/exceptions.rst:541 msgid "" "This function is not normally used by code that wants to handle exceptions. " "Rather, it can be used when code needs to save and restore the exception " @@ -494,14 +551,14 @@ msgid "" "clear the exception state." msgstr "" -#: c-api/exceptions.rst:486 +#: c-api/exceptions.rst:550 msgid "" "Set the active exception, as known from ``sys.exception()``. This refers to " "an exception that was *already caught*, not to an exception that was freshly " "raised. To clear the exception state, pass ``NULL``." msgstr "" -#: c-api/exceptions.rst:493 +#: c-api/exceptions.rst:557 msgid "" "This function is not normally used by code that wants to handle exceptions. " "Rather, it can be used when code needs to save and restore the exception " @@ -509,7 +566,7 @@ msgid "" "exception state." msgstr "" -#: c-api/exceptions.rst:502 +#: c-api/exceptions.rst:566 msgid "" "Retrieve the old-style representation of the exception info, as known from :" "func:`sys.exc_info`. This refers to an exception that was *already caught*, " @@ -519,7 +576,7 @@ msgid "" "using :c:func:`PyErr_GetHandledException`." msgstr "" -#: c-api/exceptions.rst:511 +#: c-api/exceptions.rst:575 msgid "" "This function is not normally used by code that wants to handle exceptions. " "Rather, it can be used when code needs to save and restore the exception " @@ -527,7 +584,7 @@ msgid "" "exception state." msgstr "" -#: c-api/exceptions.rst:521 +#: c-api/exceptions.rst:585 msgid "" "Set the exception info, as known from ``sys.exc_info()``. This refers to an " "exception that was *already caught*, not to an exception that was freshly " @@ -537,7 +594,7 @@ msgid "" "`PyErr_SetHandledException`." msgstr "" -#: c-api/exceptions.rst:530 +#: c-api/exceptions.rst:594 msgid "" "This function is not normally used by code that wants to handle exceptions. " "Rather, it can be used when code needs to save and restore the exception " @@ -545,22 +602,22 @@ msgid "" "state." msgstr "" -#: c-api/exceptions.rst:537 +#: c-api/exceptions.rst:601 msgid "" "The ``type`` and ``traceback`` arguments are no longer used and can be NULL. " "The interpreter now derives them from the exception instance (the ``value`` " "argument). The function still steals references of all three arguments." msgstr "" -#: c-api/exceptions.rst:545 +#: c-api/exceptions.rst:609 msgid "Signal Handling" msgstr "" -#: c-api/exceptions.rst:555 +#: c-api/exceptions.rst:619 msgid "This function interacts with Python's signal handling." msgstr "" -#: c-api/exceptions.rst:557 +#: c-api/exceptions.rst:621 msgid "" "If the function is called from the main thread and under the main Python " "interpreter, it checks whether a signal has been sent to the processes and " @@ -568,7 +625,7 @@ msgid "" "module is supported, this can invoke a signal handler written in Python." msgstr "" -#: c-api/exceptions.rst:562 +#: c-api/exceptions.rst:626 msgid "" "The function attempts to handle all pending signals, and then returns ``0``. " "However, if a Python signal handler raises an exception, the error indicator " @@ -577,44 +634,44 @@ msgid "" "`PyErr_CheckSignals()` invocation)." msgstr "" -#: c-api/exceptions.rst:568 +#: c-api/exceptions.rst:632 msgid "" "If the function is called from a non-main thread, or under a non-main Python " "interpreter, it does nothing and returns ``0``." msgstr "" -#: c-api/exceptions.rst:571 +#: c-api/exceptions.rst:635 msgid "" "This function can be called by long-running C code that wants to be " "interruptible by user requests (such as by pressing Ctrl-C)." msgstr "" -#: c-api/exceptions.rst:575 +#: c-api/exceptions.rst:639 msgid "" "The default Python signal handler for :c:macro:`!SIGINT` raises the :exc:" "`KeyboardInterrupt` exception." msgstr "" -#: c-api/exceptions.rst:586 +#: c-api/exceptions.rst:650 msgid "" "Simulate the effect of a :c:macro:`!SIGINT` signal arriving. This is " "equivalent to ``PyErr_SetInterruptEx(SIGINT)``." msgstr "" -#: c-api/exceptions.rst:617 +#: c-api/exceptions.rst:681 msgid "" "This function is async-signal-safe. It can be called without the :term:" "`GIL` and from a C signal handler." msgstr "" -#: c-api/exceptions.rst:600 +#: c-api/exceptions.rst:664 msgid "" "Simulate the effect of a signal arriving. The next time :c:func:" "`PyErr_CheckSignals` is called, the Python signal handler for the given " "signal number will be called." msgstr "" -#: c-api/exceptions.rst:604 +#: c-api/exceptions.rst:668 msgid "" "This function can be called by C code that sets up its own signal handling " "and wants Python signal handlers to be invoked as expected when an " @@ -622,27 +679,27 @@ msgid "" "interrupt an operation)." msgstr "" -#: c-api/exceptions.rst:609 +#: c-api/exceptions.rst:673 msgid "" "If the given signal isn't handled by Python (it was set to :py:const:`signal." "SIG_DFL` or :py:const:`signal.SIG_IGN`), it will be ignored." msgstr "" -#: c-api/exceptions.rst:612 +#: c-api/exceptions.rst:676 msgid "" "If *signum* is outside of the allowed range of signal numbers, ``-1`` is " "returned. Otherwise, ``0`` is returned. The error indicator is never " "changed by this function." msgstr "" -#: c-api/exceptions.rst:625 +#: c-api/exceptions.rst:689 msgid "" "This utility function specifies a file descriptor to which the signal number " "is written as a single byte whenever a signal is received. *fd* must be non-" "blocking. It returns the previous such file descriptor." msgstr "" -#: c-api/exceptions.rst:629 +#: c-api/exceptions.rst:693 msgid "" "The value ``-1`` disables the feature; this is the initial state. This is " "equivalent to :func:`signal.set_wakeup_fd` in Python, but without any error " @@ -650,15 +707,15 @@ msgid "" "be called from the main thread." msgstr "" -#: c-api/exceptions.rst:634 +#: c-api/exceptions.rst:698 msgid "On Windows, the function now also supports socket handles." msgstr "" -#: c-api/exceptions.rst:639 +#: c-api/exceptions.rst:703 msgid "Exception Classes" msgstr "" -#: c-api/exceptions.rst:643 +#: c-api/exceptions.rst:707 msgid "" "This utility function creates and returns a new exception class. The *name* " "argument must be the name of the new exception, a C string of the form " @@ -667,7 +724,7 @@ msgid "" "(accessible in C as :c:data:`PyExc_Exception`)." msgstr "" -#: c-api/exceptions.rst:649 +#: c-api/exceptions.rst:713 msgid "" "The :attr:`__module__` attribute of the new class is set to the first part " "(up to the last dot) of the *name* argument, and the class name is set to " @@ -677,31 +734,31 @@ msgid "" "variables and methods." msgstr "" -#: c-api/exceptions.rst:658 +#: c-api/exceptions.rst:722 msgid "" "Same as :c:func:`PyErr_NewException`, except that the new exception class " "can easily be given a docstring: If *doc* is non-``NULL``, it will be used " "as the docstring for the exception class." msgstr "" -#: c-api/exceptions.rst:666 +#: c-api/exceptions.rst:730 msgid "Exception Objects" msgstr "" -#: c-api/exceptions.rst:670 +#: c-api/exceptions.rst:734 msgid "" "Return the traceback associated with the exception as a new reference, as " "accessible from Python through :attr:`__traceback__`. If there is no " "traceback associated, this returns ``NULL``." msgstr "" -#: c-api/exceptions.rst:677 +#: c-api/exceptions.rst:741 msgid "" "Set the traceback associated with the exception to *tb*. Use ``Py_None`` to " "clear it." msgstr "" -#: c-api/exceptions.rst:683 +#: c-api/exceptions.rst:747 msgid "" "Return the context (another exception instance during whose handling *ex* " "was raised) associated with the exception as a new reference, as accessible " @@ -709,98 +766,118 @@ msgid "" "this returns ``NULL``." msgstr "" -#: c-api/exceptions.rst:691 +#: c-api/exceptions.rst:755 msgid "" "Set the context associated with the exception to *ctx*. Use ``NULL`` to " "clear it. There is no type check to make sure that *ctx* is an exception " "instance. This steals a reference to *ctx*." msgstr "" -#: c-api/exceptions.rst:698 +#: c-api/exceptions.rst:762 msgid "" "Return the cause (either an exception instance, or ``None``, set by " "``raise ... from ...``) associated with the exception as a new reference, as " "accessible from Python through :attr:`__cause__`." msgstr "" -#: c-api/exceptions.rst:705 +#: c-api/exceptions.rst:769 msgid "" "Set the cause associated with the exception to *cause*. Use ``NULL`` to " "clear it. There is no type check to make sure that *cause* is either an " "exception instance or ``None``. This steals a reference to *cause*." msgstr "" -#: c-api/exceptions.rst:709 +#: c-api/exceptions.rst:773 msgid "" ":attr:`__suppress_context__` is implicitly set to ``True`` by this function." msgstr "" -#: c-api/exceptions.rst:715 +#: c-api/exceptions.rst:778 +msgid "Return :attr:`~BaseException.args` of exception *ex*." +msgstr "" + +#: c-api/exceptions.rst:783 +msgid "Set :attr:`~BaseException.args` of exception *ex* to *args*." +msgstr "" + +#: c-api/exceptions.rst:787 +msgid "" +"Implement part of the interpreter's implementation of :keyword:`!except*`. " +"*orig* is the original exception that was caught, and *excs* is the list of " +"the exceptions that need to be raised. This list contains the the unhandled " +"part of *orig*, if any, as well as the exceptions that were raised from the :" +"keyword:`!except*` clauses (so they have a different traceback from *orig*) " +"and those that were reraised (and have the same traceback as *orig*). Return " +"the :exc:`ExceptionGroup` that needs to be reraised in the end, or ``None`` " +"if there is nothing to reraise." +msgstr "" + +#: c-api/exceptions.rst:801 msgid "Unicode Exception Objects" msgstr "" -#: c-api/exceptions.rst:717 +#: c-api/exceptions.rst:803 msgid "" "The following functions are used to create and modify Unicode exceptions " "from C." msgstr "" -#: c-api/exceptions.rst:721 +#: c-api/exceptions.rst:807 msgid "" "Create a :class:`UnicodeDecodeError` object with the attributes *encoding*, " "*object*, *length*, *start*, *end* and *reason*. *encoding* and *reason* are " "UTF-8 encoded strings." msgstr "" -#: c-api/exceptions.rst:728 +#: c-api/exceptions.rst:814 msgid "Return the *encoding* attribute of the given exception object." msgstr "" -#: c-api/exceptions.rst:734 +#: c-api/exceptions.rst:820 msgid "Return the *object* attribute of the given exception object." msgstr "" -#: c-api/exceptions.rst:740 +#: c-api/exceptions.rst:826 msgid "" "Get the *start* attribute of the given exception object and place it into " "*\\*start*. *start* must not be ``NULL``. Return ``0`` on success, ``-1`` " "on failure." msgstr "" -#: c-api/exceptions.rst:748 +#: c-api/exceptions.rst:834 msgid "" "Set the *start* attribute of the given exception object to *start*. Return " "``0`` on success, ``-1`` on failure." msgstr "" -#: c-api/exceptions.rst:755 +#: c-api/exceptions.rst:841 msgid "" "Get the *end* attribute of the given exception object and place it into " "*\\*end*. *end* must not be ``NULL``. Return ``0`` on success, ``-1`` on " "failure." msgstr "" -#: c-api/exceptions.rst:763 +#: c-api/exceptions.rst:849 msgid "" "Set the *end* attribute of the given exception object to *end*. Return " "``0`` on success, ``-1`` on failure." msgstr "" -#: c-api/exceptions.rst:770 +#: c-api/exceptions.rst:856 msgid "Return the *reason* attribute of the given exception object." msgstr "" -#: c-api/exceptions.rst:776 +#: c-api/exceptions.rst:862 msgid "" "Set the *reason* attribute of the given exception object to *reason*. " "Return ``0`` on success, ``-1`` on failure." msgstr "" -#: c-api/exceptions.rst:783 +#: c-api/exceptions.rst:869 msgid "Recursion Control" msgstr "" -#: c-api/exceptions.rst:785 +#: c-api/exceptions.rst:871 msgid "" "These two functions provide a way to perform safe recursive calls at the C " "level, both in the core and in extension modules. They are needed if the " @@ -810,42 +887,44 @@ msgid "" "recursion handling." msgstr "" -#: c-api/exceptions.rst:794 +#: c-api/exceptions.rst:880 msgid "Marks a point where a recursive C-level call is about to be performed." msgstr "" -#: c-api/exceptions.rst:796 +#: c-api/exceptions.rst:882 msgid "" "If :c:macro:`USE_STACKCHECK` is defined, this function checks if the OS " "stack overflowed using :c:func:`PyOS_CheckStack`. In this is the case, it " "sets a :exc:`MemoryError` and returns a nonzero value." msgstr "" -#: c-api/exceptions.rst:800 +#: c-api/exceptions.rst:886 msgid "" "The function then checks if the recursion limit is reached. If this is the " "case, a :exc:`RecursionError` is set and a nonzero value is returned. " "Otherwise, zero is returned." msgstr "" -#: c-api/exceptions.rst:804 +#: c-api/exceptions.rst:890 msgid "" "*where* should be a UTF-8 encoded string such as ``\" in instance check\"`` " "to be concatenated to the :exc:`RecursionError` message caused by the " "recursion depth limit." msgstr "" -#: c-api/exceptions.rst:816 -msgid "This function is now also available in the limited API." +#: c-api/exceptions.rst:902 +msgid "" +"This function is now also available in the :ref:`limited API `." msgstr "" -#: c-api/exceptions.rst:813 +#: c-api/exceptions.rst:899 msgid "" "Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each " "*successful* invocation of :c:func:`Py_EnterRecursiveCall`." msgstr "" -#: c-api/exceptions.rst:819 +#: c-api/exceptions.rst:905 msgid "" "Properly implementing :c:member:`~PyTypeObject.tp_repr` for container types " "requires special recursion handling. In addition to protecting the stack, :" @@ -854,13 +933,13 @@ msgid "" "Effectively, these are the C equivalent to :func:`reprlib.recursive_repr`." msgstr "" -#: c-api/exceptions.rst:827 +#: c-api/exceptions.rst:913 msgid "" "Called at the beginning of the :c:member:`~PyTypeObject.tp_repr` " "implementation to detect cycles." msgstr "" -#: c-api/exceptions.rst:830 +#: c-api/exceptions.rst:916 msgid "" "If the object has already been processed, the function returns a positive " "integer. In that case the :c:member:`~PyTypeObject.tp_repr` implementation " @@ -868,30 +947,30 @@ msgid "" "`dict` objects return ``{...}`` and :class:`list` objects return ``[...]``." msgstr "" -#: c-api/exceptions.rst:836 +#: c-api/exceptions.rst:922 msgid "" "The function will return a negative integer if the recursion limit is " "reached. In that case the :c:member:`~PyTypeObject.tp_repr` implementation " "should typically return ``NULL``." msgstr "" -#: c-api/exceptions.rst:840 +#: c-api/exceptions.rst:926 msgid "" "Otherwise, the function returns zero and the :c:member:`~PyTypeObject." "tp_repr` implementation can continue normally." msgstr "" -#: c-api/exceptions.rst:845 +#: c-api/exceptions.rst:931 msgid "" "Ends a :c:func:`Py_ReprEnter`. Must be called once for each invocation of :" "c:func:`Py_ReprEnter` that returns zero." msgstr "" -#: c-api/exceptions.rst:852 +#: c-api/exceptions.rst:938 msgid "Standard Exceptions" msgstr "" -#: c-api/exceptions.rst:854 +#: c-api/exceptions.rst:940 msgid "" "All standard Python exceptions are available as global variables whose names " "are ``PyExc_`` followed by the Python exception name. These have the type :" @@ -899,447 +978,448 @@ msgid "" "all the variables:" msgstr "" -#: c-api/exceptions.rst:1048 c-api/exceptions.rst:1093 +#: c-api/exceptions.rst:1134 c-api/exceptions.rst:1179 msgid "C Name" msgstr "" -#: c-api/exceptions.rst:1093 +#: c-api/exceptions.rst:1179 msgid "Python Name" msgstr "" -#: c-api/exceptions.rst:1048 c-api/exceptions.rst:1093 +#: c-api/exceptions.rst:1134 c-api/exceptions.rst:1179 msgid "Notes" msgstr "" -#: c-api/exceptions.rst:917 +#: c-api/exceptions.rst:1003 msgid ":c:data:`PyExc_BaseException`" msgstr "" -#: c-api/exceptions.rst:917 +#: c-api/exceptions.rst:1003 msgid ":exc:`BaseException`" msgstr "" -#: c-api/exceptions.rst:919 c-api/exceptions.rst:967 c-api/exceptions.rst:979 +#: c-api/exceptions.rst:1005 c-api/exceptions.rst:1053 +#: c-api/exceptions.rst:1065 msgid "[1]_" msgstr "" -#: c-api/exceptions.rst:919 +#: c-api/exceptions.rst:1005 msgid ":c:data:`PyExc_Exception`" msgstr "" -#: c-api/exceptions.rst:919 +#: c-api/exceptions.rst:1005 msgid ":exc:`Exception`" msgstr "" -#: c-api/exceptions.rst:921 +#: c-api/exceptions.rst:1007 msgid ":c:data:`PyExc_ArithmeticError`" msgstr "" -#: c-api/exceptions.rst:921 +#: c-api/exceptions.rst:1007 msgid ":exc:`ArithmeticError`" msgstr "" -#: c-api/exceptions.rst:923 +#: c-api/exceptions.rst:1009 msgid ":c:data:`PyExc_AssertionError`" msgstr "" -#: c-api/exceptions.rst:923 +#: c-api/exceptions.rst:1009 msgid ":exc:`AssertionError`" msgstr "" -#: c-api/exceptions.rst:925 +#: c-api/exceptions.rst:1011 msgid ":c:data:`PyExc_AttributeError`" msgstr "" -#: c-api/exceptions.rst:925 +#: c-api/exceptions.rst:1011 msgid ":exc:`AttributeError`" msgstr "" -#: c-api/exceptions.rst:927 +#: c-api/exceptions.rst:1013 msgid ":c:data:`PyExc_BlockingIOError`" msgstr "" -#: c-api/exceptions.rst:927 +#: c-api/exceptions.rst:1013 msgid ":exc:`BlockingIOError`" msgstr "" -#: c-api/exceptions.rst:929 +#: c-api/exceptions.rst:1015 msgid ":c:data:`PyExc_BrokenPipeError`" msgstr "" -#: c-api/exceptions.rst:929 +#: c-api/exceptions.rst:1015 msgid ":exc:`BrokenPipeError`" msgstr "" -#: c-api/exceptions.rst:931 +#: c-api/exceptions.rst:1017 msgid ":c:data:`PyExc_BufferError`" msgstr "" -#: c-api/exceptions.rst:931 +#: c-api/exceptions.rst:1017 msgid ":exc:`BufferError`" msgstr "" -#: c-api/exceptions.rst:933 +#: c-api/exceptions.rst:1019 msgid ":c:data:`PyExc_ChildProcessError`" msgstr "" -#: c-api/exceptions.rst:933 +#: c-api/exceptions.rst:1019 msgid ":exc:`ChildProcessError`" msgstr "" -#: c-api/exceptions.rst:935 +#: c-api/exceptions.rst:1021 msgid ":c:data:`PyExc_ConnectionAbortedError`" msgstr "" -#: c-api/exceptions.rst:935 +#: c-api/exceptions.rst:1021 msgid ":exc:`ConnectionAbortedError`" msgstr "" -#: c-api/exceptions.rst:937 +#: c-api/exceptions.rst:1023 msgid ":c:data:`PyExc_ConnectionError`" msgstr "" -#: c-api/exceptions.rst:937 +#: c-api/exceptions.rst:1023 msgid ":exc:`ConnectionError`" msgstr "" -#: c-api/exceptions.rst:939 +#: c-api/exceptions.rst:1025 msgid ":c:data:`PyExc_ConnectionRefusedError`" msgstr "" -#: c-api/exceptions.rst:939 +#: c-api/exceptions.rst:1025 msgid ":exc:`ConnectionRefusedError`" msgstr "" -#: c-api/exceptions.rst:941 +#: c-api/exceptions.rst:1027 msgid ":c:data:`PyExc_ConnectionResetError`" msgstr "" -#: c-api/exceptions.rst:941 +#: c-api/exceptions.rst:1027 msgid ":exc:`ConnectionResetError`" msgstr "" -#: c-api/exceptions.rst:943 +#: c-api/exceptions.rst:1029 msgid ":c:data:`PyExc_EOFError`" msgstr "" -#: c-api/exceptions.rst:943 +#: c-api/exceptions.rst:1029 msgid ":exc:`EOFError`" msgstr "" -#: c-api/exceptions.rst:945 +#: c-api/exceptions.rst:1031 msgid ":c:data:`PyExc_FileExistsError`" msgstr "" -#: c-api/exceptions.rst:945 +#: c-api/exceptions.rst:1031 msgid ":exc:`FileExistsError`" msgstr "" -#: c-api/exceptions.rst:947 +#: c-api/exceptions.rst:1033 msgid ":c:data:`PyExc_FileNotFoundError`" msgstr "" -#: c-api/exceptions.rst:947 +#: c-api/exceptions.rst:1033 msgid ":exc:`FileNotFoundError`" msgstr "" -#: c-api/exceptions.rst:949 +#: c-api/exceptions.rst:1035 msgid ":c:data:`PyExc_FloatingPointError`" msgstr "" -#: c-api/exceptions.rst:949 +#: c-api/exceptions.rst:1035 msgid ":exc:`FloatingPointError`" msgstr "" -#: c-api/exceptions.rst:951 +#: c-api/exceptions.rst:1037 msgid ":c:data:`PyExc_GeneratorExit`" msgstr "" -#: c-api/exceptions.rst:951 +#: c-api/exceptions.rst:1037 msgid ":exc:`GeneratorExit`" msgstr "" -#: c-api/exceptions.rst:953 +#: c-api/exceptions.rst:1039 msgid ":c:data:`PyExc_ImportError`" msgstr "" -#: c-api/exceptions.rst:953 +#: c-api/exceptions.rst:1039 msgid ":exc:`ImportError`" msgstr "" -#: c-api/exceptions.rst:955 +#: c-api/exceptions.rst:1041 msgid ":c:data:`PyExc_IndentationError`" msgstr "" -#: c-api/exceptions.rst:955 +#: c-api/exceptions.rst:1041 msgid ":exc:`IndentationError`" msgstr "" -#: c-api/exceptions.rst:957 +#: c-api/exceptions.rst:1043 msgid ":c:data:`PyExc_IndexError`" msgstr "" -#: c-api/exceptions.rst:957 +#: c-api/exceptions.rst:1043 msgid ":exc:`IndexError`" msgstr "" -#: c-api/exceptions.rst:959 +#: c-api/exceptions.rst:1045 msgid ":c:data:`PyExc_InterruptedError`" msgstr "" -#: c-api/exceptions.rst:959 +#: c-api/exceptions.rst:1045 msgid ":exc:`InterruptedError`" msgstr "" -#: c-api/exceptions.rst:961 +#: c-api/exceptions.rst:1047 msgid ":c:data:`PyExc_IsADirectoryError`" msgstr "" -#: c-api/exceptions.rst:961 +#: c-api/exceptions.rst:1047 msgid ":exc:`IsADirectoryError`" msgstr "" -#: c-api/exceptions.rst:963 +#: c-api/exceptions.rst:1049 msgid ":c:data:`PyExc_KeyError`" msgstr "" -#: c-api/exceptions.rst:963 +#: c-api/exceptions.rst:1049 msgid ":exc:`KeyError`" msgstr "" -#: c-api/exceptions.rst:965 +#: c-api/exceptions.rst:1051 msgid ":c:data:`PyExc_KeyboardInterrupt`" msgstr "" -#: c-api/exceptions.rst:965 +#: c-api/exceptions.rst:1051 msgid ":exc:`KeyboardInterrupt`" msgstr "" -#: c-api/exceptions.rst:967 +#: c-api/exceptions.rst:1053 msgid ":c:data:`PyExc_LookupError`" msgstr "" -#: c-api/exceptions.rst:967 +#: c-api/exceptions.rst:1053 msgid ":exc:`LookupError`" msgstr "" -#: c-api/exceptions.rst:969 +#: c-api/exceptions.rst:1055 msgid ":c:data:`PyExc_MemoryError`" msgstr "" -#: c-api/exceptions.rst:969 +#: c-api/exceptions.rst:1055 msgid ":exc:`MemoryError`" msgstr "" -#: c-api/exceptions.rst:971 +#: c-api/exceptions.rst:1057 msgid ":c:data:`PyExc_ModuleNotFoundError`" msgstr "" -#: c-api/exceptions.rst:971 +#: c-api/exceptions.rst:1057 msgid ":exc:`ModuleNotFoundError`" msgstr "" -#: c-api/exceptions.rst:973 +#: c-api/exceptions.rst:1059 msgid ":c:data:`PyExc_NameError`" msgstr "" -#: c-api/exceptions.rst:973 +#: c-api/exceptions.rst:1059 msgid ":exc:`NameError`" msgstr "" -#: c-api/exceptions.rst:975 +#: c-api/exceptions.rst:1061 msgid ":c:data:`PyExc_NotADirectoryError`" msgstr "" -#: c-api/exceptions.rst:975 +#: c-api/exceptions.rst:1061 msgid ":exc:`NotADirectoryError`" msgstr "" -#: c-api/exceptions.rst:977 +#: c-api/exceptions.rst:1063 msgid ":c:data:`PyExc_NotImplementedError`" msgstr "" -#: c-api/exceptions.rst:977 +#: c-api/exceptions.rst:1063 msgid ":exc:`NotImplementedError`" msgstr "" -#: c-api/exceptions.rst:979 +#: c-api/exceptions.rst:1065 msgid ":c:data:`PyExc_OSError`" msgstr "" -#: c-api/exceptions.rst:979 +#: c-api/exceptions.rst:1065 msgid ":exc:`OSError`" msgstr "" -#: c-api/exceptions.rst:981 +#: c-api/exceptions.rst:1067 msgid ":c:data:`PyExc_OverflowError`" msgstr "" -#: c-api/exceptions.rst:981 +#: c-api/exceptions.rst:1067 msgid ":exc:`OverflowError`" msgstr "" -#: c-api/exceptions.rst:983 +#: c-api/exceptions.rst:1069 msgid ":c:data:`PyExc_PermissionError`" msgstr "" -#: c-api/exceptions.rst:983 +#: c-api/exceptions.rst:1069 msgid ":exc:`PermissionError`" msgstr "" -#: c-api/exceptions.rst:985 +#: c-api/exceptions.rst:1071 msgid ":c:data:`PyExc_ProcessLookupError`" msgstr "" -#: c-api/exceptions.rst:985 +#: c-api/exceptions.rst:1071 msgid ":exc:`ProcessLookupError`" msgstr "" -#: c-api/exceptions.rst:987 +#: c-api/exceptions.rst:1073 msgid ":c:data:`PyExc_RecursionError`" msgstr "" -#: c-api/exceptions.rst:987 +#: c-api/exceptions.rst:1073 msgid ":exc:`RecursionError`" msgstr "" -#: c-api/exceptions.rst:989 +#: c-api/exceptions.rst:1075 msgid ":c:data:`PyExc_ReferenceError`" msgstr "" -#: c-api/exceptions.rst:989 +#: c-api/exceptions.rst:1075 msgid ":exc:`ReferenceError`" msgstr "" -#: c-api/exceptions.rst:991 +#: c-api/exceptions.rst:1077 msgid ":c:data:`PyExc_RuntimeError`" msgstr "" -#: c-api/exceptions.rst:991 +#: c-api/exceptions.rst:1077 msgid ":exc:`RuntimeError`" msgstr "" -#: c-api/exceptions.rst:993 +#: c-api/exceptions.rst:1079 msgid ":c:data:`PyExc_StopAsyncIteration`" msgstr "" -#: c-api/exceptions.rst:993 +#: c-api/exceptions.rst:1079 msgid ":exc:`StopAsyncIteration`" msgstr "" -#: c-api/exceptions.rst:995 +#: c-api/exceptions.rst:1081 msgid ":c:data:`PyExc_StopIteration`" msgstr "" -#: c-api/exceptions.rst:995 +#: c-api/exceptions.rst:1081 msgid ":exc:`StopIteration`" msgstr "" -#: c-api/exceptions.rst:997 +#: c-api/exceptions.rst:1083 msgid ":c:data:`PyExc_SyntaxError`" msgstr "" -#: c-api/exceptions.rst:997 +#: c-api/exceptions.rst:1083 msgid ":exc:`SyntaxError`" msgstr "" -#: c-api/exceptions.rst:999 +#: c-api/exceptions.rst:1085 msgid ":c:data:`PyExc_SystemError`" msgstr "" -#: c-api/exceptions.rst:999 +#: c-api/exceptions.rst:1085 msgid ":exc:`SystemError`" msgstr "" -#: c-api/exceptions.rst:1001 +#: c-api/exceptions.rst:1087 msgid ":c:data:`PyExc_SystemExit`" msgstr "" -#: c-api/exceptions.rst:1001 +#: c-api/exceptions.rst:1087 msgid ":exc:`SystemExit`" msgstr "" -#: c-api/exceptions.rst:1003 +#: c-api/exceptions.rst:1089 msgid ":c:data:`PyExc_TabError`" msgstr "" -#: c-api/exceptions.rst:1003 +#: c-api/exceptions.rst:1089 msgid ":exc:`TabError`" msgstr "" -#: c-api/exceptions.rst:1005 +#: c-api/exceptions.rst:1091 msgid ":c:data:`PyExc_TimeoutError`" msgstr "" -#: c-api/exceptions.rst:1005 +#: c-api/exceptions.rst:1091 msgid ":exc:`TimeoutError`" msgstr "" -#: c-api/exceptions.rst:1007 +#: c-api/exceptions.rst:1093 msgid ":c:data:`PyExc_TypeError`" msgstr "" -#: c-api/exceptions.rst:1007 +#: c-api/exceptions.rst:1093 msgid ":exc:`TypeError`" msgstr "" -#: c-api/exceptions.rst:1009 +#: c-api/exceptions.rst:1095 msgid ":c:data:`PyExc_UnboundLocalError`" msgstr "" -#: c-api/exceptions.rst:1009 +#: c-api/exceptions.rst:1095 msgid ":exc:`UnboundLocalError`" msgstr "" -#: c-api/exceptions.rst:1011 +#: c-api/exceptions.rst:1097 msgid ":c:data:`PyExc_UnicodeDecodeError`" msgstr "" -#: c-api/exceptions.rst:1011 +#: c-api/exceptions.rst:1097 msgid ":exc:`UnicodeDecodeError`" msgstr "" -#: c-api/exceptions.rst:1013 +#: c-api/exceptions.rst:1099 msgid ":c:data:`PyExc_UnicodeEncodeError`" msgstr "" -#: c-api/exceptions.rst:1013 +#: c-api/exceptions.rst:1099 msgid ":exc:`UnicodeEncodeError`" msgstr "" -#: c-api/exceptions.rst:1015 +#: c-api/exceptions.rst:1101 msgid ":c:data:`PyExc_UnicodeError`" msgstr "" -#: c-api/exceptions.rst:1015 +#: c-api/exceptions.rst:1101 msgid ":exc:`UnicodeError`" msgstr "" -#: c-api/exceptions.rst:1017 +#: c-api/exceptions.rst:1103 msgid ":c:data:`PyExc_UnicodeTranslateError`" msgstr "" -#: c-api/exceptions.rst:1017 +#: c-api/exceptions.rst:1103 msgid ":exc:`UnicodeTranslateError`" msgstr "" -#: c-api/exceptions.rst:1019 +#: c-api/exceptions.rst:1105 msgid ":c:data:`PyExc_ValueError`" msgstr "" -#: c-api/exceptions.rst:1019 +#: c-api/exceptions.rst:1105 msgid ":exc:`ValueError`" msgstr "" -#: c-api/exceptions.rst:1021 +#: c-api/exceptions.rst:1107 msgid ":c:data:`PyExc_ZeroDivisionError`" msgstr "" -#: c-api/exceptions.rst:1021 +#: c-api/exceptions.rst:1107 msgid ":exc:`ZeroDivisionError`" msgstr "" -#: c-api/exceptions.rst:1024 +#: c-api/exceptions.rst:1110 msgid "" ":c:data:`PyExc_BlockingIOError`, :c:data:`PyExc_BrokenPipeError`, :c:data:" "`PyExc_ChildProcessError`, :c:data:`PyExc_ConnectionError`, :c:data:" @@ -1351,57 +1431,57 @@ msgid "" "`PyExc_TimeoutError` were introduced following :pep:`3151`." msgstr "" -#: c-api/exceptions.rst:1034 +#: c-api/exceptions.rst:1120 msgid ":c:data:`PyExc_StopAsyncIteration` and :c:data:`PyExc_RecursionError`." msgstr "" -#: c-api/exceptions.rst:1037 +#: c-api/exceptions.rst:1123 msgid ":c:data:`PyExc_ModuleNotFoundError`." msgstr "" -#: c-api/exceptions.rst:1040 +#: c-api/exceptions.rst:1126 msgid "These are compatibility aliases to :c:data:`PyExc_OSError`:" msgstr "" -#: c-api/exceptions.rst:1050 +#: c-api/exceptions.rst:1136 msgid ":c:data:`PyExc_EnvironmentError`" msgstr "" -#: c-api/exceptions.rst:1052 +#: c-api/exceptions.rst:1138 msgid ":c:data:`PyExc_IOError`" msgstr "" -#: c-api/exceptions.rst:1054 +#: c-api/exceptions.rst:1140 msgid ":c:data:`PyExc_WindowsError`" msgstr "" -#: c-api/exceptions.rst:1054 +#: c-api/exceptions.rst:1140 msgid "[2]_" msgstr "" -#: c-api/exceptions.rst:1057 +#: c-api/exceptions.rst:1143 msgid "These aliases used to be separate exception types." msgstr "" -#: c-api/exceptions.rst:1121 +#: c-api/exceptions.rst:1207 msgid "Notes:" msgstr "" -#: c-api/exceptions.rst:1063 +#: c-api/exceptions.rst:1149 msgid "This is a base class for other standard exceptions." msgstr "" -#: c-api/exceptions.rst:1066 +#: c-api/exceptions.rst:1152 msgid "" "Only defined on Windows; protect code that uses this by testing that the " "preprocessor macro ``MS_WINDOWS`` is defined." msgstr "" -#: c-api/exceptions.rst:1072 +#: c-api/exceptions.rst:1158 msgid "Standard Warning Categories" msgstr "" -#: c-api/exceptions.rst:1074 +#: c-api/exceptions.rst:1160 msgid "" "All standard Python warning categories are available as global variables " "whose names are ``PyExc_`` followed by the Python exception name. These have " @@ -1409,390 +1489,390 @@ msgid "" "here are all the variables:" msgstr "" -#: c-api/exceptions.rst:1095 +#: c-api/exceptions.rst:1181 msgid ":c:data:`PyExc_Warning`" msgstr "" -#: c-api/exceptions.rst:1095 +#: c-api/exceptions.rst:1181 msgid ":exc:`Warning`" msgstr "" -#: c-api/exceptions.rst:1095 +#: c-api/exceptions.rst:1181 msgid "[3]_" msgstr "" -#: c-api/exceptions.rst:1097 +#: c-api/exceptions.rst:1183 msgid ":c:data:`PyExc_BytesWarning`" msgstr "" -#: c-api/exceptions.rst:1097 +#: c-api/exceptions.rst:1183 msgid ":exc:`BytesWarning`" msgstr "" -#: c-api/exceptions.rst:1099 +#: c-api/exceptions.rst:1185 msgid ":c:data:`PyExc_DeprecationWarning`" msgstr "" -#: c-api/exceptions.rst:1099 +#: c-api/exceptions.rst:1185 msgid ":exc:`DeprecationWarning`" msgstr "" -#: c-api/exceptions.rst:1101 +#: c-api/exceptions.rst:1187 msgid ":c:data:`PyExc_FutureWarning`" msgstr "" -#: c-api/exceptions.rst:1101 +#: c-api/exceptions.rst:1187 msgid ":exc:`FutureWarning`" msgstr "" -#: c-api/exceptions.rst:1103 +#: c-api/exceptions.rst:1189 msgid ":c:data:`PyExc_ImportWarning`" msgstr "" -#: c-api/exceptions.rst:1103 +#: c-api/exceptions.rst:1189 msgid ":exc:`ImportWarning`" msgstr "" -#: c-api/exceptions.rst:1105 +#: c-api/exceptions.rst:1191 msgid ":c:data:`PyExc_PendingDeprecationWarning`" msgstr "" -#: c-api/exceptions.rst:1105 +#: c-api/exceptions.rst:1191 msgid ":exc:`PendingDeprecationWarning`" msgstr "" -#: c-api/exceptions.rst:1107 +#: c-api/exceptions.rst:1193 msgid ":c:data:`PyExc_ResourceWarning`" msgstr "" -#: c-api/exceptions.rst:1107 +#: c-api/exceptions.rst:1193 msgid ":exc:`ResourceWarning`" msgstr "" -#: c-api/exceptions.rst:1109 +#: c-api/exceptions.rst:1195 msgid ":c:data:`PyExc_RuntimeWarning`" msgstr "" -#: c-api/exceptions.rst:1109 +#: c-api/exceptions.rst:1195 msgid ":exc:`RuntimeWarning`" msgstr "" -#: c-api/exceptions.rst:1111 +#: c-api/exceptions.rst:1197 msgid ":c:data:`PyExc_SyntaxWarning`" msgstr "" -#: c-api/exceptions.rst:1111 +#: c-api/exceptions.rst:1197 msgid ":exc:`SyntaxWarning`" msgstr "" -#: c-api/exceptions.rst:1113 +#: c-api/exceptions.rst:1199 msgid ":c:data:`PyExc_UnicodeWarning`" msgstr "" -#: c-api/exceptions.rst:1113 +#: c-api/exceptions.rst:1199 msgid ":exc:`UnicodeWarning`" msgstr "" -#: c-api/exceptions.rst:1115 +#: c-api/exceptions.rst:1201 msgid ":c:data:`PyExc_UserWarning`" msgstr "" -#: c-api/exceptions.rst:1115 +#: c-api/exceptions.rst:1201 msgid ":exc:`UserWarning`" msgstr "" -#: c-api/exceptions.rst:1118 +#: c-api/exceptions.rst:1204 msgid ":c:data:`PyExc_ResourceWarning`." msgstr "" -#: c-api/exceptions.rst:1124 +#: c-api/exceptions.rst:1210 msgid "This is a base class for other standard warning categories." msgstr "" -#: c-api/exceptions.rst:151 +#: c-api/exceptions.rst:162 msgid "strerror()" msgstr "" -#: c-api/exceptions.rst:581 c-api/exceptions.rst:596 +#: c-api/exceptions.rst:645 c-api/exceptions.rst:660 msgid "module" msgstr "" -#: c-api/exceptions.rst:581 c-api/exceptions.rst:596 +#: c-api/exceptions.rst:645 c-api/exceptions.rst:660 msgid "signal" msgstr "" -#: c-api/exceptions.rst:581 +#: c-api/exceptions.rst:645 msgid "SIGINT" msgstr "" -#: c-api/exceptions.rst:581 c-api/exceptions.rst:596 +#: c-api/exceptions.rst:645 c-api/exceptions.rst:660 msgid "KeyboardInterrupt (built-in exception)" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_BaseException" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_Exception" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ArithmeticError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_AssertionError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_AttributeError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_BlockingIOError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_BrokenPipeError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_BufferError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ChildProcessError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ConnectionAbortedError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ConnectionError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ConnectionRefusedError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ConnectionResetError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_EOFError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_FileExistsError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_FileNotFoundError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_FloatingPointError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_GeneratorExit" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ImportError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_IndentationError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_IndexError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_InterruptedError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_IsADirectoryError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_KeyError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_KeyboardInterrupt" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_LookupError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_MemoryError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ModuleNotFoundError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_NameError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_NotADirectoryError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_NotImplementedError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_OSError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_OverflowError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_PermissionError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ProcessLookupError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_RecursionError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ReferenceError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_RuntimeError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_StopAsyncIteration" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_StopIteration" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_SyntaxError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_SystemError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_SystemExit" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_TabError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_TimeoutError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_TypeError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_UnboundLocalError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_UnicodeDecodeError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_UnicodeEncodeError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_UnicodeError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_UnicodeTranslateError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ValueError" msgstr "" -#: c-api/exceptions.rst:859 +#: c-api/exceptions.rst:945 msgid "PyExc_ZeroDivisionError" msgstr "" -#: c-api/exceptions.rst:1042 +#: c-api/exceptions.rst:1128 msgid "PyExc_EnvironmentError" msgstr "" -#: c-api/exceptions.rst:1042 +#: c-api/exceptions.rst:1128 msgid "PyExc_IOError" msgstr "" -#: c-api/exceptions.rst:1042 +#: c-api/exceptions.rst:1128 msgid "PyExc_WindowsError" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_Warning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_BytesWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_DeprecationWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_FutureWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_ImportWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_PendingDeprecationWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_ResourceWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_RuntimeWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_SyntaxWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_UnicodeWarning" msgstr "" -#: c-api/exceptions.rst:1079 +#: c-api/exceptions.rst:1165 msgid "PyExc_UserWarning" msgstr "" diff --git a/c-api/frame.po b/c-api/frame.po index 81bf72d0f..c802c481a 100644 --- a/c-api/frame.po +++ b/c-api/frame.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -86,7 +86,7 @@ msgstr "" msgid "Get the *frame* code." msgstr "" -#: c-api/frame.rst:104 +#: c-api/frame.rst:125 msgid "Return a :term:`strong reference`." msgstr "" @@ -118,9 +118,61 @@ msgid "Returns -1 if ``frame.f_lasti`` is ``None``." msgstr "" #: c-api/frame.rst:102 +msgid "Get the variable *name* of *frame*." +msgstr "" + +#: c-api/frame.rst:104 +msgid "Return a :term:`strong reference` to the variable value on success." +msgstr "" + +#: c-api/frame.rst:105 +msgid "" +"Raise :exc:`NameError` and return ``NULL`` if the variable does not exist." +msgstr "" + +#: c-api/frame.rst:106 +msgid "Raise an exception and return ``NULL`` on error." +msgstr "" + +#: c-api/frame.rst:108 +msgid "*name* type must be a :class:`str`." +msgstr "" + +#: c-api/frame.rst:115 +msgid "" +"Similar to :c:func:`PyFrame_GetVar`, but the variable name is a C string " +"encoded in UTF-8." +msgstr "" + +#: c-api/frame.rst:123 msgid "Get the *frame*'s ``f_locals`` attribute (:class:`dict`)." msgstr "" -#: c-api/frame.rst:111 +#: c-api/frame.rst:132 msgid "Return the line number that *frame* is currently executing." msgstr "" + +#: c-api/frame.rst:137 +msgid "Internal Frames" +msgstr "" + +#: c-api/frame.rst:139 +msgid "Unless using :pep:`523`, you will not need this." +msgstr "" + +#: c-api/frame.rst:143 +msgid "The interpreter's internal frame representation." +msgstr "" + +#: c-api/frame.rst:149 +msgid "Return a :term:`strong reference` to the code object for the frame." +msgstr "" + +#: c-api/frame.rst:156 +msgid "Return the byte offset into the last executed instruction." +msgstr "" + +#: c-api/frame.rst:163 +msgid "" +"Return the currently executing line number, or -1 if there is no line number." +msgstr "" diff --git a/c-api/function.po b/c-api/function.po index 359609772..f6e5987f3 100644 --- a/c-api/function.po +++ b/c-api/function.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -97,34 +97,122 @@ msgid "" "must be ``Py_None`` or a tuple." msgstr "" -#: c-api/function.rst:97 c-api/function.rst:111 +#: c-api/function.rst:106 c-api/function.rst:120 msgid "Raises :exc:`SystemError` and returns ``-1`` on failure." msgstr "" #: c-api/function.rst:88 +msgid "Set the vectorcall field of a given function object *func*." +msgstr "" + +#: c-api/function.rst:90 +msgid "" +"Warning: extensions using this API must preserve the behavior of the " +"unaltered (default) vectorcall function!" +msgstr "" + +#: c-api/function.rst:97 msgid "" "Return the closure associated with the function object *op*. This can be " "``NULL`` or a tuple of cell objects." msgstr "" -#: c-api/function.rst:94 +#: c-api/function.rst:103 msgid "" "Set the closure associated with the function object *op*. *closure* must be " "``Py_None`` or a tuple of cell objects." msgstr "" -#: c-api/function.rst:102 +#: c-api/function.rst:111 msgid "" "Return the annotations of the function object *op*. This can be a mutable " "dictionary or ``NULL``." msgstr "" -#: c-api/function.rst:108 +#: c-api/function.rst:117 msgid "" "Set the annotations for the function object *op*. *annotations* must be a " "dictionary or ``Py_None``." msgstr "" +#: c-api/function.rst:125 +msgid "" +"Register *callback* as a function watcher for the current interpreter. " +"Return an ID which may be passed to :c:func:`PyFunction_ClearWatcher`. In " +"case of error (e.g. no more watcher IDs available), return ``-1`` and set an " +"exception." +msgstr "" + +#: c-api/function.rst:135 +msgid "" +"Clear watcher identified by *watcher_id* previously returned from :c:func:" +"`PyFunction_AddWatcher` for the current interpreter. Return ``0`` on " +"success, or ``-1`` and set an exception on error (e.g. if the given " +"*watcher_id* was never registered.)" +msgstr "" + +#: c-api/function.rst:145 +msgid "" +"Enumeration of possible function watcher events: - " +"``PyFunction_EVENT_CREATE`` - ``PyFunction_EVENT_DESTROY`` - " +"``PyFunction_EVENT_MODIFY_CODE`` - ``PyFunction_EVENT_MODIFY_DEFAULTS`` - " +"``PyFunction_EVENT_MODIFY_KWDEFAULTS``" +msgstr "" + +#: c-api/function.rst:157 +msgid "Type of a function watcher callback function." +msgstr "" + +#: c-api/function.rst:159 +msgid "" +"If *event* is ``PyFunction_EVENT_CREATE`` or ``PyFunction_EVENT_DESTROY`` " +"then *new_value* will be ``NULL``. Otherwise, *new_value* will hold a :term:" +"`borrowed reference` to the new value that is about to be stored in *func* " +"for the attribute that is being modified." +msgstr "" + +#: c-api/function.rst:164 +msgid "" +"The callback may inspect but must not modify *func*; doing so could have " +"unpredictable effects, including infinite recursion." +msgstr "" + +#: c-api/function.rst:167 +msgid "" +"If *event* is ``PyFunction_EVENT_CREATE``, then the callback is invoked " +"after `func` has been fully initialized. Otherwise, the callback is invoked " +"before the modification to *func* takes place, so the prior state of *func* " +"can be inspected. The runtime is permitted to optimize away the creation of " +"function objects when possible. In such cases no event will be emitted. " +"Although this creates the possibility of an observable difference of runtime " +"behavior depending on optimization decisions, it does not change the " +"semantics of the Python code being executed." +msgstr "" + +#: c-api/function.rst:176 +msgid "" +"If *event* is ``PyFunction_EVENT_DESTROY``, Taking a reference in the " +"callback to the about-to-be-destroyed function will resurrect it, preventing " +"it from being freed at this time. When the resurrected object is destroyed " +"later, any watcher callbacks active at that time will be called again." +msgstr "" + +#: c-api/function.rst:181 +msgid "" +"If the callback sets an exception, it must return ``-1``; this exception " +"will be printed as an unraisable exception using :c:func:" +"`PyErr_WriteUnraisable`. Otherwise it should return ``0``." +msgstr "" + +#: c-api/function.rst:185 +msgid "" +"There may already be a pending exception set on entry to the callback. In " +"this case, the callback should return ``0`` with the same exception still " +"set. This means the callback may not call any other API that can set an " +"exception unless it saves and clears the exception state first, and restores " +"it before returning." +msgstr "" + #: c-api/function.rst:8 msgid "object" msgstr "" diff --git a/c-api/gcsupport.po b/c-api/gcsupport.po index bc20fae2a..4be3169ab 100644 --- a/c-api/gcsupport.po +++ b/c-api/gcsupport.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -107,20 +107,42 @@ msgid "" "macro:`Py_TPFLAGS_HAVE_GC` flag set." msgstr "" -#: c-api/gcsupport.rst:63 +#: c-api/gcsupport.rst:62 msgid "" "Analogous to :c:macro:`PyObject_NewVar` but for container objects with the :" "c:macro:`Py_TPFLAGS_HAVE_GC` flag set." msgstr "" -#: c-api/gcsupport.rst:69 +#: c-api/gcsupport.rst:67 +msgid "" +"Analogous to :c:macro:`PyObject_GC_New` but allocates *extra_size* bytes at " +"the end of the object (at offset :c:member:`~PyTypeObject.tp_basicsize`). " +"The allocated memory is initialized to zeros, except for the :c:type:`Python " +"object header `." +msgstr "" + +#: c-api/gcsupport.rst:73 +msgid "" +"The extra data will be deallocated with the object, but otherwise it is not " +"managed by Python." +msgstr "" + +#: c-api/gcsupport.rst:77 +msgid "" +"The function is marked as unstable because the final mechanism for reserving " +"extra data after an instance is not yet decided. For allocating a variable " +"number of fields, prefer using :c:type:`PyVarObject` and :c:member:" +"`~PyTypeObject.tp_itemsize` instead." +msgstr "" + +#: c-api/gcsupport.rst:88 msgid "" "Resize an object allocated by :c:macro:`PyObject_NewVar`. Returns the " "resized object or ``NULL`` on failure. *op* must not be tracked by the " "collector yet." msgstr "" -#: c-api/gcsupport.rst:75 +#: c-api/gcsupport.rst:94 msgid "" "Adds the object *op* to the set of container objects tracked by the " "collector. The collector can run at unexpected times so objects must be " @@ -129,45 +151,45 @@ msgid "" "usually near the end of the constructor." msgstr "" -#: c-api/gcsupport.rst:84 +#: c-api/gcsupport.rst:103 msgid "" "Returns non-zero if the object implements the garbage collector protocol, " "otherwise returns 0." msgstr "" -#: c-api/gcsupport.rst:87 +#: c-api/gcsupport.rst:106 msgid "" "The object cannot be tracked by the garbage collector if this function " "returns 0." msgstr "" -#: c-api/gcsupport.rst:92 +#: c-api/gcsupport.rst:111 msgid "" "Returns 1 if the object type of *op* implements the GC protocol and *op* is " "being currently tracked by the garbage collector and 0 otherwise." msgstr "" -#: c-api/gcsupport.rst:95 +#: c-api/gcsupport.rst:114 msgid "This is analogous to the Python function :func:`gc.is_tracked`." msgstr "" -#: c-api/gcsupport.rst:102 +#: c-api/gcsupport.rst:121 msgid "" "Returns 1 if the object type of *op* implements the GC protocol and *op* has " "been already finalized by the garbage collector and 0 otherwise." msgstr "" -#: c-api/gcsupport.rst:105 +#: c-api/gcsupport.rst:124 msgid "This is analogous to the Python function :func:`gc.is_finalized`." msgstr "" -#: c-api/gcsupport.rst:112 +#: c-api/gcsupport.rst:131 msgid "" "Releases memory allocated to an object using :c:macro:`PyObject_GC_New` or :" "c:macro:`PyObject_GC_NewVar`." msgstr "" -#: c-api/gcsupport.rst:118 +#: c-api/gcsupport.rst:137 msgid "" "Remove the object *op* from the set of container objects tracked by the " "collector. Note that :c:func:`PyObject_GC_Track` can be called again on " @@ -177,19 +199,19 @@ msgid "" "handler become invalid." msgstr "" -#: c-api/gcsupport.rst:127 +#: c-api/gcsupport.rst:146 msgid "" "The :c:func:`!_PyObject_GC_TRACK` and :c:func:`!_PyObject_GC_UNTRACK` macros " "have been removed from the public C API." msgstr "" -#: c-api/gcsupport.rst:130 +#: c-api/gcsupport.rst:149 msgid "" "The :c:member:`~PyTypeObject.tp_traverse` handler accepts a function " "parameter of this type:" msgstr "" -#: c-api/gcsupport.rst:135 +#: c-api/gcsupport.rst:154 msgid "" "Type of the visitor function passed to the :c:member:`~PyTypeObject." "tp_traverse` handler. The function should be called with an object to " @@ -199,13 +221,13 @@ msgid "" "users will need to write their own visitor functions." msgstr "" -#: c-api/gcsupport.rst:142 +#: c-api/gcsupport.rst:161 msgid "" "The :c:member:`~PyTypeObject.tp_traverse` handler must have the following " "type:" msgstr "" -#: c-api/gcsupport.rst:147 +#: c-api/gcsupport.rst:166 msgid "" "Traversal function for a container object. Implementations must call the " "*visit* function for each object directly contained by *self*, with the " @@ -215,7 +237,7 @@ msgid "" "returned immediately." msgstr "" -#: c-api/gcsupport.rst:154 +#: c-api/gcsupport.rst:173 msgid "" "To simplify writing :c:member:`~PyTypeObject.tp_traverse` handlers, a :c:" "func:`Py_VISIT` macro is provided. In order to use this macro, the :c:" @@ -223,20 +245,20 @@ msgid "" "exactly *visit* and *arg*:" msgstr "" -#: c-api/gcsupport.rst:161 +#: c-api/gcsupport.rst:180 msgid "" "If *o* is not ``NULL``, call the *visit* callback, with arguments *o* and " "*arg*. If *visit* returns a non-zero value, then return it. Using this " "macro, :c:member:`~PyTypeObject.tp_traverse` handlers look like::" msgstr "" -#: c-api/gcsupport.rst:174 +#: c-api/gcsupport.rst:193 msgid "" "The :c:member:`~PyTypeObject.tp_clear` handler must be of the :c:type:" "`inquiry` type, or ``NULL`` if the object is immutable." msgstr "" -#: c-api/gcsupport.rst:180 +#: c-api/gcsupport.rst:199 msgid "" "Drop references that may have created reference cycles. Immutable objects " "do not have to define this method since they can never directly create " @@ -246,23 +268,23 @@ msgid "" "in a reference cycle." msgstr "" -#: c-api/gcsupport.rst:189 +#: c-api/gcsupport.rst:208 msgid "Controlling the Garbage Collector State" msgstr "" -#: c-api/gcsupport.rst:191 +#: c-api/gcsupport.rst:210 msgid "" "The C-API provides the following functions for controlling garbage " "collection runs." msgstr "" -#: c-api/gcsupport.rst:196 +#: c-api/gcsupport.rst:215 msgid "" "Perform a full garbage collection, if the garbage collector is enabled. " "(Note that :func:`gc.collect` runs it unconditionally.)" msgstr "" -#: c-api/gcsupport.rst:199 +#: c-api/gcsupport.rst:218 msgid "" "Returns the number of collected + unreachable objects which cannot be " "collected. If the garbage collector is disabled or already collecting, " @@ -270,20 +292,58 @@ msgid "" "data:`sys.unraisablehook`. This function does not raise exceptions." msgstr "" -#: c-api/gcsupport.rst:209 +#: c-api/gcsupport.rst:228 msgid "" "Enable the garbage collector: similar to :func:`gc.enable`. Returns the " "previous state, 0 for disabled and 1 for enabled." msgstr "" -#: c-api/gcsupport.rst:217 +#: c-api/gcsupport.rst:236 msgid "" "Disable the garbage collector: similar to :func:`gc.disable`. Returns the " "previous state, 0 for disabled and 1 for enabled." msgstr "" -#: c-api/gcsupport.rst:225 +#: c-api/gcsupport.rst:244 msgid "" "Query the state of the garbage collector: similar to :func:`gc.isenabled`. " "Returns the current state, 0 for disabled and 1 for enabled." msgstr "" + +#: c-api/gcsupport.rst:251 +msgid "Querying Garbage Collector State" +msgstr "" + +#: c-api/gcsupport.rst:253 +msgid "" +"The C-API provides the following interface for querying information about " +"the garbage collector." +msgstr "" + +#: c-api/gcsupport.rst:258 +msgid "" +"Run supplied *callback* on all live GC-capable objects. *arg* is passed " +"through to all invocations of *callback*." +msgstr "" + +#: c-api/gcsupport.rst:262 +msgid "" +"If new objects are (de)allocated by the callback it is undefined if they " +"will be visited." +msgstr "" + +#: c-api/gcsupport.rst:265 +msgid "" +"Garbage collection is disabled during operation. Explicitly running a " +"collection in the callback may lead to undefined behaviour e.g. visiting the " +"same objects multiple times or not at all." +msgstr "" + +#: c-api/gcsupport.rst:273 +msgid "" +"Type of the visitor function to be passed to :c:func:" +"`PyUnstable_GC_VisitObjects`. *arg* is the same as the *arg* passed to " +"``PyUnstable_GC_VisitObjects``. Return ``0`` to continue iteration, return " +"``1`` to stop iteration. Other return values are reserved for now so " +"behavior on returning anything else is undefined." +msgstr "" diff --git a/c-api/import.po b/c-api/import.po index c066be800..df4580980 100644 --- a/c-api/import.po +++ b/c-api/import.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -172,24 +172,36 @@ msgid "" "`PyImport_ExecCodeModuleWithPathnames`." msgstr "" -#: c-api/import.rst:156 +#: c-api/import.rst:153 +msgid "" +"The setting of :attr:`__cached__` and :attr:`__loader__` is deprecated. See :" +"class:`~importlib.machinery.ModuleSpec` for alternatives." +msgstr "" + +#: c-api/import.rst:161 msgid "" "Like :c:func:`PyImport_ExecCodeModule`, but the :attr:`__file__` attribute " "of the module object is set to *pathname* if it is non-``NULL``." msgstr "" -#: c-api/import.rst:159 +#: c-api/import.rst:164 msgid "See also :c:func:`PyImport_ExecCodeModuleWithPathnames`." msgstr "" -#: c-api/import.rst:164 +#: c-api/import.rst:169 msgid "" "Like :c:func:`PyImport_ExecCodeModuleEx`, but the :attr:`__cached__` " "attribute of the module object is set to *cpathname* if it is non-``NULL``. " "Of the three functions, this is the preferred one to use." msgstr "" -#: c-api/import.rst:173 +#: c-api/import.rst:175 +msgid "" +"Setting :attr:`__cached__` is deprecated. See :class:`~importlib.machinery." +"ModuleSpec` for alternatives." +msgstr "" + +#: c-api/import.rst:182 msgid "" "Like :c:func:`PyImport_ExecCodeModuleObject`, but *name*, *pathname* and " "*cpathname* are UTF-8 encoded strings. Attempts are also made to figure out " @@ -197,44 +209,48 @@ msgid "" "set to ``NULL``." msgstr "" -#: c-api/import.rst:179 +#: c-api/import.rst:188 msgid "" -"Uses :func:`imp.source_from_cache()` in calculating the source path if only " +"Uses :func:`!imp.source_from_cache()` in calculating the source path if only " "the bytecode path is provided." msgstr "" -#: c-api/import.rst:186 +#: c-api/import.rst:191 +msgid "No longer uses the removed :mod:`!imp` module." +msgstr "" + +#: c-api/import.rst:197 msgid "" "Return the magic number for Python bytecode files (a.k.a. :file:`.pyc` " "file). The magic number should be present in the first four bytes of the " "bytecode file, in little-endian byte order. Returns ``-1`` on error." msgstr "" -#: c-api/import.rst:190 +#: c-api/import.rst:201 msgid "Return value of ``-1`` upon failure." msgstr "" -#: c-api/import.rst:196 +#: c-api/import.rst:207 msgid "" "Return the magic tag string for :pep:`3147` format Python bytecode file " "names. Keep in mind that the value at ``sys.implementation.cache_tag`` is " "authoritative and should be used instead of this function." msgstr "" -#: c-api/import.rst:204 +#: c-api/import.rst:215 msgid "" "Return the dictionary used for the module administration (a.k.a. ``sys." "modules``). Note that this is a per-interpreter variable." msgstr "" -#: c-api/import.rst:209 +#: c-api/import.rst:220 msgid "" "Return the already imported module with the given name. If the module has " "not been imported yet then returns ``NULL`` but does not set an error. " "Returns ``NULL`` and sets an error if the lookup failed." msgstr "" -#: c-api/import.rst:217 +#: c-api/import.rst:228 msgid "" "Return a finder object for a :data:`sys.path`/:attr:`!pkg.__path__` item " "*path*, possibly by fetching it from the :data:`sys.path_importer_cache` " @@ -245,7 +261,7 @@ msgid "" "path_importer_cache`. Return a new reference to the finder object." msgstr "" -#: c-api/import.rst:228 +#: c-api/import.rst:239 msgid "" "Load a frozen module named *name*. Return ``1`` for success, ``0`` if the " "module is not found, and ``-1`` with an exception set if the initialization " @@ -254,17 +270,17 @@ msgid "" "the module if it was already imported.)" msgstr "" -#: c-api/import.rst:236 +#: c-api/import.rst:247 msgid "The ``__file__`` attribute is no longer set on the module." msgstr "" -#: c-api/import.rst:242 +#: c-api/import.rst:253 msgid "" "Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is a " "UTF-8 encoded string instead of a Unicode object." msgstr "" -#: c-api/import.rst:250 +#: c-api/import.rst:261 msgid "" "This is the structure type definition for frozen module descriptors, as " "generated by the :program:`freeze` utility (see :file:`Tools/freeze/` in the " @@ -272,13 +288,13 @@ msgid "" "h`, is::" msgstr "" -#: c-api/import.rst:262 +#: c-api/import.rst:273 msgid "" "The new ``is_package`` field indicates whether the module is a package or " "not. This replaces setting the ``size`` field to a negative value." msgstr "" -#: c-api/import.rst:268 +#: c-api/import.rst:279 msgid "" "This pointer is initialized to point to an array of :c:struct:`_frozen` " "records, terminated by one whose members are all ``NULL`` or zero. When a " @@ -287,7 +303,7 @@ msgid "" "frozen modules." msgstr "" -#: c-api/import.rst:276 +#: c-api/import.rst:287 msgid "" "Add a single module to the existing table of built-in modules. This is a " "convenience wrapper around :c:func:`PyImport_ExtendInittab`, returning " @@ -297,7 +313,7 @@ msgid "" "before :c:func:`Py_Initialize`." msgstr "" -#: c-api/import.rst:286 +#: c-api/import.rst:297 msgid "" "Structure describing a single entry in the list of built-in modules. " "Programs which embed Python may use an array of these structures in " @@ -305,11 +321,11 @@ msgid "" "built-in modules. The structure consists of two members:" msgstr "" -#: c-api/import.rst:294 +#: c-api/import.rst:305 msgid "The module name, as an ASCII encoded string." msgstr "" -#: c-api/import.rst:303 +#: c-api/import.rst:314 msgid "" "Add a collection of modules to the table of built-in modules. The *newtab* " "array must end with a sentinel entry which contains ``NULL`` for the :c:" @@ -320,7 +336,7 @@ msgid "" "before :c:func:`Py_Initialize`." msgstr "" -#: c-api/import.rst:310 +#: c-api/import.rst:321 msgid "" "If Python is initialized multiple times, :c:func:`PyImport_AppendInittab` " "or :c:func:`PyImport_ExtendInittab` must be called before each Python " @@ -355,6 +371,6 @@ msgstr "" msgid "compile" msgstr "" -#: c-api/import.rst:248 +#: c-api/import.rst:259 msgid "freeze utility" msgstr "" diff --git a/c-api/init.po b/c-api/init.po index e96a76fdc..5f893f38b 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -191,136 +191,220 @@ msgstr "" #: c-api/init.rst:86 msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"bytes_warning` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:90 +msgid "" "Issue a warning when comparing :class:`bytes` or :class:`bytearray` with :" "class:`str` or :class:`bytes` with :class:`int`. Issue an error if greater " "or equal to ``2``." msgstr "" -#: c-api/init.rst:90 +#: c-api/init.rst:94 msgid "Set by the :option:`-b` option." msgstr "" -#: c-api/init.rst:94 +#: c-api/init.rst:100 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"parser_debug` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:104 msgid "" "Turn on parser debugging output (for expert only, depending on compilation " "options)." msgstr "" -#: c-api/init.rst:97 +#: c-api/init.rst:107 msgid "" "Set by the :option:`-d` option and the :envvar:`PYTHONDEBUG` environment " "variable." msgstr "" -#: c-api/init.rst:102 +#: c-api/init.rst:114 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"write_bytecode` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:118 msgid "" "If set to non-zero, Python won't try to write ``.pyc`` files on the import " "of source modules." msgstr "" -#: c-api/init.rst:105 +#: c-api/init.rst:121 msgid "" "Set by the :option:`-B` option and the :envvar:`PYTHONDONTWRITEBYTECODE` " "environment variable." msgstr "" -#: c-api/init.rst:110 +#: c-api/init.rst:128 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"pathconfig_warnings` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:132 msgid "" "Suppress error messages when calculating the module search path in :c:func:" "`Py_GetPath`." msgstr "" -#: c-api/init.rst:113 +#: c-api/init.rst:135 msgid "Private flag used by ``_freeze_module`` and ``frozenmain`` programs." msgstr "" -#: c-api/init.rst:117 +#: c-api/init.rst:141 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"hash_seed` and :c:member:`PyConfig.use_hash_seed` should be used instead, " +"see :ref:`Python Initialization Configuration `." +msgstr "" + +#: c-api/init.rst:146 msgid "" "Set to ``1`` if the :envvar:`PYTHONHASHSEED` environment variable is set to " "a non-empty string." msgstr "" -#: c-api/init.rst:120 +#: c-api/init.rst:149 msgid "" "If the flag is non-zero, read the :envvar:`PYTHONHASHSEED` environment " "variable to initialize the secret hash seed." msgstr "" -#: c-api/init.rst:125 +#: c-api/init.rst:156 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"use_environment` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:160 msgid "" "Ignore all :envvar:`!PYTHON*` environment variables, e.g. :envvar:" "`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set." msgstr "" -#: c-api/init.rst:128 +#: c-api/init.rst:163 msgid "Set by the :option:`-E` and :option:`-I` options." msgstr "" -#: c-api/init.rst:132 +#: c-api/init.rst:169 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"inspect` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:173 msgid "" "When a script is passed as first argument or the :option:`-c` option is " "used, enter interactive mode after executing the script or the command, even " "when :data:`sys.stdin` does not appear to be a terminal." msgstr "" -#: c-api/init.rst:136 +#: c-api/init.rst:177 msgid "" "Set by the :option:`-i` option and the :envvar:`PYTHONINSPECT` environment " "variable." msgstr "" -#: c-api/init.rst:141 +#: c-api/init.rst:184 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"interactive` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:188 msgid "Set by the :option:`-i` option." msgstr "" -#: c-api/init.rst:145 +#: c-api/init.rst:194 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"isolated` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:198 msgid "" "Run Python in isolated mode. In isolated mode :data:`sys.path` contains " "neither the script's directory nor the user's site-packages directory." msgstr "" -#: c-api/init.rst:148 +#: c-api/init.rst:201 msgid "Set by the :option:`-I` option." msgstr "" -#: c-api/init.rst:154 +#: c-api/init.rst:209 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyPreConfig." +"legacy_windows_fs_encoding` should be used instead, see :ref:`Python " +"Initialization Configuration `." +msgstr "" + +#: c-api/init.rst:213 msgid "" "If the flag is non-zero, use the ``mbcs`` encoding with ``replace`` error " "handler, instead of the UTF-8 encoding with ``surrogatepass`` error handler, " "for the :term:`filesystem encoding and error handler`." msgstr "" -#: c-api/init.rst:158 +#: c-api/init.rst:217 msgid "" "Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` environment " "variable is set to a non-empty string." msgstr "" -#: c-api/init.rst:161 +#: c-api/init.rst:220 msgid "See :pep:`529` for more details." msgstr "" -#: c-api/init.rst:175 +#: c-api/init.rst:240 msgid ":ref:`Availability `: Windows." msgstr "" -#: c-api/init.rst:167 +#: c-api/init.rst:228 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"legacy_windows_stdio` should be used instead, see :ref:`Python " +"Initialization Configuration `." +msgstr "" + +#: c-api/init.rst:232 msgid "" "If the flag is non-zero, use :class:`io.FileIO` instead of :class:`!io." "_WindowsConsoleIO` for :mod:`sys` standard streams." msgstr "" -#: c-api/init.rst:170 +#: c-api/init.rst:235 msgid "" "Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSSTDIO` environment variable " "is set to a non-empty string." msgstr "" -#: c-api/init.rst:173 +#: c-api/init.rst:238 msgid "See :pep:`528` for more details." msgstr "" -#: c-api/init.rst:179 +#: c-api/init.rst:246 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"site_import` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:250 msgid "" "Disable the import of the module :mod:`site` and the site-dependent " "manipulations of :data:`sys.path` that it entails. Also disable these " @@ -328,48 +412,83 @@ msgid "" "main` if you want them to be triggered)." msgstr "" -#: c-api/init.rst:184 +#: c-api/init.rst:255 msgid "Set by the :option:`-S` option." msgstr "" -#: c-api/init.rst:188 +#: c-api/init.rst:261 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"user_site_directory` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:265 msgid "" "Don't add the :data:`user site-packages directory ` to :data:" "`sys.path`." msgstr "" -#: c-api/init.rst:191 +#: c-api/init.rst:268 msgid "" "Set by the :option:`-s` and :option:`-I` options, and the :envvar:" "`PYTHONNOUSERSITE` environment variable." msgstr "" -#: c-api/init.rst:196 +#: c-api/init.rst:275 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"optimization_level` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:279 msgid "" "Set by the :option:`-O` option and the :envvar:`PYTHONOPTIMIZE` environment " "variable." msgstr "" -#: c-api/init.rst:201 +#: c-api/init.rst:286 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"quiet` should be used instead, see :ref:`Python Initialization Configuration " +"`." +msgstr "" + +#: c-api/init.rst:290 msgid "" "Don't display the copyright and version messages even in interactive mode." msgstr "" -#: c-api/init.rst:203 +#: c-api/init.rst:292 msgid "Set by the :option:`-q` option." msgstr "" -#: c-api/init.rst:209 +#: c-api/init.rst:300 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"buffered_stdio` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:304 msgid "Force the stdout and stderr streams to be unbuffered." msgstr "" -#: c-api/init.rst:211 +#: c-api/init.rst:306 msgid "" "Set by the :option:`-u` option and the :envvar:`PYTHONUNBUFFERED` " "environment variable." msgstr "" -#: c-api/init.rst:216 +#: c-api/init.rst:313 +msgid "" +"This API is kept for backward compatibility: setting :c:member:`PyConfig." +"verbose` should be used instead, see :ref:`Python Initialization " +"Configuration `." +msgstr "" + +#: c-api/init.rst:317 msgid "" "Print a message each time a module is initialized, showing the place " "(filename or built-in module) from which it is loaded. If greater or equal " @@ -377,24 +496,24 @@ msgid "" "for a module. Also provides information on module cleanup at exit." msgstr "" -#: c-api/init.rst:221 +#: c-api/init.rst:322 msgid "" "Set by the :option:`-v` option and the :envvar:`PYTHONVERBOSE` environment " "variable." msgstr "" -#: c-api/init.rst:226 +#: c-api/init.rst:329 msgid "Initializing and finalizing the interpreter" msgstr "" -#: c-api/init.rst:244 +#: c-api/init.rst:347 msgid "" "Initialize the Python interpreter. In an application embedding Python, " "this should be called before using any other Python/C API functions; see :" "ref:`Before Python Initialization ` for the few exceptions." msgstr "" -#: c-api/init.rst:248 +#: c-api/init.rst:351 msgid "" "This initializes the table of loaded modules (``sys.modules``), and creates " "the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. It " @@ -404,27 +523,33 @@ msgid "" "There is no return value; it is a fatal error if the initialization fails." msgstr "" -#: c-api/init.rst:257 +#: c-api/init.rst:373 +msgid "" +"Use the :c:func:`Py_InitializeFromConfig` function to customize the :ref:" +"`Python Initialization Configuration `." +msgstr "" + +#: c-api/init.rst:363 msgid "" "On Windows, changes the console mode from ``O_TEXT`` to ``O_BINARY``, which " "will also affect non-Python uses of the console using the C Runtime." msgstr "" -#: c-api/init.rst:263 +#: c-api/init.rst:369 msgid "" "This function works like :c:func:`Py_Initialize` if *initsigs* is ``1``. If " "*initsigs* is ``0``, it skips initialization registration of signal " "handlers, which might be useful when Python is embedded." msgstr "" -#: c-api/init.rst:270 +#: c-api/init.rst:379 msgid "" "Return true (nonzero) when the Python interpreter has been initialized, " "false (zero) if not. After :c:func:`Py_FinalizeEx` is called, this returns " "false until :c:func:`Py_Initialize` is called again." msgstr "" -#: c-api/init.rst:277 +#: c-api/init.rst:386 msgid "" "Undo all initializations made by :c:func:`Py_Initialize` and subsequent use " "of Python/C API functions, and destroy all sub-interpreters (see :c:func:" @@ -436,7 +561,7 @@ msgid "" "(flushing buffered data), ``-1`` is returned." msgstr "" -#: c-api/init.rst:286 +#: c-api/init.rst:395 msgid "" "This function is provided for a number of reasons. An embedding application " "might want to restart Python without having to restart the application " @@ -447,7 +572,7 @@ msgid "" "Python before exiting from the application." msgstr "" -#: c-api/init.rst:294 +#: c-api/init.rst:403 msgid "" "**Bugs and caveats:** The destruction of modules and objects in modules is " "done in random order; this may cause destructors (:meth:`~object.__del__` " @@ -462,74 +587,74 @@ msgid "" "more than once." msgstr "" -#: c-api/init.rst:305 +#: c-api/init.rst:414 msgid "" "Raises an :ref:`auditing event ` ``cpython." "_PySys_ClearAuditHooks`` with no arguments." msgstr "" -#: c-api/init.rst:311 +#: c-api/init.rst:420 msgid "" "This is a backwards-compatible version of :c:func:`Py_FinalizeEx` that " "disregards the return value." msgstr "" -#: c-api/init.rst:316 +#: c-api/init.rst:425 msgid "Process-wide parameters" msgstr "" -#: c-api/init.rst:326 +#: c-api/init.rst:435 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "stdio_encoding` and :c:member:`PyConfig.stdio_errors` should be used " "instead, see :ref:`Python Initialization Configuration `." msgstr "" -#: c-api/init.rst:331 +#: c-api/init.rst:440 msgid "" "This function should be called before :c:func:`Py_Initialize`, if it is " "called at all. It specifies which encoding and error handling to use with " "standard IO, with the same meanings as in :func:`str.encode`." msgstr "" -#: c-api/init.rst:335 +#: c-api/init.rst:444 msgid "" "It overrides :envvar:`PYTHONIOENCODING` values, and allows embedding code to " "control IO encoding when the environment variable does not work." msgstr "" -#: c-api/init.rst:338 +#: c-api/init.rst:447 msgid "" "*encoding* and/or *errors* may be ``NULL`` to use :envvar:`PYTHONIOENCODING` " "and/or default values (depending on other settings)." msgstr "" -#: c-api/init.rst:342 +#: c-api/init.rst:451 msgid "" "Note that :data:`sys.stderr` always uses the \"backslashreplace\" error " "handler, regardless of this (or any other) setting." msgstr "" -#: c-api/init.rst:345 +#: c-api/init.rst:454 msgid "" "If :c:func:`Py_FinalizeEx` is called, this function will need to be called " "again in order to affect subsequent calls to :c:func:`Py_Initialize`." msgstr "" -#: c-api/init.rst:348 +#: c-api/init.rst:457 msgid "" "Returns ``0`` if successful, a nonzero value on error (e.g. calling after " "the interpreter has already been initialized)." msgstr "" -#: c-api/init.rst:363 +#: c-api/init.rst:472 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "program_name` should be used instead, see :ref:`Python Initialization " "Configuration `." msgstr "" -#: c-api/init.rst:367 +#: c-api/init.rst:476 msgid "" "This function should be called before :c:func:`Py_Initialize` is called for " "the first time, if it is called at all. It tells the interpreter the value " @@ -543,30 +668,30 @@ msgid "" "this storage." msgstr "" -#: c-api/init.rst:529 c-api/init.rst:680 c-api/init.rst:706 +#: c-api/init.rst:487 msgid "" "Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a :c:expr:" -"`wchar_*` string." +"`wchar_t *` string." msgstr "" -#: c-api/init.rst:388 +#: c-api/init.rst:497 msgid "" "Return the program name set with :c:func:`Py_SetProgramName`, or the " "default. The returned string points into static storage; the caller should " "not modify its value." msgstr "" -#: c-api/init.rst:411 c-api/init.rst:471 c-api/init.rst:718 +#: c-api/init.rst:520 c-api/init.rst:580 c-api/init.rst:827 msgid "" "This function should not be called before :c:func:`Py_Initialize`, otherwise " "it returns ``NULL``." msgstr "" -#: c-api/init.rst:414 c-api/init.rst:474 c-api/init.rst:721 +#: c-api/init.rst:523 c-api/init.rst:583 c-api/init.rst:830 msgid "It now returns ``NULL`` if called before :c:func:`Py_Initialize`." msgstr "" -#: c-api/init.rst:401 +#: c-api/init.rst:510 msgid "" "Return the *prefix* for installed platform-independent files. This is " "derived through a number of complicated rules from the program name set " @@ -580,7 +705,7 @@ msgid "" "also the next function." msgstr "" -#: c-api/init.rst:420 +#: c-api/init.rst:529 msgid "" "Return the *exec-prefix* for installed platform-*dependent* files. This is " "derived through a number of complicated rules from the program name set " @@ -594,7 +719,7 @@ msgid "" "on Unix." msgstr "" -#: c-api/init.rst:430 +#: c-api/init.rst:539 msgid "" "Background: The exec-prefix differs from the prefix when platform dependent " "files (such as executables and shared libraries) are installed in a " @@ -603,7 +728,7 @@ msgid "" "independent may be installed in :file:`/usr/local`." msgstr "" -#: c-api/init.rst:436 +#: c-api/init.rst:545 msgid "" "Generally speaking, a platform is a combination of hardware and software " "families, e.g. Sparc machines running the Solaris 2.x operating system are " @@ -617,7 +742,7 @@ msgid "" "independent from the Python version by which they were compiled!)." msgstr "" -#: c-api/init.rst:447 +#: c-api/init.rst:556 msgid "" "System administrators will know how to configure the :program:`mount` or :" "program:`automount` programs to share :file:`/usr/local` between platforms " @@ -625,7 +750,7 @@ msgid "" "platform." msgstr "" -#: c-api/init.rst:465 +#: c-api/init.rst:574 msgid "" "Return the full program name of the Python executable; this is computed as " "a side-effect of deriving the default module search path from the program " @@ -634,7 +759,7 @@ msgid "" "available to Python code as ``sys.executable``." msgstr "" -#: c-api/init.rst:485 +#: c-api/init.rst:594 msgid "" "Return the default module search path; this is computed from the program " "name (set by :c:func:`Py_SetProgramName` above) and some environment " @@ -647,7 +772,7 @@ msgid "" "for loading modules." msgstr "" -#: c-api/init.rst:511 +#: c-api/init.rst:620 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "module_search_paths` and :c:member:`PyConfig.module_search_paths_set` should " @@ -655,7 +780,7 @@ msgid "" "config>`." msgstr "" -#: c-api/init.rst:516 +#: c-api/init.rst:625 msgid "" "Set the default module search path. If this function is called before :c:" "func:`Py_Initialize`, then :c:func:`Py_GetPath` won't attempt to compute a " @@ -666,7 +791,7 @@ msgid "" "on Windows." msgstr "" -#: c-api/init.rst:524 +#: c-api/init.rst:633 msgid "" "This also causes :data:`sys.executable` to be set to the program full path " "(see :c:func:`Py_GetProgramFullPath`) and for :data:`sys.prefix` and :data:" @@ -674,25 +799,31 @@ msgid "" "required after calling :c:func:`Py_Initialize`." msgstr "" -#: c-api/init.rst:532 +#: c-api/init.rst:753 c-api/init.rst:815 +msgid "" +"Use :c:func:`Py_DecodeLocale` to decode a bytes string to get a :c:expr:" +"`wchar_*` string." +msgstr "" + +#: c-api/init.rst:641 msgid "" "The path argument is copied internally, so the caller may free it after the " "call completes." msgstr "" -#: c-api/init.rst:535 +#: c-api/init.rst:644 msgid "" "The program full path is now used for :data:`sys.executable`, instead of the " "program name." msgstr "" -#: c-api/init.rst:544 +#: c-api/init.rst:653 msgid "" "Return the version of this Python interpreter. This is a string that looks " "something like ::" msgstr "" -#: c-api/init.rst:551 +#: c-api/init.rst:660 msgid "" "The first word (up to the first space character) is the current Python " "version; the first characters are the major and minor version separated by a " @@ -701,11 +832,11 @@ msgid "" "version`." msgstr "" -#: c-api/init.rst:556 +#: c-api/init.rst:665 msgid "See also the :c:var:`Py_Version` constant." msgstr "" -#: c-api/init.rst:563 +#: c-api/init.rst:672 msgid "" "Return the platform identifier for the current platform. On Unix, this is " "formed from the \"official\" name of the operating system, converted to " @@ -716,42 +847,42 @@ msgid "" "available to Python code as ``sys.platform``." msgstr "" -#: c-api/init.rst:574 +#: c-api/init.rst:683 msgid "" "Return the official copyright string for the current Python version, for " "example" msgstr "" -#: c-api/init.rst:576 +#: c-api/init.rst:685 msgid "``'Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam'``" msgstr "" -#: c-api/init.rst:580 +#: c-api/init.rst:689 msgid "" "The returned string points into static storage; the caller should not modify " "its value. The value is available to Python code as ``sys.copyright``." msgstr "" -#: c-api/init.rst:586 +#: c-api/init.rst:695 msgid "" "Return an indication of the compiler used to build the current Python " "version, in square brackets, for example::" msgstr "" -#: c-api/init.rst:607 +#: c-api/init.rst:716 msgid "" "The returned string points into static storage; the caller should not modify " "its value. The value is available to Python code as part of the variable " "``sys.version``." msgstr "" -#: c-api/init.rst:600 +#: c-api/init.rst:709 msgid "" "Return information about the sequence number and build date and time of the " "current Python interpreter instance, for example ::" msgstr "" -#: c-api/init.rst:619 +#: c-api/init.rst:728 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "argv`, :c:member:`PyConfig.parse_argv` and :c:member:`PyConfig.safe_path` " @@ -759,7 +890,7 @@ msgid "" "config>`." msgstr "" -#: c-api/init.rst:624 +#: c-api/init.rst:733 msgid "" "Set :data:`sys.argv` based on *argc* and *argv*. These parameters are " "similar to those passed to the program's :c:func:`main` function with the " @@ -770,34 +901,34 @@ msgid "" "fatal condition is signalled using :c:func:`Py_FatalError`." msgstr "" -#: c-api/init.rst:632 +#: c-api/init.rst:741 msgid "" "If *updatepath* is zero, this is all the function does. If *updatepath* is " "non-zero, the function also modifies :data:`sys.path` according to the " "following algorithm:" msgstr "" -#: c-api/init.rst:636 +#: c-api/init.rst:745 msgid "" "If the name of an existing script is passed in ``argv[0]``, the absolute " "path of the directory where the script is located is prepended to :data:`sys." "path`." msgstr "" -#: c-api/init.rst:639 +#: c-api/init.rst:748 msgid "" "Otherwise (that is, if *argc* is ``0`` or ``argv[0]`` doesn't point to an " "existing file name), an empty string is prepended to :data:`sys.path`, which " "is the same as prepending the current working directory (``\".\"``)." msgstr "" -#: c-api/init.rst:683 +#: c-api/init.rst:792 msgid "" "See also :c:member:`PyConfig.orig_argv` and :c:member:`PyConfig.argv` " "members of the :ref:`Python Initialization Configuration `." msgstr "" -#: c-api/init.rst:651 +#: c-api/init.rst:760 msgid "" "It is recommended that applications embedding the Python interpreter for " "purposes other than executing a single script pass ``0`` as *updatepath*, " @@ -805,46 +936,46 @@ msgid "" "`_." msgstr "" -#: c-api/init.rst:656 +#: c-api/init.rst:765 msgid "" "On versions before 3.1.3, you can achieve the same effect by manually " "popping the first :data:`sys.path` element after having called :c:func:" "`PySys_SetArgv`, for example using::" msgstr "" -#: c-api/init.rst:672 +#: c-api/init.rst:781 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "argv` and :c:member:`PyConfig.parse_argv` should be used instead, see :ref:" "`Python Initialization Configuration `." msgstr "" -#: c-api/init.rst:676 +#: c-api/init.rst:785 msgid "" "This function works like :c:func:`PySys_SetArgvEx` with *updatepath* set to " "``1`` unless the :program:`python` interpreter was started with the :option:" "`-I`." msgstr "" -#: c-api/init.rst:686 +#: c-api/init.rst:795 msgid "The *updatepath* value depends on :option:`-I`." msgstr "" -#: c-api/init.rst:693 +#: c-api/init.rst:802 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "home` should be used instead, see :ref:`Python Initialization Configuration " "`." msgstr "" -#: c-api/init.rst:697 +#: c-api/init.rst:806 msgid "" "Set the default \"home\" directory, that is, the location of the standard " "Python libraries. See :envvar:`PYTHONHOME` for the meaning of the argument " "string." msgstr "" -#: c-api/init.rst:701 +#: c-api/init.rst:810 msgid "" "The argument should point to a zero-terminated character string in static " "storage whose contents will not change for the duration of the program's " @@ -852,18 +983,18 @@ msgid "" "this storage." msgstr "" -#: c-api/init.rst:714 +#: c-api/init.rst:823 msgid "" "Return the default \"home\", that is, the value set by a previous call to :c:" "func:`Py_SetPythonHome`, or the value of the :envvar:`PYTHONHOME` " "environment variable if it is set." msgstr "" -#: c-api/init.rst:728 +#: c-api/init.rst:837 msgid "Thread State and the Global Interpreter Lock" msgstr "" -#: c-api/init.rst:735 +#: c-api/init.rst:844 msgid "" "The Python interpreter is not fully thread-safe. In order to support multi-" "threaded Python programs, there's a global lock, called the :term:`global " @@ -875,7 +1006,7 @@ msgid "" "once instead of twice." msgstr "" -#: c-api/init.rst:745 +#: c-api/init.rst:854 msgid "" "Therefore, the rule exists that only the thread that has acquired the :term:" "`GIL` may operate on Python objects or call Python/C API functions. In order " @@ -885,7 +1016,7 @@ msgid "" "a file, so that other Python threads can run in the meantime." msgstr "" -#: c-api/init.rst:756 +#: c-api/init.rst:865 msgid "" "The Python interpreter keeps some thread-specific bookkeeping information " "inside a data structure called :c:type:`PyThreadState`. There's also one " @@ -893,32 +1024,32 @@ msgid "" "retrieved using :c:func:`PyThreadState_Get`." msgstr "" -#: c-api/init.rst:762 +#: c-api/init.rst:871 msgid "Releasing the GIL from extension code" msgstr "" -#: c-api/init.rst:764 +#: c-api/init.rst:873 msgid "" "Most extension code manipulating the :term:`GIL` has the following simple " "structure::" msgstr "" -#: c-api/init.rst:773 +#: c-api/init.rst:882 msgid "This is so common that a pair of macros exists to simplify it::" msgstr "" -#: c-api/init.rst:783 +#: c-api/init.rst:892 msgid "" "The :c:macro:`Py_BEGIN_ALLOW_THREADS` macro opens a new block and declares a " "hidden local variable; the :c:macro:`Py_END_ALLOW_THREADS` macro closes the " "block." msgstr "" -#: c-api/init.rst:787 +#: c-api/init.rst:896 msgid "The block above expands to the following code::" msgstr "" -#: c-api/init.rst:799 +#: c-api/init.rst:908 msgid "" "Here is how these functions work: the global interpreter lock is used to " "protect the pointer to the current thread state. When releasing the lock " @@ -929,7 +1060,7 @@ msgid "" "state, the lock must be acquired before storing the thread state pointer." msgstr "" -#: c-api/init.rst:808 +#: c-api/init.rst:917 msgid "" "Calling system I/O functions is the most common use case for releasing the " "GIL, but it can also be useful before calling long-running computations " @@ -939,11 +1070,11 @@ msgid "" "compressing or hashing data." msgstr "" -#: c-api/init.rst:819 +#: c-api/init.rst:928 msgid "Non-Python created threads" msgstr "" -#: c-api/init.rst:821 +#: c-api/init.rst:930 msgid "" "When threads are created using the dedicated Python APIs (such as the :mod:" "`threading` module), a thread state is automatically associated to them and " @@ -953,7 +1084,7 @@ msgid "" "for them." msgstr "" -#: c-api/init.rst:828 +#: c-api/init.rst:937 msgid "" "If you need to call Python code from these threads (often this will be part " "of a callback API provided by the aforementioned third-party library), you " @@ -964,14 +1095,14 @@ msgid "" "finally free the thread state data structure." msgstr "" -#: c-api/init.rst:836 +#: c-api/init.rst:945 msgid "" "The :c:func:`PyGILState_Ensure` and :c:func:`PyGILState_Release` functions " "do all of the above automatically. The typical idiom for calling into " "Python from a C thread is::" msgstr "" -#: c-api/init.rst:850 +#: c-api/init.rst:959 msgid "" "Note that the ``PyGILState_*`` functions assume there is only one global " "interpreter (created automatically by :c:func:`Py_Initialize`). Python " @@ -980,11 +1111,11 @@ msgid "" "``PyGILState_*`` API is unsupported." msgstr "" -#: c-api/init.rst:860 +#: c-api/init.rst:969 msgid "Cautions about fork()" msgstr "" -#: c-api/init.rst:862 +#: c-api/init.rst:971 msgid "" "Another important thing to note about threads is their behaviour in the face " "of the C :c:func:`fork` call. On most systems with :c:func:`fork`, after a " @@ -993,7 +1124,7 @@ msgid "" "CPython's runtime." msgstr "" -#: c-api/init.rst:868 +#: c-api/init.rst:977 msgid "" "The fact that only the \"current\" thread remains means any locks held by " "other threads will never be released. Python solves this for :func:`os.fork` " @@ -1010,7 +1141,7 @@ msgid "" "locks, but is not always able to." msgstr "" -#: c-api/init.rst:883 +#: c-api/init.rst:992 msgid "" "The fact that all other threads go away also means that CPython's runtime " "state there must be cleaned up properly, which :func:`os.fork` does. This " @@ -1023,17 +1154,17 @@ msgid "" "called immediately after." msgstr "" -#: c-api/init.rst:896 +#: c-api/init.rst:1005 msgid "High-level API" msgstr "" -#: c-api/init.rst:898 +#: c-api/init.rst:1007 msgid "" "These are the most commonly used types and functions when writing C " "extension code, or when embedding the Python interpreter:" msgstr "" -#: c-api/init.rst:903 +#: c-api/init.rst:1012 msgid "" "This data structure represents the state shared by a number of cooperating " "threads. Threads belonging to the same interpreter share their module " @@ -1041,7 +1172,7 @@ msgid "" "in this structure." msgstr "" -#: c-api/init.rst:908 +#: c-api/init.rst:1017 msgid "" "Threads belonging to different interpreters initially share nothing, except " "process state like available memory, open file descriptors and such. The " @@ -1049,52 +1180,52 @@ msgid "" "which interpreter they belong." msgstr "" -#: c-api/init.rst:916 +#: c-api/init.rst:1025 msgid "" "This data structure represents the state of a single thread. The only " "public data member is:" msgstr "" -#: c-api/init.rst:921 +#: c-api/init.rst:1030 msgid "This thread's interpreter state." msgstr "" -#: c-api/init.rst:932 +#: c-api/init.rst:1041 msgid "Deprecated function which does nothing." msgstr "" -#: c-api/init.rst:934 +#: c-api/init.rst:1043 msgid "" "In Python 3.6 and older, this function created the GIL if it didn't exist." msgstr "" -#: c-api/init.rst:936 +#: c-api/init.rst:1045 msgid "The function now does nothing." msgstr "" -#: c-api/init.rst:939 +#: c-api/init.rst:1048 msgid "" "This function is now called by :c:func:`Py_Initialize()`, so you don't have " "to call it yourself anymore." msgstr "" -#: c-api/init.rst:943 +#: c-api/init.rst:1052 msgid "" "This function cannot be called before :c:func:`Py_Initialize()` anymore." msgstr "" -#: c-api/init.rst:953 +#: c-api/init.rst:1062 msgid "" "Returns a non-zero value if :c:func:`PyEval_InitThreads` has been called. " "This function can be called without holding the GIL, and therefore can be " "used to avoid calls to the locking API when running single-threaded." msgstr "" -#: c-api/init.rst:957 +#: c-api/init.rst:1066 msgid "The :term:`GIL` is now initialized by :c:func:`Py_Initialize()`." msgstr "" -#: c-api/init.rst:965 +#: c-api/init.rst:1074 msgid "" "Release the global interpreter lock (if it has been created) and reset the " "thread state to ``NULL``, returning the previous thread state (which is not " @@ -1102,7 +1233,7 @@ msgid "" "acquired it." msgstr "" -#: c-api/init.rst:973 +#: c-api/init.rst:1082 msgid "" "Acquire the global interpreter lock (if it has been created) and set the " "thread state to *tstate*, which must not be ``NULL``. If the lock has been " @@ -1110,7 +1241,7 @@ msgid "" "ensues." msgstr "" -#: c-api/init.rst:1025 c-api/init.rst:1307 +#: c-api/init.rst:1134 c-api/init.rst:1416 msgid "" "Calling this function from a thread when the runtime is finalizing will " "terminate the thread, even if the thread was not created by Python. You can " @@ -1119,27 +1250,27 @@ msgid "" "avoid unwanted termination." msgstr "" -#: c-api/init.rst:987 +#: c-api/init.rst:1096 msgid "" "Return the current thread state. The global interpreter lock must be held. " "When the current thread state is ``NULL``, this issues a fatal error (so " "that the caller needn't check for ``NULL``)." msgstr "" -#: c-api/init.rst:994 +#: c-api/init.rst:1103 msgid "" "Swap the current thread state with the thread state given by the argument " "*tstate*, which may be ``NULL``. The global interpreter lock must be held " "and is not released." msgstr "" -#: c-api/init.rst:999 +#: c-api/init.rst:1108 msgid "" "The following functions use thread-local storage, and are not compatible " "with sub-interpreters:" msgstr "" -#: c-api/init.rst:1004 +#: c-api/init.rst:1113 msgid "" "Ensure that the current thread is ready to call the Python C API regardless " "of the current state of Python, or of the global interpreter lock. This may " @@ -1152,7 +1283,7 @@ msgid "" "is acceptable." msgstr "" -#: c-api/init.rst:1014 +#: c-api/init.rst:1123 msgid "" "The return value is an opaque \"handle\" to the thread state when :c:func:" "`PyGILState_Ensure` was called, and must be passed to :c:func:" @@ -1162,13 +1293,13 @@ msgid "" "func:`PyGILState_Release`." msgstr "" -#: c-api/init.rst:1021 +#: c-api/init.rst:1130 msgid "" "When the function returns, the current thread will hold the GIL and be able " "to call arbitrary Python code. Failure is a fatal error." msgstr "" -#: c-api/init.rst:1033 +#: c-api/init.rst:1142 msgid "" "Release any resources previously acquired. After this call, Python's state " "will be the same as it was prior to the corresponding :c:func:" @@ -1176,13 +1307,13 @@ msgid "" "caller, hence the use of the GILState API)." msgstr "" -#: c-api/init.rst:1038 +#: c-api/init.rst:1147 msgid "" "Every call to :c:func:`PyGILState_Ensure` must be matched by a call to :c:" "func:`PyGILState_Release` on the same thread." msgstr "" -#: c-api/init.rst:1044 +#: c-api/init.rst:1153 msgid "" "Get the current thread state for this thread. May return ``NULL`` if no " "GILState API has been used on the current thread. Note that the main thread " @@ -1190,7 +1321,7 @@ msgid "" "made on the main thread. This is mainly a helper/diagnostic function." msgstr "" -#: c-api/init.rst:1052 +#: c-api/init.rst:1161 msgid "" "Return ``1`` if the current thread is holding the GIL and ``0`` otherwise. " "This function can be called from any thread at any time. Only if it has had " @@ -1201,13 +1332,13 @@ msgid "" "otherwise behave differently." msgstr "" -#: c-api/init.rst:1064 +#: c-api/init.rst:1173 msgid "" "The following macros are normally used without a trailing semicolon; look " "for example usage in the Python source distribution." msgstr "" -#: c-api/init.rst:1070 +#: c-api/init.rst:1179 msgid "" "This macro expands to ``{ PyThreadState *_save; _save = PyEval_SaveThread();" "``. Note that it contains an opening brace; it must be matched with a " @@ -1215,7 +1346,7 @@ msgid "" "discussion of this macro." msgstr "" -#: c-api/init.rst:1078 +#: c-api/init.rst:1187 msgid "" "This macro expands to ``PyEval_RestoreThread(_save); }``. Note that it " "contains a closing brace; it must be matched with an earlier :c:macro:" @@ -1223,91 +1354,91 @@ msgid "" "macro." msgstr "" -#: c-api/init.rst:1086 +#: c-api/init.rst:1195 msgid "" "This macro expands to ``PyEval_RestoreThread(_save);``: it is equivalent to :" "c:macro:`Py_END_ALLOW_THREADS` without the closing brace." msgstr "" -#: c-api/init.rst:1092 +#: c-api/init.rst:1201 msgid "" "This macro expands to ``_save = PyEval_SaveThread();``: it is equivalent to :" "c:macro:`Py_BEGIN_ALLOW_THREADS` without the opening brace and variable " "declaration." msgstr "" -#: c-api/init.rst:1098 +#: c-api/init.rst:1207 msgid "Low-level API" msgstr "" -#: c-api/init.rst:1100 +#: c-api/init.rst:1209 msgid "" "All of the following functions must be called after :c:func:`Py_Initialize`." msgstr "" -#: c-api/init.rst:1102 +#: c-api/init.rst:1211 msgid ":c:func:`Py_Initialize()` now initializes the :term:`GIL`." msgstr "" -#: c-api/init.rst:1108 +#: c-api/init.rst:1217 msgid "" "Create a new interpreter state object. The global interpreter lock need not " "be held, but may be held if it is necessary to serialize calls to this " "function." msgstr "" -#: c-api/init.rst:1112 +#: c-api/init.rst:1221 msgid "" "Raises an :ref:`auditing event ` ``cpython." "PyInterpreterState_New`` with no arguments." msgstr "" -#: c-api/init.rst:1117 +#: c-api/init.rst:1226 msgid "" "Reset all information in an interpreter state object. The global " "interpreter lock must be held." msgstr "" -#: c-api/init.rst:1120 +#: c-api/init.rst:1229 msgid "" "Raises an :ref:`auditing event ` ``cpython." "PyInterpreterState_Clear`` with no arguments." msgstr "" -#: c-api/init.rst:1125 +#: c-api/init.rst:1234 msgid "" "Destroy an interpreter state object. The global interpreter lock need not " "be held. The interpreter state must have been reset with a previous call " "to :c:func:`PyInterpreterState_Clear`." msgstr "" -#: c-api/init.rst:1132 +#: c-api/init.rst:1241 msgid "" "Create a new thread state object belonging to the given interpreter object. " "The global interpreter lock need not be held, but may be held if it is " "necessary to serialize calls to this function." msgstr "" -#: c-api/init.rst:1139 +#: c-api/init.rst:1248 msgid "" "Reset all information in a thread state object. The global interpreter lock " "must be held." msgstr "" -#: c-api/init.rst:1142 +#: c-api/init.rst:1251 msgid "" "This function now calls the :c:member:`PyThreadState.on_delete` callback. " "Previously, that happened in :c:func:`PyThreadState_Delete`." msgstr "" -#: c-api/init.rst:1149 +#: c-api/init.rst:1258 msgid "" "Destroy a thread state object. The global interpreter lock need not be " "held. The thread state must have been reset with a previous call to :c:func:" "`PyThreadState_Clear`." msgstr "" -#: c-api/init.rst:1156 +#: c-api/init.rst:1265 msgid "" "Destroy the current thread state and release the global interpreter lock. " "Like :c:func:`PyThreadState_Delete`, the global interpreter lock need not be " @@ -1315,118 +1446,118 @@ msgid "" "`PyThreadState_Clear`." msgstr "" -#: c-api/init.rst:1164 +#: c-api/init.rst:1273 msgid "Get the current frame of the Python thread state *tstate*." msgstr "" -#: c-api/init.rst:1166 +#: c-api/init.rst:1275 msgid "" "Return a :term:`strong reference`. Return ``NULL`` if no frame is currently " "executing." msgstr "" -#: c-api/init.rst:1169 +#: c-api/init.rst:1278 msgid "See also :c:func:`PyEval_GetFrame`." msgstr "" -#: c-api/init.rst:1180 c-api/init.rst:1189 +#: c-api/init.rst:1289 c-api/init.rst:1298 msgid "*tstate* must not be ``NULL``." msgstr "" -#: c-api/init.rst:1178 +#: c-api/init.rst:1287 msgid "" "Get the unique thread state identifier of the Python thread state *tstate*." msgstr "" -#: c-api/init.rst:1187 +#: c-api/init.rst:1296 msgid "Get the interpreter of the Python thread state *tstate*." msgstr "" -#: c-api/init.rst:1196 +#: c-api/init.rst:1305 msgid "Suspend tracing and profiling in the Python thread state *tstate*." msgstr "" -#: c-api/init.rst:1198 +#: c-api/init.rst:1307 msgid "Resume them using the :c:func:`PyThreadState_LeaveTracing` function." msgstr "" -#: c-api/init.rst:1205 +#: c-api/init.rst:1314 msgid "" "Resume tracing and profiling in the Python thread state *tstate* suspended " "by the :c:func:`PyThreadState_EnterTracing` function." msgstr "" -#: c-api/init.rst:1208 +#: c-api/init.rst:1317 msgid "" "See also :c:func:`PyEval_SetTrace` and :c:func:`PyEval_SetProfile` functions." msgstr "" -#: c-api/init.rst:1216 +#: c-api/init.rst:1325 msgid "Get the current interpreter." msgstr "" -#: c-api/init.rst:1218 +#: c-api/init.rst:1327 msgid "" "Issue a fatal error if there no current Python thread state or no current " "interpreter. It cannot return NULL." msgstr "" -#: c-api/init.rst:1231 +#: c-api/init.rst:1340 msgid "The caller must hold the GIL." msgstr "" -#: c-api/init.rst:1228 +#: c-api/init.rst:1337 msgid "" "Return the interpreter's unique ID. If there was any error in doing so then " "``-1`` is returned and an error is set." msgstr "" -#: c-api/init.rst:1238 +#: c-api/init.rst:1347 msgid "" "Return a dictionary in which interpreter-specific data may be stored. If " "this function returns ``NULL`` then no exception has been raised and the " "caller should assume no interpreter-specific dict is available." msgstr "" -#: c-api/init.rst:1242 +#: c-api/init.rst:1351 msgid "" "This is not a replacement for :c:func:`PyModule_GetState()`, which " "extensions should use to store interpreter-specific state information." msgstr "" -#: c-api/init.rst:1249 +#: c-api/init.rst:1358 msgid "Type of a frame evaluation function." msgstr "" -#: c-api/init.rst:1251 +#: c-api/init.rst:1360 msgid "" "The *throwflag* parameter is used by the ``throw()`` method of generators: " "if non-zero, handle the current exception." msgstr "" -#: c-api/init.rst:1254 +#: c-api/init.rst:1363 msgid "The function now takes a *tstate* parameter." msgstr "" -#: c-api/init.rst:1257 +#: c-api/init.rst:1366 msgid "" "The *frame* parameter changed from ``PyFrameObject*`` to " "``_PyInterpreterFrame*``." msgstr "" -#: c-api/init.rst:1262 +#: c-api/init.rst:1371 msgid "Get the frame evaluation function." msgstr "" -#: c-api/init.rst:1272 +#: c-api/init.rst:1381 msgid "See the :pep:`523` \"Adding a frame evaluation API to CPython\"." msgstr "" -#: c-api/init.rst:1270 +#: c-api/init.rst:1379 msgid "Set the frame evaluation function." msgstr "" -#: c-api/init.rst:1279 +#: c-api/init.rst:1388 msgid "" "Return a dictionary in which extensions can store thread-specific state " "information. Each extension should use a unique key to use to store state " @@ -1435,7 +1566,7 @@ msgid "" "raised and the caller should assume no current thread state is available." msgstr "" -#: c-api/init.rst:1288 +#: c-api/init.rst:1397 msgid "" "Asynchronously raise an exception in a thread. The *id* argument is the " "thread id of the target thread; *exc* is the exception object to be raised. " @@ -1447,33 +1578,33 @@ msgid "" "raises no exceptions." msgstr "" -#: c-api/init.rst:1296 +#: c-api/init.rst:1405 msgid "" "The type of the *id* parameter changed from :c:expr:`long` to :c:expr:" "`unsigned long`." msgstr "" -#: c-api/init.rst:1302 +#: c-api/init.rst:1411 msgid "" "Acquire the global interpreter lock and set the current thread state to " "*tstate*, which must not be ``NULL``. The lock must have been created " "earlier. If this thread already has the lock, deadlock ensues." msgstr "" -#: c-api/init.rst:1351 +#: c-api/init.rst:1460 msgid "" "Updated to be consistent with :c:func:`PyEval_RestoreThread`, :c:func:" "`Py_END_ALLOW_THREADS`, and :c:func:`PyGILState_Ensure`, and terminate the " "current thread if called while the interpreter is finalizing." msgstr "" -#: c-api/init.rst:1318 +#: c-api/init.rst:1427 msgid "" ":c:func:`PyEval_RestoreThread` is a higher-level function which is always " "available (even when threads have not been initialized)." msgstr "" -#: c-api/init.rst:1324 +#: c-api/init.rst:1433 msgid "" "Reset the current thread state to ``NULL`` and release the global " "interpreter lock. The lock must have been created earlier and must be held " @@ -1482,25 +1613,25 @@ msgid "" "isn't, a fatal error is reported." msgstr "" -#: c-api/init.rst:1330 +#: c-api/init.rst:1439 msgid "" ":c:func:`PyEval_SaveThread` is a higher-level function which is always " "available (even when threads have not been initialized)." msgstr "" -#: c-api/init.rst:1336 +#: c-api/init.rst:1445 msgid "" "Acquire the global interpreter lock. The lock must have been created " "earlier. If this thread already has the lock, a deadlock ensues." msgstr "" -#: c-api/init.rst:1339 +#: c-api/init.rst:1448 msgid "" "This function does not update the current thread state. Please use :c:func:" "`PyEval_RestoreThread` or :c:func:`PyEval_AcquireThread` instead." msgstr "" -#: c-api/init.rst:1345 +#: c-api/init.rst:1454 msgid "" "Calling this function from a thread when the runtime is finalizing will " "terminate the thread, even if the thread was not created by Python. You can " @@ -1509,23 +1640,23 @@ msgid "" "avoid unwanted termination." msgstr "" -#: c-api/init.rst:1359 +#: c-api/init.rst:1468 msgid "" "Release the global interpreter lock. The lock must have been created " "earlier." msgstr "" -#: c-api/init.rst:1361 +#: c-api/init.rst:1470 msgid "" "This function does not update the current thread state. Please use :c:func:" "`PyEval_SaveThread` or :c:func:`PyEval_ReleaseThread` instead." msgstr "" -#: c-api/init.rst:1370 +#: c-api/init.rst:1479 msgid "Sub-interpreter support" msgstr "" -#: c-api/init.rst:1372 +#: c-api/init.rst:1481 msgid "" "While in most uses, you will only embed a single Python interpreter, there " "are cases where you need to create several independent interpreters in the " @@ -1533,7 +1664,7 @@ msgid "" "to do that." msgstr "" -#: c-api/init.rst:1377 +#: c-api/init.rst:1486 msgid "" "The \"main\" interpreter is the first one created when the runtime " "initializes. It is usually the only Python interpreter in a process. Unlike " @@ -1544,14 +1675,115 @@ msgid "" "returns a pointer to its state." msgstr "" -#: c-api/init.rst:1384 +#: c-api/init.rst:1493 msgid "" "You can switch between sub-interpreters using the :c:func:" "`PyThreadState_Swap` function. You can create and destroy them using the " "following functions:" msgstr "" -#: c-api/init.rst:1398 +#: c-api/init.rst:1499 +msgid "" +"Structure containing most parameters to configure a sub-interpreter. Its " +"values are used only in :c:func:`Py_NewInterpreterFromConfig` and never " +"modified by the runtime." +msgstr "" + +#: c-api/init.rst:1505 +msgid "Structure fields:" +msgstr "" + +#: c-api/init.rst:1509 +msgid "" +"If this is ``0`` then the sub-interpreter will use its own \"object\" " +"allocator state. Otherwise it will use (share) the main interpreter's." +msgstr "" + +#: c-api/init.rst:1513 +msgid "" +"If this is ``0`` then :c:member:`~PyInterpreterConfig." +"check_multi_interp_extensions` must be ``1`` (non-zero). If this is ``1`` " +"then :c:member:`~PyInterpreterConfig.gil` must not be :c:macro:" +"`PyInterpreterConfig_OWN_GIL`." +msgstr "" + +#: c-api/init.rst:1521 +msgid "" +"If this is ``0`` then the runtime will not support forking the process in " +"any thread where the sub-interpreter is currently active. Otherwise fork is " +"unrestricted." +msgstr "" + +#: c-api/init.rst:1525 +msgid "" +"Note that the :mod:`subprocess` module still works when fork is disallowed." +msgstr "" + +#: c-api/init.rst:1530 +msgid "" +"If this is ``0`` then the runtime will not support replacing the current " +"process via exec (e.g. :func:`os.execv`) in any thread where the sub-" +"interpreter is currently active. Otherwise exec is unrestricted." +msgstr "" + +#: c-api/init.rst:1535 +msgid "" +"Note that the :mod:`subprocess` module still works when exec is disallowed." +msgstr "" + +#: c-api/init.rst:1540 +msgid "" +"If this is ``0`` then the sub-interpreter's :mod:`threading` module won't " +"create threads. Otherwise threads are allowed." +msgstr "" + +#: c-api/init.rst:1546 +msgid "" +"If this is ``0`` then the sub-interpreter's :mod:`threading` module won't " +"create daemon threads. Otherwise daemon threads are allowed (as long as :c:" +"member:`~PyInterpreterConfig.allow_threads` is non-zero)." +msgstr "" + +#: c-api/init.rst:1553 +msgid "" +"If this is ``0`` then all extension modules may be imported, including " +"legacy (single-phase init) modules, in any thread where the sub-interpreter " +"is currently active. Otherwise only multi-phase init extension modules (see :" +"pep:`489`) may be imported. (Also see :c:macro:" +"`Py_mod_multiple_interpreters`.)" +msgstr "" + +#: c-api/init.rst:1560 +msgid "" +"This must be ``1`` (non-zero) if :c:member:`~PyInterpreterConfig." +"use_main_obmalloc` is ``0``." +msgstr "" + +#: c-api/init.rst:1565 +msgid "" +"This determines the operation of the GIL for the sub-interpreter. It may be " +"one of the following:" +msgstr "" + +#: c-api/init.rst:1572 +msgid "Use the default selection (:c:macro:`PyInterpreterConfig_SHARED_GIL`)." +msgstr "" + +#: c-api/init.rst:1576 +msgid "Use (share) the main interpreter's GIL." +msgstr "" + +#: c-api/init.rst:1580 +msgid "Use the sub-interpreter's own GIL." +msgstr "" + +#: c-api/init.rst:1582 +msgid "" +"If this is :c:macro:`PyInterpreterConfig_OWN_GIL` then :c:member:" +"`PyInterpreterConfig.use_main_obmalloc` must be ``0``." +msgstr "" + +#: c-api/init.rst:1596 msgid "" "Create a new sub-interpreter. This is an (almost) totally separate " "environment for the execution of Python code. In particular, the new " @@ -1564,25 +1796,54 @@ msgid "" "underlying file descriptors)." msgstr "" -#: c-api/init.rst:1408 +#: c-api/init.rst:1606 +msgid "" +"The given *config* controls the options with which the interpreter is " +"initialized." +msgstr "" + +#: c-api/init.rst:1609 +msgid "" +"Upon success, *tstate_p* will be set to the first thread state created in " +"the new sub-interpreter. This thread state is made in the current thread " +"state. Note that no actual thread is created; see the discussion of thread " +"states below. If creation of the new interpreter is unsuccessful, " +"*tstate_p* is set to ``NULL``; no exception is set since the exception state " +"is stored in the current thread state and there may not be a current thread " +"state." +msgstr "" + +#: c-api/init.rst:1618 msgid "" -"The return value points to the first thread state created in the new sub-" -"interpreter. This thread state is made in the current thread state. Note " -"that no actual thread is created; see the discussion of thread states " -"below. If creation of the new interpreter is unsuccessful, ``NULL`` is " -"returned; no exception is set since the exception state is stored in the " -"current thread state and there may not be a current thread state. (Like all " -"other Python/C API functions, the global interpreter lock must be held " -"before calling this function and is still held when it returns; however, " -"unlike most other Python/C API functions, there needn't be a current thread " -"state on entry.)" +"Like all other Python/C API functions, the global interpreter lock must be " +"held before calling this function and is still held when it returns. " +"Likewise a current thread state must be set on entry. On success, the " +"returned thread state will be set as current. If the sub-interpreter is " +"created with its own GIL then the GIL of the calling interpreter will be " +"released. When the function returns, the new interpreter's GIL will be held " +"by the current thread and the previously interpreter's GIL will remain " +"released here." msgstr "" -#: c-api/init.rst:1423 +#: c-api/init.rst:1629 +msgid "" +"Sub-interpreters are most effective when isolated from each other, with " +"certain functionality restricted::" +msgstr "" + +#: c-api/init.rst:1643 +msgid "" +"Note that the config is used only briefly and does not get modified. During " +"initialization the config's values are converted into various :c:type:" +"`PyInterpreterState` values. A read-only copy of the config may be stored " +"internally on the :c:type:`PyInterpreterState`." +msgstr "" + +#: c-api/init.rst:1652 msgid "Extension modules are shared between (sub-)interpreters as follows:" msgstr "" -#: c-api/init.rst:1425 +#: c-api/init.rst:1654 msgid "" "For modules using multi-phase initialization, e.g. :c:func:" "`PyModule_FromDefAndSpec`, a separate module object is created and " @@ -1590,7 +1851,7 @@ msgid "" "are shared between these module objects." msgstr "" -#: c-api/init.rst:1431 +#: c-api/init.rst:1660 msgid "" "For modules using single-phase initialization, e.g. :c:func:" "`PyModule_Create`, the first time a particular extension is imported, it is " @@ -1602,7 +1863,7 @@ msgid "" "might cause unwanted behavior (see `Bugs and caveats`_ below)." msgstr "" -#: c-api/init.rst:1442 +#: c-api/init.rst:1671 msgid "" "Note that this is different from what happens when an extension is imported " "after the interpreter has been completely re-initialized by calling :c:func:" @@ -1612,23 +1873,84 @@ msgid "" "shared between these modules." msgstr "" -#: c-api/init.rst:1456 +#: c-api/init.rst:1691 +msgid "" +"Create a new sub-interpreter. This is essentially just a wrapper around :c:" +"func:`Py_NewInterpreterFromConfig` with a config that preserves the existing " +"behavior. The result is an unisolated sub-interpreter that shares the main " +"interpreter's GIL, allows fork/exec, allows daemon threads, and allows " +"single-phase init modules." +msgstr "" + +#: c-api/init.rst:1703 msgid "" "Destroy the (sub-)interpreter represented by the given thread state. The " "given thread state must be the current thread state. See the discussion of " "thread states below. When the call returns, the current thread state is " "``NULL``. All thread states associated with this interpreter are " -"destroyed. (The global interpreter lock must be held before calling this " -"function and is still held when it returns.) :c:func:`Py_FinalizeEx` will " -"destroy all sub-interpreters that haven't been explicitly destroyed at that " -"point." +"destroyed. The global interpreter lock used by the target interpreter must " +"be held before calling this function. No GIL is held when it returns." +msgstr "" + +#: c-api/init.rst:1711 +msgid "" +":c:func:`Py_FinalizeEx` will destroy all sub-interpreters that haven't been " +"explicitly destroyed at that point." msgstr "" -#: c-api/init.rst:1466 +#: c-api/init.rst:1716 +msgid "A Per-Interpreter GIL" +msgstr "" + +#: c-api/init.rst:1718 +msgid "" +"Using :c:func:`Py_NewInterpreterFromConfig` you can create a sub-interpreter " +"that is completely isolated from other interpreters, including having its " +"own GIL. The most important benefit of this isolation is that such an " +"interpreter can execute Python code without being blocked by other " +"interpreters or blocking any others. Thus a single Python process can truly " +"take advantage of multiple CPU cores when running Python code. The " +"isolation also encourages a different approach to concurrency than that of " +"just using threads. (See :pep:`554`.)" +msgstr "" + +#: c-api/init.rst:1728 +msgid "" +"Using an isolated interpreter requires vigilance in preserving that " +"isolation. That especially means not sharing any objects or mutable state " +"without guarantees about thread-safety. Even objects that are otherwise " +"immutable (e.g. ``None``, ``(1, 5)``) can't normally be shared because of " +"the refcount. One simple but less-efficient approach around this is to use " +"a global lock around all use of some state (or object). Alternately, " +"effectively immutable objects (like integers or strings) can be made safe in " +"spite of their refcounts by making them \"immortal\". In fact, this has been " +"done for the builtin singletons, small integers, and a number of other " +"builtin objects." +msgstr "" + +#: c-api/init.rst:1739 +msgid "" +"If you preserve isolation then you will have access to proper multi-core " +"computing without the complications that come with free-threading. Failure " +"to preserve isolation will expose you to the full consequences of free-" +"threading, including races and hard-to-debug crashes." +msgstr "" + +#: c-api/init.rst:1744 +msgid "" +"Aside from that, one of the main challenges of using multiple isolated " +"interpreters is how to communicate between them safely (not break isolation) " +"and efficiently. The runtime and stdlib do not provide any standard " +"approach to this yet. A future stdlib module would help mitigate the effort " +"of preserving isolation and expose effective tools for communicating (and " +"sharing) data between interpreters." +msgstr "" + +#: c-api/init.rst:1755 msgid "Bugs and caveats" msgstr "" -#: c-api/init.rst:1468 +#: c-api/init.rst:1757 msgid "" "Because sub-interpreters (and the main interpreter) are part of the same " "process, the insulation between them isn't perfect --- for example, using " @@ -1641,7 +1963,7 @@ msgid "" "should be avoided if possible." msgstr "" -#: c-api/init.rst:1478 +#: c-api/init.rst:1767 msgid "" "Special care should be taken to avoid sharing user-defined functions, " "methods, instances or classes between sub-interpreters, since import " @@ -1650,7 +1972,7 @@ msgid "" "objects from which the above are reachable." msgstr "" -#: c-api/init.rst:1484 +#: c-api/init.rst:1773 msgid "" "Also note that combining this functionality with ``PyGILState_*`` APIs is " "delicate, because these APIs assume a bijection between Python thread states " @@ -1662,25 +1984,25 @@ msgid "" "created threads will probably be broken when using sub-interpreters." msgstr "" -#: c-api/init.rst:1495 +#: c-api/init.rst:1784 msgid "Asynchronous Notifications" msgstr "" -#: c-api/init.rst:1497 +#: c-api/init.rst:1786 msgid "" "A mechanism is provided to make asynchronous notifications to the main " "interpreter thread. These notifications take the form of a function pointer " "and a void pointer argument." msgstr "" -#: c-api/init.rst:1506 +#: c-api/init.rst:1795 msgid "" "Schedule a function to be called from the main interpreter thread. On " "success, ``0`` is returned and *func* is queued for being called in the main " "thread. On failure, ``-1`` is returned without setting any exception." msgstr "" -#: c-api/init.rst:1510 +#: c-api/init.rst:1799 msgid "" "When successfully queued, *func* will be *eventually* called from the main " "interpreter thread with the argument *arg*. It will be called " @@ -1688,17 +2010,17 @@ msgid "" "these conditions met:" msgstr "" -#: c-api/init.rst:1515 +#: c-api/init.rst:1804 msgid "on a :term:`bytecode` boundary;" msgstr "" -#: c-api/init.rst:1516 +#: c-api/init.rst:1805 msgid "" "with the main thread holding the :term:`global interpreter lock` (*func* can " "therefore use the full C API)." msgstr "" -#: c-api/init.rst:1519 +#: c-api/init.rst:1808 msgid "" "*func* must return ``0`` on success, or ``-1`` on failure with an exception " "set. *func* won't be interrupted to perform another asynchronous " @@ -1706,20 +2028,20 @@ msgid "" "if the global interpreter lock is released." msgstr "" -#: c-api/init.rst:1524 +#: c-api/init.rst:1813 msgid "" "This function doesn't need a current thread state to run, and it doesn't " "need the global interpreter lock." msgstr "" -#: c-api/init.rst:1527 +#: c-api/init.rst:1816 msgid "" "To call this function in a subinterpreter, the caller must hold the GIL. " "Otherwise, the function *func* can be scheduled to be called from the wrong " "interpreter." msgstr "" -#: c-api/init.rst:1532 +#: c-api/init.rst:1821 msgid "" "This is a low-level function, only useful for very special cases. There is " "no guarantee that *func* will be called as quick as possible. If the main " @@ -1729,7 +2051,7 @@ msgid "" "`PyGILState API`." msgstr "" -#: c-api/init.rst:1539 +#: c-api/init.rst:1828 msgid "" "If this function is called in a subinterpreter, the function *func* is now " "scheduled to be called from the subinterpreter, rather than being called " @@ -1737,18 +2059,18 @@ msgid "" "scheduled calls." msgstr "" -#: c-api/init.rst:1550 +#: c-api/init.rst:1839 msgid "Profiling and Tracing" msgstr "" -#: c-api/init.rst:1555 +#: c-api/init.rst:1844 msgid "" "The Python interpreter provides some low-level support for attaching " "profiling and execution tracing facilities. These are used for profiling, " "debugging, and coverage analysis tools." msgstr "" -#: c-api/init.rst:1559 +#: c-api/init.rst:1848 msgid "" "This C interface allows the profiling or tracing code to avoid the overhead " "of calling through Python-level callable objects, making a direct C function " @@ -1758,7 +2080,7 @@ msgid "" "reported to the Python-level trace functions in previous versions." msgstr "" -#: c-api/init.rst:1569 +#: c-api/init.rst:1858 msgid "" "The type of the trace function registered using :c:func:`PyEval_SetProfile` " "and :c:func:`PyEval_SetTrace`. The first parameter is the object passed to " @@ -1770,64 +2092,64 @@ msgid "" "value of *what*:" msgstr "" -#: c-api/init.rst:1578 +#: c-api/init.rst:1867 msgid "Value of *what*" msgstr "" -#: c-api/init.rst:1578 +#: c-api/init.rst:1867 msgid "Meaning of *arg*" msgstr "" -#: c-api/init.rst:1580 +#: c-api/init.rst:1869 msgid ":c:data:`PyTrace_CALL`" msgstr "" -#: c-api/init.rst:1585 c-api/init.rst:1596 +#: c-api/init.rst:1874 c-api/init.rst:1885 msgid "Always :c:data:`Py_None`." msgstr "" -#: c-api/init.rst:1582 +#: c-api/init.rst:1871 msgid ":c:data:`PyTrace_EXCEPTION`" msgstr "" -#: c-api/init.rst:1582 +#: c-api/init.rst:1871 msgid "Exception information as returned by :func:`sys.exc_info`." msgstr "" -#: c-api/init.rst:1585 +#: c-api/init.rst:1874 msgid ":c:data:`PyTrace_LINE`" msgstr "" -#: c-api/init.rst:1587 +#: c-api/init.rst:1876 msgid ":c:data:`PyTrace_RETURN`" msgstr "" -#: c-api/init.rst:1587 +#: c-api/init.rst:1876 msgid "" "Value being returned to the caller, or ``NULL`` if caused by an exception." msgstr "" -#: c-api/init.rst:1590 +#: c-api/init.rst:1879 msgid ":c:data:`PyTrace_C_CALL`" msgstr "" -#: c-api/init.rst:1592 c-api/init.rst:1594 +#: c-api/init.rst:1881 c-api/init.rst:1883 msgid "Function object being called." msgstr "" -#: c-api/init.rst:1592 +#: c-api/init.rst:1881 msgid ":c:data:`PyTrace_C_EXCEPTION`" msgstr "" -#: c-api/init.rst:1594 +#: c-api/init.rst:1883 msgid ":c:data:`PyTrace_C_RETURN`" msgstr "" -#: c-api/init.rst:1596 +#: c-api/init.rst:1885 msgid ":c:data:`PyTrace_OPCODE`" msgstr "" -#: c-api/init.rst:1601 +#: c-api/init.rst:1890 msgid "" "The value of the *what* parameter to a :c:type:`Py_tracefunc` function when " "a new call to a function or method is being reported, or a new entry into a " @@ -1836,7 +2158,7 @@ msgid "" "the corresponding frame." msgstr "" -#: c-api/init.rst:1610 +#: c-api/init.rst:1899 msgid "" "The value of the *what* parameter to a :c:type:`Py_tracefunc` function when " "an exception has been raised. The callback function is called with this " @@ -1848,7 +2170,7 @@ msgid "" "profiler." msgstr "" -#: c-api/init.rst:1621 +#: c-api/init.rst:1910 msgid "" "The value passed as the *what* parameter to a :c:type:`Py_tracefunc` " "function (but not a profiling function) when a line-number event is being " @@ -1856,31 +2178,31 @@ msgid "" "*0* on that frame." msgstr "" -#: c-api/init.rst:1628 +#: c-api/init.rst:1917 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " "a call is about to return." msgstr "" -#: c-api/init.rst:1634 +#: c-api/init.rst:1923 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " "a C function is about to be called." msgstr "" -#: c-api/init.rst:1640 +#: c-api/init.rst:1929 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " "a C function has raised an exception." msgstr "" -#: c-api/init.rst:1646 +#: c-api/init.rst:1935 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions when " "a C function has returned." msgstr "" -#: c-api/init.rst:1652 +#: c-api/init.rst:1941 msgid "" "The value for the *what* parameter to :c:type:`Py_tracefunc` functions (but " "not profiling functions) when a new opcode is about to be executed. This " @@ -1888,7 +2210,7 @@ msgid "" "attr:`f_trace_opcodes` to *1* on the frame." msgstr "" -#: c-api/init.rst:1660 +#: c-api/init.rst:1949 msgid "" "Set the profiler function to *func*. The *obj* parameter is passed to the " "function as its first parameter, and may be any Python object, or ``NULL``. " @@ -1898,15 +2220,28 @@ msgid "" "`PyTrace_LINE` :c:data:`PyTrace_OPCODE` and :c:data:`PyTrace_EXCEPTION`." msgstr "" -#: c-api/init.rst:1667 +#: c-api/init.rst:1956 msgid "See also the :func:`sys.setprofile` function." msgstr "" -#: c-api/init.rst:1683 +#: c-api/init.rst:1965 c-api/init.rst:1991 msgid "The caller must hold the :term:`GIL`." msgstr "" -#: c-api/init.rst:1674 +#: c-api/init.rst:1962 +msgid "" +"Like :c:func:`PyEval_SetProfile` but sets the profile function in all " +"running threads belonging to the current interpreter instead of the setting " +"it only on the current thread." +msgstr "" + +#: c-api/init.rst:1967 +msgid "" +"As :c:func:`PyEval_SetProfile`, this function ignores any exceptions raised " +"while setting the profile functions in all threads." +msgstr "" + +#: c-api/init.rst:1975 msgid "" "Set the tracing function to *func*. This is similar to :c:func:" "`PyEval_SetProfile`, except the tracing function does receive line-number " @@ -1917,52 +2252,65 @@ msgid "" "*what* parameter." msgstr "" -#: c-api/init.rst:1681 +#: c-api/init.rst:1982 msgid "See also the :func:`sys.settrace` function." msgstr "" -#: c-api/init.rst:1689 +#: c-api/init.rst:1988 +msgid "" +"Like :c:func:`PyEval_SetTrace` but sets the tracing function in all running " +"threads belonging to the current interpreter instead of the setting it only " +"on the current thread." +msgstr "" + +#: c-api/init.rst:1993 +msgid "" +"As :c:func:`PyEval_SetTrace`, this function ignores any exceptions raised " +"while setting the trace functions in all threads." +msgstr "" + +#: c-api/init.rst:2002 msgid "Advanced Debugger Support" msgstr "" -#: c-api/init.rst:1694 +#: c-api/init.rst:2007 msgid "" "These functions are only intended to be used by advanced debugging tools." msgstr "" -#: c-api/init.rst:1699 +#: c-api/init.rst:2012 msgid "" "Return the interpreter state object at the head of the list of all such " "objects." msgstr "" -#: c-api/init.rst:1704 +#: c-api/init.rst:2017 msgid "Return the main interpreter state object." msgstr "" -#: c-api/init.rst:1709 +#: c-api/init.rst:2022 msgid "" "Return the next interpreter state object after *interp* from the list of all " "such objects." msgstr "" -#: c-api/init.rst:1715 +#: c-api/init.rst:2028 msgid "" "Return the pointer to the first :c:type:`PyThreadState` object in the list " "of threads associated with the interpreter *interp*." msgstr "" -#: c-api/init.rst:1721 +#: c-api/init.rst:2034 msgid "" "Return the next thread state object after *tstate* from the list of all such " "objects belonging to the same :c:type:`PyInterpreterState` object." msgstr "" -#: c-api/init.rst:1728 +#: c-api/init.rst:2041 msgid "Thread Local Storage Support" msgstr "" -#: c-api/init.rst:1732 +#: c-api/init.rst:2045 msgid "" "The Python interpreter provides low-level support for thread-local storage " "(TLS) which wraps the underlying native TLS implementation to support the " @@ -1972,19 +2320,19 @@ msgid "" "thread." msgstr "" -#: c-api/init.rst:1739 +#: c-api/init.rst:2052 msgid "" "The GIL does *not* need to be held when calling these functions; they supply " "their own locking." msgstr "" -#: c-api/init.rst:1742 +#: c-api/init.rst:2055 msgid "" "Note that :file:`Python.h` does not include the declaration of the TLS APIs, " "you need to include :file:`pythread.h` to use thread-local storage." msgstr "" -#: c-api/init.rst:1746 +#: c-api/init.rst:2059 msgid "" "None of these API functions handle memory management on behalf of the :c:" "expr:`void*` values. You need to allocate and deallocate them yourself. If " @@ -1992,22 +2340,22 @@ msgid "" "don't do refcount operations on them either." msgstr "" -#: c-api/init.rst:1754 +#: c-api/init.rst:2067 msgid "Thread Specific Storage (TSS) API" msgstr "" -#: c-api/init.rst:1756 +#: c-api/init.rst:2069 msgid "" "TSS API is introduced to supersede the use of the existing TLS API within " "the CPython interpreter. This API uses a new type :c:type:`Py_tss_t` " "instead of :c:expr:`int` to represent thread keys." msgstr "" -#: c-api/init.rst:1762 +#: c-api/init.rst:2075 msgid "\"A New C-API for Thread-Local Storage in CPython\" (:pep:`539`)" msgstr "" -#: c-api/init.rst:1767 +#: c-api/init.rst:2080 msgid "" "This data structure represents the state of a thread key, the definition of " "which may depend on the underlying TLS implementation, and it has an " @@ -2015,52 +2363,52 @@ msgid "" "public members in this structure." msgstr "" -#: c-api/init.rst:1772 +#: c-api/init.rst:2085 msgid "" "When :ref:`Py_LIMITED_API ` is not defined, static allocation of " "this type by :c:macro:`Py_tss_NEEDS_INIT` is allowed." msgstr "" -#: c-api/init.rst:1778 +#: c-api/init.rst:2091 msgid "" "This macro expands to the initializer for :c:type:`Py_tss_t` variables. Note " "that this macro won't be defined with :ref:`Py_LIMITED_API `." msgstr "" -#: c-api/init.rst:1783 +#: c-api/init.rst:2096 msgid "Dynamic Allocation" msgstr "" -#: c-api/init.rst:1785 +#: c-api/init.rst:2098 msgid "" "Dynamic allocation of the :c:type:`Py_tss_t`, required in extension modules " "built with :ref:`Py_LIMITED_API `, where static allocation of this " "type is not possible due to its implementation being opaque at build time." msgstr "" -#: c-api/init.rst:1792 +#: c-api/init.rst:2105 msgid "" "Return a value which is the same state as a value initialized with :c:macro:" "`Py_tss_NEEDS_INIT`, or ``NULL`` in the case of dynamic allocation failure." msgstr "" -#: c-api/init.rst:1799 +#: c-api/init.rst:2112 msgid "" "Free the given *key* allocated by :c:func:`PyThread_tss_alloc`, after first " "calling :c:func:`PyThread_tss_delete` to ensure any associated thread locals " "have been unassigned. This is a no-op if the *key* argument is ``NULL``." msgstr "" -#: c-api/init.rst:1805 +#: c-api/init.rst:2118 msgid "" "A freed key becomes a dangling pointer. You should reset the key to ``NULL``." msgstr "" -#: c-api/init.rst:1810 +#: c-api/init.rst:2123 msgid "Methods" msgstr "" -#: c-api/init.rst:1812 +#: c-api/init.rst:2125 msgid "" "The parameter *key* of these functions must not be ``NULL``. Moreover, the " "behaviors of :c:func:`PyThread_tss_set` and :c:func:`PyThread_tss_get` are " @@ -2068,13 +2416,13 @@ msgid "" "func:`PyThread_tss_create`." msgstr "" -#: c-api/init.rst:1820 +#: c-api/init.rst:2133 msgid "" "Return a non-zero value if the given :c:type:`Py_tss_t` has been initialized " "by :c:func:`PyThread_tss_create`." msgstr "" -#: c-api/init.rst:1826 +#: c-api/init.rst:2139 msgid "" "Return a zero value on successful initialization of a TSS key. The behavior " "is undefined if the value pointed to by the *key* argument is not " @@ -2083,7 +2431,7 @@ msgid "" "no-op and immediately returns success." msgstr "" -#: c-api/init.rst:1835 +#: c-api/init.rst:2148 msgid "" "Destroy a TSS key to forget the values associated with the key across all " "threads, and change the key's initialization state to uninitialized. A " @@ -2092,31 +2440,31 @@ msgid "" "key -- calling it on an already destroyed key is a no-op." msgstr "" -#: c-api/init.rst:1844 +#: c-api/init.rst:2157 msgid "" "Return a zero value to indicate successfully associating a :c:expr:`void*` " "value with a TSS key in the current thread. Each thread has a distinct " "mapping of the key to a :c:expr:`void*` value." msgstr "" -#: c-api/init.rst:1851 +#: c-api/init.rst:2164 msgid "" "Return the :c:expr:`void*` value associated with a TSS key in the current " "thread. This returns ``NULL`` if no value is associated with the key in the " "current thread." msgstr "" -#: c-api/init.rst:1859 +#: c-api/init.rst:2172 msgid "Thread Local Storage (TLS) API" msgstr "" -#: c-api/init.rst:1861 +#: c-api/init.rst:2174 msgid "" "This API is superseded by :ref:`Thread Specific Storage (TSS) API `." msgstr "" -#: c-api/init.rst:1866 +#: c-api/init.rst:2179 msgid "" "This version of the API does not support platforms where the native TLS key " "is defined in a way that cannot be safely cast to ``int``. On such " @@ -2125,180 +2473,180 @@ msgid "" "platforms." msgstr "" -#: c-api/init.rst:1871 +#: c-api/init.rst:2184 msgid "" "Due to the compatibility problem noted above, this version of the API should " "not be used in new code." msgstr "" -#: c-api/init.rst:386 c-api/init.rst:461 +#: c-api/init.rst:495 c-api/init.rst:570 msgid "Py_SetProgramName()" msgstr "" -#: c-api/init.rst:231 +#: c-api/init.rst:334 msgid "PyEval_InitThreads()" msgstr "" -#: c-api/init.rst:231 +#: c-api/init.rst:334 msgid "modules (in module sys)" msgstr "" -#: c-api/init.rst:480 c-api/init.rst:506 +#: c-api/init.rst:589 c-api/init.rst:615 msgid "path (in module sys)" msgstr "" -#: c-api/init.rst:480 c-api/init.rst:948 c-api/init.rst:1390 +#: c-api/init.rst:589 c-api/init.rst:1057 c-api/init.rst:1683 msgid "module" msgstr "" -#: c-api/init.rst:1390 +#: c-api/init.rst:1588 c-api/init.rst:1683 msgid "builtins" msgstr "" -#: c-api/init.rst:1390 +#: c-api/init.rst:1588 c-api/init.rst:1683 msgid "__main__" msgstr "" -#: c-api/init.rst:1390 +#: c-api/init.rst:1588 c-api/init.rst:1683 msgid "sys" msgstr "" -#: c-api/init.rst:480 c-api/init.rst:506 +#: c-api/init.rst:589 c-api/init.rst:615 msgid "search" msgstr "" -#: c-api/init.rst:480 c-api/init.rst:506 +#: c-api/init.rst:589 c-api/init.rst:615 msgid "path" msgstr "" -#: c-api/init.rst:231 +#: c-api/init.rst:334 msgid "PySys_SetArgv()" msgstr "" -#: c-api/init.rst:231 +#: c-api/init.rst:334 msgid "PySys_SetArgvEx()" msgstr "" -#: c-api/init.rst:1419 c-api/init.rst:1454 +#: c-api/init.rst:1648 c-api/init.rst:1701 msgid "Py_FinalizeEx()" msgstr "" -#: c-api/init.rst:358 c-api/init.rst:1419 +#: c-api/init.rst:467 c-api/init.rst:1648 msgid "Py_Initialize()" msgstr "" -#: c-api/init.rst:358 c-api/init.rst:614 +#: c-api/init.rst:467 c-api/init.rst:723 msgid "main()" msgstr "" -#: c-api/init.rst:321 +#: c-api/init.rst:430 msgid "stdin" msgstr "" -#: c-api/init.rst:321 +#: c-api/init.rst:430 msgid "stdout" msgstr "" -#: c-api/init.rst:321 +#: c-api/init.rst:430 msgid "sdterr" msgstr "" -#: c-api/init.rst:506 +#: c-api/init.rst:615 msgid "Py_GetPath()" msgstr "" -#: c-api/init.rst:461 +#: c-api/init.rst:570 msgid "executable (in module sys)" msgstr "" -#: c-api/init.rst:480 +#: c-api/init.rst:589 msgid "Py_SetPath()" msgstr "" -#: c-api/init.rst:591 c-api/init.rst:605 +#: c-api/init.rst:700 c-api/init.rst:714 msgid "version (in module sys)" msgstr "" -#: c-api/init.rst:561 +#: c-api/init.rst:670 msgid "platform (in module sys)" msgstr "" -#: c-api/init.rst:578 +#: c-api/init.rst:687 msgid "copyright (in module sys)" msgstr "" -#: c-api/init.rst:614 +#: c-api/init.rst:723 msgid "Py_FatalError()" msgstr "" -#: c-api/init.rst:614 +#: c-api/init.rst:723 msgid "argv (in module sys)" msgstr "" -#: c-api/init.rst:730 +#: c-api/init.rst:839 msgid "global interpreter lock" msgstr "" -#: c-api/init.rst:730 +#: c-api/init.rst:839 msgid "interpreter lock" msgstr "" -#: c-api/init.rst:730 +#: c-api/init.rst:839 msgid "lock, interpreter" msgstr "" -#: c-api/init.rst:743 +#: c-api/init.rst:852 msgid "setswitchinterval() (in module sys)" msgstr "" -#: c-api/init.rst:752 +#: c-api/init.rst:861 msgid "PyThreadState" msgstr "" -#: c-api/init.rst:779 +#: c-api/init.rst:888 msgid "Py_BEGIN_ALLOW_THREADS" msgstr "" -#: c-api/init.rst:779 +#: c-api/init.rst:888 msgid "Py_END_ALLOW_THREADS" msgstr "" -#: c-api/init.rst:926 +#: c-api/init.rst:1035 msgid "PyEval_RestoreThread()" msgstr "" -#: c-api/init.rst:926 +#: c-api/init.rst:1035 msgid "PyEval_SaveThread()" msgstr "" -#: c-api/init.rst:926 +#: c-api/init.rst:1035 msgid "PyEval_AcquireThread()" msgstr "" -#: c-api/init.rst:926 +#: c-api/init.rst:1035 msgid "PyEval_ReleaseThread()" msgstr "" -#: c-api/init.rst:948 +#: c-api/init.rst:1057 msgid "_thread" msgstr "" -#: c-api/init.rst:1390 +#: c-api/init.rst:1683 msgid "stdout (in module sys)" msgstr "" -#: c-api/init.rst:1390 +#: c-api/init.rst:1683 msgid "stderr (in module sys)" msgstr "" -#: c-api/init.rst:1390 +#: c-api/init.rst:1683 msgid "stdin (in module sys)" msgstr "" -#: c-api/init.rst:1449 +#: c-api/init.rst:1678 msgid "close() (in module os)" msgstr "" -#: c-api/init.rst:1504 +#: c-api/init.rst:1793 msgid "Py_AddPendingCall()" msgstr "" diff --git a/c-api/init_config.po b/c-api/init_config.po index 190343915..d57800fc3 100644 --- a/c-api/init_config.po +++ b/c-api/init_config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -330,7 +330,7 @@ msgid "" ":ref:`Python Development Mode `: see :c:member:`PyConfig.dev_mode`." msgstr "" -#: c-api/init_config.rst:693 c-api/init_config.rst:1164 +#: c-api/init_config.rst:693 c-api/init_config.rst:1188 msgid "Default: ``-1`` in Python mode, ``0`` in isolated mode." msgstr "" @@ -338,7 +338,7 @@ msgstr "" msgid "Isolated mode: see :c:member:`PyConfig.isolated`." msgstr "" -#: c-api/init_config.rst:860 +#: c-api/init_config.rst:880 msgid "Default: ``0`` in Python mode, ``1`` in isolated mode." msgstr "" @@ -364,16 +364,16 @@ msgid "" "variable value." msgstr "" -#: c-api/init_config.rst:873 +#: c-api/init_config.rst:894 msgid "" "Only available on Windows. ``#ifdef MS_WINDOWS`` macro can be used for " "Windows specific code." msgstr "" #: c-api/init_config.rst:632 c-api/init_config.rst:706 -#: c-api/init_config.rst:829 c-api/init_config.rst:876 -#: c-api/init_config.rst:950 c-api/init_config.rst:1059 -#: c-api/init_config.rst:1128 c-api/init_config.rst:1201 +#: c-api/init_config.rst:829 c-api/init_config.rst:897 +#: c-api/init_config.rst:971 c-api/init_config.rst:1083 +#: c-api/init_config.rst:1152 c-api/init_config.rst:1239 msgid "Default: ``0``." msgstr "" @@ -391,7 +391,7 @@ msgid "" "use_environment`." msgstr "" -#: c-api/init_config.rst:1175 +#: c-api/init_config.rst:1213 msgid "Default: ``1`` in Python config and ``0`` in isolated config." msgstr "" @@ -465,7 +465,7 @@ msgid "" "`~PyPreConfig.parse_argv` of *preconfig* is non-zero." msgstr "" -#: c-api/init_config.rst:1263 +#: c-api/init_config.rst:1301 msgid "" "The caller is responsible to handle exceptions (error or exit) using :c:func:" "`PyStatus_Exception` and :c:func:`Py_ExitStatusException`." @@ -579,7 +579,7 @@ msgid "" "calculated or modified when calling this function, as of Python 3.11." msgstr "" -#: c-api/init_config.rst:979 +#: c-api/init_config.rst:1000 msgid "" "The :c:func:`PyConfig_Read` function only parses :c:member:`PyConfig.argv` " "arguments once: :c:member:`PyConfig.parse_argv` is set to ``2`` after " @@ -663,9 +663,9 @@ msgid "" msgstr "" #: c-api/init_config.rst:585 c-api/init_config.rst:605 -#: c-api/init_config.rst:722 c-api/init_config.rst:920 -#: c-api/init_config.rst:1036 c-api/init_config.rst:1067 -#: c-api/init_config.rst:1088 +#: c-api/init_config.rst:722 c-api/init_config.rst:941 +#: c-api/init_config.rst:1060 c-api/init_config.rst:1091 +#: c-api/init_config.rst:1112 msgid "Default: ``NULL``." msgstr "" @@ -712,7 +712,7 @@ msgid ":data:`sys.base_exec_prefix`." msgstr "" #: c-api/init_config.rst:599 c-api/init_config.rst:715 -#: c-api/init_config.rst:937 c-api/init_config.rst:1020 +#: c-api/init_config.rst:958 c-api/init_config.rst:1044 msgid "Part of the :ref:`Python Path Configuration ` output." msgstr "" @@ -748,7 +748,7 @@ msgstr "" msgid "stdin is always opened in buffered mode." msgstr "" -#: c-api/init_config.rst:652 c-api/init_config.rst:1233 +#: c-api/init_config.rst:652 c-api/init_config.rst:1271 msgid "Default: ``1``." msgstr "" @@ -1018,8 +1018,8 @@ msgstr "" msgid "Set by the :envvar:`PYTHONHOME` environment variable." msgstr "" -#: c-api/init_config.rst:902 c-api/init_config.rst:1008 -#: c-api/init_config.rst:1038 +#: c-api/init_config.rst:923 c-api/init_config.rst:1032 +#: c-api/init_config.rst:1062 msgid "Part of the :ref:`Python Path Configuration ` input." msgstr "" @@ -1055,7 +1055,7 @@ msgstr "" msgid "Install Python signal handlers?" msgstr "" -#: c-api/init_config.rst:985 c-api/init_config.rst:1185 +#: c-api/init_config.rst:1006 c-api/init_config.rst:1223 msgid "Default: ``1`` in Python mode, ``0`` in isolated mode." msgstr "" @@ -1068,88 +1068,115 @@ msgid "Incremented by the :option:`-i` command line option." msgstr "" #: c-api/init_config.rst:847 +msgid "" +"Configures the :ref:`integer string conversion length limitation " +"`. An initial value of ``-1`` means the value will be " +"taken from the command line or environment or otherwise default to 4300 (:" +"data:`sys.int_info.default_max_str_digits`). A value of ``0`` disables the " +"limitation. Values greater than zero but less than 640 (:data:`sys.int_info." +"str_digits_check_threshold`) are unsupported and will produce an error." +msgstr "" + +#: c-api/init_config.rst:855 +msgid "" +"Configured by the :option:`-X int_max_str_digits <-X>` command line flag or " +"the :envvar:`PYTHONINTMAXSTRDIGITS` environment variable." +msgstr "" + +#: c-api/init_config.rst:858 +msgid "" +"Default: ``-1`` in Python mode. 4300 (:data:`sys.int_info." +"default_max_str_digits`) in isolated mode." +msgstr "" + +#: c-api/init_config.rst:865 msgid "If greater than ``0``, enable isolated mode:" msgstr "" -#: c-api/init_config.rst:849 +#: c-api/init_config.rst:867 msgid "" "Set :c:member:`~PyConfig.safe_path` to ``1``: don't prepend a potentially " -"unsafe path to :data:`sys.path` at Python startup." +"unsafe path to :data:`sys.path` at Python startup, such as the current " +"directory, the script's directory or an empty string." msgstr "" -#: c-api/init_config.rst:1483 -msgid "Set :c:member:`~PyConfig.use_environment` to ``0``." +#: c-api/init_config.rst:871 +msgid "" +"Set :c:member:`~PyConfig.use_environment` to ``0``: ignore ``PYTHON`` " +"environment variables." msgstr "" -#: c-api/init_config.rst:853 +#: c-api/init_config.rst:873 msgid "" "Set :c:member:`~PyConfig.user_site_directory` to ``0``: don't add the user " "site directory to :data:`sys.path`." msgstr "" -#: c-api/init_config.rst:855 +#: c-api/init_config.rst:875 msgid "" "Python REPL doesn't import :mod:`readline` nor enable default readline " "configuration on interactive prompts." msgstr "" -#: c-api/init_config.rst:858 +#: c-api/init_config.rst:878 msgid "Set to ``1`` by the :option:`-I` command line option." msgstr "" -#: c-api/init_config.rst:862 -msgid "See also :c:member:`PyPreConfig.isolated`." +#: c-api/init_config.rst:882 +msgid "" +"See also the :ref:`Isolated Configuration ` and :c:" +"member:`PyPreConfig.isolated`." msgstr "" -#: c-api/init_config.rst:866 +#: c-api/init_config.rst:887 msgid "" "If non-zero, use :class:`io.FileIO` instead of :class:`!io." "_WindowsConsoleIO` for :data:`sys.stdin`, :data:`sys.stdout` and :data:`sys." "stderr`." msgstr "" -#: c-api/init_config.rst:870 +#: c-api/init_config.rst:891 msgid "" "Set to ``1`` if the :envvar:`PYTHONLEGACYWINDOWSSTDIO` environment variable " "is set to a non-empty string." msgstr "" -#: c-api/init_config.rst:878 +#: c-api/init_config.rst:899 msgid "See also the :pep:`528` (Change Windows console encoding to UTF-8)." msgstr "" -#: c-api/init_config.rst:882 +#: c-api/init_config.rst:903 msgid "" "If non-zero, dump statistics on :ref:`Python pymalloc memory allocator " "` at exit." msgstr "" -#: c-api/init_config.rst:885 +#: c-api/init_config.rst:906 msgid "Set to ``1`` by the :envvar:`PYTHONMALLOCSTATS` environment variable." msgstr "" -#: c-api/init_config.rst:887 +#: c-api/init_config.rst:908 msgid "" "The option is ignored if Python is :option:`configured using the --without-" "pymalloc option <--without-pymalloc>`." msgstr "" -#: c-api/init_config.rst:894 +#: c-api/init_config.rst:915 msgid "Platform library directory name: :data:`sys.platlibdir`." msgstr "" -#: c-api/init_config.rst:896 +#: c-api/init_config.rst:917 msgid "Set by the :envvar:`PYTHONPLATLIBDIR` environment variable." msgstr "" -#: c-api/init_config.rst:898 +#: c-api/init_config.rst:919 msgid "" "Default: value of the ``PLATLIBDIR`` macro which is set by the :option:" "`configure --with-platlibdir option <--with-platlibdir>` (default: " "``\"lib\"``, or ``\"DLLs\"`` on Windows)." msgstr "" -#: c-api/init_config.rst:906 +#: c-api/init_config.rst:927 msgid "" "This macro is now used on Windows to locate the standard library extension " "modules, typically under ``DLLs``. However, for compatibility, note that " @@ -1157,21 +1184,21 @@ msgid "" "and virtual environments." msgstr "" -#: c-api/init_config.rst:915 +#: c-api/init_config.rst:936 msgid "" "Module search paths (:data:`sys.path`) as a string separated by ``DELIM`` (:" "data:`os.pathsep`)." msgstr "" -#: c-api/init_config.rst:918 +#: c-api/init_config.rst:939 msgid "Set by the :envvar:`PYTHONPATH` environment variable." msgstr "" -#: c-api/init_config.rst:927 +#: c-api/init_config.rst:948 msgid "Module search paths: :data:`sys.path`." msgstr "" -#: c-api/init_config.rst:929 +#: c-api/init_config.rst:950 msgid "" "If :c:member:`~PyConfig.module_search_paths_set` is equal to ``0``, :c:func:" "`Py_InitializeFromConfig` will replace :c:member:`~PyConfig." @@ -1179,41 +1206,41 @@ msgid "" "to ``1``." msgstr "" -#: c-api/init_config.rst:934 +#: c-api/init_config.rst:955 msgid "" "Default: empty list (``module_search_paths``) and ``0`` " "(``module_search_paths_set``)." msgstr "" -#: c-api/init_config.rst:941 +#: c-api/init_config.rst:962 msgid "Compilation optimization level:" msgstr "" -#: c-api/init_config.rst:943 +#: c-api/init_config.rst:964 msgid "``0``: Peephole optimizer, set ``__debug__`` to ``True``." msgstr "" -#: c-api/init_config.rst:944 +#: c-api/init_config.rst:965 msgid "``1``: Level 0, remove assertions, set ``__debug__`` to ``False``." msgstr "" -#: c-api/init_config.rst:945 +#: c-api/init_config.rst:966 msgid "``2``: Level 1, strip docstrings." msgstr "" -#: c-api/init_config.rst:947 +#: c-api/init_config.rst:968 msgid "" "Incremented by the :option:`-O` command line option. Set to the :envvar:" "`PYTHONOPTIMIZE` environment variable value." msgstr "" -#: c-api/init_config.rst:954 +#: c-api/init_config.rst:975 msgid "" "The list of the original command line arguments passed to the Python " "executable: :data:`sys.orig_argv`." msgstr "" -#: c-api/init_config.rst:957 +#: c-api/init_config.rst:978 msgid "" "If :c:member:`~PyConfig.orig_argv` list is empty and :c:member:`~PyConfig." "argv` is not a list only containing an empty string, :c:func:`PyConfig_Read` " @@ -1222,361 +1249,387 @@ msgid "" "parse_argv` is non-zero)." msgstr "" -#: c-api/init_config.rst:964 +#: c-api/init_config.rst:985 msgid "" "See also the :c:member:`~PyConfig.argv` member and the :c:func:" "`Py_GetArgcArgv` function." msgstr "" -#: c-api/init_config.rst:1220 c-api/init_config.rst:1239 +#: c-api/init_config.rst:1258 c-api/init_config.rst:1277 msgid "Default: empty list." msgstr "" -#: c-api/init_config.rst:973 +#: c-api/init_config.rst:994 msgid "Parse command line arguments?" msgstr "" -#: c-api/init_config.rst:975 +#: c-api/init_config.rst:996 msgid "" "If equals to ``1``, parse :c:member:`~PyConfig.argv` the same way the " "regular Python parses :ref:`command line arguments `, and " "strip Python arguments from :c:member:`~PyConfig.argv`." msgstr "" -#: c-api/init_config.rst:987 +#: c-api/init_config.rst:1008 msgid "" "The :c:member:`PyConfig.argv` arguments are now only parsed if :c:member:" "`PyConfig.parse_argv` equals to ``1``." msgstr "" -#: c-api/init_config.rst:993 +#: c-api/init_config.rst:1014 msgid "" "Parser debug mode. If greater than ``0``, turn on parser debugging output " "(for expert only, depending on compilation options)." msgstr "" -#: c-api/init_config.rst:996 +#: c-api/init_config.rst:1017 msgid "" "Incremented by the :option:`-d` command line option. Set to the :envvar:" "`PYTHONDEBUG` environment variable value." msgstr "" -#: c-api/init_config.rst:1003 +#: c-api/init_config.rst:1020 +msgid "" +"Need a :ref:`debug build of Python ` (the ``Py_DEBUG`` macro " +"must be defined)." +msgstr "" + +#: c-api/init_config.rst:1027 msgid "" "If non-zero, calculation of path configuration is allowed to log warnings " "into ``stderr``. If equals to ``0``, suppress these warnings." msgstr "" -#: c-api/init_config.rst:1010 +#: c-api/init_config.rst:1034 msgid "Now also applies on Windows." msgstr "" -#: c-api/init_config.rst:1015 +#: c-api/init_config.rst:1039 msgid "" "The site-specific directory prefix where the platform independent Python " "files are installed: :data:`sys.prefix`." msgstr "" -#: c-api/init_config.rst:1024 +#: c-api/init_config.rst:1048 msgid "" "Program name used to initialize :c:member:`~PyConfig.executable` and in " "early error messages during Python initialization." msgstr "" -#: c-api/init_config.rst:1027 +#: c-api/init_config.rst:1051 msgid "If :func:`Py_SetProgramName` has been called, use its argument." msgstr "" -#: c-api/init_config.rst:1028 +#: c-api/init_config.rst:1052 msgid "On macOS, use :envvar:`PYTHONEXECUTABLE` environment variable if set." msgstr "" -#: c-api/init_config.rst:1029 +#: c-api/init_config.rst:1053 msgid "" "If the ``WITH_NEXT_FRAMEWORK`` macro is defined, use :envvar:" "`__PYVENV_LAUNCHER__` environment variable if set." msgstr "" -#: c-api/init_config.rst:1031 +#: c-api/init_config.rst:1055 msgid "" "Use ``argv[0]`` of :c:member:`~PyConfig.argv` if available and non-empty." msgstr "" -#: c-api/init_config.rst:1033 +#: c-api/init_config.rst:1057 msgid "" "Otherwise, use ``L\"python\"`` on Windows, or ``L\"python3\"`` on other " "platforms." msgstr "" -#: c-api/init_config.rst:1042 +#: c-api/init_config.rst:1066 msgid "" "Directory where cached ``.pyc`` files are written: :data:`sys." "pycache_prefix`." msgstr "" -#: c-api/init_config.rst:1045 +#: c-api/init_config.rst:1069 msgid "" "Set by the :option:`-X pycache_prefix=PATH <-X>` command line option and " "the :envvar:`PYTHONPYCACHEPREFIX` environment variable." msgstr "" -#: c-api/init_config.rst:1048 +#: c-api/init_config.rst:1072 msgid "If ``NULL``, :data:`sys.pycache_prefix` is set to ``None``." msgstr "" -#: c-api/init_config.rst:1054 +#: c-api/init_config.rst:1078 msgid "" "Quiet mode. If greater than ``0``, don't display the copyright and version " "at Python startup in interactive mode." msgstr "" -#: c-api/init_config.rst:1057 +#: c-api/init_config.rst:1081 msgid "Incremented by the :option:`-q` command line option." msgstr "" -#: c-api/init_config.rst:1063 +#: c-api/init_config.rst:1087 msgid "Value of the :option:`-c` command line option." msgstr "" -#: c-api/init_config.rst:1086 +#: c-api/init_config.rst:1110 msgid "Used by :c:func:`Py_RunMain`." msgstr "" -#: c-api/init_config.rst:1071 +#: c-api/init_config.rst:1095 msgid "" "Filename passed on the command line: trailing command line argument without :" "option:`-c` or :option:`-m`. It is used by the :c:func:`Py_RunMain` function." msgstr "" -#: c-api/init_config.rst:1075 +#: c-api/init_config.rst:1099 msgid "" "For example, it is set to ``script.py`` by the ``python3 script.py arg`` " "command line." msgstr "" -#: c-api/init_config.rst:1078 +#: c-api/init_config.rst:1102 msgid "See also the :c:member:`PyConfig.skip_source_first_line` option." msgstr "" -#: c-api/init_config.rst:1084 +#: c-api/init_config.rst:1108 msgid "Value of the :option:`-m` command line option." msgstr "" -#: c-api/init_config.rst:1092 -msgid "Show total reference count at exit?" +#: c-api/init_config.rst:1116 +msgid "Show total reference count at exit (excluding immortal objects)?" msgstr "" -#: c-api/init_config.rst:1094 +#: c-api/init_config.rst:1118 msgid "Set to ``1`` by :option:`-X showrefcount <-X>` command line option." msgstr "" -#: c-api/init_config.rst:1096 +#: c-api/init_config.rst:1120 msgid "" "Need a :ref:`debug build of Python ` (the ``Py_REF_DEBUG`` " "macro must be defined)." msgstr "" -#: c-api/init_config.rst:1103 +#: c-api/init_config.rst:1127 msgid "Import the :mod:`site` module at startup?" msgstr "" -#: c-api/init_config.rst:1105 +#: c-api/init_config.rst:1129 msgid "" "If equal to zero, disable the import of the module site and the site-" "dependent manipulations of :data:`sys.path` that it entails." msgstr "" -#: c-api/init_config.rst:1108 +#: c-api/init_config.rst:1132 msgid "" "Also disable these manipulations if the :mod:`site` module is explicitly " "imported later (call :func:`site.main` if you want them to be triggered)." msgstr "" -#: c-api/init_config.rst:1111 +#: c-api/init_config.rst:1135 msgid "Set to ``0`` by the :option:`-S` command line option." msgstr "" -#: c-api/init_config.rst:1113 +#: c-api/init_config.rst:1137 msgid "" ":data:`sys.flags.no_site ` is set to the inverted value of :c:" "member:`~PyConfig.site_import`." msgstr "" -#: c-api/init_config.rst:1120 +#: c-api/init_config.rst:1144 msgid "" "If non-zero, skip the first line of the :c:member:`PyConfig.run_filename` " "source." msgstr "" -#: c-api/init_config.rst:1123 +#: c-api/init_config.rst:1147 msgid "" "It allows the usage of non-Unix forms of ``#!cmd``. This is intended for a " "DOS specific hack only." msgstr "" -#: c-api/init_config.rst:1126 +#: c-api/init_config.rst:1150 msgid "Set to ``1`` by the :option:`-x` command line option." msgstr "" -#: c-api/init_config.rst:1133 +#: c-api/init_config.rst:1157 msgid "" "Encoding and encoding errors of :data:`sys.stdin`, :data:`sys.stdout` and :" "data:`sys.stderr` (but :data:`sys.stderr` always uses " "``\"backslashreplace\"`` error handler)." msgstr "" -#: c-api/init_config.rst:1137 +#: c-api/init_config.rst:1161 msgid "" "If :c:func:`Py_SetStandardStreamEncoding` has been called, use its *error* " "and *errors* arguments if they are not ``NULL``." msgstr "" -#: c-api/init_config.rst:1140 +#: c-api/init_config.rst:1164 msgid "" "Use the :envvar:`PYTHONIOENCODING` environment variable if it is non-empty." msgstr "" -#: c-api/init_config.rst:1143 +#: c-api/init_config.rst:1167 msgid "Default encoding:" msgstr "" -#: c-api/init_config.rst:1145 +#: c-api/init_config.rst:1169 msgid "``\"UTF-8\"`` if :c:member:`PyPreConfig.utf8_mode` is non-zero." msgstr "" -#: c-api/init_config.rst:1146 +#: c-api/init_config.rst:1170 msgid "Otherwise, use the :term:`locale encoding`." msgstr "" -#: c-api/init_config.rst:1148 +#: c-api/init_config.rst:1172 msgid "Default error handler:" msgstr "" -#: c-api/init_config.rst:1150 +#: c-api/init_config.rst:1174 msgid "On Windows: use ``\"surrogateescape\"``." msgstr "" -#: c-api/init_config.rst:1151 +#: c-api/init_config.rst:1175 msgid "" "``\"surrogateescape\"`` if :c:member:`PyPreConfig.utf8_mode` is non-zero, or " "if the LC_CTYPE locale is \"C\" or \"POSIX\"." msgstr "" -#: c-api/init_config.rst:1153 +#: c-api/init_config.rst:1177 msgid "``\"strict\"`` otherwise." msgstr "" -#: c-api/init_config.rst:1157 +#: c-api/init_config.rst:1181 msgid "Enable tracemalloc?" msgstr "" -#: c-api/init_config.rst:1159 +#: c-api/init_config.rst:1183 msgid "If non-zero, call :func:`tracemalloc.start` at startup." msgstr "" -#: c-api/init_config.rst:1161 +#: c-api/init_config.rst:1185 msgid "" "Set by :option:`-X tracemalloc=N <-X>` command line option and by the :" "envvar:`PYTHONTRACEMALLOC` environment variable." msgstr "" -#: c-api/init_config.rst:1168 +#: c-api/init_config.rst:1192 +msgid "Enable compatibility mode with the perf profiler?" +msgstr "" + +#: c-api/init_config.rst:1194 +msgid "" +"If non-zero, initialize the perf trampoline. See :ref:`perf_profiling` for " +"more information." +msgstr "" + +#: c-api/init_config.rst:1197 +msgid "" +"Set by :option:`-X perf <-X>` command line option and by the :envvar:" +"`PYTHONPERFSUPPORT` environment variable." +msgstr "" + +#: c-api/init_config.rst:1200 +msgid "Default: ``-1``." +msgstr "" + +#: c-api/init_config.rst:1206 msgid "Use :ref:`environment variables `?" msgstr "" -#: c-api/init_config.rst:1170 +#: c-api/init_config.rst:1208 msgid "" "If equals to zero, ignore the :ref:`environment variables `." msgstr "" -#: c-api/init_config.rst:1173 +#: c-api/init_config.rst:1211 msgid "Set to ``0`` by the :option:`-E` environment variable." msgstr "" -#: c-api/init_config.rst:1179 +#: c-api/init_config.rst:1217 msgid "If non-zero, add the user site directory to :data:`sys.path`." msgstr "" -#: c-api/init_config.rst:1181 +#: c-api/init_config.rst:1219 msgid "Set to ``0`` by the :option:`-s` and :option:`-I` command line options." msgstr "" -#: c-api/init_config.rst:1183 +#: c-api/init_config.rst:1221 msgid "Set to ``0`` by the :envvar:`PYTHONNOUSERSITE` environment variable." msgstr "" -#: c-api/init_config.rst:1189 +#: c-api/init_config.rst:1227 msgid "" "Verbose mode. If greater than ``0``, print a message each time a module is " "imported, showing the place (filename or built-in module) from which it is " "loaded." msgstr "" -#: c-api/init_config.rst:1193 +#: c-api/init_config.rst:1231 msgid "" -"If greater or equal to ``2``, print a message for each file that is checked " -"for when searching for a module. Also provides information on module cleanup " -"at exit." +"If greater than or equal to ``2``, print a message for each file that is " +"checked for when searching for a module. Also provides information on module " +"cleanup at exit." msgstr "" -#: c-api/init_config.rst:1197 +#: c-api/init_config.rst:1235 msgid "Incremented by the :option:`-v` command line option." msgstr "" -#: c-api/init_config.rst:1199 -msgid "Set to the :envvar:`PYTHONVERBOSE` environment variable value." +#: c-api/init_config.rst:1237 +msgid "Set by the :envvar:`PYTHONVERBOSE` environment variable value." msgstr "" -#: c-api/init_config.rst:1205 +#: c-api/init_config.rst:1243 msgid "" "Options of the :mod:`warnings` module to build warnings filters, lowest to " "highest priority: :data:`sys.warnoptions`." msgstr "" -#: c-api/init_config.rst:1208 +#: c-api/init_config.rst:1246 msgid "" "The :mod:`warnings` module adds :data:`sys.warnoptions` in the reverse " "order: the last :c:member:`PyConfig.warnoptions` item becomes the first item " "of :data:`warnings.filters` which is checked first (highest priority)." msgstr "" -#: c-api/init_config.rst:1213 +#: c-api/init_config.rst:1251 msgid "" "The :option:`-W` command line options adds its value to :c:member:`~PyConfig." "warnoptions`, it can be used multiple times." msgstr "" -#: c-api/init_config.rst:1216 +#: c-api/init_config.rst:1254 msgid "" "The :envvar:`PYTHONWARNINGS` environment variable can also be used to add " "warning options. Multiple options can be specified, separated by commas (``," "``)." msgstr "" -#: c-api/init_config.rst:1224 +#: c-api/init_config.rst:1262 msgid "" "If equal to ``0``, Python won't try to write ``.pyc`` files on the import of " "source modules." msgstr "" -#: c-api/init_config.rst:1227 +#: c-api/init_config.rst:1265 msgid "" "Set to ``0`` by the :option:`-B` command line option and the :envvar:" "`PYTHONDONTWRITEBYTECODE` environment variable." msgstr "" -#: c-api/init_config.rst:1230 +#: c-api/init_config.rst:1268 msgid "" ":data:`sys.dont_write_bytecode` is initialized to the inverted value of :c:" "member:`~PyConfig.write_bytecode`." msgstr "" -#: c-api/init_config.rst:1237 +#: c-api/init_config.rst:1275 msgid "Values of the :option:`-X` command line options: :data:`sys._xoptions`." msgstr "" -#: c-api/init_config.rst:1241 +#: c-api/init_config.rst:1279 msgid "" "If :c:member:`~PyConfig.parse_argv` is non-zero, :c:member:`~PyConfig.argv` " "arguments are parsed the same way the regular Python parses :ref:`command " @@ -1584,29 +1637,29 @@ msgid "" "c:member:`~PyConfig.argv`." msgstr "" -#: c-api/init_config.rst:1246 +#: c-api/init_config.rst:1284 msgid "" "The :c:member:`~PyConfig.xoptions` options are parsed to set other options: " "see the :option:`-X` command line option." msgstr "" -#: c-api/init_config.rst:1251 +#: c-api/init_config.rst:1289 msgid "The ``show_alloc_count`` field has been removed." msgstr "" -#: c-api/init_config.rst:1255 +#: c-api/init_config.rst:1293 msgid "Initialization with PyConfig" msgstr "" -#: c-api/init_config.rst:1257 +#: c-api/init_config.rst:1295 msgid "Function to initialize Python:" msgstr "" -#: c-api/init_config.rst:1261 +#: c-api/init_config.rst:1299 msgid "Initialize Python from *config* configuration." msgstr "" -#: c-api/init_config.rst:1266 +#: c-api/init_config.rst:1304 msgid "" "If :c:func:`PyImport_FrozenModules`, :c:func:`PyImport_AppendInittab` or :c:" "func:`PyImport_ExtendInittab` are used, they must be set or called after " @@ -1615,17 +1668,17 @@ msgid "" "`PyImport_ExtendInittab` must be called before each Python initialization." msgstr "" -#: c-api/init_config.rst:1273 +#: c-api/init_config.rst:1311 msgid "" "The current configuration (``PyConfig`` type) is stored in " "``PyInterpreterState.config``." msgstr "" -#: c-api/init_config.rst:1276 +#: c-api/init_config.rst:1314 msgid "Example setting the program name::" msgstr "" -#: c-api/init_config.rst:1304 +#: c-api/init_config.rst:1342 msgid "" "More complete example modifying the default configuration, read the " "configuration, and then override some parameters. Note that since 3.11, many " @@ -1634,18 +1687,18 @@ msgid "" "called will be left unchanged by initialization::" msgstr "" -#: c-api/init_config.rst:1367 +#: c-api/init_config.rst:1405 msgid "Isolated Configuration" msgstr "" -#: c-api/init_config.rst:1369 +#: c-api/init_config.rst:1407 msgid "" ":c:func:`PyPreConfig_InitIsolatedConfig` and :c:func:" "`PyConfig_InitIsolatedConfig` functions create a configuration to isolate " "Python from the system. For example, to embed Python into an application." msgstr "" -#: c-api/init_config.rst:1374 +#: c-api/init_config.rst:1412 msgid "" "This configuration ignores global configuration variables, environment " "variables, command line arguments (:c:member:`PyConfig.argv` is not parsed) " @@ -1653,125 +1706,125 @@ msgid "" "LC_CTYPE locale are left unchanged. Signal handlers are not installed." msgstr "" -#: c-api/init_config.rst:1379 +#: c-api/init_config.rst:1417 msgid "" "Configuration files are still used with this configuration to determine " "paths that are unspecified. Ensure :c:member:`PyConfig.home` is specified to " "avoid computing the default path configuration." msgstr "" -#: c-api/init_config.rst:1387 +#: c-api/init_config.rst:1425 msgid "Python Configuration" msgstr "" -#: c-api/init_config.rst:1389 +#: c-api/init_config.rst:1427 msgid "" ":c:func:`PyPreConfig_InitPythonConfig` and :c:func:" "`PyConfig_InitPythonConfig` functions create a configuration to build a " "customized Python which behaves as the regular Python." msgstr "" -#: c-api/init_config.rst:1393 +#: c-api/init_config.rst:1431 msgid "" "Environments variables and command line arguments are used to configure " "Python, whereas global configuration variables are ignored." msgstr "" -#: c-api/init_config.rst:1396 +#: c-api/init_config.rst:1434 msgid "" "This function enables C locale coercion (:pep:`538`) and :ref:`Python UTF-8 " "Mode ` (:pep:`540`) depending on the LC_CTYPE locale, :envvar:" "`PYTHONUTF8` and :envvar:`PYTHONCOERCECLOCALE` environment variables." msgstr "" -#: c-api/init_config.rst:1405 +#: c-api/init_config.rst:1443 msgid "Python Path Configuration" msgstr "" -#: c-api/init_config.rst:1407 +#: c-api/init_config.rst:1445 msgid ":c:type:`PyConfig` contains multiple fields for the path configuration:" msgstr "" -#: c-api/init_config.rst:1409 +#: c-api/init_config.rst:1447 msgid "Path configuration inputs:" msgstr "" -#: c-api/init_config.rst:1411 +#: c-api/init_config.rst:1449 msgid ":c:member:`PyConfig.home`" msgstr "" -#: c-api/init_config.rst:1412 +#: c-api/init_config.rst:1450 msgid ":c:member:`PyConfig.platlibdir`" msgstr "" -#: c-api/init_config.rst:1413 +#: c-api/init_config.rst:1451 msgid ":c:member:`PyConfig.pathconfig_warnings`" msgstr "" -#: c-api/init_config.rst:1414 +#: c-api/init_config.rst:1452 msgid ":c:member:`PyConfig.program_name`" msgstr "" -#: c-api/init_config.rst:1415 +#: c-api/init_config.rst:1453 msgid ":c:member:`PyConfig.pythonpath_env`" msgstr "" -#: c-api/init_config.rst:1416 +#: c-api/init_config.rst:1454 msgid "current working directory: to get absolute paths" msgstr "" -#: c-api/init_config.rst:1417 +#: c-api/init_config.rst:1455 msgid "" "``PATH`` environment variable to get the program full path (from :c:member:" "`PyConfig.program_name`)" msgstr "" -#: c-api/init_config.rst:1419 +#: c-api/init_config.rst:1457 msgid "``__PYVENV_LAUNCHER__`` environment variable" msgstr "" -#: c-api/init_config.rst:1420 +#: c-api/init_config.rst:1458 msgid "" "(Windows only) Application paths in the registry under " "\"Software\\Python\\PythonCore\\X.Y\\PythonPath\" of HKEY_CURRENT_USER and " "HKEY_LOCAL_MACHINE (where X.Y is the Python version)." msgstr "" -#: c-api/init_config.rst:1424 +#: c-api/init_config.rst:1462 msgid "Path configuration output fields:" msgstr "" -#: c-api/init_config.rst:1426 +#: c-api/init_config.rst:1464 msgid ":c:member:`PyConfig.base_exec_prefix`" msgstr "" -#: c-api/init_config.rst:1427 +#: c-api/init_config.rst:1465 msgid ":c:member:`PyConfig.base_executable`" msgstr "" -#: c-api/init_config.rst:1428 +#: c-api/init_config.rst:1466 msgid ":c:member:`PyConfig.base_prefix`" msgstr "" -#: c-api/init_config.rst:1429 +#: c-api/init_config.rst:1467 msgid ":c:member:`PyConfig.exec_prefix`" msgstr "" -#: c-api/init_config.rst:1430 +#: c-api/init_config.rst:1468 msgid ":c:member:`PyConfig.executable`" msgstr "" -#: c-api/init_config.rst:1431 +#: c-api/init_config.rst:1469 msgid "" ":c:member:`PyConfig.module_search_paths_set`, :c:member:`PyConfig." "module_search_paths`" msgstr "" -#: c-api/init_config.rst:1433 +#: c-api/init_config.rst:1471 msgid ":c:member:`PyConfig.prefix`" msgstr "" -#: c-api/init_config.rst:1435 +#: c-api/init_config.rst:1473 msgid "" "If at least one \"output field\" is not set, Python calculates the path " "configuration to fill unset fields. If :c:member:`~PyConfig." @@ -1780,7 +1833,7 @@ msgid "" "module_search_paths_set` is set to ``1``." msgstr "" -#: c-api/init_config.rst:1441 +#: c-api/init_config.rst:1479 msgid "" "It is possible to completely ignore the function calculating the default " "path configuration by setting explicitly all path configuration output " @@ -1790,52 +1843,52 @@ msgid "" "modification." msgstr "" -#: c-api/init_config.rst:1448 +#: c-api/init_config.rst:1486 msgid "" "Set :c:member:`~PyConfig.pathconfig_warnings` to ``0`` to suppress warnings " "when calculating the path configuration (Unix only, Windows does not log any " "warning)." msgstr "" -#: c-api/init_config.rst:1451 +#: c-api/init_config.rst:1489 msgid "" "If :c:member:`~PyConfig.base_prefix` or :c:member:`~PyConfig." "base_exec_prefix` fields are not set, they inherit their value from :c:" "member:`~PyConfig.prefix` and :c:member:`~PyConfig.exec_prefix` respectively." msgstr "" -#: c-api/init_config.rst:1455 +#: c-api/init_config.rst:1493 msgid ":c:func:`Py_RunMain` and :c:func:`Py_Main` modify :data:`sys.path`:" msgstr "" -#: c-api/init_config.rst:1457 +#: c-api/init_config.rst:1495 msgid "" "If :c:member:`~PyConfig.run_filename` is set and is a directory which " "contains a ``__main__.py`` script, prepend :c:member:`~PyConfig." "run_filename` to :data:`sys.path`." msgstr "" -#: c-api/init_config.rst:1460 +#: c-api/init_config.rst:1498 msgid "If :c:member:`~PyConfig.isolated` is zero:" msgstr "" -#: c-api/init_config.rst:1462 +#: c-api/init_config.rst:1500 msgid "" "If :c:member:`~PyConfig.run_module` is set, prepend the current directory " "to :data:`sys.path`. Do nothing if the current directory cannot be read." msgstr "" -#: c-api/init_config.rst:1464 +#: c-api/init_config.rst:1502 msgid "" "If :c:member:`~PyConfig.run_filename` is set, prepend the directory of the " "filename to :data:`sys.path`." msgstr "" -#: c-api/init_config.rst:1466 +#: c-api/init_config.rst:1504 msgid "Otherwise, prepend an empty string to :data:`sys.path`." msgstr "" -#: c-api/init_config.rst:1468 +#: c-api/init_config.rst:1506 msgid "" "If :c:member:`~PyConfig.site_import` is non-zero, :data:`sys.path` can be " "modified by the :mod:`site` module. If :c:member:`~PyConfig." @@ -1844,172 +1897,170 @@ msgid "" "data:`sys.path`." msgstr "" -#: c-api/init_config.rst:1474 +#: c-api/init_config.rst:1512 msgid "The following configuration files are used by the path configuration:" msgstr "" -#: c-api/init_config.rst:1476 +#: c-api/init_config.rst:1514 msgid "``pyvenv.cfg``" msgstr "" -#: c-api/init_config.rst:1477 +#: c-api/init_config.rst:1515 msgid "``._pth`` file (ex: ``python._pth``)" msgstr "" -#: c-api/init_config.rst:1478 +#: c-api/init_config.rst:1516 msgid "``pybuilddir.txt`` (Unix only)" msgstr "" -#: c-api/init_config.rst:1480 +#: c-api/init_config.rst:1518 msgid "If a ``._pth`` file is present:" msgstr "" -#: c-api/init_config.rst:1482 +#: c-api/init_config.rst:1520 msgid "Set :c:member:`~PyConfig.isolated` to ``1``." msgstr "" -#: c-api/init_config.rst:1484 +#: c-api/init_config.rst:1521 +msgid "Set :c:member:`~PyConfig.use_environment` to ``0``." +msgstr "" + +#: c-api/init_config.rst:1522 msgid "Set :c:member:`~PyConfig.site_import` to ``0``." msgstr "" -#: c-api/init_config.rst:1485 +#: c-api/init_config.rst:1523 msgid "Set :c:member:`~PyConfig.safe_path` to ``1``." msgstr "" -#: c-api/init_config.rst:1487 +#: c-api/init_config.rst:1525 msgid "" "The ``__PYVENV_LAUNCHER__`` environment variable is used to set :c:member:" "`PyConfig.base_executable`" msgstr "" -#: c-api/init_config.rst:1492 +#: c-api/init_config.rst:1530 msgid "Py_RunMain()" msgstr "" -#: c-api/init_config.rst:1496 +#: c-api/init_config.rst:1534 msgid "" "Execute the command (:c:member:`PyConfig.run_command`), the script (:c:" "member:`PyConfig.run_filename`) or the module (:c:member:`PyConfig." "run_module`) specified on the command line or in the configuration." msgstr "" -#: c-api/init_config.rst:1501 +#: c-api/init_config.rst:1539 msgid "By default and when if :option:`-i` option is used, run the REPL." msgstr "" -#: c-api/init_config.rst:1503 +#: c-api/init_config.rst:1541 msgid "" "Finally, finalizes Python and returns an exit status that can be passed to " "the ``exit()`` function." msgstr "" -#: c-api/init_config.rst:1506 +#: c-api/init_config.rst:1544 msgid "" "See :ref:`Python Configuration ` for an example of " "customized Python always running in isolated mode using :c:func:`Py_RunMain`." msgstr "" -#: c-api/init_config.rst:1512 +#: c-api/init_config.rst:1550 msgid "Py_GetArgcArgv()" msgstr "" -#: c-api/init_config.rst:1516 +#: c-api/init_config.rst:1554 msgid "Get the original command line arguments, before Python modified them." msgstr "" -#: c-api/init_config.rst:1518 +#: c-api/init_config.rst:1556 msgid "See also :c:member:`PyConfig.orig_argv` member." msgstr "" -#: c-api/init_config.rst:1522 +#: c-api/init_config.rst:1560 msgid "Multi-Phase Initialization Private Provisional API" msgstr "" -#: c-api/init_config.rst:1524 +#: c-api/init_config.rst:1562 msgid "" "This section is a private provisional API introducing multi-phase " "initialization, the core feature of :pep:`432`:" msgstr "" -#: c-api/init_config.rst:1527 +#: c-api/init_config.rst:1565 msgid "\"Core\" initialization phase, \"bare minimum Python\":" msgstr "" -#: c-api/init_config.rst:1529 +#: c-api/init_config.rst:1567 msgid "Builtin types;" msgstr "" -#: c-api/init_config.rst:1530 +#: c-api/init_config.rst:1568 msgid "Builtin exceptions;" msgstr "" -#: c-api/init_config.rst:1531 +#: c-api/init_config.rst:1569 msgid "Builtin and frozen modules;" msgstr "" -#: c-api/init_config.rst:1532 +#: c-api/init_config.rst:1570 msgid "" "The :mod:`sys` module is only partially initialized (ex: :data:`sys.path` " "doesn't exist yet)." msgstr "" -#: c-api/init_config.rst:1535 +#: c-api/init_config.rst:1573 msgid "\"Main\" initialization phase, Python is fully initialized:" msgstr "" -#: c-api/init_config.rst:1537 +#: c-api/init_config.rst:1575 msgid "Install and configure :mod:`importlib`;" msgstr "" -#: c-api/init_config.rst:1538 +#: c-api/init_config.rst:1576 msgid "Apply the :ref:`Path Configuration `;" msgstr "" -#: c-api/init_config.rst:1539 +#: c-api/init_config.rst:1577 msgid "Install signal handlers;" msgstr "" -#: c-api/init_config.rst:1540 +#: c-api/init_config.rst:1578 msgid "" "Finish :mod:`sys` module initialization (ex: create :data:`sys.stdout` and :" "data:`sys.path`);" msgstr "" -#: c-api/init_config.rst:1542 +#: c-api/init_config.rst:1580 msgid "" "Enable optional features like :mod:`faulthandler` and :mod:`tracemalloc`;" msgstr "" -#: c-api/init_config.rst:1543 +#: c-api/init_config.rst:1581 msgid "Import the :mod:`site` module;" msgstr "" -#: c-api/init_config.rst:1544 +#: c-api/init_config.rst:1582 msgid "etc." msgstr "" -#: c-api/init_config.rst:1546 +#: c-api/init_config.rst:1584 msgid "Private provisional API:" msgstr "" -#: c-api/init_config.rst:1548 +#: c-api/init_config.rst:1586 msgid "" ":c:member:`PyConfig._init_main`: if set to ``0``, :c:func:" "`Py_InitializeFromConfig` stops at the \"Core\" initialization phase." msgstr "" -#: c-api/init_config.rst:1550 -msgid "" -":c:member:`PyConfig._isolated_interpreter`: if non-zero, disallow threads, " -"subprocesses and fork." -msgstr "" - -#: c-api/init_config.rst:1555 +#: c-api/init_config.rst:1591 msgid "" "Move to the \"Main\" initialization phase, finish the Python initialization." msgstr "" -#: c-api/init_config.rst:1557 +#: c-api/init_config.rst:1593 msgid "" "No module is imported during the \"Core\" phase and the ``importlib`` module " "is not configured: the :ref:`Path Configuration ` is only " @@ -2018,14 +2069,14 @@ msgid "" "maybe install a custom :data:`sys.meta_path` importer or an import hook, etc." msgstr "" -#: c-api/init_config.rst:1563 +#: c-api/init_config.rst:1599 msgid "" -"It may become possible to calculatin the :ref:`Path Configuration ` in Python, after the Core phase and before the Main phase, which is " "one of the :pep:`432` motivation." msgstr "" -#: c-api/init_config.rst:1567 +#: c-api/init_config.rst:1603 msgid "" "The \"Core\" phase is not properly defined: what should be and what should " "not be available at this phase is not specified yet. The API is marked as " @@ -2033,7 +2084,7 @@ msgid "" "until a proper public API is designed." msgstr "" -#: c-api/init_config.rst:1572 +#: c-api/init_config.rst:1608 msgid "" "Example running Python code between \"Core\" and \"Main\" initialization " "phases::" diff --git a/c-api/intro.po b/c-api/intro.po index bcfc9f941..0bc72680e 100644 --- a/c-api/intro.po +++ b/c-api/intro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -209,7 +209,7 @@ msgstr "" #: c-api/intro.rst:155 msgid "" "Like ``getenv(s)``, but returns ``NULL`` if :option:`-E` was passed on the " -"command line (i.e. if ``Py_IgnoreEnvironmentFlag`` is set)." +"command line (see :c:member:`PyConfig.use_environment`)." msgstr "" #: c-api/intro.rst:160 diff --git a/c-api/long.po b/c-api/long.po index b64055401..ba2c9811c 100644 --- a/c-api/long.po +++ b/c-api/long.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -105,61 +105,63 @@ msgstr "" #: c-api/long.rst:86 msgid "" "Return a new :c:type:`PyLongObject` based on the string value in *str*, " -"which is interpreted according to the radix in *base*. If *pend* is non-" -"``NULL``, *\\*pend* will point to the first character in *str* which follows " -"the representation of the number. If *base* is ``0``, *str* is interpreted " -"using the :ref:`integers` definition; in this case, leading zeros in a non-" -"zero decimal number raises a :exc:`ValueError`. If *base* is not ``0``, it " -"must be between ``2`` and ``36``, inclusive. Leading spaces and single " -"underscores after a base specifier and between digits are ignored. If there " -"are no digits, :exc:`ValueError` will be raised." +"which is interpreted according to the radix in *base*, or ``NULL`` on " +"failure. If *pend* is non-``NULL``, *\\*pend* will point to the end of " +"*str* on success or to the first character that could not be processed on " +"error. If *base* is ``0``, *str* is interpreted using the :ref:`integers` " +"definition; in this case, leading zeros in a non-zero decimal number raises " +"a :exc:`ValueError`. If *base* is not ``0``, it must be between ``2`` and " +"``36``, inclusive. Leading and trailing whitespace and single underscores " +"after a base specifier and between digits are ignored. If there are no " +"digits or *str* is not NULL-terminated following the digits and trailing " +"whitespace, :exc:`ValueError` will be raised." msgstr "" -#: c-api/long.rst:96 +#: c-api/long.rst:97 msgid "" "Python methods :meth:`int.to_bytes` and :meth:`int.from_bytes` to convert a :" "c:type:`PyLongObject` to/from an array of bytes in base ``256``. You can " "call those from C using :c:func:`PyObject_CallMethod`." msgstr "" -#: c-api/long.rst:103 +#: c-api/long.rst:104 msgid "" "Convert a sequence of Unicode digits in the string *u* to a Python integer " "value." msgstr "" -#: c-api/long.rst:111 +#: c-api/long.rst:112 msgid "" "Create a Python integer from the pointer *p*. The pointer value can be " "retrieved from the resulting value using :c:func:`PyLong_AsVoidPtr`." msgstr "" -#: c-api/long.rst:140 +#: c-api/long.rst:141 msgid "" "Return a C :c:expr:`long` representation of *obj*. If *obj* is not an " "instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` " "method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:126 +#: c-api/long.rst:127 msgid "" "Raise :exc:`OverflowError` if the value of *obj* is out of range for a :c:" "expr:`long`." msgstr "" -#: c-api/long.rst:149 c-api/long.rst:190 c-api/long.rst:213 +#: c-api/long.rst:150 c-api/long.rst:191 c-api/long.rst:214 msgid "Returns ``-1`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: c-api/long.rst:151 c-api/long.rst:194 c-api/long.rst:298 +#: c-api/long.rst:152 c-api/long.rst:195 c-api/long.rst:299 msgid "Use :meth:`~object.__index__` if available." msgstr "" -#: c-api/long.rst:154 c-api/long.rst:197 c-api/long.rst:301 +#: c-api/long.rst:155 c-api/long.rst:198 c-api/long.rst:302 msgid "This function will no longer use :meth:`~object.__int__`." msgstr "" -#: c-api/long.rst:144 +#: c-api/long.rst:145 msgid "" "If the value of *obj* is greater than :c:macro:`LONG_MAX` or less than :c:" "macro:`LONG_MIN`, set *\\*overflow* to ``1`` or ``-1``, respectively, and " @@ -167,20 +169,20 @@ msgid "" "exception occurs set *\\*overflow* to ``0`` and return ``-1`` as usual." msgstr "" -#: c-api/long.rst:181 +#: c-api/long.rst:182 msgid "" "Return a C :c:expr:`long long` representation of *obj*. If *obj* is not an " "instance of :c:type:`PyLongObject`, first call its :meth:`~object.__index__` " "method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:167 +#: c-api/long.rst:168 msgid "" "Raise :exc:`OverflowError` if the value of *obj* is out of range for a :c:" "expr:`long long`." msgstr "" -#: c-api/long.rst:185 +#: c-api/long.rst:186 msgid "" "If the value of *obj* is greater than :c:macro:`LLONG_MAX` or less than :c:" "macro:`LLONG_MIN`, set *\\*overflow* to ``1`` or ``-1``, respectively, and " @@ -188,133 +190,133 @@ msgid "" "exception occurs set *\\*overflow* to ``0`` and return ``-1`` as usual." msgstr "" -#: c-api/long.rst:207 +#: c-api/long.rst:208 msgid "" "Return a C :c:type:`Py_ssize_t` representation of *pylong*. *pylong* must " "be an instance of :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:210 +#: c-api/long.rst:211 msgid "" "Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:" "type:`Py_ssize_t`." msgstr "" -#: c-api/long.rst:222 +#: c-api/long.rst:223 msgid "" "Return a C :c:expr:`unsigned long` representation of *pylong*. *pylong* " "must be an instance of :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:225 +#: c-api/long.rst:226 msgid "" "Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:" "expr:`unsigned long`." msgstr "" -#: c-api/long.rst:228 +#: c-api/long.rst:229 msgid "" "Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to " "disambiguate." msgstr "" -#: c-api/long.rst:238 +#: c-api/long.rst:239 msgid "" "Return a C :c:type:`size_t` representation of *pylong*. *pylong* must be an " "instance of :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:241 +#: c-api/long.rst:242 msgid "" "Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:" "type:`size_t`." msgstr "" -#: c-api/long.rst:244 +#: c-api/long.rst:245 msgid "" "Returns ``(size_t)-1`` on error. Use :c:func:`PyErr_Occurred` to " "disambiguate." msgstr "" -#: c-api/long.rst:253 +#: c-api/long.rst:254 msgid "" "Return a C :c:expr:`unsigned long long` representation of *pylong*. " "*pylong* must be an instance of :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:256 +#: c-api/long.rst:257 msgid "" "Raise :exc:`OverflowError` if the value of *pylong* is out of range for an :" "c:expr:`unsigned long long`." msgstr "" -#: c-api/long.rst:259 +#: c-api/long.rst:260 msgid "" "Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` to " "disambiguate." msgstr "" -#: c-api/long.rst:262 +#: c-api/long.rst:263 msgid "" "A negative *pylong* now raises :exc:`OverflowError`, not :exc:`TypeError`." msgstr "" -#: c-api/long.rst:268 +#: c-api/long.rst:269 msgid "" "Return a C :c:expr:`unsigned long` representation of *obj*. If *obj* is not " "an instance of :c:type:`PyLongObject`, first call its :meth:`~object." "__index__` method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:272 +#: c-api/long.rst:273 msgid "" "If the value of *obj* is out of range for an :c:expr:`unsigned long`, return " "the reduction of that value modulo ``ULONG_MAX + 1``." msgstr "" -#: c-api/long.rst:275 +#: c-api/long.rst:276 msgid "" "Returns ``(unsigned long)-1`` on error. Use :c:func:`PyErr_Occurred` to " "disambiguate." msgstr "" -#: c-api/long.rst:287 +#: c-api/long.rst:288 msgid "" "Return a C :c:expr:`unsigned long long` representation of *obj*. If *obj* " "is not an instance of :c:type:`PyLongObject`, first call its :meth:`~object." "__index__` method (if present) to convert it to a :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:292 +#: c-api/long.rst:293 msgid "" "If the value of *obj* is out of range for an :c:expr:`unsigned long long`, " "return the reduction of that value modulo ``ULLONG_MAX + 1``." msgstr "" -#: c-api/long.rst:295 +#: c-api/long.rst:296 msgid "" "Returns ``(unsigned long long)-1`` on error. Use :c:func:`PyErr_Occurred` " "to disambiguate." msgstr "" -#: c-api/long.rst:307 +#: c-api/long.rst:308 msgid "" "Return a C :c:expr:`double` representation of *pylong*. *pylong* must be an " "instance of :c:type:`PyLongObject`." msgstr "" -#: c-api/long.rst:310 +#: c-api/long.rst:311 msgid "" "Raise :exc:`OverflowError` if the value of *pylong* is out of range for a :c:" "expr:`double`." msgstr "" -#: c-api/long.rst:313 +#: c-api/long.rst:314 msgid "" "Returns ``-1.0`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" -#: c-api/long.rst:318 +#: c-api/long.rst:319 msgid "" "Convert a Python integer *pylong* to a C :c:expr:`void` pointer. If *pylong* " "cannot be converted, an :exc:`OverflowError` will be raised. This is only " @@ -322,11 +324,44 @@ msgid "" "c:func:`PyLong_FromVoidPtr`." msgstr "" -#: c-api/long.rst:323 +#: c-api/long.rst:324 msgid "" "Returns ``NULL`` on error. Use :c:func:`PyErr_Occurred` to disambiguate." msgstr "" +#: c-api/long.rst:329 +msgid "Return 1 if *op* is compact, 0 otherwise." +msgstr "" + +#: c-api/long.rst:331 +msgid "" +"This function makes it possible for performance-critical code to implement a " +"“fast path” for small integers. For compact values use :c:func:" +"`PyUnstable_Long_CompactValue`; for others fall back to a :c:func:" +"`PyLong_As* ` function or :c:func:`calling " +"` :meth:`int.to_bytes`." +msgstr "" + +#: c-api/long.rst:337 +msgid "The speedup is expected to be negligible for most users." +msgstr "" + +#: c-api/long.rst:339 +msgid "" +"Exactly what values are considered compact is an implementation detail and " +"is subject to change." +msgstr "" + +#: c-api/long.rst:344 +msgid "" +"If *op* is compact, as determined by :c:func:`PyUnstable_Long_IsCompact`, " +"return its value." +msgstr "" + +#: c-api/long.rst:347 +msgid "Otherwise, the return value is undefined." +msgstr "" + #: c-api/long.rst:8 msgid "object" msgstr "" @@ -339,22 +374,22 @@ msgstr "" msgid "integer" msgstr "" -#: c-api/long.rst:118 +#: c-api/long.rst:119 msgid "LONG_MAX" msgstr "" -#: c-api/long.rst:160 c-api/long.rst:218 c-api/long.rst:250 +#: c-api/long.rst:161 c-api/long.rst:219 c-api/long.rst:251 msgid "OverflowError (built-in exception)" msgstr "" -#: c-api/long.rst:203 +#: c-api/long.rst:204 msgid "PY_SSIZE_T_MAX" msgstr "" -#: c-api/long.rst:218 +#: c-api/long.rst:219 msgid "ULONG_MAX" msgstr "" -#: c-api/long.rst:234 +#: c-api/long.rst:235 msgid "SIZE_MAX" msgstr "" diff --git a/c-api/memory.po b/c-api/memory.po index 993108047..e3a95e31b 100644 --- a/c-api/memory.po +++ b/c-api/memory.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -550,19 +550,19 @@ msgid "" "following fields:" msgstr "" -#: c-api/memory.rst:651 +#: c-api/memory.rst:657 msgid "Field" msgstr "" -#: c-api/memory.rst:651 +#: c-api/memory.rst:657 msgid "Meaning" msgstr "" -#: c-api/memory.rst:653 +#: c-api/memory.rst:659 msgid "``void *ctx``" msgstr "" -#: c-api/memory.rst:653 +#: c-api/memory.rst:659 msgid "user context passed as first argument" msgstr "" @@ -683,22 +683,29 @@ msgstr "" #: c-api/memory.rst:479 msgid "" +"For the remaining domains, the allocator must also be thread-safe: the " +"allocator may be called in different interpreters that do not share a " +"``GIL``." +msgstr "" + +#: c-api/memory.rst:483 +msgid "" "If the new allocator is not a hook (does not call the previous allocator), " "the :c:func:`PyMem_SetupDebugHooks` function must be called to reinstall the " "debug hooks on top on the new allocator." msgstr "" -#: c-api/memory.rst:483 +#: c-api/memory.rst:487 msgid "" "See also :c:member:`PyPreConfig.allocator` and :ref:`Preinitialize Python " "with PyPreConfig `." msgstr "" -#: c-api/memory.rst:488 +#: c-api/memory.rst:492 msgid ":c:func:`PyMem_SetAllocator` does have the following contract:" msgstr "" -#: c-api/memory.rst:490 +#: c-api/memory.rst:494 msgid "" "It can be called after :c:func:`Py_PreInitialize` and before :c:func:" "`Py_InitializeFromConfig` to install a custom memory allocator. There are no " @@ -708,7 +715,7 @@ msgid "" "domains>` for more information." msgstr "" -#: c-api/memory.rst:498 +#: c-api/memory.rst:502 msgid "" "If called after Python has finish initializing (after :c:func:" "`Py_InitializeFromConfig` has been called) the allocator **must** wrap the " @@ -717,16 +724,20 @@ msgid "" msgstr "" #: c-api/memory.rst:507 +msgid "All allocators must be thread-safe." +msgstr "" + +#: c-api/memory.rst:513 msgid "" "Setup :ref:`debug hooks in the Python memory allocators ` " "to detect memory errors." msgstr "" -#: c-api/memory.rst:514 +#: c-api/memory.rst:520 msgid "Debug hooks on the Python memory allocators" msgstr "" -#: c-api/memory.rst:516 +#: c-api/memory.rst:522 msgid "" "When :ref:`Python is built in debug mode `, the :c:func:" "`PyMem_SetupDebugHooks` function is called at the :ref:`Python " @@ -734,19 +745,19 @@ msgid "" "allocators to detect memory errors." msgstr "" -#: c-api/memory.rst:521 +#: c-api/memory.rst:527 msgid "" "The :envvar:`PYTHONMALLOC` environment variable can be used to install debug " "hooks on a Python compiled in release mode (ex: ``PYTHONMALLOC=debug``)." msgstr "" -#: c-api/memory.rst:524 +#: c-api/memory.rst:530 msgid "" "The :c:func:`PyMem_SetupDebugHooks` function can be used to set debug hooks " "after calling :c:func:`PyMem_SetAllocator`." msgstr "" -#: c-api/memory.rst:527 +#: c-api/memory.rst:533 msgid "" "These debug hooks fill dynamically allocated memory blocks with special, " "recognizable bit patterns. Newly allocated memory is filled with the byte " @@ -756,25 +767,25 @@ msgid "" "these bytes are unlikely to be valid addresses, floats, or ASCII strings." msgstr "" -#: c-api/memory.rst:534 +#: c-api/memory.rst:540 msgid "Runtime checks:" msgstr "" -#: c-api/memory.rst:536 +#: c-api/memory.rst:542 msgid "" "Detect API violations. For example, detect if :c:func:`PyObject_Free` is " "called on a memory block allocated by :c:func:`PyMem_Malloc`." msgstr "" -#: c-api/memory.rst:538 +#: c-api/memory.rst:544 msgid "Detect write before the start of the buffer (buffer underflow)." msgstr "" -#: c-api/memory.rst:539 +#: c-api/memory.rst:545 msgid "Detect write after the end of the buffer (buffer overflow)." msgstr "" -#: c-api/memory.rst:540 +#: c-api/memory.rst:546 msgid "" "Check that the :term:`GIL ` is held when allocator " "functions of :c:macro:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) " @@ -782,7 +793,7 @@ msgid "" "called." msgstr "" -#: c-api/memory.rst:545 +#: c-api/memory.rst:551 msgid "" "On error, the debug hooks use the :mod:`tracemalloc` module to get the " "traceback where a memory block was allocated. The traceback is only " @@ -790,7 +801,7 @@ msgid "" "memory block was traced." msgstr "" -#: c-api/memory.rst:550 +#: c-api/memory.rst:556 msgid "" "Let *S* = ``sizeof(size_t)``. ``2*S`` bytes are added at each end of each " "block of *N* bytes requested. The memory layout is like so, where p " @@ -800,49 +811,49 @@ msgid "" "from a Python slice):" msgstr "" -#: c-api/memory.rst:557 +#: c-api/memory.rst:563 msgid "``p[-2*S:-S]``" msgstr "" -#: c-api/memory.rst:557 +#: c-api/memory.rst:563 msgid "" "Number of bytes originally asked for. This is a size_t, big-endian (easier " "to read in a memory dump)." msgstr "" -#: c-api/memory.rst:564 +#: c-api/memory.rst:570 msgid "``p[-S]``" msgstr "" -#: c-api/memory.rst:560 +#: c-api/memory.rst:566 msgid "API identifier (ASCII character):" msgstr "" -#: c-api/memory.rst:562 +#: c-api/memory.rst:568 msgid "``'r'`` for :c:macro:`PYMEM_DOMAIN_RAW`." msgstr "" -#: c-api/memory.rst:563 +#: c-api/memory.rst:569 msgid "``'m'`` for :c:macro:`PYMEM_DOMAIN_MEM`." msgstr "" -#: c-api/memory.rst:564 +#: c-api/memory.rst:570 msgid "``'o'`` for :c:macro:`PYMEM_DOMAIN_OBJ`." msgstr "" -#: c-api/memory.rst:567 +#: c-api/memory.rst:573 msgid "``p[-S+1:0]``" msgstr "" -#: c-api/memory.rst:567 +#: c-api/memory.rst:573 msgid "Copies of PYMEM_FORBIDDENBYTE. Used to catch under- writes and reads." msgstr "" -#: c-api/memory.rst:576 +#: c-api/memory.rst:582 msgid "``p[0:N]``" msgstr "" -#: c-api/memory.rst:570 +#: c-api/memory.rst:576 msgid "" "The requested memory, filled with copies of PYMEM_CLEANBYTE, used to catch " "reference to uninitialized memory. When a realloc-like function is called " @@ -853,25 +864,25 @@ msgid "" "bytes are also filled with PYMEM_DEADBYTE." msgstr "" -#: c-api/memory.rst:579 +#: c-api/memory.rst:585 msgid "``p[N:N+S]``" msgstr "" -#: c-api/memory.rst:579 +#: c-api/memory.rst:585 msgid "Copies of PYMEM_FORBIDDENBYTE. Used to catch over- writes and reads." msgstr "" -#: c-api/memory.rst:590 +#: c-api/memory.rst:596 msgid "``p[N+S:N+2*S]``" msgstr "" -#: c-api/memory.rst:582 +#: c-api/memory.rst:588 msgid "" "Only used if the ``PYMEM_DEBUG_SERIALNO`` macro is defined (not defined by " "default)." msgstr "" -#: c-api/memory.rst:585 +#: c-api/memory.rst:591 msgid "" "A serial number, incremented by 1 on each call to a malloc-like or realloc-" "like function. Big-endian :c:type:`size_t`. If \"bad memory\" is detected " @@ -881,7 +892,7 @@ msgid "" "number is incremented, and exists so you can set such a breakpoint easily." msgstr "" -#: c-api/memory.rst:592 +#: c-api/memory.rst:598 msgid "" "A realloc-like or free-like function first checks that the " "PYMEM_FORBIDDENBYTE bytes at each end are intact. If they've been altered, " @@ -894,7 +905,7 @@ msgid "" "getting used)." msgstr "" -#: c-api/memory.rst:601 +#: c-api/memory.rst:607 msgid "" "The :c:func:`PyMem_SetupDebugHooks` function now also works on Python " "compiled in release mode. On error, the debug hooks now use :mod:" @@ -903,7 +914,7 @@ msgid "" "`PYMEM_DOMAIN_OBJ` and :c:macro:`PYMEM_DOMAIN_MEM` domains are called." msgstr "" -#: c-api/memory.rst:609 +#: c-api/memory.rst:615 msgid "" "Byte patterns ``0xCB`` (``PYMEM_CLEANBYTE``), ``0xDB`` (``PYMEM_DEADBYTE``) " "and ``0xFB`` (``PYMEM_FORBIDDENBYTE``) have been replaced with ``0xCD``, " @@ -911,11 +922,11 @@ msgid "" "``malloc()`` and ``free()``." msgstr "" -#: c-api/memory.rst:619 +#: c-api/memory.rst:625 msgid "The pymalloc allocator" msgstr "" -#: c-api/memory.rst:621 +#: c-api/memory.rst:627 msgid "" "Python has a *pymalloc* allocator optimized for small objects (smaller or " "equal to 512 bytes) with a short lifetime. It uses memory mappings called " @@ -924,114 +935,114 @@ msgid "" "512 bytes." msgstr "" -#: c-api/memory.rst:626 +#: c-api/memory.rst:632 msgid "" "*pymalloc* is the :ref:`default allocator ` of " "the :c:macro:`PYMEM_DOMAIN_MEM` (ex: :c:func:`PyMem_Malloc`) and :c:macro:" "`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) domains." msgstr "" -#: c-api/memory.rst:630 +#: c-api/memory.rst:636 msgid "The arena allocator uses the following functions:" msgstr "" -#: c-api/memory.rst:632 +#: c-api/memory.rst:638 msgid ":c:func:`!VirtualAlloc` and :c:func:`!VirtualFree` on Windows," msgstr "" -#: c-api/memory.rst:633 +#: c-api/memory.rst:639 msgid ":c:func:`!mmap` and :c:func:`!munmap` if available," msgstr "" -#: c-api/memory.rst:634 +#: c-api/memory.rst:640 msgid ":c:func:`malloc` and :c:func:`free` otherwise." msgstr "" -#: c-api/memory.rst:636 +#: c-api/memory.rst:642 msgid "" "This allocator is disabled if Python is configured with the :option:`--" "without-pymalloc` option. It can also be disabled at runtime using the :" "envvar:`PYTHONMALLOC` environment variable (ex: ``PYTHONMALLOC=malloc``)." msgstr "" -#: c-api/memory.rst:641 +#: c-api/memory.rst:647 msgid "Customize pymalloc Arena Allocator" msgstr "" -#: c-api/memory.rst:647 +#: c-api/memory.rst:653 msgid "" "Structure used to describe an arena allocator. The structure has three " "fields:" msgstr "" -#: c-api/memory.rst:655 +#: c-api/memory.rst:661 msgid "``void* alloc(void *ctx, size_t size)``" msgstr "" -#: c-api/memory.rst:655 +#: c-api/memory.rst:661 msgid "allocate an arena of size bytes" msgstr "" -#: c-api/memory.rst:657 +#: c-api/memory.rst:663 msgid "``void free(void *ctx, void *ptr, size_t size)``" msgstr "" -#: c-api/memory.rst:657 +#: c-api/memory.rst:663 msgid "free an arena" msgstr "" -#: c-api/memory.rst:662 +#: c-api/memory.rst:668 msgid "Get the arena allocator." msgstr "" -#: c-api/memory.rst:666 +#: c-api/memory.rst:672 msgid "Set the arena allocator." msgstr "" -#: c-api/memory.rst:670 +#: c-api/memory.rst:676 msgid "tracemalloc C API" msgstr "" -#: c-api/memory.rst:676 +#: c-api/memory.rst:682 msgid "Track an allocated memory block in the :mod:`tracemalloc` module." msgstr "" -#: c-api/memory.rst:678 +#: c-api/memory.rst:684 msgid "" "Return ``0`` on success, return ``-1`` on error (failed to allocate memory " "to store the trace). Return ``-2`` if tracemalloc is disabled." msgstr "" -#: c-api/memory.rst:681 +#: c-api/memory.rst:687 msgid "If memory block is already tracked, update the existing trace." msgstr "" -#: c-api/memory.rst:685 +#: c-api/memory.rst:691 msgid "" "Untrack an allocated memory block in the :mod:`tracemalloc` module. Do " "nothing if the block was not tracked." msgstr "" -#: c-api/memory.rst:688 +#: c-api/memory.rst:694 msgid "Return ``-2`` if tracemalloc is disabled, otherwise return ``0``." msgstr "" -#: c-api/memory.rst:694 +#: c-api/memory.rst:700 msgid "Examples" msgstr "" -#: c-api/memory.rst:696 +#: c-api/memory.rst:702 msgid "" "Here is the example from section :ref:`memoryoverview`, rewritten so that " "the I/O buffer is allocated from the Python heap by using the first function " "set::" msgstr "" -#: c-api/memory.rst:709 +#: c-api/memory.rst:715 msgid "The same code using the type-oriented function set::" msgstr "" -#: c-api/memory.rst:721 +#: c-api/memory.rst:727 msgid "" "Note that in the two examples above, the buffer is always manipulated via " "functions belonging to the same set. Indeed, it is required to use the same " @@ -1041,14 +1052,14 @@ msgid "" "different allocators operating on different heaps. ::" msgstr "" -#: c-api/memory.rst:736 +#: c-api/memory.rst:742 msgid "" "In addition to the functions aimed at handling raw memory blocks from the " "Python heap, objects in Python are allocated and released with :c:macro:" "`PyObject_New`, :c:macro:`PyObject_NewVar` and :c:func:`PyObject_Del`." msgstr "" -#: c-api/memory.rst:740 +#: c-api/memory.rst:746 msgid "" "These will be explained in the next chapter on defining and implementing new " "object types in C." diff --git a/c-api/module.po b/c-api/module.po index da867b3d7..dd07fce49 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -421,15 +421,53 @@ msgid "" "order they appear in the *m_slots* array." msgstr "" -#: c-api/module.rst:381 +#: c-api/module.rst:383 +msgid "Specifies one of the following values:" +msgstr "" + +#: c-api/module.rst:389 +msgid "The module does not support being imported in subinterpreters." +msgstr "" + +#: c-api/module.rst:393 +msgid "" +"The module supports being imported in subinterpreters, but only when they " +"share the main interpreter's GIL. (See :ref:`isolating-extensions-howto`.)" +msgstr "" + +#: c-api/module.rst:399 +msgid "" +"The module supports being imported in subinterpreters, even when they have " +"their own GIL. (See :ref:`isolating-extensions-howto`.)" +msgstr "" + +#: c-api/module.rst:403 +msgid "" +"This slot determines whether or not importing this module in a " +"subinterpreter will fail." +msgstr "" + +#: c-api/module.rst:406 +msgid "" +"Multiple ``Py_mod_multiple_interpreters`` slots may not be specified in one " +"module definition." +msgstr "" + +#: c-api/module.rst:409 +msgid "" +"If ``Py_mod_multiple_interpreters`` is not specified, the import machinery " +"defaults to ``Py_MOD_MULTIPLE_INTERPRETERS_NOT_SUPPORTED``." +msgstr "" + +#: c-api/module.rst:414 msgid "See :PEP:`489` for more details on multi-phase initialization." msgstr "" -#: c-api/module.rst:384 +#: c-api/module.rst:417 msgid "Low-level module creation functions" msgstr "" -#: c-api/module.rst:386 +#: c-api/module.rst:419 msgid "" "The following functions are called under the hood when using multi-phase " "initialization. They can be used directly, for example when creating module " @@ -437,14 +475,14 @@ msgid "" "``PyModule_ExecDef`` must be called to fully initialize a module." msgstr "" -#: c-api/module.rst:393 +#: c-api/module.rst:426 msgid "" "Create a new module object, given the definition in *def* and the ModuleSpec " "*spec*. This behaves like :c:func:`PyModule_FromDefAndSpec2` with " "*module_api_version* set to :c:macro:`PYTHON_API_VERSION`." msgstr "" -#: c-api/module.rst:401 +#: c-api/module.rst:434 msgid "" "Create a new module object, given the definition in *def* and the ModuleSpec " "*spec*, assuming the API version *module_api_version*. If that version does " @@ -452,24 +490,24 @@ msgid "" "emitted." msgstr "" -#: c-api/module.rst:408 +#: c-api/module.rst:441 msgid "" "Most uses of this function should be using :c:func:`PyModule_FromDefAndSpec` " "instead; only use this if you are sure you need it." msgstr "" -#: c-api/module.rst:415 +#: c-api/module.rst:448 msgid "Process any execution slots (:c:data:`Py_mod_exec`) given in *def*." msgstr "" -#: c-api/module.rst:421 +#: c-api/module.rst:454 msgid "" "Set the docstring for *module* to *docstring*. This function is called " "automatically when creating a module from ``PyModuleDef``, using either " "``PyModule_Create`` or ``PyModule_FromDefAndSpec``." msgstr "" -#: c-api/module.rst:430 +#: c-api/module.rst:463 msgid "" "Add the functions from the ``NULL`` terminated *functions* array to " "*module*. Refer to the :c:type:`PyMethodDef` documentation for details on " @@ -481,11 +519,11 @@ msgid "" "``PyModule_FromDefAndSpec``." msgstr "" -#: c-api/module.rst:442 +#: c-api/module.rst:475 msgid "Support functions" msgstr "" -#: c-api/module.rst:444 +#: c-api/module.rst:477 msgid "" "The module initialization function (if using single phase initialization) or " "a function called from a module execution slot (if using multi-phase " @@ -493,79 +531,79 @@ msgid "" "module state:" msgstr "" -#: c-api/module.rst:451 +#: c-api/module.rst:484 msgid "" "Add an object to *module* as *name*. This is a convenience function which " "can be used from the module's initialization function." msgstr "" -#: c-api/module.rst:454 +#: c-api/module.rst:487 msgid "" "On success, return ``0``. On error, raise an exception and return ``-1``." msgstr "" -#: c-api/module.rst:456 +#: c-api/module.rst:489 msgid "" "Return ``NULL`` if *value* is ``NULL``. It must be called with an exception " "raised in this case." msgstr "" -#: c-api/module.rst:508 +#: c-api/module.rst:541 msgid "Example usage::" msgstr "" -#: c-api/module.rst:526 +#: c-api/module.rst:559 msgid "" "The example can also be written without checking explicitly if *obj* is " "``NULL``::" msgstr "" -#: c-api/module.rst:542 +#: c-api/module.rst:575 msgid "" "Note that ``Py_XDECREF()`` should be used instead of ``Py_DECREF()`` in this " "case, since *obj* can be ``NULL``." msgstr "" -#: c-api/module.rst:493 +#: c-api/module.rst:526 msgid "" "Similar to :c:func:`PyModule_AddObjectRef`, but steals a reference to " "*value* on success (if it returns ``0``)." msgstr "" -#: c-api/module.rst:496 +#: c-api/module.rst:529 msgid "" "The new :c:func:`PyModule_AddObjectRef` function is recommended, since it is " "easy to introduce reference leaks by misusing the :c:func:" "`PyModule_AddObject` function." msgstr "" -#: c-api/module.rst:502 +#: c-api/module.rst:535 msgid "" "Unlike other functions that steal references, ``PyModule_AddObject()`` only " "releases the reference to *value* **on success**." msgstr "" -#: c-api/module.rst:505 +#: c-api/module.rst:538 msgid "" "This means that its return value must be checked, and calling code must :c:" "func:`Py_DECREF` *value* manually on error." msgstr "" -#: c-api/module.rst:548 +#: c-api/module.rst:581 msgid "" "Add an integer constant to *module* as *name*. This convenience function " "can be used from the module's initialization function. Return ``-1`` on " "error, ``0`` on success." msgstr "" -#: c-api/module.rst:555 +#: c-api/module.rst:588 msgid "" "Add a string constant to *module* as *name*. This convenience function can " "be used from the module's initialization function. The string *value* must " "be ``NULL``-terminated. Return ``-1`` on error, ``0`` on success." msgstr "" -#: c-api/module.rst:562 +#: c-api/module.rst:595 msgid "" "Add an int constant to *module*. The name and the value are taken from " "*macro*. For example ``PyModule_AddIntMacro(module, AF_INET)`` adds the int " @@ -573,11 +611,11 @@ msgid "" "error, ``0`` on success." msgstr "" -#: c-api/module.rst:570 +#: c-api/module.rst:603 msgid "Add a string constant to *module*." msgstr "" -#: c-api/module.rst:574 +#: c-api/module.rst:607 msgid "" "Add a type object to *module*. The type object is finalized by calling " "internally :c:func:`PyType_Ready`. The name of the type object is taken from " @@ -585,25 +623,25 @@ msgid "" "``-1`` on error, ``0`` on success." msgstr "" -#: c-api/module.rst:584 +#: c-api/module.rst:617 msgid "Module lookup" msgstr "" -#: c-api/module.rst:586 +#: c-api/module.rst:619 msgid "" "Single-phase initialization creates singleton modules that can be looked up " "in the context of the current interpreter. This allows the module object to " "be retrieved later with only a reference to the module definition." msgstr "" -#: c-api/module.rst:590 +#: c-api/module.rst:623 msgid "" "These functions will not work on modules created using multi-phase " "initialization, since multiple such modules can be created from a single " "definition." msgstr "" -#: c-api/module.rst:595 +#: c-api/module.rst:628 msgid "" "Returns the module object that was created from *def* for the current " "interpreter. This method requires that the module object has been attached " @@ -612,18 +650,18 @@ msgid "" "to the interpreter state yet, it returns ``NULL``." msgstr "" -#: c-api/module.rst:602 +#: c-api/module.rst:635 msgid "" "Attaches the module object passed to the function to the interpreter state. " "This allows the module object to be accessible via :c:func:" "`PyState_FindModule`." msgstr "" -#: c-api/module.rst:605 +#: c-api/module.rst:638 msgid "Only effective on modules created using single-phase initialization." msgstr "" -#: c-api/module.rst:607 +#: c-api/module.rst:640 msgid "" "Python calls ``PyState_AddModule`` automatically after importing a module, " "so it is unnecessary (but harmless) to call it from module initialization " @@ -634,15 +672,15 @@ msgid "" "state updates)." msgstr "" -#: c-api/module.rst:626 +#: c-api/module.rst:659 msgid "The caller must hold the GIL." msgstr "" -#: c-api/module.rst:617 +#: c-api/module.rst:650 msgid "Return 0 on success or -1 on failure." msgstr "" -#: c-api/module.rst:623 +#: c-api/module.rst:656 msgid "" "Removes the module object created from *def* from the interpreter state. " "Return 0 on success or -1 on failure." diff --git a/c-api/none.po b/c-api/none.po index b622847ec..3f92e28bf 100644 --- a/c-api/none.po +++ b/c-api/none.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -31,14 +31,15 @@ msgstr "" #: c-api/none.rst:18 msgid "" "The Python ``None`` object, denoting lack of value. This object has no " -"methods. It needs to be treated just like any other object with respect to " -"reference counts." +"methods and is `immortal `_." msgstr "" -#: c-api/none.rst:25 -msgid "" -"Properly handle returning :c:data:`Py_None` from within a C function (that " -"is, increment the reference count of ``None`` and return it.)" +#: c-api/none.rst:21 +msgid ":c:data:`Py_None` is immortal." +msgstr "" + +#: c-api/none.rst:26 +msgid "Return :c:data:`Py_None` from a function." msgstr "" #: c-api/none.rst:8 diff --git a/c-api/object.po b/c-api/object.po index 92caa312c..d2a304544 100644 --- a/c-api/object.po +++ b/c-api/object.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -433,6 +433,56 @@ msgid "" "``NULL`` if the object cannot be iterated." msgstr "" +#: c-api/object.rst:406 +msgid "Get a pointer to subclass-specific data reserved for *cls*." +msgstr "" + +#: c-api/object.rst:408 +msgid "" +"The object *o* must be an instance of *cls*, and *cls* must have been " +"created using negative :c:member:`PyType_Spec.basicsize`. Python does not " +"check this." +msgstr "" + +#: c-api/object.rst:412 +msgid "On error, set an exception and return ``NULL``." +msgstr "" + +#: c-api/object.rst:418 +msgid "" +"Return the size of the instance memory space reserved for *cls*, i.e. the " +"size of the memory :c:func:`PyObject_GetTypeData` returns." +msgstr "" + +#: c-api/object.rst:421 +msgid "" +"This may be larger than requested using :c:member:`-PyType_Spec.basicsize " +"`; it is safe to use this larger size (e.g. with :c:" +"func:`!memset`)." +msgstr "" + +#: c-api/object.rst:424 +msgid "" +"The type *cls* **must** have been created using negative :c:member:" +"`PyType_Spec.basicsize`. Python does not check this." +msgstr "" + +#: c-api/object.rst:428 +msgid "On error, set an exception and return a negative value." +msgstr "" + +#: c-api/object.rst:434 +msgid "" +"Get a pointer to per-item data for a class with :c:macro:" +"`Py_TPFLAGS_ITEMS_AT_END`." +msgstr "" + +#: c-api/object.rst:437 +msgid "" +"On error, set an exception and return ``NULL``. :py:exc:`TypeError` is " +"raised if *o* does not have :c:macro:`Py_TPFLAGS_ITEMS_AT_END` set." +msgstr "" + #: c-api/object.rst:209 c-api/object.rst:285 c-api/object.rst:340 msgid "built-in function" msgstr "" diff --git a/c-api/perfmaps.po b/c-api/perfmaps.po new file mode 100644 index 000000000..b2577026e --- /dev/null +++ b/c-api/perfmaps.po @@ -0,0 +1,83 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2001-2023, Python Software Foundation +# This file is distributed under the same license as the Python package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Python 3.12\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: c-api/perfmaps.rst:6 +msgid "Support for Perf Maps" +msgstr "" + +#: c-api/perfmaps.rst:8 +msgid "" +"On supported platforms (as of this writing, only Linux), the runtime can " +"take advantage of *perf map files* to make Python functions visible to an " +"external profiling tool (such as `perf `_). A running process may create a file in the ``/tmp`` " +"directory, which contains entries that can map a section of executable code " +"to a name. This interface is described in the `documentation of the Linux " +"Perf tool `_." +msgstr "" + +#: c-api/perfmaps.rst:16 +msgid "" +"In Python, these helper APIs can be used by libraries and features that rely " +"on generating machine code on the fly." +msgstr "" + +#: c-api/perfmaps.rst:19 +msgid "" +"Note that holding the Global Interpreter Lock (GIL) is not required for " +"these APIs." +msgstr "" + +#: c-api/perfmaps.rst:23 +msgid "" +"Open the ``/tmp/perf-$pid.map`` file, unless it's already opened, and create " +"a lock to ensure thread-safe writes to the file (provided the writes are " +"done through :c:func:`PyUnstable_WritePerfMapEntry`). Normally, there's no " +"need to call this explicitly; just use :c:func:" +"`PyUnstable_WritePerfMapEntry` and it will initialize the state on first " +"call." +msgstr "" + +#: c-api/perfmaps.rst:29 +msgid "" +"Returns ``0`` on success, ``-1`` on failure to create/open the perf map " +"file, or ``-2`` on failure to create a lock. Check ``errno`` for more " +"information about the cause of a failure." +msgstr "" + +#: c-api/perfmaps.rst:35 +msgid "" +"Write one single entry to the ``/tmp/perf-$pid.map`` file. This function is " +"thread safe. Here is what an example entry looks like::" +msgstr "" + +#: c-api/perfmaps.rst:41 +msgid "" +"Will call :c:func:`PyUnstable_PerfMapState_Init` before writing the entry, " +"if the perf map file is not already opened. Returns ``0`` on success, or the " +"same error codes as :c:func:`PyUnstable_PerfMapState_Init` on failure." +msgstr "" + +#: c-api/perfmaps.rst:47 +msgid "" +"Close the perf map file opened by :c:func:`PyUnstable_PerfMapState_Init`. " +"This is called by the runtime itself during interpreter shut-down. In " +"general, there shouldn't be a reason to explicitly call this, except to " +"handle specific scenarios such as forking." +msgstr "" diff --git a/c-api/refcounting.po b/c-api/refcounting.po index 2fff61dc6..02eb9bff3 100644 --- a/c-api/refcounting.po +++ b/c-api/refcounting.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -22,111 +22,154 @@ msgstr "" #: c-api/refcounting.rst:10 msgid "" -"The macros in this section are used for managing reference counts of Python " -"objects." +"The functions and macros in this section are used for managing reference " +"counts of Python objects." msgstr "" #: c-api/refcounting.rst:16 +msgid "Get the reference count of the Python object *o*." +msgstr "" + +#: c-api/refcounting.rst:18 +msgid "" +"Note that the returned value may not actually reflect how many references to " +"the object are actually held. For example, some objects are \"immortal\" " +"and have a very high refcount that does not reflect the actual number of " +"references. Consequently, do not rely on the returned value to be accurate, " +"other than a value of 0 or 1." +msgstr "" + +#: c-api/refcounting.rst:24 +msgid "" +"Use the :c:func:`Py_SET_REFCNT()` function to set an object reference count." +msgstr "" + +#: c-api/refcounting.rst:26 +msgid "The parameter type is no longer :c:expr:`const PyObject*`." +msgstr "" + +#: c-api/refcounting.rst:29 +msgid ":c:func:`Py_REFCNT()` is changed to the inline static function." +msgstr "" + +#: c-api/refcounting.rst:35 +msgid "Set the object *o* reference counter to *refcnt*." +msgstr "" + +#: c-api/refcounting.rst:37 +msgid "" +"Note that this function has no effect on `immortal `_ objects." +msgstr "" + +#: c-api/refcounting.rst:65 c-api/refcounting.rst:142 +msgid "Immortal objects are not modified." +msgstr "" + +#: c-api/refcounting.rst:49 msgid "" "Indicate taking a new :term:`strong reference` to object *o*, indicating it " "is in use and should not be destroyed." msgstr "" -#: c-api/refcounting.rst:19 +#: c-api/refcounting.rst:52 msgid "" "This function is usually used to convert a :term:`borrowed reference` to a :" "term:`strong reference` in-place. The :c:func:`Py_NewRef` function can be " "used to create a new :term:`strong reference`." msgstr "" -#: c-api/refcounting.rst:23 +#: c-api/refcounting.rst:56 msgid "When done using the object, release it by calling :c:func:`Py_DECREF`." msgstr "" -#: c-api/refcounting.rst:25 +#: c-api/refcounting.rst:58 msgid "" "The object must not be ``NULL``; if you aren't sure that it isn't ``NULL``, " "use :c:func:`Py_XINCREF`." msgstr "" -#: c-api/refcounting.rst:89 -msgid "Do not expect this function to actually modify *o* in any way." +#: c-api/refcounting.rst:127 +msgid "" +"Do not expect this function to actually modify *o* in any way. For at least " +"`some objects `_, this function has no " +"effect." msgstr "" -#: c-api/refcounting.rst:33 +#: c-api/refcounting.rst:71 msgid "" "Similar to :c:func:`Py_INCREF`, but the object *o* can be ``NULL``, in which " "case this has no effect." msgstr "" -#: c-api/refcounting.rst:36 +#: c-api/refcounting.rst:74 msgid "See also :c:func:`Py_XNewRef`." msgstr "" -#: c-api/refcounting.rst:41 +#: c-api/refcounting.rst:79 msgid "" "Create a new :term:`strong reference` to an object: call :c:func:`Py_INCREF` " "on *o* and return the object *o*." msgstr "" -#: c-api/refcounting.rst:44 +#: c-api/refcounting.rst:82 msgid "" "When the :term:`strong reference` is no longer needed, :c:func:`Py_DECREF` " "should be called on it to release the reference." msgstr "" -#: c-api/refcounting.rst:47 +#: c-api/refcounting.rst:85 msgid "" "The object *o* must not be ``NULL``; use :c:func:`Py_XNewRef` if *o* can be " "``NULL``." msgstr "" -#: c-api/refcounting.rst:50 +#: c-api/refcounting.rst:88 msgid "For example::" msgstr "" -#: c-api/refcounting.rst:55 +#: c-api/refcounting.rst:93 msgid "can be written as::" msgstr "" -#: c-api/refcounting.rst:59 +#: c-api/refcounting.rst:97 msgid "See also :c:func:`Py_INCREF`." msgstr "" -#: c-api/refcounting.rst:66 +#: c-api/refcounting.rst:104 msgid "Similar to :c:func:`Py_NewRef`, but the object *o* can be NULL." msgstr "" -#: c-api/refcounting.rst:68 +#: c-api/refcounting.rst:106 msgid "If the object *o* is ``NULL``, the function just returns ``NULL``." msgstr "" -#: c-api/refcounting.rst:75 +#: c-api/refcounting.rst:113 msgid "" "Release a :term:`strong reference` to object *o*, indicating the reference " "is no longer used." msgstr "" -#: c-api/refcounting.rst:78 +#: c-api/refcounting.rst:116 msgid "" "Once the last :term:`strong reference` is released (i.e. the object's " "reference count reaches 0), the object's type's deallocation function (which " "must not be ``NULL``) is invoked." msgstr "" -#: c-api/refcounting.rst:83 +#: c-api/refcounting.rst:121 msgid "" "This function is usually used to delete a :term:`strong reference` before " "exiting its scope." msgstr "" -#: c-api/refcounting.rst:86 +#: c-api/refcounting.rst:124 msgid "" "The object must not be ``NULL``; if you aren't sure that it isn't ``NULL``, " "use :c:func:`Py_XDECREF`." msgstr "" -#: c-api/refcounting.rst:93 +#: c-api/refcounting.rst:133 msgid "" "The deallocation function can cause arbitrary Python code to be invoked (e." "g. when a class instance with a :meth:`~object.__del__` method is " @@ -139,14 +182,14 @@ msgid "" "call :c:func:`Py_DECREF` for the temporary variable." msgstr "" -#: c-api/refcounting.rst:105 +#: c-api/refcounting.rst:148 msgid "" "Similar to :c:func:`Py_DECREF`, but the object *o* can be ``NULL``, in which " "case this has no effect. The same warning from :c:func:`Py_DECREF` applies " "here as well." msgstr "" -#: c-api/refcounting.rst:112 +#: c-api/refcounting.rst:155 msgid "" "Release a :term:`strong reference` for object *o*. The object may be " "``NULL``, in which case the macro has no effect; otherwise the effect is the " @@ -156,28 +199,60 @@ msgid "" "and sets the argument to ``NULL`` before releasing the reference." msgstr "" -#: c-api/refcounting.rst:120 +#: c-api/refcounting.rst:163 msgid "" "It is a good idea to use this macro whenever releasing a reference to an " "object that might be traversed during garbage collection." msgstr "" -#: c-api/refcounting.rst:125 +#: c-api/refcounting.rst:166 +msgid "" +"The macro argument is now only evaluated once. If the argument has side " +"effects, these are no longer duplicated." +msgstr "" + +#: c-api/refcounting.rst:173 msgid "" "Indicate taking a new :term:`strong reference` to object *o*. A function " "version of :c:func:`Py_XINCREF`. It can be used for runtime dynamic " "embedding of Python." msgstr "" -#: c-api/refcounting.rst:132 +#: c-api/refcounting.rst:180 msgid "" "Release a :term:`strong reference` to object *o*. A function version of :c:" "func:`Py_XDECREF`. It can be used for runtime dynamic embedding of Python." msgstr "" -#: c-api/refcounting.rst:137 +#: c-api/refcounting.rst:187 +msgid "" +"Macro safely releasing a :term:`strong reference` to object *dst* and " +"setting *dst* to *src*." +msgstr "" + +#: c-api/refcounting.rst:190 +msgid "As in case of :c:func:`Py_CLEAR`, \"the obvious\" code can be deadly::" +msgstr "" + +#: c-api/refcounting.rst:195 +msgid "The safe way is::" +msgstr "" + +#: c-api/refcounting.rst:199 +msgid "" +"That arranges to set *dst* to *src* _before_ releasing the reference to the " +"old value of *dst*, so that any code triggered as a side-effect of *dst* " +"getting torn down no longer believes *dst* points to a valid object." +msgstr "" + +#: c-api/refcounting.rst:218 +msgid "" +"The macro arguments are now only evaluated once. If an argument has side " +"effects, these are no longer duplicated." +msgstr "" + +#: c-api/refcounting.rst:213 msgid "" -"The following functions or macros are only for use within the interpreter " -"core: :c:func:`_Py_Dealloc`, :c:func:`_Py_ForgetReference`, :c:func:" -"`_Py_NewReference`, as well as the global variable :c:data:`_Py_RefTotal`." +"Variant of :c:macro:`Py_SETREF` macro that uses :c:func:`Py_XDECREF` instead " +"of :c:func:`Py_DECREF`." msgstr "" diff --git a/c-api/slice.po b/c-api/slice.po index bd63b8a93..04d3bd6cb 100644 --- a/c-api/slice.po +++ b/c-api/slice.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -136,7 +136,11 @@ msgstr "" #: c-api/slice.rst:121 msgid "" -"The Python ``Ellipsis`` object. This object has no methods. It needs to be " -"treated just like any other object with respect to reference counts. Like :" -"c:data:`Py_None` it is a singleton object." +"The Python ``Ellipsis`` object. This object has no methods. Like :c:data:" +"`Py_None`, it is an `immortal `_. " +"singleton object." +msgstr "" + +#: c-api/slice.rst:125 +msgid ":c:data:`Py_Ellipsis` is immortal." msgstr "" diff --git a/c-api/stable.po b/c-api/stable.po index 413519c28..6dcecd160 100644 --- a/c-api/stable.po +++ b/c-api/stable.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -22,11 +22,10 @@ msgstr "" #: c-api/stable.rst:9 msgid "" -"Python's C API is covered by the Backwards Compatibility Policy, :pep:`387`. " -"While the C API will change with every minor release (e.g. from 3.9 to " -"3.10), most changes will be source-compatible, typically by only adding new " -"API. Changing existing API or removing API is only done after a deprecation " -"period or to fix serious issues." +"Unless documented otherwise, Python's C API is covered by the Backwards " +"Compatibility Policy, :pep:`387`. Most changes to it are source-compatible " +"(typically by only adding new API). Changing existing API or removing API is " +"only done after a deprecation period or to fix serious issues." msgstr "" #: c-api/stable.rst:15 @@ -39,45 +38,88 @@ msgid "" msgstr "" #: c-api/stable.rst:21 +msgid "There are two tiers of C API with different stability expectations:" +msgstr "" + +#: c-api/stable.rst:23 +msgid "" +":ref:`Unstable API `, may change in minor versions without a " +"deprecation period. It is marked by the ``PyUnstable`` prefix in names." +msgstr "" + +#: c-api/stable.rst:25 +msgid "" +":ref:`Limited API `, is compatible across several minor " +"releases. When :c:macro:`Py_LIMITED_API` is defined, only this subset is " +"exposed from ``Python.h``." +msgstr "" + +#: c-api/stable.rst:29 +msgid "These are discussed in more detail below." +msgstr "" + +#: c-api/stable.rst:31 msgid "" "Names prefixed by an underscore, such as ``_Py_InternalState``, are private " -"API that can change without notice even in patch releases." +"API that can change without notice even in patch releases. If you need to " +"use this API, consider reaching out to `CPython developers `_ to discuss adding public API for your use " +"case." msgstr "" -#: c-api/stable.rst:26 -msgid "Stable Application Binary Interface" +#: c-api/stable.rst:40 +msgid "Unstable C API" msgstr "" -#: c-api/stable.rst:28 +#: c-api/stable.rst:44 msgid "" -"Python 3.2 introduced the *Limited API*, a subset of Python's C API. " -"Extensions that only use the Limited API can be compiled once and work with " -"multiple versions of Python. Contents of the Limited API are :ref:`listed " -"below `." +"Any API named with the ``PyUnstable`` prefix exposes CPython implementation " +"details, and may change in every minor release (e.g. from 3.9 to 3.10) " +"without any deprecation warnings. However, it will not change in a bugfix " +"release (e.g. from 3.10.0 to 3.10.1)." msgstr "" -#: c-api/stable.rst:33 +#: c-api/stable.rst:49 msgid "" -"To enable this, Python provides a *Stable ABI*: a set of symbols that will " -"remain compatible across Python 3.x versions. The Stable ABI contains " -"symbols exposed in the Limited API, but also other ones – for example, " -"functions necessary to support older versions of the Limited API." +"It is generally intended for specialized, low-level tools like debuggers." +msgstr "" + +#: c-api/stable.rst:51 +msgid "" +"Projects that use this API are expected to follow CPython development and " +"spend extra effort adjusting to changes." msgstr "" -#: c-api/stable.rst:38 +#: c-api/stable.rst:56 +msgid "Stable Application Binary Interface" +msgstr "" + +#: c-api/stable.rst:58 msgid "" -"(For simplicity, this document talks about *extensions*, but the Limited API " +"For simplicity, this document talks about *extensions*, but the Limited API " "and Stable ABI work the same way for all uses of the API – for example, " -"embedding Python.)" +"embedding Python." msgstr "" -#: c-api/stable.rst:44 +#: c-api/stable.rst:65 +msgid "Limited C API" +msgstr "" + +#: c-api/stable.rst:67 +msgid "" +"Python 3.2 introduced the *Limited API*, a subset of Python's C API. " +"Extensions that only use the Limited API can be compiled once and work with " +"multiple versions of Python. Contents of the Limited API are :ref:`listed " +"below `." +msgstr "" + +#: c-api/stable.rst:74 msgid "" "Define this macro before including ``Python.h`` to opt in to only use the " "Limited API, and to select the Limited API version." msgstr "" -#: c-api/stable.rst:47 +#: c-api/stable.rst:77 msgid "" "Define ``Py_LIMITED_API`` to the value of :c:macro:`PY_VERSION_HEX` " "corresponding to the lowest Python version your extension supports. The " @@ -86,27 +128,44 @@ msgid "" "version." msgstr "" -#: c-api/stable.rst:53 +#: c-api/stable.rst:83 msgid "" "Rather than using the ``PY_VERSION_HEX`` macro directly, hardcode a minimum " "minor version (e.g. ``0x030A0000`` for Python 3.10) for stability when " "compiling with future Python versions." msgstr "" -#: c-api/stable.rst:57 +#: c-api/stable.rst:87 msgid "" "You can also define ``Py_LIMITED_API`` to ``3``. This works the same as " "``0x03020000`` (Python 3.2, the version that introduced Limited API)." msgstr "" -#: c-api/stable.rst:60 +#: c-api/stable.rst:94 +msgid "Stable ABI" +msgstr "" + +#: c-api/stable.rst:96 +msgid "" +"To enable this, Python provides a *Stable ABI*: a set of symbols that will " +"remain compatible across Python 3.x versions." +msgstr "" + +#: c-api/stable.rst:99 +msgid "" +"The Stable ABI contains symbols exposed in the :ref:`Limited API `, but also other ones – for example, functions necessary to support " +"older versions of the Limited API." +msgstr "" + +#: c-api/stable.rst:103 msgid "" "On Windows, extensions that use the Stable ABI should be linked against " "``python3.dll`` rather than a version-specific library such as ``python39." "dll``." msgstr "" -#: c-api/stable.rst:64 +#: c-api/stable.rst:107 msgid "" "On some platforms, Python will look for and load shared library files named " "with the ``abi3`` tag (e.g. ``mymodule.abi3.so``). It does not check if such " @@ -115,31 +174,31 @@ msgid "" "not installed for lower versions of Python." msgstr "" -#: c-api/stable.rst:71 +#: c-api/stable.rst:114 msgid "" "All functions in the Stable ABI are present as functions in Python's shared " "library, not solely as macros. This makes them usable from languages that " "don't use the C preprocessor." msgstr "" -#: c-api/stable.rst:77 +#: c-api/stable.rst:120 msgid "Limited API Scope and Performance" msgstr "" -#: c-api/stable.rst:79 +#: c-api/stable.rst:122 msgid "" "The goal for the Limited API is to allow everything that is possible with " "the full C API, but possibly with a performance penalty." msgstr "" -#: c-api/stable.rst:82 +#: c-api/stable.rst:125 msgid "" "For example, while :c:func:`PyList_GetItem` is available, its “unsafe” macro " "variant :c:func:`PyList_GET_ITEM` is not. The macro can be faster because it " "can rely on version-specific implementation details of the list object." msgstr "" -#: c-api/stable.rst:87 +#: c-api/stable.rst:130 msgid "" "Without ``Py_LIMITED_API`` defined, some C API functions are inlined or " "replaced by macros. Defining ``Py_LIMITED_API`` disables this inlining, " @@ -147,7 +206,7 @@ msgid "" "reducing performance." msgstr "" -#: c-api/stable.rst:92 +#: c-api/stable.rst:135 msgid "" "By leaving out the ``Py_LIMITED_API`` definition, it is possible to compile " "a Limited API extension with a version-specific ABI. This can improve " @@ -157,19 +216,19 @@ msgid "" "of an upcoming Python version." msgstr "" -#: c-api/stable.rst:101 +#: c-api/stable.rst:144 msgid "Limited API Caveats" msgstr "" -#: c-api/stable.rst:103 +#: c-api/stable.rst:146 msgid "" "Note that compiling with ``Py_LIMITED_API`` is *not* a complete guarantee " -"that code conforms to the Limited API or the Stable ABI. ``Py_LIMITED_API`` " -"only covers definitions, but an API also includes other issues, such as " -"expected semantics." +"that code conforms to the :ref:`Limited API ` or the :ref:" +"`Stable ABI `. ``Py_LIMITED_API`` only covers definitions, but " +"an API also includes other issues, such as expected semantics." msgstr "" -#: c-api/stable.rst:108 +#: c-api/stable.rst:151 msgid "" "One issue that ``Py_LIMITED_API`` does not guard against is calling a " "function with arguments that are invalid in a lower Python version. For " @@ -179,19 +238,19 @@ msgid "" "crash. A similar argument works for fields of structs." msgstr "" -#: c-api/stable.rst:115 +#: c-api/stable.rst:158 msgid "" "Another issue is that some struct fields are currently not hidden when " "``Py_LIMITED_API`` is defined, even though they're part of the Limited API." msgstr "" -#: c-api/stable.rst:118 +#: c-api/stable.rst:161 msgid "" "For these reasons, we recommend testing an extension with *all* minor Python " "versions it supports, and preferably to build with the *lowest* such version." msgstr "" -#: c-api/stable.rst:121 +#: c-api/stable.rst:164 msgid "" "We also recommend reviewing documentation of all used API to check if it is " "explicitly part of the Limited API. Even with ``Py_LIMITED_API`` defined, a " @@ -199,7 +258,7 @@ msgid "" "unintentionally, as bugs)." msgstr "" -#: c-api/stable.rst:126 +#: c-api/stable.rst:169 msgid "" "Also note that the Limited API is not necessarily stable: compiling with " "``Py_LIMITED_API`` with Python 3.8 means that the extension will run with " @@ -208,19 +267,19 @@ msgid "" "that the Stable ABI stays stable." msgstr "" -#: c-api/stable.rst:136 +#: c-api/stable.rst:179 msgid "Platform Considerations" msgstr "" -#: c-api/stable.rst:138 +#: c-api/stable.rst:181 msgid "" "ABI stability depends not only on Python, but also on the compiler used, " -"lower-level libraries and compiler options. For the purposes of the Stable " -"ABI, these details define a “platform”. They usually depend on the OS type " -"and processor architecture" +"lower-level libraries and compiler options. For the purposes of the :ref:" +"`Stable ABI `, these details define a “platform”. They usually " +"depend on the OS type and processor architecture" msgstr "" -#: c-api/stable.rst:143 +#: c-api/stable.rst:186 msgid "" "It is the responsibility of each particular distributor of Python to ensure " "that all Python versions on a particular platform are built in a way that " @@ -228,10 +287,16 @@ msgid "" "releases from ``python.org`` and many third-party distributors." msgstr "" -#: c-api/stable.rst:153 +#: c-api/stable.rst:196 msgid "Contents of Limited API" msgstr "" -#: c-api/stable.rst:156 -msgid "Currently, the Limited API includes the following items:" +#: c-api/stable.rst:199 +msgid "" +"Currently, the :ref:`Limited API ` includes the following " +"items:" +msgstr "" + +#: c-api/stable.rst:42 +msgid "PyUnstable" msgstr "" diff --git a/c-api/structures.po b/c-api/structures.po index 18bc48f85..8769b86fb 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -37,10 +37,12 @@ msgid "" "beginning of the object's representation in memory. These are represented " "by the :c:type:`PyObject` and :c:type:`PyVarObject` types, which are " "defined, in turn, by the expansions of some macros also used, whether " -"directly or indirectly, in the definition of all other Python objects." +"directly or indirectly, in the definition of all other Python objects. " +"Additional macros can be found under :ref:`reference counting " +"`." msgstr "" -#: c-api/structures.rst:25 +#: c-api/structures.rst:26 msgid "" "All object types are extensions of this type. This is a type which contains " "the information Python needs to treat a pointer to an object as an object. " @@ -51,7 +53,7 @@ msgid "" "macros :c:macro:`Py_REFCNT` and :c:macro:`Py_TYPE`." msgstr "" -#: c-api/structures.rst:37 +#: c-api/structures.rst:38 msgid "" "This is an extension of :c:type:`PyObject` that adds the :c:member:" "`~PyVarObject.ob_size` field. This is only used for objects that have some " @@ -60,135 +62,114 @@ msgid "" "`Py_REFCNT`, :c:macro:`Py_TYPE`, and :c:macro:`Py_SIZE`." msgstr "" -#: c-api/structures.rst:46 +#: c-api/structures.rst:47 msgid "" "This is a macro used when declaring new types which represent objects " "without a varying length. The PyObject_HEAD macro expands to::" msgstr "" -#: c-api/structures.rst:51 +#: c-api/structures.rst:52 msgid "See documentation of :c:type:`PyObject` above." msgstr "" -#: c-api/structures.rst:56 +#: c-api/structures.rst:57 msgid "" "This is a macro used when declaring new types which represent objects with a " "length that varies from instance to instance. The PyObject_VAR_HEAD macro " "expands to::" msgstr "" -#: c-api/structures.rst:62 +#: c-api/structures.rst:63 msgid "See documentation of :c:type:`PyVarObject` above." msgstr "" -#: c-api/structures.rst:67 +#: c-api/structures.rst:68 msgid "" "Test if the *x* object is the *y* object, the same as ``x is y`` in Python." msgstr "" -#: c-api/structures.rst:74 +#: c-api/structures.rst:75 msgid "" "Test if an object is the ``None`` singleton, the same as ``x is None`` in " "Python." msgstr "" -#: c-api/structures.rst:82 +#: c-api/structures.rst:83 msgid "" "Test if an object is the ``True`` singleton, the same as ``x is True`` in " "Python." msgstr "" -#: c-api/structures.rst:90 +#: c-api/structures.rst:91 msgid "" "Test if an object is the ``False`` singleton, the same as ``x is False`` in " "Python." msgstr "" -#: c-api/structures.rst:98 +#: c-api/structures.rst:99 msgid "Get the type of the Python object *o*." msgstr "" -#: c-api/structures.rst:100 +#: c-api/structures.rst:101 msgid "Return a :term:`borrowed reference`." msgstr "" -#: c-api/structures.rst:102 +#: c-api/structures.rst:103 msgid "Use the :c:func:`Py_SET_TYPE` function to set an object type." msgstr "" -#: c-api/structures.rst:104 +#: c-api/structures.rst:105 msgid "" ":c:func:`Py_TYPE()` is changed to an inline static function. The parameter " "type is no longer :c:expr:`const PyObject*`." msgstr "" -#: c-api/structures.rst:111 +#: c-api/structures.rst:112 msgid "" "Return non-zero if the object *o* type is *type*. Return zero otherwise. " "Equivalent to: ``Py_TYPE(o) == type``." msgstr "" -#: c-api/structures.rst:119 +#: c-api/structures.rst:120 msgid "Set the object *o* type to *type*." msgstr "" -#: c-api/structures.rst:126 -msgid "Get the reference count of the Python object *o*." -msgstr "" - -#: c-api/structures.rst:128 -msgid "" -"Use the :c:func:`Py_SET_REFCNT()` function to set an object reference count." -msgstr "" - -#: c-api/structures.rst:130 -msgid "The parameter type is no longer :c:expr:`const PyObject*`." -msgstr "" - -#: c-api/structures.rst:133 -msgid ":c:func:`Py_REFCNT()` is changed to the inline static function." -msgstr "" - -#: c-api/structures.rst:139 -msgid "Set the object *o* reference counter to *refcnt*." -msgstr "" - -#: c-api/structures.rst:146 +#: c-api/structures.rst:127 msgid "Get the size of the Python object *o*." msgstr "" -#: c-api/structures.rst:148 +#: c-api/structures.rst:129 msgid "Use the :c:func:`Py_SET_SIZE` function to set an object size." msgstr "" -#: c-api/structures.rst:150 +#: c-api/structures.rst:131 msgid "" ":c:func:`Py_SIZE()` is changed to an inline static function. The parameter " "type is no longer :c:expr:`const PyVarObject*`." msgstr "" -#: c-api/structures.rst:157 +#: c-api/structures.rst:138 msgid "Set the object *o* size to *size*." msgstr "" -#: c-api/structures.rst:164 +#: c-api/structures.rst:145 msgid "" "This is a macro which expands to initialization values for a new :c:type:" "`PyObject` type. This macro expands to::" msgstr "" -#: c-api/structures.rst:173 +#: c-api/structures.rst:154 msgid "" "This is a macro which expands to initialization values for a new :c:type:" "`PyVarObject` type, including the :c:member:`~PyVarObject.ob_size` field. " "This macro expands to::" msgstr "" -#: c-api/structures.rst:182 +#: c-api/structures.rst:163 msgid "Implementing functions and methods" msgstr "" -#: c-api/structures.rst:186 +#: c-api/structures.rst:167 msgid "" "Type of the functions used to implement most Python callables in C. " "Functions of this type take two :c:expr:`PyObject*` parameters and return " @@ -198,60 +179,60 @@ msgid "" "reference." msgstr "" -#: c-api/structures.rst:193 +#: c-api/structures.rst:174 msgid "The function signature is::" msgstr "" -#: c-api/structures.rst:200 +#: c-api/structures.rst:181 msgid "" "Type of the functions used to implement Python callables in C with " "signature :ref:`METH_VARARGS | METH_KEYWORDS `. " "The function signature is::" msgstr "" -#: c-api/structures.rst:211 +#: c-api/structures.rst:192 msgid "" "Type of the functions used to implement Python callables in C with " "signature :c:macro:`METH_FASTCALL`. The function signature is::" msgstr "" -#: c-api/structures.rst:221 +#: c-api/structures.rst:202 msgid "" "Type of the functions used to implement Python callables in C with " "signature :ref:`METH_FASTCALL | METH_KEYWORDS `. The function signature is::" msgstr "" -#: c-api/structures.rst:232 +#: c-api/structures.rst:213 msgid "" "Type of the functions used to implement Python callables in C with " "signature :ref:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS `. The function signature is::" msgstr "" -#: c-api/structures.rst:247 +#: c-api/structures.rst:228 msgid "" "Structure used to describe a method of an extension type. This structure " "has four fields:" msgstr "" -#: c-api/structures.rst:252 +#: c-api/structures.rst:233 msgid "Name of the method." msgstr "" -#: c-api/structures.rst:256 +#: c-api/structures.rst:237 msgid "Pointer to the C implementation." msgstr "" -#: c-api/structures.rst:260 +#: c-api/structures.rst:241 msgid "Flags bits indicating how the call should be constructed." msgstr "" -#: c-api/structures.rst:264 +#: c-api/structures.rst:245 msgid "Points to the contents of the docstring." msgstr "" -#: c-api/structures.rst:266 +#: c-api/structures.rst:247 msgid "" "The :c:member:`~PyMethodDef.ml_meth` is a C function pointer. The functions " "may be of different types, but they always return :c:expr:`PyObject*`. If " @@ -261,18 +242,18 @@ msgid "" "implementation uses the specific C type of the *self* object." msgstr "" -#: c-api/structures.rst:274 +#: c-api/structures.rst:255 msgid "" "The :c:member:`~PyMethodDef.ml_flags` field is a bitfield which can include " "the following flags. The individual flags indicate either a calling " "convention or a binding convention." msgstr "" -#: c-api/structures.rst:279 +#: c-api/structures.rst:260 msgid "There are these calling conventions:" msgstr "" -#: c-api/structures.rst:283 +#: c-api/structures.rst:264 msgid "" "This is the typical calling convention, where the methods have the type :c:" "type:`PyCFunction`. The function expects two :c:expr:`PyObject*` values. The " @@ -282,7 +263,7 @@ msgid "" "func:`PyArg_ParseTuple` or :c:func:`PyArg_UnpackTuple`." msgstr "" -#: c-api/structures.rst:293 +#: c-api/structures.rst:274 msgid "" "Can only be used in certain combinations with other flags: :ref:" "`METH_VARARGS | METH_KEYWORDS `, :ref:" @@ -291,11 +272,11 @@ msgid "" "METH_KEYWORDS>`." msgstr "" -#: c-api/structures.rst:307 +#: c-api/structures.rst:288 msgid ":c:expr:`METH_VARARGS | METH_KEYWORDS`" msgstr "" -#: c-api/structures.rst:302 +#: c-api/structures.rst:283 msgid "" "Methods with these flags must be of type :c:type:`PyCFunctionWithKeywords`. " "The function expects three parameters: *self*, *args*, *kwargs* where " @@ -304,7 +285,7 @@ msgid "" "using :c:func:`PyArg_ParseTupleAndKeywords`." msgstr "" -#: c-api/structures.rst:311 +#: c-api/structures.rst:292 msgid "" "Fast calling convention supporting only positional arguments. The methods " "have the type :c:type:`_PyCFunctionFast`. The first parameter is *self*, the " @@ -313,15 +294,15 @@ msgid "" "the array)." msgstr "" -#: c-api/structures.rst:321 -msgid "``METH_FASTCALL`` is now part of the stable ABI." +#: c-api/structures.rst:302 +msgid "``METH_FASTCALL`` is now part of the :ref:`stable ABI `." msgstr "" -#: c-api/structures.rst:338 +#: c-api/structures.rst:319 msgid ":c:expr:`METH_FASTCALL | METH_KEYWORDS`" msgstr "" -#: c-api/structures.rst:327 +#: c-api/structures.rst:308 msgid "" "Extension of :c:macro:`METH_FASTCALL` supporting also keyword arguments, " "with methods of type :c:type:`_PyCFunctionFastWithKeywords`. Keyword " @@ -333,17 +314,17 @@ msgid "" "the positional arguments." msgstr "" -#: c-api/structures.rst:342 +#: c-api/structures.rst:323 msgid "" "Can only be used in the combination with other flags: :ref:`METH_METHOD | " "METH_FASTCALL | METH_KEYWORDS `." msgstr "" -#: c-api/structures.rst:359 +#: c-api/structures.rst:340 msgid ":c:expr:`METH_METHOD | METH_FASTCALL | METH_KEYWORDS`" msgstr "" -#: c-api/structures.rst:349 +#: c-api/structures.rst:330 msgid "" "Extension of :ref:`METH_FASTCALL | METH_KEYWORDS ` supporting the *defining class*, that is, the class that " @@ -351,14 +332,14 @@ msgid "" "``Py_TYPE(self)``." msgstr "" -#: c-api/structures.rst:354 +#: c-api/structures.rst:335 msgid "" "The method needs to be of type :c:type:`PyCMethod`, the same as for " "``METH_FASTCALL | METH_KEYWORDS`` with ``defining_class`` argument added " "after ``self``." msgstr "" -#: c-api/structures.rst:363 +#: c-api/structures.rst:344 msgid "" "Methods without parameters don't need to check whether arguments are given " "if they are listed with the :c:macro:`METH_NOARGS` flag. They need to be of " @@ -367,13 +348,13 @@ msgid "" "the second parameter will be ``NULL``." msgstr "" -#: c-api/structures.rst:369 +#: c-api/structures.rst:350 msgid "" "The function must have 2 parameters. Since the second parameter is unused, :" "c:macro:`Py_UNUSED` can be used to prevent a compiler warning." msgstr "" -#: c-api/structures.rst:375 +#: c-api/structures.rst:356 msgid "" "Methods with a single object argument can be listed with the :c:macro:" "`METH_O` flag, instead of invoking :c:func:`PyArg_ParseTuple` with a " @@ -382,7 +363,7 @@ msgid "" "single argument." msgstr "" -#: c-api/structures.rst:381 +#: c-api/structures.rst:362 msgid "" "These two constants are not used to indicate the calling convention but the " "binding when use with methods of classes. These may not be used for " @@ -390,27 +371,27 @@ msgid "" "any given method." msgstr "" -#: c-api/structures.rst:391 +#: c-api/structures.rst:372 msgid "" "The method will be passed the type object as the first parameter rather than " "an instance of the type. This is used to create *class methods*, similar to " "what is created when using the :func:`classmethod` built-in function." msgstr "" -#: c-api/structures.rst:401 +#: c-api/structures.rst:382 msgid "" "The method will be passed ``NULL`` as the first parameter rather than an " "instance of the type. This is used to create *static methods*, similar to " "what is created when using the :func:`staticmethod` built-in function." msgstr "" -#: c-api/structures.rst:405 +#: c-api/structures.rst:386 msgid "" "One other constant controls whether a method is loaded in place of another " "definition with the same method name." msgstr "" -#: c-api/structures.rst:411 +#: c-api/structures.rst:392 msgid "" "The method will be loaded in place of existing definitions. Without " "*METH_COEXIST*, the default is to skip repeated definitions. Since slot " @@ -423,352 +404,491 @@ msgid "" "wrapper object calls." msgstr "" -#: c-api/structures.rst:423 +#: c-api/structures.rst:404 msgid "Accessing attributes of extension types" msgstr "" -#: c-api/structures.rst:427 +#: c-api/structures.rst:408 msgid "" "Structure which describes an attribute of a type which corresponds to a C " -"struct member. Its fields are:" +"struct member. Its fields are, in order:" msgstr "" -#: c-api/structures.rst:527 -msgid "Field" +#: c-api/structures.rst:413 +msgid "" +"Name of the member. A NULL value marks the end of a ``PyMemberDef[]`` array." msgstr "" -#: c-api/structures.rst:527 -msgid "C Type" +#: c-api/structures.rst:416 +msgid "The string should be static, no copy is made of it." msgstr "" -#: c-api/structures.rst:527 -msgid "Meaning" +#: c-api/structures.rst:420 +msgid "" +"The offset in bytes that the member is located on the type’s object struct." msgstr "" -#: c-api/structures.rst:433 -msgid ":attr:`name`" +#: c-api/structures.rst:424 +msgid "" +"The type of the member in the C struct. See :ref:`PyMemberDef-types` for the " +"possible values." msgstr "" -#: c-api/structures.rst:446 c-api/structures.rst:529 c-api/structures.rst:537 -msgid "const char \\*" +#: c-api/structures.rst:429 +msgid "" +"Zero or more of the :ref:`PyMemberDef-flags`, combined using bitwise OR." msgstr "" #: c-api/structures.rst:433 -msgid "name of the member" +msgid "" +"The docstring, or NULL. The string should be static, no copy is made of it. " +"Typically, it is defined using :c:macro:`PyDoc_STR`." msgstr "" -#: c-api/structures.rst:435 -msgid ":attr:`!type`" +#: c-api/structures.rst:437 +msgid "" +"By default (when :c:member:`~PyMemberDef.flags` is ``0``), members allow " +"both read and write access. Use the :c:macro:`Py_READONLY` flag for read-" +"only access. Certain types, like :c:macro:`Py_T_STRING`, imply :c:macro:" +"`Py_READONLY`. Only :c:macro:`Py_T_OBJECT_EX` (and legacy :c:macro:" +"`T_OBJECT`) members can be deleted." msgstr "" -#: c-api/structures.rst:442 c-api/structures.rst:458 -msgid "int" +#: c-api/structures.rst:446 +msgid "" +"For heap-allocated types (created using :c:func:`PyType_FromSpec` or " +"similar), ``PyMemberDef`` may contain a definition for the special member " +"``\"__vectorcalloffset__\"``, corresponding to :c:member:`~PyTypeObject." +"tp_vectorcall_offset` in type objects. These must be defined with " +"``Py_T_PYSSIZET`` and ``Py_READONLY``, for example::" msgstr "" -#: c-api/structures.rst:435 -msgid "the type of the member in the C struct" +#: c-api/structures.rst:458 +msgid "(You may need to ``#include `` for :c:func:`!offsetof`.)" msgstr "" -#: c-api/structures.rst:438 -msgid ":attr:`offset`" +#: c-api/structures.rst:460 +msgid "" +"The legacy offsets :c:member:`~PyTypeObject.tp_dictoffset` and :c:member:" +"`~PyTypeObject.tp_weaklistoffset` can be defined similarly using " +"``\"__dictoffset__\"`` and ``\"__weaklistoffset__\"`` members, but " +"extensions are strongly encouraged to use :c:macro:`Py_TPFLAGS_MANAGED_DICT` " +"and :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` instead." msgstr "" -#: c-api/structures.rst:474 -msgid "Py_ssize_t" +#: c-api/structures.rst:468 +msgid "" +"``PyMemberDef`` is always available. Previously, it required including " +"``\"structmember.h\"``." msgstr "" -#: c-api/structures.rst:438 +#: c-api/structures.rst:473 msgid "" -"the offset in bytes that the member is located on the type's object struct" +"Get an attribute belonging to the object at address *obj_addr*. The " +"attribute is described by ``PyMemberDef`` *m*. Returns ``NULL`` on error." msgstr "" -#: c-api/structures.rst:442 -msgid ":attr:`flags`" +#: c-api/structures.rst:479 +msgid "" +"``PyMember_GetOne`` is always available. Previously, it required including " +"``\"structmember.h\"``." msgstr "" -#: c-api/structures.rst:442 -msgid "flag bits indicating if the field should be read-only or writable" +#: c-api/structures.rst:484 +msgid "" +"Set an attribute belonging to the object at address *obj_addr* to object " +"*o*. The attribute to set is described by ``PyMemberDef`` *m*. Returns " +"``0`` if successful and a negative value on failure." msgstr "" -#: c-api/structures.rst:446 -msgid ":attr:`doc`" +#: c-api/structures.rst:490 +msgid "" +"``PyMember_SetOne`` is always available. Previously, it required including " +"``\"structmember.h\"``." msgstr "" -#: c-api/structures.rst:446 -msgid "points to the contents of the docstring" +#: c-api/structures.rst:496 +msgid "Member flags" msgstr "" -#: c-api/structures.rst:450 -msgid "" -":attr:`!type` can be one of many ``T_`` macros corresponding to various C " -"types. When the member is accessed in Python, it will be converted to the " -"equivalent Python type." +#: c-api/structures.rst:498 +msgid "The following flags can be used with :c:member:`PyMemberDef.flags`:" msgstr "" -#: c-api/structures.rst:455 -msgid "Macro name" +#: c-api/structures.rst:502 +msgid "Not writable." msgstr "" -#: c-api/structures.rst:455 -msgid "C type" +#: c-api/structures.rst:506 +msgid "" +"Emit an ``object.__getattr__`` :ref:`audit event ` before " +"reading." msgstr "" -#: c-api/structures.rst:457 -msgid "T_SHORT" +#: c-api/structures.rst:511 +msgid "" +"Indicates that the :c:member:`~PyMemberDef.offset` of this ``PyMemberDef`` " +"entry indicates an offset from the subclass-specific data, rather than from " +"``PyObject``." msgstr "" -#: c-api/structures.rst:457 -msgid "short" +#: c-api/structures.rst:515 +msgid "" +"Can only be used as part of :c:member:`Py_tp_members ` :c:type:`slot ` when creating a class using " +"negative :c:member:`~PyType_Spec.basicsize`. It is mandatory in that case." msgstr "" -#: c-api/structures.rst:458 -msgid "T_INT" +#: c-api/structures.rst:520 +msgid "" +"This flag is only used in :c:type:`PyTypeSlot`. When setting :c:member:" +"`~PyTypeObject.tp_members` during class creation, Python clears it and sets :" +"c:member:`PyMemberDef.offset` to the offset from the ``PyObject`` struct." msgstr "" -#: c-api/structures.rst:459 -msgid "T_LONG" +#: c-api/structures.rst:532 +msgid "" +"The :c:macro:`!RESTRICTED`, :c:macro:`!READ_RESTRICTED` and :c:macro:`!" +"WRITE_RESTRICTED` macros available with ``#include \"structmember.h\"`` are " +"deprecated. :c:macro:`!READ_RESTRICTED` and :c:macro:`!RESTRICTED` are " +"equivalent to :c:macro:`Py_AUDIT_READ`; :c:macro:`!WRITE_RESTRICTED` does " +"nothing." msgstr "" -#: c-api/structures.rst:459 -msgid "long" +#: c-api/structures.rst:543 +msgid "" +"The :c:macro:`!READONLY` macro was renamed to :c:macro:`Py_READONLY`. The :c:" +"macro:`!PY_AUDIT_READ` macro was renamed with the ``Py_`` prefix. The new " +"names are now always available. Previously, these required ``#include " +"\"structmember.h\"``. The header is still available and it provides the old " +"names." msgstr "" -#: c-api/structures.rst:460 -msgid "T_FLOAT" +#: c-api/structures.rst:552 +msgid "Member types" msgstr "" -#: c-api/structures.rst:460 -msgid "float" +#: c-api/structures.rst:554 +msgid "" +":c:member:`PyMemberDef.type` can be one of the following macros " +"corresponding to various C types. When the member is accessed in Python, it " +"will be converted to the equivalent Python type. When it is set from Python, " +"it will be converted back to the C type. If that is not possible, an " +"exception such as :exc:`TypeError` or :exc:`ValueError` is raised." msgstr "" -#: c-api/structures.rst:461 -msgid "T_DOUBLE" +#: c-api/structures.rst:562 +msgid "" +"Unless marked (D), attributes defined this way cannot be deleted using e.g. :" +"keyword:`del` or :py:func:`delattr`." msgstr "" -#: c-api/structures.rst:461 -msgid "double" +#: c-api/structures.rst:566 +msgid "Macro name" msgstr "" -#: c-api/structures.rst:462 -msgid "T_STRING" +#: c-api/structures.rst:566 +msgid "C type" msgstr "" -#: c-api/structures.rst:463 -msgid "T_OBJECT" +#: c-api/structures.rst:566 +msgid "Python type" msgstr "" -#: c-api/structures.rst:464 -msgid "PyObject \\*" +#: c-api/structures.rst:568 +msgid ":c:expr:`char`" msgstr "" -#: c-api/structures.rst:464 -msgid "T_OBJECT_EX" +#: c-api/structures.rst:569 c-api/structures.rst:571 c-api/structures.rst:573 +#: c-api/structures.rst:575 c-api/structures.rst:577 c-api/structures.rst:578 +msgid ":py:class:`int`" msgstr "" -#: c-api/structures.rst:465 -msgid "T_CHAR" +#: c-api/structures.rst:569 +msgid ":c:expr:`short`" msgstr "" -#: c-api/structures.rst:466 c-api/structures.rst:471 -msgid "char" +#: c-api/structures.rst:570 +msgid ":c:expr:`int`" msgstr "" -#: c-api/structures.rst:466 -msgid "T_BYTE" +#: c-api/structures.rst:571 +msgid ":c:expr:`long`" msgstr "" -#: c-api/structures.rst:467 -msgid "T_UBYTE" +#: c-api/structures.rst:572 +msgid ":c:expr:`long long`" msgstr "" -#: c-api/structures.rst:467 -msgid "unsigned char" +#: c-api/structures.rst:573 +msgid ":c:expr:`unsigned char`" msgstr "" -#: c-api/structures.rst:468 -msgid "T_UINT" +#: c-api/structures.rst:574 +msgid ":c:expr:`unsigned int`" msgstr "" -#: c-api/structures.rst:468 -msgid "unsigned int" +#: c-api/structures.rst:575 +msgid ":c:expr:`unsigned short`" msgstr "" -#: c-api/structures.rst:469 -msgid "T_USHORT" +#: c-api/structures.rst:576 +msgid ":c:expr:`unsigned long`" msgstr "" -#: c-api/structures.rst:469 -msgid "unsigned short" +#: c-api/structures.rst:577 +msgid ":c:expr:`unsigned long long`" msgstr "" -#: c-api/structures.rst:470 -msgid "T_ULONG" +#: c-api/structures.rst:578 +msgid ":c:expr:`Py_ssize_t`" msgstr "" -#: c-api/structures.rst:470 -msgid "unsigned long" +#: c-api/structures.rst:579 +msgid ":c:expr:`float`" msgstr "" -#: c-api/structures.rst:471 -msgid "T_BOOL" +#: c-api/structures.rst:580 +msgid ":py:class:`float`" msgstr "" -#: c-api/structures.rst:472 -msgid "T_LONGLONG" +#: c-api/structures.rst:580 +msgid ":c:expr:`double`" msgstr "" -#: c-api/structures.rst:472 -msgid "long long" +#: c-api/structures.rst:581 +msgid ":c:expr:`char` (written as 0 or 1)" msgstr "" -#: c-api/structures.rst:473 -msgid "T_ULONGLONG" +#: c-api/structures.rst:581 +msgid ":py:class:`bool`" msgstr "" -#: c-api/structures.rst:473 -msgid "unsigned long long" +#: c-api/structures.rst:583 +msgid ":c:expr:`const char *` (*)" msgstr "" -#: c-api/structures.rst:474 -msgid "T_PYSSIZET" +#: c-api/structures.rst:584 +msgid ":py:class:`str` (RO)" msgstr "" -#: c-api/structures.rst:477 -msgid "" -":c:macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` differ in that :c:macro:" -"`T_OBJECT` returns ``None`` if the member is ``NULL`` and :c:macro:" -"`T_OBJECT_EX` raises an :exc:`AttributeError`. Try to use :c:macro:" -"`T_OBJECT_EX` over :c:macro:`T_OBJECT` because :c:macro:`T_OBJECT_EX` " -"handles use of the :keyword:`del` statement on that attribute more correctly " -"than :c:macro:`T_OBJECT`." +#: c-api/structures.rst:584 +msgid ":c:expr:`const char[]` (*)" msgstr "" -#: c-api/structures.rst:484 -msgid "" -":attr:`flags` can be ``0`` for write and read access or :c:macro:`READONLY` " -"for read-only access. Using :c:macro:`T_STRING` for :attr:`type` implies :c:" -"macro:`READONLY`. :c:macro:`T_STRING` data is interpreted as UTF-8. Only :c:" -"macro:`T_OBJECT` and :c:macro:`T_OBJECT_EX` members can be deleted. (They " -"are set to ``NULL``)." +#: c-api/structures.rst:585 +msgid ":c:expr:`char` (0-127)" msgstr "" -#: c-api/structures.rst:492 -msgid "" -"Heap allocated types (created using :c:func:`PyType_FromSpec` or similar), " -"``PyMemberDef`` may contain definitions for the special members " -"``__dictoffset__``, ``__weaklistoffset__`` and ``__vectorcalloffset__``, " -"corresponding to :c:member:`~PyTypeObject.tp_dictoffset`, :c:member:" -"`~PyTypeObject.tp_weaklistoffset` and :c:member:`~PyTypeObject." -"tp_vectorcall_offset` in type objects. These must be defined with " -"``T_PYSSIZET`` and ``READONLY``, for example::" +#: c-api/structures.rst:585 +msgid ":py:class:`str` (**)" msgstr "" -#: c-api/structures.rst:509 -msgid "" -"Get an attribute belonging to the object at address *obj_addr*. The " -"attribute is described by ``PyMemberDef`` *m*. Returns ``NULL`` on error." +#: c-api/structures.rst:586 +msgid ":c:expr:`PyObject *`" msgstr "" -#: c-api/structures.rst:516 -msgid "" -"Set an attribute belonging to the object at address *obj_addr* to object " -"*o*. The attribute to set is described by ``PyMemberDef`` *m*. Returns " -"``0`` if successful and a negative value on failure." +#: c-api/structures.rst:586 +msgid ":py:class:`object` (D)" msgstr "" -#: c-api/structures.rst:523 +#: c-api/structures.rst:589 msgid "" -"Structure to define property-like access for a type. See also description of " -"the :c:member:`PyTypeObject.tp_getset` slot." +"(*): Zero-terminated, UTF8-encoded C string. With :c:macro:`!Py_T_STRING` " +"the C representation is a pointer; with :c:macro:`!Py_T_STRING_INLINE` the " +"string is stored directly in the structure." msgstr "" -#: c-api/structures.rst:529 -msgid "name" +#: c-api/structures.rst:594 +msgid "(**): String of length 1. Only ASCII is accepted." msgstr "" -#: c-api/structures.rst:529 -msgid "attribute name" +#: c-api/structures.rst:596 +msgid "(RO): Implies :c:macro:`Py_READONLY`." msgstr "" -#: c-api/structures.rst:531 -msgid "get" +#: c-api/structures.rst:598 +msgid "" +"(D): Can be deleted, in which case the pointer is set to ``NULL``. Reading a " +"``NULL`` pointer raises :py:exc:`AttributeError`." msgstr "" -#: c-api/structures.rst:531 -msgid "getter" +#: c-api/structures.rst:624 +msgid "" +"In previous versions, the macros were only available with ``#include " +"\"structmember.h\"`` and were named without the ``Py_`` prefix (e.g. as " +"``T_INT``). The header is still available and contains the old names, along " +"with the following deprecated types:" msgstr "" -#: c-api/structures.rst:531 -msgid "C function to get the attribute" +#: c-api/structures.rst:632 +msgid "" +"Like ``Py_T_OBJECT_EX``, but ``NULL`` is converted to ``None``. This results " +"in surprising behavior in Python: deleting the attribute effectively sets it " +"to ``None``." msgstr "" -#: c-api/structures.rst:533 -msgid "set" +#: c-api/structures.rst:638 +msgid "Always ``None``. Must be used with :c:macro:`Py_READONLY`." msgstr "" -#: c-api/structures.rst:533 -msgid "setter" +#: c-api/structures.rst:641 +msgid "Defining Getters and Setters" msgstr "" -#: c-api/structures.rst:533 +#: c-api/structures.rst:645 msgid "" -"optional C function to set or delete the attribute, if omitted the attribute " -"is readonly" +"Structure to define property-like access for a type. See also description of " +"the :c:member:`PyTypeObject.tp_getset` slot." msgstr "" -#: c-api/structures.rst:537 -msgid "doc" +#: c-api/structures.rst:650 +msgid "attribute name" msgstr "" -#: c-api/structures.rst:537 -msgid "optional docstring" +#: c-api/structures.rst:654 +msgid "C function to get the attribute." msgstr "" -#: c-api/structures.rst:539 -msgid "closure" +#: c-api/structures.rst:658 +msgid "" +"Optional C function to set or delete the attribute, if omitted the attribute " +"is readonly." msgstr "" -#: c-api/structures.rst:539 -msgid "void \\*" +#: c-api/structures.rst:662 +msgid "optional docstring" msgstr "" -#: c-api/structures.rst:539 +#: c-api/structures.rst:666 msgid "" -"optional function pointer, providing additional data for getter and setter" +"Optional function pointer, providing additional data for getter and setter." msgstr "" -#: c-api/structures.rst:544 +#: c-api/structures.rst:668 msgid "" "The ``get`` function takes one :c:expr:`PyObject*` parameter (the instance) " "and a function pointer (the associated ``closure``)::" msgstr "" -#: c-api/structures.rst:549 +#: c-api/structures.rst:673 msgid "" "It should return a new reference on success or ``NULL`` with a set exception " "on failure." msgstr "" -#: c-api/structures.rst:552 +#: c-api/structures.rst:676 msgid "" "``set`` functions take two :c:expr:`PyObject*` parameters (the instance and " "the value to be set) and a function pointer (the associated ``closure``)::" msgstr "" -#: c-api/structures.rst:557 +#: c-api/structures.rst:681 msgid "" "In case the attribute should be deleted the second parameter is ``NULL``. " "Should return ``0`` on success or ``-1`` with a set exception on failure." msgstr "" -#: c-api/structures.rst:399 +#: c-api/structures.rst:380 msgid "built-in function" msgstr "" -#: c-api/structures.rst:389 +#: c-api/structures.rst:370 msgid "classmethod" msgstr "" -#: c-api/structures.rst:399 +#: c-api/structures.rst:380 msgid "staticmethod" msgstr "" + +#: c-api/structures.rst:525 +msgid "READ_RESTRICTED" +msgstr "" + +#: c-api/structures.rst:525 +msgid "WRITE_RESTRICTED" +msgstr "" + +#: c-api/structures.rst:525 +msgid "RESTRICTED" +msgstr "" + +#: c-api/structures.rst:538 +msgid "READONLY" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_BYTE" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_SHORT" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_INT" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_LONG" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_LONGLONG" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_UBYTE" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_USHORT" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_UINT" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_ULONG" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_ULONGULONG" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_PYSSIZET" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_FLOAT" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_DOUBLE" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_BOOL" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_CHAR" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_STRING" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_STRING_INPLACE" +msgstr "" + +#: c-api/structures.rst:601 +msgid "T_OBJECT_EX" +msgstr "" + +#: c-api/structures.rst:601 +msgid "structmember.h" +msgstr "" diff --git a/c-api/sys.po b/c-api/sys.po index 756152926..ef9b4c73e 100644 --- a/c-api/sys.po +++ b/c-api/sys.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -34,13 +34,17 @@ msgstr "" msgid "" "Return true (nonzero) if the standard I/O file *fp* with name *filename* is " "deemed interactive. This is the case for files for which " -"``isatty(fileno(fp))`` is true. If the global flag :c:data:" -"`Py_InteractiveFlag` is true, this function also returns true if the " -"*filename* pointer is ``NULL`` or if the name is equal to one of the strings " -"``''`` or ``'???'``." +"``isatty(fileno(fp))`` is true. If the :c:member:`PyConfig.interactive` is " +"non-zero, this function also returns true if the *filename* pointer is " +"``NULL`` or if the name is equal to one of the strings ``''`` or " +"``'???'``." msgstr "" -#: c-api/sys.rst:32 +#: c-api/sys.rst:29 +msgid "This function must not be called before Python is initialized." +msgstr "" + +#: c-api/sys.rst:34 msgid "" "Function to prepare some internal state before a process fork. This should " "be called before calling :c:func:`fork` or any similar function that clones " @@ -48,14 +52,14 @@ msgid "" "defined." msgstr "" -#: c-api/sys.rst:38 +#: c-api/sys.rst:40 msgid "" "The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread " "` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_BeforeFork()``." msgstr "" -#: c-api/sys.rst:48 +#: c-api/sys.rst:50 msgid "" "Function to update some internal state after a process fork. This should be " "called from the parent process after calling :c:func:`fork` or any similar " @@ -64,14 +68,14 @@ msgid "" "defined." msgstr "" -#: c-api/sys.rst:55 +#: c-api/sys.rst:57 msgid "" "The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread " "` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_AfterFork_Parent()``." msgstr "" -#: c-api/sys.rst:65 +#: c-api/sys.rst:67 msgid "" "Function to update internal interpreter state after a process fork. This " "must be called from the child process after calling :c:func:`fork`, or any " @@ -80,21 +84,21 @@ msgid "" "systems where :c:func:`fork` is defined." msgstr "" -#: c-api/sys.rst:72 +#: c-api/sys.rst:74 msgid "" "The C :c:func:`fork` call should only be made from the :ref:`\"main\" thread " "` (of the :ref:`\"main\" interpreter `). The same is true for ``PyOS_AfterFork_Child()``." msgstr "" -#: c-api/sys.rst:80 +#: c-api/sys.rst:82 msgid "" ":func:`os.register_at_fork` allows registering custom Python functions to be " "called by :c:func:`PyOS_BeforeFork()`, :c:func:`PyOS_AfterFork_Parent` and :" "c:func:`PyOS_AfterFork_Child`." msgstr "" -#: c-api/sys.rst:87 +#: c-api/sys.rst:89 msgid "" "Function to update some internal state after a process fork; this should be " "called in the new process if the Python interpreter will continue to be " @@ -102,11 +106,11 @@ msgid "" "not need to be called." msgstr "" -#: c-api/sys.rst:92 +#: c-api/sys.rst:94 msgid "This function is superseded by :c:func:`PyOS_AfterFork_Child()`." msgstr "" -#: c-api/sys.rst:98 +#: c-api/sys.rst:100 msgid "" "Return true when the interpreter runs out of stack space. This is a " "reliable check, but is only available when :c:macro:`USE_STACKCHECK` is " @@ -115,7 +119,7 @@ msgid "" "should never change the definition in your own code." msgstr "" -#: c-api/sys.rst:107 +#: c-api/sys.rst:109 msgid "" "Return the current signal handler for signal *i*. This is a thin wrapper " "around either :c:func:`!sigaction` or :c:func:`!signal`. Do not call those " @@ -123,7 +127,7 @@ msgid "" "expr:`void (\\*)(int)`." msgstr "" -#: c-api/sys.rst:115 +#: c-api/sys.rst:117 msgid "" "Set the signal handler for signal *i* to be *h*; return the old signal " "handler. This is a thin wrapper around either :c:func:`!sigaction` or :c:" @@ -131,21 +135,21 @@ msgid "" "`PyOS_sighandler_t` is a typedef alias for :c:expr:`void (\\*)(int)`." msgstr "" -#: c-api/sys.rst:123 +#: c-api/sys.rst:125 msgid "" "This function should not be called directly: use the :c:type:`PyConfig` API " "with the :c:func:`PyConfig_SetBytesString` function which ensures that :ref:" "`Python is preinitialized `." msgstr "" -#: c-api/sys.rst:194 +#: c-api/sys.rst:196 msgid "" "This function must not be called before :ref:`Python is preinitialized ` and so that the LC_CTYPE locale is properly configured: see the :c:" "func:`Py_PreInitialize` function." msgstr "" -#: c-api/sys.rst:131 +#: c-api/sys.rst:133 msgid "" "Decode a byte string from the :term:`filesystem encoding and error handler`. " "If the error handler is :ref:`surrogateescape error handler " @@ -155,57 +159,57 @@ msgid "" "instead of decoding them." msgstr "" -#: c-api/sys.rst:138 +#: c-api/sys.rst:140 msgid "" "Return a pointer to a newly allocated wide character string, use :c:func:" "`PyMem_RawFree` to free the memory. If size is not ``NULL``, write the " "number of wide characters excluding the null character into ``*size``" msgstr "" -#: c-api/sys.rst:142 +#: c-api/sys.rst:144 msgid "" "Return ``NULL`` on decoding error or memory allocation error. If *size* is " "not ``NULL``, ``*size`` is set to ``(size_t)-1`` on memory error or set to " "``(size_t)-2`` on decoding error." msgstr "" -#: c-api/sys.rst:186 +#: c-api/sys.rst:188 msgid "" "The :term:`filesystem encoding and error handler` are selected by :c:func:" "`PyConfig_Read`: see :c:member:`~PyConfig.filesystem_encoding` and :c:member:" "`~PyConfig.filesystem_errors` members of :c:type:`PyConfig`." msgstr "" -#: c-api/sys.rst:150 +#: c-api/sys.rst:152 msgid "" "Decoding errors should never happen, unless there is a bug in the C library." msgstr "" -#: c-api/sys.rst:153 +#: c-api/sys.rst:155 msgid "" "Use the :c:func:`Py_EncodeLocale` function to encode the character string " "back to a byte string." msgstr "" -#: c-api/sys.rst:158 +#: c-api/sys.rst:160 msgid "" "The :c:func:`PyUnicode_DecodeFSDefaultAndSize` and :c:func:" "`PyUnicode_DecodeLocaleAndSize` functions." msgstr "" -#: c-api/sys.rst:205 +#: c-api/sys.rst:207 msgid "" "The function now uses the UTF-8 encoding in the :ref:`Python UTF-8 Mode " "`." msgstr "" -#: c-api/sys.rst:167 +#: c-api/sys.rst:169 msgid "" -"The function now uses the UTF-8 encoding on Windows if :c:data:" -"`Py_LegacyWindowsFSEncodingFlag` is zero;" +"The function now uses the UTF-8 encoding on Windows if :c:member:" +"`PyPreConfig.legacy_windows_fs_encoding` is zero;" msgstr "" -#: c-api/sys.rst:174 +#: c-api/sys.rst:176 msgid "" "Encode a wide character string to the :term:`filesystem encoding and error " "handler`. If the error handler is :ref:`surrogateescape error handler " @@ -213,42 +217,42 @@ msgid "" "converted to bytes 0x80..0xFF." msgstr "" -#: c-api/sys.rst:179 +#: c-api/sys.rst:181 msgid "" "Return a pointer to a newly allocated byte string, use :c:func:`PyMem_Free` " "to free the memory. Return ``NULL`` on encoding error or memory allocation " "error." msgstr "" -#: c-api/sys.rst:183 +#: c-api/sys.rst:185 msgid "" "If error_pos is not ``NULL``, ``*error_pos`` is set to ``(size_t)-1`` on " "success, or set to the index of the invalid character on encoding error." msgstr "" -#: c-api/sys.rst:190 +#: c-api/sys.rst:192 msgid "" "Use the :c:func:`Py_DecodeLocale` function to decode the bytes string back " "to a wide character string." msgstr "" -#: c-api/sys.rst:200 +#: c-api/sys.rst:202 msgid "" "The :c:func:`PyUnicode_EncodeFSDefault` and :c:func:`PyUnicode_EncodeLocale` " "functions." msgstr "" -#: c-api/sys.rst:209 +#: c-api/sys.rst:211 msgid "" -"The function now uses the UTF-8 encoding on Windows if :c:data:" -"`Py_LegacyWindowsFSEncodingFlag` is zero." +"The function now uses the UTF-8 encoding on Windows if :c:member:" +"`PyPreConfig.legacy_windows_fs_encoding` is zero." msgstr "" -#: c-api/sys.rst:217 +#: c-api/sys.rst:219 msgid "System Functions" msgstr "" -#: c-api/sys.rst:219 +#: c-api/sys.rst:221 msgid "" "These are utility functions that make functionality from the :mod:`sys` " "module accessible to C code. They all work with the current interpreter " @@ -256,43 +260,43 @@ msgid "" "state structure." msgstr "" -#: c-api/sys.rst:225 +#: c-api/sys.rst:227 msgid "" "Return the object *name* from the :mod:`sys` module or ``NULL`` if it does " "not exist, without setting an exception." msgstr "" -#: c-api/sys.rst:230 +#: c-api/sys.rst:232 msgid "" "Set *name* in the :mod:`sys` module to *v* unless *v* is ``NULL``, in which " "case *name* is deleted from the sys module. Returns ``0`` on success, ``-1`` " "on error." msgstr "" -#: c-api/sys.rst:236 +#: c-api/sys.rst:238 msgid "" "Reset :data:`sys.warnoptions` to an empty list. This function may be called " "prior to :c:func:`Py_Initialize`." msgstr "" -#: c-api/sys.rst:252 +#: c-api/sys.rst:254 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "warnoptions` should be used instead, see :ref:`Python Initialization " "Configuration `." msgstr "" -#: c-api/sys.rst:245 +#: c-api/sys.rst:247 msgid "" "Append *s* to :data:`sys.warnoptions`. This function must be called prior " "to :c:func:`Py_Initialize` in order to affect the warnings filter list." msgstr "" -#: c-api/sys.rst:256 +#: c-api/sys.rst:258 msgid "Append *unicode* to :data:`sys.warnoptions`." msgstr "" -#: c-api/sys.rst:258 +#: c-api/sys.rst:260 msgid "" "Note: this function is not currently usable from outside the CPython " "implementation, as it must be called prior to the implicit import of :mod:" @@ -301,7 +305,7 @@ msgid "" "Unicode objects." msgstr "" -#: c-api/sys.rst:268 +#: c-api/sys.rst:270 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "module_search_paths` and :c:member:`PyConfig.module_search_paths_set` should " @@ -309,20 +313,20 @@ msgid "" "config>`." msgstr "" -#: c-api/sys.rst:273 +#: c-api/sys.rst:275 msgid "" "Set :data:`sys.path` to a list object of paths found in *path* which should " "be a list of paths separated with the platform's search path delimiter (``:" "`` on Unix, ``;`` on Windows)." msgstr "" -#: c-api/sys.rst:281 +#: c-api/sys.rst:283 msgid "" "Write the output string described by *format* to :data:`sys.stdout`. No " "exceptions are raised, even if truncation occurs (see below)." msgstr "" -#: c-api/sys.rst:284 +#: c-api/sys.rst:286 msgid "" "*format* should limit the total size of the formatted output string to 1000 " "bytes or less -- after 1000 bytes, the output string is truncated. In " @@ -333,58 +337,58 @@ msgid "" "of digits for very large numbers." msgstr "" -#: c-api/sys.rst:292 +#: c-api/sys.rst:294 msgid "" "If a problem occurs, or :data:`sys.stdout` is unset, the formatted message " "is written to the real (C level) *stdout*." msgstr "" -#: c-api/sys.rst:297 +#: c-api/sys.rst:299 msgid "" "As :c:func:`PySys_WriteStdout`, but write to :data:`sys.stderr` or *stderr* " "instead." msgstr "" -#: c-api/sys.rst:302 +#: c-api/sys.rst:304 msgid "" "Function similar to PySys_WriteStdout() but format the message using :c:func:" "`PyUnicode_FromFormatV` and don't truncate the message to an arbitrary " "length." msgstr "" -#: c-api/sys.rst:310 +#: c-api/sys.rst:312 msgid "" "As :c:func:`PySys_FormatStdout`, but write to :data:`sys.stderr` or *stderr* " "instead." msgstr "" -#: c-api/sys.rst:317 +#: c-api/sys.rst:319 msgid "" "This API is kept for backward compatibility: setting :c:member:`PyConfig." "xoptions` should be used instead, see :ref:`Python Initialization " "Configuration `." msgstr "" -#: c-api/sys.rst:321 +#: c-api/sys.rst:323 msgid "" "Parse *s* as a set of :option:`-X` options and add them to the current " "options mapping as returned by :c:func:`PySys_GetXOptions`. This function " "may be called prior to :c:func:`Py_Initialize`." msgstr "" -#: c-api/sys.rst:331 +#: c-api/sys.rst:333 msgid "" "Return the current dictionary of :option:`-X` options, similarly to :data:" "`sys._xoptions`. On error, ``NULL`` is returned and an exception is set." msgstr "" -#: c-api/sys.rst:340 +#: c-api/sys.rst:342 msgid "" "Raise an auditing event with any active hooks. Return zero for success and " "non-zero with an exception set on failure." msgstr "" -#: c-api/sys.rst:343 +#: c-api/sys.rst:345 msgid "" "If any hooks have been added, *format* and other arguments will be used to " "construct a tuple to pass. Apart from ``N``, the same format characters as " @@ -395,23 +399,23 @@ msgid "" "leaks.)" msgstr "" -#: c-api/sys.rst:351 +#: c-api/sys.rst:353 msgid "" "Note that ``#`` format characters should always be treated as :c:type:" "`Py_ssize_t`, regardless of whether ``PY_SSIZE_T_CLEAN`` was defined." msgstr "" -#: c-api/sys.rst:354 +#: c-api/sys.rst:356 msgid ":func:`sys.audit` performs the same function from Python code." msgstr "" -#: c-api/sys.rst:360 +#: c-api/sys.rst:362 msgid "" "Require :c:type:`Py_ssize_t` for ``#`` format characters. Previously, an " "unavoidable deprecation warning was raised." msgstr "" -#: c-api/sys.rst:366 +#: c-api/sys.rst:368 msgid "" "Append the callable *hook* to the list of active auditing hooks. Return zero " "on success and non-zero on failure. If the runtime has been initialized, " @@ -419,14 +423,14 @@ msgid "" "all interpreters created by the runtime." msgstr "" -#: c-api/sys.rst:372 +#: c-api/sys.rst:374 msgid "" "The *userData* pointer is passed into the hook function. Since hook " "functions may be called from different runtimes, this pointer should not " "refer directly to Python state." msgstr "" -#: c-api/sys.rst:376 +#: c-api/sys.rst:378 msgid "" "This function is safe to call before :c:func:`Py_Initialize`. When called " "after runtime initialization, existing audit hooks are notified and may " @@ -434,7 +438,7 @@ msgid "" "`Exception` (other errors will not be silenced)." msgstr "" -#: c-api/sys.rst:381 +#: c-api/sys.rst:383 msgid "" "The hook function is of type :c:expr:`int (*)(const char *event, PyObject " "*args, void *userData)`, where *args* is guaranteed to be a :c:type:" @@ -442,20 +446,20 @@ msgid "" "Python interpreter that raised the event." msgstr "" -#: c-api/sys.rst:386 +#: c-api/sys.rst:388 msgid "" "See :pep:`578` for a detailed description of auditing. Functions in the " "runtime and standard library that raise events are listed in the :ref:`audit " "events table `. Details are in each function's documentation." msgstr "" -#: c-api/sys.rst:391 +#: c-api/sys.rst:393 msgid "" "Raises an :ref:`auditing event ` ``sys.addaudithook`` with no " "arguments." msgstr "" -#: c-api/sys.rst:393 +#: c-api/sys.rst:395 msgid "" "If the interpreter is initialized, this function raises a auditing event " "``sys.addaudithook`` with no arguments. If any existing hooks raise an " @@ -464,11 +468,11 @@ msgid "" "hook has been added unless they control all existing hooks." msgstr "" -#: c-api/sys.rst:405 +#: c-api/sys.rst:407 msgid "Process Control" msgstr "" -#: c-api/sys.rst:412 +#: c-api/sys.rst:414 msgid "" "Print a fatal error message and kill the process. No cleanup is performed. " "This function should only be invoked when a condition is detected that would " @@ -478,29 +482,29 @@ msgid "" "file:`core` file." msgstr "" -#: c-api/sys.rst:419 +#: c-api/sys.rst:421 msgid "" "The ``Py_FatalError()`` function is replaced with a macro which logs " "automatically the name of the current function, unless the " "``Py_LIMITED_API`` macro is defined." msgstr "" -#: c-api/sys.rst:423 +#: c-api/sys.rst:425 msgid "Log the function name automatically." msgstr "" -#: c-api/sys.rst:433 +#: c-api/sys.rst:435 msgid "" "Exit the current process. This calls :c:func:`Py_FinalizeEx` and then calls " "the standard C library function ``exit(status)``. If :c:func:" "`Py_FinalizeEx` indicates an error, the exit status is set to 120." msgstr "" -#: c-api/sys.rst:437 +#: c-api/sys.rst:439 msgid "Errors from finalization no longer ignored." msgstr "" -#: c-api/sys.rst:447 +#: c-api/sys.rst:449 msgid "" "Register a cleanup function to be called by :c:func:`Py_FinalizeEx`. The " "cleanup function will be called with no arguments and should return no " @@ -512,18 +516,18 @@ msgid "" "should be called by *func*." msgstr "" -#: c-api/sys.rst:410 +#: c-api/sys.rst:412 msgid "abort()" msgstr "" -#: c-api/sys.rst:443 +#: c-api/sys.rst:445 msgid "Py_FinalizeEx()" msgstr "" -#: c-api/sys.rst:429 +#: c-api/sys.rst:431 msgid "exit()" msgstr "" -#: c-api/sys.rst:443 +#: c-api/sys.rst:445 msgid "cleanup functions" msgstr "" diff --git a/c-api/tuple.po b/c-api/tuple.po index 45ba654a9..edfb8f9b2 100644 --- a/c-api/tuple.po +++ b/c-api/tuple.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -79,7 +79,7 @@ msgstr "" msgid "" "Return the slice of the tuple pointed to by *p* between *low* and *high*, or " "``NULL`` on failure. This is the equivalent of the Python expression " -"``p[low:high]``. Indexing from the end of the list is not supported." +"``p[low:high]``. Indexing from the end of the tuple is not supported." msgstr "" #: c-api/tuple.rst:77 diff --git a/c-api/type.po b/c-api/type.po index 192d57cef..023b0f3dc 100644 --- a/c-api/type.po +++ b/c-api/type.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -53,7 +53,8 @@ msgid "" "Return the :c:member:`~PyTypeObject.tp_flags` member of *type*. This " "function is primarily meant for use with ``Py_LIMITED_API``; the individual " "flag bits are guaranteed to be stable across Python releases, but access to :" -"c:member:`~PyTypeObject.tp_flags` itself is not part of the limited API." +"c:member:`~PyTypeObject.tp_flags` itself is not part of the :ref:`limited " +"API `." msgstr "" #: c-api/type.rst:49 @@ -62,49 +63,119 @@ msgstr "" #: c-api/type.rst:55 msgid "" +"Return the type object's internal namespace, which is otherwise only exposed " +"via a read-only proxy (``cls.__dict__``). This is a replacement for " +"accessing :c:member:`~PyTypeObject.tp_dict` directly. The returned " +"dictionary must be treated as read-only." +msgstr "" + +#: c-api/type.rst:60 +msgid "" +"This function is meant for specific embedding and language-binding cases, " +"where direct access to the dict is necessary and indirect access (e.g. via " +"the proxy or :c:func:`PyObject_GetAttr`) isn't adequate." +msgstr "" + +#: c-api/type.rst:64 +msgid "" +"Extension modules should continue to use ``tp_dict``, directly or " +"indirectly, when setting up their own types." +msgstr "" + +#: c-api/type.rst:72 +msgid "" "Invalidate the internal lookup cache for the type and all of its subtypes. " "This function must be called after any manual modification of the attributes " "or base classes of the type." msgstr "" -#: c-api/type.rst:62 +#: c-api/type.rst:79 +msgid "" +"Register *callback* as a type watcher. Return a non-negative integer ID " +"which must be passed to future calls to :c:func:`PyType_Watch`. In case of " +"error (e.g. no more watcher IDs available), return ``-1`` and set an " +"exception." +msgstr "" + +#: c-api/type.rst:89 +msgid "" +"Clear watcher identified by *watcher_id* (previously returned from :c:func:" +"`PyType_AddWatcher`). Return ``0`` on success, ``-1`` on error (e.g. if " +"*watcher_id* was never registered.)" +msgstr "" + +#: c-api/type.rst:93 +msgid "" +"An extension should never call ``PyType_ClearWatcher`` with a *watcher_id* " +"that was not returned to it by a previous call to :c:func:" +"`PyType_AddWatcher`." +msgstr "" + +#: c-api/type.rst:102 +msgid "" +"Mark *type* as watched. The callback granted *watcher_id* by :c:func:" +"`PyType_AddWatcher` will be called whenever :c:func:`PyType_Modified` " +"reports a change to *type*. (The callback may be called only once for a " +"series of consecutive modifications to *type*, if :c:func:`!_PyType_Lookup` " +"is not called on *type* between the modifications; this is an implementation " +"detail and subject to change.)" +msgstr "" + +#: c-api/type.rst:109 +msgid "" +"An extension should never call ``PyType_Watch`` with a *watcher_id* that was " +"not returned to it by a previous call to :c:func:`PyType_AddWatcher`." +msgstr "" + +#: c-api/type.rst:117 +msgid "Type of a type-watcher callback function." +msgstr "" + +#: c-api/type.rst:119 +msgid "" +"The callback must not modify *type* or cause :c:func:`PyType_Modified` to be " +"called on *type* or any type in its MRO; violating this rule could cause " +"infinite recursion." +msgstr "" + +#: c-api/type.rst:128 msgid "" "Return non-zero if the type object *o* sets the feature *feature*. Type " "features are denoted by single bit flags." msgstr "" -#: c-api/type.rst:68 +#: c-api/type.rst:134 msgid "" "Return true if the type object includes support for the cycle detector; this " "tests the type flag :c:macro:`Py_TPFLAGS_HAVE_GC`." msgstr "" -#: c-api/type.rst:74 +#: c-api/type.rst:140 msgid "Return true if *a* is a subtype of *b*." msgstr "" -#: c-api/type.rst:76 +#: c-api/type.rst:142 msgid "" "This function only checks for actual subtypes, which means that :meth:" "`~class.__subclasscheck__` is not called on *b*. Call :c:func:" "`PyObject_IsSubclass` to do the same check that :func:`issubclass` would do." msgstr "" -#: c-api/type.rst:84 +#: c-api/type.rst:150 msgid "" "Generic handler for the :c:member:`~PyTypeObject.tp_alloc` slot of a type " "object. Use Python's default memory allocation mechanism to allocate a new " "instance and initialize all its contents to ``NULL``." msgstr "" -#: c-api/type.rst:90 +#: c-api/type.rst:156 msgid "" "Generic handler for the :c:member:`~PyTypeObject.tp_new` slot of a type " "object. Create a new instance using the type's :c:member:`~PyTypeObject." "tp_alloc` slot." msgstr "" -#: c-api/type.rst:95 +#: c-api/type.rst:161 msgid "" "Finalize a type object. This should be called on all type objects to finish " "their initialization. This function is responsible for adding inherited " @@ -112,7 +183,7 @@ msgid "" "and sets an exception on error." msgstr "" -#: c-api/type.rst:101 +#: c-api/type.rst:167 msgid "" "If some of the base classes implements the GC protocol and the provided type " "does not include the :c:macro:`Py_TPFLAGS_HAVE_GC` in its flags, then the GC " @@ -123,19 +194,19 @@ msgid "" "handle." msgstr "" -#: c-api/type.rst:111 +#: c-api/type.rst:177 msgid "" "Return the type's name. Equivalent to getting the type's ``__name__`` " "attribute." msgstr "" -#: c-api/type.rst:117 +#: c-api/type.rst:183 msgid "" "Return the type's qualified name. Equivalent to getting the type's " "``__qualname__`` attribute." msgstr "" -#: c-api/type.rst:124 +#: c-api/type.rst:190 msgid "" "Return the function pointer stored in the given slot. If the result is " "``NULL``, this indicates that either the slot is ``NULL``, or that the " @@ -143,30 +214,30 @@ msgid "" "result pointer into the appropriate function type." msgstr "" -#: c-api/type.rst:130 +#: c-api/type.rst:196 msgid "" "See :c:member:`PyType_Slot.slot` for possible values of the *slot* argument." msgstr "" -#: c-api/type.rst:134 +#: c-api/type.rst:200 msgid "" ":c:func:`PyType_GetSlot` can now accept all types. Previously, it was " "limited to :ref:`heap types `." msgstr "" -#: c-api/type.rst:140 +#: c-api/type.rst:206 msgid "" "Return the module object associated with the given type when the type was " "created using :c:func:`PyType_FromModuleAndSpec`." msgstr "" -#: c-api/type.rst:163 +#: c-api/type.rst:229 msgid "" "If no module is associated with the given type, sets :py:class:`TypeError` " "and returns ``NULL``." msgstr "" -#: c-api/type.rst:146 +#: c-api/type.rst:212 msgid "" "This function is usually used to get the module in which a method is " "defined. Note that in such a method, ``PyType_GetModule(Py_TYPE(self))`` may " @@ -177,31 +248,31 @@ msgid "" "type:`!PyCMethod` cannot be used." msgstr "" -#: c-api/type.rst:159 +#: c-api/type.rst:225 msgid "" "Return the state of the module object associated with the given type. This " "is a shortcut for calling :c:func:`PyModule_GetState()` on the result of :c:" "func:`PyType_GetModule`." msgstr "" -#: c-api/type.rst:166 +#: c-api/type.rst:232 msgid "" "If the *type* has an associated module but its state is ``NULL``, returns " "``NULL`` without setting an exception." msgstr "" -#: c-api/type.rst:173 +#: c-api/type.rst:239 msgid "" "Find the first superclass whose module was created from the given :c:type:" "`PyModuleDef` *def*, and return that module." msgstr "" -#: c-api/type.rst:176 +#: c-api/type.rst:242 msgid "" "If no module is found, raises a :py:class:`TypeError` and returns ``NULL``." msgstr "" -#: c-api/type.rst:178 +#: c-api/type.rst:244 msgid "" "This function is intended to be used together with :c:func:" "`PyModule_GetState()` to get module state from slot methods (such as :c:" @@ -210,23 +281,49 @@ msgid "" "type:`PyCMethod` calling convention." msgstr "" -#: c-api/type.rst:188 +#: c-api/type.rst:254 +msgid "Attempt to assign a version tag to the given type." +msgstr "" + +#: c-api/type.rst:256 +msgid "" +"Returns 1 if the type already had a valid version tag or a new one was " +"assigned, or 0 if a new tag could not be assigned." +msgstr "" + +#: c-api/type.rst:263 msgid "Creating Heap-Allocated Types" msgstr "" -#: c-api/type.rst:190 +#: c-api/type.rst:265 msgid "" "The following functions and structs are used to create :ref:`heap types " "`." msgstr "" -#: c-api/type.rst:195 +#: c-api/type.rst:270 msgid "" -"Creates and returns a :ref:`heap type ` from the *spec* (:c:" +"Create and return a :ref:`heap type ` from the *spec* (see :c:" "macro:`Py_TPFLAGS_HEAPTYPE`)." msgstr "" -#: c-api/type.rst:198 +#: c-api/type.rst:273 +msgid "" +"The metaclass *metaclass* is used to construct the resulting type object. " +"When *metaclass* is ``NULL``, the metaclass is derived from *bases* (or " +"*Py_tp_base[s]* slots if *bases* is ``NULL``, see below)." +msgstr "" + +#: c-api/type.rst:277 +msgid "" +"Metaclasses that override :c:member:`~PyTypeObject.tp_new` are not " +"supported, except if ``tp_new`` is ``NULL``. (For backwards compatibility, " +"other ``PyType_From*`` functions allow such metaclasses. They ignore " +"``tp_new``, which may result in incomplete initialization. This is " +"deprecated and in Python 3.14+ such metaclasses will not be supported.)" +msgstr "" + +#: c-api/type.rst:284 msgid "" "The *bases* argument can be used to specify base classes; it can either be " "only one class or a tuple of classes. If *bases* is ``NULL``, the " @@ -235,7 +332,7 @@ msgid "" "derives from :class:`object`." msgstr "" -#: c-api/type.rst:204 +#: c-api/type.rst:290 msgid "" "The *module* argument can be used to record the module in which the new " "class is defined. It must be a module object or ``NULL``. If not ``NULL``, " @@ -244,65 +341,175 @@ msgid "" "subclasses; it must be specified for each class individually." msgstr "" -#: c-api/type.rst:211 +#: c-api/type.rst:297 msgid "This function calls :c:func:`PyType_Ready` on the new type." msgstr "" -#: c-api/type.rst:217 +#: c-api/type.rst:299 +msgid "" +"Note that this function does *not* fully match the behavior of calling :py:" +"class:`type() ` or using the :keyword:`class` statement. With user-" +"provided base types or metaclasses, prefer :ref:`calling ` :py:" +"class:`type` (or the metaclass) over ``PyType_From*`` functions. " +"Specifically:" +msgstr "" + +#: c-api/type.rst:306 +msgid "" +":py:meth:`~object.__new__` is not called on the new class (and it must be " +"set to ``type.__new__``)." +msgstr "" + +#: c-api/type.rst:308 +msgid ":py:meth:`~object.__init__` is not called on the new class." +msgstr "" + +#: c-api/type.rst:309 +msgid ":py:meth:`~object.__init_subclass__` is not called on any bases." +msgstr "" + +#: c-api/type.rst:310 +msgid ":py:meth:`~object.__set_name__` is not called on new descriptors." +msgstr "" + +#: c-api/type.rst:316 +msgid "Equivalent to ``PyType_FromMetaclass(NULL, module, spec, bases)``." +msgstr "" + +#: c-api/type.rst:322 msgid "" "The function now accepts a single class as the *bases* argument and ``NULL`` " "as the ``tp_doc`` slot." msgstr "" -#: c-api/type.rst:222 -msgid "Equivalent to ``PyType_FromModuleAndSpec(NULL, spec, bases)``." +#: c-api/type.rst:344 +msgid "" +"The function now finds and uses a metaclass corresponding to the provided " +"base classes. Previously, only :class:`type` instances were returned." +msgstr "" + +#: c-api/type.rst:347 c-api/type.rst:363 +msgid "" +"The :c:member:`~PyTypeObject.tp_new` of the metaclass is *ignored*. which " +"may result in incomplete initialization. Creating classes whose metaclass " +"overrides :c:member:`~PyTypeObject.tp_new` is deprecated and in Python 3.14+ " +"it will be no longer allowed." msgstr "" -#: c-api/type.rst:228 -msgid "Equivalent to ``PyType_FromSpecWithBases(spec, NULL)``." +#: c-api/type.rst:338 +msgid "Equivalent to ``PyType_FromMetaclass(NULL, NULL, spec, bases)``." msgstr "" -#: c-api/type.rst:232 +#: c-api/type.rst:355 +msgid "Equivalent to ``PyType_FromMetaclass(NULL, NULL, spec, NULL)``." +msgstr "" + +#: c-api/type.rst:359 +msgid "" +"The function now finds and uses a metaclass corresponding to the base " +"classes provided in *Py_tp_base[s]* slots. Previously, only :class:`type` " +"instances were returned." +msgstr "" + +#: c-api/type.rst:380 msgid "Structure defining a type's behavior." msgstr "" -#: c-api/type.rst:236 +#: c-api/type.rst:384 msgid "Name of the type, used to set :c:member:`PyTypeObject.tp_name`." msgstr "" -#: c-api/type.rst:241 +#: c-api/type.rst:388 +msgid "" +"If positive, specifies the size of the instance in bytes. It is used to set :" +"c:member:`PyTypeObject.tp_basicsize`." +msgstr "" + +#: c-api/type.rst:391 +msgid "" +"If zero, specifies that :c:member:`~PyTypeObject.tp_basicsize` should be " +"inherited." +msgstr "" + +#: c-api/type.rst:394 msgid "" -"Size of the instance in bytes, used to set :c:member:`PyTypeObject." -"tp_basicsize` and :c:member:`PyTypeObject.tp_itemsize`." +"If negative, the absolute value specifies how much space instances of the " +"class need *in addition* to the superclass. Use :c:func:" +"`PyObject_GetTypeData` to get a pointer to subclass-specific memory reserved " +"this way." msgstr "" -#: c-api/type.rst:247 +#: c-api/type.rst:401 +msgid "Previously, this field could not be negative." +msgstr "" + +#: c-api/type.rst:405 +msgid "" +"Size of one element of a variable-size type, in bytes. Used to set :c:member:" +"`PyTypeObject.tp_itemsize`. See ``tp_itemsize`` documentation for caveats." +msgstr "" + +#: c-api/type.rst:409 +msgid "" +"If zero, :c:member:`~PyTypeObject.tp_itemsize` is inherited. Extending " +"arbitrary variable-sized classes is dangerous, since some types use a fixed " +"offset for variable-sized memory, which can then overlap fixed-sized memory " +"used by a subclass. To help prevent mistakes, inheriting ``itemsize`` is " +"only possible in the following situations:" +msgstr "" + +#: c-api/type.rst:416 +msgid "" +"The base is not variable-sized (its :c:member:`~PyTypeObject.tp_itemsize`)." +msgstr "" + +#: c-api/type.rst:418 +msgid "" +"The requested :c:member:`PyType_Spec.basicsize` is positive, suggesting that " +"the memory layout of the base class is known." +msgstr "" + +#: c-api/type.rst:420 +msgid "" +"The requested :c:member:`PyType_Spec.basicsize` is zero, suggesting that the " +"subclass does not access the instance's memory directly." +msgstr "" + +#: c-api/type.rst:423 +msgid "With the :c:macro:`Py_TPFLAGS_ITEMS_AT_END` flag." +msgstr "" + +#: c-api/type.rst:427 msgid "Type flags, used to set :c:member:`PyTypeObject.tp_flags`." msgstr "" -#: c-api/type.rst:249 +#: c-api/type.rst:429 msgid "" "If the ``Py_TPFLAGS_HEAPTYPE`` flag is not set, :c:func:" "`PyType_FromSpecWithBases` sets it automatically." msgstr "" -#: c-api/type.rst:254 +#: c-api/type.rst:434 msgid "" "Array of :c:type:`PyType_Slot` structures. Terminated by the special slot " "value ``{0, NULL}``." msgstr "" -#: c-api/type.rst:259 +#: c-api/type.rst:437 +msgid "Each slot ID should be specified at most once." +msgstr "" + +#: c-api/type.rst:447 msgid "" "Structure defining optional functionality of a type, containing a slot ID " "and a value pointer." msgstr "" -#: c-api/type.rst:264 +#: c-api/type.rst:452 msgid "A slot ID." msgstr "" -#: c-api/type.rst:266 +#: c-api/type.rst:454 msgid "" "Slot IDs are named like the field names of the structures :c:type:" "`PyTypeObject`, :c:type:`PyNumberMethods`, :c:type:`PySequenceMethods`, :c:" @@ -310,90 +517,91 @@ msgid "" "prefix. For example, use:" msgstr "" -#: c-api/type.rst:272 +#: c-api/type.rst:460 msgid "``Py_tp_dealloc`` to set :c:member:`PyTypeObject.tp_dealloc`" msgstr "" -#: c-api/type.rst:273 +#: c-api/type.rst:461 msgid "``Py_nb_add`` to set :c:member:`PyNumberMethods.nb_add`" msgstr "" -#: c-api/type.rst:274 +#: c-api/type.rst:462 msgid "``Py_sq_length`` to set :c:member:`PySequenceMethods.sq_length`" msgstr "" -#: c-api/type.rst:276 +#: c-api/type.rst:464 msgid "" "The following fields cannot be set at all using :c:type:`PyType_Spec` and :c:" "type:`PyType_Slot`:" msgstr "" -#: c-api/type.rst:279 +#: c-api/type.rst:467 msgid ":c:member:`~PyTypeObject.tp_dict`" msgstr "" -#: c-api/type.rst:280 +#: c-api/type.rst:468 msgid ":c:member:`~PyTypeObject.tp_mro`" msgstr "" -#: c-api/type.rst:281 +#: c-api/type.rst:469 msgid ":c:member:`~PyTypeObject.tp_cache`" msgstr "" -#: c-api/type.rst:282 +#: c-api/type.rst:470 msgid ":c:member:`~PyTypeObject.tp_subclasses`" msgstr "" -#: c-api/type.rst:283 +#: c-api/type.rst:471 msgid ":c:member:`~PyTypeObject.tp_weaklist`" msgstr "" -#: c-api/type.rst:284 +#: c-api/type.rst:472 msgid ":c:member:`~PyTypeObject.tp_vectorcall`" msgstr "" -#: c-api/type.rst:285 +#: c-api/type.rst:473 msgid "" -":c:member:`~PyTypeObject.tp_weaklistoffset` (see :ref:`PyMemberDef " -"`)" +":c:member:`~PyTypeObject.tp_weaklistoffset` (use :c:macro:" +"`Py_TPFLAGS_MANAGED_WEAKREF` instead)" msgstr "" -#: c-api/type.rst:287 +#: c-api/type.rst:475 msgid "" -":c:member:`~PyTypeObject.tp_dictoffset` (see :ref:`PyMemberDef `)" +":c:member:`~PyTypeObject.tp_dictoffset` (use :c:macro:" +"`Py_TPFLAGS_MANAGED_DICT` instead)" msgstr "" -#: c-api/type.rst:289 +#: c-api/type.rst:477 msgid "" ":c:member:`~PyTypeObject.tp_vectorcall_offset` (see :ref:`PyMemberDef " "`)" msgstr "" -#: c-api/type.rst:292 +#: c-api/type.rst:480 msgid "" "Setting :c:data:`Py_tp_bases` or :c:data:`Py_tp_base` may be problematic on " "some platforms. To avoid issues, use the *bases* argument of :c:func:" "`PyType_FromSpecWithBases` instead." msgstr "" -#: c-api/type.rst:299 +#: c-api/type.rst:487 msgid "Slots in :c:type:`PyBufferProcs` may be set in the unlimited API." msgstr "" -#: c-api/type.rst:301 +#: c-api/type.rst:489 msgid "" ":c:member:`~PyBufferProcs.bf_getbuffer` and :c:member:`~PyBufferProcs." -"bf_releasebuffer` are now available under the limited API." +"bf_releasebuffer` are now available under the :ref:`limited API `." msgstr "" -#: c-api/type.rst:308 +#: c-api/type.rst:496 msgid "" "The desired value of the slot. In most cases, this is a pointer to a " "function." msgstr "" -#: c-api/type.rst:311 +#: c-api/type.rst:499 msgid "Slots other than ``Py_tp_doc`` may not be ``NULL``." msgstr "" diff --git a/c-api/typeobj.po b/c-api/typeobj.po index 24b687ac2..4f58e666e 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -60,7 +60,7 @@ msgstr "" msgid "PyTypeObject Slot [#slots]_" msgstr "" -#: c-api/typeobj.rst:199 +#: c-api/typeobj.rst:201 msgid ":ref:`Type `" msgstr "" @@ -114,7 +114,7 @@ msgid ":c:member:`~PyTypeObject.tp_basicsize`" msgstr "" #: c-api/typeobj.rst:46 c-api/typeobj.rst:52 c-api/typeobj.rst:120 -#: c-api/typeobj.rst:414 +#: c-api/typeobj.rst:416 msgid ":c:type:`Py_ssize_t`" msgstr "" @@ -126,7 +126,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_dealloc`" msgstr "" -#: c-api/typeobj.rst:142 c-api/typeobj.rst:344 +#: c-api/typeobj.rst:142 c-api/typeobj.rst:346 msgid ":c:type:`destructor`" msgstr "" @@ -138,7 +138,7 @@ msgstr "" msgid "(:c:member:`~PyTypeObject.tp_getattr`)" msgstr "" -#: c-api/typeobj.rst:368 +#: c-api/typeobj.rst:370 msgid ":c:type:`getattrfunc`" msgstr "" @@ -155,7 +155,7 @@ msgstr "" msgid "(:c:member:`~PyTypeObject.tp_setattr`)" msgstr "" -#: c-api/typeobj.rst:373 +#: c-api/typeobj.rst:375 msgid ":c:type:`setattrfunc`" msgstr "" @@ -183,7 +183,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_repr`" msgstr "" -#: c-api/typeobj.rst:74 c-api/typeobj.rst:366 +#: c-api/typeobj.rst:74 c-api/typeobj.rst:368 msgid ":c:type:`reprfunc`" msgstr "" @@ -219,7 +219,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_hash`" msgstr "" -#: c-api/typeobj.rst:402 +#: c-api/typeobj.rst:404 msgid ":c:type:`hashfunc`" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_call`" msgstr "" -#: c-api/typeobj.rst:235 c-api/typeobj.rst:438 +#: c-api/typeobj.rst:237 c-api/typeobj.rst:440 msgid ":c:type:`ternaryfunc`" msgstr "" @@ -251,7 +251,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_getattro`" msgstr "" -#: c-api/typeobj.rst:379 +#: c-api/typeobj.rst:381 msgid ":c:type:`getattrofunc`" msgstr "" @@ -259,7 +259,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_setattro`" msgstr "" -#: c-api/typeobj.rst:384 +#: c-api/typeobj.rst:386 msgid ":c:type:`setattrofunc`" msgstr "" @@ -296,7 +296,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_traverse`" msgstr "" -#: c-api/typeobj.rst:348 +#: c-api/typeobj.rst:350 msgid ":c:type:`traverseproc`" msgstr "" @@ -304,7 +304,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_clear`" msgstr "" -#: c-api/typeobj.rst:130 c-api/typeobj.rst:427 +#: c-api/typeobj.rst:130 c-api/typeobj.rst:429 msgid ":c:type:`inquiry`" msgstr "" @@ -312,7 +312,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_richcompare`" msgstr "" -#: c-api/typeobj.rst:404 +#: c-api/typeobj.rst:406 msgid ":c:type:`richcmpfunc`" msgstr "" @@ -321,14 +321,14 @@ msgid "__lt__, __le__, __eq__, __ne__, __gt__, __ge__" msgstr "" #: c-api/typeobj.rst:99 -msgid ":c:member:`~PyTypeObject.tp_weaklistoffset`" +msgid "(:c:member:`~PyTypeObject.tp_weaklistoffset`)" msgstr "" #: c-api/typeobj.rst:101 msgid ":c:member:`~PyTypeObject.tp_iter`" msgstr "" -#: c-api/typeobj.rst:410 +#: c-api/typeobj.rst:412 msgid ":c:type:`getiterfunc`" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_iternext`" msgstr "" -#: c-api/typeobj.rst:412 +#: c-api/typeobj.rst:414 msgid ":c:type:`iternextfunc`" msgstr "" @@ -388,10 +388,10 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_dict`" msgstr "" -#: c-api/typeobj.rst:113 c-api/typeobj.rst:134 c-api/typeobj.rst:138 -#: c-api/typeobj.rst:339 c-api/typeobj.rst:366 c-api/typeobj.rst:379 -#: c-api/typeobj.rst:402 c-api/typeobj.rst:410 c-api/typeobj.rst:414 -#: c-api/typeobj.rst:433 c-api/typeobj.rst:444 +#: c-api/typeobj.rst:113 c-api/typeobj.rst:134 c-api/typeobj.rst:140 +#: c-api/typeobj.rst:356 c-api/typeobj.rst:370 c-api/typeobj.rst:392 +#: c-api/typeobj.rst:406 c-api/typeobj.rst:414 c-api/typeobj.rst:431 +#: c-api/typeobj.rst:440 c-api/typeobj.rst:446 msgid ":c:type:`PyObject` *" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_descr_get`" msgstr "" -#: c-api/typeobj.rst:390 +#: c-api/typeobj.rst:392 msgid ":c:type:`descrgetfunc`" msgstr "" @@ -415,7 +415,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_descr_set`" msgstr "" -#: c-api/typeobj.rst:396 +#: c-api/typeobj.rst:398 msgid ":c:type:`descrsetfunc`" msgstr "" @@ -424,14 +424,14 @@ msgid "__set__, __delete__" msgstr "" #: c-api/typeobj.rst:120 -msgid ":c:member:`~PyTypeObject.tp_dictoffset`" +msgid "(:c:member:`~PyTypeObject.tp_dictoffset`)" msgstr "" #: c-api/typeobj.rst:122 msgid ":c:member:`~PyTypeObject.tp_init`" msgstr "" -#: c-api/typeobj.rst:360 +#: c-api/typeobj.rst:362 msgid ":c:type:`initproc`" msgstr "" @@ -443,7 +443,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_alloc`" msgstr "" -#: c-api/typeobj.rst:339 +#: c-api/typeobj.rst:341 msgid ":c:type:`allocfunc`" msgstr "" @@ -451,7 +451,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_new`" msgstr "" -#: c-api/typeobj.rst:354 +#: c-api/typeobj.rst:356 msgid ":c:type:`newfunc`" msgstr "" @@ -463,7 +463,7 @@ msgstr "" msgid ":c:member:`~PyTypeObject.tp_free`" msgstr "" -#: c-api/typeobj.rst:346 +#: c-api/typeobj.rst:348 msgid ":c:type:`freefunc`" msgstr "" @@ -499,6 +499,10 @@ msgstr "" msgid "[:c:member:`~PyTypeObject.tp_subclasses`]" msgstr "" +#: c-api/typeobj.rst:138 c-api/typeobj.rst:346 c-api/typeobj.rst:429 +msgid "void *" +msgstr "" + #: c-api/typeobj.rst:138 msgid "__subclasses__" msgstr "" @@ -535,522 +539,526 @@ msgstr "" msgid ":c:type:`vectorcallfunc`" msgstr "" -#: c-api/typeobj.rst:153 +#: c-api/typeobj.rst:150 +msgid "[:c:member:`~PyTypeObject.tp_watched`]" +msgstr "" + +#: c-api/typeobj.rst:150 +msgid "unsigned char" +msgstr "" + +#: c-api/typeobj.rst:155 msgid "" "**()**: A slot name in parentheses indicates it is (effectively) deprecated." msgstr "" -#: c-api/typeobj.rst:155 +#: c-api/typeobj.rst:157 msgid "" "**<>**: Names in angle brackets should be initially set to ``NULL`` and " "treated as read-only." msgstr "" -#: c-api/typeobj.rst:158 +#: c-api/typeobj.rst:160 msgid "**[]**: Names in square brackets are for internal use only." msgstr "" -#: c-api/typeobj.rst:160 +#: c-api/typeobj.rst:162 msgid "" "**** (as a prefix) means the field is required (must be non-``NULL``)." msgstr "" -#: c-api/typeobj.rst:162 +#: c-api/typeobj.rst:164 msgid "Columns:" msgstr "" -#: c-api/typeobj.rst:164 +#: c-api/typeobj.rst:166 msgid "**\"O\"**: set on :c:data:`PyBaseObject_Type`" msgstr "" -#: c-api/typeobj.rst:166 +#: c-api/typeobj.rst:168 msgid "**\"T\"**: set on :c:data:`PyType_Type`" msgstr "" -#: c-api/typeobj.rst:168 +#: c-api/typeobj.rst:170 msgid "**\"D\"**: default (if slot is set to ``NULL``)" msgstr "" -#: c-api/typeobj.rst:178 +#: c-api/typeobj.rst:180 msgid "**\"I\"**: inheritance" msgstr "" -#: c-api/typeobj.rst:187 +#: c-api/typeobj.rst:189 msgid "" "Note that some slots are effectively inherited through the normal attribute " "lookup chain." msgstr "" -#: c-api/typeobj.rst:193 +#: c-api/typeobj.rst:195 msgid "sub-slots" msgstr "" -#: c-api/typeobj.rst:199 +#: c-api/typeobj.rst:201 msgid "Slot" msgstr "" -#: c-api/typeobj.rst:199 +#: c-api/typeobj.rst:201 msgid "special methods" msgstr "" -#: c-api/typeobj.rst:202 +#: c-api/typeobj.rst:204 msgid ":c:member:`~PyAsyncMethods.am_await`" msgstr "" -#: c-api/typeobj.rst:204 c-api/typeobj.rst:240 c-api/typeobj.rst:244 -#: c-api/typeobj.rst:275 c-api/typeobj.rst:289 c-api/typeobj.rst:429 +#: c-api/typeobj.rst:206 c-api/typeobj.rst:242 c-api/typeobj.rst:246 +#: c-api/typeobj.rst:277 c-api/typeobj.rst:291 c-api/typeobj.rst:431 msgid ":c:type:`unaryfunc`" msgstr "" -#: c-api/typeobj.rst:202 +#: c-api/typeobj.rst:204 msgid "__await__" msgstr "" -#: c-api/typeobj.rst:204 +#: c-api/typeobj.rst:206 msgid ":c:member:`~PyAsyncMethods.am_aiter`" msgstr "" -#: c-api/typeobj.rst:204 +#: c-api/typeobj.rst:206 msgid "__aiter__" msgstr "" -#: c-api/typeobj.rst:206 +#: c-api/typeobj.rst:208 msgid ":c:member:`~PyAsyncMethods.am_anext`" msgstr "" -#: c-api/typeobj.rst:206 +#: c-api/typeobj.rst:208 msgid "__anext__" msgstr "" -#: c-api/typeobj.rst:208 +#: c-api/typeobj.rst:210 msgid ":c:member:`~PyAsyncMethods.am_send`" msgstr "" -#: c-api/typeobj.rst:208 +#: c-api/typeobj.rst:210 msgid ":c:type:`sendfunc`" msgstr "" -#: c-api/typeobj.rst:212 +#: c-api/typeobj.rst:214 msgid ":c:member:`~PyNumberMethods.nb_add`" msgstr "" -#: c-api/typeobj.rst:215 c-api/typeobj.rst:220 c-api/typeobj.rst:225 -#: c-api/typeobj.rst:230 c-api/typeobj.rst:250 c-api/typeobj.rst:255 -#: c-api/typeobj.rst:260 c-api/typeobj.rst:265 c-api/typeobj.rst:270 -#: c-api/typeobj.rst:281 c-api/typeobj.rst:285 c-api/typeobj.rst:291 -#: c-api/typeobj.rst:300 c-api/typeobj.rst:320 c-api/typeobj.rst:433 +#: c-api/typeobj.rst:217 c-api/typeobj.rst:222 c-api/typeobj.rst:227 +#: c-api/typeobj.rst:232 c-api/typeobj.rst:252 c-api/typeobj.rst:257 +#: c-api/typeobj.rst:262 c-api/typeobj.rst:267 c-api/typeobj.rst:272 +#: c-api/typeobj.rst:283 c-api/typeobj.rst:287 c-api/typeobj.rst:293 +#: c-api/typeobj.rst:302 c-api/typeobj.rst:322 c-api/typeobj.rst:435 msgid ":c:type:`binaryfunc`" msgstr "" -#: c-api/typeobj.rst:212 +#: c-api/typeobj.rst:214 msgid "__add__ __radd__" msgstr "" -#: c-api/typeobj.rst:215 +#: c-api/typeobj.rst:217 msgid ":c:member:`~PyNumberMethods.nb_inplace_add`" msgstr "" -#: c-api/typeobj.rst:320 +#: c-api/typeobj.rst:322 msgid "__iadd__" msgstr "" -#: c-api/typeobj.rst:217 +#: c-api/typeobj.rst:219 msgid ":c:member:`~PyNumberMethods.nb_subtract`" msgstr "" -#: c-api/typeobj.rst:217 +#: c-api/typeobj.rst:219 msgid "__sub__ __rsub__" msgstr "" -#: c-api/typeobj.rst:220 +#: c-api/typeobj.rst:222 msgid ":c:member:`~PyNumberMethods.nb_inplace_subtract`" msgstr "" -#: c-api/typeobj.rst:220 +#: c-api/typeobj.rst:222 msgid "__isub__" msgstr "" -#: c-api/typeobj.rst:222 +#: c-api/typeobj.rst:224 msgid ":c:member:`~PyNumberMethods.nb_multiply`" msgstr "" -#: c-api/typeobj.rst:222 +#: c-api/typeobj.rst:224 msgid "__mul__ __rmul__" msgstr "" -#: c-api/typeobj.rst:225 +#: c-api/typeobj.rst:227 msgid ":c:member:`~PyNumberMethods.nb_inplace_multiply`" msgstr "" -#: c-api/typeobj.rst:322 +#: c-api/typeobj.rst:324 msgid "__imul__" msgstr "" -#: c-api/typeobj.rst:227 +#: c-api/typeobj.rst:229 msgid ":c:member:`~PyNumberMethods.nb_remainder`" msgstr "" -#: c-api/typeobj.rst:227 +#: c-api/typeobj.rst:229 msgid "__mod__ __rmod__" msgstr "" -#: c-api/typeobj.rst:230 +#: c-api/typeobj.rst:232 msgid ":c:member:`~PyNumberMethods.nb_inplace_remainder`" msgstr "" -#: c-api/typeobj.rst:230 +#: c-api/typeobj.rst:232 msgid "__imod__" msgstr "" -#: c-api/typeobj.rst:232 +#: c-api/typeobj.rst:234 msgid ":c:member:`~PyNumberMethods.nb_divmod`" msgstr "" -#: c-api/typeobj.rst:232 +#: c-api/typeobj.rst:234 msgid "__divmod__ __rdivmod__" msgstr "" -#: c-api/typeobj.rst:235 +#: c-api/typeobj.rst:237 msgid ":c:member:`~PyNumberMethods.nb_power`" msgstr "" -#: c-api/typeobj.rst:235 +#: c-api/typeobj.rst:237 msgid "__pow__ __rpow__" msgstr "" -#: c-api/typeobj.rst:238 +#: c-api/typeobj.rst:240 msgid ":c:member:`~PyNumberMethods.nb_inplace_power`" msgstr "" -#: c-api/typeobj.rst:238 +#: c-api/typeobj.rst:240 msgid "__ipow__" msgstr "" -#: c-api/typeobj.rst:240 +#: c-api/typeobj.rst:242 msgid ":c:member:`~PyNumberMethods.nb_negative`" msgstr "" -#: c-api/typeobj.rst:240 +#: c-api/typeobj.rst:242 msgid "__neg__" msgstr "" -#: c-api/typeobj.rst:242 +#: c-api/typeobj.rst:244 msgid ":c:member:`~PyNumberMethods.nb_positive`" msgstr "" -#: c-api/typeobj.rst:242 +#: c-api/typeobj.rst:244 msgid "__pos__" msgstr "" -#: c-api/typeobj.rst:244 +#: c-api/typeobj.rst:246 msgid ":c:member:`~PyNumberMethods.nb_absolute`" msgstr "" -#: c-api/typeobj.rst:244 +#: c-api/typeobj.rst:246 msgid "__abs__" msgstr "" -#: c-api/typeobj.rst:246 +#: c-api/typeobj.rst:248 msgid ":c:member:`~PyNumberMethods.nb_bool`" msgstr "" -#: c-api/typeobj.rst:246 +#: c-api/typeobj.rst:248 msgid "__bool__" msgstr "" -#: c-api/typeobj.rst:248 +#: c-api/typeobj.rst:250 msgid ":c:member:`~PyNumberMethods.nb_invert`" msgstr "" -#: c-api/typeobj.rst:248 +#: c-api/typeobj.rst:250 msgid "__invert__" msgstr "" -#: c-api/typeobj.rst:250 +#: c-api/typeobj.rst:252 msgid ":c:member:`~PyNumberMethods.nb_lshift`" msgstr "" -#: c-api/typeobj.rst:250 +#: c-api/typeobj.rst:252 msgid "__lshift__ __rlshift__" msgstr "" -#: c-api/typeobj.rst:253 +#: c-api/typeobj.rst:255 msgid ":c:member:`~PyNumberMethods.nb_inplace_lshift`" msgstr "" -#: c-api/typeobj.rst:253 +#: c-api/typeobj.rst:255 msgid "__ilshift__" msgstr "" -#: c-api/typeobj.rst:255 +#: c-api/typeobj.rst:257 msgid ":c:member:`~PyNumberMethods.nb_rshift`" msgstr "" -#: c-api/typeobj.rst:255 +#: c-api/typeobj.rst:257 msgid "__rshift__ __rrshift__" msgstr "" -#: c-api/typeobj.rst:258 +#: c-api/typeobj.rst:260 msgid ":c:member:`~PyNumberMethods.nb_inplace_rshift`" msgstr "" -#: c-api/typeobj.rst:258 +#: c-api/typeobj.rst:260 msgid "__irshift__" msgstr "" -#: c-api/typeobj.rst:260 +#: c-api/typeobj.rst:262 msgid ":c:member:`~PyNumberMethods.nb_and`" msgstr "" -#: c-api/typeobj.rst:260 +#: c-api/typeobj.rst:262 msgid "__and__ __rand__" msgstr "" -#: c-api/typeobj.rst:263 +#: c-api/typeobj.rst:265 msgid ":c:member:`~PyNumberMethods.nb_inplace_and`" msgstr "" -#: c-api/typeobj.rst:263 +#: c-api/typeobj.rst:265 msgid "__iand__" msgstr "" -#: c-api/typeobj.rst:265 +#: c-api/typeobj.rst:267 msgid ":c:member:`~PyNumberMethods.nb_xor`" msgstr "" -#: c-api/typeobj.rst:265 +#: c-api/typeobj.rst:267 msgid "__xor__ __rxor__" msgstr "" -#: c-api/typeobj.rst:268 +#: c-api/typeobj.rst:270 msgid ":c:member:`~PyNumberMethods.nb_inplace_xor`" msgstr "" -#: c-api/typeobj.rst:268 +#: c-api/typeobj.rst:270 msgid "__ixor__" msgstr "" -#: c-api/typeobj.rst:270 +#: c-api/typeobj.rst:272 msgid ":c:member:`~PyNumberMethods.nb_or`" msgstr "" -#: c-api/typeobj.rst:270 +#: c-api/typeobj.rst:272 msgid "__or__ __ror__" msgstr "" -#: c-api/typeobj.rst:273 +#: c-api/typeobj.rst:275 msgid ":c:member:`~PyNumberMethods.nb_inplace_or`" msgstr "" -#: c-api/typeobj.rst:273 +#: c-api/typeobj.rst:275 msgid "__ior__" msgstr "" -#: c-api/typeobj.rst:275 +#: c-api/typeobj.rst:277 msgid ":c:member:`~PyNumberMethods.nb_int`" msgstr "" -#: c-api/typeobj.rst:275 +#: c-api/typeobj.rst:277 msgid "__int__" msgstr "" -#: c-api/typeobj.rst:277 +#: c-api/typeobj.rst:279 msgid ":c:member:`~PyNumberMethods.nb_reserved`" msgstr "" -#: c-api/typeobj.rst:277 c-api/typeobj.rst:346 c-api/typeobj.rst:427 -msgid "void *" -msgstr "" - -#: c-api/typeobj.rst:279 +#: c-api/typeobj.rst:281 msgid ":c:member:`~PyNumberMethods.nb_float`" msgstr "" -#: c-api/typeobj.rst:279 +#: c-api/typeobj.rst:281 msgid "__float__" msgstr "" -#: c-api/typeobj.rst:281 +#: c-api/typeobj.rst:283 msgid ":c:member:`~PyNumberMethods.nb_floor_divide`" msgstr "" -#: c-api/typeobj.rst:281 +#: c-api/typeobj.rst:283 msgid "__floordiv__" msgstr "" -#: c-api/typeobj.rst:283 +#: c-api/typeobj.rst:285 msgid ":c:member:`~PyNumberMethods.nb_inplace_floor_divide`" msgstr "" -#: c-api/typeobj.rst:283 +#: c-api/typeobj.rst:285 msgid "__ifloordiv__" msgstr "" -#: c-api/typeobj.rst:285 +#: c-api/typeobj.rst:287 msgid ":c:member:`~PyNumberMethods.nb_true_divide`" msgstr "" -#: c-api/typeobj.rst:285 +#: c-api/typeobj.rst:287 msgid "__truediv__" msgstr "" -#: c-api/typeobj.rst:287 +#: c-api/typeobj.rst:289 msgid ":c:member:`~PyNumberMethods.nb_inplace_true_divide`" msgstr "" -#: c-api/typeobj.rst:287 +#: c-api/typeobj.rst:289 msgid "__itruediv__" msgstr "" -#: c-api/typeobj.rst:289 +#: c-api/typeobj.rst:291 msgid ":c:member:`~PyNumberMethods.nb_index`" msgstr "" -#: c-api/typeobj.rst:289 +#: c-api/typeobj.rst:291 msgid "__index__" msgstr "" -#: c-api/typeobj.rst:291 +#: c-api/typeobj.rst:293 msgid ":c:member:`~PyNumberMethods.nb_matrix_multiply`" msgstr "" -#: c-api/typeobj.rst:291 +#: c-api/typeobj.rst:293 msgid "__matmul__ __rmatmul__" msgstr "" -#: c-api/typeobj.rst:294 +#: c-api/typeobj.rst:296 msgid ":c:member:`~PyNumberMethods.nb_inplace_matrix_multiply`" msgstr "" -#: c-api/typeobj.rst:294 +#: c-api/typeobj.rst:296 msgid "__imatmul__" msgstr "" -#: c-api/typeobj.rst:298 +#: c-api/typeobj.rst:300 msgid ":c:member:`~PyMappingMethods.mp_length`" msgstr "" -#: c-api/typeobj.rst:307 c-api/typeobj.rst:414 +#: c-api/typeobj.rst:309 c-api/typeobj.rst:416 msgid ":c:type:`lenfunc`" msgstr "" -#: c-api/typeobj.rst:307 +#: c-api/typeobj.rst:309 msgid "__len__" msgstr "" -#: c-api/typeobj.rst:300 +#: c-api/typeobj.rst:302 msgid ":c:member:`~PyMappingMethods.mp_subscript`" msgstr "" -#: c-api/typeobj.rst:313 +#: c-api/typeobj.rst:315 msgid "__getitem__" msgstr "" -#: c-api/typeobj.rst:302 +#: c-api/typeobj.rst:304 msgid ":c:member:`~PyMappingMethods.mp_ass_subscript`" msgstr "" -#: c-api/typeobj.rst:460 +#: c-api/typeobj.rst:462 msgid ":c:type:`objobjargproc`" msgstr "" -#: c-api/typeobj.rst:302 +#: c-api/typeobj.rst:304 msgid "__setitem__, __delitem__" msgstr "" -#: c-api/typeobj.rst:307 +#: c-api/typeobj.rst:309 msgid ":c:member:`~PySequenceMethods.sq_length`" msgstr "" -#: c-api/typeobj.rst:309 +#: c-api/typeobj.rst:311 msgid ":c:member:`~PySequenceMethods.sq_concat`" msgstr "" -#: c-api/typeobj.rst:309 +#: c-api/typeobj.rst:311 msgid "__add__" msgstr "" -#: c-api/typeobj.rst:311 +#: c-api/typeobj.rst:313 msgid ":c:member:`~PySequenceMethods.sq_repeat`" msgstr "" -#: c-api/typeobj.rst:313 c-api/typeobj.rst:444 +#: c-api/typeobj.rst:315 c-api/typeobj.rst:446 msgid ":c:type:`ssizeargfunc`" msgstr "" -#: c-api/typeobj.rst:311 +#: c-api/typeobj.rst:313 msgid "__mul__" msgstr "" -#: c-api/typeobj.rst:313 +#: c-api/typeobj.rst:315 msgid ":c:member:`~PySequenceMethods.sq_item`" msgstr "" -#: c-api/typeobj.rst:315 +#: c-api/typeobj.rst:317 msgid ":c:member:`~PySequenceMethods.sq_ass_item`" msgstr "" -#: c-api/typeobj.rst:449 +#: c-api/typeobj.rst:451 msgid ":c:type:`ssizeobjargproc`" msgstr "" -#: c-api/typeobj.rst:315 +#: c-api/typeobj.rst:317 msgid "__setitem__ __delitem__" msgstr "" -#: c-api/typeobj.rst:318 +#: c-api/typeobj.rst:320 msgid ":c:member:`~PySequenceMethods.sq_contains`" msgstr "" -#: c-api/typeobj.rst:455 +#: c-api/typeobj.rst:457 msgid ":c:type:`objobjproc`" msgstr "" -#: c-api/typeobj.rst:318 +#: c-api/typeobj.rst:320 msgid "__contains__" msgstr "" -#: c-api/typeobj.rst:320 +#: c-api/typeobj.rst:322 msgid ":c:member:`~PySequenceMethods.sq_inplace_concat`" msgstr "" -#: c-api/typeobj.rst:322 +#: c-api/typeobj.rst:324 msgid ":c:member:`~PySequenceMethods.sq_inplace_repeat`" msgstr "" -#: c-api/typeobj.rst:326 +#: c-api/typeobj.rst:328 msgid ":c:member:`~PyBufferProcs.bf_getbuffer`" msgstr "" -#: c-api/typeobj.rst:326 +#: c-api/typeobj.rst:328 msgid ":c:func:`getbufferproc`" msgstr "" -#: c-api/typeobj.rst:328 +#: c-api/typeobj.rst:330 msgid ":c:member:`~PyBufferProcs.bf_releasebuffer`" msgstr "" -#: c-api/typeobj.rst:328 +#: c-api/typeobj.rst:330 msgid ":c:func:`releasebufferproc`" msgstr "" -#: c-api/typeobj.rst:334 +#: c-api/typeobj.rst:336 msgid "slot typedefs" msgstr "" -#: c-api/typeobj.rst:337 +#: c-api/typeobj.rst:339 msgid "typedef" msgstr "" -#: c-api/typeobj.rst:337 +#: c-api/typeobj.rst:339 msgid "Parameter Types" msgstr "" -#: c-api/typeobj.rst:337 +#: c-api/typeobj.rst:339 msgid "Return Type" msgstr "" -#: c-api/typeobj.rst:346 c-api/typeobj.rst:422 +#: c-api/typeobj.rst:348 c-api/typeobj.rst:424 msgid "void" msgstr "" @@ -1058,16 +1066,16 @@ msgstr "" msgid ":c:type:`visitproc`" msgstr "" -#: c-api/typeobj.rst:348 c-api/typeobj.rst:373 c-api/typeobj.rst:396 -#: c-api/typeobj.rst:427 c-api/typeobj.rst:455 c-api/typeobj.rst:460 +#: c-api/typeobj.rst:350 c-api/typeobj.rst:375 c-api/typeobj.rst:398 +#: c-api/typeobj.rst:429 c-api/typeobj.rst:457 c-api/typeobj.rst:462 msgid "int" msgstr "" -#: c-api/typeobj.rst:402 +#: c-api/typeobj.rst:404 msgid "Py_hash_t" msgstr "" -#: c-api/typeobj.rst:416 +#: c-api/typeobj.rst:418 msgid ":c:type:`getbufferproc`" msgstr "" @@ -1075,30 +1083,30 @@ msgstr "" msgid ":c:type:`Py_buffer` *" msgstr "" -#: c-api/typeobj.rst:422 +#: c-api/typeobj.rst:424 msgid ":c:type:`releasebufferproc`" msgstr "" -#: c-api/typeobj.rst:467 +#: c-api/typeobj.rst:469 msgid "See :ref:`slot-typedefs` below for more detail." msgstr "" -#: c-api/typeobj.rst:471 +#: c-api/typeobj.rst:473 msgid "PyTypeObject Definition" msgstr "" -#: c-api/typeobj.rst:473 +#: c-api/typeobj.rst:475 msgid "" "The structure definition for :c:type:`PyTypeObject` can be found in :file:" "`Include/object.h`. For convenience of reference, this repeats the " "definition found there:" msgstr "" -#: c-api/typeobj.rst:483 +#: c-api/typeobj.rst:485 msgid "PyObject Slots" msgstr "" -#: c-api/typeobj.rst:485 +#: c-api/typeobj.rst:487 msgid "" "The type object structure extends the :c:type:`PyVarObject` structure. The :" "c:member:`~PyVarObject.ob_size` field is used for dynamic types (created by :" @@ -1108,7 +1116,7 @@ msgid "" "the :c:member:`~PyVarObject.ob_size` field." msgstr "" -#: c-api/typeobj.rst:494 +#: c-api/typeobj.rst:496 msgid "" "This is the type object's reference count, initialized to ``1`` by the " "``PyObject_HEAD_INIT`` macro. Note that for :ref:`statically allocated type " @@ -1118,25 +1126,25 @@ msgid "" "instances *do* count as references." msgstr "" -#: c-api/typeobj.rst:524 c-api/typeobj.rst:560 c-api/typeobj.rst:647 -#: c-api/typeobj.rst:744 c-api/typeobj.rst:781 c-api/typeobj.rst:823 -#: c-api/typeobj.rst:852 c-api/typeobj.rst:897 c-api/typeobj.rst:935 -#: c-api/typeobj.rst:982 c-api/typeobj.rst:1017 c-api/typeobj.rst:1067 -#: c-api/typeobj.rst:1087 c-api/typeobj.rst:1119 c-api/typeobj.rst:1189 -#: c-api/typeobj.rst:1223 c-api/typeobj.rst:1275 c-api/typeobj.rst:1359 -#: c-api/typeobj.rst:1488 c-api/typeobj.rst:1550 c-api/typeobj.rst:1586 -#: c-api/typeobj.rst:1615 c-api/typeobj.rst:1665 c-api/typeobj.rst:1709 -#: c-api/typeobj.rst:1793 c-api/typeobj.rst:1851 c-api/typeobj.rst:1905 -#: c-api/typeobj.rst:1946 c-api/typeobj.rst:1965 c-api/typeobj.rst:1989 -#: c-api/typeobj.rst:2058 +#: c-api/typeobj.rst:526 c-api/typeobj.rst:562 c-api/typeobj.rst:649 +#: c-api/typeobj.rst:749 c-api/typeobj.rst:783 c-api/typeobj.rst:825 +#: c-api/typeobj.rst:854 c-api/typeobj.rst:899 c-api/typeobj.rst:937 +#: c-api/typeobj.rst:984 c-api/typeobj.rst:1019 c-api/typeobj.rst:1068 +#: c-api/typeobj.rst:1088 c-api/typeobj.rst:1120 c-api/typeobj.rst:1158 +#: c-api/typeobj.rst:1193 c-api/typeobj.rst:1258 c-api/typeobj.rst:1307 +#: c-api/typeobj.rst:1355 c-api/typeobj.rst:1491 c-api/typeobj.rst:1588 +#: c-api/typeobj.rst:1636 c-api/typeobj.rst:1664 c-api/typeobj.rst:1708 +#: c-api/typeobj.rst:1766 c-api/typeobj.rst:1813 c-api/typeobj.rst:1874 +#: c-api/typeobj.rst:1937 c-api/typeobj.rst:1997 c-api/typeobj.rst:2020 +#: c-api/typeobj.rst:2054 c-api/typeobj.rst:2114 c-api/typeobj.rst:2137 msgid "**Inheritance:**" msgstr "" -#: c-api/typeobj.rst:562 c-api/typeobj.rst:606 +#: c-api/typeobj.rst:564 c-api/typeobj.rst:608 msgid "This field is not inherited by subtypes." msgstr "" -#: c-api/typeobj.rst:508 +#: c-api/typeobj.rst:510 msgid "" "This is the type's type, in other words its metatype. It is initialized by " "the argument to the ``PyObject_HEAD_INIT`` macro, and its value should " @@ -1148,7 +1156,7 @@ msgid "" "doing anything else. This is typically done like this::" msgstr "" -#: c-api/typeobj.rst:519 +#: c-api/typeobj.rst:521 msgid "" "This should be done before any instances of the type are created. :c:func:" "`PyType_Ready` checks if :c:member:`~PyObject.ob_type` is ``NULL``, and if " @@ -1156,18 +1164,18 @@ msgid "" "class. :c:func:`PyType_Ready` will not change this field if it is non-zero." msgstr "" -#: c-api/typeobj.rst:708 c-api/typeobj.rst:917 c-api/typeobj.rst:1552 -#: c-api/typeobj.rst:1693 c-api/typeobj.rst:1795 c-api/typeobj.rst:2037 +#: c-api/typeobj.rst:710 c-api/typeobj.rst:919 c-api/typeobj.rst:1615 +#: c-api/typeobj.rst:1768 c-api/typeobj.rst:1859 c-api/typeobj.rst:2116 msgid "This field is inherited by subtypes." msgstr "" -#: c-api/typeobj.rst:532 +#: c-api/typeobj.rst:534 msgid "" "These fields are only present when the macro ``Py_TRACE_REFS`` is defined " "(see the :option:`configure --with-trace-refs option <--with-trace-refs>`)." msgstr "" -#: c-api/typeobj.rst:535 +#: c-api/typeobj.rst:537 msgid "" "Their initialization to ``NULL`` is taken care of by the " "``PyObject_HEAD_INIT`` macro. For :ref:`statically allocated objects " @@ -1176,7 +1184,7 @@ msgid "" "object into a doubly linked list of *all* live objects on the heap." msgstr "" -#: c-api/typeobj.rst:541 +#: c-api/typeobj.rst:543 msgid "" "This could be used for various debugging purposes; currently the only uses " "are the :func:`sys.getobjects` function and to print the objects that are " @@ -1184,26 +1192,26 @@ msgid "" "`PYTHONDUMPREFS` is set." msgstr "" -#: c-api/typeobj.rst:548 +#: c-api/typeobj.rst:550 msgid "These fields are not inherited by subtypes." msgstr "" -#: c-api/typeobj.rst:552 +#: c-api/typeobj.rst:554 msgid "PyVarObject Slots" msgstr "" -#: c-api/typeobj.rst:556 +#: c-api/typeobj.rst:558 msgid "" "For :ref:`statically allocated type objects `, this should be " "initialized to zero. For :ref:`dynamically allocated type objects `, this field has a special internal meaning." msgstr "" -#: c-api/typeobj.rst:566 +#: c-api/typeobj.rst:568 msgid "PyTypeObject Slots" msgstr "" -#: c-api/typeobj.rst:568 +#: c-api/typeobj.rst:570 msgid "" "Each slot has a section describing inheritance. If :c:func:`PyType_Ready` " "may set a value when the field is set to ``NULL`` then there will also be a " @@ -1211,7 +1219,7 @@ msgid "" "`PyBaseObject_Type` and :c:data:`PyType_Type` effectively act as defaults.)" msgstr "" -#: c-api/typeobj.rst:575 +#: c-api/typeobj.rst:577 msgid "" "Pointer to a NUL-terminated string containing the name of the type. For " "types that are accessible as module globals, the string should be the full " @@ -1223,14 +1231,14 @@ msgid "" "tp_name` initializer ``\"P.Q.M.T\"``." msgstr "" -#: c-api/typeobj.rst:583 +#: c-api/typeobj.rst:585 msgid "" "For :ref:`dynamically allocated type objects `, this should just " "be the type name, and the module name explicitly stored in the type dict as " "the value for key ``'__module__'``." msgstr "" -#: c-api/typeobj.rst:588 +#: c-api/typeobj.rst:590 msgid "" "For :ref:`statically allocated type objects `, the *tp_name* " "field should contain a dot. Everything before the last dot is made " @@ -1238,7 +1246,7 @@ msgid "" "last dot is made accessible as the :attr:`~definition.__name__` attribute." msgstr "" -#: c-api/typeobj.rst:594 +#: c-api/typeobj.rst:596 msgid "" "If no dot is present, the entire :c:member:`~PyTypeObject.tp_name` field is " "made accessible as the :attr:`~definition.__name__` attribute, and the :attr:" @@ -1248,19 +1256,19 @@ msgid "" "created with pydoc." msgstr "" -#: c-api/typeobj.rst:600 +#: c-api/typeobj.rst:602 msgid "" "This field must not be ``NULL``. It is the only required field in :c:func:" "`PyTypeObject` (other than potentially :c:member:`~PyTypeObject." "tp_itemsize`)." msgstr "" -#: c-api/typeobj.rst:612 +#: c-api/typeobj.rst:614 msgid "" "These fields allow calculating the size in bytes of instances of the type." msgstr "" -#: c-api/typeobj.rst:614 +#: c-api/typeobj.rst:616 msgid "" "There are two kinds of types: types with fixed-length instances have a zero :" "c:member:`~PyTypeObject.tp_itemsize` field, types with variable-length " @@ -1269,7 +1277,7 @@ msgid "" "in :c:member:`~PyTypeObject.tp_basicsize`." msgstr "" -#: c-api/typeobj.rst:619 +#: c-api/typeobj.rst:621 msgid "" "For a type with variable-length instances, the instances must have an :c:" "member:`~PyVarObject.ob_size` field, and the instance size is :c:member:" @@ -1285,7 +1293,7 @@ msgid "" "`~PyVarObject.ob_size` field)." msgstr "" -#: c-api/typeobj.rst:630 +#: c-api/typeobj.rst:632 msgid "" "The basic size includes the fields in the instance declared by the macro :c:" "macro:`PyObject_HEAD` or :c:macro:`PyObject_VAR_HEAD` (whichever is used to " @@ -1297,7 +1305,7 @@ msgid "" "include the GC header size." msgstr "" -#: c-api/typeobj.rst:638 +#: c-api/typeobj.rst:640 msgid "" "A note about alignment: if the variable items require a particular " "alignment, this should be taken care of by the value of :c:member:" @@ -1308,12 +1316,12 @@ msgid "" "alignment requirement for ``double``)." msgstr "" -#: c-api/typeobj.rst:645 +#: c-api/typeobj.rst:647 msgid "" "For any type with variable-length instances, this field must not be ``NULL``." msgstr "" -#: c-api/typeobj.rst:649 +#: c-api/typeobj.rst:651 msgid "" "These fields are inherited separately by subtypes. If the base type has a " "non-zero :c:member:`~PyTypeObject.tp_itemsize`, it is generally not safe to " @@ -1321,7 +1329,7 @@ msgid "" "subtype (though this depends on the implementation of the base type)." msgstr "" -#: c-api/typeobj.rst:657 +#: c-api/typeobj.rst:659 msgid "" "A pointer to the instance destructor function. This function must be " "defined unless the type guarantees that its instances will never be " @@ -1329,7 +1337,7 @@ msgid "" "The function signature is::" msgstr "" -#: c-api/typeobj.rst:663 +#: c-api/typeobj.rst:665 msgid "" "The destructor function is called by the :c:func:`Py_DECREF` and :c:func:" "`Py_XDECREF` macros when the new reference count is zero. At this point, " @@ -1347,14 +1355,14 @@ msgid "" "allocated using :c:macro:`PyObject_GC_New` or :c:macro:`PyObject_GC_NewVar`." msgstr "" -#: c-api/typeobj.rst:678 +#: c-api/typeobj.rst:680 msgid "" "If the type supports garbage collection (has the :c:macro:" "`Py_TPFLAGS_HAVE_GC` flag bit set), the destructor should call :c:func:" "`PyObject_GC_UnTrack` before clearing any member fields." msgstr "" -#: c-api/typeobj.rst:690 +#: c-api/typeobj.rst:692 msgid "" "Finally, if the type is heap allocated (:c:macro:`Py_TPFLAGS_HEAPTYPE`), the " "deallocator should release the owned reference to its type object (via :c:" @@ -1362,28 +1370,28 @@ msgid "" "dangling pointers, the recommended way to achieve this is:" msgstr "" -#: c-api/typeobj.rst:713 +#: c-api/typeobj.rst:715 msgid "" "An optional offset to a per-instance function that implements calling the " "object using the :ref:`vectorcall protocol `, a more efficient " "alternative of the simpler :c:member:`~PyTypeObject.tp_call`." msgstr "" -#: c-api/typeobj.rst:718 +#: c-api/typeobj.rst:720 msgid "" "This field is only used if the flag :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` is " "set. If so, this must be a positive integer containing the offset in the " "instance of a :c:type:`vectorcallfunc` pointer." msgstr "" -#: c-api/typeobj.rst:722 +#: c-api/typeobj.rst:724 msgid "" "The *vectorcallfunc* pointer may be ``NULL``, in which case the instance " "behaves as if :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` was not set: calling the " "instance falls back to :c:member:`~PyTypeObject.tp_call`." msgstr "" -#: c-api/typeobj.rst:726 +#: c-api/typeobj.rst:728 msgid "" "Any class that sets ``Py_TPFLAGS_HAVE_VECTORCALL`` must also set :c:member:" "`~PyTypeObject.tp_call` and make sure its behaviour is consistent with the " @@ -1391,35 +1399,35 @@ msgid "" "`PyVectorcall_Call`." msgstr "" -#: c-api/typeobj.rst:733 +#: c-api/typeobj.rst:735 msgid "" -"It is not recommended for :ref:`mutable heap types ` to " -"implement the vectorcall protocol. When a user sets :attr:`__call__` in " -"Python code, only *tp_call* is updated, likely making it inconsistent with " -"the vectorcall function." +"Before version 3.8, this slot was named ``tp_print``. In Python 2.x, it was " +"used for printing to a file. In Python 3.0 to 3.7, it was unused." msgstr "" -#: c-api/typeobj.rst:740 +#: c-api/typeobj.rst:741 msgid "" -"Before version 3.8, this slot was named ``tp_print``. In Python 2.x, it was " -"used for printing to a file. In Python 3.0 to 3.7, it was unused." +"Before version 3.12, it was not recommended for :ref:`mutable heap types " +"` to implement the vectorcall protocol. When a user sets :attr:" +"`~object.__call__` in Python code, only *tp_call* is updated, likely making " +"it inconsistent with the vectorcall function. Since 3.12, setting " +"``__call__`` will disable vectorcall optimization by clearing the :c:macro:" +"`Py_TPFLAGS_HAVE_VECTORCALL` flag." msgstr "" -#: c-api/typeobj.rst:746 +#: c-api/typeobj.rst:751 msgid "" "This field is always inherited. However, the :c:macro:" -"`Py_TPFLAGS_HAVE_VECTORCALL` flag is not always inherited. If it's not, then " -"the subclass won't use :ref:`vectorcall `, except when :c:func:" -"`PyVectorcall_Call` is explicitly called. This is in particular the case for " -"types without the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` flag set (including " -"subclasses defined in Python)." +"`Py_TPFLAGS_HAVE_VECTORCALL` flag is not always inherited. If it's not set, " +"then the subclass won't use :ref:`vectorcall `, except when :c:" +"func:`PyVectorcall_Call` is explicitly called." msgstr "" -#: c-api/typeobj.rst:758 +#: c-api/typeobj.rst:760 msgid "An optional pointer to the get-attribute-string function." msgstr "" -#: c-api/typeobj.rst:760 +#: c-api/typeobj.rst:762 msgid "" "This field is deprecated. When it is defined, it should point to a function " "that acts the same as the :c:member:`~PyTypeObject.tp_getattro` function, " @@ -1427,13 +1435,13 @@ msgid "" "attribute name." msgstr "" -#: c-api/typeobj.rst:958 +#: c-api/typeobj.rst:960 msgid "" "Group: :c:member:`~PyTypeObject.tp_getattr`, :c:member:`~PyTypeObject." "tp_getattro`" msgstr "" -#: c-api/typeobj.rst:768 +#: c-api/typeobj.rst:770 msgid "" "This field is inherited by subtypes together with :c:member:`~PyTypeObject." "tp_getattro`: a subtype inherits both :c:member:`~PyTypeObject.tp_getattr` " @@ -1442,12 +1450,12 @@ msgid "" "tp_getattro` are both ``NULL``." msgstr "" -#: c-api/typeobj.rst:971 +#: c-api/typeobj.rst:973 msgid "" "An optional pointer to the function for setting and deleting attributes." msgstr "" -#: c-api/typeobj.rst:777 +#: c-api/typeobj.rst:779 msgid "" "This field is deprecated. When it is defined, it should point to a function " "that acts the same as the :c:member:`~PyTypeObject.tp_setattro` function, " @@ -1455,13 +1463,13 @@ msgid "" "attribute name." msgstr "" -#: c-api/typeobj.rst:984 +#: c-api/typeobj.rst:986 msgid "" "Group: :c:member:`~PyTypeObject.tp_setattr`, :c:member:`~PyTypeObject." "tp_setattro`" msgstr "" -#: c-api/typeobj.rst:785 +#: c-api/typeobj.rst:787 msgid "" "This field is inherited by subtypes together with :c:member:`~PyTypeObject." "tp_setattro`: a subtype inherits both :c:member:`~PyTypeObject.tp_setattr` " @@ -1470,34 +1478,34 @@ msgid "" "tp_setattro` are both ``NULL``." msgstr "" -#: c-api/typeobj.rst:792 +#: c-api/typeobj.rst:794 msgid "" "Pointer to an additional structure that contains fields relevant only to " "objects which implement :term:`awaitable` and :term:`asynchronous iterator` " "protocols at the C-level. See :ref:`async-structs` for details." msgstr "" -#: c-api/typeobj.rst:796 +#: c-api/typeobj.rst:798 msgid "Formerly known as ``tp_compare`` and ``tp_reserved``." msgstr "" -#: c-api/typeobj.rst:801 +#: c-api/typeobj.rst:803 msgid "" "The :c:member:`~PyTypeObject.tp_as_async` field is not inherited, but the " "contained fields are inherited individually." msgstr "" -#: c-api/typeobj.rst:809 +#: c-api/typeobj.rst:811 msgid "" "An optional pointer to a function that implements the built-in function :" "func:`repr`." msgstr "" -#: c-api/typeobj.rst:812 +#: c-api/typeobj.rst:814 msgid "The signature is the same as for :c:func:`PyObject_Repr`::" msgstr "" -#: c-api/typeobj.rst:816 +#: c-api/typeobj.rst:818 msgid "" "The function must return a string or a Unicode object. Ideally, this " "function should return a string that, when passed to :func:`eval`, given a " @@ -1506,76 +1514,76 @@ msgid "" "``'>'`` from which both the type and the value of the object can be deduced." msgstr "" -#: c-api/typeobj.rst:939 c-api/typeobj.rst:990 c-api/typeobj.rst:1497 -#: c-api/typeobj.rst:1670 c-api/typeobj.rst:1797 c-api/typeobj.rst:1857 -#: c-api/typeobj.rst:1909 +#: c-api/typeobj.rst:941 c-api/typeobj.rst:992 c-api/typeobj.rst:1561 +#: c-api/typeobj.rst:1712 c-api/typeobj.rst:1820 c-api/typeobj.rst:1879 +#: c-api/typeobj.rst:1942 c-api/typeobj.rst:1973 msgid "**Default:**" msgstr "" -#: c-api/typeobj.rst:829 +#: c-api/typeobj.rst:831 msgid "" "When this field is not set, a string of the form ``<%s object at %p>`` is " "returned, where ``%s`` is replaced by the type name, and ``%p`` by the " "object's memory address." msgstr "" -#: c-api/typeobj.rst:836 +#: c-api/typeobj.rst:838 msgid "" "Pointer to an additional structure that contains fields relevant only to " "objects which implement the number protocol. These fields are documented " "in :ref:`number-structs`." msgstr "" -#: c-api/typeobj.rst:842 +#: c-api/typeobj.rst:844 msgid "" "The :c:member:`~PyTypeObject.tp_as_number` field is not inherited, but the " "contained fields are inherited individually." msgstr "" -#: c-api/typeobj.rst:848 +#: c-api/typeobj.rst:850 msgid "" "Pointer to an additional structure that contains fields relevant only to " "objects which implement the sequence protocol. These fields are documented " "in :ref:`sequence-structs`." msgstr "" -#: c-api/typeobj.rst:854 +#: c-api/typeobj.rst:856 msgid "" "The :c:member:`~PyTypeObject.tp_as_sequence` field is not inherited, but the " "contained fields are inherited individually." msgstr "" -#: c-api/typeobj.rst:860 +#: c-api/typeobj.rst:862 msgid "" "Pointer to an additional structure that contains fields relevant only to " "objects which implement the mapping protocol. These fields are documented " "in :ref:`mapping-structs`." msgstr "" -#: c-api/typeobj.rst:866 +#: c-api/typeobj.rst:868 msgid "" "The :c:member:`~PyTypeObject.tp_as_mapping` field is not inherited, but the " "contained fields are inherited individually." msgstr "" -#: c-api/typeobj.rst:874 +#: c-api/typeobj.rst:876 msgid "" "An optional pointer to a function that implements the built-in function :" "func:`hash`." msgstr "" -#: c-api/typeobj.rst:877 +#: c-api/typeobj.rst:879 msgid "The signature is the same as for :c:func:`PyObject_Hash`::" msgstr "" -#: c-api/typeobj.rst:881 +#: c-api/typeobj.rst:883 msgid "" "The value ``-1`` should not be returned as a normal return value; when an " "error occurs during the computation of the hash value, the function should " "set an exception and return ``-1``." msgstr "" -#: c-api/typeobj.rst:885 +#: c-api/typeobj.rst:887 msgid "" "When this field is not set (*and* :c:member:`~PyTypeObject.tp_richcompare` " "is not set), an attempt to take the hash of the object raises :exc:" @@ -1583,7 +1591,7 @@ msgid "" "`PyObject_HashNotImplemented`." msgstr "" -#: c-api/typeobj.rst:889 +#: c-api/typeobj.rst:891 msgid "" "This field can be set explicitly to :c:func:`PyObject_HashNotImplemented` to " "block inheritance of the hash method from a parent type. This is interpreted " @@ -1594,13 +1602,13 @@ msgid "" "`PyObject_HashNotImplemented`." msgstr "" -#: c-api/typeobj.rst:1490 +#: c-api/typeobj.rst:1554 msgid "" "Group: :c:member:`~PyTypeObject.tp_hash`, :c:member:`~PyTypeObject." "tp_richcompare`" msgstr "" -#: c-api/typeobj.rst:901 +#: c-api/typeobj.rst:903 msgid "" "This field is inherited by subtypes together with :c:member:`~PyTypeObject." "tp_richcompare`: a subtype inherits both of :c:member:`~PyTypeObject." @@ -1609,14 +1617,14 @@ msgid "" "are both ``NULL``." msgstr "" -#: c-api/typeobj.rst:909 +#: c-api/typeobj.rst:911 msgid "" "An optional pointer to a function that implements calling the object. This " "should be ``NULL`` if the object is not callable. The signature is the same " "as for :c:func:`PyObject_Call`::" msgstr "" -#: c-api/typeobj.rst:922 +#: c-api/typeobj.rst:924 msgid "" "An optional pointer to a function that implements the built-in operation :" "func:`str`. (Note that :class:`str` is a type now, and :func:`str` calls " @@ -1625,11 +1633,11 @@ msgid "" "this handler.)" msgstr "" -#: c-api/typeobj.rst:927 +#: c-api/typeobj.rst:929 msgid "The signature is the same as for :c:func:`PyObject_Str`::" msgstr "" -#: c-api/typeobj.rst:931 +#: c-api/typeobj.rst:933 msgid "" "The function must return a string or a Unicode object. It should be a " "\"friendly\" string representation of the object, as this is the " @@ -1637,28 +1645,28 @@ msgid "" "function." msgstr "" -#: c-api/typeobj.rst:941 +#: c-api/typeobj.rst:943 msgid "" "When this field is not set, :c:func:`PyObject_Repr` is called to return a " "string representation." msgstr "" -#: c-api/typeobj.rst:947 +#: c-api/typeobj.rst:949 msgid "An optional pointer to the get-attribute function." msgstr "" -#: c-api/typeobj.rst:949 +#: c-api/typeobj.rst:951 msgid "The signature is the same as for :c:func:`PyObject_GetAttr`::" msgstr "" -#: c-api/typeobj.rst:953 +#: c-api/typeobj.rst:955 msgid "" "It is usually convenient to set this field to :c:func:" "`PyObject_GenericGetAttr`, which implements the normal way of looking for " "object attributes." msgstr "" -#: c-api/typeobj.rst:960 +#: c-api/typeobj.rst:962 msgid "" "This field is inherited by subtypes together with :c:member:`~PyTypeObject." "tp_getattr`: a subtype inherits both :c:member:`~PyTypeObject.tp_getattr` " @@ -1667,15 +1675,15 @@ msgid "" "tp_getattro` are both ``NULL``." msgstr "" -#: c-api/typeobj.rst:966 +#: c-api/typeobj.rst:968 msgid ":c:data:`PyBaseObject_Type` uses :c:func:`PyObject_GenericGetAttr`." msgstr "" -#: c-api/typeobj.rst:973 +#: c-api/typeobj.rst:975 msgid "The signature is the same as for :c:func:`PyObject_SetAttr`::" msgstr "" -#: c-api/typeobj.rst:977 +#: c-api/typeobj.rst:979 msgid "" "In addition, setting *value* to ``NULL`` to delete an attribute must be " "supported. It is usually convenient to set this field to :c:func:" @@ -1683,7 +1691,7 @@ msgid "" "attributes." msgstr "" -#: c-api/typeobj.rst:986 +#: c-api/typeobj.rst:988 msgid "" "This field is inherited by subtypes together with :c:member:`~PyTypeObject." "tp_setattr`: a subtype inherits both :c:member:`~PyTypeObject.tp_setattr` " @@ -1692,24 +1700,24 @@ msgid "" "tp_setattro` are both ``NULL``." msgstr "" -#: c-api/typeobj.rst:992 +#: c-api/typeobj.rst:994 msgid ":c:data:`PyBaseObject_Type` uses :c:func:`PyObject_GenericSetAttr`." msgstr "" -#: c-api/typeobj.rst:997 +#: c-api/typeobj.rst:999 msgid "" "Pointer to an additional structure that contains fields relevant only to " "objects which implement the buffer interface. These fields are documented " "in :ref:`buffer-structs`." msgstr "" -#: c-api/typeobj.rst:1003 +#: c-api/typeobj.rst:1005 msgid "" "The :c:member:`~PyTypeObject.tp_as_buffer` field is not inherited, but the " "contained fields are inherited individually." msgstr "" -#: c-api/typeobj.rst:1009 +#: c-api/typeobj.rst:1011 msgid "" "This field is a bit mask of various flags. Some flags indicate variant " "semantics for certain situations; others are used to indicate that certain " @@ -1721,7 +1729,7 @@ msgid "" "accessed and must be considered to have a zero or ``NULL`` value instead." msgstr "" -#: c-api/typeobj.rst:1019 +#: c-api/typeobj.rst:1021 msgid "" "Inheritance of this field is complicated. Most flag bits are inherited " "individually, i.e. if the base type has a flag bit set, the subtype inherits " @@ -1733,20 +1741,21 @@ msgid "" "and :c:member:`~PyTypeObject.tp_clear` fields, i.e. if the :c:macro:" "`Py_TPFLAGS_HAVE_GC` flag bit is clear in the subtype and the :c:member:" "`~PyTypeObject.tp_traverse` and :c:member:`~PyTypeObject.tp_clear` fields in " -"the subtype exist and have ``NULL`` values." +"the subtype exist and have ``NULL`` values. .. XXX are most flag bits " +"*really* inherited individually?" msgstr "" -#: c-api/typeobj.rst:1034 +#: c-api/typeobj.rst:1035 msgid "" ":c:data:`PyBaseObject_Type` uses ``Py_TPFLAGS_DEFAULT | " "Py_TPFLAGS_BASETYPE``." msgstr "" -#: c-api/typeobj.rst:1037 +#: c-api/typeobj.rst:1038 msgid "**Bit Masks:**" msgstr "" -#: c-api/typeobj.rst:1041 +#: c-api/typeobj.rst:1042 msgid "" "The following bit masks are currently defined; these can be ORed together " "using the ``|`` operator to form the value of the :c:member:`~PyTypeObject." @@ -1755,7 +1764,7 @@ msgid "" "zero." msgstr "" -#: c-api/typeobj.rst:1048 +#: c-api/typeobj.rst:1049 msgid "" "This bit is set when the type object itself is allocated on the heap, for " "example, types created dynamically using :c:func:`PyType_FromSpec`. In this " @@ -1766,30 +1775,30 @@ msgid "" "instance's ob_type gets INCREF'ed or DECREF'ed)." msgstr "" -#: c-api/typeobj.rst:1069 c-api/typeobj.rst:1089 c-api/typeobj.rst:1121 +#: c-api/typeobj.rst:1070 c-api/typeobj.rst:1090 c-api/typeobj.rst:1122 msgid "???" msgstr "" -#: c-api/typeobj.rst:1063 +#: c-api/typeobj.rst:1064 msgid "" "This bit is set when the type can be used as the base type of another type. " "If this bit is clear, the type cannot be subtyped (similar to a \"final\" " "class in Java)." msgstr "" -#: c-api/typeobj.rst:1074 +#: c-api/typeobj.rst:1075 msgid "" "This bit is set when the type object has been fully initialized by :c:func:" "`PyType_Ready`." msgstr "" -#: c-api/typeobj.rst:1084 +#: c-api/typeobj.rst:1085 msgid "" "This bit is set while :c:func:`PyType_Ready` is in the process of " "initializing the type object." msgstr "" -#: c-api/typeobj.rst:1094 +#: c-api/typeobj.rst:1095 msgid "" "This bit is set when the object supports garbage collection. If this bit is " "set, instances must be created using :c:macro:`PyObject_GC_New` and " @@ -1799,13 +1808,13 @@ msgid "" "tp_clear` are present in the type object." msgstr "" -#: c-api/typeobj.rst:1361 c-api/typeobj.rst:1429 +#: c-api/typeobj.rst:1425 c-api/typeobj.rst:1493 msgid "" "Group: :c:macro:`Py_TPFLAGS_HAVE_GC`, :c:member:`~PyTypeObject." "tp_traverse`, :c:member:`~PyTypeObject.tp_clear`" msgstr "" -#: c-api/typeobj.rst:1105 +#: c-api/typeobj.rst:1106 msgid "" "The :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is inherited together with the :c:" "member:`~PyTypeObject.tp_traverse` and :c:member:`~PyTypeObject.tp_clear` " @@ -1815,48 +1824,99 @@ msgid "" "values." msgstr "" -#: c-api/typeobj.rst:1115 +#: c-api/typeobj.rst:1116 msgid "" "This is a bitmask of all the bits that pertain to the existence of certain " "fields in the type object and its extension structures. Currently, it " "includes the following bits: :c:macro:`Py_TPFLAGS_HAVE_STACKLESS_EXTENSION`." msgstr "" -#: c-api/typeobj.rst:1126 +#: c-api/typeobj.rst:1127 msgid "This bit indicates that objects behave like unbound methods." msgstr "" -#: c-api/typeobj.rst:1128 +#: c-api/typeobj.rst:1129 msgid "If this flag is set for ``type(meth)``, then:" msgstr "" -#: c-api/typeobj.rst:1130 +#: c-api/typeobj.rst:1131 msgid "" "``meth.__get__(obj, cls)(*args, **kwds)`` (with ``obj`` not None) must be " "equivalent to ``meth(obj, *args, **kwds)``." msgstr "" -#: c-api/typeobj.rst:1133 +#: c-api/typeobj.rst:1134 msgid "" "``meth.__get__(None, cls)(*args, **kwds)`` must be equivalent to " "``meth(*args, **kwds)``." msgstr "" -#: c-api/typeobj.rst:1136 +#: c-api/typeobj.rst:1137 msgid "" "This flag enables an optimization for typical method calls like ``obj." "meth()``: it avoids creating a temporary \"bound method\" object for ``obj." "meth``." msgstr "" -#: c-api/typeobj.rst:1144 +#: c-api/typeobj.rst:1145 msgid "" "This flag is never inherited by types without the :c:macro:" "`Py_TPFLAGS_IMMUTABLETYPE` flag set. For extension types, it is inherited " "whenever :c:member:`~PyTypeObject.tp_descr_get` is inherited." msgstr "" -#: c-api/typeobj.rst:1161 +#: c-api/typeobj.rst:1151 +msgid "" +"This bit indicates that instances of the class have a ``__dict__`` " +"attribute, and that the space for the dictionary is managed by the VM." +msgstr "" + +#: c-api/typeobj.rst:1154 +msgid "If this flag is set, :c:macro:`Py_TPFLAGS_HAVE_GC` should also be set." +msgstr "" + +#: c-api/typeobj.rst:1160 +msgid "" +"This flag is inherited unless the :c:member:`~PyTypeObject.tp_dictoffset` " +"field is set in a superclass." +msgstr "" + +#: c-api/typeobj.rst:1166 +msgid "" +"This bit indicates that instances of the class should be weakly " +"referenceable." +msgstr "" + +#: c-api/typeobj.rst:1173 +msgid "" +"This flag is inherited unless the :c:member:`~PyTypeObject." +"tp_weaklistoffset` field is set in a superclass." +msgstr "" + +#: c-api/typeobj.rst:1179 +msgid "" +"Only usable with variable-size types, i.e. ones with non-zero :c:member:" +"`~PyTypeObject.tp_itemsize`." +msgstr "" + +#: c-api/typeobj.rst:1182 +msgid "" +"Indicates that the variable-sized portion of an instance of this type is at " +"the end of the instance's memory area, at an offset of ``Py_TYPE(obj)-" +">tp_basicsize`` (which may be different in each subclass)." +msgstr "" + +#: c-api/typeobj.rst:1187 +msgid "" +"When setting this flag, be sure that all superclasses either use this memory " +"layout, or are not variable-sized. Python does not check this." +msgstr "" + +#: c-api/typeobj.rst:1195 +msgid "This flag is inherited." +msgstr "" + +#: c-api/typeobj.rst:1209 msgid "" "These flags are used by functions such as :c:func:`PyLong_Check` to quickly " "determine if a type is a subclass of a built-in type; such specific checks " @@ -1866,81 +1926,90 @@ msgid "" "behave differently depending on what kind of check is used." msgstr "" -#: c-api/typeobj.rst:1172 +#: c-api/typeobj.rst:1220 msgid "" "This bit is set when the :c:member:`~PyTypeObject.tp_finalize` slot is " "present in the type structure." msgstr "" -#: c-api/typeobj.rst:1177 +#: c-api/typeobj.rst:1225 msgid "" "This flag isn't necessary anymore, as the interpreter assumes the :c:member:" "`~PyTypeObject.tp_finalize` slot is always present in the type structure." msgstr "" -#: c-api/typeobj.rst:1185 +#: c-api/typeobj.rst:1233 msgid "" "This bit is set when the class implements the :ref:`vectorcall protocol " "`. See :c:member:`~PyTypeObject.tp_vectorcall_offset` for " "details." msgstr "" -#: c-api/typeobj.rst:1191 +#: c-api/typeobj.rst:1239 msgid "" -"This bit is inherited for types with the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` " -"flag set, if :c:member:`~PyTypeObject.tp_call` is also inherited." +"This bit is inherited if :c:member:`~PyTypeObject.tp_call` is also inherited." +msgstr "" + +#: c-api/typeobj.rst:1246 +msgid "" +"This flag is now removed from a class when the class's :py:meth:`~object." +"__call__` method is reassigned." +msgstr "" + +#: c-api/typeobj.rst:1249 +msgid "This flag can now be inherited by mutable classes." msgstr "" -#: c-api/typeobj.rst:1199 +#: c-api/typeobj.rst:1253 msgid "" "This bit is set for type objects that are immutable: type attributes cannot " "be set nor deleted." msgstr "" -#: c-api/typeobj.rst:1201 +#: c-api/typeobj.rst:1255 msgid "" ":c:func:`PyType_Ready` automatically applies this flag to :ref:`static types " "`." msgstr "" -#: c-api/typeobj.rst:1206 +#: c-api/typeobj.rst:1260 msgid "This flag is not inherited." msgstr "" -#: c-api/typeobj.rst:1212 +#: c-api/typeobj.rst:1266 msgid "" "Disallow creating instances of the type: set :c:member:`~PyTypeObject." "tp_new` to NULL and don't create the ``__new__`` key in the type dictionary." msgstr "" -#: c-api/typeobj.rst:1216 +#: c-api/typeobj.rst:1270 msgid "" "The flag must be set before creating the type, not after. For example, it " "must be set before :c:func:`PyType_Ready` is called on the type." msgstr "" -#: c-api/typeobj.rst:1219 +#: c-api/typeobj.rst:1273 msgid "" "The flag is set automatically on :ref:`static types ` if :c:" "member:`~PyTypeObject.tp_base` is NULL or ``&PyBaseObject_Type`` and :c:" "member:`~PyTypeObject.tp_new` is NULL." msgstr "" -#: c-api/typeobj.rst:1225 +#: c-api/typeobj.rst:1279 msgid "" "This flag is not inherited. However, subclasses will not be instantiable " "unless they provide a non-NULL :c:member:`~PyTypeObject.tp_new` (which is " "only possible via the C API)." msgstr "" -#: c-api/typeobj.rst:1232 +#: c-api/typeobj.rst:1286 msgid "" "To disallow instantiating a class directly but allow instantiating its " "subclasses (e.g. for an :term:`abstract base class`), do not use this flag. " "Instead, make :c:member:`~PyTypeObject.tp_new` only succeed for subclasses." msgstr "" -#: c-api/typeobj.rst:1243 +#: c-api/typeobj.rst:1297 msgid "" "This bit indicates that instances of the class may match mapping patterns " "when used as the subject of a :keyword:`match` block. It is automatically " @@ -1948,23 +2017,23 @@ msgid "" "unset when registering :class:`collections.abc.Sequence`." msgstr "" -#: c-api/typeobj.rst:1272 +#: c-api/typeobj.rst:1326 msgid "" ":c:macro:`Py_TPFLAGS_MAPPING` and :c:macro:`Py_TPFLAGS_SEQUENCE` are " "mutually exclusive; it is an error to enable both flags simultaneously." msgstr "" -#: c-api/typeobj.rst:1255 +#: c-api/typeobj.rst:1309 msgid "" "This flag is inherited by types that do not already set :c:macro:" "`Py_TPFLAGS_SEQUENCE`." msgstr "" -#: c-api/typeobj.rst:1280 +#: c-api/typeobj.rst:1334 msgid ":pep:`634` -- Structural Pattern Matching: Specification" msgstr "" -#: c-api/typeobj.rst:1265 +#: c-api/typeobj.rst:1319 msgid "" "This bit indicates that instances of the class may match sequence patterns " "when used as the subject of a :keyword:`match` block. It is automatically " @@ -1972,37 +2041,49 @@ msgid "" "unset when registering :class:`collections.abc.Mapping`." msgstr "" -#: c-api/typeobj.rst:1277 +#: c-api/typeobj.rst:1331 msgid "" "This flag is inherited by types that do not already set :c:macro:" "`Py_TPFLAGS_MAPPING`." msgstr "" -#: c-api/typeobj.rst:1287 +#: c-api/typeobj.rst:1341 +msgid "" +"Internal. Do not set or unset this flag. To indicate that a class has " +"changed call :c:func:`PyType_Modified`" +msgstr "" + +#: c-api/typeobj.rst:1345 +msgid "" +"This flag is present in header files, but is an internal feature and should " +"not be used. It will be removed in a future version of CPython" +msgstr "" + +#: c-api/typeobj.rst:1351 msgid "" "An optional pointer to a NUL-terminated C string giving the docstring for " "this type object. This is exposed as the :attr:`__doc__` attribute on the " "type and instances of the type." msgstr "" -#: c-api/typeobj.rst:1293 +#: c-api/typeobj.rst:1357 msgid "This field is *not* inherited by subtypes." msgstr "" -#: c-api/typeobj.rst:1298 +#: c-api/typeobj.rst:1362 msgid "" "An optional pointer to a traversal function for the garbage collector. This " "is only used if the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is set. The " "signature is::" msgstr "" -#: c-api/typeobj.rst:1424 +#: c-api/typeobj.rst:1488 msgid "" "More information about Python's garbage collection scheme can be found in " "section :ref:`supporting-cycle-detection`." msgstr "" -#: c-api/typeobj.rst:1306 +#: c-api/typeobj.rst:1370 msgid "" "The :c:member:`~PyTypeObject.tp_traverse` pointer is used by the garbage " "collector to detect reference cycles. A typical implementation of a :c:" @@ -2012,7 +2093,7 @@ msgid "" "`!_thread` extension module::" msgstr "" -#: c-api/typeobj.rst:1321 +#: c-api/typeobj.rst:1385 msgid "" "Note that :c:func:`Py_VISIT` is called only on those members that can " "participate in reference cycles. Although there is also a ``self->key`` " @@ -2020,14 +2101,14 @@ msgid "" "part of a reference cycle." msgstr "" -#: c-api/typeobj.rst:1325 +#: c-api/typeobj.rst:1389 msgid "" "On the other hand, even if you know a member can never be part of a cycle, " "as a debugging aid you may want to visit it anyway just so the :mod:`gc` " "module's :func:`~gc.get_referents` function will include it." msgstr "" -#: c-api/typeobj.rst:1330 +#: c-api/typeobj.rst:1394 msgid "" "When implementing :c:member:`~PyTypeObject.tp_traverse`, only the members " "that the instance *owns* (by having :term:`strong references ` hold a reference to " "their type. Their traversal function must therefore either visit :c:func:" @@ -2056,14 +2137,14 @@ msgid "" "superclass). If they do not, the type object may not be garbage-collected." msgstr "" -#: c-api/typeobj.rst:1354 +#: c-api/typeobj.rst:1418 msgid "" "Heap-allocated types are expected to visit ``Py_TYPE(self)`` in " "``tp_traverse``. In earlier versions of Python, due to `bug 40217 `_, doing this may lead to crashes in subclasses." msgstr "" -#: c-api/typeobj.rst:1363 +#: c-api/typeobj.rst:1427 msgid "" "This field is inherited by subtypes together with :c:member:`~PyTypeObject." "tp_clear` and the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit: the flag bit, :c:" @@ -2071,14 +2152,14 @@ msgid "" "are all inherited from the base type if they are all zero in the subtype." msgstr "" -#: c-api/typeobj.rst:1371 +#: c-api/typeobj.rst:1435 msgid "" "An optional pointer to a clear function for the garbage collector. This is " "only used if the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit is set. The " "signature is::" msgstr "" -#: c-api/typeobj.rst:1376 +#: c-api/typeobj.rst:1440 msgid "" "The :c:member:`~PyTypeObject.tp_clear` member function is used to break " "reference cycles in cyclic garbage detected by the garbage collector. Taken " @@ -2093,7 +2174,7 @@ msgid "" "good reason to avoid implementing :c:member:`~PyTypeObject.tp_clear`." msgstr "" -#: c-api/typeobj.rst:1386 +#: c-api/typeobj.rst:1450 msgid "" "Implementations of :c:member:`~PyTypeObject.tp_clear` should drop the " "instance's references to those of its members that may be Python objects, " @@ -2101,7 +2182,7 @@ msgid "" "example::" msgstr "" -#: c-api/typeobj.rst:1400 +#: c-api/typeobj.rst:1464 msgid "" "The :c:func:`Py_CLEAR` macro should be used, because clearing references is " "delicate: the reference to the contained object must not be released (via :" @@ -2116,7 +2197,7 @@ msgid "" "performs the operations in a safe order." msgstr "" -#: c-api/typeobj.rst:1412 +#: c-api/typeobj.rst:1476 msgid "" "Note that :c:member:`~PyTypeObject.tp_clear` is not *always* called before " "an instance is deallocated. For example, when reference counting is enough " @@ -2124,7 +2205,7 @@ msgid "" "is not involved and :c:member:`~PyTypeObject.tp_dealloc` is called directly." msgstr "" -#: c-api/typeobj.rst:1418 +#: c-api/typeobj.rst:1482 msgid "" "Because the goal of :c:member:`~PyTypeObject.tp_clear` functions is to break " "reference cycles, it's not necessary to clear contained objects like Python " @@ -2134,7 +2215,7 @@ msgid "" "invoke :c:member:`~PyTypeObject.tp_clear`." msgstr "" -#: c-api/typeobj.rst:1431 +#: c-api/typeobj.rst:1495 msgid "" "This field is inherited by subtypes together with :c:member:`~PyTypeObject." "tp_traverse` and the :c:macro:`Py_TPFLAGS_HAVE_GC` flag bit: the flag bit, :" @@ -2142,18 +2223,18 @@ msgid "" "are all inherited from the base type if they are all zero in the subtype." msgstr "" -#: c-api/typeobj.rst:1439 +#: c-api/typeobj.rst:1503 msgid "" "An optional pointer to the rich comparison function, whose signature is::" msgstr "" -#: c-api/typeobj.rst:1443 +#: c-api/typeobj.rst:1507 msgid "" "The first parameter is guaranteed to be an instance of the type that is " "defined by :c:type:`PyTypeObject`." msgstr "" -#: c-api/typeobj.rst:1446 +#: c-api/typeobj.rst:1510 msgid "" "The function should return the result of the comparison (usually ``Py_True`` " "or ``Py_False``). If the comparison is undefined, it must return " @@ -2161,50 +2242,50 @@ msgid "" "set an exception condition." msgstr "" -#: c-api/typeobj.rst:1451 +#: c-api/typeobj.rst:1515 msgid "" "The following constants are defined to be used as the third argument for :c:" "member:`~PyTypeObject.tp_richcompare` and for :c:func:`PyObject_RichCompare`:" msgstr "" -#: c-api/typeobj.rst:1457 +#: c-api/typeobj.rst:1521 msgid "Constant" msgstr "" -#: c-api/typeobj.rst:1457 +#: c-api/typeobj.rst:1521 msgid "Comparison" msgstr "" -#: c-api/typeobj.rst:1459 +#: c-api/typeobj.rst:1523 msgid "``<``" msgstr "" -#: c-api/typeobj.rst:1461 +#: c-api/typeobj.rst:1525 msgid "``<=``" msgstr "" -#: c-api/typeobj.rst:1463 +#: c-api/typeobj.rst:1527 msgid "``==``" msgstr "" -#: c-api/typeobj.rst:1465 +#: c-api/typeobj.rst:1529 msgid "``!=``" msgstr "" -#: c-api/typeobj.rst:1467 +#: c-api/typeobj.rst:1531 msgid "``>``" msgstr "" -#: c-api/typeobj.rst:1469 +#: c-api/typeobj.rst:1533 msgid "``>=``" msgstr "" -#: c-api/typeobj.rst:1472 +#: c-api/typeobj.rst:1536 msgid "" "The following macro is defined to ease writing rich comparison functions:" msgstr "" -#: c-api/typeobj.rst:1476 +#: c-api/typeobj.rst:1540 msgid "" "Return ``Py_True`` or ``Py_False`` from the function, depending on the " "result of a comparison. VAL_A and VAL_B must be orderable by C comparison " @@ -2212,15 +2293,15 @@ msgid "" "specifies the requested operation, as for :c:func:`PyObject_RichCompare`." msgstr "" -#: c-api/typeobj.rst:1482 +#: c-api/typeobj.rst:1546 msgid "The returned value is a new :term:`strong reference`." msgstr "" -#: c-api/typeobj.rst:1484 +#: c-api/typeobj.rst:1548 msgid "On error, sets an exception and returns ``NULL`` from the function." msgstr "" -#: c-api/typeobj.rst:1492 +#: c-api/typeobj.rst:1556 msgid "" "This field is inherited by subtypes together with :c:member:`~PyTypeObject." "tp_hash`: a subtype inherits :c:member:`~PyTypeObject.tp_richcompare` and :c:" @@ -2228,7 +2309,7 @@ msgid "" "tp_richcompare` and :c:member:`~PyTypeObject.tp_hash` are both ``NULL``." msgstr "" -#: c-api/typeobj.rst:1499 +#: c-api/typeobj.rst:1563 msgid "" ":c:data:`PyBaseObject_Type` provides a :c:member:`~PyTypeObject." "tp_richcompare` implementation, which may be inherited. However, if only :c:" @@ -2237,7 +2318,13 @@ msgid "" "comparisons." msgstr "" -#: c-api/typeobj.rst:1508 +#: c-api/typeobj.rst:1572 +msgid "" +"While this field is still supported, :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` " +"should be used instead, if at all possible." +msgstr "" + +#: c-api/typeobj.rst:1575 msgid "" "If the instances of this type are weakly referenceable, this field is " "greater than zero and contains the offset in the instance structure of the " @@ -2247,13 +2334,19 @@ msgid "" "`PyObject*` which is initialized to ``NULL``." msgstr "" -#: c-api/typeobj.rst:1515 +#: c-api/typeobj.rst:1582 msgid "" "Do not confuse this field with :c:member:`~PyTypeObject.tp_weaklist`; that " "is the list head for weak references to the type object itself." msgstr "" -#: c-api/typeobj.rst:1520 +#: c-api/typeobj.rst:1585 +msgid "" +"It is an error to set both the :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` bit " +"and :c:member:`~PyTypeObject.tp_weaklist`." +msgstr "" + +#: c-api/typeobj.rst:1590 msgid "" "This field is inherited by subtypes, but see the rules listed below. A " "subtype may override this offset; this means that the subtype uses a " @@ -2262,48 +2355,32 @@ msgid "" "not be a problem." msgstr "" -#: c-api/typeobj.rst:1525 +#: c-api/typeobj.rst:1597 msgid "" -"When a type defined by a class statement has no :attr:`~object.__slots__` " -"declaration, and none of its base types are weakly referenceable, the type " -"is made weakly referenceable by adding a weak reference list head slot to " -"the instance layout and setting the :c:member:`~PyTypeObject." -"tp_weaklistoffset` of that slot's offset." +"If the :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` bit is set in the :c:member:" +"`~PyTypeObject.tp_dict` field, then :c:member:`~PyTypeObject." +"tp_weaklistoffset` will be set to a negative value, to indicate that it is " +"unsafe to use this field." msgstr "" -#: c-api/typeobj.rst:1530 -msgid "" -"When a type's :attr:`__slots__` declaration contains a slot named :attr:" -"`__weakref__`, that slot becomes the weak reference list head for instances " -"of the type, and the slot's offset is stored in the type's :c:member:" -"`~PyTypeObject.tp_weaklistoffset`." -msgstr "" - -#: c-api/typeobj.rst:1535 -msgid "" -"When a type's :attr:`__slots__` declaration does not contain a slot named :" -"attr:`__weakref__`, the type inherits its :c:member:`~PyTypeObject." -"tp_weaklistoffset` from its base type." -msgstr "" - -#: c-api/typeobj.rst:1542 +#: c-api/typeobj.rst:1605 msgid "" "An optional pointer to a function that returns an :term:`iterator` for the " "object. Its presence normally signals that the instances of this type are :" "term:`iterable` (although sequences may be iterable without this function)." msgstr "" -#: c-api/typeobj.rst:1546 +#: c-api/typeobj.rst:1609 msgid "This function has the same signature as :c:func:`PyObject_GetIter`::" msgstr "" -#: c-api/typeobj.rst:1557 +#: c-api/typeobj.rst:1620 msgid "" "An optional pointer to a function that returns the next item in an :term:" "`iterator`. The signature is::" msgstr "" -#: c-api/typeobj.rst:1562 +#: c-api/typeobj.rst:1625 msgid "" "When the iterator is exhausted, it must return ``NULL``; a :exc:" "`StopIteration` exception may or may not be set. When another error occurs, " @@ -2311,74 +2388,74 @@ msgid "" "this type are iterators." msgstr "" -#: c-api/typeobj.rst:1567 +#: c-api/typeobj.rst:1630 msgid "" "Iterator types should also define the :c:member:`~PyTypeObject.tp_iter` " "function, and that function should return the iterator instance itself (not " "a new iterator instance)." msgstr "" -#: c-api/typeobj.rst:1571 +#: c-api/typeobj.rst:1634 msgid "This function has the same signature as :c:func:`PyIter_Next`." msgstr "" -#: c-api/typeobj.rst:1580 +#: c-api/typeobj.rst:1643 msgid "" "An optional pointer to a static ``NULL``-terminated array of :c:type:" "`PyMethodDef` structures, declaring regular methods of this type." msgstr "" -#: c-api/typeobj.rst:1583 +#: c-api/typeobj.rst:1646 msgid "" "For each entry in the array, an entry is added to the type's dictionary " "(see :c:member:`~PyTypeObject.tp_dict` below) containing a method descriptor." msgstr "" -#: c-api/typeobj.rst:1588 +#: c-api/typeobj.rst:1651 msgid "" "This field is not inherited by subtypes (methods are inherited through a " "different mechanism)." msgstr "" -#: c-api/typeobj.rst:1594 +#: c-api/typeobj.rst:1657 msgid "" "An optional pointer to a static ``NULL``-terminated array of :c:type:" "`PyMemberDef` structures, declaring regular data members (fields or slots) " "of instances of this type." msgstr "" -#: c-api/typeobj.rst:1598 +#: c-api/typeobj.rst:1661 msgid "" "For each entry in the array, an entry is added to the type's dictionary " "(see :c:member:`~PyTypeObject.tp_dict` below) containing a member descriptor." msgstr "" -#: c-api/typeobj.rst:1603 +#: c-api/typeobj.rst:1666 msgid "" "This field is not inherited by subtypes (members are inherited through a " "different mechanism)." msgstr "" -#: c-api/typeobj.rst:1609 +#: c-api/typeobj.rst:1672 msgid "" "An optional pointer to a static ``NULL``-terminated array of :c:type:" "`PyGetSetDef` structures, declaring computed attributes of instances of this " "type." msgstr "" -#: c-api/typeobj.rst:1612 +#: c-api/typeobj.rst:1675 msgid "" "For each entry in the array, an entry is added to the type's dictionary " "(see :c:member:`~PyTypeObject.tp_dict` below) containing a getset descriptor." msgstr "" -#: c-api/typeobj.rst:1617 +#: c-api/typeobj.rst:1680 msgid "" "This field is not inherited by subtypes (computed attributes are inherited " "through a different mechanism)." msgstr "" -#: c-api/typeobj.rst:1623 +#: c-api/typeobj.rst:1686 msgid "" "An optional pointer to a base type from which type properties are " "inherited. At this level, only single inheritance is supported; multiple " @@ -2386,7 +2463,7 @@ msgid "" "metatype." msgstr "" -#: c-api/typeobj.rst:1631 +#: c-api/typeobj.rst:1694 msgid "" "Slot initialization is subject to the rules of initializing globals. C99 " "requires the initializers to be \"address constants\". Function designators " @@ -2394,7 +2471,7 @@ msgid "" "valid C99 address constants." msgstr "" -#: c-api/typeobj.rst:1636 +#: c-api/typeobj.rst:1699 msgid "" "However, the unary '&' operator applied to a non-static variable like :c:" "data:`PyBaseObject_Type` is not required to produce an address constant. " @@ -2402,73 +2479,93 @@ msgid "" "strictly standard conforming in this particular behavior." msgstr "" -#: c-api/typeobj.rst:1642 +#: c-api/typeobj.rst:1705 msgid "" "Consequently, :c:member:`~PyTypeObject.tp_base` should be set in the " "extension module's init function." msgstr "" -#: c-api/typeobj.rst:1647 +#: c-api/typeobj.rst:1710 msgid "This field is not inherited by subtypes (obviously)." msgstr "" -#: c-api/typeobj.rst:1651 +#: c-api/typeobj.rst:1714 msgid "" "This field defaults to ``&PyBaseObject_Type`` (which to Python programmers " "is known as the type :class:`object`)." msgstr "" -#: c-api/typeobj.rst:1657 +#: c-api/typeobj.rst:1720 msgid "The type's dictionary is stored here by :c:func:`PyType_Ready`." msgstr "" -#: c-api/typeobj.rst:1659 +#: c-api/typeobj.rst:1722 msgid "" "This field should normally be initialized to ``NULL`` before PyType_Ready is " "called; it may also be initialized to a dictionary containing initial " "attributes for the type. Once :c:func:`PyType_Ready` has initialized the " "type, extra attributes for the type may be added to this dictionary only if " "they don't correspond to overloaded operations (like :meth:`~object." -"__add__`)." +"__add__`). Once initialization for the type has finished, this field should " +"be treated as read-only." +msgstr "" + +#: c-api/typeobj.rst:1730 +msgid "" +"Some types may not store their dictionary in this slot. Use :c:func:" +"`PyType_GetDict` to retrieve the dictionary for an arbitrary type." msgstr "" -#: c-api/typeobj.rst:1667 +#: c-api/typeobj.rst:1736 +msgid "" +"Internals detail: For static builtin types, this is always ``NULL``. " +"Instead, the dict for such types is stored on ``PyInterpreterState``. Use :c:" +"func:`PyType_GetDict` to get the dict for an arbitrary type." +msgstr "" + +#: c-api/typeobj.rst:1742 msgid "" "This field is not inherited by subtypes (though the attributes defined in " "here are inherited through a different mechanism)." msgstr "" -#: c-api/typeobj.rst:1672 +#: c-api/typeobj.rst:1747 msgid "" "If this field is ``NULL``, :c:func:`PyType_Ready` will assign a new " "dictionary to it." msgstr "" -#: c-api/typeobj.rst:1677 +#: c-api/typeobj.rst:1752 msgid "" "It is not safe to use :c:func:`PyDict_SetItem` on or otherwise modify :c:" "member:`~PyTypeObject.tp_dict` with the dictionary C-API." msgstr "" -#: c-api/typeobj.rst:1683 +#: c-api/typeobj.rst:1758 msgid "An optional pointer to a \"descriptor get\" function." msgstr "" -#: c-api/typeobj.rst:1701 c-api/typeobj.rst:1806 c-api/typeobj.rst:1830 +#: c-api/typeobj.rst:1776 c-api/typeobj.rst:1870 c-api/typeobj.rst:1894 msgid "The function signature is::" msgstr "" -#: c-api/typeobj.rst:1698 +#: c-api/typeobj.rst:1773 msgid "" "An optional pointer to a function for setting and deleting a descriptor's " "value." msgstr "" -#: c-api/typeobj.rst:1705 +#: c-api/typeobj.rst:1780 msgid "The *value* argument is set to ``NULL`` to delete the value." msgstr "" -#: c-api/typeobj.rst:1716 +#: c-api/typeobj.rst:1791 +msgid "" +"While this field is still supported, :c:macro:`Py_TPFLAGS_MANAGED_DICT` " +"should be used instead, if at all possible." +msgstr "" + +#: c-api/typeobj.rst:1794 msgid "" "If the instances of this type have a dictionary containing instance " "variables, this field is non-zero and contains the offset in the instances " @@ -2476,29 +2573,19 @@ msgid "" "func:`PyObject_GenericGetAttr`." msgstr "" -#: c-api/typeobj.rst:1721 +#: c-api/typeobj.rst:1799 msgid "" "Do not confuse this field with :c:member:`~PyTypeObject.tp_dict`; that is " "the dictionary for attributes of the type object itself." msgstr "" -#: c-api/typeobj.rst:1724 +#: c-api/typeobj.rst:1802 msgid "" -"If the value of this field is greater than zero, it specifies the offset " -"from the start of the instance structure. If the value is less than zero, " -"it specifies the offset from the *end* of the instance structure. A " -"negative offset is more expensive to use, and should only be used when the " -"instance structure contains a variable-length part. This is used for " -"example to add an instance variable dictionary to subtypes of :class:`str` " -"or :class:`tuple`. Note that the :c:member:`~PyTypeObject.tp_basicsize` " -"field should account for the dictionary added to the end in that case, even " -"though the dictionary is not included in the basic object layout. On a " -"system with a pointer size of 4 bytes, :c:member:`~PyTypeObject." -"tp_dictoffset` should be set to ``-4`` to indicate that the dictionary is at " -"the very end of the structure." +"The value specifies the offset of the dictionary from the start of the " +"instance structure." msgstr "" -#: c-api/typeobj.rst:1736 +#: c-api/typeobj.rst:1804 msgid "" "The :c:member:`~PyTypeObject.tp_dictoffset` should be regarded as write-" "only. To get the pointer to the dictionary call :c:func:" @@ -2507,50 +2594,39 @@ msgid "" "to call :c:func:`PyObject_GetAttr` when accessing an attribute on the object." msgstr "" -#: c-api/typeobj.rst:1744 +#: c-api/typeobj.rst:1810 msgid "" -"This field is inherited by subtypes, but see the rules listed below. A " -"subtype may override this offset; this means that the subtype instances " -"store the dictionary at a difference offset than the base type. Since the " -"dictionary is always found via :c:member:`~PyTypeObject.tp_dictoffset`, this " -"should not be a problem." +"It is an error to set both the :c:macro:`Py_TPFLAGS_MANAGED_WEAKREF` bit " +"and :c:member:`~PyTypeObject.tp_dictoffset`." msgstr "" -#: c-api/typeobj.rst:1749 +#: c-api/typeobj.rst:1815 msgid "" -"When a type defined by a class statement has no :attr:`~object.__slots__` " -"declaration, and none of its base types has an instance variable dictionary, " -"a dictionary slot is added to the instance layout and the :c:member:" -"`~PyTypeObject.tp_dictoffset` is set to that slot's offset." +"This field is inherited by subtypes. A subtype should not override this " +"offset; doing so could be unsafe, if C code tries to access the dictionary " +"at the previous offset. To properly support inheritance, use :c:macro:" +"`Py_TPFLAGS_MANAGED_DICT`." msgstr "" -#: c-api/typeobj.rst:1754 -msgid "" -"When a type defined by a class statement has a :attr:`__slots__` " -"declaration, the type inherits its :c:member:`~PyTypeObject.tp_dictoffset` " -"from its base type." -msgstr "" - -#: c-api/typeobj.rst:1757 -msgid "" -"(Adding a slot named :attr:`~object.__dict__` to the :attr:`__slots__` " -"declaration does not have the expected effect, it just causes confusion. " -"Maybe this should be added as a feature just like :attr:`__weakref__` " -"though.)" -msgstr "" - -#: c-api/typeobj.rst:1763 +#: c-api/typeobj.rst:1822 msgid "" "This slot has no default. For :ref:`static types `, if the " "field is ``NULL`` then no :attr:`~object.__dict__` gets created for " "instances." msgstr "" -#: c-api/typeobj.rst:1769 +#: c-api/typeobj.rst:1825 +msgid "" +"If the :c:macro:`Py_TPFLAGS_MANAGED_DICT` bit is set in the :c:member:" +"`~PyTypeObject.tp_dict` field, then :c:member:`~PyTypeObject.tp_dictoffset` " +"will be set to ``-1``, to indicate that it is unsafe to use this field." +msgstr "" + +#: c-api/typeobj.rst:1833 msgid "An optional pointer to an instance initialization function." msgstr "" -#: c-api/typeobj.rst:1771 +#: c-api/typeobj.rst:1835 msgid "" "This function corresponds to the :meth:`~object.__init__` method of " "classes. Like :meth:`!__init__`, it is possible to create an instance " @@ -2558,14 +2634,14 @@ msgid "" "instance by calling its :meth:`!__init__` method again." msgstr "" -#: c-api/typeobj.rst:1780 +#: c-api/typeobj.rst:1844 msgid "" "The self argument is the instance to be initialized; the *args* and *kwds* " "arguments represent positional and keyword arguments of the call to :meth:" "`~object.__init__`." msgstr "" -#: c-api/typeobj.rst:1784 +#: c-api/typeobj.rst:1848 msgid "" "The :c:member:`~PyTypeObject.tp_init` function, if not ``NULL``, is called " "when an instance is created normally by calling its type, after the type's :" @@ -2577,43 +2653,43 @@ msgid "" "subtype's :c:member:`~PyTypeObject.tp_init` is called." msgstr "" -#: c-api/typeobj.rst:1791 +#: c-api/typeobj.rst:1855 msgid "Returns ``0`` on success, ``-1`` and sets an exception on error." msgstr "" -#: c-api/typeobj.rst:1799 +#: c-api/typeobj.rst:1863 msgid "" "For :ref:`static types ` this field does not have a default." msgstr "" -#: c-api/typeobj.rst:1804 +#: c-api/typeobj.rst:1868 msgid "An optional pointer to an instance allocation function." msgstr "" -#: c-api/typeobj.rst:1812 +#: c-api/typeobj.rst:1876 msgid "" "This field is inherited by static subtypes, but not by dynamic subtypes " "(subtypes created by a class statement)." msgstr "" -#: c-api/typeobj.rst:1817 +#: c-api/typeobj.rst:1881 msgid "" "For dynamic subtypes, this field is always set to :c:func:" "`PyType_GenericAlloc`, to force a standard heap allocation strategy." msgstr "" -#: c-api/typeobj.rst:1821 +#: c-api/typeobj.rst:1885 msgid "" "For static subtypes, :c:data:`PyBaseObject_Type` uses :c:func:" "`PyType_GenericAlloc`. That is the recommended value for all statically " "defined types." msgstr "" -#: c-api/typeobj.rst:1828 +#: c-api/typeobj.rst:1892 msgid "An optional pointer to an instance creation function." msgstr "" -#: c-api/typeobj.rst:1834 +#: c-api/typeobj.rst:1898 msgid "" "The *subtype* argument is the type of the object being created; the *args* " "and *kwds* arguments represent positional and keyword arguments of the call " @@ -2622,7 +2698,7 @@ msgid "" "that type (but not an unrelated type)." msgstr "" -#: c-api/typeobj.rst:1840 +#: c-api/typeobj.rst:1904 msgid "" "The :c:member:`~PyTypeObject.tp_new` function should call ``subtype-" ">tp_alloc(subtype, nitems)`` to allocate space for the object, and then do " @@ -2634,20 +2710,20 @@ msgid "" "be deferred to :c:member:`~PyTypeObject.tp_init`." msgstr "" -#: c-api/typeobj.rst:1848 +#: c-api/typeobj.rst:1912 msgid "" "Set the :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag to disallow " "creating instances of the type in Python." msgstr "" -#: c-api/typeobj.rst:1853 +#: c-api/typeobj.rst:1917 msgid "" "This field is inherited by subtypes, except it is not inherited by :ref:" "`static types ` whose :c:member:`~PyTypeObject.tp_base` is " "``NULL`` or ``&PyBaseObject_Type``." msgstr "" -#: c-api/typeobj.rst:1859 +#: c-api/typeobj.rst:1923 msgid "" "For :ref:`static types ` this field has no default. This means " "if the slot is defined as ``NULL``, the type cannot be called to create new " @@ -2655,40 +2731,40 @@ msgid "" "factory function." msgstr "" -#: c-api/typeobj.rst:1867 +#: c-api/typeobj.rst:1931 msgid "" "An optional pointer to an instance deallocation function. Its signature is::" msgstr "" -#: c-api/typeobj.rst:1871 +#: c-api/typeobj.rst:1935 msgid "" "An initializer that is compatible with this signature is :c:func:" "`PyObject_Free`." msgstr "" -#: c-api/typeobj.rst:1875 +#: c-api/typeobj.rst:1939 msgid "" "This field is inherited by static subtypes, but not by dynamic subtypes " "(subtypes created by a class statement)" msgstr "" -#: c-api/typeobj.rst:1880 +#: c-api/typeobj.rst:1944 msgid "" "In dynamic subtypes, this field is set to a deallocator suitable to match :c:" "func:`PyType_GenericAlloc` and the value of the :c:macro:" "`Py_TPFLAGS_HAVE_GC` flag bit." msgstr "" -#: c-api/typeobj.rst:1884 +#: c-api/typeobj.rst:1948 msgid "" "For static subtypes, :c:data:`PyBaseObject_Type` uses :c:func:`PyObject_Del`." msgstr "" -#: c-api/typeobj.rst:1889 +#: c-api/typeobj.rst:1953 msgid "An optional pointer to a function called by the garbage collector." msgstr "" -#: c-api/typeobj.rst:1891 +#: c-api/typeobj.rst:1955 msgid "" "The garbage collector needs to know whether a particular object is " "collectible or not. Normally, it is sufficient to look at the object's " @@ -2700,88 +2776,109 @@ msgid "" "instance. The signature is::" msgstr "" -#: c-api/typeobj.rst:1901 +#: c-api/typeobj.rst:1965 msgid "" "(The only example of this are types themselves. The metatype, :c:data:" "`PyType_Type`, defines this function to distinguish between statically and :" "ref:`dynamically allocated types `.)" msgstr "" -#: c-api/typeobj.rst:1911 +#: c-api/typeobj.rst:1975 msgid "" "This slot has no default. If this field is ``NULL``, :c:macro:" "`Py_TPFLAGS_HAVE_GC` is used as the functional equivalent." msgstr "" -#: c-api/typeobj.rst:1917 +#: c-api/typeobj.rst:1981 msgid "Tuple of base types." msgstr "" -#: c-api/typeobj.rst:1943 +#: c-api/typeobj.rst:2007 msgid "" "This field should be set to ``NULL`` and treated as read-only. Python will " "fill it in when the type is :c:func:`initialized `." msgstr "" -#: c-api/typeobj.rst:1922 +#: c-api/typeobj.rst:1986 msgid "" "For dynamically created classes, the ``Py_tp_bases`` :c:type:`slot " "` can be used instead of the *bases* argument of :c:func:" "`PyType_FromSpecWithBases`. The argument form is preferred." msgstr "" -#: c-api/typeobj.rst:1929 +#: c-api/typeobj.rst:1993 msgid "" "Multiple inheritance does not work well for statically defined types. If you " "set ``tp_bases`` to a tuple, Python will not raise an error, but some slots " "will only be inherited from the first base." msgstr "" -#: c-api/typeobj.rst:1958 c-api/typeobj.rst:1977 c-api/typeobj.rst:1991 +#: c-api/typeobj.rst:2022 c-api/typeobj.rst:2056 c-api/typeobj.rst:2070 msgid "This field is not inherited." msgstr "" -#: c-api/typeobj.rst:1940 +#: c-api/typeobj.rst:2004 msgid "" "Tuple containing the expanded set of base types, starting with the type " "itself and ending with :class:`object`, in Method Resolution Order." msgstr "" -#: c-api/typeobj.rst:1948 +#: c-api/typeobj.rst:2012 msgid "" "This field is not inherited; it is calculated fresh by :c:func:" "`PyType_Ready`." msgstr "" -#: c-api/typeobj.rst:1954 +#: c-api/typeobj.rst:2018 msgid "Unused. Internal use only." msgstr "" -#: c-api/typeobj.rst:1963 -msgid "List of weak references to subclasses. Internal use only." +#: c-api/typeobj.rst:2027 +msgid "" +"A collection of subclasses. Internal use only. May be an invalid pointer." msgstr "" -#: c-api/typeobj.rst:1972 +#: c-api/typeobj.rst:2029 +msgid "" +"To get a list of subclasses, call the Python method :py:meth:`~class." +"__subclasses__`." +msgstr "" + +#: c-api/typeobj.rst:2034 +msgid "" +"For some types, this field does not hold a valid :c:expr:`PyObject*`. The " +"type was changed to :c:expr:`void*` to indicate this." +msgstr "" + +#: c-api/typeobj.rst:2044 msgid "" "Weak reference list head, for weak references to this type object. Not " "inherited. Internal use only." msgstr "" -#: c-api/typeobj.rst:1982 +#: c-api/typeobj.rst:2049 +msgid "" +"Internals detail: For the static builtin types this is always ``NULL``, even " +"if weakrefs are added. Instead, the weakrefs for each are stored on " +"``PyInterpreterState``. Use the public C-API or the internal " +"``_PyObject_GET_WEAKREFS_LISTPTR()`` macro to avoid the distinction." +msgstr "" + +#: c-api/typeobj.rst:2061 msgid "" "This field is deprecated. Use :c:member:`~PyTypeObject.tp_finalize` instead." msgstr "" -#: c-api/typeobj.rst:1987 +#: c-api/typeobj.rst:2066 msgid "Used to index into the method cache. Internal use only." msgstr "" -#: c-api/typeobj.rst:1996 +#: c-api/typeobj.rst:2075 msgid "" "An optional pointer to an instance finalization function. Its signature is::" msgstr "" -#: c-api/typeobj.rst:2000 +#: c-api/typeobj.rst:2079 msgid "" "If :c:member:`~PyTypeObject.tp_finalize` is set, the interpreter calls it " "once when finalizing an instance. It is called either from the garbage " @@ -2791,14 +2888,14 @@ msgid "" "object in a sane state." msgstr "" -#: c-api/typeobj.rst:2007 +#: c-api/typeobj.rst:2086 msgid "" ":c:member:`~PyTypeObject.tp_finalize` should not mutate the current " "exception status; therefore, a recommended way to write a non-trivial " "finalizer is::" msgstr "" -#: c-api/typeobj.rst:2024 +#: c-api/typeobj.rst:2103 msgid "" "Also, note that, in a garbage collected Python, :c:member:`~PyTypeObject." "tp_dealloc` may be called from any Python thread, not just the thread which " @@ -2811,18 +2908,18 @@ msgid "" "which called tp_dealloc will not violate any assumptions of the library." msgstr "" -#: c-api/typeobj.rst:2043 +#: c-api/typeobj.rst:2122 msgid "" "Before version 3.8 it was necessary to set the :c:macro:" "`Py_TPFLAGS_HAVE_FINALIZE` flags bit in order for this field to be used. " "This is no longer required." msgstr "" -#: c-api/typeobj.rst:2047 +#: c-api/typeobj.rst:2126 msgid "\"Safe object finalization\" (:pep:`442`)" msgstr "" -#: c-api/typeobj.rst:2052 +#: c-api/typeobj.rst:2131 msgid "" "Vectorcall function to use for calls of this type object. In other words, it " "is used to implement :ref:`vectorcall ` for ``type.__call__``. " @@ -2830,61 +2927,65 @@ msgid "" "meth:`~object.__new__` and :meth:`~object.__init__` is used." msgstr "" -#: c-api/typeobj.rst:2060 +#: c-api/typeobj.rst:2139 msgid "This field is never inherited." msgstr "" -#: c-api/typeobj.rst:2062 +#: c-api/typeobj.rst:2141 msgid "(the field exists since 3.8 but it's only used since 3.9)" msgstr "" -#: c-api/typeobj.rst:2068 +#: c-api/typeobj.rst:2146 +msgid "Internal. Do not use." +msgstr "" + +#: c-api/typeobj.rst:2154 msgid "Static Types" msgstr "" -#: c-api/typeobj.rst:2070 +#: c-api/typeobj.rst:2156 msgid "" "Traditionally, types defined in C code are *static*, that is, a static :c:" "type:`PyTypeObject` structure is defined directly in code and initialized " "using :c:func:`PyType_Ready`." msgstr "" -#: c-api/typeobj.rst:2074 +#: c-api/typeobj.rst:2160 msgid "" "This results in types that are limited relative to types defined in Python:" msgstr "" -#: c-api/typeobj.rst:2076 +#: c-api/typeobj.rst:2162 msgid "" "Static types are limited to one base, i.e. they cannot use multiple " "inheritance." msgstr "" -#: c-api/typeobj.rst:2078 +#: c-api/typeobj.rst:2164 msgid "" "Static type objects (but not necessarily their instances) are immutable. It " "is not possible to add or modify the type object's attributes from Python." msgstr "" -#: c-api/typeobj.rst:2080 +#: c-api/typeobj.rst:2166 msgid "" "Static type objects are shared across :ref:`sub-interpreters `, so they should not include any subinterpreter-" "specific state." msgstr "" -#: c-api/typeobj.rst:2084 +#: c-api/typeobj.rst:2170 msgid "" "Also, since :c:type:`PyTypeObject` is only part of the :ref:`Limited API " -"` as an opaque struct, any extension modules using static types must " -"be compiled for a specific Python minor version." +"` as an opaque struct, any extension modules using static " +"types must be compiled for a specific Python minor version." msgstr "" -#: c-api/typeobj.rst:2092 +#: c-api/typeobj.rst:2178 msgid "Heap Types" msgstr "" -#: c-api/typeobj.rst:2094 +#: c-api/typeobj.rst:2180 msgid "" "An alternative to :ref:`static types ` is *heap-allocated " "types*, or *heap types* for short, which correspond closely to classes " @@ -2892,29 +2993,29 @@ msgid "" "`Py_TPFLAGS_HEAPTYPE` flag set." msgstr "" -#: c-api/typeobj.rst:2099 +#: c-api/typeobj.rst:2185 msgid "" "This is done by filling a :c:type:`PyType_Spec` structure and calling :c:" -"func:`PyType_FromSpec`, :c:func:`PyType_FromSpecWithBases`, or :c:func:" -"`PyType_FromModuleAndSpec`." +"func:`PyType_FromSpec`, :c:func:`PyType_FromSpecWithBases`, :c:func:" +"`PyType_FromModuleAndSpec`, or :c:func:`PyType_FromMetaclass`." msgstr "" -#: c-api/typeobj.rst:2107 +#: c-api/typeobj.rst:2193 msgid "Number Object Structures" msgstr "" -#: c-api/typeobj.rst:2114 +#: c-api/typeobj.rst:2200 msgid "" "This structure holds pointers to the functions which an object uses to " "implement the number protocol. Each function is used by the function of " "similar name documented in the :ref:`number` section." msgstr "" -#: c-api/typeobj.rst:2444 +#: c-api/typeobj.rst:2530 msgid "Here is the structure definition::" msgstr "" -#: c-api/typeobj.rst:2167 +#: c-api/typeobj.rst:2253 msgid "" "Binary and ternary functions must check the type of all their operands, and " "implement the necessary conversions (at least one of the operands is an " @@ -2924,31 +3025,31 @@ msgid "" "and set an exception." msgstr "" -#: c-api/typeobj.rst:2176 +#: c-api/typeobj.rst:2262 msgid "" "The :c:member:`~PyNumberMethods.nb_reserved` field should always be " "``NULL``. It was previously called :c:member:`!nb_long`, and was renamed in " "Python 3.0.1." msgstr "" -#: c-api/typeobj.rst:2221 +#: c-api/typeobj.rst:2307 msgid "Mapping Object Structures" msgstr "" -#: c-api/typeobj.rst:2228 +#: c-api/typeobj.rst:2314 msgid "" "This structure holds pointers to the functions which an object uses to " "implement the mapping protocol. It has three members:" msgstr "" -#: c-api/typeobj.rst:2233 +#: c-api/typeobj.rst:2319 msgid "" "This function is used by :c:func:`PyMapping_Size` and :c:func:" "`PyObject_Size`, and has the same signature. This slot may be set to " "``NULL`` if the object has no defined length." msgstr "" -#: c-api/typeobj.rst:2239 +#: c-api/typeobj.rst:2325 msgid "" "This function is used by :c:func:`PyObject_GetItem` and :c:func:" "`PySequence_GetSlice`, and has the same signature as :c:func:`!" @@ -2956,7 +3057,7 @@ msgid "" "`PyMapping_Check` function to return ``1``, it can be ``NULL`` otherwise." msgstr "" -#: c-api/typeobj.rst:2247 +#: c-api/typeobj.rst:2333 msgid "" "This function is used by :c:func:`PyObject_SetItem`, :c:func:" "`PyObject_DelItem`, :c:func:`PySequence_SetSlice` and :c:func:" @@ -2966,17 +3067,17 @@ msgid "" "deletion." msgstr "" -#: c-api/typeobj.rst:2258 +#: c-api/typeobj.rst:2344 msgid "Sequence Object Structures" msgstr "" -#: c-api/typeobj.rst:2265 +#: c-api/typeobj.rst:2351 msgid "" "This structure holds pointers to the functions which an object uses to " "implement the sequence protocol." msgstr "" -#: c-api/typeobj.rst:2270 +#: c-api/typeobj.rst:2356 msgid "" "This function is used by :c:func:`PySequence_Size` and :c:func:" "`PyObject_Size`, and has the same signature. It is also used for handling " @@ -2984,21 +3085,21 @@ msgid "" "member:`~PySequenceMethods.sq_ass_item` slots." msgstr "" -#: c-api/typeobj.rst:2277 +#: c-api/typeobj.rst:2363 msgid "" "This function is used by :c:func:`PySequence_Concat` and has the same " "signature. It is also used by the ``+`` operator, after trying the numeric " "addition via the :c:member:`~PyNumberMethods.nb_add` slot." msgstr "" -#: c-api/typeobj.rst:2283 +#: c-api/typeobj.rst:2369 msgid "" "This function is used by :c:func:`PySequence_Repeat` and has the same " "signature. It is also used by the ``*`` operator, after trying numeric " "multiplication via the :c:member:`~PyNumberMethods.nb_multiply` slot." msgstr "" -#: c-api/typeobj.rst:2289 +#: c-api/typeobj.rst:2375 msgid "" "This function is used by :c:func:`PySequence_GetItem` and has the same " "signature. It is also used by :c:func:`PyObject_GetItem`, after trying the " @@ -3007,7 +3108,7 @@ msgid "" "``1``, it can be ``NULL`` otherwise." msgstr "" -#: c-api/typeobj.rst:2295 +#: c-api/typeobj.rst:2381 msgid "" "Negative indexes are handled as follows: if the :c:member:" "`~PySequenceMethods.sq_length` slot is filled, it is called and the sequence " @@ -3016,7 +3117,7 @@ msgid "" "index is passed as is to the function." msgstr "" -#: c-api/typeobj.rst:2302 +#: c-api/typeobj.rst:2388 msgid "" "This function is used by :c:func:`PySequence_SetItem` and has the same " "signature. It is also used by :c:func:`PyObject_SetItem` and :c:func:" @@ -3025,14 +3126,14 @@ msgid "" "``NULL`` if the object does not support item assignment and deletion." msgstr "" -#: c-api/typeobj.rst:2311 +#: c-api/typeobj.rst:2397 msgid "" "This function may be used by :c:func:`PySequence_Contains` and has the same " "signature. This slot may be left to ``NULL``, in this case :c:func:`!" "PySequence_Contains` simply traverses the sequence until it finds a match." msgstr "" -#: c-api/typeobj.rst:2318 +#: c-api/typeobj.rst:2404 msgid "" "This function is used by :c:func:`PySequence_InPlaceConcat` and has the same " "signature. It should modify its first operand, and return it. This slot " @@ -3042,7 +3143,7 @@ msgid "" "c:member:`~PyNumberMethods.nb_inplace_add` slot." msgstr "" -#: c-api/typeobj.rst:2327 +#: c-api/typeobj.rst:2413 msgid "" "This function is used by :c:func:`PySequence_InPlaceRepeat` and has the same " "signature. It should modify its first operand, and return it. This slot " @@ -3052,70 +3153,70 @@ msgid "" "via the :c:member:`~PyNumberMethods.nb_inplace_multiply` slot." msgstr "" -#: c-api/typeobj.rst:2338 +#: c-api/typeobj.rst:2424 msgid "Buffer Object Structures" msgstr "" -#: c-api/typeobj.rst:2346 +#: c-api/typeobj.rst:2432 msgid "" "This structure holds pointers to the functions required by the :ref:`Buffer " "protocol `. The protocol defines how an exporter object can " "expose its internal data to consumer objects." msgstr "" -#: c-api/typeobj.rst:2401 c-api/typeobj.rst:2466 c-api/typeobj.rst:2488 +#: c-api/typeobj.rst:2487 c-api/typeobj.rst:2552 c-api/typeobj.rst:2574 msgid "The signature of this function is::" msgstr "" -#: c-api/typeobj.rst:2356 +#: c-api/typeobj.rst:2442 msgid "" "Handle a request to *exporter* to fill in *view* as specified by *flags*. " "Except for point (3), an implementation of this function MUST take these " "steps:" msgstr "" -#: c-api/typeobj.rst:2360 +#: c-api/typeobj.rst:2446 msgid "" "Check if the request can be met. If not, raise :exc:`BufferError`, set :c:" "expr:`view->obj` to ``NULL`` and return ``-1``." msgstr "" -#: c-api/typeobj.rst:2363 +#: c-api/typeobj.rst:2449 msgid "Fill in the requested fields." msgstr "" -#: c-api/typeobj.rst:2365 +#: c-api/typeobj.rst:2451 msgid "Increment an internal counter for the number of exports." msgstr "" -#: c-api/typeobj.rst:2367 +#: c-api/typeobj.rst:2453 msgid "" "Set :c:expr:`view->obj` to *exporter* and increment :c:expr:`view->obj`." msgstr "" -#: c-api/typeobj.rst:2369 +#: c-api/typeobj.rst:2455 msgid "Return ``0``." msgstr "" -#: c-api/typeobj.rst:2371 +#: c-api/typeobj.rst:2457 msgid "" "If *exporter* is part of a chain or tree of buffer providers, two main " "schemes can be used:" msgstr "" -#: c-api/typeobj.rst:2374 +#: c-api/typeobj.rst:2460 msgid "" "Re-export: Each member of the tree acts as the exporting object and sets :c:" "expr:`view->obj` to a new reference to itself." msgstr "" -#: c-api/typeobj.rst:2377 +#: c-api/typeobj.rst:2463 msgid "" "Redirect: The buffer request is redirected to the root object of the tree. " "Here, :c:expr:`view->obj` will be a new reference to the root object." msgstr "" -#: c-api/typeobj.rst:2381 +#: c-api/typeobj.rst:2467 msgid "" "The individual fields of *view* are described in section :ref:`Buffer " "structure `, the rules how an exporter must react to " @@ -3123,7 +3224,7 @@ msgid "" "types>`." msgstr "" -#: c-api/typeobj.rst:2386 +#: c-api/typeobj.rst:2472 msgid "" "All memory pointed to in the :c:type:`Py_buffer` structure belongs to the " "exporter and must remain valid until there are no consumers left. :c:member:" @@ -3132,19 +3233,19 @@ msgid "" "internal` are read-only for the consumer." msgstr "" -#: c-api/typeobj.rst:2393 +#: c-api/typeobj.rst:2479 msgid "" ":c:func:`PyBuffer_FillInfo` provides an easy way of exposing a simple bytes " "buffer while dealing correctly with all request types." msgstr "" -#: c-api/typeobj.rst:2396 +#: c-api/typeobj.rst:2482 msgid "" ":c:func:`PyObject_GetBuffer` is the interface for the consumer that wraps " "this function." msgstr "" -#: c-api/typeobj.rst:2405 +#: c-api/typeobj.rst:2491 msgid "" "Handle a request to release the resources of the buffer. If no resources " "need to be released, :c:member:`PyBufferProcs.bf_releasebuffer` may be " @@ -3152,15 +3253,15 @@ msgid "" "these optional steps:" msgstr "" -#: c-api/typeobj.rst:2410 +#: c-api/typeobj.rst:2496 msgid "Decrement an internal counter for the number of exports." msgstr "" -#: c-api/typeobj.rst:2412 +#: c-api/typeobj.rst:2498 msgid "If the counter is ``0``, free all memory associated with *view*." msgstr "" -#: c-api/typeobj.rst:2414 +#: c-api/typeobj.rst:2500 msgid "" "The exporter MUST use the :c:member:`~Py_buffer.internal` field to keep " "track of buffer-specific resources. This field is guaranteed to remain " @@ -3168,68 +3269,68 @@ msgid "" "*view* argument." msgstr "" -#: c-api/typeobj.rst:2420 +#: c-api/typeobj.rst:2506 msgid "" "This function MUST NOT decrement :c:expr:`view->obj`, since that is done " "automatically in :c:func:`PyBuffer_Release` (this scheme is useful for " "breaking reference cycles)." msgstr "" -#: c-api/typeobj.rst:2425 +#: c-api/typeobj.rst:2511 msgid "" ":c:func:`PyBuffer_Release` is the interface for the consumer that wraps this " "function." msgstr "" -#: c-api/typeobj.rst:2433 +#: c-api/typeobj.rst:2519 msgid "Async Object Structures" msgstr "" -#: c-api/typeobj.rst:2441 +#: c-api/typeobj.rst:2527 msgid "" "This structure holds pointers to the functions required to implement :term:" "`awaitable` and :term:`asynchronous iterator` objects." msgstr "" -#: c-api/typeobj.rst:2459 +#: c-api/typeobj.rst:2545 msgid "" "The returned object must be an :term:`iterator`, i.e. :c:func:`PyIter_Check` " "must return ``1`` for it." msgstr "" -#: c-api/typeobj.rst:2462 +#: c-api/typeobj.rst:2548 msgid "" "This slot may be set to ``NULL`` if an object is not an :term:`awaitable`." msgstr "" -#: c-api/typeobj.rst:2470 +#: c-api/typeobj.rst:2556 msgid "" "Must return an :term:`asynchronous iterator` object. See :meth:`~object." "__anext__` for details." msgstr "" -#: c-api/typeobj.rst:2473 +#: c-api/typeobj.rst:2559 msgid "" "This slot may be set to ``NULL`` if an object does not implement " "asynchronous iteration protocol." msgstr "" -#: c-api/typeobj.rst:2482 +#: c-api/typeobj.rst:2568 msgid "" "Must return an :term:`awaitable` object. See :meth:`~object.__anext__` for " "details. This slot may be set to ``NULL``." msgstr "" -#: c-api/typeobj.rst:2492 +#: c-api/typeobj.rst:2578 msgid "" "See :c:func:`PyIter_Send` for details. This slot may be set to ``NULL``." msgstr "" -#: c-api/typeobj.rst:2501 +#: c-api/typeobj.rst:2587 msgid "Slot Type typedefs" msgstr "" -#: c-api/typeobj.rst:2505 +#: c-api/typeobj.rst:2591 msgid "" "The purpose of this function is to separate memory allocation from memory " "initialization. It should return a pointer to a block of memory of adequate " @@ -3243,80 +3344,80 @@ msgid "" "length of the block should be :c:member:`~PyTypeObject.tp_basicsize`." msgstr "" -#: c-api/typeobj.rst:2515 +#: c-api/typeobj.rst:2601 msgid "" "This function should not do any other instance initialization, not even to " "allocate additional memory; that should be done by :c:member:`~PyTypeObject." "tp_new`." msgstr "" -#: c-api/typeobj.rst:2522 +#: c-api/typeobj.rst:2608 msgid "See :c:member:`~PyTypeObject.tp_free`." msgstr "" -#: c-api/typeobj.rst:2526 +#: c-api/typeobj.rst:2612 msgid "See :c:member:`~PyTypeObject.tp_new`." msgstr "" -#: c-api/typeobj.rst:2530 +#: c-api/typeobj.rst:2616 msgid "See :c:member:`~PyTypeObject.tp_init`." msgstr "" -#: c-api/typeobj.rst:2534 +#: c-api/typeobj.rst:2620 msgid "See :c:member:`~PyTypeObject.tp_repr`." msgstr "" -#: c-api/typeobj.rst:2547 +#: c-api/typeobj.rst:2633 msgid "Return the value of the named attribute for the object." msgstr "" -#: c-api/typeobj.rst:2553 +#: c-api/typeobj.rst:2639 msgid "" "Set the value of the named attribute for the object. The value argument is " "set to ``NULL`` to delete the attribute." msgstr "" -#: c-api/typeobj.rst:2549 +#: c-api/typeobj.rst:2635 msgid "See :c:member:`~PyTypeObject.tp_getattro`." msgstr "" -#: c-api/typeobj.rst:2556 +#: c-api/typeobj.rst:2642 msgid "See :c:member:`~PyTypeObject.tp_setattro`." msgstr "" -#: c-api/typeobj.rst:2560 +#: c-api/typeobj.rst:2646 msgid "See :c:member:`~PyTypeObject.tp_descr_get`." msgstr "" -#: c-api/typeobj.rst:2564 +#: c-api/typeobj.rst:2650 msgid "See :c:member:`~PyTypeObject.tp_descr_set`." msgstr "" -#: c-api/typeobj.rst:2568 +#: c-api/typeobj.rst:2654 msgid "See :c:member:`~PyTypeObject.tp_hash`." msgstr "" -#: c-api/typeobj.rst:2572 +#: c-api/typeobj.rst:2658 msgid "See :c:member:`~PyTypeObject.tp_richcompare`." msgstr "" -#: c-api/typeobj.rst:2576 +#: c-api/typeobj.rst:2662 msgid "See :c:member:`~PyTypeObject.tp_iter`." msgstr "" -#: c-api/typeobj.rst:2580 +#: c-api/typeobj.rst:2666 msgid "See :c:member:`~PyTypeObject.tp_iternext`." msgstr "" -#: c-api/typeobj.rst:2594 +#: c-api/typeobj.rst:2680 msgid "See :c:member:`~PyAsyncMethods.am_send`." msgstr "" -#: c-api/typeobj.rst:2610 +#: c-api/typeobj.rst:2696 msgid "Examples" msgstr "" -#: c-api/typeobj.rst:2612 +#: c-api/typeobj.rst:2698 msgid "" "The following are simple examples of Python type definitions. They include " "common usage you may encounter. Some demonstrate tricky corner cases. For " @@ -3324,46 +3425,46 @@ msgid "" "and :ref:`new-types-topics`." msgstr "" -#: c-api/typeobj.rst:2617 +#: c-api/typeobj.rst:2703 msgid "A basic :ref:`static type `::" msgstr "" -#: c-api/typeobj.rst:2634 +#: c-api/typeobj.rst:2720 msgid "" "You may also find older code (especially in the CPython code base) with a " "more verbose initializer::" msgstr "" -#: c-api/typeobj.rst:2678 +#: c-api/typeobj.rst:2764 msgid "A type that supports weakrefs, instance dicts, and hashing::" msgstr "" -#: c-api/typeobj.rst:2705 +#: c-api/typeobj.rst:2789 msgid "" "A str subclass that cannot be subclassed and cannot be called to create " "instances (e.g. uses a separate factory func) using :c:macro:" "`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag::" msgstr "" -#: c-api/typeobj.rst:2724 +#: c-api/typeobj.rst:2808 msgid "" "The simplest :ref:`static type ` with fixed-length instances::" msgstr "" -#: c-api/typeobj.rst:2735 +#: c-api/typeobj.rst:2819 msgid "" "The simplest :ref:`static type ` with variable-length " "instances::" msgstr "" -#: c-api/typeobj.rst:872 +#: c-api/typeobj.rst:874 msgid "built-in function" msgstr "" -#: c-api/typeobj.rst:807 +#: c-api/typeobj.rst:809 msgid "repr" msgstr "" -#: c-api/typeobj.rst:872 +#: c-api/typeobj.rst:874 msgid "hash" msgstr "" diff --git a/c-api/unicode.po b/c-api/unicode.po index 363a83211..d8c1d8883 100644 --- a/c-api/unicode.po +++ b/c-api/unicode.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -36,153 +36,120 @@ msgstr "" #: c-api/unicode.rst:20 msgid "" -":c:expr:`Py_UNICODE*` and UTF-8 representations are created on demand and " -"cached in the Unicode object. The :c:expr:`Py_UNICODE*` representation is " -"deprecated and inefficient." +"UTF-8 representation is created on demand and cached in the Unicode object." msgstr "" -#: c-api/unicode.rst:24 +#: c-api/unicode.rst:23 msgid "" -"Due to the transition between the old APIs and the new APIs, Unicode objects " -"can internally be in two states depending on how they were created:" +"The :c:type:`Py_UNICODE` representation has been removed since Python 3.12 " +"with deprecated APIs. See :pep:`623` for more information." msgstr "" -#: c-api/unicode.rst:27 -msgid "" -"\"canonical\" Unicode objects are all objects created by a non-deprecated " -"Unicode API. They use the most efficient representation allowed by the " -"implementation." -msgstr "" - -#: c-api/unicode.rst:31 -msgid "" -"\"legacy\" Unicode objects have been created through one of the deprecated " -"APIs (typically :c:func:`PyUnicode_FromUnicode`) and only bear the :c:expr:" -"`Py_UNICODE*` representation; you will have to call :c:func:" -"`PyUnicode_READY` on them before calling any other API." -msgstr "" - -#: c-api/unicode.rst:37 -msgid "" -"The \"legacy\" Unicode object will be removed in Python 3.12 with deprecated " -"APIs. All Unicode objects will be \"canonical\" since then. See :pep:`623` " -"for more information." -msgstr "" - -#: c-api/unicode.rst:43 +#: c-api/unicode.rst:29 msgid "Unicode Type" msgstr "" -#: c-api/unicode.rst:45 +#: c-api/unicode.rst:31 msgid "" "These are the basic Unicode object types used for the Unicode implementation " "in Python:" msgstr "" -#: c-api/unicode.rst:52 +#: c-api/unicode.rst:38 msgid "" "These types are typedefs for unsigned integer types wide enough to contain " "characters of 32 bits, 16 bits and 8 bits, respectively. When dealing with " "single Unicode characters, use :c:type:`Py_UCS4`." msgstr "" -#: c-api/unicode.rst:61 +#: c-api/unicode.rst:47 msgid "" "This is a typedef of :c:type:`wchar_t`, which is a 16-bit type or 32-bit " "type depending on the platform." msgstr "" -#: c-api/unicode.rst:64 +#: c-api/unicode.rst:50 msgid "" "In previous versions, this was a 16-bit type or a 32-bit type depending on " "whether you selected a \"narrow\" or \"wide\" Unicode version of Python at " "build time." msgstr "" -#: c-api/unicode.rst:74 +#: c-api/unicode.rst:60 msgid "" "These subtypes of :c:type:`PyObject` represent a Python Unicode object. In " "almost all cases, they shouldn't be used directly, since all API functions " "that deal with Unicode objects take and return :c:type:`PyObject` pointers." msgstr "" -#: c-api/unicode.rst:83 +#: c-api/unicode.rst:69 msgid "" "This instance of :c:type:`PyTypeObject` represents the Python Unicode type. " "It is exposed to Python code as ``str``." msgstr "" -#: c-api/unicode.rst:87 +#: c-api/unicode.rst:73 msgid "" "The following APIs are C macros and static inlined functions for fast checks " "and access to internal read-only data of Unicode objects:" msgstr "" -#: c-api/unicode.rst:92 +#: c-api/unicode.rst:78 msgid "" "Return true if the object *o* is a Unicode object or an instance of a " "Unicode subtype. This function always succeeds." msgstr "" -#: c-api/unicode.rst:98 +#: c-api/unicode.rst:84 msgid "" "Return true if the object *o* is a Unicode object, but not an instance of a " "subtype. This function always succeeds." msgstr "" -#: c-api/unicode.rst:104 -msgid "" -"Ensure the string object *o* is in the \"canonical\" representation. This " -"is required before using any of the access macros described below." -msgstr "" - -#: c-api/unicode.rst:109 -msgid "" -"Returns ``0`` on success and ``-1`` with an exception set on failure, which " -"in particular happens if memory allocation fails." +#: c-api/unicode.rst:90 +msgid "Returns ``0``. This API is kept only for backward compatibility." msgstr "" -#: c-api/unicode.rst:115 -msgid "This API will be removed with :c:func:`PyUnicode_FromUnicode`." +#: c-api/unicode.rst:94 +msgid "This API does nothing since Python 3.12." msgstr "" -#: c-api/unicode.rst:120 +#: c-api/unicode.rst:100 msgid "" "Return the length of the Unicode string, in code points. *o* has to be a " "Unicode object in the \"canonical\" representation (not checked)." msgstr "" -#: c-api/unicode.rst:130 +#: c-api/unicode.rst:110 msgid "" "Return a pointer to the canonical representation cast to UCS1, UCS2 or UCS4 " "integer types for direct character access. No checks are performed if the " "canonical representation has the correct character size; use :c:func:" -"`PyUnicode_KIND` to select the right macro. Make sure :c:func:" -"`PyUnicode_READY` has been called before accessing this." +"`PyUnicode_KIND` to select the right function." msgstr "" -#: c-api/unicode.rst:144 +#: c-api/unicode.rst:122 msgid "Return values of the :c:func:`PyUnicode_KIND` macro." msgstr "" -#: c-api/unicode.rst:149 -msgid "``PyUnicode_WCHAR_KIND`` is deprecated." +#: c-api/unicode.rst:126 +msgid "``PyUnicode_WCHAR_KIND`` has been removed." msgstr "" -#: c-api/unicode.rst:154 +#: c-api/unicode.rst:132 msgid "" "Return one of the PyUnicode kind constants (see above) that indicate how " "many bytes per character this Unicode object uses to store its data. *o* " "has to be a Unicode object in the \"canonical\" representation (not checked)." msgstr "" -#: c-api/unicode.rst:165 +#: c-api/unicode.rst:141 msgid "" "Return a void pointer to the raw Unicode buffer. *o* has to be a Unicode " "object in the \"canonical\" representation (not checked)." msgstr "" -#: c-api/unicode.rst:174 +#: c-api/unicode.rst:150 msgid "" "Write into a canonical representation *data* (as obtained with :c:func:" "`PyUnicode_DATA`). This function performs no sanity checks, and is intended " @@ -192,141 +159,97 @@ msgid "" "written to that location." msgstr "" -#: c-api/unicode.rst:187 +#: c-api/unicode.rst:163 msgid "" "Read a code point from a canonical representation *data* (as obtained with :" "c:func:`PyUnicode_DATA`). No checks or ready calls are performed." msgstr "" -#: c-api/unicode.rst:195 +#: c-api/unicode.rst:171 msgid "" "Read a character from a Unicode object *o*, which must be in the " "\"canonical\" representation. This is less efficient than :c:func:" "`PyUnicode_READ` if you do multiple consecutive reads." msgstr "" -#: c-api/unicode.rst:204 +#: c-api/unicode.rst:180 msgid "" "Return the maximum code point that is suitable for creating another string " "based on *o*, which must be in the \"canonical\" representation. This is " "always an approximation but more efficient than iterating over the string." msgstr "" -#: c-api/unicode.rst:213 -msgid "" -"Return the size of the deprecated :c:type:`Py_UNICODE` representation, in " -"code units (this includes surrogate pairs as 2 units). *o* has to be a " -"Unicode object (not checked)." -msgstr "" - -#: c-api/unicode.rst:229 c-api/unicode.rst:761 -msgid "" -"Part of the old-style Unicode API, please migrate to using :c:func:" -"`PyUnicode_GET_LENGTH`." -msgstr "" - -#: c-api/unicode.rst:224 -msgid "" -"Return the size of the deprecated :c:type:`Py_UNICODE` representation in " -"bytes. *o* has to be a Unicode object (not checked)." -msgstr "" - -#: c-api/unicode.rst:235 -msgid "" -"Return a pointer to a :c:type:`Py_UNICODE` representation of the object. " -"The returned buffer is always terminated with an extra null code point. It " -"may also contain embedded null code points, which would cause the string to " -"be truncated when used in most C functions. The ``AS_DATA`` form casts the " -"pointer to :c:expr:`const char *`. The *o* argument has to be a Unicode " -"object (not checked)." -msgstr "" - -#: c-api/unicode.rst:242 -msgid "" -"This function is now inefficient -- because in many cases the :c:type:" -"`Py_UNICODE` representation does not exist and needs to be created -- and " -"can fail (return ``NULL`` with an exception set). Try to port the code to " -"use the new :c:func:`PyUnicode_nBYTE_DATA` macros or use :c:func:" -"`PyUnicode_WRITE` or :c:func:`PyUnicode_READ`." -msgstr "" - -#: c-api/unicode.rst:251 -msgid "" -"Part of the old-style Unicode API, please migrate to using the :c:func:" -"`PyUnicode_nBYTE_DATA` family of macros." -msgstr "" - -#: c-api/unicode.rst:256 +#: c-api/unicode.rst:189 msgid "" "Return ``1`` if the string is a valid identifier according to the language " "definition, section :ref:`identifiers`. Return ``0`` otherwise." msgstr "" -#: c-api/unicode.rst:259 +#: c-api/unicode.rst:192 msgid "" "The function does not call :c:func:`Py_FatalError` anymore if the string is " "not ready." msgstr "" -#: c-api/unicode.rst:265 +#: c-api/unicode.rst:198 msgid "Unicode Character Properties" msgstr "" -#: c-api/unicode.rst:267 +#: c-api/unicode.rst:200 msgid "" "Unicode provides many different character properties. The most often needed " "ones are available through these macros which are mapped to C functions " "depending on the Python configuration." msgstr "" -#: c-api/unicode.rst:274 +#: c-api/unicode.rst:207 msgid "" "Return ``1`` or ``0`` depending on whether *ch* is a whitespace character." msgstr "" -#: c-api/unicode.rst:279 +#: c-api/unicode.rst:212 msgid "" "Return ``1`` or ``0`` depending on whether *ch* is a lowercase character." msgstr "" -#: c-api/unicode.rst:284 +#: c-api/unicode.rst:217 msgid "" "Return ``1`` or ``0`` depending on whether *ch* is an uppercase character." msgstr "" -#: c-api/unicode.rst:289 +#: c-api/unicode.rst:222 msgid "" "Return ``1`` or ``0`` depending on whether *ch* is a titlecase character." msgstr "" -#: c-api/unicode.rst:294 +#: c-api/unicode.rst:227 msgid "" "Return ``1`` or ``0`` depending on whether *ch* is a linebreak character." msgstr "" -#: c-api/unicode.rst:299 +#: c-api/unicode.rst:232 msgid "Return ``1`` or ``0`` depending on whether *ch* is a decimal character." msgstr "" -#: c-api/unicode.rst:304 +#: c-api/unicode.rst:237 msgid "Return ``1`` or ``0`` depending on whether *ch* is a digit character." msgstr "" -#: c-api/unicode.rst:309 +#: c-api/unicode.rst:242 msgid "Return ``1`` or ``0`` depending on whether *ch* is a numeric character." msgstr "" -#: c-api/unicode.rst:314 +#: c-api/unicode.rst:247 msgid "" "Return ``1`` or ``0`` depending on whether *ch* is an alphabetic character." msgstr "" -#: c-api/unicode.rst:319 +#: c-api/unicode.rst:252 msgid "" "Return ``1`` or ``0`` depending on whether *ch* is an alphanumeric character." msgstr "" -#: c-api/unicode.rst:324 +#: c-api/unicode.rst:257 msgid "" "Return ``1`` or ``0`` depending on whether *ch* is a printable character. " "Nonprintable characters are those characters defined in the Unicode " @@ -337,91 +260,92 @@ msgid "" "to :data:`sys.stdout` or :data:`sys.stderr`.)" msgstr "" -#: c-api/unicode.rst:333 +#: c-api/unicode.rst:266 msgid "These APIs can be used for fast direct character conversions:" msgstr "" -#: c-api/unicode.rst:338 +#: c-api/unicode.rst:271 msgid "Return the character *ch* converted to lower case." msgstr "" -#: c-api/unicode.rst:348 c-api/unicode.rst:356 +#: c-api/unicode.rst:281 c-api/unicode.rst:289 msgid "This function uses simple case mappings." msgstr "" -#: c-api/unicode.rst:346 +#: c-api/unicode.rst:279 msgid "Return the character *ch* converted to upper case." msgstr "" -#: c-api/unicode.rst:354 +#: c-api/unicode.rst:287 msgid "Return the character *ch* converted to title case." msgstr "" -#: c-api/unicode.rst:362 +#: c-api/unicode.rst:295 msgid "" "Return the character *ch* converted to a decimal positive integer. Return " -"``-1`` if this is not possible. This macro does not raise exceptions." +"``-1`` if this is not possible. This function does not raise exceptions." msgstr "" -#: c-api/unicode.rst:368 +#: c-api/unicode.rst:301 msgid "" "Return the character *ch* converted to a single digit integer. Return ``-1`` " -"if this is not possible. This macro does not raise exceptions." +"if this is not possible. This function does not raise exceptions." msgstr "" -#: c-api/unicode.rst:374 +#: c-api/unicode.rst:307 msgid "" "Return the character *ch* converted to a double. Return ``-1.0`` if this is " -"not possible. This macro does not raise exceptions." +"not possible. This function does not raise exceptions." msgstr "" -#: c-api/unicode.rst:378 +#: c-api/unicode.rst:311 msgid "These APIs can be used to work with surrogates:" msgstr "" -#: c-api/unicode.rst:382 +#: c-api/unicode.rst:315 msgid "Check if *ch* is a surrogate (``0xD800 <= ch <= 0xDFFF``)." msgstr "" -#: c-api/unicode.rst:386 +#: c-api/unicode.rst:319 msgid "Check if *ch* is a high surrogate (``0xD800 <= ch <= 0xDBFF``)." msgstr "" -#: c-api/unicode.rst:390 +#: c-api/unicode.rst:323 msgid "Check if *ch* is a low surrogate (``0xDC00 <= ch <= 0xDFFF``)." msgstr "" -#: c-api/unicode.rst:394 +#: c-api/unicode.rst:327 msgid "" -"Join two surrogate characters and return a single Py_UCS4 value. *high* and " -"*low* are respectively the leading and trailing surrogates in a surrogate " -"pair." +"Join two surrogate characters and return a single :c:type:`Py_UCS4` value. " +"*high* and *low* are respectively the leading and trailing surrogates in a " +"surrogate pair. *high* must be in the range [0xD800; 0xDBFF] and *low* must " +"be in the range [0xDC00; 0xDFFF]." msgstr "" -#: c-api/unicode.rst:400 +#: c-api/unicode.rst:334 msgid "Creating and accessing Unicode strings" msgstr "" -#: c-api/unicode.rst:402 +#: c-api/unicode.rst:336 msgid "" "To create Unicode objects and access their basic sequence properties, use " "these APIs:" msgstr "" -#: c-api/unicode.rst:407 +#: c-api/unicode.rst:341 msgid "" "Create a new Unicode object. *maxchar* should be the true maximum code " "point to be placed in the string. As an approximation, it can be rounded up " "to the nearest value in the sequence 127, 255, 65535, 1114111." msgstr "" -#: c-api/unicode.rst:411 +#: c-api/unicode.rst:345 msgid "" "This is the recommended way to allocate a new Unicode object. Objects " "created using this function are not resizable." msgstr "" -#: c-api/unicode.rst:420 +#: c-api/unicode.rst:354 msgid "" "Create a new Unicode object with the given *kind* (possible values are :c:" "macro:`PyUnicode_1BYTE_KIND` etc., as returned by :c:func:" @@ -429,7 +353,7 @@ msgid "" "1, 2 or 4 bytes per character, as given by the kind." msgstr "" -#: c-api/unicode.rst:425 +#: c-api/unicode.rst:359 msgid "" "If necessary, the input *buffer* is copied and transformed into the " "canonical representation. For example, if the *buffer* is a UCS4 string (:c:" @@ -437,340 +361,407 @@ msgid "" "range, it will be transformed into UCS1 (:c:macro:`PyUnicode_1BYTE_KIND`)." msgstr "" -#: c-api/unicode.rst:436 +#: c-api/unicode.rst:370 msgid "" "Create a Unicode object from the char buffer *u*. The bytes will be " "interpreted as being UTF-8 encoded. The buffer is copied into the new " -"object. If the buffer is not ``NULL``, the return value might be a shared " -"object, i.e. modification of the data is not allowed." +"object. The return value might be a shared object, i.e. modification of the " +"data is not allowed." msgstr "" -#: c-api/unicode.rst:441 -msgid "" -"If *u* is ``NULL``, this function behaves like :c:func:" -"`PyUnicode_FromUnicode` with the buffer set to ``NULL``. This usage is " -"deprecated in favor of :c:func:`PyUnicode_New`, and will be removed in " -"Python 3.12." +#: c-api/unicode.rst:376 +msgid "This function raises :exc:`SystemError` when:" msgstr "" -#: c-api/unicode.rst:448 +#: c-api/unicode.rst:378 +msgid "*size* < 0," +msgstr "" + +#: c-api/unicode.rst:379 +msgid "*u* is ``NULL`` and *size* > 0" +msgstr "" + +#: c-api/unicode.rst:381 +msgid "*u* == ``NULL`` with *size* > 0 is not allowed anymore." +msgstr "" + +#: c-api/unicode.rst:387 msgid "" "Create a Unicode object from a UTF-8 encoded null-terminated char buffer *u*." msgstr "" -#: c-api/unicode.rst:454 +#: c-api/unicode.rst:393 msgid "" "Take a C :c:func:`printf`\\ -style *format* string and a variable number of " "arguments, calculate the size of the resulting Python Unicode string and " "return a string with the values formatted into it. The variable arguments " "must be C types and must correspond exactly to the format characters in the " -"*format* ASCII-encoded string. The following format characters are allowed:" +"*format* ASCII-encoded string." msgstr "" -#: c-api/unicode.rst:469 -msgid "Format Characters" +#: c-api/unicode.rst:399 +msgid "" +"A conversion specifier contains two or more characters and has the following " +"components, which must occur in this order:" msgstr "" -#: c-api/unicode.rst:469 -msgid "Type" +#: c-api/unicode.rst:402 +msgid "The ``'%'`` character, which marks the start of the specifier." msgstr "" -#: c-api/unicode.rst:469 -msgid "Comment" +#: c-api/unicode.rst:404 +msgid "" +"Conversion flags (optional), which affect the result of some conversion " +"types." msgstr "" -#: c-api/unicode.rst:471 -msgid ":attr:`%%`" +#: c-api/unicode.rst:407 +msgid "" +"Minimum field width (optional). If specified as an ``'*'`` (asterisk), the " +"actual width is given in the next argument, which must be of type :c:expr:" +"`int`, and the object to convert comes after the minimum field width and " +"optional precision." msgstr "" -#: c-api/unicode.rst:471 -msgid "*n/a*" +#: c-api/unicode.rst:412 +msgid "" +"Precision (optional), given as a ``'.'`` (dot) followed by the precision. If " +"specified as ``'*'`` (an asterisk), the actual precision is given in the " +"next argument, which must be of type :c:expr:`int`, and the value to convert " +"comes after the precision." msgstr "" -#: c-api/unicode.rst:471 -msgid "The literal % character." +#: c-api/unicode.rst:417 +msgid "Length modifier (optional)." msgstr "" -#: c-api/unicode.rst:473 -msgid ":attr:`%c`" +#: c-api/unicode.rst:419 +msgid "Conversion type." msgstr "" -#: c-api/unicode.rst:476 c-api/unicode.rst:512 -msgid "int" +#: c-api/unicode.rst:421 +msgid "The conversion flag characters are:" msgstr "" -#: c-api/unicode.rst:473 -msgid "A single character, represented as a C int." +#: c-api/unicode.rst:426 +msgid "Flag" msgstr "" -#: c-api/unicode.rst:476 -msgid ":attr:`%d`" +#: c-api/unicode.rst:426 +msgid "Meaning" msgstr "" -#: c-api/unicode.rst:476 -msgid "Equivalent to ``printf(\"%d\")``. [1]_" +#: c-api/unicode.rst:428 +msgid "``0``" msgstr "" -#: c-api/unicode.rst:479 -msgid ":attr:`%u`" +#: c-api/unicode.rst:428 +msgid "The conversion will be zero padded for numeric values." msgstr "" -#: c-api/unicode.rst:479 -msgid "unsigned int" +#: c-api/unicode.rst:430 +msgid "``-``" msgstr "" -#: c-api/unicode.rst:479 -msgid "Equivalent to ``printf(\"%u\")``. [1]_" +#: c-api/unicode.rst:430 +msgid "" +"The converted value is left adjusted (overrides the ``0`` flag if both are " +"given)." msgstr "" -#: c-api/unicode.rst:482 -msgid ":attr:`%ld`" +#: c-api/unicode.rst:434 +msgid "" +"The length modifiers for following integer conversions (``d``, ``i``, ``o``, " +"``u``, ``x``, or ``X``) specify the type of the argument (:c:expr:`int` by " +"default):" msgstr "" -#: c-api/unicode.rst:485 -msgid "long" +#: c-api/unicode.rst:441 +msgid "Modifier" msgstr "" -#: c-api/unicode.rst:482 -msgid "Equivalent to ``printf(\"%ld\")``. [1]_" +#: c-api/unicode.rst:441 +msgid "Types" msgstr "" -#: c-api/unicode.rst:485 -msgid ":attr:`%li`" +#: c-api/unicode.rst:443 +msgid "``l``" msgstr "" -#: c-api/unicode.rst:485 -msgid "Equivalent to ``printf(\"%li\")``. [1]_" +#: c-api/unicode.rst:443 +msgid ":c:expr:`long` or :c:expr:`unsigned long`" msgstr "" -#: c-api/unicode.rst:488 -msgid ":attr:`%lu`" +#: c-api/unicode.rst:445 +msgid "``ll``" msgstr "" -#: c-api/unicode.rst:488 -msgid "unsigned long" +#: c-api/unicode.rst:445 +msgid ":c:expr:`long long` or :c:expr:`unsigned long long`" msgstr "" -#: c-api/unicode.rst:488 -msgid "Equivalent to ``printf(\"%lu\")``. [1]_" +#: c-api/unicode.rst:447 +msgid "``j``" msgstr "" -#: c-api/unicode.rst:491 -msgid ":attr:`%lld`" +#: c-api/unicode.rst:447 +msgid ":c:type:`intmax_t` or :c:type:`uintmax_t`" msgstr "" -#: c-api/unicode.rst:494 -msgid "long long" +#: c-api/unicode.rst:449 +msgid "``z``" msgstr "" -#: c-api/unicode.rst:491 -msgid "Equivalent to ``printf(\"%lld\")``. [1]_" +#: c-api/unicode.rst:449 +msgid ":c:type:`size_t` or :c:type:`ssize_t`" msgstr "" -#: c-api/unicode.rst:494 -msgid ":attr:`%lli`" +#: c-api/unicode.rst:451 +msgid "``t``" msgstr "" -#: c-api/unicode.rst:494 -msgid "Equivalent to ``printf(\"%lli\")``. [1]_" +#: c-api/unicode.rst:451 +msgid ":c:type:`ptrdiff_t`" msgstr "" -#: c-api/unicode.rst:497 -msgid ":attr:`%llu`" +#: c-api/unicode.rst:454 +msgid "" +"The length modifier ``l`` for following conversions ``s`` or ``V`` specify " +"that the type of the argument is :c:expr:`const wchar_t*`." msgstr "" -#: c-api/unicode.rst:497 -msgid "unsigned long long" +#: c-api/unicode.rst:457 +msgid "The conversion specifiers are:" msgstr "" -#: c-api/unicode.rst:497 -msgid "Equivalent to ``printf(\"%llu\")``. [1]_" +#: c-api/unicode.rst:463 +msgid "Conversion Specifier" msgstr "" -#: c-api/unicode.rst:500 -msgid ":attr:`%zd`" +#: c-api/unicode.rst:464 +msgid "Type" +msgstr "" + +#: c-api/unicode.rst:465 +msgid "Comment" msgstr "" -#: c-api/unicode.rst:503 -msgid ":c:type:`\\ Py_ssize_t`" +#: c-api/unicode.rst:467 +msgid "``%``" msgstr "" -#: c-api/unicode.rst:500 -msgid "Equivalent to ``printf(\"%zd\")``. [1]_" +#: c-api/unicode.rst:468 +msgid "*n/a*" msgstr "" -#: c-api/unicode.rst:503 -msgid ":attr:`%zi`" +#: c-api/unicode.rst:469 +msgid "The literal ``%`` character." msgstr "" -#: c-api/unicode.rst:503 -msgid "Equivalent to ``printf(\"%zi\")``. [1]_" +#: c-api/unicode.rst:471 +msgid "``d``, ``i``" msgstr "" -#: c-api/unicode.rst:506 -msgid ":attr:`%zu`" +#: c-api/unicode.rst:476 c-api/unicode.rst:484 c-api/unicode.rst:488 +msgid "Specified by the length modifier" msgstr "" -#: c-api/unicode.rst:506 -msgid "size_t" +#: c-api/unicode.rst:473 +msgid "The decimal representation of a signed C integer." msgstr "" -#: c-api/unicode.rst:506 -msgid "Equivalent to ``printf(\"%zu\")``. [1]_" +#: c-api/unicode.rst:475 +msgid "``u``" msgstr "" -#: c-api/unicode.rst:509 -msgid ":attr:`%i`" +#: c-api/unicode.rst:477 +msgid "The decimal representation of an unsigned C integer." msgstr "" -#: c-api/unicode.rst:509 -msgid "Equivalent to ``printf(\"%i\")``. [1]_" +#: c-api/unicode.rst:479 +msgid "``o``" msgstr "" -#: c-api/unicode.rst:512 -msgid ":attr:`%x`" +#: c-api/unicode.rst:481 +msgid "The octal representation of an unsigned C integer." msgstr "" -#: c-api/unicode.rst:512 -msgid "Equivalent to ``printf(\"%x\")``. [1]_" +#: c-api/unicode.rst:483 +msgid "``x``" msgstr "" -#: c-api/unicode.rst:515 -msgid ":attr:`%s`" +#: c-api/unicode.rst:485 +msgid "The hexadecimal representation of an unsigned C integer (lowercase)." msgstr "" -#: c-api/unicode.rst:515 -msgid "const char\\*" +#: c-api/unicode.rst:487 +msgid "``X``" msgstr "" -#: c-api/unicode.rst:515 +#: c-api/unicode.rst:489 +msgid "The hexadecimal representation of an unsigned C integer (uppercase)." +msgstr "" + +#: c-api/unicode.rst:491 +msgid "``c``" +msgstr "" + +#: c-api/unicode.rst:492 +msgid ":c:expr:`int`" +msgstr "" + +#: c-api/unicode.rst:493 +msgid "A single character." +msgstr "" + +#: c-api/unicode.rst:495 +msgid "``s``" +msgstr "" + +#: c-api/unicode.rst:496 +msgid ":c:expr:`const char*` or :c:expr:`const wchar_t*`" +msgstr "" + +#: c-api/unicode.rst:497 msgid "A null-terminated C character array." msgstr "" -#: c-api/unicode.rst:518 -msgid ":attr:`%p`" +#: c-api/unicode.rst:499 +msgid "``p``" msgstr "" -#: c-api/unicode.rst:518 -msgid "const void\\*" +#: c-api/unicode.rst:500 +msgid ":c:expr:`const void*`" msgstr "" -#: c-api/unicode.rst:518 +#: c-api/unicode.rst:501 msgid "" -"The hex representation of a C pointer. Mostly equivalent to " +"The hex representation of a C pointer. Mostly equivalent to " "``printf(\"%p\")`` except that it is guaranteed to start with the literal " "``0x`` regardless of what the platform's ``printf`` yields." msgstr "" -#: c-api/unicode.rst:526 -msgid ":attr:`%A`" +#: c-api/unicode.rst:506 +msgid "``A``" msgstr "" -#: c-api/unicode.rst:529 c-api/unicode.rst:541 -msgid "PyObject\\*" +#: c-api/unicode.rst:511 c-api/unicode.rst:525 +msgid ":c:expr:`PyObject*`" msgstr "" -#: c-api/unicode.rst:526 +#: c-api/unicode.rst:508 msgid "The result of calling :func:`ascii`." msgstr "" -#: c-api/unicode.rst:529 -msgid ":attr:`%U`" +#: c-api/unicode.rst:510 +msgid "``U``" msgstr "" -#: c-api/unicode.rst:529 +#: c-api/unicode.rst:512 msgid "A Unicode object." msgstr "" -#: c-api/unicode.rst:531 -msgid ":attr:`%V`" +#: c-api/unicode.rst:514 +msgid "``V``" msgstr "" -#: c-api/unicode.rst:531 -msgid "PyObject\\*, const char\\*" +#: c-api/unicode.rst:515 +msgid ":c:expr:`PyObject*`, :c:expr:`const char*` or :c:expr:`const wchar_t*`" msgstr "" -#: c-api/unicode.rst:531 +#: c-api/unicode.rst:516 msgid "" "A Unicode object (which may be ``NULL``) and a null-terminated C character " "array as a second parameter (which will be used, if the first parameter is " "``NULL``)." msgstr "" -#: c-api/unicode.rst:538 -msgid ":attr:`%S`" +#: c-api/unicode.rst:520 +msgid "``S``" msgstr "" -#: c-api/unicode.rst:538 +#: c-api/unicode.rst:522 msgid "The result of calling :c:func:`PyObject_Str`." msgstr "" -#: c-api/unicode.rst:541 -msgid ":attr:`%R`" +#: c-api/unicode.rst:524 +msgid "``R``" msgstr "" -#: c-api/unicode.rst:541 +#: c-api/unicode.rst:526 msgid "The result of calling :c:func:`PyObject_Repr`." msgstr "" -#: c-api/unicode.rst:545 -msgid "" -"An unrecognized format character causes all the rest of the format string to " -"be copied as-is to the result string, and any extra arguments discarded." -msgstr "" - -#: c-api/unicode.rst:549 +#: c-api/unicode.rst:529 msgid "" "The width formatter unit is number of characters rather than bytes. The " -"precision formatter unit is number of bytes for ``\"%s\"`` and ``\"%V\"`` " -"(if the ``PyObject*`` argument is ``NULL``), and a number of characters for " +"precision formatter unit is number of bytes or :c:type:`wchar_t` items (if " +"the length modifier ``l`` is used) for ``\"%s\"`` and ``\"%V\"`` (if the " +"``PyObject*`` argument is ``NULL``), and a number of characters for " "``\"%A\"``, ``\"%U\"``, ``\"%S\"``, ``\"%R\"`` and ``\"%V\"`` (if the " "``PyObject*`` argument is not ``NULL``)." msgstr "" -#: c-api/unicode.rst:555 +#: c-api/unicode.rst:537 msgid "" -"For integer specifiers (d, u, ld, li, lu, lld, lli, llu, zd, zi, zu, i, x): " -"the 0-conversion flag has effect even when a precision is given." +"Unlike to C :c:func:`printf` the ``0`` flag has effect even when a precision " +"is given for integer conversions (``d``, ``i``, ``u``, ``o``, ``x``, or " +"``X``)." msgstr "" -#: c-api/unicode.rst:558 +#: c-api/unicode.rst:541 msgid "Support for ``\"%lld\"`` and ``\"%llu\"`` added." msgstr "" -#: c-api/unicode.rst:561 +#: c-api/unicode.rst:544 msgid "Support for ``\"%li\"``, ``\"%lli\"`` and ``\"%zi\"`` added." msgstr "" -#: c-api/unicode.rst:564 +#: c-api/unicode.rst:547 msgid "" "Support width and precision formatter for ``\"%s\"``, ``\"%A\"``, " "``\"%U\"``, ``\"%V\"``, ``\"%S\"``, ``\"%R\"`` added." msgstr "" -#: c-api/unicode.rst:571 +#: c-api/unicode.rst:551 +msgid "" +"Support for conversion specifiers ``o`` and ``X``. Support for length " +"modifiers ``j`` and ``t``. Length modifiers are now applied to all integer " +"conversions. Length modifier ``l`` is now applied to conversion specifiers " +"``s`` and ``V``. Support for variable width and precision ``*``. Support for " +"flag ``-``." +msgstr "" + +#: c-api/unicode.rst:559 +msgid "" +"An unrecognized format character now sets a :exc:`SystemError`. In previous " +"versions it caused all the rest of the format string to be copied as-is to " +"the result string, and any extra arguments discarded." +msgstr "" + +#: c-api/unicode.rst:566 msgid "" "Identical to :c:func:`PyUnicode_FromFormat` except that it takes exactly two " "arguments." msgstr "" -#: c-api/unicode.rst:577 +#: c-api/unicode.rst:572 msgid "" "Copy an instance of a Unicode subtype to a new true Unicode object if " "necessary. If *obj* is already a true Unicode object (not a subtype), return " "a new :term:`strong reference` to the object." msgstr "" -#: c-api/unicode.rst:581 +#: c-api/unicode.rst:576 msgid "" "Objects other than Unicode or its subtypes will cause a :exc:`TypeError`." msgstr "" -#: c-api/unicode.rst:587 +#: c-api/unicode.rst:582 msgid "Decode an encoded object *obj* to a Unicode object." msgstr "" -#: c-api/unicode.rst:589 +#: c-api/unicode.rst:584 msgid "" ":class:`bytes`, :class:`bytearray` and other :term:`bytes-like objects " "` are decoded according to the given *encoding* and using " @@ -778,23 +769,23 @@ msgid "" "interface use the default values (see :ref:`builtincodecs` for details)." msgstr "" -#: c-api/unicode.rst:595 +#: c-api/unicode.rst:590 msgid "" "All other objects, including Unicode objects, cause a :exc:`TypeError` to be " "set." msgstr "" -#: c-api/unicode.rst:598 +#: c-api/unicode.rst:593 msgid "" "The API returns ``NULL`` if there was an error. The caller is responsible " "for decref'ing the returned objects." msgstr "" -#: c-api/unicode.rst:604 +#: c-api/unicode.rst:599 msgid "Return the length of the Unicode object, in code points." msgstr "" -#: c-api/unicode.rst:615 +#: c-api/unicode.rst:610 msgid "" "Copy characters from one Unicode object into another. This function " "performs character conversion when necessary and falls back to :c:func:`!" @@ -802,52 +793,52 @@ msgid "" "otherwise returns the number of copied characters." msgstr "" -#: c-api/unicode.rst:626 +#: c-api/unicode.rst:621 msgid "" "Fill a string with a character: write *fill_char* into ``unicode[start:" "start+length]``." msgstr "" -#: c-api/unicode.rst:629 +#: c-api/unicode.rst:624 msgid "" "Fail if *fill_char* is bigger than the string maximum character, or if the " "string has more than 1 reference." msgstr "" -#: c-api/unicode.rst:632 +#: c-api/unicode.rst:627 msgid "" "Return the number of written character, or return ``-1`` and raise an " "exception on error." msgstr "" -#: c-api/unicode.rst:641 +#: c-api/unicode.rst:636 msgid "" "Write a character to a string. The string must have been created through :c:" "func:`PyUnicode_New`. Since Unicode strings are supposed to be immutable, " "the string must not be shared, or have been hashed yet." msgstr "" -#: c-api/unicode.rst:645 +#: c-api/unicode.rst:640 msgid "" "This function checks that *unicode* is a Unicode object, that the index is " "not out of bounds, and that the object can be modified safely (i.e. that it " "its reference count is one)." msgstr "" -#: c-api/unicode.rst:654 +#: c-api/unicode.rst:649 msgid "" "Read a character from a string. This function checks that *unicode* is a " "Unicode object and the index is not out of bounds, in contrast to :c:func:" "`PyUnicode_READ_CHAR`, which performs no error checking." msgstr "" -#: c-api/unicode.rst:664 +#: c-api/unicode.rst:659 msgid "" "Return a substring of *str*, from character index *start* (included) to " "character index *end* (excluded). Negative indices are not supported." msgstr "" -#: c-api/unicode.rst:673 +#: c-api/unicode.rst:668 msgid "" "Copy the string *u* into a UCS4 buffer, including a null character, if " "*copy_null* is set. Returns ``NULL`` and sets an exception on error (in " @@ -855,7 +846,7 @@ msgid "" "*u*). *buffer* is returned on success." msgstr "" -#: c-api/unicode.rst:683 +#: c-api/unicode.rst:678 msgid "" "Copy the string *u* into a new UCS4 buffer that is allocated using :c:func:" "`PyMem_Malloc`. If this fails, ``NULL`` is returned with a :exc:" @@ -863,91 +854,17 @@ msgid "" "appended." msgstr "" -#: c-api/unicode.rst:692 -msgid "Deprecated Py_UNICODE APIs" -msgstr "" - -#: c-api/unicode.rst:696 -msgid "" -"These API functions are deprecated with the implementation of :pep:`393`. " -"Extension modules can continue using them, as they will not be removed in " -"Python 3.x, but need to be aware that their use can now cause performance " -"and memory hits." -msgstr "" - -#: c-api/unicode.rst:703 -msgid "" -"Create a Unicode object from the Py_UNICODE buffer *u* of the given size. " -"*u* may be ``NULL`` which causes the contents to be undefined. It is the " -"user's responsibility to fill in the needed data. The buffer is copied into " -"the new object." -msgstr "" - -#: c-api/unicode.rst:708 -msgid "" -"If the buffer is not ``NULL``, the return value might be a shared object. " -"Therefore, modification of the resulting Unicode object is only allowed when " -"*u* is ``NULL``." -msgstr "" - -#: c-api/unicode.rst:712 -msgid "" -"If the buffer is ``NULL``, :c:func:`PyUnicode_READY` must be called once the " -"string content has been filled before using any of the access macros such " -"as :c:func:`PyUnicode_KIND`." -msgstr "" - -#: c-api/unicode.rst:719 -msgid "" -"Part of the old-style Unicode API, please migrate to using :c:func:" -"`PyUnicode_FromKindAndData`, :c:func:`PyUnicode_FromWideChar`, or :c:func:" -"`PyUnicode_New`." -msgstr "" - -#: c-api/unicode.rst:724 -msgid "" -"Return a read-only pointer to the Unicode object's internal :c:type:" -"`Py_UNICODE` buffer, or ``NULL`` on error. This will create the :c:expr:" -"`Py_UNICODE*` representation of the object if it is not yet available. The " -"buffer is always terminated with an extra null code point. Note that the " -"resulting :c:type:`Py_UNICODE` string may also contain embedded null code " -"points, which would cause the string to be truncated when used in most C " -"functions." -msgstr "" - -#: c-api/unicode.rst:751 -msgid "" -"Part of the old-style Unicode API, please migrate to using :c:func:" -"`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsWideChar`, :c:func:" -"`PyUnicode_ReadChar` or similar new APIs." -msgstr "" - -#: c-api/unicode.rst:740 -msgid "" -"Like :c:func:`PyUnicode_AsUnicode`, but also saves the :c:func:`Py_UNICODE` " -"array length (excluding the extra null terminator) in *size*. Note that the " -"resulting :c:expr:`Py_UNICODE*` string may contain embedded null code " -"points, which would cause the string to be truncated when used in most C " -"functions." -msgstr "" - -#: c-api/unicode.rst:756 -msgid "" -"Return the size of the deprecated :c:type:`Py_UNICODE` representation, in " -"code units (this includes surrogate pairs as 2 units)." -msgstr "" - -#: c-api/unicode.rst:765 +#: c-api/unicode.rst:687 msgid "Locale Encoding" msgstr "" -#: c-api/unicode.rst:767 +#: c-api/unicode.rst:689 msgid "" "The current locale encoding can be used to decode text from the operating " "system." msgstr "" -#: c-api/unicode.rst:774 +#: c-api/unicode.rst:696 msgid "" "Decode a string from UTF-8 on Android and VxWorks, or from the current " "locale encoding on other platforms. The supported error handlers are " @@ -956,22 +873,21 @@ msgid "" "null character but cannot contain embedded null characters." msgstr "" -#: c-api/unicode.rst:781 +#: c-api/unicode.rst:703 msgid "" -"Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` to decode a string from :c:" -"data:`Py_FileSystemDefaultEncoding` (the locale encoding read at Python " -"startup)." +"Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` to decode a string from the :" +"term:`filesystem encoding and error handler`." msgstr "" -#: c-api/unicode.rst:821 +#: c-api/unicode.rst:741 msgid "This function ignores the :ref:`Python UTF-8 Mode `." msgstr "" -#: c-api/unicode.rst:892 +#: c-api/unicode.rst:807 msgid "The :c:func:`Py_DecodeLocale` function." msgstr "" -#: c-api/unicode.rst:793 +#: c-api/unicode.rst:714 msgid "" "The function now also uses the current locale encoding for the " "``surrogateescape`` error handler, except on Android. Previously, :c:func:" @@ -979,13 +895,13 @@ msgid "" "locale encoding was used for ``strict``." msgstr "" -#: c-api/unicode.rst:802 +#: c-api/unicode.rst:723 msgid "" "Similar to :c:func:`PyUnicode_DecodeLocaleAndSize`, but compute the string " "length using :c:func:`!strlen`." msgstr "" -#: c-api/unicode.rst:810 +#: c-api/unicode.rst:731 msgid "" "Encode a Unicode object to UTF-8 on Android and VxWorks, or to the current " "locale encoding on other platforms. The supported error handlers are " @@ -994,17 +910,17 @@ msgid "" "`bytes` object. *unicode* cannot contain embedded null characters." msgstr "" -#: c-api/unicode.rst:817 +#: c-api/unicode.rst:738 msgid "" -"Use :c:func:`PyUnicode_EncodeFSDefault` to encode a string to :c:data:" -"`Py_FileSystemDefaultEncoding` (the locale encoding read at Python startup)." +"Use :c:func:`PyUnicode_EncodeFSDefault` to encode a string to the :term:" +"`filesystem encoding and error handler`." msgstr "" -#: c-api/unicode.rst:928 +#: c-api/unicode.rst:838 msgid "The :c:func:`Py_EncodeLocale` function." msgstr "" -#: c-api/unicode.rst:829 +#: c-api/unicode.rst:749 msgid "" "The function now also uses the current locale encoding for the " "``surrogateescape`` error handler, except on Android. Previously, :c:func:" @@ -1012,21 +928,24 @@ msgid "" "locale encoding was used for ``strict``." msgstr "" -#: c-api/unicode.rst:838 +#: c-api/unicode.rst:758 msgid "File System Encoding" msgstr "" -#: c-api/unicode.rst:840 +#: c-api/unicode.rst:760 msgid "" -"To encode and decode file names and other environment strings, :c:data:" -"`Py_FileSystemDefaultEncoding` should be used as the encoding, and :c:data:" -"`Py_FileSystemDefaultEncodeErrors` should be used as the error handler (:pep:" -"`383` and :pep:`529`). To encode file names to :class:`bytes` during " -"argument parsing, the ``\"O&\"`` converter should be used, passing :c:func:" -"`PyUnicode_FSConverter` as the conversion function:" +"Functions encoding to and decoding from the :term:`filesystem encoding and " +"error handler` (:pep:`383` and :pep:`529`)." msgstr "" -#: c-api/unicode.rst:849 +#: c-api/unicode.rst:763 +msgid "" +"To encode file names to :class:`bytes` during argument parsing, the " +"``\"O&\"`` converter should be used, passing :c:func:`PyUnicode_FSConverter` " +"as the conversion function:" +msgstr "" + +#: c-api/unicode.rst:769 msgid "" "ParseTuple converter: encode :class:`str` objects -- obtained directly or " "through the :class:`os.PathLike` interface -- to :class:`bytes` using :c:" @@ -1035,18 +954,18 @@ msgid "" "is no longer used." msgstr "" -#: c-api/unicode.rst:874 +#: c-api/unicode.rst:794 msgid "Accepts a :term:`path-like object`." msgstr "" -#: c-api/unicode.rst:860 +#: c-api/unicode.rst:780 msgid "" "To decode file names to :class:`str` during argument parsing, the ``\"O&\"`` " "converter should be used, passing :c:func:`PyUnicode_FSDecoder` as the " "conversion function:" msgstr "" -#: c-api/unicode.rst:866 +#: c-api/unicode.rst:786 msgid "" "ParseTuple converter: decode :class:`bytes` objects -- obtained either " "directly or indirectly through the :class:`os.PathLike` interface -- to :" @@ -1055,70 +974,63 @@ msgid "" "which must be released when it is no longer used." msgstr "" -#: c-api/unicode.rst:880 +#: c-api/unicode.rst:800 msgid "Decode a string from the :term:`filesystem encoding and error handler`." msgstr "" -#: c-api/unicode.rst:903 c-api/unicode.rst:919 -msgid "" -"If :c:data:`Py_FileSystemDefaultEncoding` is not set, fall back to the " -"locale encoding." -msgstr "" - -#: c-api/unicode.rst:885 +#: c-api/unicode.rst:802 msgid "" -":c:data:`Py_FileSystemDefaultEncoding` is initialized at startup from the " -"locale encoding and cannot be modified later. If you need to decode a string " -"from the current locale encoding, use :c:func:" +"If you need to decode a string from the current locale encoding, use :c:func:" "`PyUnicode_DecodeLocaleAndSize`." msgstr "" -#: c-api/unicode.rst:908 c-api/unicode.rst:932 -msgid "Use :c:data:`Py_FileSystemDefaultEncodeErrors` error handler." +#: c-api/unicode.rst:822 c-api/unicode.rst:842 +msgid "" +"The :term:`filesystem error handler ` " +"is now used." msgstr "" -#: c-api/unicode.rst:900 +#: c-api/unicode.rst:816 msgid "" "Decode a null-terminated string from the :term:`filesystem encoding and " "error handler`." msgstr "" -#: c-api/unicode.rst:906 +#: c-api/unicode.rst:819 msgid "" -"Use :c:func:`PyUnicode_DecodeFSDefaultAndSize` if you know the string length." +"If the string length is known, use :c:func:" +"`PyUnicode_DecodeFSDefaultAndSize`." msgstr "" -#: c-api/unicode.rst:914 +#: c-api/unicode.rst:829 msgid "" -"Encode a Unicode object to :c:data:`Py_FileSystemDefaultEncoding` with the :" -"c:data:`Py_FileSystemDefaultEncodeErrors` error handler, and return :class:" -"`bytes`. Note that the resulting :class:`bytes` object may contain null " -"bytes." +"Encode a Unicode object to the :term:`filesystem encoding and error " +"handler`, and return :class:`bytes`. Note that the resulting :class:`bytes` " +"object can contain null bytes." msgstr "" -#: c-api/unicode.rst:922 +#: c-api/unicode.rst:833 msgid "" -":c:data:`Py_FileSystemDefaultEncoding` is initialized at startup from the " -"locale encoding and cannot be modified later. If you need to encode a string " -"to the current locale encoding, use :c:func:`PyUnicode_EncodeLocale`." +"If you need to encode a string to the current locale encoding, use :c:func:" +"`PyUnicode_EncodeLocale`." msgstr "" -#: c-api/unicode.rst:936 +#: c-api/unicode.rst:847 msgid "wchar_t Support" msgstr "" -#: c-api/unicode.rst:938 +#: c-api/unicode.rst:849 msgid ":c:type:`wchar_t` support for platforms which support it:" msgstr "" -#: c-api/unicode.rst:942 +#: c-api/unicode.rst:853 msgid "" "Create a Unicode object from the :c:type:`wchar_t` buffer *w* of the given " "*size*. Passing ``-1`` as the *size* indicates that the function must itself " "compute the length, using wcslen. Return ``NULL`` on failure." msgstr "" -#: c-api/unicode.rst:950 +#: c-api/unicode.rst:861 msgid "" "Copy the Unicode object contents into the :c:type:`wchar_t` buffer *w*. At " "most *size* :c:type:`wchar_t` characters are copied (excluding a possibly " @@ -1131,7 +1043,7 @@ msgid "" "would cause the string to be truncated when used with most C functions." msgstr "" -#: c-api/unicode.rst:963 +#: c-api/unicode.rst:874 msgid "" "Convert the Unicode object to a wide character string. The output string " "always ends with a null character. If *size* is not ``NULL``, write the " @@ -1142,69 +1054,66 @@ msgid "" "`wchar_t*` string contains null characters a :exc:`ValueError` is raised." msgstr "" -#: c-api/unicode.rst:971 +#: c-api/unicode.rst:882 msgid "" "Returns a buffer allocated by :c:macro:`PyMem_New` (use :c:func:`PyMem_Free` " "to free it) on success. On error, returns ``NULL`` and *\\*size* is " "undefined. Raises a :exc:`MemoryError` if memory allocation is failed." msgstr "" -#: c-api/unicode.rst:978 +#: c-api/unicode.rst:889 msgid "" "Raises a :exc:`ValueError` if *size* is ``NULL`` and the :c:expr:`wchar_t*` " "string contains null characters." msgstr "" -#: c-api/unicode.rst:986 +#: c-api/unicode.rst:897 msgid "Built-in Codecs" msgstr "" -#: c-api/unicode.rst:988 +#: c-api/unicode.rst:899 msgid "" "Python provides a set of built-in codecs which are written in C for speed. " "All of these codecs are directly usable via the following functions." msgstr "" -#: c-api/unicode.rst:991 +#: c-api/unicode.rst:902 msgid "" "Many of the following APIs take two arguments encoding and errors, and they " "have the same semantics as the ones of the built-in :func:`str` string " "object constructor." msgstr "" -#: c-api/unicode.rst:995 +#: c-api/unicode.rst:906 msgid "" "Setting encoding to ``NULL`` causes the default encoding to be used which is " "UTF-8. The file system calls should use :c:func:`PyUnicode_FSConverter` for " -"encoding file names. This uses the variable :c:data:" -"`Py_FileSystemDefaultEncoding` internally. This variable should be treated " -"as read-only: on some systems, it will be a pointer to a static string, on " -"others, it will change at run-time (such as when the application invokes " -"setlocale)." +"encoding file names. This uses the :term:`filesystem encoding and error " +"handler` internally." msgstr "" -#: c-api/unicode.rst:1003 +#: c-api/unicode.rst:911 msgid "" "Error handling is set by errors which may also be set to ``NULL`` meaning to " "use the default handling defined for the codec. Default error handling for " "all built-in codecs is \"strict\" (:exc:`ValueError` is raised)." msgstr "" -#: c-api/unicode.rst:1007 +#: c-api/unicode.rst:915 msgid "" "The codecs all use a similar interface. Only deviations from the following " "generic ones are documented for simplicity." msgstr "" -#: c-api/unicode.rst:1012 +#: c-api/unicode.rst:920 msgid "Generic Codecs" msgstr "" -#: c-api/unicode.rst:1014 +#: c-api/unicode.rst:922 msgid "These are the generic codec APIs:" msgstr "" -#: c-api/unicode.rst:1020 +#: c-api/unicode.rst:928 msgid "" "Create a Unicode object by decoding *size* bytes of the encoded string *s*. " "*encoding* and *errors* have the same meaning as the parameters of the same " @@ -1213,7 +1122,7 @@ msgid "" "raised by the codec." msgstr "" -#: c-api/unicode.rst:1030 +#: c-api/unicode.rst:938 msgid "" "Encode a Unicode object and return the result as Python bytes object. " "*encoding* and *errors* have the same meaning as the parameters of the same " @@ -1222,21 +1131,21 @@ msgid "" "was raised by the codec." msgstr "" -#: c-api/unicode.rst:1038 +#: c-api/unicode.rst:946 msgid "UTF-8 Codecs" msgstr "" -#: c-api/unicode.rst:1040 +#: c-api/unicode.rst:948 msgid "These are the UTF-8 codec APIs:" msgstr "" -#: c-api/unicode.rst:1045 +#: c-api/unicode.rst:953 msgid "" "Create a Unicode object by decoding *size* bytes of the UTF-8 encoded string " "*s*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1052 +#: c-api/unicode.rst:960 msgid "" "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF8`. If " "*consumed* is not ``NULL``, trailing incomplete UTF-8 byte sequences will " @@ -1244,14 +1153,14 @@ msgid "" "of bytes that have been decoded will be stored in *consumed*." msgstr "" -#: c-api/unicode.rst:1060 +#: c-api/unicode.rst:968 msgid "" "Encode a Unicode object using UTF-8 and return the result as Python bytes " "object. Error handling is \"strict\". Return ``NULL`` if an exception was " "raised by the codec." msgstr "" -#: c-api/unicode.rst:1067 +#: c-api/unicode.rst:975 msgid "" "Return a pointer to the UTF-8 encoding of the Unicode object, and store the " "size of the encoded representation (in bytes) in *size*. The *size* " @@ -1260,13 +1169,13 @@ msgid "" "regardless of whether there are any other null code points." msgstr "" -#: c-api/unicode.rst:1073 +#: c-api/unicode.rst:981 msgid "" "In the case of an error, ``NULL`` is returned with an exception set and no " "*size* is stored." msgstr "" -#: c-api/unicode.rst:1076 +#: c-api/unicode.rst:984 msgid "" "This caches the UTF-8 representation of the string in the Unicode object, " "and subsequent calls will return a pointer to the same buffer. The caller " @@ -1275,40 +1184,40 @@ msgid "" "collected." msgstr "" -#: c-api/unicode.rst:1096 +#: c-api/unicode.rst:1004 msgid "The return type is now ``const char *`` rather of ``char *``." msgstr "" -#: c-api/unicode.rst:1086 -msgid "This function is a part of the :ref:`limited API `." +#: c-api/unicode.rst:994 +msgid "This function is a part of the :ref:`limited API `." msgstr "" -#: c-api/unicode.rst:1092 +#: c-api/unicode.rst:1000 msgid "As :c:func:`PyUnicode_AsUTF8AndSize`, but does not store the size." msgstr "" -#: c-api/unicode.rst:1101 +#: c-api/unicode.rst:1009 msgid "UTF-32 Codecs" msgstr "" -#: c-api/unicode.rst:1103 +#: c-api/unicode.rst:1011 msgid "These are the UTF-32 codec APIs:" msgstr "" -#: c-api/unicode.rst:1109 +#: c-api/unicode.rst:1017 msgid "" "Decode *size* bytes from a UTF-32 encoded buffer string and return the " "corresponding Unicode object. *errors* (if non-``NULL``) defines the error " "handling. It defaults to \"strict\"." msgstr "" -#: c-api/unicode.rst:1163 +#: c-api/unicode.rst:1071 msgid "" "If *byteorder* is non-``NULL``, the decoder starts decoding using the given " "byte order::" msgstr "" -#: c-api/unicode.rst:1120 +#: c-api/unicode.rst:1028 msgid "" "If ``*byteorder`` is zero, and the first four bytes of the input data are a " "byte order mark (BOM), the decoder switches to this byte order and the BOM " @@ -1316,21 +1225,21 @@ msgid "" "``-1`` or ``1``, any byte order mark is copied to the output." msgstr "" -#: c-api/unicode.rst:1125 +#: c-api/unicode.rst:1033 msgid "" "After completion, *\\*byteorder* is set to the current byte order at the end " "of input data." msgstr "" -#: c-api/unicode.rst:1179 +#: c-api/unicode.rst:1087 msgid "If *byteorder* is ``NULL``, the codec starts in native order mode." msgstr "" -#: c-api/unicode.rst:1181 +#: c-api/unicode.rst:1089 msgid "Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1136 +#: c-api/unicode.rst:1044 msgid "" "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF32`. If " "*consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF32Stateful` will not " @@ -1339,29 +1248,29 @@ msgid "" "number of bytes that have been decoded will be stored in *consumed*." msgstr "" -#: c-api/unicode.rst:1145 +#: c-api/unicode.rst:1053 msgid "" "Return a Python byte string using the UTF-32 encoding in native byte order. " "The string always starts with a BOM mark. Error handling is \"strict\". " "Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1151 +#: c-api/unicode.rst:1059 msgid "UTF-16 Codecs" msgstr "" -#: c-api/unicode.rst:1153 +#: c-api/unicode.rst:1061 msgid "These are the UTF-16 codec APIs:" msgstr "" -#: c-api/unicode.rst:1159 +#: c-api/unicode.rst:1067 msgid "" "Decode *size* bytes from a UTF-16 encoded buffer string and return the " "corresponding Unicode object. *errors* (if non-``NULL``) defines the error " "handling. It defaults to \"strict\"." msgstr "" -#: c-api/unicode.rst:1170 +#: c-api/unicode.rst:1078 msgid "" "If ``*byteorder`` is zero, and the first two bytes of the input data are a " "byte order mark (BOM), the decoder switches to this byte order and the BOM " @@ -1370,13 +1279,13 @@ msgid "" "result in either a ``\\ufeff`` or a ``\\ufffe`` character)." msgstr "" -#: c-api/unicode.rst:1176 +#: c-api/unicode.rst:1084 msgid "" "After completion, ``*byteorder`` is set to the current byte order at the end " "of input data." msgstr "" -#: c-api/unicode.rst:1187 +#: c-api/unicode.rst:1095 msgid "" "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF16`. If " "*consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF16Stateful` will not " @@ -1386,28 +1295,28 @@ msgid "" "*consumed*." msgstr "" -#: c-api/unicode.rst:1196 +#: c-api/unicode.rst:1104 msgid "" "Return a Python byte string using the UTF-16 encoding in native byte order. " "The string always starts with a BOM mark. Error handling is \"strict\". " "Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1202 +#: c-api/unicode.rst:1110 msgid "UTF-7 Codecs" msgstr "" -#: c-api/unicode.rst:1204 +#: c-api/unicode.rst:1112 msgid "These are the UTF-7 codec APIs:" msgstr "" -#: c-api/unicode.rst:1209 +#: c-api/unicode.rst:1117 msgid "" "Create a Unicode object by decoding *size* bytes of the UTF-7 encoded string " "*s*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1216 +#: c-api/unicode.rst:1124 msgid "" "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF7`. If " "*consumed* is not ``NULL``, trailing incomplete UTF-7 base-64 sections will " @@ -1415,99 +1324,99 @@ msgid "" "of bytes that have been decoded will be stored in *consumed*." msgstr "" -#: c-api/unicode.rst:1223 +#: c-api/unicode.rst:1131 msgid "Unicode-Escape Codecs" msgstr "" -#: c-api/unicode.rst:1225 +#: c-api/unicode.rst:1133 msgid "These are the \"Unicode Escape\" codec APIs:" msgstr "" -#: c-api/unicode.rst:1231 +#: c-api/unicode.rst:1139 msgid "" "Create a Unicode object by decoding *size* bytes of the Unicode-Escape " "encoded string *s*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1237 +#: c-api/unicode.rst:1145 msgid "" "Encode a Unicode object using Unicode-Escape and return the result as a " "bytes object. Error handling is \"strict\". Return ``NULL`` if an " "exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1243 +#: c-api/unicode.rst:1151 msgid "Raw-Unicode-Escape Codecs" msgstr "" -#: c-api/unicode.rst:1245 +#: c-api/unicode.rst:1153 msgid "These are the \"Raw Unicode Escape\" codec APIs:" msgstr "" -#: c-api/unicode.rst:1251 +#: c-api/unicode.rst:1159 msgid "" "Create a Unicode object by decoding *size* bytes of the Raw-Unicode-Escape " "encoded string *s*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1257 +#: c-api/unicode.rst:1165 msgid "" "Encode a Unicode object using Raw-Unicode-Escape and return the result as a " "bytes object. Error handling is \"strict\". Return ``NULL`` if an " "exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1263 +#: c-api/unicode.rst:1171 msgid "Latin-1 Codecs" msgstr "" -#: c-api/unicode.rst:1265 +#: c-api/unicode.rst:1173 msgid "" "These are the Latin-1 codec APIs: Latin-1 corresponds to the first 256 " "Unicode ordinals and only these are accepted by the codecs during encoding." msgstr "" -#: c-api/unicode.rst:1271 +#: c-api/unicode.rst:1179 msgid "" "Create a Unicode object by decoding *size* bytes of the Latin-1 encoded " "string *s*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1277 +#: c-api/unicode.rst:1185 msgid "" "Encode a Unicode object using Latin-1 and return the result as Python bytes " "object. Error handling is \"strict\". Return ``NULL`` if an exception was " "raised by the codec." msgstr "" -#: c-api/unicode.rst:1283 +#: c-api/unicode.rst:1191 msgid "ASCII Codecs" msgstr "" -#: c-api/unicode.rst:1285 +#: c-api/unicode.rst:1193 msgid "" "These are the ASCII codec APIs. Only 7-bit ASCII data is accepted. All " "other codes generate errors." msgstr "" -#: c-api/unicode.rst:1291 +#: c-api/unicode.rst:1199 msgid "" "Create a Unicode object by decoding *size* bytes of the ASCII encoded string " "*s*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1297 +#: c-api/unicode.rst:1205 msgid "" "Encode a Unicode object using ASCII and return the result as Python bytes " "object. Error handling is \"strict\". Return ``NULL`` if an exception was " "raised by the codec." msgstr "" -#: c-api/unicode.rst:1303 +#: c-api/unicode.rst:1211 msgid "Character Map Codecs" msgstr "" -#: c-api/unicode.rst:1305 +#: c-api/unicode.rst:1213 msgid "" "This codec is special in that it can be used to implement many different " "codecs (and this is in fact what was done to obtain most of the standard " @@ -1517,18 +1426,18 @@ msgid "" "sequences work well." msgstr "" -#: c-api/unicode.rst:1311 +#: c-api/unicode.rst:1219 msgid "These are the mapping codec APIs:" msgstr "" -#: c-api/unicode.rst:1316 +#: c-api/unicode.rst:1224 msgid "" "Create a Unicode object by decoding *size* bytes of the encoded string *s* " "using the given *mapping* object. Return ``NULL`` if an exception was " "raised by the codec." msgstr "" -#: c-api/unicode.rst:1320 +#: c-api/unicode.rst:1228 msgid "" "If *mapping* is ``NULL``, Latin-1 decoding will be applied. Else *mapping* " "must map bytes ordinals (integers in the range from 0 to 255) to Unicode " @@ -1538,14 +1447,14 @@ msgid "" "treated as undefined mappings and cause an error." msgstr "" -#: c-api/unicode.rst:1331 +#: c-api/unicode.rst:1239 msgid "" "Encode a Unicode object using the given *mapping* object and return the " "result as a bytes object. Error handling is \"strict\". Return ``NULL`` if " "an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1335 +#: c-api/unicode.rst:1243 msgid "" "The *mapping* object must map Unicode ordinal integers to bytes objects, " "integers in the range from 0 to 255 or ``None``. Unmapped character " @@ -1553,41 +1462,41 @@ msgid "" "``None`` are treated as \"undefined mapping\" and cause an error." msgstr "" -#: c-api/unicode.rst:1341 +#: c-api/unicode.rst:1249 msgid "The following codec API is special in that maps Unicode to Unicode." msgstr "" -#: c-api/unicode.rst:1345 +#: c-api/unicode.rst:1253 msgid "" "Translate a string by applying a character mapping table to it and return " "the resulting Unicode object. Return ``NULL`` if an exception was raised by " "the codec." msgstr "" -#: c-api/unicode.rst:1349 +#: c-api/unicode.rst:1257 msgid "" "The mapping table must map Unicode ordinal integers to Unicode ordinal " "integers or ``None`` (causing deletion of the character)." msgstr "" -#: c-api/unicode.rst:1352 +#: c-api/unicode.rst:1260 msgid "" "Mapping tables need only provide the :meth:`~object.__getitem__` interface; " "dictionaries and sequences work well. Unmapped character ordinals (ones " "which cause a :exc:`LookupError`) are left untouched and are copied as-is." msgstr "" -#: c-api/unicode.rst:1356 +#: c-api/unicode.rst:1264 msgid "" "*errors* has the usual meaning for codecs. It may be ``NULL`` which " "indicates to use the default error handling." msgstr "" -#: c-api/unicode.rst:1361 +#: c-api/unicode.rst:1269 msgid "MBCS codecs for Windows" msgstr "" -#: c-api/unicode.rst:1363 +#: c-api/unicode.rst:1271 msgid "" "These are the MBCS codec APIs. They are currently only available on Windows " "and use the Win32 MBCS converters to implement the conversions. Note that " @@ -1595,13 +1504,13 @@ msgid "" "is defined by the user settings on the machine running the codec." msgstr "" -#: c-api/unicode.rst:1370 +#: c-api/unicode.rst:1278 msgid "" "Create a Unicode object by decoding *size* bytes of the MBCS encoded string " "*s*. Return ``NULL`` if an exception was raised by the codec." msgstr "" -#: c-api/unicode.rst:1377 +#: c-api/unicode.rst:1285 msgid "" "If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeMBCS`. If " "*consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeMBCSStateful` will not " @@ -1609,44 +1518,44 @@ msgid "" "will be stored in *consumed*." msgstr "" -#: c-api/unicode.rst:1385 +#: c-api/unicode.rst:1293 msgid "" "Encode a Unicode object using MBCS and return the result as Python bytes " "object. Error handling is \"strict\". Return ``NULL`` if an exception was " "raised by the codec." msgstr "" -#: c-api/unicode.rst:1392 +#: c-api/unicode.rst:1300 msgid "" "Encode the Unicode object using the specified code page and return a Python " "bytes object. Return ``NULL`` if an exception was raised by the codec. Use :" "c:macro:`!CP_ACP` code page to get the MBCS encoder." msgstr "" -#: c-api/unicode.rst:1400 +#: c-api/unicode.rst:1308 msgid "Methods & Slots" msgstr "" -#: c-api/unicode.rst:1406 +#: c-api/unicode.rst:1314 msgid "Methods and Slot Functions" msgstr "" -#: c-api/unicode.rst:1408 +#: c-api/unicode.rst:1316 msgid "" "The following APIs are capable of handling Unicode objects and strings on " "input (we refer to them as strings in the descriptions) and return Unicode " "objects or integers as appropriate." msgstr "" -#: c-api/unicode.rst:1412 +#: c-api/unicode.rst:1320 msgid "They all return ``NULL`` or ``-1`` if an exception occurs." msgstr "" -#: c-api/unicode.rst:1417 +#: c-api/unicode.rst:1325 msgid "Concat two strings giving a new Unicode string." msgstr "" -#: c-api/unicode.rst:1422 +#: c-api/unicode.rst:1330 msgid "" "Split a string giving a list of Unicode strings. If *sep* is ``NULL``, " "splitting will be done at all whitespace substrings. Otherwise, splits " @@ -1655,27 +1564,27 @@ msgid "" "list." msgstr "" -#: c-api/unicode.rst:1430 +#: c-api/unicode.rst:1338 msgid "" "Split a Unicode string at line breaks, returning a list of Unicode strings. " "CRLF is considered to be one line break. If *keepend* is ``0``, the line " "break characters are not included in the resulting strings." msgstr "" -#: c-api/unicode.rst:1437 +#: c-api/unicode.rst:1345 msgid "" "Join a sequence of strings using the given *separator* and return the " "resulting Unicode string." msgstr "" -#: c-api/unicode.rst:1444 +#: c-api/unicode.rst:1352 msgid "" "Return ``1`` if *substr* matches ``str[start:end]`` at the given tail end " "(*direction* == ``-1`` means to do a prefix match, *direction* == ``1`` a " "suffix match), ``0`` otherwise. Return ``-1`` if an error occurred." msgstr "" -#: c-api/unicode.rst:1452 +#: c-api/unicode.rst:1360 msgid "" "Return the first position of *substr* in ``str[start:end]`` using the given " "*direction* (*direction* == ``1`` means to do a forward search, *direction* " @@ -1684,7 +1593,7 @@ msgid "" "indicates that an error occurred and an exception has been set." msgstr "" -#: c-api/unicode.rst:1462 +#: c-api/unicode.rst:1370 msgid "" "Return the first position of the character *ch* in ``str[start:end]`` using " "the given *direction* (*direction* == ``1`` means to do a forward search, " @@ -1693,36 +1602,36 @@ msgid "" "``-2`` indicates that an error occurred and an exception has been set." msgstr "" -#: c-api/unicode.rst:1470 +#: c-api/unicode.rst:1378 msgid "*start* and *end* are now adjusted to behave like ``str[start:end]``." msgstr "" -#: c-api/unicode.rst:1477 +#: c-api/unicode.rst:1385 msgid "" "Return the number of non-overlapping occurrences of *substr* in ``str[start:" "end]``. Return ``-1`` if an error occurred." msgstr "" -#: c-api/unicode.rst:1484 +#: c-api/unicode.rst:1392 msgid "" "Replace at most *maxcount* occurrences of *substr* in *str* with *replstr* " "and return the resulting Unicode object. *maxcount* == ``-1`` means replace " "all occurrences." msgstr "" -#: c-api/unicode.rst:1491 +#: c-api/unicode.rst:1399 msgid "" "Compare two strings and return ``-1``, ``0``, ``1`` for less than, equal, " "and greater than, respectively." msgstr "" -#: c-api/unicode.rst:1494 +#: c-api/unicode.rst:1402 msgid "" "This function returns ``-1`` upon failure, so one should call :c:func:" "`PyErr_Occurred` to check for errors." msgstr "" -#: c-api/unicode.rst:1500 +#: c-api/unicode.rst:1408 msgid "" "Compare a Unicode object, *uni*, with *string* and return ``-1``, ``0``, " "``1`` for less than, equal, and greater than, respectively. It is best to " @@ -1730,51 +1639,51 @@ msgid "" "string as ISO-8859-1 if it contains non-ASCII characters." msgstr "" -#: c-api/unicode.rst:1505 +#: c-api/unicode.rst:1413 msgid "This function does not raise exceptions." msgstr "" -#: c-api/unicode.rst:1510 +#: c-api/unicode.rst:1418 msgid "Rich compare two Unicode strings and return one of the following:" msgstr "" -#: c-api/unicode.rst:1512 +#: c-api/unicode.rst:1420 msgid "``NULL`` in case an exception was raised" msgstr "" -#: c-api/unicode.rst:1513 +#: c-api/unicode.rst:1421 msgid ":c:data:`Py_True` or :c:data:`Py_False` for successful comparisons" msgstr "" -#: c-api/unicode.rst:1514 +#: c-api/unicode.rst:1422 msgid ":c:data:`Py_NotImplemented` in case the type combination is unknown" msgstr "" -#: c-api/unicode.rst:1516 +#: c-api/unicode.rst:1424 msgid "" "Possible values for *op* are :c:macro:`Py_GT`, :c:macro:`Py_GE`, :c:macro:" "`Py_EQ`, :c:macro:`Py_NE`, :c:macro:`Py_LT`, and :c:macro:`Py_LE`." msgstr "" -#: c-api/unicode.rst:1522 +#: c-api/unicode.rst:1430 msgid "" "Return a new string object from *format* and *args*; this is analogous to " "``format % args``." msgstr "" -#: c-api/unicode.rst:1528 +#: c-api/unicode.rst:1436 msgid "" "Check whether *element* is contained in *container* and return true or false " "accordingly." msgstr "" -#: c-api/unicode.rst:1531 +#: c-api/unicode.rst:1439 msgid "" "*element* has to coerce to a one element Unicode string. ``-1`` is returned " "if there was an error." msgstr "" -#: c-api/unicode.rst:1537 +#: c-api/unicode.rst:1445 msgid "" "Intern the argument *\\*string* in place. The argument must be the address " "of a pointer variable pointing to a Python Unicode string object. If there " @@ -1787,7 +1696,7 @@ msgid "" "object after the call if and only if you owned it before the call.)" msgstr "" -#: c-api/unicode.rst:1550 +#: c-api/unicode.rst:1458 msgid "" "A combination of :c:func:`PyUnicode_FromString` and :c:func:" "`PyUnicode_InternInPlace`, returning either a new Unicode string object that " diff --git a/c-api/veryhigh.po b/c-api/veryhigh.po index ce4a2cc4e..23ce20e96 100644 --- a/c-api/veryhigh.po +++ b/c-api/veryhigh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -63,8 +63,8 @@ msgstr "" #: c-api/veryhigh.rst:40 msgid "" "Note that if an otherwise unhandled :exc:`SystemExit` is raised, this " -"function will not return ``1``, but exit the process, as long as " -"``Py_InspectFlag`` is not set." +"function will not return ``1``, but exit the process, as long as :c:member:" +"`PyConfig.inspect` is zero." msgstr "" #: c-api/veryhigh.rst:47 @@ -118,8 +118,8 @@ msgstr "" #: c-api/veryhigh.rst:96 msgid "" "Note that if an otherwise unhandled :exc:`SystemExit` is raised, this " -"function will not return ``-1``, but exit the process, as long as " -"``Py_InspectFlag`` is not set." +"function will not return ``-1``, but exit the process, as long as :c:member:" +"`PyConfig.inspect` is zero." msgstr "" #: c-api/veryhigh.rst:103 @@ -197,7 +197,13 @@ msgid "" "the Python source code." msgstr "" -#: c-api/veryhigh.rst:173 +#: c-api/veryhigh.rst:194 +msgid "" +"This function is only called from the :ref:`main interpreter `." +msgstr "" + +#: c-api/veryhigh.rst:177 msgid "" "Can be set to point to a function with the prototype ``char *func(FILE " "*stdin, FILE *stdout, char *prompt)``, overriding the default function used " @@ -208,26 +214,26 @@ msgid "" "line-editing and tab-completion features." msgstr "" -#: c-api/veryhigh.rst:182 +#: c-api/veryhigh.rst:186 msgid "" "The result must be a string allocated by :c:func:`PyMem_RawMalloc` or :c:" "func:`PyMem_RawRealloc`, or ``NULL`` if an error occurred." msgstr "" -#: c-api/veryhigh.rst:185 +#: c-api/veryhigh.rst:189 msgid "" "The result must be allocated by :c:func:`PyMem_RawMalloc` or :c:func:" "`PyMem_RawRealloc`, instead of being allocated by :c:func:`PyMem_Malloc` or :" "c:func:`PyMem_Realloc`." msgstr "" -#: c-api/veryhigh.rst:192 +#: c-api/veryhigh.rst:200 msgid "" "This is a simplified interface to :c:func:`PyRun_StringFlags` below, leaving " "*flags* set to ``NULL``." msgstr "" -#: c-api/veryhigh.rst:198 +#: c-api/veryhigh.rst:206 msgid "" "Execute Python source code from *str* in the context specified by the " "objects *globals* and *locals* with the compiler flags specified by " @@ -236,31 +242,31 @@ msgid "" "token that should be used to parse the source code." msgstr "" -#: c-api/veryhigh.rst:204 +#: c-api/veryhigh.rst:212 msgid "" "Returns the result of executing the code as a Python object, or ``NULL`` if " "an exception was raised." msgstr "" -#: c-api/veryhigh.rst:210 +#: c-api/veryhigh.rst:218 msgid "" "This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving " "*closeit* set to ``0`` and *flags* set to ``NULL``." msgstr "" -#: c-api/veryhigh.rst:216 +#: c-api/veryhigh.rst:224 msgid "" "This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving " "*flags* set to ``NULL``." msgstr "" -#: c-api/veryhigh.rst:222 +#: c-api/veryhigh.rst:230 msgid "" "This is a simplified interface to :c:func:`PyRun_FileExFlags` below, leaving " "*closeit* set to ``0``." msgstr "" -#: c-api/veryhigh.rst:228 +#: c-api/veryhigh.rst:236 msgid "" "Similar to :c:func:`PyRun_StringFlags`, but the Python source code is read " "from *fp* instead of an in-memory string. *filename* should be the name of " @@ -269,19 +275,19 @@ msgid "" "`PyRun_FileExFlags` returns." msgstr "" -#: c-api/veryhigh.rst:237 +#: c-api/veryhigh.rst:245 msgid "" "This is a simplified interface to :c:func:`Py_CompileStringFlags` below, " "leaving *flags* set to ``NULL``." msgstr "" -#: c-api/veryhigh.rst:243 +#: c-api/veryhigh.rst:251 msgid "" "This is a simplified interface to :c:func:`Py_CompileStringExFlags` below, " "with *optimize* set to ``-1``." msgstr "" -#: c-api/veryhigh.rst:249 +#: c-api/veryhigh.rst:257 msgid "" "Parse and compile the Python source code in *str*, returning the resulting " "code object. The start token is given by *start*; this can be used to " @@ -292,7 +298,7 @@ msgid "" "returns ``NULL`` if the code cannot be parsed or compiled." msgstr "" -#: c-api/veryhigh.rst:257 +#: c-api/veryhigh.rst:265 msgid "" "The integer *optimize* specifies the optimization level of the compiler; a " "value of ``-1`` selects the optimization level of the interpreter as given " @@ -301,20 +307,20 @@ msgid "" "or ``2`` (docstrings are removed too)." msgstr "" -#: c-api/veryhigh.rst:268 +#: c-api/veryhigh.rst:276 msgid "" "Like :c:func:`Py_CompileStringObject`, but *filename* is a byte string " "decoded from the :term:`filesystem encoding and error handler`." msgstr "" -#: c-api/veryhigh.rst:275 +#: c-api/veryhigh.rst:283 msgid "" "This is a simplified interface to :c:func:`PyEval_EvalCodeEx`, with just the " "code object, and global and local variables. The other arguments are set to " "``NULL``." msgstr "" -#: c-api/veryhigh.rst:282 +#: c-api/veryhigh.rst:290 msgid "" "Evaluate a precompiled code object, given a particular environment for its " "evaluation. This environment consists of a dictionary of global variables, " @@ -323,13 +329,13 @@ msgid "" "only_parameter>` arguments and a closure tuple of cells." msgstr "" -#: c-api/veryhigh.rst:291 +#: c-api/veryhigh.rst:299 msgid "" "Evaluate an execution frame. This is a simplified interface to :c:func:" "`PyEval_EvalFrameEx`, for backward compatibility." msgstr "" -#: c-api/veryhigh.rst:297 +#: c-api/veryhigh.rst:305 msgid "" "This is the main, unvarnished function of Python interpretation. The code " "object associated with the execution frame *f* is executed, interpreting " @@ -339,39 +345,39 @@ msgid "" "of generator objects." msgstr "" -#: c-api/veryhigh.rst:304 +#: c-api/veryhigh.rst:312 msgid "" "This function now includes a debug assertion to help ensure that it does not " "silently discard an active exception." msgstr "" -#: c-api/veryhigh.rst:311 +#: c-api/veryhigh.rst:319 msgid "" "This function changes the flags of the current evaluation frame, and returns " "true on success, false on failure." msgstr "" -#: c-api/veryhigh.rst:319 +#: c-api/veryhigh.rst:327 msgid "" "The start symbol from the Python grammar for isolated expressions; for use " "with :c:func:`Py_CompileString`." msgstr "" -#: c-api/veryhigh.rst:327 +#: c-api/veryhigh.rst:335 msgid "" "The start symbol from the Python grammar for sequences of statements as read " "from a file or other source; for use with :c:func:`Py_CompileString`. This " "is the symbol to use when compiling arbitrarily long Python source code." msgstr "" -#: c-api/veryhigh.rst:336 +#: c-api/veryhigh.rst:344 msgid "" "The start symbol from the Python grammar for a single statement; for use " "with :c:func:`Py_CompileString`. This is the symbol used for the interactive " "interpreter loop." msgstr "" -#: c-api/veryhigh.rst:343 +#: c-api/veryhigh.rst:351 msgid "" "This is the structure used to hold compiler flags. In cases where code is " "only being compiled, it is passed as ``int flags``, and in cases where code " @@ -379,39 +385,39 @@ msgid "" "case, ``from __future__ import`` can modify *flags*." msgstr "" -#: c-api/veryhigh.rst:348 +#: c-api/veryhigh.rst:356 msgid "" "Whenever ``PyCompilerFlags *flags`` is ``NULL``, :c:member:`~PyCompilerFlags." "cf_flags` is treated as equal to ``0``, and any modification due to ``from " "__future__ import`` is discarded." msgstr "" -#: c-api/veryhigh.rst:354 +#: c-api/veryhigh.rst:362 msgid "Compiler flags." msgstr "" -#: c-api/veryhigh.rst:358 +#: c-api/veryhigh.rst:366 msgid "" "*cf_feature_version* is the minor Python version. It should be initialized " "to ``PY_MINOR_VERSION``." msgstr "" -#: c-api/veryhigh.rst:361 +#: c-api/veryhigh.rst:369 msgid "" "The field is ignored by default, it is used if and only if ``PyCF_ONLY_AST`` " "flag is set in :c:member:`~PyCompilerFlags.cf_flags`." msgstr "" -#: c-api/veryhigh.rst:364 +#: c-api/veryhigh.rst:372 msgid "Added *cf_feature_version* field." msgstr "" -#: c-api/veryhigh.rst:370 +#: c-api/veryhigh.rst:378 msgid "" "This bit can be set in *flags* to cause division operator ``/`` to be " "interpreted as \"true division\" according to :pep:`238`." msgstr "" -#: c-api/veryhigh.rst:325 c-api/veryhigh.rst:334 +#: c-api/veryhigh.rst:333 c-api/veryhigh.rst:342 msgid "Py_CompileString()" msgstr "" diff --git a/distributing/index.po b/distributing/index.po index 6285c03d9..3987d8b71 100644 --- a/distributing/index.po +++ b/distributing/index.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2022-01-10 21:47+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -17,11 +17,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0.1\n" -#: distributing/index.rst:11 +#: distributing/index.rst:10 msgid "Distributing Python Modules" msgstr "Python Modüllerini Dağıtma" -#: distributing/index.rst:15 +#: distributing/index.rst:14 msgid "" "Information and guidance on distributing Python modules and packages has " "been moved to the `Python Packaging User Guide`_, and the tutorial on " diff --git a/distutils/_setuptools_disclaimer.po b/distutils/_setuptools_disclaimer.po deleted file mode 100644 index 78a51439e..000000000 --- a/distutils/_setuptools_disclaimer.po +++ /dev/null @@ -1,24 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" diff --git a/distutils/apiref.po b/distutils/apiref.po deleted file mode 100644 index 7408c74e0..000000000 --- a/distutils/apiref.po +++ /dev/null @@ -1,2482 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/apiref.rst:5 -msgid "API Reference" -msgstr "" - -#: distutils/apiref.rst:11 -msgid "`New and changed setup.py arguments in setuptools`_" -msgstr "" - -#: distutils/apiref.rst:10 -msgid "" -"The ``setuptools`` project adds new capabilities to the ``setup`` function " -"and other APIs, makes the API consistent across different Python versions, " -"and is hence recommended over using ``distutils`` directly." -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/apiref.rst:19 -msgid ":mod:`distutils.core` --- Core Distutils functionality" -msgstr "" - -#: distutils/apiref.rst:25 -msgid "" -"The :mod:`distutils.core` module is the only module that needs to be " -"installed to use the Distutils. It provides the :func:`setup` (which is " -"called from the setup script). Indirectly provides the :class:`distutils." -"dist.Distribution` and :class:`distutils.cmd.Command` class." -msgstr "" - -#: distutils/apiref.rst:33 -msgid "" -"The basic do-everything function that does most everything you could ever " -"ask for from a Distutils method." -msgstr "" - -#: distutils/apiref.rst:36 -msgid "" -"The setup function takes a large number of arguments. These are laid out in " -"the following table." -msgstr "" - -#: distutils/apiref.rst:185 -msgid "argument name" -msgstr "" - -#: distutils/apiref.rst:143 distutils/apiref.rst:185 -msgid "value" -msgstr "" - -#: distutils/apiref.rst:185 -msgid "type" -msgstr "" - -#: distutils/apiref.rst:187 -msgid "*name*" -msgstr "" - -#: distutils/apiref.rst:44 -msgid "The name of the package" -msgstr "" - -#: distutils/apiref.rst:46 distutils/apiref.rst:53 distutils/apiref.rst:58 -#: distutils/apiref.rst:68 distutils/apiref.rst:75 distutils/apiref.rst:106 -#: distutils/apiref.rst:278 -msgid "a string" -msgstr "" - -#: distutils/apiref.rst:46 -msgid "*version*" -msgstr "" - -#: distutils/apiref.rst:46 -msgid "The version number of the package; see :mod:`distutils.version`" -msgstr "" - -#: distutils/apiref.rst:50 -msgid "*description*" -msgstr "" - -#: distutils/apiref.rst:50 -msgid "A single line describing the package" -msgstr "" - -#: distutils/apiref.rst:53 -msgid "*long_description*" -msgstr "" - -#: distutils/apiref.rst:53 -msgid "Longer description of the package" -msgstr "" - -#: distutils/apiref.rst:56 -msgid "*author*" -msgstr "" - -#: distutils/apiref.rst:56 -msgid "The name of the package author" -msgstr "" - -#: distutils/apiref.rst:58 -msgid "*author_email*" -msgstr "" - -#: distutils/apiref.rst:58 -msgid "The email address of the package author" -msgstr "" - -#: distutils/apiref.rst:61 -msgid "*maintainer*" -msgstr "" - -#: distutils/apiref.rst:61 -msgid "" -"The name of the current maintainer, if different from the author. Note that " -"if the maintainer is provided, distutils will use it as the author in :file:" -"`PKG-INFO`" -msgstr "" - -#: distutils/apiref.rst:68 -msgid "*maintainer_email*" -msgstr "" - -#: distutils/apiref.rst:68 -msgid "" -"The email address of the current maintainer, if different from the author" -msgstr "" - -#: distutils/apiref.rst:72 -msgid "*url*" -msgstr "" - -#: distutils/apiref.rst:72 -msgid "A URL for the package (homepage)" -msgstr "" - -#: distutils/apiref.rst:75 -msgid "*download_url*" -msgstr "" - -#: distutils/apiref.rst:75 -msgid "A URL to download the package" -msgstr "" - -#: distutils/apiref.rst:77 -msgid "*packages*" -msgstr "" - -#: distutils/apiref.rst:77 -msgid "A list of Python packages that distutils will manipulate" -msgstr "" - -#: distutils/apiref.rst:80 distutils/apiref.rst:100 distutils/apiref.rst:207 -#: distutils/apiref.rst:226 distutils/apiref.rst:234 distutils/apiref.rst:247 -#: distutils/apiref.rst:267 distutils/apiref.rst:275 -msgid "a list of strings" -msgstr "" - -#: distutils/apiref.rst:80 -msgid "*py_modules*" -msgstr "" - -#: distutils/apiref.rst:80 -msgid "A list of Python modules that distutils will manipulate" -msgstr "" - -#: distutils/apiref.rst:83 -msgid "*scripts*" -msgstr "" - -#: distutils/apiref.rst:83 -msgid "A list of standalone script files to be built and installed" -msgstr "" - -#: distutils/apiref.rst:87 -msgid "*ext_modules*" -msgstr "" - -#: distutils/apiref.rst:87 -msgid "A list of Python extensions to be built" -msgstr "" - -#: distutils/apiref.rst:87 -msgid "a list of instances of :class:`distutils.core.Extension`" -msgstr "" - -#: distutils/apiref.rst:90 -msgid "*classifiers*" -msgstr "" - -#: distutils/apiref.rst:90 -msgid "A list of categories for the package" -msgstr "" - -#: distutils/apiref.rst:90 -msgid "" -"a list of strings; valid classifiers are listed on `PyPI `_." -msgstr "" - -#: distutils/apiref.rst:93 -msgid "*distclass*" -msgstr "" - -#: distutils/apiref.rst:93 -msgid "the :class:`Distribution` class to use" -msgstr "" - -#: distutils/apiref.rst:93 -msgid "a subclass of :class:`distutils.core.Distribution`" -msgstr "" - -#: distutils/apiref.rst:96 -msgid "*script_name*" -msgstr "" - -#: distutils/apiref.rst:96 -msgid "The name of the setup.py script - defaults to ``sys.argv[0]``" -msgstr "" - -#: distutils/apiref.rst:100 -msgid "*script_args*" -msgstr "" - -#: distutils/apiref.rst:100 -msgid "Arguments to supply to the setup script" -msgstr "" - -#: distutils/apiref.rst:103 -msgid "*options*" -msgstr "" - -#: distutils/apiref.rst:103 -msgid "default options for the setup script" -msgstr "" - -#: distutils/apiref.rst:113 distutils/apiref.rst:119 -msgid "a dictionary" -msgstr "" - -#: distutils/apiref.rst:106 -msgid "*license*" -msgstr "" - -#: distutils/apiref.rst:106 -msgid "The license for the package" -msgstr "" - -#: distutils/apiref.rst:108 -msgid "*keywords*" -msgstr "" - -#: distutils/apiref.rst:108 -msgid "Descriptive meta-data, see :pep:`314`" -msgstr "" - -#: distutils/apiref.rst:111 -msgid "a list of strings or a comma-separated string" -msgstr "" - -#: distutils/apiref.rst:111 -msgid "*platforms*" -msgstr "" - -#: distutils/apiref.rst:113 -msgid "*cmdclass*" -msgstr "" - -#: distutils/apiref.rst:113 -msgid "A mapping of command names to :class:`Command` subclasses" -msgstr "" - -#: distutils/apiref.rst:116 -msgid "*data_files*" -msgstr "" - -#: distutils/apiref.rst:116 -msgid "A list of data files to install" -msgstr "" - -#: distutils/apiref.rst:116 -msgid "a list" -msgstr "" - -#: distutils/apiref.rst:119 -msgid "*package_dir*" -msgstr "" - -#: distutils/apiref.rst:119 -msgid "A mapping of package to directory names" -msgstr "" - -#: distutils/apiref.rst:127 -msgid "" -"Run a setup script in a somewhat controlled environment, and return the :" -"class:`distutils.dist.Distribution` instance that drives things. This is " -"useful if you need to find out the distribution meta-data (passed as " -"keyword args from *script* to :func:`setup`), or the contents of the config " -"files or command-line." -msgstr "" - -#: distutils/apiref.rst:133 -msgid "" -"*script_name* is a file that will be read and run with :func:`exec`. ``sys." -"argv[0]`` will be replaced with *script* for the duration of the call. " -"*script_args* is a list of strings; if supplied, ``sys.argv[1:]`` will be " -"replaced by *script_args* for the duration of the call." -msgstr "" - -#: distutils/apiref.rst:138 -msgid "" -"*stop_after* tells :func:`setup` when to stop processing; possible values:" -msgstr "" - -#: distutils/apiref.rst:562 distutils/apiref.rst:1606 -msgid "description" -msgstr "" - -#: distutils/apiref.rst:145 -msgid "*init*" -msgstr "" - -#: distutils/apiref.rst:145 -msgid "" -"Stop after the :class:`Distribution` instance has been created and " -"populated with the keyword arguments to :func:`setup`" -msgstr "" - -#: distutils/apiref.rst:149 -msgid "*config*" -msgstr "" - -#: distutils/apiref.rst:149 -msgid "" -"Stop after config files have been parsed (and their data stored in the :" -"class:`Distribution` instance)" -msgstr "" - -#: distutils/apiref.rst:153 -msgid "*commandline*" -msgstr "" - -#: distutils/apiref.rst:153 -msgid "" -"Stop after the command-line (``sys.argv[1:]`` or *script_args*) have been " -"parsed (and the data stored in the :class:`Distribution` instance.)" -msgstr "" - -#: distutils/apiref.rst:158 -msgid "*run*" -msgstr "" - -#: distutils/apiref.rst:158 -msgid "" -"Stop after all commands have been run (the same as if :func:`setup` had " -"been called in the usual way). This is the default value." -msgstr "" - -#: distutils/apiref.rst:164 -msgid "" -"In addition, the :mod:`distutils.core` module exposed a number of classes " -"that live elsewhere." -msgstr "" - -#: distutils/apiref.rst:167 -msgid ":class:`~distutils.extension.Extension` from :mod:`distutils.extension`" -msgstr "" - -#: distutils/apiref.rst:169 -msgid ":class:`~distutils.cmd.Command` from :mod:`distutils.cmd`" -msgstr "" - -#: distutils/apiref.rst:171 -msgid ":class:`~distutils.dist.Distribution` from :mod:`distutils.dist`" -msgstr "" - -#: distutils/apiref.rst:173 -msgid "" -"A short description of each of these follows, but see the relevant module " -"for the full reference." -msgstr "" - -#: distutils/apiref.rst:179 -msgid "" -"The Extension class describes a single C or C++ extension module in a setup " -"script. It accepts the following keyword arguments in its constructor:" -msgstr "" - -#: distutils/apiref.rst:187 -msgid "" -"the full name of the extension, including any packages --- ie. *not* a " -"filename or pathname, but Python dotted name" -msgstr "" - -#: distutils/apiref.rst:193 -msgid "*sources*" -msgstr "" - -#: distutils/apiref.rst:193 -msgid "" -"list of source filenames, relative to the distribution root (where the setup " -"script lives), in Unix form (slash-separated) for portability. Source files " -"may be C, C++, SWIG (.i), platform-specific resource files, or whatever else " -"is recognized by the :command:`build_ext` command as source for a Python " -"extension." -msgstr "" - -#: distutils/apiref.rst:207 -msgid "*include_dirs*" -msgstr "" - -#: distutils/apiref.rst:207 -msgid "" -"list of directories to search for C/C++ header files (in Unix form for " -"portability)" -msgstr "" - -#: distutils/apiref.rst:211 -msgid "*define_macros*" -msgstr "" - -#: distutils/apiref.rst:211 -msgid "" -"list of macros to define; each macro is defined using a 2-tuple ``(name, " -"value)``, where *value* is either the string to define it to or ``None`` to " -"define it without a particular value (equivalent of ``#define FOO`` in " -"source or :option:`!-DFOO` on Unix C compiler command line)" -msgstr "" - -#: distutils/apiref.rst:211 -msgid "a list of tuples" -msgstr "" - -#: distutils/apiref.rst:223 -msgid "*undef_macros*" -msgstr "" - -#: distutils/apiref.rst:223 -msgid "list of macros to undefine explicitly" -msgstr "" - -#: distutils/apiref.rst:226 -msgid "*library_dirs*" -msgstr "" - -#: distutils/apiref.rst:226 -msgid "list of directories to search for C/C++ libraries at link time" -msgstr "" - -#: distutils/apiref.rst:230 -msgid "*libraries*" -msgstr "" - -#: distutils/apiref.rst:230 -msgid "list of library names (not filenames or paths) to link against" -msgstr "" - -#: distutils/apiref.rst:234 -msgid "*runtime_library_dirs*" -msgstr "" - -#: distutils/apiref.rst:234 -msgid "" -"list of directories to search for C/C++ libraries at run time (for shared " -"extensions, this is when the extension is loaded)" -msgstr "" - -#: distutils/apiref.rst:240 -msgid "*extra_objects*" -msgstr "" - -#: distutils/apiref.rst:240 -msgid "" -"list of extra files to link with (eg. object files not implied by 'sources', " -"static library that must be explicitly specified, binary resource files, " -"etc.)" -msgstr "" - -#: distutils/apiref.rst:247 -msgid "*extra_compile_args*" -msgstr "" - -#: distutils/apiref.rst:247 -msgid "" -"any extra platform- and compiler-specific information to use when compiling " -"the source files in 'sources'. For platforms and compilers where a command " -"line makes sense, this is typically a list of command-line arguments, but " -"for other platforms it could be anything." -msgstr "" - -#: distutils/apiref.rst:258 -msgid "*extra_link_args*" -msgstr "" - -#: distutils/apiref.rst:258 -msgid "" -"any extra platform- and compiler-specific information to use when linking " -"object files together to create the extension (or to create a new static " -"Python interpreter). Similar interpretation as for 'extra_compile_args'." -msgstr "" - -#: distutils/apiref.rst:267 -msgid "*export_symbols*" -msgstr "" - -#: distutils/apiref.rst:267 -msgid "" -"list of symbols to be exported from a shared extension. Not used on all " -"platforms, and not generally necessary for Python extensions, which " -"typically export exactly one symbol: ``init`` + extension_name." -msgstr "" - -#: distutils/apiref.rst:275 -msgid "*depends*" -msgstr "" - -#: distutils/apiref.rst:275 -msgid "list of files that the extension depends on" -msgstr "" - -#: distutils/apiref.rst:278 -msgid "*language*" -msgstr "" - -#: distutils/apiref.rst:278 -msgid "" -"extension language (i.e. ``'c'``, ``'c++'``, ``'objc'``). Will be detected " -"from the source extensions if not provided." -msgstr "" - -#: distutils/apiref.rst:284 -msgid "*optional*" -msgstr "" - -#: distutils/apiref.rst:284 -msgid "" -"specifies that a build failure in the extension should not abort the build " -"process, but simply skip the extension." -msgstr "" - -#: distutils/apiref.rst:284 -msgid "a boolean" -msgstr "" - -#: distutils/apiref.rst:292 -msgid "" -"On Unix, C extensions are no longer linked to libpython except on Android " -"and Cygwin." -msgstr "" - -#: distutils/apiref.rst:298 -msgid "" -"A :class:`Distribution` describes how to build, install and package up a " -"Python software package." -msgstr "" - -#: distutils/apiref.rst:301 -msgid "" -"See the :func:`setup` function for a list of keyword arguments accepted by " -"the Distribution constructor. :func:`setup` creates a Distribution instance." -msgstr "" - -#: distutils/apiref.rst:304 -msgid "" -":class:`~distutils.core.Distribution` now warns if ``classifiers``, " -"``keywords`` and ``platforms`` fields are not specified as a list or a " -"string." -msgstr "" - -#: distutils/apiref.rst:311 -msgid "" -"A :class:`Command` class (or rather, an instance of one of its subclasses) " -"implement a single distutils command." -msgstr "" - -#: distutils/apiref.rst:316 -msgid ":mod:`distutils.ccompiler` --- CCompiler base class" -msgstr "" - -#: distutils/apiref.rst:322 -msgid "" -"This module provides the abstract base class for the :class:`CCompiler` " -"classes. A :class:`CCompiler` instance can be used for all the compile and " -"link steps needed to build a single project. Methods are provided to set " -"options for the compiler --- macro definitions, include directories, link " -"path, libraries and the like." -msgstr "" - -#: distutils/apiref.rst:328 -msgid "This module provides the following functions." -msgstr "" - -#: distutils/apiref.rst:333 -msgid "" -"Generate linker options for searching library directories and linking with " -"specific libraries. *libraries* and *library_dirs* are, respectively, lists " -"of library names (not filenames!) and search directories. Returns a list of " -"command-line options suitable for use with some compiler (depending on the " -"two format strings passed in)." -msgstr "" - -#: distutils/apiref.rst:342 -msgid "" -"Generate C pre-processor options (:option:`!-D`, :option:`!-U`, :option:`!-" -"I`) as used by at least two types of compilers: the typical Unix compiler " -"and Visual C++. *macros* is the usual thing, a list of 1- or 2-tuples, where " -"``(name,)`` means undefine (:option:`!-U`) macro *name*, and ``(name, " -"value)`` means define (:option:`!-D`) macro *name* to *value*. " -"*include_dirs* is just a list of directory names to be added to the header " -"file search path (:option:`!-I`). Returns a list of command-line options " -"suitable for either Unix compilers or Visual C++." -msgstr "" - -#: distutils/apiref.rst:354 -msgid "Determine the default compiler to use for the given platform." -msgstr "" - -#: distutils/apiref.rst:356 -msgid "" -"*osname* should be one of the standard Python OS names (i.e. the ones " -"returned by ``os.name``) and *platform* the common value returned by ``sys." -"platform`` for the platform in question." -msgstr "" - -#: distutils/apiref.rst:360 -msgid "" -"The default values are ``os.name`` and ``sys.platform`` in case the " -"parameters are not given." -msgstr "" - -#: distutils/apiref.rst:366 -msgid "" -"Factory function to generate an instance of some CCompiler subclass for the " -"supplied platform/compiler combination. *plat* defaults to ``os.name`` (eg. " -"``'posix'``, ``'nt'``), and *compiler* defaults to the default compiler for " -"that platform. Currently only ``'posix'`` and ``'nt'`` are supported, and " -"the default compilers are \"traditional Unix interface\" (:class:" -"`UnixCCompiler` class) and Visual C++ (:class:`MSVCCompiler` class). Note " -"that it's perfectly possible to ask for a Unix compiler object under " -"Windows, and a Microsoft compiler object under Unix---if you supply a value " -"for *compiler*, *plat* is ignored." -msgstr "" - -#: distutils/apiref.rst:382 -msgid "" -"Print list of available compilers (used by the :option:`!--help-compiler` " -"options to :command:`build`, :command:`build_ext`, :command:`build_clib`)." -msgstr "" - -#: distutils/apiref.rst:388 -msgid "" -"The abstract base class :class:`CCompiler` defines the interface that must " -"be implemented by real compiler classes. The class also has some utility " -"methods used by several compiler classes." -msgstr "" - -#: distutils/apiref.rst:392 -msgid "" -"The basic idea behind a compiler abstraction class is that each instance can " -"be used for all the compile/link steps in building a single project. Thus, " -"attributes common to all of those compile and link steps --- include " -"directories, macros to define, libraries to link against, etc. --- are " -"attributes of the compiler instance. To allow for variability in how " -"individual files are treated, most of those attributes may be varied on a " -"per-compilation or per-link basis." -msgstr "" - -#: distutils/apiref.rst:400 -msgid "" -"The constructor for each subclass creates an instance of the Compiler " -"object. Flags are *verbose* (show verbose output), *dry_run* (don't actually " -"execute the steps) and *force* (rebuild everything, regardless of " -"dependencies). All of these flags default to ``0`` (off). Note that you " -"probably don't want to instantiate :class:`CCompiler` or one of its " -"subclasses directly - use the :func:`distutils.CCompiler.new_compiler` " -"factory function instead." -msgstr "" - -#: distutils/apiref.rst:407 -msgid "" -"The following methods allow you to manually alter compiler options for the " -"instance of the Compiler class." -msgstr "" - -#: distutils/apiref.rst:413 -msgid "" -"Add *dir* to the list of directories that will be searched for header files. " -"The compiler is instructed to search directories in the order in which they " -"are supplied by successive calls to :meth:`add_include_dir`." -msgstr "" - -#: distutils/apiref.rst:420 -msgid "" -"Set the list of directories that will be searched to *dirs* (a list of " -"strings). Overrides any preceding calls to :meth:`add_include_dir`; " -"subsequent calls to :meth:`add_include_dir` add to the list passed to :meth:" -"`set_include_dirs`. This does not affect any list of standard include " -"directories that the compiler may search by default." -msgstr "" - -#: distutils/apiref.rst:429 -msgid "" -"Add *libname* to the list of libraries that will be included in all links " -"driven by this compiler object. Note that *libname* should \\*not\\* be the " -"name of a file containing a library, but the name of the library itself: the " -"actual filename will be inferred by the linker, the compiler, or the " -"compiler class (depending on the platform)." -msgstr "" - -#: distutils/apiref.rst:435 -msgid "" -"The linker will be instructed to link against libraries in the order they " -"were supplied to :meth:`add_library` and/or :meth:`set_libraries`. It is " -"perfectly valid to duplicate library names; the linker will be instructed to " -"link against libraries as many times as they are mentioned." -msgstr "" - -#: distutils/apiref.rst:443 -msgid "" -"Set the list of libraries to be included in all links driven by this " -"compiler object to *libnames* (a list of strings). This does not affect any " -"standard system libraries that the linker may include by default." -msgstr "" - -#: distutils/apiref.rst:450 -msgid "" -"Add *dir* to the list of directories that will be searched for libraries " -"specified to :meth:`add_library` and :meth:`set_libraries`. The linker will " -"be instructed to search for libraries in the order they are supplied to :" -"meth:`add_library_dir` and/or :meth:`set_library_dirs`." -msgstr "" - -#: distutils/apiref.rst:458 -msgid "" -"Set the list of library search directories to *dirs* (a list of strings). " -"This does not affect any standard library search path that the linker may " -"search by default." -msgstr "" - -#: distutils/apiref.rst:465 -msgid "" -"Add *dir* to the list of directories that will be searched for shared " -"libraries at runtime." -msgstr "" - -#: distutils/apiref.rst:471 -msgid "" -"Set the list of directories to search for shared libraries at runtime to " -"*dirs* (a list of strings). This does not affect any standard search path " -"that the runtime linker may search by default." -msgstr "" - -#: distutils/apiref.rst:478 -msgid "" -"Define a preprocessor macro for all compilations driven by this compiler " -"object. The optional parameter *value* should be a string; if it is not " -"supplied, then the macro will be defined without an explicit value and the " -"exact outcome depends on the compiler used." -msgstr "" - -#: distutils/apiref.rst:488 -msgid "" -"Undefine a preprocessor macro for all compilations driven by this compiler " -"object. If the same macro is defined by :meth:`define_macro` and undefined " -"by :meth:`undefine_macro` the last call takes precedence (including multiple " -"redefinitions or undefinitions). If the macro is redefined/undefined on a " -"per-compilation basis (ie. in the call to :meth:`compile`), then that takes " -"precedence." -msgstr "" - -#: distutils/apiref.rst:498 -msgid "" -"Add *object* to the list of object files (or analogues, such as explicitly " -"named library files or the output of \"resource compilers\") to be included " -"in every link driven by this compiler object." -msgstr "" - -#: distutils/apiref.rst:505 -msgid "" -"Set the list of object files (or analogues) to be included in every link to " -"*objects*. This does not affect any standard object files that the linker " -"may include by default (such as system libraries)." -msgstr "" - -#: distutils/apiref.rst:509 -msgid "" -"The following methods implement methods for autodetection of compiler " -"options, providing some functionality similar to GNU :program:`autoconf`." -msgstr "" - -#: distutils/apiref.rst:515 -msgid "" -"Detect the language of a given file, or list of files. Uses the instance " -"attributes :attr:`language_map` (a dictionary), and :attr:`language_order` " -"(a list) to do the job." -msgstr "" - -#: distutils/apiref.rst:522 -msgid "" -"Search the specified list of directories for a static or shared library file " -"*lib* and return the full path to that file. If *debug* is true, look for a " -"debugging version (if that makes sense on the current platform). Return " -"``None`` if *lib* wasn't found in any of the specified directories." -msgstr "" - -#: distutils/apiref.rst:530 -msgid "" -"Return a boolean indicating whether *funcname* is supported on the current " -"platform. The optional arguments can be used to augment the compilation " -"environment by providing additional include files and paths and libraries " -"and paths." -msgstr "" - -#: distutils/apiref.rst:538 -msgid "" -"Return the compiler option to add *dir* to the list of directories searched " -"for libraries." -msgstr "" - -#: distutils/apiref.rst:544 -msgid "" -"Return the compiler option to add *lib* to the list of libraries linked into " -"the shared library or executable." -msgstr "" - -#: distutils/apiref.rst:550 -msgid "" -"Return the compiler option to add *dir* to the list of directories searched " -"for runtime libraries." -msgstr "" - -#: distutils/apiref.rst:556 -msgid "" -"Define the executables (and options for them) that will be run to perform " -"the various stages of compilation. The exact set of executables that may be " -"specified here depends on the compiler class (via the 'executables' class " -"attribute), but most will have:" -msgstr "" - -#: distutils/apiref.rst:562 -msgid "attribute" -msgstr "" - -#: distutils/apiref.rst:564 -msgid "*compiler*" -msgstr "" - -#: distutils/apiref.rst:564 -msgid "the C/C++ compiler" -msgstr "" - -#: distutils/apiref.rst:566 -msgid "*linker_so*" -msgstr "" - -#: distutils/apiref.rst:566 -msgid "linker used to create shared objects and libraries" -msgstr "" - -#: distutils/apiref.rst:569 -msgid "*linker_exe*" -msgstr "" - -#: distutils/apiref.rst:569 -msgid "linker used to create binary executables" -msgstr "" - -#: distutils/apiref.rst:571 -msgid "*archiver*" -msgstr "" - -#: distutils/apiref.rst:571 -msgid "static library creator" -msgstr "" - -#: distutils/apiref.rst:574 -msgid "" -"On platforms with a command-line (Unix, DOS/Windows), each of these is a " -"string that will be split into executable name and (optional) list of " -"arguments. (Splitting the string is done similarly to how Unix shells " -"operate: words are delimited by spaces, but quotes and backslashes can " -"override this. See :func:`distutils.util.split_quoted`.)" -msgstr "" - -#: distutils/apiref.rst:580 -msgid "The following methods invoke stages in the build process." -msgstr "" - -#: distutils/apiref.rst:585 -msgid "" -"Compile one or more source files. Generates object files (e.g. transforms " -"a :file:`.c` file to a :file:`.o` file.)" -msgstr "" - -#: distutils/apiref.rst:588 -msgid "" -"*sources* must be a list of filenames, most likely C/C++ files, but in " -"reality anything that can be handled by a particular compiler and compiler " -"class (eg. :class:`MSVCCompiler` can handle resource files in *sources*). " -"Return a list of object filenames, one per source filename in *sources*. " -"Depending on the implementation, not all source files will necessarily be " -"compiled, but all corresponding object filenames will be returned." -msgstr "" - -#: distutils/apiref.rst:595 -msgid "" -"If *output_dir* is given, object files will be put under it, while retaining " -"their original path component. That is, :file:`foo/bar.c` normally compiles " -"to :file:`foo/bar.o` (for a Unix implementation); if *output_dir* is " -"*build*, then it would compile to :file:`build/foo/bar.o`." -msgstr "" - -#: distutils/apiref.rst:600 -msgid "" -"*macros*, if given, must be a list of macro definitions. A macro definition " -"is either a ``(name, value)`` 2-tuple or a ``(name,)`` 1-tuple. The former " -"defines a macro; if the value is ``None``, the macro is defined without an " -"explicit value. The 1-tuple case undefines a macro. Later definitions/" -"redefinitions/undefinitions take precedence." -msgstr "" - -#: distutils/apiref.rst:606 -msgid "" -"*include_dirs*, if given, must be a list of strings, the directories to add " -"to the default include file search path for this compilation only." -msgstr "" - -#: distutils/apiref.rst:609 -msgid "" -"*debug* is a boolean; if true, the compiler will be instructed to output " -"debug symbols in (or alongside) the object file(s)." -msgstr "" - -#: distutils/apiref.rst:612 -msgid "" -"*extra_preargs* and *extra_postargs* are implementation-dependent. On " -"platforms that have the notion of a command-line (e.g. Unix, DOS/Windows), " -"they are most likely lists of strings: extra command-line arguments to " -"prepend/append to the compiler command line. On other platforms, consult " -"the implementation class documentation. In any event, they are intended as " -"an escape hatch for those occasions when the abstract compiler framework " -"doesn't cut the mustard." -msgstr "" - -#: distutils/apiref.rst:619 -msgid "" -"*depends*, if given, is a list of filenames that all targets depend on. If " -"a source file is older than any file in depends, then the source file will " -"be recompiled. This supports dependency tracking, but only at a coarse " -"granularity." -msgstr "" - -#: distutils/apiref.rst:624 -msgid "Raises :exc:`CompileError` on failure." -msgstr "" - -#: distutils/apiref.rst:629 -msgid "" -"Link a bunch of stuff together to create a static library file. The \"bunch " -"of stuff\" consists of the list of object files supplied as *objects*, the " -"extra object files supplied to :meth:`add_link_object` and/or :meth:" -"`set_link_objects`, the libraries supplied to :meth:`add_library` and/or :" -"meth:`set_libraries`, and the libraries supplied as *libraries* (if any)." -msgstr "" - -#: distutils/apiref.rst:635 -msgid "" -"*output_libname* should be a library name, not a filename; the filename will " -"be inferred from the library name. *output_dir* is the directory where the " -"library file will be put." -msgstr "" - -#: distutils/apiref.rst:641 -msgid "" -"*debug* is a boolean; if true, debugging information will be included in the " -"library (note that on most platforms, it is the compile step where this " -"matters: the *debug* flag is included here just for consistency)." -msgstr "" - -#: distutils/apiref.rst:687 -msgid "" -"*target_lang* is the target language for which the given objects are being " -"compiled. This allows specific linkage time treatment of certain languages." -msgstr "" - -#: distutils/apiref.rst:648 -msgid "Raises :exc:`LibError` on failure." -msgstr "" - -#: distutils/apiref.rst:653 -msgid "" -"Link a bunch of stuff together to create an executable or shared library " -"file." -msgstr "" - -#: distutils/apiref.rst:655 -msgid "" -"The \"bunch of stuff\" consists of the list of object files supplied as " -"*objects*. *output_filename* should be a filename. If *output_dir* is " -"supplied, *output_filename* is relative to it (i.e. *output_filename* can " -"provide directory components if needed)." -msgstr "" - -#: distutils/apiref.rst:660 -msgid "" -"*libraries* is a list of libraries to link against. These are library " -"names, not filenames, since they're translated into filenames in a platform-" -"specific way (eg. *foo* becomes :file:`libfoo.a` on Unix and :file:`foo.lib` " -"on DOS/Windows). However, they can include a directory component, which " -"means the linker will look in that specific directory rather than searching " -"all the normal locations." -msgstr "" - -#: distutils/apiref.rst:667 -msgid "" -"*library_dirs*, if supplied, should be a list of directories to search for " -"libraries that were specified as bare library names (ie. no directory " -"component). These are on top of the system default and those supplied to :" -"meth:`add_library_dir` and/or :meth:`set_library_dirs`. " -"*runtime_library_dirs* is a list of directories that will be embedded into " -"the shared library and used to search for other shared libraries that " -"\\*it\\* depends on at run-time. (This may only be relevant on Unix.)" -msgstr "" - -#: distutils/apiref.rst:675 -msgid "" -"*export_symbols* is a list of symbols that the shared library will export. " -"(This appears to be relevant only on Windows.)" -msgstr "" - -#: distutils/apiref.rst:678 -msgid "" -"*debug* is as for :meth:`compile` and :meth:`create_static_lib`, with the " -"slight distinction that it actually matters on most platforms (as opposed " -"to :meth:`create_static_lib`, which includes a *debug* flag mostly for " -"form's sake)." -msgstr "" - -#: distutils/apiref.rst:683 -msgid "" -"*extra_preargs* and *extra_postargs* are as for :meth:`compile` (except of " -"course that they supply command-line arguments for the particular linker " -"being used)." -msgstr "" - -#: distutils/apiref.rst:690 -msgid "Raises :exc:`LinkError` on failure." -msgstr "" - -#: distutils/apiref.rst:695 -msgid "" -"Link an executable. *output_progname* is the name of the file executable, " -"while *objects* are a list of object filenames to link in. Other arguments " -"are as for the :meth:`link` method." -msgstr "" - -#: distutils/apiref.rst:702 -msgid "" -"Link a shared library. *output_libname* is the name of the output library, " -"while *objects* is a list of object filenames to link in. Other arguments " -"are as for the :meth:`link` method." -msgstr "" - -#: distutils/apiref.rst:709 -msgid "" -"Link a shared object. *output_filename* is the name of the shared object " -"that will be created, while *objects* is a list of object filenames to link " -"in. Other arguments are as for the :meth:`link` method." -msgstr "" - -#: distutils/apiref.rst:716 -msgid "" -"Preprocess a single C/C++ source file, named in *source*. Output will be " -"written to file named *output_file*, or *stdout* if *output_file* not " -"supplied. *macros* is a list of macro definitions as for :meth:`compile`, " -"which will augment the macros set with :meth:`define_macro` and :meth:" -"`undefine_macro`. *include_dirs* is a list of directory names that will be " -"added to the default list, in the same way as :meth:`add_include_dir`." -msgstr "" - -#: distutils/apiref.rst:723 -msgid "Raises :exc:`PreprocessError` on failure." -msgstr "" - -#: distutils/apiref.rst:725 -msgid "" -"The following utility methods are defined by the :class:`CCompiler` class, " -"for use by the various concrete subclasses." -msgstr "" - -#: distutils/apiref.rst:731 -msgid "" -"Returns the filename of the executable for the given *basename*. Typically " -"for non-Windows platforms this is the same as the basename, while Windows " -"will get a :file:`.exe` added." -msgstr "" - -#: distutils/apiref.rst:738 -msgid "" -"Returns the filename for the given library name on the current platform. On " -"Unix a library with *lib_type* of ``'static'`` will typically be of the " -"form :file:`liblibname.a`, while a *lib_type* of ``'dynamic'`` will be of " -"the form :file:`liblibname.so`." -msgstr "" - -#: distutils/apiref.rst:746 -msgid "" -"Returns the name of the object files for the given source files. " -"*source_filenames* should be a list of filenames." -msgstr "" - -#: distutils/apiref.rst:752 -msgid "" -"Returns the name of a shared object file for the given file name *basename*." -msgstr "" - -#: distutils/apiref.rst:757 -msgid "" -"Invokes :func:`distutils.util.execute`. This method invokes a Python " -"function *func* with the given arguments *args*, after logging and taking " -"into account the *dry_run* flag." -msgstr "" - -#: distutils/apiref.rst:764 -msgid "" -"Invokes :func:`distutils.util.spawn`. This invokes an external process to " -"run the given command." -msgstr "" - -#: distutils/apiref.rst:770 -msgid "" -"Invokes :func:`distutils.dir_util.mkpath`. This creates a directory and any " -"missing ancestor directories." -msgstr "" - -#: distutils/apiref.rst:776 -msgid "Invokes :meth:`distutils.file_util.move_file`. Renames *src* to *dst*." -msgstr "" - -#: distutils/apiref.rst:781 -msgid "Write a message using :func:`distutils.log.debug`." -msgstr "" - -#: distutils/apiref.rst:786 -msgid "Write a warning message *msg* to standard error." -msgstr "" - -#: distutils/apiref.rst:791 -msgid "" -"If the *debug* flag is set on this :class:`CCompiler` instance, print *msg* " -"to standard output, otherwise do nothing." -msgstr "" - -#: distutils/apiref.rst:803 -msgid ":mod:`distutils.unixccompiler` --- Unix C Compiler" -msgstr "" - -#: distutils/apiref.rst:809 -msgid "" -"This module provides the :class:`UnixCCompiler` class, a subclass of :class:" -"`CCompiler` that handles the typical Unix-style command-line C compiler:" -msgstr "" - -#: distutils/apiref.rst:812 -msgid "macros defined with :option:`!-Dname[=value]`" -msgstr "" - -#: distutils/apiref.rst:814 -msgid "macros undefined with :option:`!-Uname`" -msgstr "" - -#: distutils/apiref.rst:816 -msgid "include search directories specified with :option:`!-Idir`" -msgstr "" - -#: distutils/apiref.rst:818 -msgid "libraries specified with :option:`!-llib`" -msgstr "" - -#: distutils/apiref.rst:820 -msgid "library search directories specified with :option:`!-Ldir`" -msgstr "" - -#: distutils/apiref.rst:822 -msgid "" -"compile handled by :program:`cc` (or similar) executable with :option:`!-c` " -"option: compiles :file:`.c` to :file:`.o`" -msgstr "" - -#: distutils/apiref.rst:825 -msgid "" -"link static library handled by :program:`ar` command (possibly with :program:" -"`ranlib`)" -msgstr "" - -#: distutils/apiref.rst:828 -msgid "link shared library handled by :program:`cc` :option:`!-shared`" -msgstr "" - -#: distutils/apiref.rst:832 -msgid ":mod:`distutils.msvccompiler` --- Microsoft Compiler" -msgstr "" - -#: distutils/apiref.rst:839 -msgid "" -"This module provides :class:`MSVCCompiler`, an implementation of the " -"abstract :class:`CCompiler` class for Microsoft Visual Studio. Typically, " -"extension modules need to be compiled with the same compiler that was used " -"to compile Python. For Python 2.3 and earlier, the compiler was Visual " -"Studio 6. For Python 2.4 and 2.5, the compiler is Visual Studio .NET 2003." -msgstr "" - -#: distutils/apiref.rst:845 -msgid "" -":class:`MSVCCompiler` will normally choose the right compiler, linker etc. " -"on its own. To override this choice, the environment variables " -"*DISTUTILS_USE_SDK* and *MSSdk* must be both set. *MSSdk* indicates that the " -"current environment has been setup by the SDK's ``SetEnv.Cmd`` script, or " -"that the environment variables had been registered when the SDK was " -"installed; *DISTUTILS_USE_SDK* indicates that the distutils user has made an " -"explicit choice to override the compiler selection by :class:`MSVCCompiler`." -msgstr "" - -#: distutils/apiref.rst:855 -msgid ":mod:`distutils.bcppcompiler` --- Borland Compiler" -msgstr "" - -#: distutils/apiref.rst:860 -msgid "" -"This module provides :class:`BorlandCCompiler`, a subclass of the abstract :" -"class:`CCompiler` class for the Borland C++ compiler." -msgstr "" - -#: distutils/apiref.rst:865 -msgid ":mod:`distutils.cygwincompiler` --- Cygwin Compiler" -msgstr "" - -#: distutils/apiref.rst:870 -msgid "" -"This module provides the :class:`CygwinCCompiler` class, a subclass of :" -"class:`UnixCCompiler` that handles the Cygwin port of the GNU C compiler to " -"Windows. It also contains the Mingw32CCompiler class which handles the " -"mingw32 port of GCC (same as cygwin in no-cygwin mode)." -msgstr "" - -#: distutils/apiref.rst:877 -msgid ":mod:`distutils.archive_util` --- Archiving utilities" -msgstr "" - -#: distutils/apiref.rst:883 -msgid "" -"This module provides a few functions for creating archive files, such as " -"tarballs or zipfiles." -msgstr "" - -#: distutils/apiref.rst:889 -msgid "" -"Create an archive file (eg. ``zip`` or ``tar``). *base_name* is the name " -"of the file to create, minus any format-specific extension; *format* is the " -"archive format: one of ``zip``, ``tar``, ``gztar``, ``bztar``, ``xztar``, or " -"``ztar``. *root_dir* is a directory that will be the root directory of the " -"archive; ie. we typically ``chdir`` into *root_dir* before creating the " -"archive. *base_dir* is the directory where we start archiving from; ie. " -"*base_dir* will be the common prefix of all files and directories in the " -"archive. *root_dir* and *base_dir* both default to the current directory. " -"Returns the name of the archive file." -msgstr "" - -#: distutils/apiref.rst:899 -msgid "Added support for the ``xztar`` format." -msgstr "" - -#: distutils/apiref.rst:905 -msgid "" -"'Create an (optional compressed) archive as a tar file from all files in and " -"under *base_dir*. *compress* must be ``'gzip'`` (the default), ``'bzip2'``, " -"``'xz'``, ``'compress'``, or ``None``. For the ``'compress'`` method the " -"compression utility named by :program:`compress` must be on the default " -"program search path, so this is probably Unix-specific. The output tar file " -"will be named :file:`base_dir.tar`, possibly plus the appropriate " -"compression extension (``.gz``, ``.bz2``, ``.xz`` or ``.Z``). Return the " -"output filename." -msgstr "" - -#: distutils/apiref.rst:914 -msgid "Added support for the ``xz`` compression." -msgstr "" - -#: distutils/apiref.rst:920 -msgid "" -"Create a zip file from all files in and under *base_dir*. The output zip " -"file will be named *base_name* + :file:`.zip`. Uses either the :mod:" -"`zipfile` Python module (if available) or the InfoZIP :file:`zip` utility " -"(if installed and found on the default search path). If neither tool is " -"available, raises :exc:`DistutilsExecError`. Returns the name of the " -"output zip file." -msgstr "" - -#: distutils/apiref.rst:928 -msgid ":mod:`distutils.dep_util` --- Dependency checking" -msgstr "" - -#: distutils/apiref.rst:934 -msgid "" -"This module provides functions for performing simple, timestamp-based " -"dependency of files and groups of files; also, functions based entirely on " -"such timestamp dependency analysis." -msgstr "" - -#: distutils/apiref.rst:941 -msgid "" -"Return true if *source* exists and is more recently modified than *target*, " -"or if *source* exists and *target* doesn't. Return false if both exist and " -"*target* is the same age or newer than *source*. Raise :exc:" -"`DistutilsFileError` if *source* does not exist." -msgstr "" - -#: distutils/apiref.rst:949 -msgid "" -"Walk two filename lists in parallel, testing if each source is newer than " -"its corresponding target. Return a pair of lists (*sources*, *targets*) " -"where source is newer than target, according to the semantics of :func:" -"`newer`." -msgstr "" - -#: distutils/apiref.rst:958 -msgid "" -"Return true if *target* is out-of-date with respect to any file listed in " -"*sources*. In other words, if *target* exists and is newer than every file " -"in *sources*, return false; otherwise return true. *missing* controls what " -"we do when a source file is missing; the default (``'error'``) is to blow up " -"with an :exc:`OSError` from inside :func:`os.stat`; if it is ``'ignore'``, " -"we silently drop any missing source files; if it is ``'newer'``, any missing " -"source files make us assume that *target* is out-of-date (this is handy in " -"\"dry-run\" mode: it'll make you pretend to carry out commands that wouldn't " -"work because inputs are missing, but that doesn't matter because you're not " -"actually going to run the commands)." -msgstr "" - -#: distutils/apiref.rst:971 -msgid ":mod:`distutils.dir_util` --- Directory tree operations" -msgstr "" - -#: distutils/apiref.rst:977 -msgid "" -"This module provides functions for operating on directories and trees of " -"directories." -msgstr "" - -#: distutils/apiref.rst:983 -msgid "" -"Create a directory and any missing ancestor directories. If the directory " -"already exists (or if *name* is the empty string, which means the current " -"directory, which of course exists), then do nothing. Raise :exc:" -"`DistutilsFileError` if unable to create some directory along the way (eg. " -"some sub-path exists, but is a file rather than a directory). If *verbose* " -"is true, print a one-line summary of each mkdir to stdout. Return the list " -"of directories actually created." -msgstr "" - -#: distutils/apiref.rst:994 -msgid "" -"Create all the empty directories under *base_dir* needed to put *files* " -"there. *base_dir* is just the name of a directory which doesn't necessarily " -"exist yet; *files* is a list of filenames to be interpreted relative to " -"*base_dir*. *base_dir* + the directory portion of every file in *files* will " -"be created if it doesn't already exist. *mode*, *verbose* and *dry_run* " -"flags are as for :func:`mkpath`." -msgstr "" - -#: distutils/apiref.rst:1004 -msgid "" -"Copy an entire directory tree *src* to a new location *dst*. Both *src* and " -"*dst* must be directory names. If *src* is not a directory, raise :exc:" -"`DistutilsFileError`. If *dst* does not exist, it is created with :func:" -"`mkpath`. The end result of the copy is that every file in *src* is copied " -"to *dst*, and directories under *src* are recursively copied to *dst*. " -"Return the list of files that were copied or might have been copied, using " -"their output name. The return value is unaffected by *update* or *dry_run*: " -"it is simply the list of all files under *src*, with the names changed to be " -"under *dst*." -msgstr "" - -#: distutils/apiref.rst:1014 -msgid "" -"*preserve_mode* and *preserve_times* are the same as for :func:`distutils." -"file_util.copy_file`; note that they only apply to regular files, not to " -"directories. If *preserve_symlinks* is true, symlinks will be copied as " -"symlinks (on platforms that support them!); otherwise (the default), the " -"destination of the symlink will be copied. *update* and *verbose* are the " -"same as for :func:`copy_file`." -msgstr "" - -#: distutils/apiref.rst:1022 -msgid "" -"Files in *src* that begin with :file:`.nfs` are skipped (more information on " -"these files is available in answer D2 of the `NFS FAQ page `_)." -msgstr "" - -#: distutils/apiref.rst:1026 -msgid "NFS files are ignored." -msgstr "" - -#: distutils/apiref.rst:1031 -msgid "" -"Recursively remove *directory* and all files and directories underneath it. " -"Any errors are ignored (apart from being reported to ``sys.stdout`` if " -"*verbose* is true)." -msgstr "" - -#: distutils/apiref.rst:1037 -msgid ":mod:`distutils.file_util` --- Single file operations" -msgstr "" - -#: distutils/apiref.rst:1043 -msgid "" -"This module contains some utility functions for operating on individual " -"files." -msgstr "" - -#: distutils/apiref.rst:1048 -msgid "" -"Copy file *src* to *dst*. If *dst* is a directory, then *src* is copied " -"there with the same name; otherwise, it must be a filename. (If the file " -"exists, it will be ruthlessly clobbered.) If *preserve_mode* is true (the " -"default), the file's mode (type and permission bits, or whatever is " -"analogous on the current platform) is copied. If *preserve_times* is true " -"(the default), the last-modified and last-access times are copied as well. " -"If *update* is true, *src* will only be copied if *dst* does not exist, or " -"if *dst* does exist but is older than *src*." -msgstr "" - -#: distutils/apiref.rst:1057 -msgid "" -"*link* allows you to make hard links (using :func:`os.link`) or symbolic " -"links (using :func:`os.symlink`) instead of copying: set it to ``'hard'`` or " -"``'sym'``; if it is ``None`` (the default), files are copied. Don't set " -"*link* on systems that don't support it: :func:`copy_file` doesn't check if " -"hard or symbolic linking is available. It uses :func:`_copy_file_contents` " -"to copy file contents." -msgstr "" - -#: distutils/apiref.rst:1064 -msgid "" -"Return a tuple ``(dest_name, copied)``: *dest_name* is the actual name of " -"the output file, and *copied* is true if the file was copied (or would have " -"been copied, if *dry_run* true)." -msgstr "" - -#: distutils/apiref.rst:1078 -msgid "" -"Move file *src* to *dst*. If *dst* is a directory, the file will be moved " -"into it with the same name; otherwise, *src* is just renamed to *dst*. " -"Returns the new full name of the file." -msgstr "" - -#: distutils/apiref.rst:1084 -msgid "" -"Handles cross-device moves on Unix using :func:`copy_file`. What about " -"other systems?" -msgstr "" - -#: distutils/apiref.rst:1090 -msgid "" -"Create a file called *filename* and write *contents* (a sequence of strings " -"without line terminators) to it." -msgstr "" - -#: distutils/apiref.rst:1095 -msgid ":mod:`distutils.util` --- Miscellaneous other utility functions" -msgstr "" - -#: distutils/apiref.rst:1101 -msgid "" -"This module contains other assorted bits and pieces that don't fit into any " -"other utility module." -msgstr "" - -#: distutils/apiref.rst:1107 -msgid "" -"Return a string that identifies the current platform. This is used mainly " -"to distinguish platform-specific build directories and platform-specific " -"built distributions. Typically includes the OS name and version and the " -"architecture (as supplied by 'os.uname()'), although the exact information " -"included depends on the OS; e.g., on Linux, the kernel version isn't " -"particularly important." -msgstr "" - -#: distutils/apiref.rst:1114 -msgid "Examples of returned values:" -msgstr "" - -#: distutils/apiref.rst:1116 -msgid "``linux-i586``" -msgstr "" - -#: distutils/apiref.rst:1117 -msgid "``linux-alpha``" -msgstr "" - -#: distutils/apiref.rst:1118 -msgid "``solaris-2.6-sun4u``" -msgstr "" - -#: distutils/apiref.rst:1120 -msgid "For non-POSIX platforms, currently just returns ``sys.platform``." -msgstr "" - -#: distutils/apiref.rst:1122 -msgid "" -"For macOS systems the OS version reflects the minimal version on which " -"binaries will run (that is, the value of ``MACOSX_DEPLOYMENT_TARGET`` during " -"the build of Python), not the OS version of the current system." -msgstr "" - -#: distutils/apiref.rst:1126 -msgid "" -"For universal binary builds on macOS the architecture value reflects the " -"universal binary status instead of the architecture of the current " -"processor. For 32-bit universal binaries the architecture is ``fat``, for 64-" -"bit universal binaries the architecture is ``fat64``, and for 4-way " -"universal binaries the architecture is ``universal``. Starting from Python " -"2.7 and Python 3.2 the architecture ``fat3`` is used for a 3-way universal " -"build (ppc, i386, x86_64) and ``intel`` is used for a universal build with " -"the i386 and x86_64 architectures" -msgstr "" - -#: distutils/apiref.rst:1135 -msgid "Examples of returned values on macOS:" -msgstr "" - -#: distutils/apiref.rst:1137 -msgid "``macosx-10.3-ppc``" -msgstr "" - -#: distutils/apiref.rst:1139 -msgid "``macosx-10.3-fat``" -msgstr "" - -#: distutils/apiref.rst:1141 -msgid "``macosx-10.5-universal``" -msgstr "" - -#: distutils/apiref.rst:1143 -msgid "``macosx-10.6-intel``" -msgstr "" - -#: distutils/apiref.rst:1145 -msgid "" -"For AIX, Python 3.9 and later return a string starting with \"aix\", " -"followed by additional fields (separated by ``'-'``) that represent the " -"combined values of AIX Version, Release and Technology Level (first field), " -"Build Date (second field), and bit-size (third field). Python 3.8 and " -"earlier returned only a single additional field with the AIX Version and " -"Release." -msgstr "" - -#: distutils/apiref.rst:1151 -msgid "Examples of returned values on AIX:" -msgstr "" - -#: distutils/apiref.rst:1153 -msgid "" -"``aix-5307-0747-32`` # 32-bit build on AIX ``oslevel -s``: 5300-07-00-0000" -msgstr "" - -#: distutils/apiref.rst:1155 -msgid "" -"``aix-7105-1731-64`` # 64-bit build on AIX ``oslevel -s``: 7100-05-01-1731" -msgstr "" - -#: distutils/apiref.rst:1157 -msgid "``aix-7.2`` # Legacy form reported in Python 3.8 and earlier" -msgstr "" - -#: distutils/apiref.rst:1159 -msgid "" -"The AIX platform string format now also includes the technology level, build " -"date, and ABI bit-size." -msgstr "" - -#: distutils/apiref.rst:1166 -msgid "" -"Return 'pathname' as a name that will work on the native filesystem, i.e. " -"split it on '/' and put it back together again using the current directory " -"separator. Needed because filenames in the setup script are always supplied " -"in Unix style, and have to be converted to the local convention before we " -"can actually use them in the filesystem. Raises :exc:`ValueError` on non-" -"Unix-ish systems if *pathname* either starts or ends with a slash." -msgstr "" - -#: distutils/apiref.rst:1176 -msgid "" -"Return *pathname* with *new_root* prepended. If *pathname* is relative, " -"this is equivalent to ``os.path.join(new_root,pathname)`` Otherwise, it " -"requires making *pathname* relative and then joining the two, which is " -"tricky on DOS/Windows." -msgstr "" - -#: distutils/apiref.rst:1183 -msgid "" -"Ensure that 'os.environ' has all the environment variables we guarantee that " -"users can use in config files, command-line options, etc. Currently this " -"includes:" -msgstr "" - -#: distutils/apiref.rst:1187 -msgid ":envvar:`HOME` - user's home directory (Unix only)" -msgstr "" - -#: distutils/apiref.rst:1188 -msgid "" -":envvar:`PLAT` - description of the current platform, including hardware and " -"OS (see :func:`get_platform`)" -msgstr "" - -#: distutils/apiref.rst:1194 -msgid "" -"Perform shell/Perl-style variable substitution on *s*. Every occurrence of " -"``$`` followed by a name is considered a variable, and variable is " -"substituted by the value found in the *local_vars* dictionary, or in ``os." -"environ`` if it's not in *local_vars*. *os.environ* is first checked/" -"augmented to guarantee that it contains certain values: see :func:" -"`check_environ`. Raise :exc:`ValueError` for any variables not found in " -"either *local_vars* or ``os.environ``." -msgstr "" - -#: distutils/apiref.rst:1201 -msgid "" -"Note that this is not a full-fledged string interpolation function. A valid " -"``$variable`` can consist only of upper and lower case letters, numbers and " -"an underscore. No { } or ( ) style quoting is available." -msgstr "" - -#: distutils/apiref.rst:1208 -msgid "" -"Split a string up according to Unix shell-like rules for quotes and " -"backslashes. In short: words are delimited by spaces, as long as those " -"spaces are not escaped by a backslash, or inside a quoted string. Single and " -"double quotes are equivalent, and the quote characters can be backslash-" -"escaped. The backslash is stripped from any two-character escape sequence, " -"leaving only the escaped character. The quote characters are stripped from " -"any quoted string. Returns a list of words." -msgstr "" - -#: distutils/apiref.rst:1221 -msgid "" -"Perform some action that affects the outside world (for instance, writing to " -"the filesystem). Such actions are special because they are disabled by the " -"*dry_run* flag. This method takes care of all that bureaucracy for you; " -"all you have to do is supply the function to call and an argument tuple for " -"it (to embody the \"external action\" being performed), and an optional " -"message to print." -msgstr "" - -#: distutils/apiref.rst:1230 -msgid "Convert a string representation of truth to true (1) or false (0)." -msgstr "" - -#: distutils/apiref.rst:1232 -msgid "" -"True values are ``y``, ``yes``, ``t``, ``true``, ``on`` and ``1``; false " -"values are ``n``, ``no``, ``f``, ``false``, ``off`` and ``0``. Raises :exc:" -"`ValueError` if *val* is anything else." -msgstr "" - -#: distutils/apiref.rst:1239 -msgid "" -"Byte-compile a collection of Python source files to :file:`.pyc` files in a :" -"file:`__pycache__` subdirectory (see :pep:`3147` and :pep:`488`). *py_files* " -"is a list of files to compile; any files that don't end in :file:`.py` are " -"silently skipped. *optimize* must be one of the following:" -msgstr "" - -#: distutils/apiref.rst:1244 -msgid "``0`` - don't optimize" -msgstr "" - -#: distutils/apiref.rst:1245 -msgid "``1`` - normal optimization (like ``python -O``)" -msgstr "" - -#: distutils/apiref.rst:1246 -msgid "``2`` - extra optimization (like ``python -OO``)" -msgstr "" - -#: distutils/apiref.rst:1248 -msgid "If *force* is true, all files are recompiled regardless of timestamps." -msgstr "" - -#: distutils/apiref.rst:1250 -msgid "" -"The source filename encoded in each :term:`bytecode` file defaults to the " -"filenames listed in *py_files*; you can modify these with *prefix* and " -"*basedir*. *prefix* is a string that will be stripped off of each source " -"filename, and *base_dir* is a directory name that will be prepended (after " -"*prefix* is stripped). You can supply either or both (or neither) of " -"*prefix* and *base_dir*, as you wish." -msgstr "" - -#: distutils/apiref.rst:1257 -msgid "" -"If *dry_run* is true, doesn't actually do anything that would affect the " -"filesystem." -msgstr "" - -#: distutils/apiref.rst:1260 -msgid "" -"Byte-compilation is either done directly in this interpreter process with " -"the standard :mod:`py_compile` module, or indirectly by writing a temporary " -"script and executing it. Normally, you should let :func:`byte_compile` " -"figure out to use direct compilation or not (see the source for details). " -"The *direct* flag is used by the script generated in indirect mode; unless " -"you know what you're doing, leave it set to ``None``." -msgstr "" - -#: distutils/apiref.rst:1267 -msgid "" -"Create ``.pyc`` files with an :func:`import magic tag ` in " -"their name, in a :file:`__pycache__` subdirectory instead of files without " -"tag in the current directory." -msgstr "" - -#: distutils/apiref.rst:1272 -msgid "Create ``.pyc`` files according to :pep:`488`." -msgstr "" - -#: distutils/apiref.rst:1278 -msgid "" -"Return a version of *header* escaped for inclusion in an :rfc:`822` header, " -"by ensuring there are 8 spaces space after each newline. Note that it does " -"no other modification of the string." -msgstr "" - -#: distutils/apiref.rst:1288 -msgid ":mod:`distutils.dist` --- The Distribution class" -msgstr "" - -#: distutils/apiref.rst:1295 -msgid "" -"This module provides the :class:`~distutils.core.Distribution` class, which " -"represents the module distribution being built/installed/distributed." -msgstr "" - -#: distutils/apiref.rst:1300 -msgid ":mod:`distutils.extension` --- The Extension class" -msgstr "" - -#: distutils/apiref.rst:1307 -msgid "" -"This module provides the :class:`Extension` class, used to describe C/C++ " -"extension modules in setup scripts." -msgstr "" - -#: distutils/apiref.rst:1315 -msgid ":mod:`distutils.debug` --- Distutils debug mode" -msgstr "" - -#: distutils/apiref.rst:1321 -msgid "This module provides the DEBUG flag." -msgstr "" - -#: distutils/apiref.rst:1325 -msgid ":mod:`distutils.errors` --- Distutils exceptions" -msgstr "" - -#: distutils/apiref.rst:1331 -msgid "" -"Provides exceptions used by the Distutils modules. Note that Distutils " -"modules may raise standard exceptions; in particular, SystemExit is usually " -"raised for errors that are obviously the end-user's fault (eg. bad command-" -"line arguments)." -msgstr "" - -#: distutils/apiref.rst:1335 -msgid "" -"This module is safe to use in ``from ... import *`` mode; it only exports " -"symbols whose names start with ``Distutils`` and end with ``Error``." -msgstr "" - -#: distutils/apiref.rst:1340 -msgid "" -":mod:`distutils.fancy_getopt` --- Wrapper around the standard getopt module" -msgstr "" - -#: distutils/apiref.rst:1346 -msgid "" -"This module provides a wrapper around the standard :mod:`getopt` module " -"that provides the following additional features:" -msgstr "" - -#: distutils/apiref.rst:1349 -msgid "short and long options are tied together" -msgstr "" - -#: distutils/apiref.rst:1351 -msgid "" -"options have help strings, so :func:`fancy_getopt` could potentially create " -"a complete usage summary" -msgstr "" - -#: distutils/apiref.rst:1354 -msgid "options set attributes of a passed-in object" -msgstr "" - -#: distutils/apiref.rst:1356 -msgid "" -"boolean options can have \"negative aliases\" --- eg. if :option:`!--quiet` " -"is the \"negative alias\" of :option:`!--verbose`, then :option:`!--quiet` " -"on the command line sets *verbose* to false." -msgstr "" - -#: distutils/apiref.rst:1362 -msgid "" -"Wrapper function. *options* is a list of ``(long_option, short_option, " -"help_string)`` 3-tuples as described in the constructor for :class:" -"`FancyGetopt`. *negative_opt* should be a dictionary mapping option names to " -"option names, both the key and value should be in the *options* list. " -"*object* is an object which will be used to store values (see the :meth:" -"`getopt` method of the :class:`FancyGetopt` class). *args* is the argument " -"list. Will use ``sys.argv[1:]`` if you pass ``None`` as *args*." -msgstr "" - -#: distutils/apiref.rst:1373 -msgid "Wraps *text* to less than *width* wide." -msgstr "" - -#: distutils/apiref.rst:1378 -msgid "" -"The option_table is a list of 3-tuples: ``(long_option, short_option, " -"help_string)``" -msgstr "" - -#: distutils/apiref.rst:1381 -msgid "" -"If an option takes an argument, its *long_option* should have ``'='`` " -"appended; *short_option* should just be a single character, no ``':'`` in " -"any case. *short_option* should be ``None`` if a *long_option* doesn't have " -"a corresponding *short_option*. All option tuples must have long options." -msgstr "" - -#: distutils/apiref.rst:1386 -msgid "The :class:`FancyGetopt` class provides the following methods:" -msgstr "" - -#: distutils/apiref.rst:1391 -msgid "Parse command-line options in args. Store as attributes on *object*." -msgstr "" - -#: distutils/apiref.rst:1393 -msgid "" -"If *args* is ``None`` or not supplied, uses ``sys.argv[1:]``. If *object* " -"is ``None`` or not supplied, creates a new :class:`OptionDummy` instance, " -"stores option values there, and returns a tuple ``(args, object)``. If " -"*object* is supplied, it is modified in place and :func:`getopt` just " -"returns *args*; in both cases, the returned *args* is a modified copy of the " -"passed-in *args* list, which is left untouched." -msgstr "" - -#: distutils/apiref.rst:1405 -msgid "" -"Returns the list of ``(option, value)`` tuples processed by the previous run " -"of :meth:`getopt` Raises :exc:`RuntimeError` if :meth:`getopt` hasn't been " -"called yet." -msgstr "" - -#: distutils/apiref.rst:1412 -msgid "" -"Generate help text (a list of strings, one per suggested line of output) " -"from the option table for this :class:`FancyGetopt` object." -msgstr "" - -#: distutils/apiref.rst:1415 -msgid "If supplied, prints the supplied *header* at the top of the help." -msgstr "" - -#: distutils/apiref.rst:1419 -msgid ":mod:`distutils.filelist` --- The FileList class" -msgstr "" - -#: distutils/apiref.rst:1426 -msgid "" -"This module provides the :class:`FileList` class, used for poking about the " -"filesystem and building lists of files." -msgstr "" - -#: distutils/apiref.rst:1431 -msgid ":mod:`distutils.log` --- Simple :pep:`282`-style logging" -msgstr "" - -#: distutils/apiref.rst:1438 -msgid ":mod:`distutils.spawn` --- Spawn a sub-process" -msgstr "" - -#: distutils/apiref.rst:1444 -msgid "" -"This module provides the :func:`spawn` function, a front-end to various " -"platform-specific functions for launching another program in a sub-process. " -"Also provides :func:`find_executable` to search the path for a given " -"executable name." -msgstr "" - -#: distutils/apiref.rst:1451 -msgid ":mod:`distutils.sysconfig` --- System configuration information" -msgstr "" - -#: distutils/apiref.rst:1455 -msgid ":mod:`distutils.sysconfig` has been merged into :mod:`sysconfig`." -msgstr "" - -#: distutils/apiref.rst:1462 -msgid "" -"The :mod:`distutils.sysconfig` module provides access to Python's low-level " -"configuration information. The specific configuration variables available " -"depend heavily on the platform and configuration. The specific variables " -"depend on the build process for the specific version of Python being run; " -"the variables are those found in the :file:`Makefile` and configuration " -"header that are installed with Python on Unix systems. The configuration " -"header is called :file:`pyconfig.h` for Python versions starting with 2.2, " -"and :file:`config.h` for earlier versions of Python." -msgstr "" - -#: distutils/apiref.rst:1471 -msgid "" -"Some additional functions are provided which perform some useful " -"manipulations for other parts of the :mod:`distutils` package." -msgstr "" - -#: distutils/apiref.rst:1477 -msgid "The result of ``os.path.normpath(sys.prefix)``." -msgstr "" - -#: distutils/apiref.rst:1482 -msgid "The result of ``os.path.normpath(sys.exec_prefix)``." -msgstr "" - -#: distutils/apiref.rst:1487 -msgid "" -"Return the value of a single variable. This is equivalent to " -"``get_config_vars().get(name)``." -msgstr "" - -#: distutils/apiref.rst:1493 -msgid "" -"Return a set of variable definitions. If there are no arguments, this " -"returns a dictionary mapping names of configuration variables to values. If " -"arguments are provided, they should be strings, and the return value will be " -"a sequence giving the associated values. If a given name does not have a " -"corresponding value, ``None`` will be included for that variable." -msgstr "" - -#: distutils/apiref.rst:1502 -msgid "" -"Return the full path name of the configuration header. For Unix, this will " -"be the header generated by the :program:`configure` script; for other " -"platforms the header will have been supplied directly by the Python source " -"distribution. The file is a platform-specific text file." -msgstr "" - -#: distutils/apiref.rst:1510 -msgid "" -"Return the full path name of the :file:`Makefile` used to build Python. For " -"Unix, this will be a file generated by the :program:`configure` script; the " -"meaning for other platforms will vary. The file is a platform-specific text " -"file, if it exists. This function is only useful on POSIX platforms." -msgstr "" - -#: distutils/apiref.rst:1515 -msgid "" -"The following functions are deprecated together with this module and they " -"have no direct replacement." -msgstr "" - -#: distutils/apiref.rst:1521 -msgid "" -"Return the directory for either the general or platform-dependent C include " -"files. If *plat_specific* is true, the platform-dependent include directory " -"is returned; if false or omitted, the platform-independent directory is " -"returned. If *prefix* is given, it is used as either the prefix instead of :" -"const:`PREFIX`, or as the exec-prefix instead of :const:`EXEC_PREFIX` if " -"*plat_specific* is true." -msgstr "" - -#: distutils/apiref.rst:1531 -msgid "" -"Return the directory for either the general or platform-dependent library " -"installation. If *plat_specific* is true, the platform-dependent include " -"directory is returned; if false or omitted, the platform-independent " -"directory is returned. If *prefix* is given, it is used as either the " -"prefix instead of :const:`PREFIX`, or as the exec-prefix instead of :const:" -"`EXEC_PREFIX` if *plat_specific* is true. If *standard_lib* is true, the " -"directory for the standard library is returned rather than the directory for " -"the installation of third-party extensions." -msgstr "" - -#: distutils/apiref.rst:1540 -msgid "" -"The following function is only intended for use within the :mod:`distutils` " -"package." -msgstr "" - -#: distutils/apiref.rst:1546 -msgid "" -"Do any platform-specific customization of a :class:`distutils.ccompiler." -"CCompiler` instance." -msgstr "" - -#: distutils/apiref.rst:1549 -msgid "" -"This function is only needed on Unix at this time, but should be called " -"consistently to support forward-compatibility. It inserts the information " -"that varies across Unix flavors and is stored in Python's :file:`Makefile`. " -"This information includes the selected compiler, compiler and linker " -"options, and the extension used by the linker for shared objects." -msgstr "" - -#: distutils/apiref.rst:1555 -msgid "" -"This function is even more special-purpose, and should only be used from " -"Python's own build procedures." -msgstr "" - -#: distutils/apiref.rst:1561 -msgid "" -"Inform the :mod:`distutils.sysconfig` module that it is being used as part " -"of the build process for Python. This changes a lot of relative locations " -"for files, allowing them to be located in the build area rather than in an " -"installed Python." -msgstr "" - -#: distutils/apiref.rst:1568 -msgid ":mod:`distutils.text_file` --- The TextFile class" -msgstr "" - -#: distutils/apiref.rst:1574 -msgid "" -"This module provides the :class:`TextFile` class, which gives an interface " -"to text files that (optionally) takes care of stripping comments, ignoring " -"blank lines, and joining lines with backslashes." -msgstr "" - -#: distutils/apiref.rst:1581 -msgid "" -"This class provides a file-like object that takes care of all the things " -"you commonly want to do when processing a text file that has some line-by-" -"line syntax: strip comments (as long as ``#`` is your comment character), " -"skip blank lines, join adjacent lines by escaping the newline (ie. backslash " -"at end of line), strip leading and/or trailing whitespace. All of these are " -"optional and independently controllable." -msgstr "" - -#: distutils/apiref.rst:1588 -msgid "" -"The class provides a :meth:`warn` method so you can generate warning " -"messages that report physical line number, even if the logical line in " -"question spans multiple physical lines. Also provides :meth:`unreadline` " -"for implementing line-at-a-time lookahead." -msgstr "" - -#: distutils/apiref.rst:1593 -msgid "" -":class:`TextFile` instances are create with either *filename*, *file*, or " -"both. :exc:`RuntimeError` is raised if both are ``None``. *filename* should " -"be a string, and *file* a file object (or something that provides :meth:" -"`readline` and :meth:`close` methods). It is recommended that you supply " -"at least *filename*, so that :class:`TextFile` can include it in warning " -"messages. If *file* is not supplied, :class:`TextFile` creates its own " -"using the :func:`open` built-in function." -msgstr "" - -#: distutils/apiref.rst:1601 -msgid "" -"The options are all boolean, and affect the values returned by :meth:" -"`readline`" -msgstr "" - -#: distutils/apiref.rst:1606 -msgid "option name" -msgstr "" - -#: distutils/apiref.rst:1606 -msgid "default" -msgstr "" - -#: distutils/apiref.rst:1608 -msgid "*strip_comments*" -msgstr "" - -#: distutils/apiref.rst:1608 -msgid "" -"strip from ``'#'`` to end-of-line, as well as any whitespace leading up to " -"the ``'#'``\\ ---unless it is escaped by a backslash" -msgstr "" - -#: distutils/apiref.rst:1617 distutils/apiref.rst:1622 -msgid "true" -msgstr "" - -#: distutils/apiref.rst:1614 -msgid "*lstrip_ws*" -msgstr "" - -#: distutils/apiref.rst:1614 -msgid "strip leading whitespace from each line before returning it" -msgstr "" - -#: distutils/apiref.rst:1632 distutils/apiref.rst:1643 -msgid "false" -msgstr "" - -#: distutils/apiref.rst:1617 -msgid "*rstrip_ws*" -msgstr "" - -#: distutils/apiref.rst:1617 -msgid "" -"strip trailing whitespace (including line terminator!) from each line before " -"returning it." -msgstr "" - -#: distutils/apiref.rst:1622 -msgid "*skip_blanks*" -msgstr "" - -#: distutils/apiref.rst:1622 -msgid "" -"skip lines that are empty \\*after\\* stripping comments and whitespace. " -"(If both lstrip_ws and rstrip_ws are false, then some lines may consist of " -"solely whitespace: these will \\*not\\* be skipped, even if *skip_blanks* is " -"true.)" -msgstr "" - -#: distutils/apiref.rst:1632 -msgid "*join_lines*" -msgstr "" - -#: distutils/apiref.rst:1632 -msgid "" -"if a backslash is the last non-newline character on a line after stripping " -"comments and whitespace, join the following line to it to form one logical " -"line; if N consecutive lines end with a backslash, then N+1 physical lines " -"will be joined to form one logical line." -msgstr "" - -#: distutils/apiref.rst:1643 -msgid "*collapse_join*" -msgstr "" - -#: distutils/apiref.rst:1643 -msgid "" -"strip leading whitespace from lines that are joined to their predecessor; " -"only matters if ``(join_lines and not lstrip_ws)``" -msgstr "" - -#: distutils/apiref.rst:1650 -msgid "" -"Note that since *rstrip_ws* can strip the trailing newline, the semantics " -"of :meth:`readline` must differ from those of the built-in file object's :" -"meth:`readline` method! In particular, :meth:`readline` returns ``None`` " -"for end-of-file: an empty string might just be a blank line (or an all-" -"whitespace line), if *rstrip_ws* is true but *skip_blanks* is not." -msgstr "" - -#: distutils/apiref.rst:1659 -msgid "" -"Open a new file *filename*. This overrides any *file* or *filename* " -"constructor arguments." -msgstr "" - -#: distutils/apiref.rst:1665 -msgid "" -"Close the current file and forget everything we know about it (including the " -"filename and the current line number)." -msgstr "" - -#: distutils/apiref.rst:1671 -msgid "" -"Print (to stderr) a warning message tied to the current logical line in the " -"current file. If the current logical line in the file spans multiple " -"physical lines, the warning refers to the whole range, such as ``\"lines " -"3-5\"``. If *line* is supplied, it overrides the current line number; it " -"may be a list or tuple to indicate a range of physical lines, or an integer " -"for a single physical line." -msgstr "" - -#: distutils/apiref.rst:1681 -msgid "" -"Read and return a single logical line from the current file (or from an " -"internal buffer if lines have previously been \"unread\" with :meth:" -"`unreadline`). If the *join_lines* option is true, this may involve " -"reading multiple physical lines concatenated into a single string. Updates " -"the current line number, so calling :meth:`warn` after :meth:`readline` " -"emits a warning about the physical line(s) just read. Returns ``None`` on " -"end-of-file, since the empty string can occur if *rstrip_ws* is true but " -"*strip_blanks* is not." -msgstr "" - -#: distutils/apiref.rst:1692 -msgid "" -"Read and return the list of all logical lines remaining in the current file. " -"This updates the current line number to the last line of the file." -msgstr "" - -#: distutils/apiref.rst:1698 -msgid "" -"Push *line* (a string) onto an internal buffer that will be checked by " -"future :meth:`readline` calls. Handy for implementing a parser with line-at-" -"a-time lookahead. Note that lines that are \"unread\" with :meth:" -"`unreadline` are not subsequently re-cleansed (whitespace stripped, or " -"whatever) when read with :meth:`readline`. If multiple calls are made to :" -"meth:`unreadline` before a call to :meth:`readline`, the lines will be " -"returned most in most recent first order." -msgstr "" - -#: distutils/apiref.rst:1707 -msgid ":mod:`distutils.version` --- Version number classes" -msgstr "" - -#: distutils/apiref.rst:1722 -msgid ":mod:`distutils.cmd` --- Abstract base class for Distutils commands" -msgstr "" - -#: distutils/apiref.rst:1729 -msgid "This module supplies the abstract base class :class:`Command`." -msgstr "" - -#: distutils/apiref.rst:1734 -msgid "" -"Abstract base class for defining command classes, the \"worker bees\" of the " -"Distutils. A useful analogy for command classes is to think of them as " -"subroutines with local variables called *options*. The options are declared " -"in :meth:`initialize_options` and defined (given their final values) in :" -"meth:`finalize_options`, both of which must be defined by every command " -"class. The distinction between the two is necessary because option values " -"might come from the outside world (command line, config file, ...), and any " -"options dependent on other options must be computed after these outside " -"influences have been processed --- hence :meth:`finalize_options`. The body " -"of the subroutine, where it does all its work based on the values of its " -"options, is the :meth:`run` method, which must also be implemented by every " -"command class." -msgstr "" - -#: distutils/apiref.rst:1747 -msgid "" -"The class constructor takes a single argument *dist*, a :class:`~distutils." -"core.Distribution` instance." -msgstr "" - -#: distutils/apiref.rst:1752 -msgid "Creating a new Distutils command" -msgstr "" - -#: distutils/apiref.rst:1754 -msgid "This section outlines the steps to create a new Distutils command." -msgstr "" - -#: distutils/apiref.rst:1756 -msgid "" -"A new command lives in a module in the :mod:`distutils.command` package. " -"There is a sample template in that directory called :file:" -"`command_template`. Copy this file to a new module with the same name as " -"the new command you're implementing. This module should implement a class " -"with the same name as the module (and the command). So, for instance, to " -"create the command ``peel_banana`` (so that users can run ``setup.py " -"peel_banana``), you'd copy :file:`command_template` to :file:`distutils/" -"command/peel_banana.py`, then edit it so that it's implementing the class :" -"class:`peel_banana`, a subclass of :class:`distutils.cmd.Command`." -msgstr "" - -#: distutils/apiref.rst:1766 -msgid "Subclasses of :class:`Command` must define the following methods." -msgstr "" - -#: distutils/apiref.rst:1770 -msgid "" -"Set default values for all the options that this command supports. Note " -"that these defaults may be overridden by other commands, by the setup " -"script, by config files, or by the command-line. Thus, this is not the " -"place to code dependencies between options; generally, :meth:" -"`initialize_options` implementations are just a bunch of ``self.foo = None`` " -"assignments." -msgstr "" - -#: distutils/apiref.rst:1779 -msgid "" -"Set final values for all the options that this command supports. This is " -"always called as late as possible, ie. after any option assignments from " -"the command-line or from other commands have been done. Thus, this is the " -"place to code option dependencies: if *foo* depends on *bar*, then it is " -"safe to set *foo* from *bar* as long as *foo* still has the same value it " -"was assigned in :meth:`initialize_options`." -msgstr "" - -#: distutils/apiref.rst:1789 -msgid "" -"A command's raison d'etre: carry out the action it exists to perform, " -"controlled by the options initialized in :meth:`initialize_options`, " -"customized by other commands, the setup script, the command-line, and config " -"files, and finalized in :meth:`finalize_options`. All terminal output and " -"filesystem interaction should be done by :meth:`run`." -msgstr "" - -#: distutils/apiref.rst:1798 -msgid "" -"*sub_commands* formalizes the notion of a \"family\" of commands, e.g. " -"``install`` as the parent with sub-commands ``install_lib``, " -"``install_headers``, etc. The parent of a family of commands defines " -"*sub_commands* as a class attribute; it's a list of 2-tuples " -"``(command_name, predicate)``, with *command_name* a string and *predicate* " -"a function, a string or ``None``. *predicate* is a method of the parent " -"command that determines whether the corresponding command is applicable in " -"the current situation. (E.g. ``install_headers`` is only applicable if we " -"have any C header files to install.) If *predicate* is ``None``, that " -"command is always applicable." -msgstr "" - -#: distutils/apiref.rst:1809 -msgid "" -"*sub_commands* is usually defined at the *end* of a class, because " -"predicates can be methods of the class, so they must already have been " -"defined. The canonical example is the :command:`install` command." -msgstr "" - -#: distutils/apiref.rst:1815 -msgid ":mod:`distutils.command` --- Individual Distutils commands" -msgstr "" - -#: distutils/apiref.rst:1826 -msgid ":mod:`distutils.command.bdist` --- Build a binary installer" -msgstr "" - -#: distutils/apiref.rst:1836 -msgid "" -":mod:`distutils.command.bdist_packager` --- Abstract base class for packagers" -msgstr "" - -#: distutils/apiref.rst:1846 -msgid ":mod:`distutils.command.bdist_dumb` --- Build a \"dumb\" installer" -msgstr "" - -#: distutils/apiref.rst:1856 -msgid "" -":mod:`distutils.command.bdist_rpm` --- Build a binary distribution as a " -"Redhat RPM and SRPM" -msgstr "" - -#: distutils/apiref.rst:1866 -msgid ":mod:`distutils.command.sdist` --- Build a source distribution" -msgstr "" - -#: distutils/apiref.rst:1876 -msgid ":mod:`distutils.command.build` --- Build all files of a package" -msgstr "" - -#: distutils/apiref.rst:1886 -msgid "" -":mod:`distutils.command.build_clib` --- Build any C libraries in a package" -msgstr "" - -#: distutils/apiref.rst:1896 -msgid "" -":mod:`distutils.command.build_ext` --- Build any extensions in a package" -msgstr "" - -#: distutils/apiref.rst:1906 -msgid "" -":mod:`distutils.command.build_py` --- Build the .py/.pyc files of a package" -msgstr "" - -#: distutils/apiref.rst:1916 -msgid "" -"Alternative implementation of build_py which also runs the 2to3 conversion " -"library on each .py file that is going to be installed. To use this in a " -"setup.py file for a distribution that is designed to run with both Python 2." -"x and 3.x, add::" -msgstr "" - -#: distutils/apiref.rst:1926 -msgid "to your setup.py, and later::" -msgstr "" - -#: distutils/apiref.rst:1930 -msgid "to the invocation of setup()." -msgstr "" - -#: distutils/apiref.rst:1934 -msgid "" -":mod:`distutils.command.build_scripts` --- Build the scripts of a package" -msgstr "" - -#: distutils/apiref.rst:1944 -msgid ":mod:`distutils.command.clean` --- Clean a package build area" -msgstr "" - -#: distutils/apiref.rst:1949 -msgid "" -"This command removes the temporary files created by :command:`build` and its " -"subcommands, like intermediary compiled object files. With the ``--all`` " -"option, the complete build directory will be removed." -msgstr "" - -#: distutils/apiref.rst:1953 -msgid "" -"Extension modules built :ref:`in place ` will " -"not be cleaned, as they are not in the build directory." -msgstr "" - -#: distutils/apiref.rst:1958 -msgid ":mod:`distutils.command.config` --- Perform package configuration" -msgstr "" - -#: distutils/apiref.rst:1968 -msgid ":mod:`distutils.command.install` --- Install a package" -msgstr "" - -#: distutils/apiref.rst:1978 -msgid "" -":mod:`distutils.command.install_data` --- Install data files from a package" -msgstr "" - -#: distutils/apiref.rst:1988 -msgid "" -":mod:`distutils.command.install_headers` --- Install C/C++ header files from " -"a package" -msgstr "" - -#: distutils/apiref.rst:1998 -msgid "" -":mod:`distutils.command.install_lib` --- Install library files from a package" -msgstr "" - -#: distutils/apiref.rst:2008 -msgid "" -":mod:`distutils.command.install_scripts` --- Install script files from a " -"package" -msgstr "" - -#: distutils/apiref.rst:2018 -msgid "" -":mod:`distutils.command.register` --- Register a module with the Python " -"Package Index" -msgstr "" - -#: distutils/apiref.rst:2024 -msgid "" -"The ``register`` command registers the package with the Python Package " -"Index. This is described in more detail in :pep:`301`." -msgstr "" - -#: distutils/apiref.rst:2031 -msgid ":mod:`distutils.command.check` --- Check the meta-data of a package" -msgstr "" - -#: distutils/apiref.rst:2037 -msgid "" -"The ``check`` command performs some tests on the meta-data of a package. For " -"example, it verifies that all required meta-data are provided as the " -"arguments passed to the :func:`setup` function." -msgstr "" diff --git a/distutils/builtdist.po b/distutils/builtdist.po deleted file mode 100644 index 0575ccd87..000000000 --- a/distutils/builtdist.po +++ /dev/null @@ -1,699 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/builtdist.rst:5 -msgid "Creating Built Distributions" -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/builtdist.rst:9 -msgid "" -"A \"built distribution\" is what you're probably used to thinking of either " -"as a \"binary package\" or an \"installer\" (depending on your background). " -"It's not necessarily binary, though, because it might contain only Python " -"source code and/or byte-code; and we don't call it a package, because that " -"word is already spoken for in Python. (And \"installer\" is a term specific " -"to the world of mainstream desktop systems.)" -msgstr "" - -#: distutils/builtdist.rst:16 -msgid "" -"A built distribution is how you make life as easy as possible for installers " -"of your module distribution: for users of RPM-based Linux systems, it's a " -"binary RPM; for Windows users, it's an executable installer; for Debian-" -"based Linux users, it's a Debian package; and so forth. Obviously, no one " -"person will be able to create built distributions for every platform under " -"the sun, so the Distutils are designed to enable module developers to " -"concentrate on their specialty---writing code and creating source " -"distributions---while an intermediary species called *packagers* springs up " -"to turn source distributions into built distributions for as many platforms " -"as there are packagers." -msgstr "" - -#: distutils/builtdist.rst:26 -msgid "" -"Of course, the module developer could be their own packager; or the packager " -"could be a volunteer \"out there\" somewhere who has access to a platform " -"which the original developer does not; or it could be software periodically " -"grabbing new source distributions and turning them into built distributions " -"for as many platforms as the software has access to. Regardless of who they " -"are, a packager uses the setup script and the :command:`bdist` command " -"family to generate built distributions." -msgstr "" - -#: distutils/builtdist.rst:34 -msgid "" -"As a simple example, if I run the following command in the Distutils source " -"tree::" -msgstr "" - -#: distutils/builtdist.rst:39 -msgid "" -"then the Distutils builds my module distribution (the Distutils itself in " -"this case), does a \"fake\" installation (also in the :file:`build` " -"directory), and creates the default type of built distribution for my " -"platform. The default format for built distributions is a \"dumb\" tar file " -"on Unix, and a simple executable installer on Windows. (That tar file is " -"considered \"dumb\" because it has to be unpacked in a specific location to " -"work.)" -msgstr "" - -#: distutils/builtdist.rst:46 -msgid "" -"Thus, the above command on a Unix system creates :file:`Distutils-1.0.{plat}." -"tar.gz`; unpacking this tarball from the right place installs the Distutils " -"just as though you had downloaded the source distribution and run ``python " -"setup.py install``. (The \"right place\" is either the root of the " -"filesystem or Python's :file:`{prefix}` directory, depending on the options " -"given to the :command:`bdist_dumb` command; the default is to make dumb " -"distributions relative to :file:`{prefix}`.)" -msgstr "" - -#: distutils/builtdist.rst:54 -msgid "" -"Obviously, for pure Python distributions, this isn't any simpler than just " -"running ``python setup.py install``\\ ---but for non-pure distributions, " -"which include extensions that would need to be compiled, it can mean the " -"difference between someone being able to use your extensions or not. And " -"creating \"smart\" built distributions, such as an RPM package or an " -"executable installer for Windows, is far more convenient for users even if " -"your distribution doesn't include any extensions." -msgstr "" - -#: distutils/builtdist.rst:62 -msgid "" -"The :command:`bdist` command has a :option:`!--formats` option, similar to " -"the :command:`sdist` command, which you can use to select the types of built " -"distribution to generate: for example, ::" -msgstr "" - -#: distutils/builtdist.rst:68 -msgid "" -"would, when run on a Unix system, create :file:`Distutils-1.0.{plat}.zip`\\ " -"---again, this archive would be unpacked from the root directory to install " -"the Distutils." -msgstr "" - -#: distutils/builtdist.rst:72 -msgid "The available formats for built distributions are:" -msgstr "" - -#: distutils/builtdist.rst:75 -msgid "Format" -msgstr "" - -#: distutils/builtdist.rst:75 -msgid "Description" -msgstr "" - -#: distutils/builtdist.rst:75 -msgid "Notes" -msgstr "" - -#: distutils/builtdist.rst:77 -msgid "``gztar``" -msgstr "" - -#: distutils/builtdist.rst:77 -msgid "gzipped tar file (:file:`.tar.gz`)" -msgstr "" - -#: distutils/builtdist.rst:77 -msgid "\\(1)" -msgstr "" - -#: distutils/builtdist.rst:80 -msgid "``bztar``" -msgstr "" - -#: distutils/builtdist.rst:80 -msgid "bzipped tar file (:file:`.tar.bz2`)" -msgstr "" - -#: distutils/builtdist.rst:83 -msgid "``xztar``" -msgstr "" - -#: distutils/builtdist.rst:83 -msgid "xzipped tar file (:file:`.tar.xz`)" -msgstr "" - -#: distutils/builtdist.rst:86 -msgid "``ztar``" -msgstr "" - -#: distutils/builtdist.rst:86 -msgid "compressed tar file (:file:`.tar.Z`)" -msgstr "" - -#: distutils/builtdist.rst:86 -msgid "\\(3)" -msgstr "" - -#: distutils/builtdist.rst:89 -msgid "``tar``" -msgstr "" - -#: distutils/builtdist.rst:89 -msgid "tar file (:file:`.tar`)" -msgstr "" - -#: distutils/builtdist.rst:91 -msgid "``zip``" -msgstr "" - -#: distutils/builtdist.rst:91 -msgid "zip file (:file:`.zip`)" -msgstr "" - -#: distutils/builtdist.rst:91 -msgid "(2),(4)" -msgstr "" - -#: distutils/builtdist.rst:93 -msgid "``rpm``" -msgstr "" - -#: distutils/builtdist.rst:93 -msgid "RPM" -msgstr "" - -#: distutils/builtdist.rst:93 -msgid "\\(5)" -msgstr "" - -#: distutils/builtdist.rst:95 -msgid "``pkgtool``" -msgstr "" - -#: distutils/builtdist.rst:95 -msgid "Solaris :program:`pkgtool`" -msgstr "" - -#: distutils/builtdist.rst:97 -msgid "``sdux``" -msgstr "" - -#: distutils/builtdist.rst:97 -msgid "HP-UX :program:`swinstall`" -msgstr "" - -#: distutils/builtdist.rst:99 -msgid "``msi``" -msgstr "" - -#: distutils/builtdist.rst:99 -msgid "Microsoft Installer." -msgstr "" - -#: distutils/builtdist.rst:102 -msgid "Added support for the ``xztar`` format." -msgstr "" - -#: distutils/builtdist.rst:106 -msgid "Notes:" -msgstr "" - -#: distutils/builtdist.rst:109 -msgid "default on Unix" -msgstr "" - -#: distutils/builtdist.rst:112 -msgid "default on Windows" -msgstr "" - -#: distutils/builtdist.rst:115 -msgid "requires external :program:`compress` utility." -msgstr "" - -#: distutils/builtdist.rst:118 -msgid "" -"requires either external :program:`zip` utility or :mod:`zipfile` module " -"(part of the standard Python library since Python 1.6)" -msgstr "" - -#: distutils/builtdist.rst:122 -msgid "" -"requires external :program:`rpm` utility, version 3.0.4 or better (use ``rpm " -"--version`` to find out which version you have)" -msgstr "" - -#: distutils/builtdist.rst:125 -msgid "" -"You don't have to use the :command:`bdist` command with the :option:`!--" -"formats` option; you can also use the command that directly implements the " -"format you're interested in. Some of these :command:`bdist` \"sub-" -"commands\" actually generate several similar formats; for instance, the :" -"command:`bdist_dumb` command generates all the \"dumb\" archive formats " -"(``tar``, ``gztar``, ``bztar``, ``xztar``, ``ztar``, and ``zip``), and :" -"command:`bdist_rpm` generates both binary and source RPMs. The :command:" -"`bdist` sub-commands, and the formats generated by each, are:" -msgstr "" - -#: distutils/builtdist.rst:135 -msgid "Command" -msgstr "" - -#: distutils/builtdist.rst:135 -msgid "Formats" -msgstr "" - -#: distutils/builtdist.rst:137 -msgid ":command:`bdist_dumb`" -msgstr "" - -#: distutils/builtdist.rst:137 -msgid "tar, gztar, bztar, xztar, ztar, zip" -msgstr "" - -#: distutils/builtdist.rst:139 -msgid ":command:`bdist_rpm`" -msgstr "" - -#: distutils/builtdist.rst:139 -msgid "rpm, srpm" -msgstr "" - -#: distutils/builtdist.rst:142 -msgid "" -"The following sections give details on the individual :command:`bdist_\\*` " -"commands." -msgstr "" - -#: distutils/builtdist.rst:158 -msgid "Creating RPM packages" -msgstr "" - -#: distutils/builtdist.rst:160 -msgid "" -"The RPM format is used by many popular Linux distributions, including Red " -"Hat, SuSE, and Mandrake. If one of these (or any of the other RPM-based " -"Linux distributions) is your usual environment, creating RPM packages for " -"other users of that same distribution is trivial. Depending on the " -"complexity of your module distribution and differences between Linux " -"distributions, you may also be able to create RPMs that work on different " -"RPM-based distributions." -msgstr "" - -#: distutils/builtdist.rst:167 -msgid "" -"The usual way to create an RPM of your module distribution is to run the :" -"command:`bdist_rpm` command::" -msgstr "" - -#: distutils/builtdist.rst:172 -msgid "or the :command:`bdist` command with the :option:`!--format` option::" -msgstr "" - -#: distutils/builtdist.rst:176 -msgid "" -"The former allows you to specify RPM-specific options; the latter allows " -"you to easily specify multiple formats in one run. If you need to do both, " -"you can explicitly specify multiple :command:`bdist_\\*` commands and their " -"options::" -msgstr "" - -#: distutils/builtdist.rst:182 -msgid "" -"Creating RPM packages is driven by a :file:`.spec` file, much as using the " -"Distutils is driven by the setup script. To make your life easier, the :" -"command:`bdist_rpm` command normally creates a :file:`.spec` file based on " -"the information you supply in the setup script, on the command line, and in " -"any Distutils configuration files. Various options and sections in the :" -"file:`.spec` file are derived from options in the setup script as follows:" -msgstr "" - -#: distutils/builtdist.rst:214 -msgid "RPM :file:`.spec` file option or section" -msgstr "" - -#: distutils/builtdist.rst:190 -msgid "Distutils setup script option" -msgstr "" - -#: distutils/builtdist.rst:192 -msgid "Name" -msgstr "" - -#: distutils/builtdist.rst:192 -msgid "``name``" -msgstr "" - -#: distutils/builtdist.rst:194 -msgid "Summary (in preamble)" -msgstr "" - -#: distutils/builtdist.rst:194 -msgid "``description``" -msgstr "" - -#: distutils/builtdist.rst:196 -msgid "Version" -msgstr "" - -#: distutils/builtdist.rst:196 -msgid "``version``" -msgstr "" - -#: distutils/builtdist.rst:221 -msgid "Vendor" -msgstr "" - -#: distutils/builtdist.rst:198 -msgid "" -"``author`` and ``author_email``, or --- & ``maintainer`` and " -"``maintainer_email``" -msgstr "" - -#: distutils/builtdist.rst:202 -msgid "Copyright" -msgstr "" - -#: distutils/builtdist.rst:202 -msgid "``license``" -msgstr "" - -#: distutils/builtdist.rst:204 -msgid "Url" -msgstr "" - -#: distutils/builtdist.rst:204 -msgid "``url``" -msgstr "" - -#: distutils/builtdist.rst:206 -msgid "%description (section)" -msgstr "" - -#: distutils/builtdist.rst:206 -msgid "``long_description``" -msgstr "" - -#: distutils/builtdist.rst:209 -msgid "" -"Additionally, there are many options in :file:`.spec` files that don't have " -"corresponding options in the setup script. Most of these are handled " -"through options to the :command:`bdist_rpm` command as follows:" -msgstr "" - -#: distutils/builtdist.rst:214 -msgid ":command:`bdist_rpm` option" -msgstr "" - -#: distutils/builtdist.rst:214 -msgid "default value" -msgstr "" - -#: distutils/builtdist.rst:217 -msgid "Release" -msgstr "" - -#: distutils/builtdist.rst:217 -msgid "``release``" -msgstr "" - -#: distutils/builtdist.rst:217 -msgid "\"1\"" -msgstr "" - -#: distutils/builtdist.rst:219 -msgid "Group" -msgstr "" - -#: distutils/builtdist.rst:219 -msgid "``group``" -msgstr "" - -#: distutils/builtdist.rst:219 -msgid "\"Development/Libraries\"" -msgstr "" - -#: distutils/builtdist.rst:221 -msgid "``vendor``" -msgstr "" - -#: distutils/builtdist.rst:221 -msgid "(see above)" -msgstr "" - -#: distutils/builtdist.rst:223 -msgid "Packager" -msgstr "" - -#: distutils/builtdist.rst:223 -msgid "``packager``" -msgstr "" - -#: distutils/builtdist.rst:225 distutils/builtdist.rst:229 -#: distutils/builtdist.rst:233 distutils/builtdist.rst:237 -msgid "(none)" -msgstr "" - -#: distutils/builtdist.rst:225 -msgid "Provides" -msgstr "" - -#: distutils/builtdist.rst:225 -msgid "``provides``" -msgstr "" - -#: distutils/builtdist.rst:227 -msgid "Requires" -msgstr "" - -#: distutils/builtdist.rst:227 -msgid "``requires``" -msgstr "" - -#: distutils/builtdist.rst:229 -msgid "Conflicts" -msgstr "" - -#: distutils/builtdist.rst:229 -msgid "``conflicts``" -msgstr "" - -#: distutils/builtdist.rst:231 -msgid "Obsoletes" -msgstr "" - -#: distutils/builtdist.rst:231 -msgid "``obsoletes``" -msgstr "" - -#: distutils/builtdist.rst:233 -msgid "Distribution" -msgstr "" - -#: distutils/builtdist.rst:233 -msgid "``distribution_name``" -msgstr "" - -#: distutils/builtdist.rst:235 -msgid "BuildRequires" -msgstr "" - -#: distutils/builtdist.rst:235 -msgid "``build_requires``" -msgstr "" - -#: distutils/builtdist.rst:237 -msgid "Icon" -msgstr "" - -#: distutils/builtdist.rst:237 -msgid "``icon``" -msgstr "" - -#: distutils/builtdist.rst:240 -msgid "" -"Obviously, supplying even a few of these options on the command-line would " -"be tedious and error-prone, so it's usually best to put them in the setup " -"configuration file, :file:`setup.cfg`\\ ---see section :ref:`setup-config`. " -"If you distribute or package many Python module distributions, you might " -"want to put options that apply to all of them in your personal Distutils " -"configuration file (:file:`~/.pydistutils.cfg`). If you want to temporarily " -"disable this file, you can pass the :option:`!--no-user-cfg` option to :file:" -"`setup.py`." -msgstr "" - -#: distutils/builtdist.rst:248 -msgid "" -"There are three steps to building a binary RPM package, all of which are " -"handled automatically by the Distutils:" -msgstr "" - -#: distutils/builtdist.rst:251 -msgid "" -"create a :file:`.spec` file, which describes the package (analogous to the " -"Distutils setup script; in fact, much of the information in the setup " -"script winds up in the :file:`.spec` file)" -msgstr "" - -#: distutils/builtdist.rst:255 -msgid "create the source RPM" -msgstr "" - -#: distutils/builtdist.rst:257 -msgid "" -"create the \"binary\" RPM (which may or may not contain binary code, " -"depending on whether your module distribution contains Python extensions)" -msgstr "" - -#: distutils/builtdist.rst:260 -msgid "" -"Normally, RPM bundles the last two steps together; when you use the " -"Distutils, all three steps are typically bundled together." -msgstr "" - -#: distutils/builtdist.rst:263 -msgid "" -"If you wish, you can separate these three steps. You can use the :option:" -"`!--spec-only` option to make :command:`bdist_rpm` just create the :file:`." -"spec` file and exit; in this case, the :file:`.spec` file will be written to " -"the \"distribution directory\"---normally :file:`dist/`, but customizable " -"with the :option:`!--dist-dir` option. (Normally, the :file:`.spec` file " -"winds up deep in the \"build tree,\" in a temporary directory created by :" -"command:`bdist_rpm`.)" -msgstr "" - -#: distutils/builtdist.rst:291 -msgid "Cross-compiling on Windows" -msgstr "" - -#: distutils/builtdist.rst:293 -msgid "" -"Starting with Python 2.6, distutils is capable of cross-compiling between " -"Windows platforms. In practice, this means that with the correct tools " -"installed, you can use a 32bit version of Windows to create 64bit extensions " -"and vice-versa." -msgstr "" - -#: distutils/builtdist.rst:298 -msgid "" -"To build for an alternate platform, specify the :option:`!--plat-name` " -"option to the build command. Valid values are currently 'win32', and 'win-" -"amd64'. For example, on a 32bit version of Windows, you could execute::" -msgstr "" - -#: distutils/builtdist.rst:304 -msgid "to build a 64bit version of your extension." -msgstr "" - -#: distutils/builtdist.rst:306 -msgid "" -"would create a 64bit installation executable on your 32bit version of " -"Windows." -msgstr "" - -#: distutils/builtdist.rst:308 -msgid "" -"To cross-compile, you must download the Python source code and cross-compile " -"Python itself for the platform you are targeting - it is not possible from a " -"binary installation of Python (as the .lib etc file for other platforms are " -"not included.) In practice, this means the user of a 32 bit operating " -"system will need to use Visual Studio 2008 to open the :file:`PCbuild/" -"PCbuild.sln` solution in the Python source tree and build the \"x64\" " -"configuration of the 'pythoncore' project before cross-compiling extensions " -"is possible." -msgstr "" - -#: distutils/builtdist.rst:317 -msgid "" -"Note that by default, Visual Studio 2008 does not install 64bit compilers or " -"tools. You may need to reexecute the Visual Studio setup process and select " -"these tools (using Control Panel->[Add/Remove] Programs is a convenient way " -"to check or modify your existing install.)" -msgstr "" - -#: distutils/builtdist.rst:325 -msgid "The Postinstallation script" -msgstr "" - -#: distutils/builtdist.rst:327 -msgid "" -"Starting with Python 2.3, a postinstallation script can be specified with " -"the :option:`!--install-script` option. The basename of the script must be " -"specified, and the script filename must also be listed in the scripts " -"argument to the setup function." -msgstr "" - -#: distutils/builtdist.rst:332 -msgid "" -"This script will be run at installation time on the target system after all " -"the files have been copied, with ``argv[1]`` set to :option:`!-install`, and " -"again at uninstallation time before the files are removed with ``argv[1]`` " -"set to :option:`!-remove`." -msgstr "" - -#: distutils/builtdist.rst:337 -msgid "" -"The installation script runs embedded in the windows installer, every output " -"(``sys.stdout``, ``sys.stderr``) is redirected into a buffer and will be " -"displayed in the GUI after the script has finished." -msgstr "" - -#: distutils/builtdist.rst:341 -msgid "" -"Some functions especially useful in this context are available as additional " -"built-in functions in the installation script." -msgstr "" - -#: distutils/builtdist.rst:348 -msgid "" -"These functions should be called when a directory or file is created by the " -"postinstall script at installation time. It will register *path* with the " -"uninstaller, so that it will be removed when the distribution is " -"uninstalled. To be safe, directories are only removed if they are empty." -msgstr "" - -#: distutils/builtdist.rst:356 -msgid "" -"This function can be used to retrieve special folder locations on Windows " -"like the Start Menu or the Desktop. It returns the full path to the folder. " -"*csidl_string* must be one of the following strings::" -msgstr "" - -#: distutils/builtdist.rst:376 -msgid "If the folder cannot be retrieved, :exc:`OSError` is raised." -msgstr "" - -#: distutils/builtdist.rst:378 -msgid "" -"Which folders are available depends on the exact Windows version, and " -"probably also the configuration. For details refer to Microsoft's " -"documentation of the :c:func:`SHGetSpecialFolderPath` function." -msgstr "" - -#: distutils/builtdist.rst:385 -msgid "" -"This function creates a shortcut. *target* is the path to the program to be " -"started by the shortcut. *description* is the description of the shortcut. " -"*filename* is the title of the shortcut that the user will see. *arguments* " -"specifies the command line arguments, if any. *workdir* is the working " -"directory for the program. *iconpath* is the file containing the icon for " -"the shortcut, and *iconindex* is the index of the icon in the file " -"*iconpath*. Again, for details consult the Microsoft documentation for the :" -"class:`IShellLink` interface." -msgstr "" diff --git a/distutils/commandref.po b/distutils/commandref.po deleted file mode 100644 index 6c98ed11d..000000000 --- a/distutils/commandref.po +++ /dev/null @@ -1,149 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/commandref.rst:5 -msgid "Command Reference" -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/commandref.rst:24 -msgid "Installing modules: the :command:`install` command family" -msgstr "" - -#: distutils/commandref.rst:26 -msgid "" -"The install command ensures that the build commands have been run and then " -"runs the subcommands :command:`install_lib`, :command:`install_data` and :" -"command:`install_scripts`." -msgstr "" - -#: distutils/commandref.rst:37 -msgid ":command:`install_data`" -msgstr "" - -#: distutils/commandref.rst:39 -msgid "This command installs all data files provided with the distribution." -msgstr "" - -#: distutils/commandref.rst:45 -msgid ":command:`install_scripts`" -msgstr "" - -#: distutils/commandref.rst:47 -msgid "This command installs all (Python) scripts in the distribution." -msgstr "" - -#: distutils/commandref.rst:56 -msgid "Creating a source distribution: the :command:`sdist` command" -msgstr "" - -#: distutils/commandref.rst:60 -msgid "The manifest template commands are:" -msgstr "" - -#: distutils/commandref.rst:63 -msgid "Command" -msgstr "" - -#: distutils/commandref.rst:63 -msgid "Description" -msgstr "" - -#: distutils/commandref.rst:65 -msgid ":command:`include pat1 pat2 ...`" -msgstr "" - -#: distutils/commandref.rst:65 -msgid "include all files matching any of the listed patterns" -msgstr "" - -#: distutils/commandref.rst:68 -msgid ":command:`exclude pat1 pat2 ...`" -msgstr "" - -#: distutils/commandref.rst:68 -msgid "exclude all files matching any of the listed patterns" -msgstr "" - -#: distutils/commandref.rst:71 -msgid ":command:`recursive-include dir pat1 pat2 ...`" -msgstr "" - -#: distutils/commandref.rst:71 -msgid "include all files under *dir* matching any of the listed patterns" -msgstr "" - -#: distutils/commandref.rst:74 -msgid ":command:`recursive-exclude dir pat1 pat2 ...`" -msgstr "" - -#: distutils/commandref.rst:74 -msgid "exclude all files under *dir* matching any of the listed patterns" -msgstr "" - -#: distutils/commandref.rst:77 -msgid ":command:`global-include pat1 pat2 ...`" -msgstr "" - -#: distutils/commandref.rst:77 -msgid "" -"include all files anywhere in the source tree matching --- & any of the " -"listed patterns" -msgstr "" - -#: distutils/commandref.rst:80 -msgid ":command:`global-exclude pat1 pat2 ...`" -msgstr "" - -#: distutils/commandref.rst:80 -msgid "" -"exclude all files anywhere in the source tree matching --- & any of the " -"listed patterns" -msgstr "" - -#: distutils/commandref.rst:83 -msgid ":command:`prune dir`" -msgstr "" - -#: distutils/commandref.rst:83 -msgid "exclude all files under *dir*" -msgstr "" - -#: distutils/commandref.rst:85 -msgid ":command:`graft dir`" -msgstr "" - -#: distutils/commandref.rst:85 -msgid "include all files under *dir*" -msgstr "" - -#: distutils/commandref.rst:88 -msgid "" -"The patterns here are Unix-style \"glob\" patterns: ``*`` matches any " -"sequence of regular filename characters, ``?`` matches any single regular " -"filename character, and ``[range]`` matches any of the characters in *range* " -"(e.g., ``a-z``, ``a-zA-Z``, ``a-f0-9_.``). The definition of \"regular " -"filename character\" is platform-specific: on Unix it is anything except " -"slash; on Windows anything except backslash or colon." -msgstr "" diff --git a/distutils/configfile.po b/distutils/configfile.po deleted file mode 100644 index f5e9a7af3..000000000 --- a/distutils/configfile.po +++ /dev/null @@ -1,166 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/configfile.rst:5 -msgid "Writing the Setup Configuration File" -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/configfile.rst:9 -msgid "" -"Often, it's not possible to write down everything needed to build a " -"distribution *a priori*: you may need to get some information from the user, " -"or from the user's system, in order to proceed. As long as that information " -"is fairly simple---a list of directories to search for C header files or " -"libraries, for example---then providing a configuration file, :file:`setup." -"cfg`, for users to edit is a cheap and easy way to solicit it. " -"Configuration files also let you provide default values for any command " -"option, which the installer can then override either on the command-line or " -"by editing the config file." -msgstr "" - -#: distutils/configfile.rst:18 -msgid "" -"The setup configuration file is a useful middle-ground between the setup " -"script---which, ideally, would be opaque to installers [#]_---and the " -"command-line to the setup script, which is outside of your control and " -"entirely up to the installer. In fact, :file:`setup.cfg` (and any other " -"Distutils configuration files present on the target system) are processed " -"after the contents of the setup script, but before the command-line. This " -"has several useful consequences:" -msgstr "" - -#: distutils/configfile.rst:32 -msgid "" -"installers can override some of what you put in :file:`setup.py` by editing :" -"file:`setup.cfg`" -msgstr "" - -#: distutils/configfile.rst:35 -msgid "" -"you can provide non-standard defaults for options that are not easily set " -"in :file:`setup.py`" -msgstr "" - -#: distutils/configfile.rst:38 -msgid "" -"installers can override anything in :file:`setup.cfg` using the command-line " -"options to :file:`setup.py`" -msgstr "" - -#: distutils/configfile.rst:41 -msgid "The basic syntax of the configuration file is simple:" -msgstr "" - -#: distutils/configfile.rst:49 -msgid "" -"where *command* is one of the Distutils commands (e.g. :command:`build_py`, :" -"command:`install`), and *option* is one of the options that command " -"supports. Any number of options can be supplied for each command, and any " -"number of command sections can be included in the file. Blank lines are " -"ignored, as are comments, which run from a ``'#'`` character until the end " -"of the line. Long option values can be split across multiple lines simply " -"by indenting the continuation lines." -msgstr "" - -#: distutils/configfile.rst:57 -msgid "" -"You can find out the list of options supported by a particular command with " -"the universal :option:`!--help` option, e.g." -msgstr "" - -#: distutils/configfile.rst:75 -msgid "" -"Note that an option spelled :option:`!--foo-bar` on the command-line is " -"spelled ``foo_bar`` in configuration files." -msgstr "" - -#: distutils/configfile.rst:80 -msgid "" -"For example, say you want your extensions to be built \"in-place\"---that " -"is, you have an extension :mod:`pkg.ext`, and you want the compiled " -"extension file (:file:`ext.so` on Unix, say) to be put in the same source " -"directory as your pure Python modules :mod:`pkg.mod1` and :mod:`pkg.mod2`. " -"You can always use the :option:`!--inplace` option on the command-line to " -"ensure this:" -msgstr "" - -#: distutils/configfile.rst:90 -msgid "" -"But this requires that you always specify the :command:`build_ext` command " -"explicitly, and remember to provide :option:`!--inplace`. An easier way is " -"to \"set and forget\" this option, by encoding it in :file:`setup.cfg`, the " -"configuration file for this distribution:" -msgstr "" - -#: distutils/configfile.rst:100 -msgid "" -"This will affect all builds of this module distribution, whether or not you " -"explicitly specify :command:`build_ext`. If you include :file:`setup.cfg` " -"in your source distribution, it will also affect end-user builds---which is " -"probably a bad idea for this option, since always building extensions in-" -"place would break installation of the module distribution. In certain " -"peculiar cases, though, modules are built right in their installation " -"directory, so this is conceivably a useful ability. (Distributing " -"extensions that expect to be built in their installation directory is almost " -"always a bad idea, though.)" -msgstr "" - -#: distutils/configfile.rst:109 -msgid "" -"Another example: certain commands take a lot of options that don't change " -"from run to run; for example, :command:`bdist_rpm` needs to know everything " -"required to generate a \"spec\" file for creating an RPM distribution. Some " -"of this information comes from the setup script, and some is automatically " -"generated by the Distutils (such as the list of files installed). But some " -"of it has to be supplied as options to :command:`bdist_rpm`, which would be " -"very tedious to do on the command-line for every run. Hence, here is a " -"snippet from the Distutils' own :file:`setup.cfg`:" -msgstr "" - -#: distutils/configfile.rst:129 -msgid "" -"Note that the ``doc_files`` option is simply a whitespace-separated string " -"split across multiple lines for readability." -msgstr "" - -#: distutils/configfile.rst:136 -msgid ":ref:`inst-config-syntax` in \"Installing Python Modules\"" -msgstr "" - -#: distutils/configfile.rst:136 -msgid "" -"More information on the configuration files is available in the manual for " -"system administrators." -msgstr "" - -#: distutils/configfile.rst:141 -msgid "Footnotes" -msgstr "" - -#: distutils/configfile.rst:142 -msgid "" -"This ideal probably won't be achieved until auto-configuration is fully " -"supported by the Distutils." -msgstr "" diff --git a/distutils/examples.po b/distutils/examples.po deleted file mode 100644 index 120c5e271..000000000 --- a/distutils/examples.po +++ /dev/null @@ -1,285 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/examples.rst:5 -msgid "Distutils Examples" -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/examples.rst:9 -msgid "" -"This chapter provides a number of basic examples to help get started with " -"distutils. Additional information about using distutils can be found in the " -"Distutils Cookbook." -msgstr "" - -#: distutils/examples.rst:16 -msgid "`Distutils Cookbook `_" -msgstr "" - -#: distutils/examples.rst:17 -msgid "" -"Collection of recipes showing how to achieve more control over distutils." -msgstr "" - -#: distutils/examples.rst:23 -msgid "Pure Python distribution (by module)" -msgstr "" - -#: distutils/examples.rst:25 -msgid "" -"If you're just distributing a couple of modules, especially if they don't " -"live in a particular package, you can specify them individually using the " -"``py_modules`` option in the setup script." -msgstr "" - -#: distutils/examples.rst:29 -msgid "" -"In the simplest case, you'll have two files to worry about: a setup script " -"and the single module you're distributing, :file:`foo.py` in this example::" -msgstr "" - -#: distutils/examples.rst:36 -msgid "" -"(In all diagrams in this section, ** will refer to the distribution " -"root directory.) A minimal setup script to describe this situation would " -"be::" -msgstr "" - -#: distutils/examples.rst:45 -msgid "" -"Note that the name of the distribution is specified independently with the " -"``name`` option, and there's no rule that says it has to be the same as the " -"name of the sole module in the distribution (although that's probably a good " -"convention to follow). However, the distribution name is used to generate " -"filenames, so you should stick to letters, digits, underscores, and hyphens." -msgstr "" - -#: distutils/examples.rst:51 -msgid "" -"Since ``py_modules`` is a list, you can of course specify multiple modules, " -"eg. if you're distributing modules :mod:`foo` and :mod:`bar`, your setup " -"might look like this::" -msgstr "" - -#: distutils/examples.rst:60 -msgid "and the setup script might be ::" -msgstr "" - -#: distutils/examples.rst:68 -msgid "" -"You can put module source files into another directory, but if you have " -"enough modules to do that, it's probably easier to specify modules by " -"package rather than listing them individually." -msgstr "" - -#: distutils/examples.rst:76 -msgid "Pure Python distribution (by package)" -msgstr "" - -#: distutils/examples.rst:78 -msgid "" -"If you have more than a couple of modules to distribute, especially if they " -"are in multiple packages, it's probably easier to specify whole packages " -"rather than individual modules. This works even if your modules are not in " -"a package; you can just tell the Distutils to process modules from the root " -"package, and that works the same as any other package (except that you don't " -"have to have an :file:`__init__.py` file)." -msgstr "" - -#: distutils/examples.rst:85 -msgid "The setup script from the last example could also be written as ::" -msgstr "" - -#: distutils/examples.rst:93 -msgid "(The empty string stands for the root package.)" -msgstr "" - -#: distutils/examples.rst:95 -msgid "" -"If those two files are moved into a subdirectory, but remain in the root " -"package, e.g.::" -msgstr "" - -#: distutils/examples.rst:103 -msgid "" -"then you would still specify the root package, but you have to tell the " -"Distutils where source files in the root package live::" -msgstr "" - -#: distutils/examples.rst:113 -msgid "" -"More typically, though, you will want to distribute multiple modules in the " -"same package (or in sub-packages). For example, if the :mod:`foo` and :mod:" -"`bar` modules belong in package :mod:`foobar`, one way to layout your source " -"tree is ::" -msgstr "" - -#: distutils/examples.rst:125 -msgid "" -"This is in fact the default layout expected by the Distutils, and the one " -"that requires the least work to describe in your setup script::" -msgstr "" - -#: distutils/examples.rst:134 -msgid "" -"If you want to put modules in directories not named for their package, then " -"you need to use the ``package_dir`` option again. For example, if the :file:" -"`src` directory holds modules in the :mod:`foobar` package::" -msgstr "" - -#: distutils/examples.rst:145 -msgid "an appropriate setup script would be ::" -msgstr "" - -#: distutils/examples.rst:154 -msgid "" -"Or, you might put modules from your main package right in the distribution " -"root::" -msgstr "" - -#: distutils/examples.rst:163 -msgid "in which case your setup script would be ::" -msgstr "" - -#: distutils/examples.rst:172 -msgid "(The empty string also stands for the current directory.)" -msgstr "" - -#: distutils/examples.rst:174 -msgid "" -"If you have sub-packages, they must be explicitly listed in ``packages``, " -"but any entries in ``package_dir`` automatically extend to sub-packages. (In " -"other words, the Distutils does *not* scan your source tree, trying to " -"figure out which directories correspond to Python packages by looking for :" -"file:`__init__.py` files.) Thus, if the default layout grows a sub-package::" -msgstr "" - -#: distutils/examples.rst:190 -msgid "then the corresponding setup script would be ::" -msgstr "" - -#: distutils/examples.rst:202 -msgid "Single extension module" -msgstr "" - -#: distutils/examples.rst:204 -msgid "" -"Extension modules are specified using the ``ext_modules`` option. " -"``package_dir`` has no effect on where extension source files are found; it " -"only affects the source for pure Python modules. The simplest case, a " -"single extension module in a single C source file, is::" -msgstr "" - -#: distutils/examples.rst:213 -msgid "" -"If the :mod:`foo` extension belongs in the root package, the setup script " -"for this could be ::" -msgstr "" - -#: distutils/examples.rst:223 -msgid "If the extension actually belongs in a package, say :mod:`foopkg`, then" -msgstr "" - -#: distutils/examples.rst:225 -msgid "" -"With exactly the same source tree layout, this extension can be put in the :" -"mod:`foopkg` package simply by changing the name of the extension::" -msgstr "" - -#: distutils/examples.rst:236 -msgid "Checking a package" -msgstr "" - -#: distutils/examples.rst:238 -msgid "" -"The ``check`` command allows you to verify if your package meta-data meet " -"the minimum requirements to build a distribution." -msgstr "" - -#: distutils/examples.rst:241 -msgid "" -"To run it, just call it using your :file:`setup.py` script. If something is " -"missing, ``check`` will display a warning." -msgstr "" - -#: distutils/examples.rst:244 -msgid "Let's take an example with a simple script::" -msgstr "" - -#: distutils/examples.rst:250 -msgid "Running the ``check`` command will display some warnings:" -msgstr "" - -#: distutils/examples.rst:261 -msgid "" -"If you use the reStructuredText syntax in the ``long_description`` field and " -"`docutils`_ is installed you can check if the syntax is fine with the " -"``check`` command, using the ``restructuredtext`` option." -msgstr "" - -#: distutils/examples.rst:265 -msgid "For example, if the :file:`setup.py` script is changed like this::" -msgstr "" - -#: distutils/examples.rst:280 -msgid "" -"Where the long description is broken, ``check`` will be able to detect it by " -"using the :mod:`docutils` parser:" -msgstr "" - -#: distutils/examples.rst:291 -msgid "Reading the metadata" -msgstr "" - -#: distutils/examples.rst:293 -msgid "" -"The :func:`distutils.core.setup` function provides a command-line interface " -"that allows you to query the metadata fields of a project through the " -"``setup.py`` script of a given project:" -msgstr "" - -#: distutils/examples.rst:302 -msgid "" -"This call reads the ``name`` metadata by running the :func:`distutils.core." -"setup` function. Although, when a source or binary distribution is created " -"with Distutils, the metadata fields are written in a static file called :" -"file:`PKG-INFO`. When a Distutils-based project is installed in Python, the :" -"file:`PKG-INFO` file is copied alongside the modules and packages of the " -"distribution under :file:`NAME-VERSION-pyX.X.egg-info`, where ``NAME`` is " -"the name of the project, ``VERSION`` its version as defined in the Metadata, " -"and ``pyX.X`` the major and minor version of Python like ``2.7`` or ``3.2``." -msgstr "" - -#: distutils/examples.rst:312 -msgid "" -"You can read back this static file, by using the :class:`distutils.dist." -"DistributionMetadata` class and its :func:`read_pkg_file` method::" -msgstr "" - -#: distutils/examples.rst:326 -msgid "" -"Notice that the class can also be instantiated with a metadata file path to " -"loads its values::" -msgstr "" diff --git a/distutils/extending.po b/distutils/extending.po deleted file mode 100644 index 51677dedf..000000000 --- a/distutils/extending.po +++ /dev/null @@ -1,127 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/extending.rst:5 -msgid "Extending Distutils" -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/extending.rst:9 -msgid "" -"Distutils can be extended in various ways. Most extensions take the form of " -"new commands or replacements for existing commands. New commands may be " -"written to support new types of platform-specific packaging, for example, " -"while replacements for existing commands may be made to modify details of " -"how the command operates on a package." -msgstr "" - -#: distutils/extending.rst:15 -msgid "" -"Most extensions of the distutils are made within :file:`setup.py` scripts " -"that want to modify existing commands; many simply add a few file extensions " -"that should be copied into packages in addition to :file:`.py` files as a " -"convenience." -msgstr "" - -#: distutils/extending.rst:20 -msgid "" -"Most distutils command implementations are subclasses of the :class:" -"`distutils.cmd.Command` class. New commands may directly inherit from :" -"class:`Command`, while replacements often derive from :class:`Command` " -"indirectly, directly subclassing the command they are replacing. Commands " -"are required to derive from :class:`Command`." -msgstr "" - -#: distutils/extending.rst:35 -msgid "Integrating new commands" -msgstr "" - -#: distutils/extending.rst:37 -msgid "" -"There are different ways to integrate new command implementations into " -"distutils. The most difficult is to lobby for the inclusion of the new " -"features in distutils itself, and wait for (and require) a version of Python " -"that provides that support. This is really hard for many reasons." -msgstr "" - -#: distutils/extending.rst:42 -msgid "" -"The most common, and possibly the most reasonable for most needs, is to " -"include the new implementations with your :file:`setup.py` script, and cause " -"the :func:`distutils.core.setup` function use them::" -msgstr "" - -#: distutils/extending.rst:57 -msgid "" -"This approach is most valuable if the new implementations must be used to " -"use a particular package, as everyone interested in the package will need to " -"have the new command implementation." -msgstr "" - -#: distutils/extending.rst:61 -msgid "" -"Beginning with Python 2.4, a third option is available, intended to allow " -"new commands to be added which can support existing :file:`setup.py` scripts " -"without requiring modifications to the Python installation. This is " -"expected to allow third-party extensions to provide support for additional " -"packaging systems, but the commands can be used for anything distutils " -"commands can be used for. A new configuration option, ``command_packages`` " -"(command-line option :option:`!--command-packages`), can be used to specify " -"additional packages to be searched for modules implementing commands. Like " -"all distutils options, this can be specified on the command line or in a " -"configuration file. This option can only be set in the ``[global]`` section " -"of a configuration file, or before any commands on the command line. If set " -"in a configuration file, it can be overridden from the command line; setting " -"it to an empty string on the command line causes the default to be used. " -"This should never be set in a configuration file provided with a package." -msgstr "" - -#: distutils/extending.rst:76 -msgid "" -"This new option can be used to add any number of packages to the list of " -"packages searched for command implementations; multiple package names should " -"be separated by commas. When not specified, the search is only performed in " -"the :mod:`distutils.command` package. When :file:`setup.py` is run with the " -"option ``--command-packages distcmds,buildcmds``, however, the packages :mod:" -"`distutils.command`, :mod:`distcmds`, and :mod:`buildcmds` will be searched " -"in that order. New commands are expected to be implemented in modules of " -"the same name as the command by classes sharing the same name. Given the " -"example command line option above, the command :command:`bdist_openpkg` " -"could be implemented by the class :class:`distcmds.bdist_openpkg." -"bdist_openpkg` or :class:`buildcmds.bdist_openpkg.bdist_openpkg`." -msgstr "" - -#: distutils/extending.rst:90 -msgid "Adding new distribution types" -msgstr "" - -#: distutils/extending.rst:92 -msgid "" -"Commands that create distributions (files in the :file:`dist/` directory) " -"need to add ``(command, filename)`` pairs to ``self.distribution." -"dist_files`` so that :command:`upload` can upload it to PyPI. The " -"*filename* in the pair contains no path information, only the name of the " -"file itself. In dry-run mode, pairs should still be added to represent what " -"would have been created." -msgstr "" diff --git a/distutils/index.po b/distutils/index.po deleted file mode 100644 index cb5e13271..000000000 --- a/distutils/index.po +++ /dev/null @@ -1,96 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: 2022-01-11 18:02+0300\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.0.1\n" - -#: distutils/index.rst:5 -msgid "Distributing Python Modules (Legacy version)" -msgstr "Python Modüllerini Dağıtma (Eski sürüm)" - -#: distutils/index.rst:0 -msgid "Authors" -msgstr "Yazarlar" - -#: distutils/index.rst:7 -msgid "Greg Ward, Anthony Baxter" -msgstr "Greg Ward, Anthony Baxter" - -#: distutils/index.rst:0 -msgid "Email" -msgstr "E-posta" - -#: distutils/index.rst:8 -msgid "distutils-sig@python.org" -msgstr "distutils-sig@python.org" - -#: distutils/index.rst:12 -msgid ":ref:`distributing-index`" -msgstr ":ref:`distributing-index`" - -#: distutils/index.rst:13 -msgid "The up to date module distribution documentations" -msgstr "Güncel modül dağıtım dokümantasyonu" - -#: distutils/index.rst:17 -msgid "" -"The entire ``distutils`` package has been deprecated and will be removed in " -"Python 3.12. This documentation is retained as a reference only, and will be " -"removed with the package. See the :ref:`What's New ` " -"entry for more information." -msgstr "" -"Tüm ``distutils`` paketi artık kullanılmamaktadır ve Python 3.12'de tamamen " -"kaldırılacaktır. Bu dokümantasyon yalnızca referans olarak tutulur ve " -"paketin kaldırılmasıyla birlikte bu belge de kaldırılacaktır. Daha fazla " -"bilgi için :ref:`What's New ` girişine bakın." - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" -"Bu dokümantasyon, https://setuptools.readthedocs.io/en/latest/setuptools." -"html adresindeki ``setuptools`` dokümantasyonu burada bulunan tüm bilgileri " -"kapsayana kadar saklanacaktır." - -#: distutils/index.rst:26 -msgid "" -"This guide only covers the basic tools for building and distributing " -"extensions that are provided as part of this version of Python. Third party " -"tools offer easier to use and more secure alternatives. Refer to the `quick " -"recommendations section `__ in the Python Packaging User Guide for more information." -msgstr "" -"Bu rehber yalnızca, Python'un bu sürümünün bir parçası olarak sağlanan " -"uzantıları oluşturmaya ve dağıtmaya yönelik temel araçları kapsar. Üçüncü " -"taraf araçlar, kullanımı daha kolay ve daha güvenli alternatifler sunar. " -"Daha fazla bilgi için Python Paketleme Kullanıcı Kılavuzundaki `hızlı " -"tavsiyeler bölümüne `__ bakın." - -#: distutils/index.rst:32 -msgid "" -"This document describes the Python Distribution Utilities (\"Distutils\") " -"from the module developer's point of view, describing the underlying " -"capabilities that ``setuptools`` builds on to allow Python developers to " -"make Python modules and extensions readily available to a wider audience." -msgstr "" -"Bu dokümantasyon, modül geliştiricisinin bakış açısından Python Dağıtım " -"Yardımcı Programlarını (\"Distutils\") açıklar ve Python geliştiricilerinin " -"Python modüllerini ve uzantılarını daha geniş bir kitle için hazır hale " -"getirmesine olanak sağlamak amacıyla ``setuptools`` 'un geliştirdiği temel " -"işlevleri açıklar." diff --git a/distutils/introduction.po b/distutils/introduction.po deleted file mode 100644 index b0dfa97c4..000000000 --- a/distutils/introduction.po +++ /dev/null @@ -1,325 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/introduction.rst:5 -msgid "An Introduction to Distutils" -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/introduction.rst:9 -msgid "" -"This document covers using the Distutils to distribute your Python modules, " -"concentrating on the role of developer/distributor: if you're looking for " -"information on installing Python modules, you should refer to the :ref:" -"`install-index` chapter." -msgstr "" - -#: distutils/introduction.rst:18 -msgid "Concepts & Terminology" -msgstr "" - -#: distutils/introduction.rst:20 -msgid "" -"Using the Distutils is quite simple, both for module developers and for " -"users/administrators installing third-party modules. As a developer, your " -"responsibilities (apart from writing solid, well-documented and well-tested " -"code, of course!) are:" -msgstr "" - -#: distutils/introduction.rst:25 -msgid "write a setup script (:file:`setup.py` by convention)" -msgstr "" - -#: distutils/introduction.rst:27 -msgid "(optional) write a setup configuration file" -msgstr "" - -#: distutils/introduction.rst:29 -msgid "create a source distribution" -msgstr "" - -#: distutils/introduction.rst:31 -msgid "(optional) create one or more built (binary) distributions" -msgstr "" - -#: distutils/introduction.rst:33 -msgid "Each of these tasks is covered in this document." -msgstr "" - -#: distutils/introduction.rst:35 -msgid "" -"Not all module developers have access to a multitude of platforms, so it's " -"not always feasible to expect them to create a multitude of built " -"distributions. It is hoped that a class of intermediaries, called " -"*packagers*, will arise to address this need. Packagers will take source " -"distributions released by module developers, build them on one or more " -"platforms, and release the resulting built distributions. Thus, users on " -"the most popular platforms will be able to install most popular Python " -"module distributions in the most natural way for their platform, without " -"having to run a single setup script or compile a line of code." -msgstr "" - -#: distutils/introduction.rst:49 -msgid "A Simple Example" -msgstr "" - -#: distutils/introduction.rst:51 -msgid "" -"The setup script is usually quite simple, although since it's written in " -"Python, there are no arbitrary limits to what you can do with it, though you " -"should be careful about putting arbitrarily expensive operations in your " -"setup script. Unlike, say, Autoconf-style configure scripts, the setup " -"script may be run multiple times in the course of building and installing " -"your module distribution." -msgstr "" - -#: distutils/introduction.rst:58 -msgid "" -"If all you want to do is distribute a module called :mod:`foo`, contained in " -"a file :file:`foo.py`, then your setup script can be as simple as this::" -msgstr "" - -#: distutils/introduction.rst:67 -msgid "Some observations:" -msgstr "" - -#: distutils/introduction.rst:69 -msgid "" -"most information that you supply to the Distutils is supplied as keyword " -"arguments to the :func:`setup` function" -msgstr "" - -#: distutils/introduction.rst:72 -msgid "" -"those keyword arguments fall into two categories: package metadata (name, " -"version number) and information about what's in the package (a list of pure " -"Python modules, in this case)" -msgstr "" - -#: distutils/introduction.rst:76 -msgid "" -"modules are specified by module name, not filename (the same will hold true " -"for packages and extensions)" -msgstr "" - -#: distutils/introduction.rst:79 -msgid "" -"it's recommended that you supply a little more metadata, in particular your " -"name, email address and a URL for the project (see section :ref:`setup-" -"script` for an example)" -msgstr "" - -#: distutils/introduction.rst:83 -msgid "" -"To create a source distribution for this module, you would create a setup " -"script, :file:`setup.py`, containing the above code, and run this command " -"from a terminal::" -msgstr "" - -#: distutils/introduction.rst:89 -msgid "" -"For Windows, open a command prompt window (:menuselection:`Start --> " -"Accessories`) and change the command to::" -msgstr "" - -#: distutils/introduction.rst:94 -msgid "" -":command:`sdist` will create an archive file (e.g., tarball on Unix, ZIP " -"file on Windows) containing your setup script :file:`setup.py`, and your " -"module :file:`foo.py`. The archive file will be named :file:`foo-1.0.tar.gz` " -"(or :file:`.zip`), and will unpack into a directory :file:`foo-1.0`." -msgstr "" - -#: distutils/introduction.rst:99 -msgid "" -"If an end-user wishes to install your :mod:`foo` module, all they have to do " -"is download :file:`foo-1.0.tar.gz` (or :file:`.zip`), unpack it, and---from " -"the :file:`foo-1.0` directory---run ::" -msgstr "" - -#: distutils/introduction.rst:105 -msgid "" -"which will ultimately copy :file:`foo.py` to the appropriate directory for " -"third-party modules in their Python installation." -msgstr "" - -#: distutils/introduction.rst:108 -msgid "" -"This simple example demonstrates some fundamental concepts of the Distutils. " -"First, both developers and installers have the same basic user interface, i." -"e. the setup script. The difference is which Distutils *commands* they use: " -"the :command:`sdist` command is almost exclusively for module developers, " -"while :command:`install` is more often for installers (although most " -"developers will want to install their own code occasionally)." -msgstr "" - -#: distutils/introduction.rst:115 -msgid "" -"Other useful built distribution formats are RPM, implemented by the :command:" -"`bdist_rpm` command, Solaris :program:`pkgtool` (:command:`bdist_pkgtool`), " -"and HP-UX :program:`swinstall` (:command:`bdist_sdux`). For example, the " -"following command will create an RPM file called :file:`foo-1.0.noarch.rpm`::" -msgstr "" - -#: distutils/introduction.rst:123 -msgid "" -"(The :command:`bdist_rpm` command uses the :command:`rpm` executable, " -"therefore this has to be run on an RPM-based system such as Red Hat Linux, " -"SuSE Linux, or Mandrake Linux.)" -msgstr "" - -#: distutils/introduction.rst:127 -msgid "" -"You can find out what distribution formats are available at any time by " -"running ::" -msgstr "" - -#: distutils/introduction.rst:136 -msgid "General Python terminology" -msgstr "" - -#: distutils/introduction.rst:138 -msgid "" -"If you're reading this document, you probably have a good idea of what " -"modules, extensions, and so forth are. Nevertheless, just to be sure that " -"everyone is operating from a common starting point, we offer the following " -"glossary of common Python terms:" -msgstr "" - -#: distutils/introduction.rst:146 -msgid "module" -msgstr "" - -#: distutils/introduction.rst:144 -msgid "" -"the basic unit of code reusability in Python: a block of code imported by " -"some other code. Three types of modules concern us here: pure Python " -"modules, extension modules, and packages." -msgstr "" - -#: distutils/introduction.rst:151 -msgid "pure Python module" -msgstr "" - -#: distutils/introduction.rst:149 -msgid "" -"a module written in Python and contained in a single :file:`.py` file (and " -"possibly associated :file:`.pyc` files). Sometimes referred to as a \"pure " -"module.\"" -msgstr "" - -#: distutils/introduction.rst:159 -msgid "extension module" -msgstr "" - -#: distutils/introduction.rst:154 -msgid "" -"a module written in the low-level language of the Python implementation: C/C+" -"+ for Python, Java for Jython. Typically contained in a single dynamically " -"loadable pre-compiled file, e.g. a shared object (:file:`.so`) file for " -"Python extensions on Unix, a DLL (given the :file:`.pyd` extension) for " -"Python extensions on Windows, or a Java class file for Jython extensions. " -"(Note that currently, the Distutils only handles C/C++ extensions for " -"Python.)" -msgstr "" - -#: distutils/introduction.rst:164 -msgid "package" -msgstr "" - -#: distutils/introduction.rst:162 -msgid "" -"a module that contains other modules; typically contained in a directory in " -"the filesystem and distinguished from other directories by the presence of a " -"file :file:`__init__.py`." -msgstr "" - -#: distutils/introduction.rst:174 -msgid "root package" -msgstr "" - -#: distutils/introduction.rst:167 -msgid "" -"the root of the hierarchy of packages. (This isn't really a package, since " -"it doesn't have an :file:`__init__.py` file. But we have to call it " -"something.) The vast majority of the standard library is in the root " -"package, as are many small, standalone third-party modules that don't belong " -"to a larger module collection. Unlike regular packages, modules in the root " -"package can be found in many directories: in fact, every directory listed in " -"``sys.path`` contributes modules to the root package." -msgstr "" - -#: distutils/introduction.rst:179 -msgid "Distutils-specific terminology" -msgstr "" - -#: distutils/introduction.rst:181 -msgid "" -"The following terms apply more specifically to the domain of distributing " -"Python modules using the Distutils:" -msgstr "" - -#: distutils/introduction.rst:190 -msgid "module distribution" -msgstr "" - -#: distutils/introduction.rst:185 -msgid "" -"a collection of Python modules distributed together as a single downloadable " -"resource and meant to be installed *en masse*. Examples of some well-known " -"module distributions are NumPy, SciPy, Pillow, or mxBase. (This would be " -"called a *package*, except that term is already taken in the Python context: " -"a single module distribution may contain zero, one, or many Python packages.)" -msgstr "" - -#: distutils/introduction.rst:194 -msgid "pure module distribution" -msgstr "" - -#: distutils/introduction.rst:193 -msgid "" -"a module distribution that contains only pure Python modules and packages. " -"Sometimes referred to as a \"pure distribution.\"" -msgstr "" - -#: distutils/introduction.rst:198 -msgid "non-pure module distribution" -msgstr "" - -#: distutils/introduction.rst:197 -msgid "" -"a module distribution that contains at least one extension module. " -"Sometimes referred to as a \"non-pure distribution.\"" -msgstr "" - -#: distutils/introduction.rst:202 -msgid "distribution root" -msgstr "" - -#: distutils/introduction.rst:201 -msgid "" -"the top-level directory of your source tree (or source distribution); the " -"directory where :file:`setup.py` exists. Generally :file:`setup.py` will " -"be run from this directory." -msgstr "" diff --git a/distutils/packageindex.po b/distutils/packageindex.po deleted file mode 100644 index c447bd751..000000000 --- a/distutils/packageindex.po +++ /dev/null @@ -1,34 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/packageindex.rst:7 -msgid "The Python Package Index (PyPI)" -msgstr "" - -#: distutils/packageindex.rst:9 -msgid "" -"The `Python Package Index (PyPI)`_ stores metadata describing distributions " -"packaged with distutils and other publishing tools, as well the distribution " -"archives themselves." -msgstr "" - -#: distutils/packageindex.rst:13 -msgid "" -"References to up to date PyPI documentation can be found at :ref:`publishing-" -"python-packages`." -msgstr "" diff --git a/distutils/setupscript.po b/distutils/setupscript.po deleted file mode 100644 index 185f2e88b..000000000 --- a/distutils/setupscript.po +++ /dev/null @@ -1,1037 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/setupscript.rst:5 -msgid "Writing the Setup Script" -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/setupscript.rst:9 -msgid "" -"The setup script is the centre of all activity in building, distributing, " -"and installing modules using the Distutils. The main purpose of the setup " -"script is to describe your module distribution to the Distutils, so that the " -"various commands that operate on your modules do the right thing. As we saw " -"in section :ref:`distutils-simple-example` above, the setup script consists " -"mainly of a call to :func:`setup`, and most information supplied to the " -"Distutils by the module developer is supplied as keyword arguments to :func:" -"`setup`." -msgstr "" - -#: distutils/setupscript.rst:17 -msgid "" -"Here's a slightly more involved example, which we'll follow for the next " -"couple of sections: the Distutils' own setup script. (Keep in mind that " -"although the Distutils are included with Python 1.6 and later, they also " -"have an independent existence so that Python 1.5.2 users can use them to " -"install other module distributions. The Distutils' own setup script, shown " -"here, is used to install the package into Python 1.5.2.) ::" -msgstr "" - -#: distutils/setupscript.rst:37 -msgid "" -"There are only two differences between this and the trivial one-file " -"distribution presented in section :ref:`distutils-simple-example`: more " -"metadata, and the specification of pure Python modules by package, rather " -"than by module. This is important since the Distutils consist of a couple " -"of dozen modules split into (so far) two packages; an explicit list of every " -"module would be tedious to generate and difficult to maintain. For more " -"information on the additional meta-data, see section :ref:`meta-data`." -msgstr "" - -#: distutils/setupscript.rst:45 -msgid "" -"Note that any pathnames (files or directories) supplied in the setup script " -"should be written using the Unix convention, i.e. slash-separated. The " -"Distutils will take care of converting this platform-neutral representation " -"into whatever is appropriate on your current platform before actually using " -"the pathname. This makes your setup script portable across operating " -"systems, which of course is one of the major goals of the Distutils. In " -"this spirit, all pathnames in this document are slash-separated." -msgstr "" - -#: distutils/setupscript.rst:53 -msgid "" -"This, of course, only applies to pathnames given to Distutils functions. If " -"you, for example, use standard Python functions such as :func:`glob.glob` " -"or :func:`os.listdir` to specify files, you should be careful to write " -"portable code instead of hardcoding path separators::" -msgstr "" - -#: distutils/setupscript.rst:65 -msgid "Listing whole packages" -msgstr "" - -#: distutils/setupscript.rst:67 -msgid "" -"The ``packages`` option tells the Distutils to process (build, distribute, " -"install, etc.) all pure Python modules found in each package mentioned in " -"the ``packages`` list. In order to do this, of course, there has to be a " -"correspondence between package names and directories in the filesystem. The " -"default correspondence is the most obvious one, i.e. package :mod:" -"`distutils` is found in the directory :file:`distutils` relative to the " -"distribution root. Thus, when you say ``packages = ['foo']`` in your setup " -"script, you are promising that the Distutils will find a file :file:`foo/" -"__init__.py` (which might be spelled differently on your system, but you get " -"the idea) relative to the directory where your setup script lives. If you " -"break this promise, the Distutils will issue a warning but still process the " -"broken package anyway." -msgstr "" - -#: distutils/setupscript.rst:79 -msgid "" -"If you use a different convention to lay out your source directory, that's " -"no problem: you just have to supply the ``package_dir`` option to tell the " -"Distutils about your convention. For example, say you keep all Python " -"source under :file:`lib`, so that modules in the \"root package\" (i.e., not " -"in any package at all) are in :file:`lib`, modules in the :mod:`foo` package " -"are in :file:`lib/foo`, and so forth. Then you would put ::" -msgstr "" - -#: distutils/setupscript.rst:88 -msgid "" -"in your setup script. The keys to this dictionary are package names, and an " -"empty package name stands for the root package. The values are directory " -"names relative to your distribution root. In this case, when you say " -"``packages = ['foo']``, you are promising that the file :file:`lib/foo/" -"__init__.py` exists." -msgstr "" - -#: distutils/setupscript.rst:93 -msgid "" -"Another possible convention is to put the :mod:`foo` package right in :file:" -"`lib`, the :mod:`foo.bar` package in :file:`lib/bar`, etc. This would be " -"written in the setup script as ::" -msgstr "" - -#: distutils/setupscript.rst:99 -msgid "" -"A ``package: dir`` entry in the ``package_dir`` dictionary implicitly " -"applies to all packages below *package*, so the :mod:`foo.bar` case is " -"automatically handled here. In this example, having ``packages = ['foo', " -"'foo.bar']`` tells the Distutils to look for :file:`lib/__init__.py` and :" -"file:`lib/bar/__init__.py`. (Keep in mind that although ``package_dir`` " -"applies recursively, you must explicitly list all packages in ``packages``: " -"the Distutils will *not* recursively scan your source tree looking for any " -"directory with an :file:`__init__.py` file.)" -msgstr "" - -#: distutils/setupscript.rst:112 -msgid "Listing individual modules" -msgstr "" - -#: distutils/setupscript.rst:114 -msgid "" -"For a small module distribution, you might prefer to list all modules rather " -"than listing packages---especially the case of a single module that goes in " -"the \"root package\" (i.e., no package at all). This simplest case was " -"shown in section :ref:`distutils-simple-example`; here is a slightly more " -"involved example::" -msgstr "" - -#: distutils/setupscript.rst:121 -msgid "" -"This describes two modules, one of them in the \"root\" package, the other " -"in the :mod:`pkg` package. Again, the default package/directory layout " -"implies that these two modules can be found in :file:`mod1.py` and :file:" -"`pkg/mod2.py`, and that :file:`pkg/__init__.py` exists as well. And again, " -"you can override the package/directory correspondence using the " -"``package_dir`` option." -msgstr "" - -#: distutils/setupscript.rst:131 -msgid "Describing extension modules" -msgstr "" - -#: distutils/setupscript.rst:133 -msgid "" -"Just as writing Python extension modules is a bit more complicated than " -"writing pure Python modules, describing them to the Distutils is a bit more " -"complicated. Unlike pure modules, it's not enough just to list modules or " -"packages and expect the Distutils to go out and find the right files; you " -"have to specify the extension name, source file(s), and any compile/link " -"requirements (include directories, libraries to link with, etc.)." -msgstr "" - -#: distutils/setupscript.rst:142 -msgid "" -"All of this is done through another keyword argument to :func:`setup`, the " -"``ext_modules`` option. ``ext_modules`` is just a list of :class:" -"`~distutils.core.Extension` instances, each of which describes a single " -"extension module. Suppose your distribution includes a single extension, " -"called :mod:`foo` and implemented by :file:`foo.c`. If no additional " -"instructions to the compiler/linker are needed, describing this extension is " -"quite simple::" -msgstr "" - -#: distutils/setupscript.rst:152 -msgid "" -"The :class:`Extension` class can be imported from :mod:`distutils.core` " -"along with :func:`setup`. Thus, the setup script for a module distribution " -"that contains only this one extension and nothing else might be::" -msgstr "" - -#: distutils/setupscript.rst:162 -msgid "" -"The :class:`Extension` class (actually, the underlying extension-building " -"machinery implemented by the :command:`build_ext` command) supports a great " -"deal of flexibility in describing Python extensions, which is explained in " -"the following sections." -msgstr "" - -#: distutils/setupscript.rst:169 -msgid "Extension names and packages" -msgstr "" - -#: distutils/setupscript.rst:171 -msgid "" -"The first argument to the :class:`~distutils.core.Extension` constructor is " -"always the name of the extension, including any package names. For " -"example, ::" -msgstr "" - -#: distutils/setupscript.rst:176 -msgid "describes an extension that lives in the root package, while ::" -msgstr "" - -#: distutils/setupscript.rst:180 -msgid "" -"describes the same extension in the :mod:`pkg` package. The source files " -"and resulting object code are identical in both cases; the only difference " -"is where in the filesystem (and therefore where in Python's namespace " -"hierarchy) the resulting extension lives." -msgstr "" - -#: distutils/setupscript.rst:185 -msgid "" -"If you have a number of extensions all in the same package (or all under the " -"same base package), use the ``ext_package`` keyword argument to :func:" -"`setup`. For example, ::" -msgstr "" - -#: distutils/setupscript.rst:195 -msgid "" -"will compile :file:`foo.c` to the extension :mod:`pkg.foo`, and :file:`bar." -"c` to :mod:`pkg.subpkg.bar`." -msgstr "" - -#: distutils/setupscript.rst:200 -msgid "Extension source files" -msgstr "" - -#: distutils/setupscript.rst:202 -msgid "" -"The second argument to the :class:`~distutils.core.Extension` constructor is " -"a list of source files. Since the Distutils currently only support C, C++, " -"and Objective-C extensions, these are normally C/C++/Objective-C source " -"files. (Be sure to use appropriate extensions to distinguish C++ source " -"files: :file:`.cc` and :file:`.cpp` seem to be recognized by both Unix and " -"Windows compilers.)" -msgstr "" - -#: distutils/setupscript.rst:209 -msgid "" -"However, you can also include SWIG interface (:file:`.i`) files in the list; " -"the :command:`build_ext` command knows how to deal with SWIG extensions: it " -"will run SWIG on the interface file and compile the resulting C/C++ file " -"into your extension." -msgstr "" - -#: distutils/setupscript.rst:216 -msgid "" -"This warning notwithstanding, options to SWIG can be currently passed like " -"this::" -msgstr "" - -#: distutils/setupscript.rst:225 -msgid "Or on the commandline like this::" -msgstr "" - -#: distutils/setupscript.rst:229 -msgid "" -"On some platforms, you can include non-source files that are processed by " -"the compiler and included in your extension. Currently, this just means " -"Windows message text (:file:`.mc`) files and resource definition (:file:`." -"rc`) files for Visual C++. These will be compiled to binary resource (:file:" -"`.res`) files and linked into the executable." -msgstr "" - -#: distutils/setupscript.rst:237 -msgid "Preprocessor options" -msgstr "" - -#: distutils/setupscript.rst:239 -msgid "" -"Three optional arguments to :class:`~distutils.core.Extension` will help if " -"you need to specify include directories to search or preprocessor macros to " -"define/undefine: ``include_dirs``, ``define_macros``, and ``undef_macros``." -msgstr "" - -#: distutils/setupscript.rst:243 -msgid "" -"For example, if your extension requires header files in the :file:`include` " -"directory under your distribution root, use the ``include_dirs`` option::" -msgstr "" - -#: distutils/setupscript.rst:248 -msgid "" -"You can specify absolute directories there; if you know that your extension " -"will only be built on Unix systems with X11R6 installed to :file:`/usr`, you " -"can get away with ::" -msgstr "" - -#: distutils/setupscript.rst:254 -msgid "" -"You should avoid this sort of non-portable usage if you plan to distribute " -"your code: it's probably better to write C code like ::" -msgstr "" - -#: distutils/setupscript.rst:259 -msgid "" -"If you need to include header files from some other Python extension, you " -"can take advantage of the fact that header files are installed in a " -"consistent way by the Distutils :command:`install_headers` command. For " -"example, the Numerical Python header files are installed (on a standard Unix " -"installation) to :file:`/usr/local/include/python1.5/Numerical`. (The exact " -"location will differ according to your platform and Python installation.) " -"Since the Python include directory---\\ :file:`/usr/local/include/python1.5` " -"in this case---is always included in the search path when building Python " -"extensions, the best approach is to write C code like ::" -msgstr "" - -#: distutils/setupscript.rst:271 -msgid "" -"If you must put the :file:`Numerical` include directory right into your " -"header search path, though, you can find that directory using the Distutils :" -"mod:`distutils.sysconfig` module::" -msgstr "" - -#: distutils/setupscript.rst:281 -msgid "" -"Even though this is quite portable---it will work on any Python " -"installation, regardless of platform---it's probably easier to just write " -"your C code in the sensible way." -msgstr "" - -#: distutils/setupscript.rst:285 -msgid "" -"You can define and undefine pre-processor macros with the ``define_macros`` " -"and ``undef_macros`` options. ``define_macros`` takes a list of ``(name, " -"value)`` tuples, where ``name`` is the name of the macro to define (a " -"string) and ``value`` is its value: either a string or ``None``. (Defining " -"a macro ``FOO`` to ``None`` is the equivalent of a bare ``#define FOO`` in " -"your C source: with most compilers, this sets ``FOO`` to the string ``1``.) " -"``undef_macros`` is just a list of macros to undefine." -msgstr "" - -#: distutils/setupscript.rst:293 -msgid "For example::" -msgstr "" - -#: distutils/setupscript.rst:300 -msgid "is the equivalent of having this at the top of every C source file::" -msgstr "" - -#: distutils/setupscript.rst:309 -msgid "Library options" -msgstr "" - -#: distutils/setupscript.rst:311 -msgid "" -"You can also specify the libraries to link against when building your " -"extension, and the directories to search for those libraries. The " -"``libraries`` option is a list of libraries to link against, " -"``library_dirs`` is a list of directories to search for libraries at link-" -"time, and ``runtime_library_dirs`` is a list of directories to search for " -"shared (dynamically loaded) libraries at run-time." -msgstr "" - -#: distutils/setupscript.rst:317 -msgid "" -"For example, if you need to link against libraries known to be in the " -"standard library search path on target systems ::" -msgstr "" - -#: distutils/setupscript.rst:323 -msgid "" -"If you need to link with libraries in a non-standard location, you'll have " -"to include the location in ``library_dirs``::" -msgstr "" - -#: distutils/setupscript.rst:330 -msgid "" -"(Again, this sort of non-portable construct should be avoided if you intend " -"to distribute your code.)" -msgstr "" - -#: distutils/setupscript.rst:337 -msgid "Other options" -msgstr "" - -#: distutils/setupscript.rst:339 -msgid "" -"There are still some other options which can be used to handle special cases." -msgstr "" - -#: distutils/setupscript.rst:341 -msgid "" -"The ``optional`` option is a boolean; if it is true, a build failure in the " -"extension will not abort the build process, but instead simply not install " -"the failing extension." -msgstr "" - -#: distutils/setupscript.rst:345 -msgid "" -"The ``extra_objects`` option is a list of object files to be passed to the " -"linker. These files must not have extensions, as the default extension for " -"the compiler is used." -msgstr "" - -#: distutils/setupscript.rst:349 -msgid "" -"``extra_compile_args`` and ``extra_link_args`` can be used to specify " -"additional command line options for the respective compiler and linker " -"command lines." -msgstr "" - -#: distutils/setupscript.rst:353 -msgid "" -"``export_symbols`` is only useful on Windows. It can contain a list of " -"symbols (functions or variables) to be exported. This option is not needed " -"when building compiled extensions: Distutils will automatically add " -"``initmodule`` to the list of exported symbols." -msgstr "" - -#: distutils/setupscript.rst:358 -msgid "" -"The ``depends`` option is a list of files that the extension depends on (for " -"example header files). The build command will call the compiler on the " -"sources to rebuild extension if any on this files has been modified since " -"the previous build." -msgstr "" - -#: distutils/setupscript.rst:364 -msgid "Relationships between Distributions and Packages" -msgstr "" - -#: distutils/setupscript.rst:366 -msgid "A distribution may relate to packages in three specific ways:" -msgstr "" - -#: distutils/setupscript.rst:368 -msgid "It can require packages or modules." -msgstr "" - -#: distutils/setupscript.rst:370 -msgid "It can provide packages or modules." -msgstr "" - -#: distutils/setupscript.rst:372 -msgid "It can obsolete packages or modules." -msgstr "" - -#: distutils/setupscript.rst:374 -msgid "" -"These relationships can be specified using keyword arguments to the :func:" -"`distutils.core.setup` function." -msgstr "" - -#: distutils/setupscript.rst:377 -msgid "" -"Dependencies on other Python modules and packages can be specified by " -"supplying the *requires* keyword argument to :func:`setup`. The value must " -"be a list of strings. Each string specifies a package that is required, and " -"optionally what versions are sufficient." -msgstr "" - -#: distutils/setupscript.rst:382 -msgid "" -"To specify that any version of a module or package is required, the string " -"should consist entirely of the module or package name. Examples include " -"``'mymodule'`` and ``'xml.parsers.expat'``." -msgstr "" - -#: distutils/setupscript.rst:386 -msgid "" -"If specific versions are required, a sequence of qualifiers can be supplied " -"in parentheses. Each qualifier may consist of a comparison operator and a " -"version number. The accepted comparison operators are::" -msgstr "" - -#: distutils/setupscript.rst:393 -msgid "" -"These can be combined by using multiple qualifiers separated by commas (and " -"optional whitespace). In this case, all of the qualifiers must be matched; " -"a logical AND is used to combine the evaluations." -msgstr "" - -#: distutils/setupscript.rst:397 -msgid "Let's look at a bunch of examples:" -msgstr "" - -#: distutils/setupscript.rst:400 -msgid "Requires Expression" -msgstr "" - -#: distutils/setupscript.rst:418 -msgid "Explanation" -msgstr "" - -#: distutils/setupscript.rst:402 -msgid "``==1.0``" -msgstr "" - -#: distutils/setupscript.rst:402 -msgid "Only version ``1.0`` is compatible" -msgstr "" - -#: distutils/setupscript.rst:404 -msgid "``>1.0, !=1.5.1, <2.0``" -msgstr "" - -#: distutils/setupscript.rst:404 -msgid "" -"Any version after ``1.0`` and before ``2.0`` is compatible, except ``1.5.1``" -msgstr "" - -#: distutils/setupscript.rst:408 -msgid "" -"Now that we can specify dependencies, we also need to be able to specify " -"what we provide that other distributions can require. This is done using " -"the *provides* keyword argument to :func:`setup`. The value for this keyword " -"is a list of strings, each of which names a Python module or package, and " -"optionally identifies the version. If the version is not specified, it is " -"assumed to match that of the distribution." -msgstr "" - -#: distutils/setupscript.rst:415 -msgid "Some examples:" -msgstr "" - -#: distutils/setupscript.rst:418 -msgid "Provides Expression" -msgstr "" - -#: distutils/setupscript.rst:420 -msgid "``mypkg``" -msgstr "" - -#: distutils/setupscript.rst:420 -msgid "Provide ``mypkg``, using the distribution version" -msgstr "" - -#: distutils/setupscript.rst:423 -msgid "``mypkg (1.1)``" -msgstr "" - -#: distutils/setupscript.rst:423 -msgid "Provide ``mypkg`` version 1.1, regardless of the distribution version" -msgstr "" - -#: distutils/setupscript.rst:427 -msgid "" -"A package can declare that it obsoletes other packages using the *obsoletes* " -"keyword argument. The value for this is similar to that of the *requires* " -"keyword: a list of strings giving module or package specifiers. Each " -"specifier consists of a module or package name optionally followed by one or " -"more version qualifiers. Version qualifiers are given in parentheses after " -"the module or package name." -msgstr "" - -#: distutils/setupscript.rst:434 -msgid "" -"The versions identified by the qualifiers are those that are obsoleted by " -"the distribution being described. If no qualifiers are given, all versions " -"of the named module or package are understood to be obsoleted." -msgstr "" - -#: distutils/setupscript.rst:441 -msgid "Installing Scripts" -msgstr "" - -#: distutils/setupscript.rst:443 -msgid "" -"So far we have been dealing with pure and non-pure Python modules, which are " -"usually not run by themselves but imported by scripts." -msgstr "" - -#: distutils/setupscript.rst:446 -msgid "" -"Scripts are files containing Python source code, intended to be started from " -"the command line. Scripts don't require Distutils to do anything very " -"complicated. The only clever feature is that if the first line of the script " -"starts with ``#!`` and contains the word \"python\", the Distutils will " -"adjust the first line to refer to the current interpreter location. By " -"default, it is replaced with the current interpreter location. The :option:" -"`!--executable` (or :option:`!-e`) option will allow the interpreter path to " -"be explicitly overridden." -msgstr "" - -#: distutils/setupscript.rst:454 -msgid "" -"The ``scripts`` option simply is a list of files to be handled in this way. " -"From the PyXML setup script::" -msgstr "" - -#: distutils/setupscript.rst:461 -msgid "" -"All the scripts will also be added to the ``MANIFEST`` file if no template " -"is provided. See :ref:`manifest`." -msgstr "" - -#: distutils/setupscript.rst:469 -msgid "Installing Package Data" -msgstr "" - -#: distutils/setupscript.rst:471 -msgid "" -"Often, additional files need to be installed into a package. These files " -"are often data that's closely related to the package's implementation, or " -"text files containing documentation that might be of interest to programmers " -"using the package. These files are called :dfn:`package data`." -msgstr "" - -#: distutils/setupscript.rst:476 -msgid "" -"Package data can be added to packages using the ``package_data`` keyword " -"argument to the :func:`setup` function. The value must be a mapping from " -"package name to a list of relative path names that should be copied into the " -"package. The paths are interpreted as relative to the directory containing " -"the package (information from the ``package_dir`` mapping is used if " -"appropriate); that is, the files are expected to be part of the package in " -"the source directories. They may contain glob patterns as well." -msgstr "" - -#: distutils/setupscript.rst:484 -msgid "" -"The path names may contain directory portions; any necessary directories " -"will be created in the installation." -msgstr "" - -#: distutils/setupscript.rst:487 -msgid "" -"For example, if a package should contain a subdirectory with several data " -"files, the files can be arranged like this in the source tree::" -msgstr "" - -#: distutils/setupscript.rst:500 -msgid "The corresponding call to :func:`setup` might be::" -msgstr "" - -#: distutils/setupscript.rst:509 -msgid "" -"All the files that match ``package_data`` will be added to the ``MANIFEST`` " -"file if no template is provided. See :ref:`manifest`." -msgstr "" - -#: distutils/setupscript.rst:517 -msgid "Installing Additional Files" -msgstr "" - -#: distutils/setupscript.rst:519 -msgid "" -"The ``data_files`` option can be used to specify additional files needed by " -"the module distribution: configuration files, message catalogs, data files, " -"anything which doesn't fit in the previous categories." -msgstr "" - -#: distutils/setupscript.rst:523 -msgid "" -"``data_files`` specifies a sequence of (*directory*, *files*) pairs in the " -"following way::" -msgstr "" - -#: distutils/setupscript.rst:531 -msgid "" -"Each (*directory*, *files*) pair in the sequence specifies the installation " -"directory and the files to install there." -msgstr "" - -#: distutils/setupscript.rst:534 -msgid "" -"Each file name in *files* is interpreted relative to the :file:`setup.py` " -"script at the top of the package source distribution. Note that you can " -"specify the directory where the data files will be installed, but you cannot " -"rename the data files themselves." -msgstr "" - -#: distutils/setupscript.rst:539 -msgid "" -"The *directory* should be a relative path. It is interpreted relative to the " -"installation prefix (Python's ``sys.prefix`` for system installations; " -"``site.USER_BASE`` for user installations). Distutils allows *directory* to " -"be an absolute installation path, but this is discouraged since it is " -"incompatible with the wheel packaging format. No directory information from " -"*files* is used to determine the final location of the installed file; only " -"the name of the file is used." -msgstr "" - -#: distutils/setupscript.rst:547 -msgid "" -"You can specify the ``data_files`` options as a simple sequence of files " -"without specifying a target directory, but this is not recommended, and the :" -"command:`install` command will print a warning in this case. To install data " -"files directly in the target directory, an empty string should be given as " -"the directory." -msgstr "" - -#: distutils/setupscript.rst:553 -msgid "" -"All the files that match ``data_files`` will be added to the ``MANIFEST`` " -"file if no template is provided. See :ref:`manifest`." -msgstr "" - -#: distutils/setupscript.rst:561 -msgid "Additional meta-data" -msgstr "" - -#: distutils/setupscript.rst:563 -msgid "" -"The setup script may include additional meta-data beyond the name and " -"version. This information includes:" -msgstr "" - -#: distutils/setupscript.rst:567 -msgid "Meta-Data" -msgstr "" - -#: distutils/setupscript.rst:567 -msgid "Description" -msgstr "" - -#: distutils/setupscript.rst:567 -msgid "Value" -msgstr "" - -#: distutils/setupscript.rst:567 -msgid "Notes" -msgstr "" - -#: distutils/setupscript.rst:569 -msgid "``name``" -msgstr "" - -#: distutils/setupscript.rst:569 -msgid "name of the package" -msgstr "" - -#: distutils/setupscript.rst:571 distutils/setupscript.rst:578 -#: distutils/setupscript.rst:601 -msgid "short string" -msgstr "" - -#: distutils/setupscript.rst:583 -msgid "\\(1)" -msgstr "" - -#: distutils/setupscript.rst:571 -msgid "``version``" -msgstr "" - -#: distutils/setupscript.rst:571 -msgid "version of this release" -msgstr "" - -#: distutils/setupscript.rst:571 -msgid "(1)(2)" -msgstr "" - -#: distutils/setupscript.rst:573 -msgid "``author``" -msgstr "" - -#: distutils/setupscript.rst:573 -msgid "package author's name" -msgstr "" - -#: distutils/setupscript.rst:575 distutils/setupscript.rst:580 -msgid "\\(3)" -msgstr "" - -#: distutils/setupscript.rst:575 -msgid "``author_email``" -msgstr "" - -#: distutils/setupscript.rst:575 -msgid "email address of the package author" -msgstr "" - -#: distutils/setupscript.rst:580 -msgid "email address" -msgstr "" - -#: distutils/setupscript.rst:578 -msgid "``maintainer``" -msgstr "" - -#: distutils/setupscript.rst:578 -msgid "package maintainer's name" -msgstr "" - -#: distutils/setupscript.rst:580 -msgid "``maintainer_email``" -msgstr "" - -#: distutils/setupscript.rst:580 -msgid "email address of the package maintainer" -msgstr "" - -#: distutils/setupscript.rst:583 -msgid "``url``" -msgstr "" - -#: distutils/setupscript.rst:583 -msgid "home page for the package" -msgstr "" - -#: distutils/setupscript.rst:592 -msgid "URL" -msgstr "" - -#: distutils/setupscript.rst:585 -msgid "``description``" -msgstr "" - -#: distutils/setupscript.rst:585 -msgid "short, summary description of the package" -msgstr "" - -#: distutils/setupscript.rst:589 -msgid "``long_description``" -msgstr "" - -#: distutils/setupscript.rst:589 -msgid "longer description of the package" -msgstr "" - -#: distutils/setupscript.rst:589 -msgid "long string" -msgstr "" - -#: distutils/setupscript.rst:589 -msgid "\\(4)" -msgstr "" - -#: distutils/setupscript.rst:592 -msgid "``download_url``" -msgstr "" - -#: distutils/setupscript.rst:592 -msgid "location where the package may be downloaded" -msgstr "" - -#: distutils/setupscript.rst:595 -msgid "``classifiers``" -msgstr "" - -#: distutils/setupscript.rst:595 -msgid "a list of classifiers" -msgstr "" - -#: distutils/setupscript.rst:597 distutils/setupscript.rst:599 -msgid "list of strings" -msgstr "" - -#: distutils/setupscript.rst:595 -msgid "(6)(7)" -msgstr "" - -#: distutils/setupscript.rst:597 -msgid "``platforms``" -msgstr "" - -#: distutils/setupscript.rst:597 -msgid "a list of platforms" -msgstr "" - -#: distutils/setupscript.rst:599 -msgid "(6)(8)" -msgstr "" - -#: distutils/setupscript.rst:599 -msgid "``keywords``" -msgstr "" - -#: distutils/setupscript.rst:599 -msgid "a list of keywords" -msgstr "" - -#: distutils/setupscript.rst:601 -msgid "``license``" -msgstr "" - -#: distutils/setupscript.rst:601 -msgid "license for the package" -msgstr "" - -#: distutils/setupscript.rst:601 -msgid "\\(5)" -msgstr "" - -#: distutils/setupscript.rst:604 -msgid "Notes:" -msgstr "" - -#: distutils/setupscript.rst:607 -msgid "These fields are required." -msgstr "" - -#: distutils/setupscript.rst:610 -msgid "" -"It is recommended that versions take the form *major.minor[.patch[.sub]]*." -msgstr "" - -#: distutils/setupscript.rst:613 -msgid "" -"Either the author or the maintainer must be identified. If maintainer is " -"provided, distutils lists it as the author in :file:`PKG-INFO`." -msgstr "" - -#: distutils/setupscript.rst:617 -msgid "" -"The ``long_description`` field is used by PyPI when you publish a package, " -"to build its project page." -msgstr "" - -#: distutils/setupscript.rst:621 -msgid "" -"The ``license`` field is a text indicating the license covering the package " -"where the license is not a selection from the \"License\" Trove classifiers. " -"See the ``Classifier`` field. Notice that there's a ``licence`` distribution " -"option which is deprecated but still acts as an alias for ``license``." -msgstr "" - -#: distutils/setupscript.rst:628 -msgid "This field must be a list." -msgstr "" - -#: distutils/setupscript.rst:631 -msgid "" -"The valid classifiers are listed on `PyPI `_." -msgstr "" - -#: distutils/setupscript.rst:635 -msgid "" -"To preserve backward compatibility, this field also accepts a string. If you " -"pass a comma-separated string ``'foo, bar'``, it will be converted to " -"``['foo', 'bar']``, Otherwise, it will be converted to a list of one string." -msgstr "" - -#: distutils/setupscript.rst:641 -msgid "'short string'" -msgstr "" - -#: distutils/setupscript.rst:641 -msgid "A single line of text, not more than 200 characters." -msgstr "" - -#: distutils/setupscript.rst:645 -msgid "'long string'" -msgstr "" - -#: distutils/setupscript.rst:644 -msgid "" -"Multiple lines of plain text in reStructuredText format (see https://" -"docutils.sourceforge.io/)." -msgstr "" - -#: distutils/setupscript.rst:648 -msgid "'list of strings'" -msgstr "" - -#: distutils/setupscript.rst:648 -msgid "See below." -msgstr "" - -#: distutils/setupscript.rst:650 -msgid "" -"Encoding the version information is an art in itself. Python packages " -"generally adhere to the version format *major.minor[.patch][sub]*. The major " -"number is 0 for initial, experimental releases of software. It is " -"incremented for releases that represent major milestones in a package. The " -"minor number is incremented when important new features are added to the " -"package. The patch number increments when bug-fix releases are made. " -"Additional trailing version information is sometimes used to indicate sub-" -"releases. These are \"a1,a2,...,aN\" (for alpha releases, where " -"functionality and API may change), \"b1,b2,...,bN\" (for beta releases, " -"which only fix bugs) and \"pr1,pr2,...,prN\" (for final pre-release release " -"testing). Some examples:" -msgstr "" - -#: distutils/setupscript.rst:662 -msgid "0.1.0" -msgstr "" - -#: distutils/setupscript.rst:662 -msgid "the first, experimental release of a package" -msgstr "" - -#: distutils/setupscript.rst:665 -msgid "1.0.1a2" -msgstr "" - -#: distutils/setupscript.rst:665 -msgid "the second alpha release of the first patch version of 1.0" -msgstr "" - -#: distutils/setupscript.rst:667 -msgid "``classifiers`` must be specified in a list::" -msgstr "" - -#: distutils/setupscript.rst:688 -msgid "" -":class:`~distutils.core.setup` now warns when ``classifiers``, ``keywords`` " -"or ``platforms`` fields are not specified as a list or a string." -msgstr "" - -#: distutils/setupscript.rst:695 -msgid "Debugging the setup script" -msgstr "" - -#: distutils/setupscript.rst:697 -msgid "" -"Sometimes things go wrong, and the setup script doesn't do what the " -"developer wants." -msgstr "" - -#: distutils/setupscript.rst:700 -msgid "" -"Distutils catches any exceptions when running the setup script, and print a " -"simple error message before the script is terminated. The motivation for " -"this behaviour is to not confuse administrators who don't know much about " -"Python and are trying to install a package. If they get a big long " -"traceback from deep inside the guts of Distutils, they may think the package " -"or the Python installation is broken because they don't read all the way " -"down to the bottom and see that it's a permission problem." -msgstr "" - -#: distutils/setupscript.rst:708 -msgid "" -"On the other hand, this doesn't help the developer to find the cause of the " -"failure. For this purpose, the :envvar:`DISTUTILS_DEBUG` environment " -"variable can be set to anything except an empty string, and distutils will " -"now print detailed information about what it is doing, dump the full " -"traceback when an exception occurs, and print the whole command line when an " -"external program (like a C compiler) fails." -msgstr "" diff --git a/distutils/sourcedist.po b/distutils/sourcedist.po deleted file mode 100644 index ab2e916a1..000000000 --- a/distutils/sourcedist.po +++ /dev/null @@ -1,436 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/sourcedist.rst:5 -msgid "Creating a Source Distribution" -msgstr "" - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" - -#: distutils/sourcedist.rst:9 -msgid "" -"As shown in section :ref:`distutils-simple-example`, you use the :command:" -"`sdist` command to create a source distribution. In the simplest case, ::" -msgstr "" - -#: distutils/sourcedist.rst:14 -msgid "" -"(assuming you haven't specified any :command:`sdist` options in the setup " -"script or config file), :command:`sdist` creates the archive of the default " -"format for the current platform. The default format is a gzip'ed tar file (:" -"file:`.tar.gz`) on Unix, and ZIP file on Windows." -msgstr "" - -#: distutils/sourcedist.rst:19 -msgid "" -"You can specify as many formats as you like using the :option:`!--formats` " -"option, for example::" -msgstr "" - -#: distutils/sourcedist.rst:24 -msgid "to create a gzipped tarball and a zip file. The available formats are:" -msgstr "" - -#: distutils/sourcedist.rst:27 -msgid "Format" -msgstr "" - -#: distutils/sourcedist.rst:27 -msgid "Description" -msgstr "" - -#: distutils/sourcedist.rst:27 -msgid "Notes" -msgstr "" - -#: distutils/sourcedist.rst:29 -msgid "``zip``" -msgstr "" - -#: distutils/sourcedist.rst:29 -msgid "zip file (:file:`.zip`)" -msgstr "" - -#: distutils/sourcedist.rst:29 -msgid "(1),(3)" -msgstr "" - -#: distutils/sourcedist.rst:31 -msgid "``gztar``" -msgstr "" - -#: distutils/sourcedist.rst:31 -msgid "gzip'ed tar file (:file:`.tar.gz`)" -msgstr "" - -#: distutils/sourcedist.rst:31 -msgid "\\(2)" -msgstr "" - -#: distutils/sourcedist.rst:34 -msgid "``bztar``" -msgstr "" - -#: distutils/sourcedist.rst:34 -msgid "bzip2'ed tar file (:file:`.tar.bz2`)" -msgstr "" - -#: distutils/sourcedist.rst:37 distutils/sourcedist.rst:43 -msgid "\\(5)" -msgstr "" - -#: distutils/sourcedist.rst:37 -msgid "``xztar``" -msgstr "" - -#: distutils/sourcedist.rst:37 -msgid "xz'ed tar file (:file:`.tar.xz`)" -msgstr "" - -#: distutils/sourcedist.rst:40 -msgid "``ztar``" -msgstr "" - -#: distutils/sourcedist.rst:40 -msgid "compressed tar file (:file:`.tar.Z`)" -msgstr "" - -#: distutils/sourcedist.rst:40 -msgid "(4),(5)" -msgstr "" - -#: distutils/sourcedist.rst:43 -msgid "``tar``" -msgstr "" - -#: distutils/sourcedist.rst:43 -msgid "tar file (:file:`.tar`)" -msgstr "" - -#: distutils/sourcedist.rst:46 -msgid "Added support for the ``xztar`` format." -msgstr "" - -#: distutils/sourcedist.rst:49 -msgid "Notes:" -msgstr "" - -#: distutils/sourcedist.rst:52 -msgid "default on Windows" -msgstr "" - -#: distutils/sourcedist.rst:55 -msgid "default on Unix" -msgstr "" - -#: distutils/sourcedist.rst:58 -msgid "" -"requires either external :program:`zip` utility or :mod:`zipfile` module " -"(part of the standard Python library since Python 1.6)" -msgstr "" - -#: distutils/sourcedist.rst:62 -msgid "" -"requires the :program:`compress` program. Notice that this format is now " -"pending for deprecation and will be removed in the future versions of Python." -msgstr "" - -#: distutils/sourcedist.rst:65 -msgid "" -"deprecated by `PEP 527 `_; `PyPI `_ only accepts ``.zip`` and ``.tar.gz`` files." -msgstr "" - -#: distutils/sourcedist.rst:68 -msgid "" -"When using any ``tar`` format (``gztar``, ``bztar``, ``xztar``, ``ztar`` or " -"``tar``), under Unix you can specify the ``owner`` and ``group`` names that " -"will be set for each member of the archive." -msgstr "" - -#: distutils/sourcedist.rst:72 -msgid "For example, if you want all files of the archive to be owned by root::" -msgstr "" - -#: distutils/sourcedist.rst:80 -msgid "Specifying the files to distribute" -msgstr "" - -#: distutils/sourcedist.rst:82 -msgid "" -"If you don't supply an explicit list of files (or instructions on how to " -"generate one), the :command:`sdist` command puts a minimal default set into " -"the source distribution:" -msgstr "" - -#: distutils/sourcedist.rst:86 -msgid "" -"all Python source files implied by the ``py_modules`` and ``packages`` " -"options" -msgstr "" - -#: distutils/sourcedist.rst:89 -msgid "" -"all C source files mentioned in the ``ext_modules`` or ``libraries`` options" -msgstr "" - -#: distutils/sourcedist.rst:95 -msgid "" -"scripts identified by the ``scripts`` option See :ref:`distutils-installing-" -"scripts`." -msgstr "" - -#: distutils/sourcedist.rst:98 -msgid "" -"anything that looks like a test script: :file:`test/test\\*.py` (currently, " -"the Distutils don't do anything with test scripts except include them in " -"source distributions, but in the future there will be a standard for testing " -"Python module distributions)" -msgstr "" - -#: distutils/sourcedist.rst:103 -msgid "" -"Any of the standard README files (:file:`README`, :file:`README.txt`, or :" -"file:`README.rst`), :file:`setup.py` (or whatever you called your setup " -"script), and :file:`setup.cfg`." -msgstr "" - -#: distutils/sourcedist.rst:107 -msgid "" -"all files that matches the ``package_data`` metadata. See :ref:`distutils-" -"installing-package-data`." -msgstr "" - -#: distutils/sourcedist.rst:110 -msgid "" -"all files that matches the ``data_files`` metadata. See :ref:`distutils-" -"additional-files`." -msgstr "" - -#: distutils/sourcedist.rst:113 -msgid "" -"Sometimes this is enough, but usually you will want to specify additional " -"files to distribute. The typical way to do this is to write a *manifest " -"template*, called :file:`MANIFEST.in` by default. The manifest template is " -"just a list of instructions for how to generate your manifest file, :file:" -"`MANIFEST`, which is the exact list of files to include in your source " -"distribution. The :command:`sdist` command processes this template and " -"generates a manifest based on its instructions and what it finds in the " -"filesystem." -msgstr "" - -#: distutils/sourcedist.rst:121 -msgid "" -"If you prefer to roll your own manifest file, the format is simple: one " -"filename per line, regular files (or symlinks to them) only. If you do " -"supply your own :file:`MANIFEST`, you must specify everything: the default " -"set of files described above does not apply in this case." -msgstr "" - -#: distutils/sourcedist.rst:126 -msgid "" -"An existing generated :file:`MANIFEST` will be regenerated without :command:" -"`sdist` comparing its modification time to the one of :file:`MANIFEST.in` " -"or :file:`setup.py`." -msgstr "" - -#: distutils/sourcedist.rst:131 -msgid "" -":file:`MANIFEST` files start with a comment indicating they are generated. " -"Files without this comment are not overwritten or removed." -msgstr "" - -#: distutils/sourcedist.rst:135 -msgid "" -":command:`sdist` will read a :file:`MANIFEST` file if no :file:`MANIFEST.in` " -"exists, like it used to do." -msgstr "" - -#: distutils/sourcedist.rst:139 -msgid "" -":file:`README.rst` is now included in the list of distutils standard READMEs." -msgstr "" - -#: distutils/sourcedist.rst:143 -msgid "" -"The manifest template has one command per line, where each command specifies " -"a set of files to include or exclude from the source distribution. For an " -"example, again we turn to the Distutils' own manifest template:" -msgstr "" - -#: distutils/sourcedist.rst:153 -msgid "" -"The meanings should be fairly clear: include all files in the distribution " -"root matching :file:`\\*.txt`, all files anywhere under the :file:`examples` " -"directory matching :file:`\\*.txt` or :file:`\\*.py`, and exclude all " -"directories matching :file:`examples/sample?/build`. All of this is done " -"*after* the standard include set, so you can exclude files from the standard " -"set with explicit instructions in the manifest template. (Or, you can use " -"the :option:`!--no-defaults` option to disable the standard set entirely.) " -"There are several other commands available in the manifest template mini-" -"language; see section :ref:`sdist-cmd`." -msgstr "" - -#: distutils/sourcedist.rst:163 -msgid "" -"The order of commands in the manifest template matters: initially, we have " -"the list of default files as described above, and each command in the " -"template adds to or removes from that list of files. Once we have fully " -"processed the manifest template, we remove files that should not be included " -"in the source distribution:" -msgstr "" - -#: distutils/sourcedist.rst:169 -msgid "all files in the Distutils \"build\" tree (default :file:`build/`)" -msgstr "" - -#: distutils/sourcedist.rst:171 -msgid "" -"all files in directories named :file:`RCS`, :file:`CVS`, :file:`.svn`, :file:" -"`.hg`, :file:`.git`, :file:`.bzr` or :file:`_darcs`" -msgstr "" - -#: distutils/sourcedist.rst:174 -msgid "" -"Now we have our complete list of files, which is written to the manifest for " -"future reference, and then used to build the source distribution archive(s)." -msgstr "" - -#: distutils/sourcedist.rst:177 -msgid "" -"You can disable the default set of included files with the :option:`!--no-" -"defaults` option, and you can disable the standard exclude set with :option:" -"`!--no-prune`." -msgstr "" - -#: distutils/sourcedist.rst:181 -msgid "" -"Following the Distutils' own manifest template, let's trace how the :command:" -"`sdist` command builds the list of files to include in the Distutils source " -"distribution:" -msgstr "" - -#: distutils/sourcedist.rst:185 -msgid "" -"include all Python source files in the :file:`distutils` and :file:" -"`distutils/command` subdirectories (because packages corresponding to those " -"two directories were mentioned in the ``packages`` option in the setup " -"script---see section :ref:`setup-script`)" -msgstr "" - -#: distutils/sourcedist.rst:190 -msgid "" -"include :file:`README.txt`, :file:`setup.py`, and :file:`setup.cfg` " -"(standard files)" -msgstr "" - -#: distutils/sourcedist.rst:193 -msgid "include :file:`test/test\\*.py` (standard files)" -msgstr "" - -#: distutils/sourcedist.rst:195 -msgid "" -"include :file:`\\*.txt` in the distribution root (this will find :file:" -"`README.txt` a second time, but such redundancies are weeded out later)" -msgstr "" - -#: distutils/sourcedist.rst:198 -msgid "" -"include anything matching :file:`\\*.txt` or :file:`\\*.py` in the sub-tree " -"under :file:`examples`," -msgstr "" - -#: distutils/sourcedist.rst:201 -msgid "" -"exclude all files in the sub-trees starting at directories matching :file:" -"`examples/sample?/build`\\ ---this may exclude files included by the " -"previous two steps, so it's important that the ``prune`` command in the " -"manifest template comes after the ``recursive-include`` command" -msgstr "" - -#: distutils/sourcedist.rst:206 -msgid "" -"exclude the entire :file:`build` tree, and any :file:`RCS`, :file:`CVS`, :" -"file:`.svn`, :file:`.hg`, :file:`.git`, :file:`.bzr` and :file:`_darcs` " -"directories" -msgstr "" - -#: distutils/sourcedist.rst:210 -msgid "" -"Just like in the setup script, file and directory names in the manifest " -"template should always be slash-separated; the Distutils will take care of " -"converting them to the standard representation on your platform. That way, " -"the manifest template is portable across operating systems." -msgstr "" - -#: distutils/sourcedist.rst:219 -msgid "Manifest-related options" -msgstr "" - -#: distutils/sourcedist.rst:221 -msgid "" -"The normal course of operations for the :command:`sdist` command is as " -"follows:" -msgstr "" - -#: distutils/sourcedist.rst:223 -msgid "" -"if the manifest file (:file:`MANIFEST` by default) exists and the first line " -"does not have a comment indicating it is generated from :file:`MANIFEST.in`, " -"then it is used as is, unaltered" -msgstr "" - -#: distutils/sourcedist.rst:227 -msgid "" -"if the manifest file doesn't exist or has been previously automatically " -"generated, read :file:`MANIFEST.in` and create the manifest" -msgstr "" - -#: distutils/sourcedist.rst:230 -msgid "" -"if neither :file:`MANIFEST` nor :file:`MANIFEST.in` exist, create a manifest " -"with just the default file set" -msgstr "" - -#: distutils/sourcedist.rst:233 -msgid "" -"use the list of files now in :file:`MANIFEST` (either just generated or read " -"in) to create the source distribution archive(s)" -msgstr "" - -#: distutils/sourcedist.rst:236 -msgid "" -"There are a couple of options that modify this behaviour. First, use the :" -"option:`!--no-defaults` and :option:`!--no-prune` to disable the standard " -"\"include\" and \"exclude\" sets." -msgstr "" - -#: distutils/sourcedist.rst:240 -msgid "" -"Second, you might just want to (re)generate the manifest, but not create a " -"source distribution::" -msgstr "" - -#: distutils/sourcedist.rst:245 -msgid ":option:`!-o` is a shortcut for :option:`!--manifest-only`." -msgstr "" diff --git a/distutils/uploading.po b/distutils/uploading.po deleted file mode 100644 index 6a90f70d0..000000000 --- a/distutils/uploading.po +++ /dev/null @@ -1,27 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: distutils/uploading.rst:5 -msgid "Uploading Packages to the Package Index" -msgstr "" - -#: distutils/uploading.rst:7 -msgid "" -"References to up to date PyPI documentation can be found at :ref:`publishing-" -"python-packages`." -msgstr "" diff --git a/extending/building.po b/extending/building.po index ec3a43c52..6cb3b8abf 100644 --- a/extending/building.po +++ b/extending/building.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -30,7 +30,7 @@ msgstr "" msgid "" "To be importable, the shared library must be available on :envvar:" "`PYTHONPATH`, and must be named after the module name, with an appropriate " -"extension. When using distutils, the correct filename is generated " +"extension. When using setuptools, the correct filename is generated " "automatically." msgstr "" @@ -63,110 +63,14 @@ msgid "" "in one library\"* section in :pep:`489` for details." msgstr "" -#: extending/building.rst:49 -msgid "Building C and C++ Extensions with distutils" +#: extending/building.rst:52 +msgid "Building C and C++ Extensions with setuptools" msgstr "" -#: extending/building.rst:53 +#: extending/building.rst:54 msgid "" -"Extension modules can be built using distutils, which is included in " -"Python. Since distutils also supports creation of binary packages, users " -"don't necessarily need a compiler and distutils to install the extension." -msgstr "" - -#: extending/building.rst:57 -msgid "" -"A distutils package contains a driver script, :file:`setup.py`. This is a " -"plain Python file, which, in the most simple case, could look like this:" -msgstr "" - -#: extending/building.rst:73 -msgid "With this :file:`setup.py`, and a file :file:`demo.c`, running ::" -msgstr "" - -#: extending/building.rst:77 -msgid "" -"will compile :file:`demo.c`, and produce an extension module named ``demo`` " -"in the :file:`build` directory. Depending on the system, the module file " -"will end up in a subdirectory :file:`build/lib.system`, and may have a name " -"like :file:`demo.so` or :file:`demo.pyd`." -msgstr "" - -#: extending/building.rst:82 -msgid "" -"In the :file:`setup.py`, all execution is performed by calling the ``setup`` " -"function. This takes a variable number of keyword arguments, of which the " -"example above uses only a subset. Specifically, the example specifies meta-" -"information to build packages, and it specifies the contents of the " -"package. Normally, a package will contain additional modules, like Python " -"source modules, documentation, subpackages, etc. Please refer to the " -"distutils documentation in :ref:`distutils-index` to learn more about the " -"features of distutils; this section explains building extension modules only." -msgstr "" - -#: extending/building.rst:91 -msgid "" -"It is common to pre-compute arguments to :func:`setup`, to better structure " -"the driver script. In the example above, the ``ext_modules`` argument to :" -"func:`~distutils.core.setup` is a list of extension modules, each of which " -"is an instance of the :class:`~distutils.extension.Extension`. In the " -"example, the instance defines an extension named ``demo`` which is build by " -"compiling a single source file, :file:`demo.c`." -msgstr "" - -#: extending/building.rst:99 -msgid "" -"In many cases, building an extension is more complex, since additional " -"preprocessor defines and libraries may be needed. This is demonstrated in " -"the example below." -msgstr "" - -#: extending/building.rst:127 -msgid "" -"In this example, :func:`~distutils.core.setup` is called with additional " -"meta-information, which is recommended when distribution packages have to be " -"built. For the extension itself, it specifies preprocessor defines, include " -"directories, library directories, and libraries. Depending on the compiler, " -"distutils passes this information in different ways to the compiler. For " -"example, on Unix, this may result in the compilation commands ::" -msgstr "" - -#: extending/building.rst:139 -msgid "" -"These lines are for demonstration purposes only; distutils users should " -"trust that distutils gets the invocations right." -msgstr "" - -#: extending/building.rst:146 -msgid "Distributing your extension modules" -msgstr "" - -#: extending/building.rst:148 -msgid "" -"When an extension has been successfully built, there are three ways to use " -"it." -msgstr "" - -#: extending/building.rst:150 -msgid "" -"End-users will typically want to install the module, they do so by running ::" -msgstr "" - -#: extending/building.rst:154 -msgid "" -"Module maintainers should produce source packages; to do so, they run ::" -msgstr "" - -#: extending/building.rst:158 -msgid "" -"In some cases, additional files need to be included in a source " -"distribution; this is done through a :file:`MANIFEST.in` file; see :ref:" -"`manifest` for details." -msgstr "" - -#: extending/building.rst:161 -msgid "" -"If the source distribution has been built successfully, maintainers can also " -"create binary distributions. Depending on the platform, one of the following " -"commands can be used to do so. ::" +"Python 3.12 and newer no longer come with distutils. Please refer to the " +"``setuptools`` documentation at https://setuptools.readthedocs.io/en/latest/" +"setuptools.html to learn more about how build and distribute C/C++ " +"extensions with setuptools." msgstr "" diff --git a/extending/newtypes.po b/extending/newtypes.po index 248b43b63..3a2e89c64 100644 --- a/extending/newtypes.po +++ b/extending/newtypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -280,54 +280,15 @@ msgstr "" msgid "" "For each entry in the table, a :term:`descriptor` will be constructed and " "added to the type which will be able to extract a value from the instance " -"structure. The :c:member:`~PyMemberDef.type` field should contain one of " -"the type codes defined in the :file:`structmember.h` header; the value will " -"be used to determine how to convert Python values to and from C values. " -"The :c:member:`~PyMemberDef.flags` field is used to store flags which " -"control how the attribute can be accessed." +"structure. The :c:member:`~PyMemberDef.type` field should contain a type " +"code like :c:macro:`Py_T_INT` or :c:macro:`Py_T_DOUBLE`; the value will be " +"used to determine how to convert Python values to and from C values. The :c:" +"member:`~PyMemberDef.flags` field is used to store flags which control how " +"the attribute can be accessed: you can set it to :c:macro:`Py_READONLY` to " +"prevent Python code from setting it." msgstr "" -#: extending/newtypes.rst:294 -msgid "" -"The following flag constants are defined in :file:`structmember.h`; they may " -"be combined using bitwise-OR." -msgstr "" - -#: extending/newtypes.rst:298 -msgid "Constant" -msgstr "" - -#: extending/newtypes.rst:298 -msgid "Meaning" -msgstr "" - -#: extending/newtypes.rst:300 -msgid ":const:`READONLY`" -msgstr "" - -#: extending/newtypes.rst:300 -msgid "Never writable." -msgstr "" - -#: extending/newtypes.rst:302 -msgid ":const:`PY_AUDIT_READ`" -msgstr "" - -#: extending/newtypes.rst:302 -msgid "" -"Emit an ``object.__getattr__`` :ref:`audit events ` before " -"reading." -msgstr "" - -#: extending/newtypes.rst:307 -msgid "" -":c:macro:`RESTRICTED`, :c:macro:`READ_RESTRICTED` and :c:macro:" -"`WRITE_RESTRICTED` are deprecated. However, :c:macro:`READ_RESTRICTED` is an " -"alias for :c:macro:`PY_AUDIT_READ`, so fields that specify either :c:macro:" -"`RESTRICTED` or :c:macro:`READ_RESTRICTED` will also raise an audit event." -msgstr "" - -#: extending/newtypes.rst:320 +#: extending/newtypes.rst:295 msgid "" "An interesting advantage of using the :c:member:`~PyTypeObject.tp_members` " "table to build descriptors that are used at runtime is that any attribute " @@ -337,17 +298,17 @@ msgid "" "`__doc__` attribute." msgstr "" -#: extending/newtypes.rst:326 +#: extending/newtypes.rst:301 msgid "" "As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry " "with a :c:member:`~PyMethodDef.ml_name` value of ``NULL`` is required." msgstr "" -#: extending/newtypes.rst:340 +#: extending/newtypes.rst:315 msgid "Type-specific Attribute Management" msgstr "" -#: extending/newtypes.rst:342 +#: extending/newtypes.rst:317 msgid "" "For simplicity, only the :c:expr:`char\\*` version will be demonstrated " "here; the type of the name parameter is the only difference between the :c:" @@ -358,18 +319,18 @@ msgid "" "functionality, you'll understand what needs to be done." msgstr "" -#: extending/newtypes.rst:350 +#: extending/newtypes.rst:325 msgid "" "The :c:member:`~PyTypeObject.tp_getattr` handler is called when the object " "requires an attribute look-up. It is called in the same situations where " "the :meth:`~object.__getattr__` method of a class would be called." msgstr "" -#: extending/newtypes.rst:354 +#: extending/newtypes.rst:329 msgid "Here is an example::" msgstr "" -#: extending/newtypes.rst:370 +#: extending/newtypes.rst:345 msgid "" "The :c:member:`~PyTypeObject.tp_setattr` handler is called when the :meth:" "`~object.__setattr__` or :meth:`~object.__delattr__` method of a class " @@ -379,11 +340,11 @@ msgid "" "tp_setattr` handler should be set to ``NULL``. ::" msgstr "" -#: extending/newtypes.rst:384 +#: extending/newtypes.rst:359 msgid "Object Comparison" msgstr "" -#: extending/newtypes.rst:390 +#: extending/newtypes.rst:365 msgid "" "The :c:member:`~PyTypeObject.tp_richcompare` handler is called when " "comparisons are needed. It is analogous to the :ref:`rich comparison " @@ -391,7 +352,7 @@ msgid "" "`PyObject_RichCompare` and :c:func:`PyObject_RichCompareBool`." msgstr "" -#: extending/newtypes.rst:395 +#: extending/newtypes.rst:370 msgid "" "This function is called with two Python objects and the operator as " "arguments, where the operator is one of ``Py_EQ``, ``Py_NE``, ``Py_LE``, " @@ -402,23 +363,23 @@ msgid "" "should be tried, or ``NULL`` if an exception was set." msgstr "" -#: extending/newtypes.rst:403 +#: extending/newtypes.rst:378 msgid "" "Here is a sample implementation, for a datatype that is considered equal if " "the size of an internal pointer is equal::" msgstr "" -#: extending/newtypes.rst:433 +#: extending/newtypes.rst:408 msgid "Abstract Protocol Support" msgstr "" -#: extending/newtypes.rst:435 +#: extending/newtypes.rst:410 msgid "" "Python supports a variety of *abstract* 'protocols;' the specific interfaces " "provided to use these interfaces are documented in :ref:`abstract`." msgstr "" -#: extending/newtypes.rst:439 +#: extending/newtypes.rst:414 msgid "" "A number of these abstract interfaces were defined early in the development " "of the Python implementation. In particular, the number, mapping, and " @@ -433,7 +394,7 @@ msgid "" "slot, but a slot may still be unfilled.) ::" msgstr "" -#: extending/newtypes.rst:454 +#: extending/newtypes.rst:429 msgid "" "If you wish your object to be able to act like a number, a sequence, or a " "mapping object, then you place the address of a structure that implements " @@ -444,13 +405,13 @@ msgid "" "distribution. ::" msgstr "" -#: extending/newtypes.rst:463 +#: extending/newtypes.rst:438 msgid "" "This function, if you choose to provide it, should return a hash number for " "an instance of your data type. Here is a simple example::" msgstr "" -#: extending/newtypes.rst:476 +#: extending/newtypes.rst:451 msgid "" ":c:type:`Py_hash_t` is a signed integer type with a platform-varying width. " "Returning ``-1`` from :c:member:`~PyTypeObject.tp_hash` indicates an error, " @@ -458,7 +419,7 @@ msgid "" "computation is successful, as seen above." msgstr "" -#: extending/newtypes.rst:485 +#: extending/newtypes.rst:460 msgid "" "This function is called when an instance of your data type is \"called\", " "for example, if ``obj1`` is an instance of your data type and the Python " @@ -466,23 +427,23 @@ msgid "" "handler is invoked." msgstr "" -#: extending/newtypes.rst:489 +#: extending/newtypes.rst:464 msgid "This function takes three arguments:" msgstr "" -#: extending/newtypes.rst:491 +#: extending/newtypes.rst:466 msgid "" "*self* is the instance of the data type which is the subject of the call. If " "the call is ``obj1('hello')``, then *self* is ``obj1``." msgstr "" -#: extending/newtypes.rst:494 +#: extending/newtypes.rst:469 msgid "" "*args* is a tuple containing the arguments to the call. You can use :c:func:" "`PyArg_ParseTuple` to extract the arguments." msgstr "" -#: extending/newtypes.rst:497 +#: extending/newtypes.rst:472 msgid "" "*kwds* is a dictionary of keyword arguments that were passed. If this is non-" "``NULL`` and you support keyword arguments, use :c:func:" @@ -491,11 +452,11 @@ msgid "" "`TypeError` with a message saying that keyword arguments are not supported." msgstr "" -#: extending/newtypes.rst:503 +#: extending/newtypes.rst:478 msgid "Here is a toy ``tp_call`` implementation::" msgstr "" -#: extending/newtypes.rst:529 +#: extending/newtypes.rst:504 msgid "" "These functions provide support for the iterator protocol. Both handlers " "take exactly one parameter, the instance for which they are being called, " @@ -506,21 +467,21 @@ msgid "" "__next__` method." msgstr "" -#: extending/newtypes.rst:536 +#: extending/newtypes.rst:511 msgid "" "Any :term:`iterable` object must implement the :c:member:`~PyTypeObject." "tp_iter` handler, which must return an :term:`iterator` object. Here the " "same guidelines apply as for Python classes:" msgstr "" -#: extending/newtypes.rst:540 +#: extending/newtypes.rst:515 msgid "" "For collections (such as lists and tuples) which can support multiple " "independent iterators, a new iterator should be created and returned by each " "call to :c:member:`~PyTypeObject.tp_iter`." msgstr "" -#: extending/newtypes.rst:543 +#: extending/newtypes.rst:518 msgid "" "Objects which can only be iterated over once (usually due to side effects of " "iteration, such as file objects) can implement :c:member:`~PyTypeObject." @@ -528,7 +489,7 @@ msgid "" "therefore implement the :c:member:`~PyTypeObject.tp_iternext` handler." msgstr "" -#: extending/newtypes.rst:548 +#: extending/newtypes.rst:523 msgid "" "Any :term:`iterator` object should implement both :c:member:`~PyTypeObject." "tp_iter` and :c:member:`~PyTypeObject.tp_iternext`. An iterator's :c:member:" @@ -543,64 +504,45 @@ msgid "" "``NULL``." msgstr "" -#: extending/newtypes.rst:564 +#: extending/newtypes.rst:539 msgid "Weak Reference Support" msgstr "" -#: extending/newtypes.rst:566 +#: extending/newtypes.rst:541 msgid "" "One of the goals of Python's weak reference implementation is to allow any " "type to participate in the weak reference mechanism without incurring the " "overhead on performance-critical objects (such as numbers)." msgstr "" -#: extending/newtypes.rst:571 +#: extending/newtypes.rst:546 msgid "Documentation for the :mod:`weakref` module." msgstr "" -#: extending/newtypes.rst:573 -msgid "" -"For an object to be weakly referencable, the extension type must do two " -"things:" -msgstr "" - -#: extending/newtypes.rst:575 -msgid "" -"Include a :c:expr:`PyObject*` field in the C object structure dedicated to " -"the weak reference mechanism. The object's constructor should leave it " -"``NULL`` (which is automatic when using the default :c:member:`~PyTypeObject." -"tp_alloc`)." -msgstr "" - -#: extending/newtypes.rst:580 +#: extending/newtypes.rst:548 msgid "" -"Set the :c:member:`~PyTypeObject.tp_weaklistoffset` type member to the " -"offset of the aforementioned field in the C object structure, so that the " -"interpreter knows how to access and modify that field." +"For an object to be weakly referencable, the extension type must set the " +"``Py_TPFLAGS_MANAGED_WEAKREF`` bit of the :c:member:`~PyTypeObject.tp_flags` " +"field. The legacy :c:member:`~PyTypeObject.tp_weaklistoffset` field should " +"be left as zero." msgstr "" -#: extending/newtypes.rst:584 +#: extending/newtypes.rst:553 msgid "" -"Concretely, here is how a trivial object structure would be augmented with " -"the required field::" +"Concretely, here is how the statically declared type object would look::" msgstr "" -#: extending/newtypes.rst:592 -msgid "And the corresponding member in the statically declared type object::" -msgstr "" - -#: extending/newtypes.rst:600 +#: extending/newtypes.rst:562 msgid "" "The only further addition is that ``tp_dealloc`` needs to clear any weak " -"references (by calling :c:func:`PyObject_ClearWeakRefs`) if the field is non-" -"``NULL``::" +"references (by calling :c:func:`PyObject_ClearWeakRefs`)::" msgstr "" -#: extending/newtypes.rst:616 +#: extending/newtypes.rst:576 msgid "More Suggestions" msgstr "" -#: extending/newtypes.rst:618 +#: extending/newtypes.rst:578 msgid "" "In order to learn how to implement any specific method for your new data " "type, get the :term:`CPython` source code. Go to the :file:`Objects` " @@ -609,27 +551,27 @@ msgid "" "function you want to implement." msgstr "" -#: extending/newtypes.rst:624 +#: extending/newtypes.rst:584 msgid "" "When you need to verify that an object is a concrete instance of the type " "you are implementing, use the :c:func:`PyObject_TypeCheck` function. A " "sample of its use might be something like the following::" msgstr "" -#: extending/newtypes.rst:635 +#: extending/newtypes.rst:595 msgid "Download CPython source releases." msgstr "" -#: extending/newtypes.rst:635 +#: extending/newtypes.rst:595 msgid "https://www.python.org/downloads/source/" msgstr "" -#: extending/newtypes.rst:637 +#: extending/newtypes.rst:597 msgid "" "The CPython project on GitHub, where the CPython source code is developed." msgstr "" -#: extending/newtypes.rst:638 +#: extending/newtypes.rst:598 msgid "https://github.com/python/cpython" msgstr "" @@ -676,23 +618,3 @@ msgstr "" #: extending/newtypes.rst:150 msgid "repr" msgstr "" - -#: extending/newtypes.rst:313 -msgid "READONLY" -msgstr "" - -#: extending/newtypes.rst:313 -msgid "READ_RESTRICTED" -msgstr "" - -#: extending/newtypes.rst:313 -msgid "WRITE_RESTRICTED" -msgstr "" - -#: extending/newtypes.rst:313 -msgid "RESTRICTED" -msgstr "" - -#: extending/newtypes.rst:313 -msgid "PY_AUDIT_READ" -msgstr "" diff --git a/extending/newtypes_tutorial.po b/extending/newtypes_tutorial.po index 77c3171b9..cf86ce72c 100644 --- a/extending/newtypes_tutorial.po +++ b/extending/newtypes_tutorial.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -231,66 +231,50 @@ msgstr "" #: extending/newtypes_tutorial.rst:198 msgid "" "That's it! All that remains is to build it; put the above code in a file " -"called :file:`custom.c` and:" +"called :file:`custom.c`," msgstr "" -#: extending/newtypes_tutorial.rst:207 +#: extending/newtypes_tutorial.rst:203 +msgid "in a file called :file:`pyproject.toml`, and" +msgstr "" + +#: extending/newtypes_tutorial.rst:210 msgid "in a file called :file:`setup.py`; then typing" msgstr "" -#: extending/newtypes_tutorial.rst:213 +#: extending/newtypes_tutorial.rst:216 msgid "" -"at a shell should produce a file :file:`custom.so` in a subdirectory; move " -"to that directory and fire up Python --- you should be able to ``import " -"custom`` and play around with Custom objects." +"in a shell should produce a file :file:`custom.so` in a subdirectory and " +"install it; now fire up Python --- you should be able to ``import custom`` " +"and play around with ``Custom`` objects." msgstr "" -#: extending/newtypes_tutorial.rst:217 +#: extending/newtypes_tutorial.rst:220 msgid "That wasn't so hard, was it?" msgstr "" -#: extending/newtypes_tutorial.rst:219 +#: extending/newtypes_tutorial.rst:222 msgid "" "Of course, the current Custom type is pretty uninteresting. It has no data " "and doesn't do anything. It can't even be subclassed." msgstr "" -#: extending/newtypes_tutorial.rst:223 -msgid "" -"While this documentation showcases the standard :mod:`!distutils` module for " -"building C extensions, it is recommended in real-world use cases to use the " -"newer and better-maintained ``setuptools`` library. Documentation on how to " -"do this is out of scope for this document and can be found in the `Python " -"Packaging User's Guide `_." -msgstr "" - -#: extending/newtypes_tutorial.rst:231 +#: extending/newtypes_tutorial.rst:227 msgid "Adding data and methods to the Basic example" msgstr "" -#: extending/newtypes_tutorial.rst:233 +#: extending/newtypes_tutorial.rst:229 msgid "" "Let's extend the basic example to add some data and methods. Let's also " "make the type usable as a base class. We'll create a new module, :mod:`!" "custom2` that adds these capabilities:" msgstr "" -#: extending/newtypes_tutorial.rst:240 +#: extending/newtypes_tutorial.rst:236 msgid "This version of the module has a number of changes." msgstr "" -#: extending/newtypes_tutorial.rst:242 -msgid "We've added an extra include::" -msgstr "" - -#: extending/newtypes_tutorial.rst:246 -msgid "" -"This include provides declarations that we use to handle attributes, as " -"described a bit later." -msgstr "" - -#: extending/newtypes_tutorial.rst:249 +#: extending/newtypes_tutorial.rst:238 msgid "" "The :class:`!Custom` type now has three data attributes in its C struct, " "*first*, *last*, and *number*. The *first* and *last* variables are Python " @@ -298,21 +282,21 @@ msgid "" "integer." msgstr "" -#: extending/newtypes_tutorial.rst:253 +#: extending/newtypes_tutorial.rst:242 msgid "The object structure is updated accordingly::" msgstr "" -#: extending/newtypes_tutorial.rst:262 +#: extending/newtypes_tutorial.rst:251 msgid "" "Because we now have data to manage, we have to be more careful about object " "allocation and deallocation. At a minimum, we need a deallocation method::" msgstr "" -#: extending/newtypes_tutorial.rst:273 +#: extending/newtypes_tutorial.rst:262 msgid "which is assigned to the :c:member:`~PyTypeObject.tp_dealloc` member::" msgstr "" -#: extending/newtypes_tutorial.rst:277 +#: extending/newtypes_tutorial.rst:266 msgid "" "This method first clears the reference counts of the two Python attributes. :" "c:func:`Py_XDECREF` correctly handles the case where its argument is " @@ -323,7 +307,7 @@ msgid "" "an instance of a subclass." msgstr "" -#: extending/newtypes_tutorial.rst:286 +#: extending/newtypes_tutorial.rst:275 msgid "" "The explicit cast to ``destructor`` above is needed because we defined " "``Custom_dealloc`` to take a ``CustomObject *`` argument, but the " @@ -332,17 +316,17 @@ msgid "" "oriented polymorphism, in C!" msgstr "" -#: extending/newtypes_tutorial.rst:292 +#: extending/newtypes_tutorial.rst:281 msgid "" "We want to make sure that the first and last names are initialized to empty " "strings, so we provide a ``tp_new`` implementation::" msgstr "" -#: extending/newtypes_tutorial.rst:316 +#: extending/newtypes_tutorial.rst:305 msgid "and install it in the :c:member:`~PyTypeObject.tp_new` member::" msgstr "" -#: extending/newtypes_tutorial.rst:320 +#: extending/newtypes_tutorial.rst:309 msgid "" "The ``tp_new`` handler is responsible for creating (as opposed to " "initializing) objects of the type. It is exposed in Python as the :meth:" @@ -353,7 +337,7 @@ msgid "" "``first`` and ``last`` attributes to non-``NULL`` default values." msgstr "" -#: extending/newtypes_tutorial.rst:328 +#: extending/newtypes_tutorial.rst:317 msgid "" "``tp_new`` is passed the type being instantiated (not necessarily " "``CustomType``, if a subclass is instantiated) and any arguments passed when " @@ -363,25 +347,25 @@ msgid "" "k.a. ``tp_init`` in C or ``__init__`` in Python) methods." msgstr "" -#: extending/newtypes_tutorial.rst:336 +#: extending/newtypes_tutorial.rst:325 msgid "" "``tp_new`` shouldn't call ``tp_init`` explicitly, as the interpreter will do " "it itself." msgstr "" -#: extending/newtypes_tutorial.rst:339 +#: extending/newtypes_tutorial.rst:328 msgid "" "The ``tp_new`` implementation calls the :c:member:`~PyTypeObject.tp_alloc` " "slot to allocate memory::" msgstr "" -#: extending/newtypes_tutorial.rst:344 +#: extending/newtypes_tutorial.rst:333 msgid "" "Since memory allocation may fail, we must check the :c:member:`~PyTypeObject." "tp_alloc` result against ``NULL`` before proceeding." msgstr "" -#: extending/newtypes_tutorial.rst:348 +#: extending/newtypes_tutorial.rst:337 msgid "" "We didn't fill the :c:member:`~PyTypeObject.tp_alloc` slot ourselves. " "Rather :c:func:`PyType_Ready` fills it for us by inheriting it from our base " @@ -389,7 +373,7 @@ msgid "" "allocation strategy." msgstr "" -#: extending/newtypes_tutorial.rst:354 +#: extending/newtypes_tutorial.rst:343 msgid "" "If you are creating a co-operative :c:member:`~PyTypeObject.tp_new` (one " "that calls a base type's :c:member:`~PyTypeObject.tp_new` or :meth:`~object." @@ -402,17 +386,17 @@ msgid "" "subclasses without getting a :exc:`TypeError`.)" msgstr "" -#: extending/newtypes_tutorial.rst:364 +#: extending/newtypes_tutorial.rst:353 msgid "" "We also define an initialization function which accepts arguments to provide " "initial values for our instance::" msgstr "" -#: extending/newtypes_tutorial.rst:393 +#: extending/newtypes_tutorial.rst:382 msgid "by filling the :c:member:`~PyTypeObject.tp_init` slot. ::" msgstr "" -#: extending/newtypes_tutorial.rst:397 +#: extending/newtypes_tutorial.rst:386 msgid "" "The :c:member:`~PyTypeObject.tp_init` slot is exposed in Python as the :meth:" "`~object.__init__` method. It is used to initialize an object after it's " @@ -420,7 +404,7 @@ msgid "" "they should return either ``0`` on success or ``-1`` on error." msgstr "" -#: extending/newtypes_tutorial.rst:402 +#: extending/newtypes_tutorial.rst:391 msgid "" "Unlike the ``tp_new`` handler, there is no guarantee that ``tp_init`` is " "called at all (for example, the :mod:`pickle` module by default doesn't " @@ -431,7 +415,7 @@ msgid "" "``first`` member like this::" msgstr "" -#: extending/newtypes_tutorial.rst:416 +#: extending/newtypes_tutorial.rst:405 msgid "" "But this would be risky. Our type doesn't restrict the type of the " "``first`` member, so it could be any kind of object. It could have a " @@ -441,49 +425,49 @@ msgid "" "accesses and modifies our object." msgstr "" -#: extending/newtypes_tutorial.rst:423 +#: extending/newtypes_tutorial.rst:412 msgid "" "To be paranoid and protect ourselves against this possibility, we almost " "always reassign members before decrementing their reference counts. When " "don't we have to do this?" msgstr "" -#: extending/newtypes_tutorial.rst:427 +#: extending/newtypes_tutorial.rst:416 msgid "when we absolutely know that the reference count is greater than 1;" msgstr "" -#: extending/newtypes_tutorial.rst:429 +#: extending/newtypes_tutorial.rst:418 msgid "" "when we know that deallocation of the object [#]_ will neither release the :" "term:`GIL` nor cause any calls back into our type's code;" msgstr "" -#: extending/newtypes_tutorial.rst:432 +#: extending/newtypes_tutorial.rst:421 msgid "" "when decrementing a reference count in a :c:member:`~PyTypeObject." "tp_dealloc` handler on a type which doesn't support cyclic garbage " "collection [#]_." msgstr "" -#: extending/newtypes_tutorial.rst:435 +#: extending/newtypes_tutorial.rst:424 msgid "" "We want to expose our instance variables as attributes. There are a number " "of ways to do that. The simplest way is to define member definitions::" msgstr "" -#: extending/newtypes_tutorial.rst:448 +#: extending/newtypes_tutorial.rst:437 msgid "" "and put the definitions in the :c:member:`~PyTypeObject.tp_members` slot::" msgstr "" -#: extending/newtypes_tutorial.rst:452 +#: extending/newtypes_tutorial.rst:441 msgid "" "Each member definition has a member name, type, offset, access flags and " "documentation string. See the :ref:`Generic-Attribute-Management` section " "below for details." msgstr "" -#: extending/newtypes_tutorial.rst:456 +#: extending/newtypes_tutorial.rst:445 msgid "" "A disadvantage of this approach is that it doesn't provide a way to restrict " "the types of objects that can be assigned to the Python attributes. We " @@ -494,13 +478,13 @@ msgid "" "deleted." msgstr "" -#: extending/newtypes_tutorial.rst:463 +#: extending/newtypes_tutorial.rst:452 msgid "" "We define a single method, :meth:`!Custom.name()`, that outputs the objects " "name as the concatenation of the first and last names. ::" msgstr "" -#: extending/newtypes_tutorial.rst:480 +#: extending/newtypes_tutorial.rst:469 msgid "" "The method is implemented as a C function that takes a :class:`!Custom` (or :" "class:`!Custom` subclass) instance as the first argument. Methods always " @@ -510,7 +494,7 @@ msgid "" "method is equivalent to the Python method:" msgstr "" -#: extending/newtypes_tutorial.rst:492 +#: extending/newtypes_tutorial.rst:481 msgid "" "Note that we have to check for the possibility that our :attr:`!first` and :" "attr:`!last` members are ``NULL``. This is because they can be deleted, in " @@ -519,23 +503,23 @@ msgid "" "We'll see how to do that in the next section." msgstr "" -#: extending/newtypes_tutorial.rst:498 +#: extending/newtypes_tutorial.rst:487 msgid "" "Now that we've defined the method, we need to create an array of method " "definitions::" msgstr "" -#: extending/newtypes_tutorial.rst:508 +#: extending/newtypes_tutorial.rst:497 msgid "" "(note that we used the :c:macro:`METH_NOARGS` flag to indicate that the " "method is expecting no arguments other than *self*)" msgstr "" -#: extending/newtypes_tutorial.rst:511 +#: extending/newtypes_tutorial.rst:500 msgid "and assign it to the :c:member:`~PyTypeObject.tp_methods` slot::" msgstr "" -#: extending/newtypes_tutorial.rst:515 +#: extending/newtypes_tutorial.rst:504 msgid "" "Finally, we'll make our type usable as a base class for subclassing. We've " "written our methods carefully so far so that they don't make any assumptions " @@ -543,22 +527,26 @@ msgid "" "to add the :c:macro:`Py_TPFLAGS_BASETYPE` to our class flag definition::" msgstr "" -#: extending/newtypes_tutorial.rst:522 +#: extending/newtypes_tutorial.rst:511 msgid "" "We rename :c:func:`!PyInit_custom` to :c:func:`!PyInit_custom2`, update the " "module name in the :c:type:`PyModuleDef` struct, and update the full class " "name in the :c:type:`PyTypeObject` struct." msgstr "" -#: extending/newtypes_tutorial.rst:526 -msgid "Finally, we update our :file:`setup.py` file to build the new module:" +#: extending/newtypes_tutorial.rst:515 +msgid "Finally, we update our :file:`setup.py` file to include the new module," +msgstr "" + +#: extending/newtypes_tutorial.rst:525 +msgid "and then we re-install so that we can ``import custom2``:" msgstr "" -#: extending/newtypes_tutorial.rst:539 +#: extending/newtypes_tutorial.rst:532 msgid "Providing finer control over data attributes" msgstr "" -#: extending/newtypes_tutorial.rst:541 +#: extending/newtypes_tutorial.rst:534 msgid "" "In this section, we'll provide finer control over how the :attr:`!first` " "and :attr:`!last` attributes are set in the :class:`!Custom` example. In the " @@ -567,14 +555,14 @@ msgid "" "make sure that these attributes always contain strings." msgstr "" -#: extending/newtypes_tutorial.rst:550 +#: extending/newtypes_tutorial.rst:543 msgid "" "To provide greater control, over the :attr:`!first` and :attr:`!last` " "attributes, we'll use custom getter and setter functions. Here are the " "functions for getting and setting the :attr:`!first` attribute::" msgstr "" -#: extending/newtypes_tutorial.rst:581 +#: extending/newtypes_tutorial.rst:574 msgid "" "The getter function is passed a :class:`!Custom` object and a \"closure\", " "which is a void pointer. In this case, the closure is ignored. (The " @@ -584,7 +572,7 @@ msgid "" "data in the closure.)" msgstr "" -#: extending/newtypes_tutorial.rst:587 +#: extending/newtypes_tutorial.rst:580 msgid "" "The setter function is passed the :class:`!Custom` object, the new value, " "and the closure. The new value may be ``NULL``, in which case the attribute " @@ -592,32 +580,32 @@ msgid "" "deleted or if its new value is not a string." msgstr "" -#: extending/newtypes_tutorial.rst:592 +#: extending/newtypes_tutorial.rst:585 msgid "We create an array of :c:type:`PyGetSetDef` structures::" msgstr "" -#: extending/newtypes_tutorial.rst:602 +#: extending/newtypes_tutorial.rst:595 msgid "and register it in the :c:member:`~PyTypeObject.tp_getset` slot::" msgstr "" -#: extending/newtypes_tutorial.rst:606 +#: extending/newtypes_tutorial.rst:599 msgid "" "The last item in a :c:type:`PyGetSetDef` structure is the \"closure\" " "mentioned above. In this case, we aren't using a closure, so we just pass " "``NULL``." msgstr "" -#: extending/newtypes_tutorial.rst:609 +#: extending/newtypes_tutorial.rst:602 msgid "We also remove the member definitions for these attributes::" msgstr "" -#: extending/newtypes_tutorial.rst:617 +#: extending/newtypes_tutorial.rst:610 msgid "" "We also need to update the :c:member:`~PyTypeObject.tp_init` handler to only " "allow strings [#]_ to be passed::" msgstr "" -#: extending/newtypes_tutorial.rst:646 +#: extending/newtypes_tutorial.rst:639 msgid "" "With these changes, we can assure that the ``first`` and ``last`` members " "are never ``NULL`` so we can remove checks for ``NULL`` values in almost all " @@ -627,25 +615,25 @@ msgid "" "possibility that the initialization of these members failed in ``tp_new``." msgstr "" -#: extending/newtypes_tutorial.rst:653 +#: extending/newtypes_tutorial.rst:646 msgid "" "We also rename the module initialization function and module name in the " "initialization function, as we did before, and we add an extra definition to " "the :file:`setup.py` file." msgstr "" -#: extending/newtypes_tutorial.rst:659 +#: extending/newtypes_tutorial.rst:652 msgid "Supporting cyclic garbage collection" msgstr "" -#: extending/newtypes_tutorial.rst:661 +#: extending/newtypes_tutorial.rst:654 msgid "" "Python has a :term:`cyclic garbage collector (GC) ` that " "can identify unneeded objects even when their reference counts are not zero. " "This can happen when objects are involved in cycles. For example, consider:" msgstr "" -#: extending/newtypes_tutorial.rst:671 +#: extending/newtypes_tutorial.rst:664 msgid "" "In this example, we create a list that contains itself. When we delete it, " "it still has a reference from itself. Its reference count doesn't drop to " @@ -653,7 +641,7 @@ msgid "" "out that the list is garbage and free it." msgstr "" -#: extending/newtypes_tutorial.rst:676 +#: extending/newtypes_tutorial.rst:669 msgid "" "In the second version of the :class:`!Custom` example, we allowed any kind " "of object to be stored in the :attr:`!first` or :attr:`!last` attributes " @@ -662,7 +650,7 @@ msgid "" "those two reasons, :class:`!Custom` objects can participate in cycles:" msgstr "" -#: extending/newtypes_tutorial.rst:690 +#: extending/newtypes_tutorial.rst:683 msgid "" "To allow a :class:`!Custom` instance participating in a reference cycle to " "be properly detected and collected by the cyclic GC, our :class:`!Custom` " @@ -670,13 +658,13 @@ msgid "" "these slots:" msgstr "" -#: extending/newtypes_tutorial.rst:697 +#: extending/newtypes_tutorial.rst:690 msgid "" "First, the traversal method lets the cyclic GC know about subobjects that " "could participate in cycles::" msgstr "" -#: extending/newtypes_tutorial.rst:717 +#: extending/newtypes_tutorial.rst:710 msgid "" "For each subobject that can participate in cycles, we need to call the :c:" "func:`!visit` function, which is passed to the traversal method. The :c:func:" @@ -685,26 +673,26 @@ msgid "" "be returned if it is non-zero." msgstr "" -#: extending/newtypes_tutorial.rst:723 +#: extending/newtypes_tutorial.rst:716 msgid "" "Python provides a :c:func:`Py_VISIT` macro that automates calling visit " "functions. With :c:func:`Py_VISIT`, we can minimize the amount of " "boilerplate in ``Custom_traverse``::" msgstr "" -#: extending/newtypes_tutorial.rst:736 +#: extending/newtypes_tutorial.rst:729 msgid "" "The :c:member:`~PyTypeObject.tp_traverse` implementation must name its " "arguments exactly *visit* and *arg* in order to use :c:func:`Py_VISIT`." msgstr "" -#: extending/newtypes_tutorial.rst:739 +#: extending/newtypes_tutorial.rst:732 msgid "" "Second, we need to provide a method for clearing any subobjects that can " "participate in cycles::" msgstr "" -#: extending/newtypes_tutorial.rst:750 +#: extending/newtypes_tutorial.rst:743 msgid "" "Notice the use of the :c:func:`Py_CLEAR` macro. It is the recommended and " "safe way to clear data attributes of arbitrary types while decrementing " @@ -714,18 +702,18 @@ msgid "" "again (*especially* if there is a reference cycle)." msgstr "" -#: extending/newtypes_tutorial.rst:758 +#: extending/newtypes_tutorial.rst:751 msgid "You could emulate :c:func:`Py_CLEAR` by writing::" msgstr "" -#: extending/newtypes_tutorial.rst:765 +#: extending/newtypes_tutorial.rst:758 msgid "" "Nevertheless, it is much easier and less error-prone to always use :c:func:" "`Py_CLEAR` when deleting an attribute. Don't try to micro-optimize at the " "expense of robustness!" msgstr "" -#: extending/newtypes_tutorial.rst:769 +#: extending/newtypes_tutorial.rst:762 msgid "" "The deallocator ``Custom_dealloc`` may call arbitrary code when clearing " "attributes. It means the circular GC can be triggered inside the function. " @@ -735,12 +723,12 @@ msgid "" "`PyObject_GC_UnTrack` and ``Custom_clear``::" msgstr "" -#: extending/newtypes_tutorial.rst:784 +#: extending/newtypes_tutorial.rst:777 msgid "" "Finally, we add the :c:macro:`Py_TPFLAGS_HAVE_GC` flag to the class flags::" msgstr "" -#: extending/newtypes_tutorial.rst:788 +#: extending/newtypes_tutorial.rst:781 msgid "" "That's pretty much it. If we had written custom :c:member:`~PyTypeObject." "tp_alloc` or :c:member:`~PyTypeObject.tp_free` handlers, we'd need to modify " @@ -748,11 +736,11 @@ msgid "" "automatically provided." msgstr "" -#: extending/newtypes_tutorial.rst:794 +#: extending/newtypes_tutorial.rst:787 msgid "Subclassing other types" msgstr "" -#: extending/newtypes_tutorial.rst:796 +#: extending/newtypes_tutorial.rst:789 msgid "" "It is possible to create new extension types that are derived from existing " "types. It is easiest to inherit from the built in types, since an extension " @@ -760,7 +748,7 @@ msgid "" "share these :c:type:`PyTypeObject` structures between extension modules." msgstr "" -#: extending/newtypes_tutorial.rst:801 +#: extending/newtypes_tutorial.rst:794 msgid "" "In this example we will create a :class:`!SubList` type that inherits from " "the built-in :class:`list` type. The new type will be completely compatible " @@ -768,34 +756,34 @@ msgid "" "that increases an internal counter:" msgstr "" -#: extending/newtypes_tutorial.rst:821 +#: extending/newtypes_tutorial.rst:814 msgid "" "As you can see, the source code closely resembles the :class:`!Custom` " "examples in previous sections. We will break down the main differences " "between them. ::" msgstr "" -#: extending/newtypes_tutorial.rst:829 +#: extending/newtypes_tutorial.rst:822 msgid "" "The primary difference for derived type objects is that the base type's " "object structure must be the first value. The base type will already " "include the :c:func:`PyObject_HEAD` at the beginning of its structure." msgstr "" -#: extending/newtypes_tutorial.rst:833 +#: extending/newtypes_tutorial.rst:826 msgid "" "When a Python object is a :class:`!SubList` instance, its ``PyObject *`` " "pointer can be safely cast to both ``PyListObject *`` and ``SubListObject " "*``::" msgstr "" -#: extending/newtypes_tutorial.rst:845 +#: extending/newtypes_tutorial.rst:838 msgid "" "We see above how to call through to the :meth:`~object.__init__` method of " "the base type." msgstr "" -#: extending/newtypes_tutorial.rst:848 +#: extending/newtypes_tutorial.rst:841 msgid "" "This pattern is important when writing a type with custom :c:member:" "`~PyTypeObject.tp_new` and :c:member:`~PyTypeObject.tp_dealloc` members. " @@ -804,7 +792,7 @@ msgid "" "the base class handle it by calling its own :c:member:`~PyTypeObject.tp_new`." msgstr "" -#: extending/newtypes_tutorial.rst:854 +#: extending/newtypes_tutorial.rst:847 msgid "" "The :c:type:`PyTypeObject` struct supports a :c:member:`~PyTypeObject." "tp_base` specifying the type's concrete base class. Due to cross-platform " @@ -813,7 +801,7 @@ msgid "" "function::" msgstr "" -#: extending/newtypes_tutorial.rst:882 +#: extending/newtypes_tutorial.rst:875 msgid "" "Before calling :c:func:`PyType_Ready`, the type structure must have the :c:" "member:`~PyTypeObject.tp_base` slot filled in. When we are deriving an " @@ -822,29 +810,29 @@ msgid "" "from the base type will be inherited." msgstr "" -#: extending/newtypes_tutorial.rst:888 +#: extending/newtypes_tutorial.rst:881 msgid "" "After that, calling :c:func:`PyType_Ready` and adding the type object to the " "module is the same as with the basic :class:`!Custom` examples." msgstr "" -#: extending/newtypes_tutorial.rst:893 +#: extending/newtypes_tutorial.rst:886 msgid "Footnotes" msgstr "" -#: extending/newtypes_tutorial.rst:894 +#: extending/newtypes_tutorial.rst:887 msgid "" "This is true when we know that the object is a basic type, like a string or " "a float." msgstr "" -#: extending/newtypes_tutorial.rst:897 +#: extending/newtypes_tutorial.rst:890 msgid "" "We relied on this in the :c:member:`~PyTypeObject.tp_dealloc` handler in " "this example, because our type doesn't support garbage collection." msgstr "" -#: extending/newtypes_tutorial.rst:900 +#: extending/newtypes_tutorial.rst:893 msgid "" "We now know that the first and last members are strings, so perhaps we could " "be less careful about decrementing their reference counts, however, we " @@ -854,7 +842,7 @@ msgid "" "objects." msgstr "" -#: extending/newtypes_tutorial.rst:906 +#: extending/newtypes_tutorial.rst:899 msgid "" "Also, even with our attributes restricted to strings instances, the user " "could pass arbitrary :class:`str` subclasses and therefore still create " diff --git a/extending/windows.po b/extending/windows.po index 72d21efe7..a36cbbbe5 100644 --- a/extending/windows.po +++ b/extending/windows.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -55,10 +55,10 @@ msgstr "" #: extending/windows.rst:36 msgid "" "There are two approaches to building extension modules on Windows, just as " -"there are on Unix: use the :mod:`distutils` package to control the build " -"process, or do things manually. The distutils approach works well for most " -"extensions; documentation on using :mod:`distutils` to build and package " -"extension modules is available in :ref:`distutils-index`. If you find you " +"there are on Unix: use the ``setuptools`` package to control the build " +"process, or do things manually. The setuptools approach works well for most " +"extensions; documentation on using ``setuptools`` to build and package " +"extension modules is available in :ref:`setuptools-index`. If you find you " "really need to do things manually, it may be instructive to study the " "project file for the :source:`winsound ` standard " "library module." diff --git a/faq/design.po b/faq/design.po index a8f013363..dddbc8fcc 100644 --- a/faq/design.po +++ b/faq/design.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -186,9 +186,9 @@ msgid "" "you want to use a method from a base class which is overridden in a derived " "class, you have to use the ``::`` operator -- in Python you can write " "``baseclass.methodname(self, )``. This is particularly " -"useful for :meth:`__init__` methods, and in general in cases where a derived " -"class method wants to extend the base class method of the same name and thus " -"has to call the base class method somehow." +"useful for :meth:`~object.__init__` methods, and in general in cases where a " +"derived class method wants to extend the base class method of the same name " +"and thus has to call the base class method somehow." msgstr "" #: faq/design.rst:136 @@ -321,49 +321,49 @@ msgstr "" #: faq/design.rst:235 msgid "" -"A try/except block is extremely efficient if no exceptions are raised. " -"Actually catching an exception is expensive. In versions of Python prior to " -"2.0 it was common to use this idiom::" +"A :keyword:`try`/:keyword:`except` block is extremely efficient if no " +"exceptions are raised. Actually catching an exception is expensive. In " +"versions of Python prior to 2.0 it was common to use this idiom::" msgstr "" -#: faq/design.rst:245 +#: faq/design.rst:246 msgid "" "This only made sense when you expected the dict to have the key almost all " "the time. If that wasn't the case, you coded it like this::" msgstr "" -#: faq/design.rst:253 +#: faq/design.rst:254 msgid "" "For this specific case, you could also use ``value = dict.setdefault(key, " "getvalue(key))``, but only if the ``getvalue()`` call is cheap enough " "because it is evaluated in all cases." msgstr "" -#: faq/design.rst:259 +#: faq/design.rst:260 msgid "Why isn't there a switch or case statement in Python?" msgstr "" -#: faq/design.rst:261 +#: faq/design.rst:262 msgid "" "You can do this easily enough with a sequence of ``if... elif... elif... " "else``. For literal values, or constants within a namespace, you can also " "use a ``match ... case`` statement." msgstr "" -#: faq/design.rst:265 +#: faq/design.rst:266 msgid "" "For cases where you need to choose from a very large number of " "possibilities, you can create a dictionary mapping case values to functions " "to call. For example::" msgstr "" -#: faq/design.rst:276 +#: faq/design.rst:277 msgid "" "For calling methods on objects, you can simplify yet further by using the :" "func:`getattr` built-in to retrieve methods with a particular name::" msgstr "" -#: faq/design.rst:288 +#: faq/design.rst:289 msgid "" "It's suggested that you use a prefix for the method names, such as " "``visit_`` in this example. Without such a prefix, if values are coming " @@ -371,13 +371,13 @@ msgid "" "your object." msgstr "" -#: faq/design.rst:294 +#: faq/design.rst:295 msgid "" "Can't you emulate threads in the interpreter instead of relying on an OS-" "specific thread implementation?" msgstr "" -#: faq/design.rst:296 +#: faq/design.rst:297 msgid "" "Answer 1: Unfortunately, the interpreter pushes at least one C stack frame " "for each Python stack frame. Also, extensions can call back into Python at " @@ -385,18 +385,18 @@ msgid "" "requires thread support for C." msgstr "" -#: faq/design.rst:301 +#: faq/design.rst:302 msgid "" "Answer 2: Fortunately, there is `Stackless Python `_, which has a completely redesigned " "interpreter loop that avoids the C stack." msgstr "" -#: faq/design.rst:306 +#: faq/design.rst:307 msgid "Why can't lambda expressions contain statements?" msgstr "" -#: faq/design.rst:308 +#: faq/design.rst:309 msgid "" "Python lambda expressions cannot contain statements because Python's " "syntactic framework can't handle statements nested inside expressions. " @@ -405,7 +405,7 @@ msgid "" "shorthand notation if you're too lazy to define a function." msgstr "" -#: faq/design.rst:314 +#: faq/design.rst:315 msgid "" "Functions are already first class objects in Python, and can be declared in " "a local scope. Therefore the only advantage of using a lambda instead of a " @@ -415,11 +415,11 @@ msgid "" "is assigned!" msgstr "" -#: faq/design.rst:322 +#: faq/design.rst:323 msgid "Can Python be compiled to machine code, C or some other language?" msgstr "" -#: faq/design.rst:324 +#: faq/design.rst:325 msgid "" "`Cython `_ compiles a modified version of Python with " "optional annotations into C extensions. `Nuitka `_ " @@ -427,11 +427,11 @@ msgid "" "full Python language." msgstr "" -#: faq/design.rst:331 +#: faq/design.rst:332 msgid "How does Python manage memory?" msgstr "" -#: faq/design.rst:333 +#: faq/design.rst:334 msgid "" "The details of Python memory management depend on the implementation. The " "standard implementation of Python, :term:`CPython`, uses reference counting " @@ -442,7 +442,7 @@ msgid "" "statistics, and tune the collector's parameters." msgstr "" -#: faq/design.rst:341 +#: faq/design.rst:342 msgid "" "Other implementations (such as `Jython `_ or `PyPy " "`_), however, can rely on a different mechanism such " @@ -451,32 +451,32 @@ msgid "" "reference counting implementation." msgstr "" -#: faq/design.rst:347 +#: faq/design.rst:348 msgid "" "In some Python implementations, the following code (which is fine in " "CPython) will probably run out of file descriptors::" msgstr "" -#: faq/design.rst:354 +#: faq/design.rst:355 msgid "" "Indeed, using CPython's reference counting and destructor scheme, each new " -"assignment to *f* closes the previous file. With a traditional GC, however, " -"those file objects will only get collected (and closed) at varying and " -"possibly long intervals." +"assignment to ``f`` closes the previous file. With a traditional GC, " +"however, those file objects will only get collected (and closed) at varying " +"and possibly long intervals." msgstr "" -#: faq/design.rst:359 +#: faq/design.rst:360 msgid "" "If you want to write code that will work with any Python implementation, you " "should explicitly close the file or use the :keyword:`with` statement; this " "will work regardless of memory management scheme::" msgstr "" -#: faq/design.rst:369 +#: faq/design.rst:370 msgid "Why doesn't CPython use a more traditional garbage collection scheme?" msgstr "" -#: faq/design.rst:371 +#: faq/design.rst:372 msgid "" "For one thing, this is not a C standard feature and hence it's not portable. " "(Yes, we know about the Boehm GC library. It has bits of assembler code for " @@ -485,21 +485,22 @@ msgid "" "Python to work with it.)" msgstr "" -#: faq/design.rst:377 +#: faq/design.rst:378 msgid "" "Traditional GC also becomes a problem when Python is embedded into other " "applications. While in a standalone Python it's fine to replace the " -"standard malloc() and free() with versions provided by the GC library, an " -"application embedding Python may want to have its *own* substitute for " -"malloc() and free(), and may not want Python's. Right now, CPython works " -"with anything that implements malloc() and free() properly." +"standard ``malloc()`` and ``free()`` with versions provided by the GC " +"library, an application embedding Python may want to have its *own* " +"substitute for ``malloc()`` and ``free()``, and may not want Python's. " +"Right now, CPython works with anything that implements ``malloc()`` and " +"``free()`` properly." msgstr "" -#: faq/design.rst:386 +#: faq/design.rst:387 msgid "Why isn't all memory freed when CPython exits?" msgstr "" -#: faq/design.rst:388 +#: faq/design.rst:389 msgid "" "Objects referenced from the global namespaces of Python modules are not " "always deallocated when Python exits. This may happen if there are circular " @@ -509,37 +510,37 @@ msgid "" "exit and does try to destroy every single object." msgstr "" -#: faq/design.rst:395 +#: faq/design.rst:396 msgid "" "If you want to force Python to delete certain things on deallocation use " "the :mod:`atexit` module to run a function that will force those deletions." msgstr "" -#: faq/design.rst:400 +#: faq/design.rst:401 msgid "Why are there separate tuple and list data types?" msgstr "" -#: faq/design.rst:402 +#: faq/design.rst:403 msgid "" "Lists and tuples, while similar in many respects, are generally used in " "fundamentally different ways. Tuples can be thought of as being similar to " -"Pascal records or C structs; they're small collections of related data which " -"may be of different types which are operated on as a group. For example, a " -"Cartesian coordinate is appropriately represented as a tuple of two or three " -"numbers." +"Pascal ``records`` or C ``structs``; they're small collections of related " +"data which may be of different types which are operated on as a group. For " +"example, a Cartesian coordinate is appropriately represented as a tuple of " +"two or three numbers." msgstr "" -#: faq/design.rst:409 +#: faq/design.rst:410 msgid "" "Lists, on the other hand, are more like arrays in other languages. They " "tend to hold a varying number of objects all of which have the same type and " -"which are operated on one-by-one. For example, ``os.listdir('.')`` returns " -"a list of strings representing the files in the current directory. " -"Functions which operate on this output would generally not break if you " -"added another file or two to the directory." +"which are operated on one-by-one. For example, :func:`os.listdir('.') ` returns a list of strings representing the files in the current " +"directory. Functions which operate on this output would generally not break " +"if you added another file or two to the directory." msgstr "" -#: faq/design.rst:416 +#: faq/design.rst:418 msgid "" "Tuples are immutable, meaning that once a tuple has been created, you can't " "replace any of its elements with a new value. Lists are mutable, meaning " @@ -548,11 +549,11 @@ msgid "" "as keys." msgstr "" -#: faq/design.rst:423 +#: faq/design.rst:425 msgid "How are lists implemented in CPython?" msgstr "" -#: faq/design.rst:425 +#: faq/design.rst:427 msgid "" "CPython's lists are really variable-length arrays, not Lisp-style linked " "lists. The implementation uses a contiguous array of references to other " @@ -560,13 +561,13 @@ msgid "" "head structure." msgstr "" -#: faq/design.rst:429 +#: faq/design.rst:431 msgid "" "This makes indexing a list ``a[i]`` an operation whose cost is independent " "of the size of the list or the value of the index." msgstr "" -#: faq/design.rst:432 +#: faq/design.rst:434 msgid "" "When items are appended or inserted, the array of references is resized. " "Some cleverness is applied to improve the performance of appending items " @@ -574,11 +575,11 @@ msgid "" "the next few times don't require an actual resize." msgstr "" -#: faq/design.rst:439 +#: faq/design.rst:441 msgid "How are dictionaries implemented in CPython?" msgstr "" -#: faq/design.rst:441 +#: faq/design.rst:443 msgid "" "CPython's dictionaries are implemented as resizable hash tables. Compared " "to B-trees, this gives better performance for lookup (the most common " @@ -586,24 +587,24 @@ msgid "" "simpler." msgstr "" -#: faq/design.rst:445 +#: faq/design.rst:447 msgid "" "Dictionaries work by computing a hash code for each key stored in the " "dictionary using the :func:`hash` built-in function. The hash code varies " -"widely depending on the key and a per-process seed; for example, \"Python\" " -"could hash to -539294296 while \"python\", a string that differs by a single " -"bit, could hash to 1142331976. The hash code is then used to calculate a " -"location in an internal array where the value will be stored. Assuming that " -"you're storing keys that all have different hash values, this means that " -"dictionaries take constant time -- O(1), in Big-O notation -- to retrieve a " -"key." +"widely depending on the key and a per-process seed; for example, " +"``'Python'`` could hash to ``-539294296`` while ``'python'``, a string that " +"differs by a single bit, could hash to ``1142331976``. The hash code is " +"then used to calculate a location in an internal array where the value will " +"be stored. Assuming that you're storing keys that all have different hash " +"values, this means that dictionaries take constant time -- O(1), in Big-O " +"notation -- to retrieve a key." msgstr "" -#: faq/design.rst:456 +#: faq/design.rst:458 msgid "Why must dictionary keys be immutable?" msgstr "" -#: faq/design.rst:458 +#: faq/design.rst:460 msgid "" "The hash table implementation of dictionaries uses a hash value calculated " "from the key value to find the key. If the key were a mutable object, its " @@ -616,7 +617,7 @@ msgid "" "would be different." msgstr "" -#: faq/design.rst:467 +#: faq/design.rst:469 msgid "" "If you want a dictionary indexed with a list, simply convert the list to a " "tuple first; the function ``tuple(L)`` creates a tuple with the same entries " @@ -624,17 +625,17 @@ msgid "" "dictionary keys." msgstr "" -#: faq/design.rst:471 +#: faq/design.rst:473 msgid "Some unacceptable solutions that have been proposed:" msgstr "" -#: faq/design.rst:473 +#: faq/design.rst:475 msgid "" "Hash lists by their address (object ID). This doesn't work because if you " "construct a new list with the same value it won't be found; e.g.::" msgstr "" -#: faq/design.rst:479 +#: faq/design.rst:481 msgid "" "would raise a :exc:`KeyError` exception because the id of the ``[1, 2]`` " "used in the second line differs from that in the first line. In other " @@ -642,14 +643,14 @@ msgid "" "`is`." msgstr "" -#: faq/design.rst:483 +#: faq/design.rst:485 msgid "" "Make a copy when using a list as a key. This doesn't work because the list, " "being a mutable object, could contain a reference to itself, and then the " "copying code would run into an infinite loop." msgstr "" -#: faq/design.rst:487 +#: faq/design.rst:489 msgid "" "Allow lists as keys but tell the user not to modify them. This would allow " "a class of hard-to-track bugs in programs when you forgot or modified a list " @@ -657,7 +658,7 @@ msgid "" "every value in ``d.keys()`` is usable as a key of the dictionary." msgstr "" -#: faq/design.rst:492 +#: faq/design.rst:494 msgid "" "Mark lists as read-only once they are used as a dictionary key. The problem " "is that it's not just the top-level object that could change its value; you " @@ -667,24 +668,24 @@ msgid "" "loop." msgstr "" -#: faq/design.rst:498 +#: faq/design.rst:500 msgid "" "There is a trick to get around this if you need to, but use it at your own " "risk: You can wrap a mutable structure inside a class instance which has " -"both a :meth:`__eq__` and a :meth:`__hash__` method. You must then make " -"sure that the hash value for all such wrapper objects that reside in a " -"dictionary (or other hash based structure), remain fixed while the object is " -"in the dictionary (or other structure). ::" +"both a :meth:`~object.__eq__` and a :meth:`~object.__hash__` method. You " +"must then make sure that the hash value for all such wrapper objects that " +"reside in a dictionary (or other hash based structure), remain fixed while " +"the object is in the dictionary (or other structure). ::" msgstr "" -#: faq/design.rst:522 +#: faq/design.rst:525 msgid "" "Note that the hash computation is complicated by the possibility that some " "members of the list may be unhashable and also by the possibility of " "arithmetic overflow." msgstr "" -#: faq/design.rst:526 +#: faq/design.rst:529 msgid "" "Furthermore it must always be the case that if ``o1 == o2`` (ie ``o1." "__eq__(o2) is True``) then ``hash(o1) == hash(o2)`` (ie, ``o1.__hash__() == " @@ -693,19 +694,19 @@ msgid "" "based structures will misbehave." msgstr "" -#: faq/design.rst:531 +#: faq/design.rst:534 msgid "" -"In the case of ListWrapper, whenever the wrapper object is in a dictionary " -"the wrapped list must not change to avoid anomalies. Don't do this unless " -"you are prepared to think hard about the requirements and the consequences " -"of not meeting them correctly. Consider yourself warned." +"In the case of :class:`!ListWrapper`, whenever the wrapper object is in a " +"dictionary the wrapped list must not change to avoid anomalies. Don't do " +"this unless you are prepared to think hard about the requirements and the " +"consequences of not meeting them correctly. Consider yourself warned." msgstr "" -#: faq/design.rst:538 +#: faq/design.rst:541 msgid "Why doesn't list.sort() return the sorted list?" msgstr "" -#: faq/design.rst:540 +#: faq/design.rst:543 msgid "" "In situations where performance matters, making a copy of the list just to " "sort it would be wasteful. Therefore, :meth:`list.sort` sorts the list in " @@ -715,7 +716,7 @@ msgid "" "around." msgstr "" -#: faq/design.rst:546 +#: faq/design.rst:549 msgid "" "If you want to return a new list, use the built-in :func:`sorted` function " "instead. This function creates a new list from a provided iterable, sorts " @@ -723,11 +724,11 @@ msgid "" "dictionary in sorted order::" msgstr "" -#: faq/design.rst:556 +#: faq/design.rst:559 msgid "How do you specify and enforce an interface spec in Python?" msgstr "" -#: faq/design.rst:558 +#: faq/design.rst:561 msgid "" "An interface specification for a module as provided by languages such as C++ " "and Java describes the prototypes for the methods and functions of the " @@ -735,7 +736,7 @@ msgid "" "helps in the construction of large programs." msgstr "" -#: faq/design.rst:563 +#: faq/design.rst:566 msgid "" "Python 2.6 adds an :mod:`abc` module that lets you define Abstract Base " "Classes (ABCs). You can then use :func:`isinstance` and :func:`issubclass` " @@ -745,13 +746,13 @@ msgid "" "`~collections.abc.MutableMapping`." msgstr "" -#: faq/design.rst:570 +#: faq/design.rst:573 msgid "" "For Python, many of the advantages of interface specifications can be " "obtained by an appropriate test discipline for components." msgstr "" -#: faq/design.rst:573 +#: faq/design.rst:576 msgid "" "A good test suite for a module can both provide a regression test and serve " "as a module interface specification and a set of examples. Many Python " @@ -763,7 +764,7 @@ msgid "" "in a module." msgstr "" -#: faq/design.rst:581 +#: faq/design.rst:584 msgid "" "An appropriate testing discipline can help build large complex applications " "in Python as well as having interface specifications would. In fact, it can " @@ -775,7 +776,7 @@ msgid "" "test suite." msgstr "" -#: faq/design.rst:589 +#: faq/design.rst:592 msgid "" "Writing test suites is very helpful, and you might want to design your code " "to make it easily tested. One increasingly popular technique, test-driven " @@ -784,46 +785,47 @@ msgid "" "not write test cases at all." msgstr "" -#: faq/design.rst:597 +#: faq/design.rst:600 msgid "Why is there no goto?" msgstr "" -#: faq/design.rst:599 +#: faq/design.rst:602 msgid "" "In the 1970s people realized that unrestricted goto could lead to messy " "\"spaghetti\" code that was hard to understand and revise. In a high-level " "language, it is also unneeded as long as there are ways to branch (in " -"Python, with ``if`` statements and ``or``, ``and``, and ``if-else`` " -"expressions) and loop (with ``while`` and ``for`` statements, possibly " -"containing ``continue`` and ``break``)." +"Python, with :keyword:`if` statements and :keyword:`or`, :keyword:`and`, " +"and :keyword:`if`/:keyword:`else` expressions) and loop (with :keyword:" +"`while` and :keyword:`for` statements, possibly containing :keyword:" +"`continue` and :keyword:`break`)." msgstr "" -#: faq/design.rst:606 +#: faq/design.rst:609 msgid "" "One can also use exceptions to provide a \"structured goto\" that works even " "across function calls. Many feel that exceptions can conveniently emulate " -"all reasonable uses of the \"go\" or \"goto\" constructs of C, Fortran, and " +"all reasonable uses of the ``go`` or ``goto`` constructs of C, Fortran, and " "other languages. For example::" msgstr "" -#: faq/design.rst:622 +#: faq/design.rst:625 msgid "" "This doesn't allow you to jump into the middle of a loop, but that's usually " -"considered an abuse of goto anyway. Use sparingly." +"considered an abuse of ``goto`` anyway. Use sparingly." msgstr "" -#: faq/design.rst:627 +#: faq/design.rst:630 msgid "Why can't raw strings (r-strings) end with a backslash?" msgstr "" -#: faq/design.rst:629 +#: faq/design.rst:632 msgid "" "More precisely, they can't end with an odd number of backslashes: the " "unpaired backslash at the end escapes the closing quote character, leaving " "an unterminated string." msgstr "" -#: faq/design.rst:633 +#: faq/design.rst:636 msgid "" "Raw strings were designed to ease creating input for processors (chiefly " "regular expression engines) that want to do their own backslash escape " @@ -833,33 +835,33 @@ msgid "" "rules work well when r-strings are used for their intended purpose." msgstr "" -#: faq/design.rst:640 +#: faq/design.rst:643 msgid "" "If you're trying to build Windows pathnames, note that all Windows system " "calls accept forward slashes too::" msgstr "" -#: faq/design.rst:645 +#: faq/design.rst:648 msgid "" "If you're trying to build a pathname for a DOS command, try e.g. one of ::" msgstr "" -#: faq/design.rst:653 +#: faq/design.rst:656 msgid "Why doesn't Python have a \"with\" statement for attribute assignments?" msgstr "" -#: faq/design.rst:655 +#: faq/design.rst:658 msgid "" -"Python has a 'with' statement that wraps the execution of a block, calling " -"code on the entrance and exit from the block. Some languages have a " +"Python has a :keyword:`with` statement that wraps the execution of a block, " +"calling code on the entrance and exit from the block. Some languages have a " "construct that looks like this::" msgstr "" -#: faq/design.rst:663 +#: faq/design.rst:666 msgid "In Python, such a construct would be ambiguous." msgstr "" -#: faq/design.rst:665 +#: faq/design.rst:668 msgid "" "Other languages, such as Object Pascal, Delphi, and C++, use static types, " "so it's possible to know, in an unambiguous way, what member is being " @@ -867,7 +869,7 @@ msgid "" "*always* knows the scope of every variable at compile time." msgstr "" -#: faq/design.rst:670 +#: faq/design.rst:673 msgid "" "Python uses dynamic types. It is impossible to know in advance which " "attribute will be referenced at runtime. Member attributes may be added or " @@ -876,71 +878,79 @@ msgid "" "one, or a member attribute?" msgstr "" -#: faq/design.rst:676 +#: faq/design.rst:679 msgid "For instance, take the following incomplete snippet::" msgstr "" -#: faq/design.rst:682 +#: faq/design.rst:685 msgid "" -"The snippet assumes that \"a\" must have a member attribute called \"x\". " +"The snippet assumes that ``a`` must have a member attribute called ``x``. " "However, there is nothing in Python that tells the interpreter this. What " -"should happen if \"a\" is, let us say, an integer? If there is a global " -"variable named \"x\", will it be used inside the with block? As you see, " -"the dynamic nature of Python makes such choices much harder." +"should happen if ``a`` is, let us say, an integer? If there is a global " +"variable named ``x``, will it be used inside the :keyword:`with` block? As " +"you see, the dynamic nature of Python makes such choices much harder." msgstr "" -#: faq/design.rst:688 +#: faq/design.rst:691 msgid "" -"The primary benefit of \"with\" and similar language features (reduction of " -"code volume) can, however, easily be achieved in Python by assignment. " -"Instead of::" +"The primary benefit of :keyword:`with` and similar language features " +"(reduction of code volume) can, however, easily be achieved in Python by " +"assignment. Instead of::" msgstr "" -#: faq/design.rst:695 +#: faq/design.rst:698 msgid "write this::" msgstr "" -#: faq/design.rst:702 +#: faq/design.rst:705 msgid "" "This also has the side-effect of increasing execution speed because name " "bindings are resolved at run-time in Python, and the second version only " "needs to perform the resolution once." msgstr "" -#: faq/design.rst:708 +#: faq/design.rst:709 +msgid "" +"Similar proposals that would introduce syntax to further reduce code volume, " +"such as using a 'leading dot', have been rejected in favour of explicitness " +"(see https://mail.python.org/pipermail/python-ideas/2016-May/040070.html)." +msgstr "" + +#: faq/design.rst:715 msgid "Why don't generators support the with statement?" msgstr "" -#: faq/design.rst:710 +#: faq/design.rst:717 msgid "" "For technical reasons, a generator used directly as a context manager would " "not work correctly. When, as is most common, a generator is used as an " -"iterator run to completion, no closing is needed. When it is, wrap it as " -"\"contextlib.closing(generator)\" in the 'with' statement." +"iterator run to completion, no closing is needed. When it is, wrap it as :" +"func:`contextlib.closing(generator) ` in the :keyword:" +"`with` statement." msgstr "" -#: faq/design.rst:717 +#: faq/design.rst:725 msgid "Why are colons required for the if/while/def/class statements?" msgstr "" -#: faq/design.rst:719 +#: faq/design.rst:727 msgid "" "The colon is required primarily to enhance readability (one of the results " "of the experimental ABC language). Consider this::" msgstr "" -#: faq/design.rst:725 +#: faq/design.rst:733 msgid "versus ::" msgstr "" -#: faq/design.rst:730 +#: faq/design.rst:738 msgid "" "Notice how the second one is slightly easier to read. Notice further how a " "colon sets off the example in this FAQ answer; it's a standard usage in " "English." msgstr "" -#: faq/design.rst:733 +#: faq/design.rst:741 msgid "" "Another minor reason is that the colon makes it easier for editors with " "syntax highlighting; they can look for colons to decide when indentation " @@ -948,21 +958,21 @@ msgid "" "the program text." msgstr "" -#: faq/design.rst:739 +#: faq/design.rst:747 msgid "Why does Python allow commas at the end of lists and tuples?" msgstr "" -#: faq/design.rst:741 +#: faq/design.rst:749 msgid "" "Python lets you add a trailing comma at the end of lists, tuples, and " "dictionaries::" msgstr "" -#: faq/design.rst:752 +#: faq/design.rst:760 msgid "There are several reasons to allow this." msgstr "" -#: faq/design.rst:754 +#: faq/design.rst:762 msgid "" "When you have a literal value for a list, tuple, or dictionary spread across " "multiple lines, it's easier to add more elements because you don't have to " @@ -970,20 +980,20 @@ msgid "" "reordered without creating a syntax error." msgstr "" -#: faq/design.rst:759 +#: faq/design.rst:767 msgid "" "Accidentally omitting the comma can lead to errors that are hard to " "diagnose. For example::" msgstr "" -#: faq/design.rst:769 +#: faq/design.rst:777 msgid "" "This list looks like it has four elements, but it actually contains three: " "\"fee\", \"fiefoo\" and \"fum\". Always adding the comma avoids this source " "of error." msgstr "" -#: faq/design.rst:772 +#: faq/design.rst:780 msgid "" "Allowing the trailing comma may also make programmatic code generation " "easier." diff --git a/faq/gui.po b/faq/gui.po index 9b633435c..077403f2c 100644 --- a/faq/gui.po +++ b/faq/gui.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2022-12-29 00:51-0500\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -107,9 +107,10 @@ msgstr "" "parçası olan SAM'dir (bağımsız modüller)." #: faq/gui.rst:54 +#, fuzzy msgid "" -"Build Tix with SAM enabled, perform the appropriate call to :c:func:" -"`Tclsam_init`, etc. inside Python's :file:`Modules/tkappinit.c`, and link " +"Build Tix with SAM enabled, perform the appropriate call to :c:func:`!" +"Tclsam_init`, etc. inside Python's :file:`Modules/tkappinit.c`, and link " "with libtclsam and libtksam (you might include the Tix libraries as well)." msgstr "" "SAM etkinken Tix oluşturun, Python'un :file:`Modules/tkappinit.c` içindeki :" diff --git a/glossary.po b/glossary.po index 3f61b027c..a34197afd 100644 --- a/glossary.po +++ b/glossary.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2022-12-28 16:12-0500\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1847,7 +1847,7 @@ msgstr "" msgid "More information can be found in :ref:`metaclasses`." msgstr "Daha fazla bilgi :ref:`metaclasses` içinde bulunabilir." -#: glossary.rst:1121 +#: glossary.rst:1123 msgid "method" msgstr "metot" @@ -2435,12 +2435,15 @@ msgid "reference count" msgstr "referans sayısı" #: glossary.rst:1066 +#, fuzzy msgid "" "The number of references to an object. When the reference count of an " -"object drops to zero, it is deallocated. Reference counting is generally " -"not visible to Python code, but it is a key element of the :term:`CPython` " -"implementation. Programmers can call the :func:`sys.getrefcount` function " -"to return the reference count for a particular object." +"object drops to zero, it is deallocated. Some objects are \"immortal\" and " +"have reference counts that are never modified, and therefore the objects are " +"never deallocated. Reference counting is generally not visible to Python " +"code, but it is a key element of the :term:`CPython` implementation. " +"Programmers can call the :func:`sys.getrefcount` function to return the " +"reference count for a particular object." msgstr "" "Bir nesneye yapılan başvuruların sayısı. Bir nesnenin referans sayısı sıfıra " "düştüğünde, yeniden konumlandırılır. Referans sayımı genellikle Python kodu " @@ -2448,26 +2451,26 @@ msgstr "" "öğesidir. Programcılar, belirli bir nesne için başvuru sayısını döndürmek " "için :func:`sys.getrefcount` işlevini çağırabilir." -#: glossary.rst:1072 +#: glossary.rst:1074 msgid "regular package" msgstr "sürekli paketleme" -#: glossary.rst:1074 +#: glossary.rst:1076 msgid "" "A traditional :term:`package`, such as a directory containing an ``__init__." "py`` file." msgstr "" "``__init__.py`` dosyası içeren bir dizin gibi geleneksel bir :term:`package`." -#: glossary.rst:1077 +#: glossary.rst:1079 msgid "See also :term:`namespace package`." msgstr "Ayrıca bkz. :term:`ad alanı paketi`." -#: glossary.rst:1078 +#: glossary.rst:1080 msgid "__slots__" msgstr "__slots__" -#: glossary.rst:1080 +#: glossary.rst:1082 msgid "" "A declaration inside a class that saves memory by pre-declaring space for " "instance attributes and eliminating instance dictionaries. Though popular, " @@ -2481,11 +2484,11 @@ msgstr "" "açısından kritik bir uygulamada çok sayıda örneğin bulunduğu nadir durumlar " "için ayrılmıştır." -#: glossary.rst:1085 +#: glossary.rst:1087 msgid "sequence" msgstr "dizi" -#: glossary.rst:1087 +#: glossary.rst:1089 msgid "" "An :term:`iterable` which supports efficient element access using integer " "indices via the :meth:`__getitem__` special method and defines a :meth:" @@ -2504,7 +2507,7 @@ msgstr "" "`immutable` anahtarları kullandığından bir diziden ziyade bir eşleme olarak " "kabul edilir." -#: glossary.rst:1096 +#: glossary.rst:1098 msgid "" "The :class:`collections.abc.Sequence` abstract base class defines a much " "richer interface that goes beyond just :meth:`__getitem__` and :meth:" @@ -2518,11 +2521,11 @@ msgstr "" "arayüzü tanımlar. Bu genişletilmiş arabirimi uygulayan türler, :func:`~abc." "ABCMeta.register` kullanılarak açıkça kaydedilebilir." -#: glossary.rst:1103 +#: glossary.rst:1105 msgid "set comprehension" msgstr "anlamak" -#: glossary.rst:1105 +#: glossary.rst:1107 msgid "" "A compact way to process all or part of the elements in an iterable and " "return a set with the results. ``results = {c for c in 'abracadabra' if c " @@ -2534,11 +2537,11 @@ msgstr "" "for c in 'abracadabra' if c not in 'abc'}``, ``{'r', 'd'}`` dizelerini " "oluşturur. Bakınız :ref:`comprehensions`." -#: glossary.rst:1109 +#: glossary.rst:1111 msgid "single dispatch" msgstr "tek sevk" -#: glossary.rst:1111 +#: glossary.rst:1113 msgid "" "A form of :term:`generic function` dispatch where the implementation is " "chosen based on the type of a single argument." @@ -2546,11 +2549,11 @@ msgstr "" "Uygulamanın tek bir argüman türüne göre seçildiği bir :term:`generic " "function` gönderimi biçimi." -#: glossary.rst:1113 +#: glossary.rst:1115 msgid "slice" msgstr "parçalamak" -#: glossary.rst:1115 +#: glossary.rst:1117 msgid "" "An object usually containing a portion of a :term:`sequence`. A slice is " "created using the subscript notation, ``[]`` with colons between numbers " @@ -2563,11 +2566,11 @@ msgstr "" "gösterimi kullanılarak oluşturulur. Köşeli ayraç (alt simge) gösterimi, " "dahili olarak :class:`slice` nesnelerini kullanır." -#: glossary.rst:1119 +#: glossary.rst:1121 msgid "special method" msgstr "özel metod" -#: glossary.rst:1123 +#: glossary.rst:1125 msgid "" "A method that is called implicitly by Python to execute a certain operation " "on a type, such as addition. Such methods have names starting and ending " @@ -2579,11 +2582,11 @@ msgstr "" "çizgi ile başlayan ve biten adları vardır. Özel yöntemler :ref:" "`specialnames` içinde belgelenmiştir." -#: glossary.rst:1127 +#: glossary.rst:1129 msgid "statement" msgstr "ifade (değer döndürmez)" -#: glossary.rst:1129 +#: glossary.rst:1131 msgid "" "A statement is part of a suite (a \"block\" of code). A statement is either " "an :term:`expression` or one of several constructs with a keyword, such as :" @@ -2593,11 +2596,11 @@ msgstr "" "`expression` veya :keyword:`if`, :keyword:`while` veya :keyword:`for` gibi " "bir anahtar kelimeye sahip birkaç yapıdan biridir." -#: glossary.rst:1132 +#: glossary.rst:1134 msgid "strong reference" msgstr "güçlü referans" -#: glossary.rst:1134 +#: glossary.rst:1136 #, fuzzy msgid "" "In Python's C API, a strong reference is a reference to an object which is " @@ -2609,7 +2612,7 @@ msgstr "" "referans sayısını artıran ve silindiğinde nesnenin referans sayısını azaltan " "bir nesneye yapılan referanstır." -#: glossary.rst:1140 +#: glossary.rst:1142 msgid "" "The :c:func:`Py_NewRef` function can be used to create a strong reference to " "an object. Usually, the :c:func:`Py_DECREF` function must be called on the " @@ -2621,15 +2624,15 @@ msgstr "" "referansın sızmasını önlemek için güçlü referans kapsamından çıkmadan önce " "güçlü referansta çağrılmalıdır." -#: glossary.rst:1145 +#: glossary.rst:1147 msgid "See also :term:`borrowed reference`." msgstr "Ayrıca bkz. :term:`ödünç alınan referans `." -#: glossary.rst:1146 +#: glossary.rst:1148 msgid "text encoding" msgstr "yazı çözümleme" -#: glossary.rst:1148 +#: glossary.rst:1150 msgid "" "A string in Python is a sequence of Unicode code points (in range " "``U+0000``--``U+10FFFF``). To store or transfer a string, it needs to be " @@ -2639,7 +2642,7 @@ msgstr "" "``U+10FFFF`` aralığında). Bir dizeyi depolamak veya aktarmak için, bir bayt " "dizisi olarak seri hale getirilmesi gerekir." -#: glossary.rst:1152 +#: glossary.rst:1154 msgid "" "Serializing a string into a sequence of bytes is known as \"encoding\", and " "recreating the string from the sequence of bytes is known as \"decoding\"." @@ -2648,7 +2651,7 @@ msgstr "" "olarak bilinir ve dizeyi bayt dizisinden yeniden oluşturmak \"kod çözme " "(decoding)\" olarak bilinir." -#: glossary.rst:1155 +#: glossary.rst:1157 msgid "" "There are a variety of different text serialization :ref:`codecs `, which are collectively referred to as \"text encodings\"." @@ -2656,11 +2659,11 @@ msgstr "" "Toplu olarak \"metin kodlamaları\" olarak adlandırılan çeşitli farklı metin " "serileştirme :ref:`kodekleri ` vardır." -#: glossary.rst:1158 +#: glossary.rst:1160 msgid "text file" msgstr "yazı dosyası" -#: glossary.rst:1160 +#: glossary.rst:1162 msgid "" "A :term:`file object` able to read and write :class:`str` objects. Often, a " "text file actually accesses a byte-oriented datastream and handles the :term:" @@ -2674,7 +2677,7 @@ msgstr "" "metin modunda açılan dosyalar (``'r'`` veya ``'w'``), :data:`sys.stdin`, :" "data:`sys.stdout` ve :class:`io.StringIO` örnekleri verilebilir." -#: glossary.rst:1167 +#: glossary.rst:1169 msgid "" "See also :term:`binary file` for a file object able to read and write :term:" "`bytes-like objects `." @@ -2682,11 +2685,11 @@ msgstr "" "Ayrıca :term:`ikili dosyaları ` okuyabilen ve yazabilen bir " "dosya nesnesi için :term:`bayt benzeri nesnelere ` bakın." -#: glossary.rst:1169 +#: glossary.rst:1171 msgid "triple-quoted string" msgstr "üç tırnaklı dize" -#: glossary.rst:1171 +#: glossary.rst:1173 msgid "" "A string which is bound by three instances of either a quotation mark (\") " "or an apostrophe ('). While they don't provide any functionality not " @@ -2703,11 +2706,11 @@ msgstr "" "yayılabilir, bu da onları özellikle belge dizileri yazarken kullanışlı hale " "getirir." -#: glossary.rst:1178 +#: glossary.rst:1180 msgid "type" msgstr "tip" -#: glossary.rst:1180 +#: glossary.rst:1182 msgid "" "The type of a Python object determines what kind of object it is; every " "object has a type. An object's type is accessible as its :attr:`~instance." @@ -2717,15 +2720,15 @@ msgstr "" "nesnenin bir türü vardır. Bir nesnenin tipine :attr:`~instance.__class__` " "niteliği ile erişilebilir veya ``type(obj)`` ile alınabilir." -#: glossary.rst:1184 +#: glossary.rst:1186 msgid "type alias" msgstr "tip takma adı" -#: glossary.rst:1186 +#: glossary.rst:1188 msgid "A synonym for a type, created by assigning the type to an identifier." msgstr "Bir tanımlayıcıya tür atanarak oluşturulan, bir tür için eş anlamlı." -#: glossary.rst:1188 +#: glossary.rst:1190 msgid "" "Type aliases are useful for simplifying :term:`type hints `. For " "example::" @@ -2733,19 +2736,19 @@ msgstr "" "Tür takma adları, :term:`tür ipuçlarını ` basitleştirmek için " "kullanışlıdır. Örneğin::" -#: glossary.rst:1195 +#: glossary.rst:1197 msgid "could be made more readable like this::" msgstr "bu şekilde daha okunaklı hale getirilebilir::" -#: glossary.rst:1216 +#: glossary.rst:1218 msgid "See :mod:`typing` and :pep:`484`, which describe this functionality." msgstr "Bu işlevi açıklayan :mod:`typing` ve :pep:`484` bölümlerine bakın." -#: glossary.rst:1203 +#: glossary.rst:1205 msgid "type hint" msgstr "tür ipucu" -#: glossary.rst:1205 +#: glossary.rst:1207 msgid "" "An :term:`annotation` that specifies the expected type for a variable, a " "class attribute, or a function parameter or return value." @@ -2753,7 +2756,7 @@ msgstr "" "Bir değişken, bir sınıf niteliği veya bir işlev parametresi veya dönüş " "değeri için beklenen türü belirten bir :term:`ek açıklama `." -#: glossary.rst:1208 +#: glossary.rst:1210 msgid "" "Type hints are optional and are not enforced by Python but they are useful " "to static type analysis tools, and aid IDEs with code completion and " @@ -2763,7 +2766,7 @@ msgstr "" "statik tip analiz araçları için faydalıdır ve kod tamamlama ve yeniden " "düzenleme ile IDE'lere yardımcı olur." -#: glossary.rst:1212 +#: glossary.rst:1214 msgid "" "Type hints of global variables, class attributes, and functions, but not " "local variables, can be accessed using :func:`typing.get_type_hints`." @@ -2772,11 +2775,11 @@ msgstr "" "yerel değişkenlere değil, :func:`typing.get_type_hints` kullanılarak " "erişilebilir." -#: glossary.rst:1217 +#: glossary.rst:1219 msgid "universal newlines" msgstr "evrensel yeni satırlar" -#: glossary.rst:1219 +#: glossary.rst:1221 msgid "" "A manner of interpreting text streams in which all of the following are " "recognized as ending a line: the Unix end-of-line convention ``'\\n'``, the " @@ -2789,23 +2792,23 @@ msgstr "" "kuralı ``'\\r\\n'``, ve eski Macintosh kuralı ``'\\r'``. Ek bir kullanım " "için :pep:`278` ve :pep:`3116` ve ayrıca :func:`bytes.splitlines` bakın." -#: glossary.rst:1224 +#: glossary.rst:1226 msgid "variable annotation" msgstr "değişken açıklama" -#: glossary.rst:1226 +#: glossary.rst:1228 msgid "An :term:`annotation` of a variable or a class attribute." msgstr "" "Bir değişkenin veya bir sınıf özniteliğinin :term:`ek açıklaması " "`." -#: glossary.rst:1228 +#: glossary.rst:1230 msgid "" "When annotating a variable or a class attribute, assignment is optional::" msgstr "" "Bir değişkene veya sınıf niteliğine açıklama eklerken atama isteğe bağlıdır::" -#: glossary.rst:1233 +#: glossary.rst:1235 msgid "" "Variable annotations are usually used for :term:`type hints `: " "for example this variable is expected to take :class:`int` values::" @@ -2813,11 +2816,11 @@ msgstr "" "Değişken açıklamaları genellikle :term:`tür ipuçları ` için " "kullanılır: örneğin, bu değişkenin :class:`int` değerlerini alması beklenir::" -#: glossary.rst:1239 +#: glossary.rst:1241 msgid "Variable annotation syntax is explained in section :ref:`annassign`." msgstr "Değişken açıklama sözdizimi :ref:`annassign` bölümünde açıklanmıştır." -#: glossary.rst:1241 +#: glossary.rst:1243 msgid "" "See :term:`function annotation`, :pep:`484` and :pep:`526`, which describe " "this functionality. Also see :ref:`annotations-howto` for best practices on " @@ -2827,11 +2830,11 @@ msgstr "" "bölümlerine bakın. Ek açıklamalarla çalışmaya ilişkin en iyi uygulamalar " "için ayrıca bkz. :ref:`annotations-howto`." -#: glossary.rst:1245 +#: glossary.rst:1247 msgid "virtual environment" msgstr "sanal ortam" -#: glossary.rst:1247 +#: glossary.rst:1249 msgid "" "A cooperatively isolated runtime environment that allows Python users and " "applications to install and upgrade Python distribution packages without " @@ -2843,15 +2846,15 @@ msgstr "" "paketlerini kurmasına ve yükseltmesine olanak tanıyan, işbirliği içinde " "yalıtılmış bir çalışma zamanı ortamı." -#: glossary.rst:1252 +#: glossary.rst:1254 msgid "See also :mod:`venv`." msgstr "Ayrıca bakınız :mod:`venv`." -#: glossary.rst:1253 +#: glossary.rst:1255 msgid "virtual machine" msgstr "sanal makine" -#: glossary.rst:1255 +#: glossary.rst:1257 msgid "" "A computer defined entirely in software. Python's virtual machine executes " "the :term:`bytecode` emitted by the bytecode compiler." @@ -2859,11 +2862,11 @@ msgstr "" "Tamamen yazılımla tanımlanmış bir bilgisayar. Python'un sanal makinesi, bayt " "kodu derleyicisi tarafından yayınlanan :term:`bytecode` 'u çalıştırır." -#: glossary.rst:1257 +#: glossary.rst:1259 msgid "Zen of Python" msgstr "Python'un Zen'i" -#: glossary.rst:1259 +#: glossary.rst:1261 msgid "" "Listing of Python design principles and philosophies that are helpful in " "understanding and using the language. The listing can be found by typing " @@ -2887,7 +2890,7 @@ msgstr "bitişik" msgid "magic" msgstr "" -#: glossary.rst:1121 +#: glossary.rst:1123 #, fuzzy msgid "special" msgstr "özel metod" diff --git a/howto/argparse.po b/howto/argparse.po index ff4d7e83c..603f6505c 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -25,7 +25,7 @@ msgid "author" msgstr "" #: howto/argparse.rst:7 -msgid "Tshepang Lekhonkhobe" +msgid "Tshepang Mbambo" msgstr "" #: howto/argparse.rst:11 @@ -434,11 +434,22 @@ msgid "" "display *more* text instead::" msgstr "" -#: howto/argparse.rst:670 +#: howto/argparse.rst:672 +msgid "Specifying ambiguous arguments" +msgstr "" + +#: howto/argparse.rst:674 +msgid "" +"When there is ambiguity in deciding whether an argument is positional or for " +"an argument, ``--`` can be used to tell :meth:`~ArgumentParser.parse_args` " +"that everything after that is a positional argument::" +msgstr "" + +#: howto/argparse.rst:699 msgid "Conflicting options" msgstr "" -#: howto/argparse.rst:672 +#: howto/argparse.rst:701 msgid "" "So far, we have been working with two methods of an :class:`argparse." "ArgumentParser` instance. Let's introduce a third one, :meth:" @@ -448,37 +459,37 @@ msgid "" "``--quiet`` option, which will be the opposite of the ``--verbose`` one::" msgstr "" -#: howto/argparse.rst:698 +#: howto/argparse.rst:727 msgid "" "Our program is now simpler, and we've lost some functionality for the sake " "of demonstration. Anyways, here's the output:" msgstr "" -#: howto/argparse.rst:716 +#: howto/argparse.rst:745 msgid "" "That should be easy to follow. I've added that last output so you can see " "the sort of flexibility you get, i.e. mixing long form options with short " "form ones." msgstr "" -#: howto/argparse.rst:720 +#: howto/argparse.rst:749 msgid "" "Before we conclude, you probably want to tell your users the main purpose of " "your program, just in case they don't know::" msgstr "" -#: howto/argparse.rst:741 +#: howto/argparse.rst:770 msgid "" "Note that slight difference in the usage text. Note the ``[-v | -q]``, which " "tells us that we can either use ``-v`` or ``-q``, but not both at the same " "time:" msgstr "" -#: howto/argparse.rst:763 +#: howto/argparse.rst:792 msgid "How to translate the argparse output" msgstr "" -#: howto/argparse.rst:765 +#: howto/argparse.rst:794 msgid "" "The output of the :mod:`argparse` module such as its help text and error " "messages are all made translatable using the :mod:`gettext` module. This " @@ -486,54 +497,54 @@ msgid "" "See also :ref:`i18n-howto`." msgstr "" -#: howto/argparse.rst:770 +#: howto/argparse.rst:799 msgid "For instance, in this :mod:`argparse` output:" msgstr "" -#: howto/argparse.rst:788 +#: howto/argparse.rst:817 msgid "" "The strings ``usage:``, ``positional arguments:``, ``options:`` and ``show " "this help message and exit`` are all translatable." msgstr "" -#: howto/argparse.rst:791 +#: howto/argparse.rst:820 msgid "" "In order to translate these strings, they must first be extracted into a ``." "po`` file. For example, using `Babel `__, run this " "command:" msgstr "" -#: howto/argparse.rst:799 +#: howto/argparse.rst:828 msgid "" "This command will extract all translatable strings from the :mod:`argparse` " "module and output them into a file named ``messages.po``. This command " "assumes that your Python installation is in ``/usr/lib``." msgstr "" -#: howto/argparse.rst:803 +#: howto/argparse.rst:832 msgid "" "You can find out the location of the :mod:`argparse` module on your system " "using this script::" msgstr "" -#: howto/argparse.rst:809 +#: howto/argparse.rst:838 msgid "" "Once the messages in the ``.po`` file are translated and the translations " "are installed using :mod:`gettext`, :mod:`argparse` will be able to display " "the translated messages." msgstr "" -#: howto/argparse.rst:813 +#: howto/argparse.rst:842 msgid "" "To translate your own strings in the :mod:`argparse` output, use :mod:" "`gettext`." msgstr "" -#: howto/argparse.rst:816 +#: howto/argparse.rst:845 msgid "Conclusion" msgstr "" -#: howto/argparse.rst:818 +#: howto/argparse.rst:847 msgid "" "The :mod:`argparse` module offers a lot more than shown here. Its docs are " "quite detailed and thorough, and full of examples. Having gone through this " diff --git a/howto/clinic.po b/howto/clinic.po index 42cba9d18..3c1cf7666 100644 --- a/howto/clinic.po +++ b/howto/clinic.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2023-05-02 01:31+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -910,6 +910,16 @@ msgstr "" "*sonuna virgül eklemeyin*." #: howto/clinic.rst:655 +msgid "Argument Clinic may generate new instances of ``_Py_ID``. For example::" +msgstr "" + +#: howto/clinic.rst:659 +msgid "" +"If it does, you'll have to run ``make regen-global-objects`` to regenerate " +"the list of precompiled identifiers at this point." +msgstr "" + +#: howto/clinic.rst:662 #, fuzzy msgid "" "Finally, compile, then run the relevant portions of the regression-test " @@ -923,25 +933,25 @@ msgstr "" "getirmemeli ve Python'un davranışında dışarıdan görülebilir bir değişiklik " "olmamalıdır." -#: howto/clinic.rst:661 +#: howto/clinic.rst:668 msgid "" "Congratulations, you've ported your first function to work with Argument " "Clinic!" msgstr "" "Tebrikler, ilk fonksiyonunuzu Argüman Kliniği ile çalışmak üzere taşıdınız!" -#: howto/clinic.rst:667 +#: howto/clinic.rst:674 msgid "How-to guides" msgstr "" -#: howto/clinic.rst:671 +#: howto/clinic.rst:678 #, fuzzy msgid "How to rename C functions and variables generated by Argument Clinic" msgstr "" "Argüman Kliniği tarafından oluşturulan C işlevlerini ve değişkenlerini " "yeniden adlandırma" -#: howto/clinic.rst:673 +#: howto/clinic.rst:680 msgid "" "Argument Clinic automatically names the functions it generates for you. " "Occasionally this may cause a problem, if the generated name collides with " @@ -961,7 +971,7 @@ msgstr "" "bu işlev adını kullanacak, ardından sonuna ``\"_impl\"`` ekleyecek ve impl " "işlevinin adı için bunu kullanacaktır." -#: howto/clinic.rst:681 +#: howto/clinic.rst:688 #, fuzzy msgid "" "For example, if we wanted to rename the C function names generated for :py:" @@ -970,7 +980,7 @@ msgstr "" "Örneğin, ``pickle.Pickler.dump`` için oluşturulan C fonksiyon adlarını " "yeniden adlandırmak istersek, şöyle görünecektir::" -#: howto/clinic.rst:689 +#: howto/clinic.rst:696 #, fuzzy msgid "" "The base function would now be named :c:func:`!pickler_dumper`, and the impl " @@ -979,7 +989,7 @@ msgstr "" "Temel işlev artık ``pickler_dumper()`` olarak adlandırılacak ve impl işlevi " "artık ``pickler_dumper_impl()`` olarak adlandırılacaktır." -#: howto/clinic.rst:693 +#: howto/clinic.rst:700 msgid "" "Similarly, you may have a problem where you want to give a parameter a " "specific Python name, but that name may be inconvenient in C. Argument " @@ -991,7 +1001,7 @@ msgstr "" "Argument Clinic, aynı ``\"as\"`` sözdizimini kullanarak bir parametreye " "Python'da ve C'de farklı adlar vermenize olanak tanır::" -#: howto/clinic.rst:707 +#: howto/clinic.rst:714 #, fuzzy msgid "" "Here, the name used in Python (in the signature and the ``keywords`` array) " @@ -1000,18 +1010,18 @@ msgstr "" "Burada, Python'da kullanılan isim (imzada ve ``keywords`` dizisinde) " "``file`` olacaktır, ancak C değişkeni ``file_obj`` olarak adlandırılacaktır." -#: howto/clinic.rst:710 +#: howto/clinic.rst:717 #, fuzzy msgid "You can use this to rename the *self* parameter too!" msgstr "" "Bunu ``self`` parametresini yeniden adlandırmak için de kullanabilirsiniz!" -#: howto/clinic.rst:714 +#: howto/clinic.rst:721 #, fuzzy msgid "How to convert functions using ``PyArg_UnpackTuple``" msgstr "PyArg_UnpackTuple kullanarak fonksiyonları dönüştürme" -#: howto/clinic.rst:716 +#: howto/clinic.rst:723 #, fuzzy msgid "" "To convert a function parsing its arguments with :c:func:" @@ -1027,7 +1037,7 @@ msgstr "" "işaretlenmelidir (son argümandan sonra kendi başına bir satıra ``/`` " "ekleyin)." -#: howto/clinic.rst:722 +#: howto/clinic.rst:729 msgid "" "Currently the generated code will use :c:func:`PyArg_ParseTuple`, but this " "will change soon." @@ -1035,12 +1045,12 @@ msgstr "" "Şu anda oluşturulan kod :c:func:`PyArg_ParseTuple` kullanacaktır, ancak bu " "yakında değişecektir." -#: howto/clinic.rst:727 +#: howto/clinic.rst:734 #, fuzzy msgid "How to use optional groups" msgstr "İsteğe Bağlı Gruplar" -#: howto/clinic.rst:729 +#: howto/clinic.rst:736 msgid "" "Some legacy functions have a tricky approach to parsing their arguments: " "they count the number of positional arguments, then use a ``switch`` " @@ -1058,7 +1068,7 @@ msgstr "" "c:func:`PyArg_ParseTupleAndKeywords` oluşturulmadan önce isteğe bağlı " "argümanları simüle etmek için kullanılıyordu." -#: howto/clinic.rst:736 +#: howto/clinic.rst:743 #, fuzzy msgid "" "While functions using this approach can often be converted to use :c:func:`!" @@ -1085,7 +1095,7 @@ msgstr "" "girerek çağırırsanız, ``y`` değerini de girmeniz gerekir ve ``x`` değerini " "girmezseniz ``y`` değerini de giremezsiniz)" -#: howto/clinic.rst:748 +#: howto/clinic.rst:755 msgid "" "In any case, the goal of Argument Clinic is to support argument parsing for " "all existing CPython builtins without changing their semantics. Therefore " @@ -1102,7 +1112,7 @@ msgstr "" "sağında veya solunda olabilirler. Yalnızca *konumsal* parametrelerle " "kullanılabilirler." -#: howto/clinic.rst:756 +#: howto/clinic.rst:763 msgid "" "Optional groups are *only* intended for use when converting functions that " "make multiple calls to :c:func:`PyArg_ParseTuple`! Functions that use *any* " @@ -1121,7 +1131,7 @@ msgstr "" "kavramı anlamıyor. Lütfen mümkün olan her yerde isteğe bağlı grupları " "kullanmaktan kaçının." -#: howto/clinic.rst:765 +#: howto/clinic.rst:772 #, fuzzy msgid "" "To specify an optional group, add a ``[`` on a line by itself before the " @@ -1136,11 +1146,11 @@ msgstr "" "ilk iki parametreyi ve son parametreyi isteğe bağlı yapmak için isteğe bağlı " "grupları nasıl kullanır::" -#: howto/clinic.rst:794 +#: howto/clinic.rst:801 msgid "Notes:" msgstr "Notlar:" -#: howto/clinic.rst:796 +#: howto/clinic.rst:803 msgid "" "For every optional group, one additional parameter will be passed into the " "impl function representing the group. The parameter will be an int named " @@ -1162,7 +1172,7 @@ msgstr "" "kullanılmışsa sıfır olmayana ayarlanacaktır. (Kullanılmış veya kullanılmamış " "derken, parametrelerin bu çağrıda argüman alıp almadığını kastediyorum.)" -#: howto/clinic.rst:807 +#: howto/clinic.rst:814 msgid "" "If there are no required arguments, the optional groups will behave as if " "they're to the right of the required arguments." @@ -1170,7 +1180,7 @@ msgstr "" "Gerekli argümanlar yoksa, isteğe bağlı gruplar gerekli argümanların " "sağındaymış gibi davranacaktır." -#: howto/clinic.rst:810 +#: howto/clinic.rst:817 msgid "" "In the case of ambiguity, the argument parsing code favors parameters on the " "left (before the required parameters)." @@ -1178,11 +1188,11 @@ msgstr "" "Belirsizlik durumunda, argüman ayrıştırma kodu soldaki parametreleri " "(gerekli parametrelerden önce) tercih eder." -#: howto/clinic.rst:813 +#: howto/clinic.rst:820 msgid "Optional groups can only contain positional-only parameters." msgstr "İsteğe bağlı gruplar yalnızca konumsal parametreler içerebilir." -#: howto/clinic.rst:815 +#: howto/clinic.rst:822 msgid "" "Optional groups are *only* intended for legacy code. Please do not use " "optional groups for new code." @@ -1190,7 +1200,7 @@ msgstr "" "İsteğe bağlı gruplar *sadece* eski kod için tasarlanmıştır. Lütfen yeni kod " "için isteğe bağlı grupları kullanmayın." -#: howto/clinic.rst:820 +#: howto/clinic.rst:827 #, fuzzy msgid "" "How to use real Argument Clinic converters, instead of \"legacy converters\"" @@ -1198,7 +1208,7 @@ msgstr "" "\"Eski dönüştürücüler\" yerine gerçek Argüman Kliniği dönüştürücülerinin " "kullanılması" -#: howto/clinic.rst:822 +#: howto/clinic.rst:829 msgid "" "To save time, and to minimize how much you need to learn to achieve your " "first port to Argument Clinic, the walkthrough above tells you to use " @@ -1213,7 +1223,7 @@ msgstr "" "kolaylaştırmak için tasarlanmış bir kolaylıktır. Ve açık olmak gerekirse, " "Python 3.4 için kod taşırken kullanımları kabul edilebilir." -#: howto/clinic.rst:829 +#: howto/clinic.rst:836 msgid "" "However, in the long term we probably want all our blocks to use Argument " "Clinic's real syntax for converters. Why? A couple reasons:" @@ -1222,13 +1232,13 @@ msgstr "" "dönüştürücüler için gerçek sözdizimini kullanmasını istiyoruz. Neden mi? " "Birkaç nedeni var:" -#: howto/clinic.rst:833 +#: howto/clinic.rst:840 msgid "" "The proper converters are far easier to read and clearer in their intent." msgstr "" "Uygun dönüştürücülerin okunması çok daha kolay ve amaçları daha nettir." -#: howto/clinic.rst:834 +#: howto/clinic.rst:841 msgid "" "There are some format units that are unsupported as \"legacy converters\", " "because they require arguments, and the legacy converter syntax doesn't " @@ -1238,7 +1248,7 @@ msgstr "" "çünkü bunlar argüman gerektirir ve eski dönüştürücü sözdizimi argüman " "belirtmeyi desteklemez." -#: howto/clinic.rst:837 +#: howto/clinic.rst:844 msgid "" "In the future we may have a new argument parsing library that isn't " "restricted to what :c:func:`PyArg_ParseTuple` supports; this flexibility " @@ -1248,7 +1258,7 @@ msgstr "" "bir argüman ayrıştırma kütüphanemiz olabilir; bu esneklik eski " "dönüştürücüleri kullanan parametreler için mevcut olmayacaktır." -#: howto/clinic.rst:841 +#: howto/clinic.rst:848 msgid "" "Therefore, if you don't mind a little extra effort, please use the normal " "converters instead of legacy converters." @@ -1256,7 +1266,7 @@ msgstr "" "Bu nedenle, biraz fazladan çaba harcamaktan çekinmiyorsanız, lütfen eski " "dönüştürücüler yerine normal dönüştürücüleri kullanın." -#: howto/clinic.rst:844 +#: howto/clinic.rst:851 msgid "" "In a nutshell, the syntax for Argument Clinic (non-legacy) converters looks " "like a Python function call. However, if there are no explicit arguments to " @@ -1269,7 +1279,7 @@ msgstr "" "atlayabilirsiniz. Böylece ``bool`` ve ``bool()`` tamamen aynı " "dönüştürücülerdir." -#: howto/clinic.rst:850 +#: howto/clinic.rst:857 msgid "" "All arguments to Argument Clinic converters are keyword-only. All Argument " "Clinic converters accept the following arguments:" @@ -1278,12 +1288,12 @@ msgstr "" "anahtar sözcüktür. Tüm Argüman Kliniği dönüştürücüleri aşağıdaki bağımsız " "değişkenleri kabul eder:" -#: howto/clinic.rst:858 +#: howto/clinic.rst:865 #, fuzzy msgid "*c_default*" msgstr "``c_default``" -#: howto/clinic.rst:854 +#: howto/clinic.rst:861 msgid "" "The default value for this parameter when defined in C. Specifically, this " "will be the initializer for the variable declared in the \"parse " @@ -1295,12 +1305,12 @@ msgstr "" "Bunun nasıl kullanılacağını öğrenmek için :ref:`varsayılan değerler " "` bölümüne bakınız. Bir dize olarak belirtilir." -#: howto/clinic.rst:863 +#: howto/clinic.rst:870 #, fuzzy msgid "*annotation*" msgstr "``annotation``" -#: howto/clinic.rst:861 +#: howto/clinic.rst:868 msgid "" "The annotation value for this parameter. Not currently supported, because :" "pep:`8` mandates that the Python library may not use annotations." @@ -1309,7 +1319,16 @@ msgstr "" "pep:`8` Python kütüphanesinin ek açıklamaları kullanamayacağını " "belirtmektedir." -#: howto/clinic.rst:865 +#: howto/clinic.rst:873 +msgid "*unused*" +msgstr "" + +#: howto/clinic.rst:873 +msgid "" +"Wrap the argument with :c:macro:`Py_UNUSED` in the impl function signature." +msgstr "" + +#: howto/clinic.rst:875 msgid "" "In addition, some converters accept additional arguments. Here is a list of " "these arguments, along with their meanings:" @@ -1317,12 +1336,12 @@ msgstr "" "Buna ek olarak, bazı dönüştürücüler ek bağımsız değişkenler kabul eder. " "İşte anlamlarıyla birlikte bu bağımsız değişkenlerin bir listesi:" -#: howto/clinic.rst:874 +#: howto/clinic.rst:884 #, fuzzy msgid "*accept*" msgstr "``accept``" -#: howto/clinic.rst:869 +#: howto/clinic.rst:879 msgid "" "A set of Python types (and possibly pseudo-types); this restricts the " "allowable Python argument to values of these types. (This is not a general-" @@ -1334,16 +1353,16 @@ msgstr "" "olanak değildir; kural olarak yalnızca eski dönüştürücü tablosunda " "gösterilen belirli tür listelerini destekler)." -#: howto/clinic.rst:874 +#: howto/clinic.rst:884 msgid "To accept ``None``, add ``NoneType`` to this set." msgstr "``None`` kabul etmek için bu kümeye ``NoneType`` ekleyin." -#: howto/clinic.rst:879 +#: howto/clinic.rst:889 #, fuzzy msgid "*bitwise*" msgstr "``bitwise``" -#: howto/clinic.rst:877 +#: howto/clinic.rst:887 msgid "" "Only supported for unsigned integers. The native integer value of this " "Python argument will be written to the parameter without any range checking, " @@ -1353,12 +1372,12 @@ msgstr "" "tamsayı değeri, negatif değerler için bile herhangi bir aralık kontrolü " "yapılmadan parametreye yazılacaktır." -#: howto/clinic.rst:884 +#: howto/clinic.rst:894 #, fuzzy msgid "*converter*" msgstr "``converter``" -#: howto/clinic.rst:882 +#: howto/clinic.rst:892 msgid "" "Only supported by the ``object`` converter. Specifies the name of a :ref:`C " "\"converter function\" ` to use to convert this object to a " @@ -1368,12 +1387,12 @@ msgstr "" "türe dönüştürmek için kullanılacak :ref:`C \"converter function\" " "` adını belirtir." -#: howto/clinic.rst:889 +#: howto/clinic.rst:899 #, fuzzy msgid "*encoding*" msgstr "``encoding``" -#: howto/clinic.rst:887 +#: howto/clinic.rst:897 msgid "" "Only supported for strings. Specifies the encoding to use when converting " "this string from a Python str (Unicode) value into a C ``char *`` value." @@ -1382,12 +1401,12 @@ msgstr "" "değerinden bir C ``char *`` değerine dönüştürürken kullanılacak kodlamayı " "belirtir." -#: howto/clinic.rst:893 +#: howto/clinic.rst:903 #, fuzzy msgid "*subclass_of*" msgstr "``subclass_of``" -#: howto/clinic.rst:892 +#: howto/clinic.rst:902 msgid "" "Only supported for the ``object`` converter. Requires that the Python value " "be a subclass of a Python type, as expressed in C." @@ -1395,11 +1414,11 @@ msgstr "" "Yalnızca ``object`` dönüştürücü için desteklenir. Python değerinin C'de " "ifade edildiği gibi bir Python türünün alt sınıfı olmasını gerektirir." -#: howto/clinic.rst:898 +#: howto/clinic.rst:908 msgid "*type*" msgstr "" -#: howto/clinic.rst:896 +#: howto/clinic.rst:906 msgid "" "Only supported for the ``object`` and ``self`` converters. Specifies the C " "type that will be used to declare the variable. Default value is " @@ -1409,12 +1428,12 @@ msgstr "" "bildirmek için kullanılacak C türünü belirtir. Varsayılan değer " "``\"PyObject *\"`` şeklindedir." -#: howto/clinic.rst:904 +#: howto/clinic.rst:914 #, fuzzy msgid "*zeroes*" msgstr "``zeroes``" -#: howto/clinic.rst:901 +#: howto/clinic.rst:911 msgid "" "Only supported for strings. If true, embedded NUL bytes (``'\\\\0'``) are " "permitted inside the value. The length of the string will be passed in to " @@ -1426,7 +1445,7 @@ msgstr "" "dize parametresinden hemen sonra, ``_length`` adlı bir " "parametre olarak aktarılır." -#: howto/clinic.rst:906 +#: howto/clinic.rst:916 #, fuzzy msgid "" "Please note, not every possible combination of arguments will work. Usually " @@ -1445,7 +1464,7 @@ msgstr "" "herhangi bir biçim birimiyle eşleşmez. Bu yüzden Argüman Kliniği bunu " "desteklemez. (Ya da, en azından, henüz değil.)" -#: howto/clinic.rst:914 +#: howto/clinic.rst:924 msgid "" "Below is a table showing the mapping of legacy converters into real Argument " "Clinic converters. On the left is the legacy converter, on the right is the " @@ -1455,83 +1474,83 @@ msgstr "" "eşlenmesini gösteren bir tablo bulunmaktadır. Solda eski dönüştürücü, sağda " "ise onu değiştireceğiniz metin yer almaktadır." -#: howto/clinic.rst:919 +#: howto/clinic.rst:929 msgid "``'B'``" msgstr "``'B'``" -#: howto/clinic.rst:919 +#: howto/clinic.rst:929 msgid "``unsigned_char(bitwise=True)``" msgstr "``unsigned_char(bitwise=True)``" -#: howto/clinic.rst:920 +#: howto/clinic.rst:930 msgid "``'b'``" msgstr "``'b'``" -#: howto/clinic.rst:920 +#: howto/clinic.rst:930 msgid "``unsigned_char``" msgstr "``unsigned_char``" -#: howto/clinic.rst:921 +#: howto/clinic.rst:931 msgid "``'c'``" msgstr "``'c'``" -#: howto/clinic.rst:921 +#: howto/clinic.rst:931 msgid "``char``" msgstr "``char``" -#: howto/clinic.rst:922 +#: howto/clinic.rst:932 msgid "``'C'``" msgstr "``'C'``" -#: howto/clinic.rst:922 +#: howto/clinic.rst:932 msgid "``int(accept={str})``" msgstr "``int(accept={str})``" -#: howto/clinic.rst:923 +#: howto/clinic.rst:933 msgid "``'d'``" msgstr "``'d'``" -#: howto/clinic.rst:923 +#: howto/clinic.rst:933 msgid "``double``" msgstr "``double``" -#: howto/clinic.rst:924 +#: howto/clinic.rst:934 msgid "``'D'``" msgstr "``'D'``" -#: howto/clinic.rst:924 +#: howto/clinic.rst:934 msgid "``Py_complex``" msgstr "``Py_complex``" -#: howto/clinic.rst:925 +#: howto/clinic.rst:935 msgid "``'es'``" msgstr "``'es'``" -#: howto/clinic.rst:925 +#: howto/clinic.rst:935 msgid "``str(encoding='name_of_encoding')``" msgstr "``str(encoding='name_of_encoding')``" -#: howto/clinic.rst:926 +#: howto/clinic.rst:936 msgid "``'es#'``" msgstr "``'es#'``" -#: howto/clinic.rst:926 +#: howto/clinic.rst:936 msgid "``str(encoding='name_of_encoding', zeroes=True)``" msgstr "``str(encoding='name_of_encoding', zeroes=True)``" -#: howto/clinic.rst:927 +#: howto/clinic.rst:937 msgid "``'et'``" msgstr "``'et'``" -#: howto/clinic.rst:927 +#: howto/clinic.rst:937 msgid "``str(encoding='name_of_encoding', accept={bytes, bytearray, str})``" msgstr "``str(encoding='name_of_encoding', accept={bytes, bytearray, str})``" -#: howto/clinic.rst:928 +#: howto/clinic.rst:938 msgid "``'et#'``" msgstr "``'et#'``" -#: howto/clinic.rst:928 +#: howto/clinic.rst:938 msgid "" "``str(encoding='name_of_encoding', accept={bytes, bytearray, str}, " "zeroes=True)``" @@ -1539,255 +1558,259 @@ msgstr "" "``str(encoding='name_of_encoding', accept={bytes, bytearray, str}, " "zeroes=True)``" -#: howto/clinic.rst:929 +#: howto/clinic.rst:939 msgid "``'f'``" msgstr "``'f'``" -#: howto/clinic.rst:929 +#: howto/clinic.rst:939 msgid "``float``" msgstr "``float``" -#: howto/clinic.rst:930 +#: howto/clinic.rst:940 msgid "``'h'``" msgstr "``'h'``" -#: howto/clinic.rst:930 +#: howto/clinic.rst:940 msgid "``short``" msgstr "``short``" -#: howto/clinic.rst:931 +#: howto/clinic.rst:941 msgid "``'H'``" msgstr "``'H'``" -#: howto/clinic.rst:931 +#: howto/clinic.rst:941 msgid "``unsigned_short(bitwise=True)``" msgstr "``unsigned_short(bitwise=True)``" -#: howto/clinic.rst:932 +#: howto/clinic.rst:942 msgid "``'i'``" msgstr "``'i'``" -#: howto/clinic.rst:932 +#: howto/clinic.rst:942 msgid "``int``" msgstr "``int``" -#: howto/clinic.rst:933 +#: howto/clinic.rst:943 msgid "``'I'``" msgstr "``'I'``" -#: howto/clinic.rst:933 +#: howto/clinic.rst:943 msgid "``unsigned_int(bitwise=True)``" msgstr "``unsigned_int(bitwise=True)``" -#: howto/clinic.rst:934 +#: howto/clinic.rst:944 msgid "``'k'``" msgstr "``'k'``" -#: howto/clinic.rst:934 +#: howto/clinic.rst:944 msgid "``unsigned_long(bitwise=True)``" msgstr "``unsigned_long(bitwise=True)``" -#: howto/clinic.rst:935 +#: howto/clinic.rst:945 msgid "``'K'``" msgstr "``'K'``" -#: howto/clinic.rst:935 +#: howto/clinic.rst:945 msgid "``unsigned_long_long(bitwise=True)``" msgstr "``unsigned_long_long(bitwise=True)``" -#: howto/clinic.rst:936 +#: howto/clinic.rst:946 msgid "``'l'``" msgstr "``'l'``" -#: howto/clinic.rst:936 +#: howto/clinic.rst:946 msgid "``long``" msgstr "``long``" -#: howto/clinic.rst:937 +#: howto/clinic.rst:947 msgid "``'L'``" msgstr "``'L'``" -#: howto/clinic.rst:937 +#: howto/clinic.rst:947 msgid "``long long``" msgstr "``long long``" -#: howto/clinic.rst:938 +#: howto/clinic.rst:948 msgid "``'n'``" msgstr "``'n'``" -#: howto/clinic.rst:938 +#: howto/clinic.rst:948 msgid "``Py_ssize_t``" msgstr "``Py_ssize_t``" -#: howto/clinic.rst:939 +#: howto/clinic.rst:949 msgid "``'O'``" msgstr "``'O'``" -#: howto/clinic.rst:939 +#: howto/clinic.rst:949 msgid "``object``" msgstr "``object``" -#: howto/clinic.rst:940 +#: howto/clinic.rst:950 msgid "``'O!'``" msgstr "``'O!'``" -#: howto/clinic.rst:940 +#: howto/clinic.rst:950 msgid "``object(subclass_of='&PySomething_Type')``" msgstr "``object(subclass_of='&PySomething_Type')``" -#: howto/clinic.rst:941 +#: howto/clinic.rst:951 msgid "``'O&'``" msgstr "``'O&'``" -#: howto/clinic.rst:941 +#: howto/clinic.rst:951 msgid "``object(converter='name_of_c_function')``" msgstr "``object(converter='name_of_c_function')``" -#: howto/clinic.rst:942 +#: howto/clinic.rst:952 msgid "``'p'``" msgstr "``'p'``" -#: howto/clinic.rst:942 +#: howto/clinic.rst:952 msgid "``bool``" msgstr "``bool``" -#: howto/clinic.rst:943 +#: howto/clinic.rst:953 msgid "``'S'``" msgstr "``'S'``" -#: howto/clinic.rst:943 +#: howto/clinic.rst:953 msgid "``PyBytesObject``" msgstr "``PyBytesObject``" -#: howto/clinic.rst:944 +#: howto/clinic.rst:954 msgid "``'s'``" msgstr "``'s'``" -#: howto/clinic.rst:944 +#: howto/clinic.rst:954 msgid "``str``" msgstr "``str``" -#: howto/clinic.rst:945 +#: howto/clinic.rst:955 msgid "``'s#'``" msgstr "``'s#'``" -#: howto/clinic.rst:945 +#: howto/clinic.rst:955 msgid "``str(zeroes=True)``" msgstr "``str(zeroes=True)``" -#: howto/clinic.rst:946 +#: howto/clinic.rst:956 msgid "``'s*'``" msgstr "``'s*'``" -#: howto/clinic.rst:946 +#: howto/clinic.rst:956 msgid "``Py_buffer(accept={buffer, str})``" msgstr "``Py_buffer(accept={buffer, str})``" -#: howto/clinic.rst:947 +#: howto/clinic.rst:957 msgid "``'U'``" msgstr "``'U'``" -#: howto/clinic.rst:947 +#: howto/clinic.rst:957 msgid "``unicode``" msgstr "``unicode``" -#: howto/clinic.rst:948 +#: howto/clinic.rst:958 msgid "``'u'``" msgstr "``'u'``" -#: howto/clinic.rst:948 -msgid "``Py_UNICODE``" -msgstr "``Py_UNICODE``" +#: howto/clinic.rst:958 +#, fuzzy +msgid "``wchar_t``" +msgstr "``char``" -#: howto/clinic.rst:949 +#: howto/clinic.rst:959 msgid "``'u#'``" msgstr "``'u#'``" -#: howto/clinic.rst:949 -msgid "``Py_UNICODE(zeroes=True)``" -msgstr "``Py_UNICODE(zeroes=True)``" +#: howto/clinic.rst:959 +#, fuzzy +msgid "``wchar_t(zeroes=True)``" +msgstr "``str(zeroes=True)``" -#: howto/clinic.rst:950 +#: howto/clinic.rst:960 msgid "``'w*'``" msgstr "``'w*'``" -#: howto/clinic.rst:950 +#: howto/clinic.rst:960 msgid "``Py_buffer(accept={rwbuffer})``" msgstr "``Py_buffer(accept={rwbuffer})``" -#: howto/clinic.rst:951 +#: howto/clinic.rst:961 msgid "``'Y'``" msgstr "``'Y'``" -#: howto/clinic.rst:951 +#: howto/clinic.rst:961 msgid "``PyByteArrayObject``" msgstr "``PyByteArrayObject``" -#: howto/clinic.rst:952 +#: howto/clinic.rst:962 msgid "``'y'``" msgstr "``'y'``" -#: howto/clinic.rst:952 +#: howto/clinic.rst:962 msgid "``str(accept={bytes})``" msgstr "``str(accept={bytes})``" -#: howto/clinic.rst:953 +#: howto/clinic.rst:963 msgid "``'y#'``" msgstr "``'y#'``" -#: howto/clinic.rst:953 +#: howto/clinic.rst:963 msgid "``str(accept={robuffer}, zeroes=True)``" msgstr "``str(accept={robuffer}, zeroes=True)``" -#: howto/clinic.rst:954 +#: howto/clinic.rst:964 msgid "``'y*'``" msgstr "``'y*'``" -#: howto/clinic.rst:954 +#: howto/clinic.rst:964 msgid "``Py_buffer``" msgstr "``Py_buffer``" -#: howto/clinic.rst:955 +#: howto/clinic.rst:965 msgid "``'Z'``" msgstr "``'Z'``" -#: howto/clinic.rst:955 -msgid "``Py_UNICODE(accept={str, NoneType})``" -msgstr "``Py_UNICODE(accept={str, NoneType})``" +#: howto/clinic.rst:965 +#, fuzzy +msgid "``wchar_t(accept={str, NoneType})``" +msgstr "``str(accept={str, NoneType})``" -#: howto/clinic.rst:956 +#: howto/clinic.rst:966 msgid "``'Z#'``" msgstr "``'Z#'``" -#: howto/clinic.rst:956 -msgid "``Py_UNICODE(accept={str, NoneType}, zeroes=True)``" -msgstr "``Py_UNICODE(accept={str, NoneType}, zeroes=True)``" +#: howto/clinic.rst:966 +#, fuzzy +msgid "``wchar_t(accept={str, NoneType}, zeroes=True)``" +msgstr "``str(accept={str, NoneType}, zeroes=True)``" -#: howto/clinic.rst:957 +#: howto/clinic.rst:967 msgid "``'z'``" msgstr "``'z'``" -#: howto/clinic.rst:957 +#: howto/clinic.rst:967 msgid "``str(accept={str, NoneType})``" msgstr "``str(accept={str, NoneType})``" -#: howto/clinic.rst:958 +#: howto/clinic.rst:968 msgid "``'z#'``" msgstr "``'z#'``" -#: howto/clinic.rst:958 +#: howto/clinic.rst:968 msgid "``str(accept={str, NoneType}, zeroes=True)``" msgstr "``str(accept={str, NoneType}, zeroes=True)``" -#: howto/clinic.rst:959 +#: howto/clinic.rst:969 msgid "``'z*'``" msgstr "``'z*'``" -#: howto/clinic.rst:959 +#: howto/clinic.rst:969 msgid "``Py_buffer(accept={buffer, str, NoneType})``" msgstr "``Py_buffer(accept={buffer, str, NoneType})``" -#: howto/clinic.rst:962 +#: howto/clinic.rst:972 msgid "" "As an example, here's our sample ``pickle.Pickler.dump`` using the proper " "converter::" @@ -1795,7 +1818,7 @@ msgstr "" "Örnek olarak, uygun dönüştürücüyü kullanan ``pickle.Pickler.dump`` " "örneğimiz::" -#: howto/clinic.rst:975 +#: howto/clinic.rst:985 msgid "" "One advantage of real converters is that they're more flexible than legacy " "converters. For example, the ``unsigned_int`` converter (and all the " @@ -1809,7 +1832,7 @@ msgstr "" "davranışları değer üzerinde aralık denetimi yapar ve negatif sayıları kabul " "etmezler. Bunu eski bir dönüştürücü ile yapamazsınız!" -#: howto/clinic.rst:981 +#: howto/clinic.rst:991 msgid "" "Argument Clinic will show you all the converters it has available. For each " "converter it'll show you all the parameters it accepts, along with the " @@ -1821,11 +1844,11 @@ msgstr "" "varsayılan değeri gösterecektir. Tam listeyi görmek için ``Tools/clinic/" "clinic.py --converters`` komutunu çalıştırmanız yeterlidir." -#: howto/clinic.rst:988 +#: howto/clinic.rst:998 msgid "How to use the ``Py_buffer`` converter" msgstr "" -#: howto/clinic.rst:990 +#: howto/clinic.rst:1000 msgid "" "When using the ``Py_buffer`` converter (or the ``'s*'``, ``'w*'``, ``'*y'``, " "or ``'z*'`` legacy converters), you *must* not call :c:func:" @@ -1837,12 +1860,12 @@ msgstr "" "func:`PyBuffer_Release` çağrısı yapmamanız gerekir. Argument Clinic bunu " "sizin için yapan kodu üretir (ayrıştırma işlevinde)." -#: howto/clinic.rst:999 +#: howto/clinic.rst:1009 #, fuzzy msgid "How to use advanced converters" msgstr "Gelişmiş dönüştürücüler" -#: howto/clinic.rst:1001 +#: howto/clinic.rst:1011 msgid "" "Remember those format units you skipped for your first time because they " "were advanced? Here's how to handle those too." @@ -1850,7 +1873,7 @@ msgstr "" "İlk seferinizde ileri düzey oldukları için atladığınız format ünitelerini " "hatırlıyor musunuz? İşte onları da nasıl halledeceğiniz." -#: howto/clinic.rst:1004 +#: howto/clinic.rst:1014 #, fuzzy msgid "" "The trick is, all those format units take arguments—either conversion " @@ -1869,7 +1892,7 @@ msgstr "" "için), ``subclass_of`` (``O!`` için) ya da ``encoding`` (``e`` ile başlayan " "tüm biçim birimleri için) şeklindedir." -#: howto/clinic.rst:1012 +#: howto/clinic.rst:1022 #, fuzzy msgid "" "When using *subclass_of*, you may also want to use the other custom argument " @@ -1885,7 +1908,7 @@ msgstr "" "``object(type='PyUnicodeObject *', subclass_of='&PyUnicode_Type')`` " "dönüştürücüsünü kullanmak istersiniz." -#: howto/clinic.rst:1018 +#: howto/clinic.rst:1028 #, fuzzy msgid "" "One possible problem with using Argument Clinic: it takes away some possible " @@ -1909,11 +1932,11 @@ msgstr "" "birimleri ``e`` ile başlayan parametreler için her zaman statik sabit kodlu " "kodlama dizeleri geçirir." -#: howto/clinic.rst:1032 +#: howto/clinic.rst:1042 msgid "How to assign default values to parameter" msgstr "" -#: howto/clinic.rst:1034 +#: howto/clinic.rst:1044 msgid "" "Default values for parameters can be any of a number of values. At their " "simplest, they can be string, int, or float literals:" @@ -1921,11 +1944,11 @@ msgstr "" "Parametreler için varsayılan değerler bir dizi değerden herhangi biri " "olabilir. En basit haliyle string, int veya float değişmezleri olabilirler:" -#: howto/clinic.rst:1043 +#: howto/clinic.rst:1053 msgid "They can also use any of Python's built-in constants:" msgstr "Python'un yerleşik sabitlerinden herhangi birini de kullanabilirler:" -#: howto/clinic.rst:1051 +#: howto/clinic.rst:1061 msgid "" "There's also special support for a default value of ``NULL``, and for simple " "expressions, documented in the following sections." @@ -1933,11 +1956,11 @@ msgstr "" "Ayrıca ``NULL`` varsayılan değeri ve aşağıdaki bölümlerde belgelenen basit " "ifadeler için özel bir destek de vardır." -#: howto/clinic.rst:1056 +#: howto/clinic.rst:1066 msgid "The ``NULL`` default value" msgstr "Varsayılan değer ``NULL``" -#: howto/clinic.rst:1058 +#: howto/clinic.rst:1068 msgid "" "For string and object parameters, you can set them to ``None`` to indicate " "that there's no default. However, that means the C variable will be " @@ -1953,11 +1976,11 @@ msgstr "" "açısından varsayılan değer ``None`` gibi davranır, ancak C değişkeni " "``NULL`` ile başlatılır." -#: howto/clinic.rst:1067 +#: howto/clinic.rst:1077 msgid "Symbolic default values" msgstr "Sembolik varsayılan değerler" -#: howto/clinic.rst:1069 +#: howto/clinic.rst:1079 msgid "" "The default value you provide for a parameter can't be any arbitrary " "expression. Currently the following are explicitly supported:" @@ -1965,19 +1988,19 @@ msgstr "" "Bir parametre için sağladığınız varsayılan değer rastgele bir ifade olamaz. " "Şu anda aşağıdakiler açıkça desteklenmektedir:" -#: howto/clinic.rst:1072 +#: howto/clinic.rst:1082 msgid "Numeric constants (integer and float)" msgstr "Sayısal sabitler (integer ve float)" -#: howto/clinic.rst:1073 +#: howto/clinic.rst:1083 msgid "String constants" msgstr "Dize sabitleri" -#: howto/clinic.rst:1074 +#: howto/clinic.rst:1084 msgid "``True``, ``False``, and ``None``" msgstr "``True``, ``False`` ve ``None``" -#: howto/clinic.rst:1075 +#: howto/clinic.rst:1085 #, fuzzy msgid "" "Simple symbolic constants like :py:data:`sys.maxsize`, which must start with " @@ -1985,7 +2008,7 @@ msgid "" msgstr "" "Modülün adıyla başlaması gereken ``sys.maxsize`` gibi basit sembolik sabitler" -#: howto/clinic.rst:1078 +#: howto/clinic.rst:1088 msgid "" "(In the future, this may need to get even more elaborate, to allow full " "expressions like ``CONSTANT - 1``.)" @@ -1993,12 +2016,12 @@ msgstr "" "(Gelecekte, ``CONSTANT - 1`` gibi tam ifadelere izin vermek için bunun daha " "da ayrıntılı hale getirilmesi gerekebilir.)" -#: howto/clinic.rst:1083 +#: howto/clinic.rst:1093 #, fuzzy msgid "Expressions as default values" msgstr "Varsayılan değerler olarak belirtilen ifadeler" -#: howto/clinic.rst:1085 +#: howto/clinic.rst:1095 msgid "" "The default value for a parameter can be more than just a literal value. It " "can be an entire expression, using math operators and looking up attributes " @@ -2010,11 +2033,11 @@ msgstr "" "arayan bütün bir ifade olabilir. Ancak bu destek, bazı açık olmayan " "anlamlar nedeniyle tam olarak basit değildir." -#: howto/clinic.rst:1090 +#: howto/clinic.rst:1100 msgid "Consider the following example:" msgstr "Aşağıdaki örneği ele alalım:" -#: howto/clinic.rst:1096 +#: howto/clinic.rst:1106 #, fuzzy msgid "" ":py:data:`sys.maxsize` can have different values on different platforms. " @@ -2027,7 +2050,7 @@ msgstr "" "sabit kodlayamaz. Bu nedenle varsayılanı, kullanıcı işlevin imzasını " "istediğinde çalışma zamanında değerlendirilecek şekilde saklar." -#: howto/clinic.rst:1101 +#: howto/clinic.rst:1111 #, fuzzy msgid "" "What namespace is available when the expression is evaluated? It's " @@ -2039,7 +2062,7 @@ msgstr "" "geldiği modül bağlamında değerlendirilir. Dolayısıyla, modülünüzün " "\"``max_widgets``\" adlı bir niteliği varsa, bunu kullanabilirsiniz:" -#: howto/clinic.rst:1109 +#: howto/clinic.rst:1119 #, fuzzy msgid "" "If the symbol isn't found in the current module, it fails over to looking " @@ -2054,7 +2077,7 @@ msgstr "" "kendinizi Python'un kendisi tarafından önceden yüklenmiş modüllerle " "sınırlamak en iyisidir)." -#: howto/clinic.rst:1114 +#: howto/clinic.rst:1124 #, fuzzy msgid "" "Evaluating default values only at runtime means Argument Clinic can't " @@ -2068,7 +2091,7 @@ msgstr "" "dönüştürücüye ``c_default`` parametresini kullanarak C'deki eşdeğer ifadeyi " "de belirtmeniz gerekir:" -#: howto/clinic.rst:1123 +#: howto/clinic.rst:1133 msgid "" "Another complication: Argument Clinic can't know in advance whether or not " "the expression you supply is valid. It parses it to make sure it looks " @@ -2080,7 +2103,7 @@ msgstr "" "ancak *gerçekten* bilemez. Çalışma zamanında geçerli olacağı garanti edilen " "değerleri belirtmek için ifadeleri kullanırken çok dikkatli olmalısınız!" -#: howto/clinic.rst:1128 +#: howto/clinic.rst:1138 msgid "" "Finally, because expressions must be representable as static C values, there " "are many restrictions on legal expressions. Here's a list of Python " @@ -2090,32 +2113,32 @@ msgstr "" "gerektiğinden, yasal ifadeler üzerinde birçok kısıtlama vardır. İşte " "kullanmanıza izin verilmeyen Python özelliklerinin bir listesi:" -#: howto/clinic.rst:1132 +#: howto/clinic.rst:1142 msgid "Function calls." msgstr "Fonksiyon çağrıları." -#: howto/clinic.rst:1133 +#: howto/clinic.rst:1143 msgid "Inline if statements (``3 if foo else 5``)." msgstr "Satır içi if ifadeleri (``3 if foo else 5``)." -#: howto/clinic.rst:1134 +#: howto/clinic.rst:1144 msgid "Automatic sequence unpacking (``*[1, 2, 3]``)." msgstr "Otomatik dizi açma (``*[1, 2, 3]``)." -#: howto/clinic.rst:1135 +#: howto/clinic.rst:1145 msgid "List/set/dict comprehensions and generator expressions." msgstr "Liste/set/dict kavramaları ve üretici ifadeleri." -#: howto/clinic.rst:1136 +#: howto/clinic.rst:1146 msgid "Tuple/list/set/dict literals." msgstr "Tuple/list/set/dict değişmezleri." -#: howto/clinic.rst:1142 +#: howto/clinic.rst:1152 #, fuzzy msgid "How to use return converters" msgstr "dönüş dönüştürücüsü." -#: howto/clinic.rst:1144 +#: howto/clinic.rst:1154 #, fuzzy msgid "" "By default, the impl function Argument Clinic generates for you returns :c:" @@ -2131,7 +2154,7 @@ msgstr "" "girdilerinizi Python türlerinden yerel C türlerine dönüştürür - neden dönüş " "değerinizi de yerel bir C türünden bir Python türüne dönüştürmesin?" -#: howto/clinic.rst:1152 +#: howto/clinic.rst:1162 #, fuzzy msgid "" "That's what a \"return converter\" does. It changes your impl function to " @@ -2142,7 +2165,7 @@ msgstr "" "fonksiyonunuzu değiştirir, ardından bu değeri uygun ``PyObject *``'e " "dönüştürmek için oluşturulan (impl olmayan) fonksiyona kod ekler." -#: howto/clinic.rst:1156 +#: howto/clinic.rst:1166 #, fuzzy msgid "" "The syntax for return converters is similar to that of parameter converters. " @@ -2156,12 +2179,12 @@ msgstr "" "sözcüktür ve varsayılan argümanlardan herhangi birini değiştirmiyorsanız " "parantezleri atlayabilirsiniz." -#: howto/clinic.rst:1160 +#: howto/clinic.rst:1170 #, fuzzy msgid "For example:" msgstr "Örnek::" -#: howto/clinic.rst:1173 +#: howto/clinic.rst:1183 #, fuzzy msgid "" "Return converters behave much the same as parameter converters; they take " @@ -2175,7 +2198,7 @@ msgstr "" "sözcüktür ve varsayılan argümanlardan herhangi birini değiştirmiyorsanız " "parantezleri atlayabilirsiniz." -#: howto/clinic.rst:1177 +#: howto/clinic.rst:1187 msgid "" "(If you use both ``\"as\"`` *and* a return converter for your function, the " "``\"as\"`` should come before the return converter.)" @@ -2183,7 +2206,7 @@ msgstr "" "(Fonksiyonunuz için hem ``\"as\"`` * hem de * return dönüştürücü " "kullanıyorsanız, ``\"as\"`` return dönüştürücüden önce gelmelidir.)" -#: howto/clinic.rst:1180 +#: howto/clinic.rst:1190 #, fuzzy msgid "" "There's one additional complication when using return converters: how do you " @@ -2207,31 +2230,19 @@ msgstr "" "yayacaktır. Aksi takdirde, döndürdüğünüz değeri normal şekilde " "kodlayacaktır." -#: howto/clinic.rst:1189 +#: howto/clinic.rst:1199 msgid "Currently Argument Clinic supports only a few return converters:" msgstr "" "Şu anda Argüman Kliniği yalnızca birkaç dönüş dönüştürücüsünü " "desteklemektedir:" -#: howto/clinic.rst:1203 +#: howto/clinic.rst:1213 msgid "" "None of these take parameters. For all of these, return ``-1`` to indicate " "error." msgstr "" -#: howto/clinic.rst:1206 -msgid "" -"(There's also an experimental ``NoneType`` converter, which lets you return " -"``Py_None`` on success or ``NULL`` on failure, without having to increment " -"the reference count on ``Py_None``. I'm not sure it adds enough clarity to " -"be worth using.)" -msgstr "" -"(Ayrıca, ``Py_None`` referans sayısını artırmak zorunda kalmadan, başarı " -"durumunda ``Py_None`` veya başarısızlık durumunda ``NULL`` döndürmenizi " -"sağlayan deneysel bir ``NoneType`` dönüştürücü de vardır. Kullanmaya " -"değecek kadar netlik kattığından emin değilim.)" - -#: howto/clinic.rst:1211 +#: howto/clinic.rst:1216 msgid "" "To see all the return converters Argument Clinic supports, along with their " "parameters (if any), just run ``Tools/clinic/clinic.py --converters`` for " @@ -2241,12 +2252,12 @@ msgstr "" "parametreleriyle (varsa) birlikte görmek için, tam liste için ``Tools/clinic/" "clinic.py --converters`` komutunu çalıştırmanız yeterlidir." -#: howto/clinic.rst:1217 +#: howto/clinic.rst:1222 #, fuzzy msgid "How to clone existing functions" msgstr "Mevcut fonksiyonları klonlama" -#: howto/clinic.rst:1219 +#: howto/clinic.rst:1224 msgid "" "If you have a number of functions that look similar, you may be able to use " "Clinic's \"clone\" feature. When you clone an existing function, you reuse:" @@ -2255,27 +2266,27 @@ msgstr "" "özelliğini kullanabilirsiniz. Mevcut bir işlevi klonladığınızda, yeniden " "kullanırsınız:" -#: howto/clinic.rst:1223 +#: howto/clinic.rst:1228 msgid "its parameters, including" msgstr "parametreleri, dahil olmak üzere" -#: howto/clinic.rst:1225 +#: howto/clinic.rst:1230 msgid "their names," msgstr "isimleri," -#: howto/clinic.rst:1227 +#: howto/clinic.rst:1232 msgid "their converters, with all parameters," msgstr "dönüştürücüleri, tüm parametrelerle birlikte," -#: howto/clinic.rst:1229 +#: howto/clinic.rst:1234 msgid "their default values," msgstr "varsayılan değerleri," -#: howto/clinic.rst:1231 +#: howto/clinic.rst:1236 msgid "their per-parameter docstrings," msgstr "parametre başına dokümanları," -#: howto/clinic.rst:1233 +#: howto/clinic.rst:1238 msgid "" "their *kind* (whether they're positional only, positional or keyword, or " "keyword only), and" @@ -2283,11 +2294,11 @@ msgstr "" "türleri* (yalnızca konumsal, konumsal veya anahtar sözcük ya da yalnızca " "anahtar sözcük olup olmadıkları) ve" -#: howto/clinic.rst:1236 +#: howto/clinic.rst:1241 msgid "its return converter." msgstr "dönüş dönüştürücüsü." -#: howto/clinic.rst:1238 +#: howto/clinic.rst:1243 msgid "" "The only thing not copied from the original function is its docstring; the " "syntax allows you to specify a new docstring." @@ -2295,11 +2306,11 @@ msgstr "" "Orijinal fonksiyondan kopyalanmayan tek şey onun docstring'idir; sözdizimi " "yeni bir docstring belirtmenize izin verir." -#: howto/clinic.rst:1241 +#: howto/clinic.rst:1246 msgid "Here's the syntax for cloning a function::" msgstr "Bir fonksiyonu klonlamak için sözdizimi şöyledir::" -#: howto/clinic.rst:1249 +#: howto/clinic.rst:1254 msgid "" "(The functions can be in different modules or classes. I wrote ``module." "class`` in the sample just to illustrate that you must use the full path to " @@ -2309,7 +2320,7 @@ msgstr "" "class`` yazdım, sadece *her iki* fonksiyon için de tam yolu kullanmanız " "gerektiğini göstermek için.)" -#: howto/clinic.rst:1253 +#: howto/clinic.rst:1258 msgid "" "Sorry, there's no syntax for partially cloning a function, or cloning a " "function then modifying it. Cloning is an all-or nothing proposition." @@ -2318,7 +2329,7 @@ msgstr "" "sonra değiştirmek için bir sözdizimi yoktur. Klonlama bir ya hep ya hiç " "önermesidir." -#: howto/clinic.rst:1256 +#: howto/clinic.rst:1261 msgid "" "Also, the function you are cloning from must have been previously defined in " "the current file." @@ -2326,12 +2337,12 @@ msgstr "" "Ayrıca, klonladığınız fonksiyonun mevcut dosyada daha önce tanımlanmış " "olması gerekir." -#: howto/clinic.rst:1261 +#: howto/clinic.rst:1266 #, fuzzy msgid "How to call Python code" msgstr "Python kodunu çağırma" -#: howto/clinic.rst:1263 +#: howto/clinic.rst:1268 msgid "" "The rest of the advanced topics require you to write Python code which lives " "inside your C file and modifies Argument Clinic's runtime state. This is " @@ -2341,7 +2352,7 @@ msgstr "" "Kliniği'nin çalışma zamanı durumunu değiştiren Python kodu yazmanızı " "gerektirir. Bu basittir: sadece bir Python bloğu tanımlarsınız." -#: howto/clinic.rst:1267 +#: howto/clinic.rst:1272 msgid "" "A Python block uses different delimiter lines than an Argument Clinic " "function block. It looks like this::" @@ -2349,7 +2360,7 @@ msgstr "" "Bir Python bloğu, Argüman Kliniği işlev bloğundan farklı sınırlayıcı " "satırlar kullanır. Şöyle görünür::" -#: howto/clinic.rst:1274 +#: howto/clinic.rst:1279 msgid "" "All the code inside the Python block is executed at the time it's parsed. " "All text written to stdout inside the block is redirected into the " @@ -2358,7 +2369,7 @@ msgstr "" "Python bloğunun içindeki tüm kod ayrıştırıldığı anda çalıştırılır. Blok " "içinde stdout'a yazılan tüm metin, bloktan sonra \"çıktı \"ya yönlendirilir." -#: howto/clinic.rst:1278 +#: howto/clinic.rst:1283 msgid "" "As an example, here's a Python block that adds a static integer variable to " "the C code::" @@ -2366,12 +2377,12 @@ msgstr "" "Örnek olarak, işte C koduna statik bir tamsayı değişkeni ekleyen bir Python " "bloğu::" -#: howto/clinic.rst:1291 +#: howto/clinic.rst:1296 #, fuzzy msgid "How to use the \"self converter\"" msgstr "\"Kendi kendine dönüştürücü\" kullanma" -#: howto/clinic.rst:1293 +#: howto/clinic.rst:1298 #, fuzzy msgid "" "Argument Clinic automatically adds a \"self\" parameter for you using a " @@ -2391,7 +2402,7 @@ msgstr "" "dönüştürücüsünün ``self_converter`` veya onun bir alt sınıfının bir örneği " "olduğundan emin olun." -#: howto/clinic.rst:1302 +#: howto/clinic.rst:1307 msgid "" "What's the point? This lets you override the type of ``self``, or give it a " "different default name." @@ -2399,7 +2410,7 @@ msgstr "" "Ne anlamı var? Bu, ``self`` türünü geçersiz kılmanıza veya ona farklı bir " "varsayılan ad vermenize olanak tanır." -#: howto/clinic.rst:1305 +#: howto/clinic.rst:1310 #, fuzzy msgid "" "How do you specify the custom type you want to cast ``self`` to? If you only " @@ -2412,7 +2423,7 @@ msgstr "" "kullanmak istediğiniz tipi ``type`` parametresi olarak girerek Argüman " "Kliniğinin mevcut ``self`` dönüştürücüsünü doğrudan kullanabilirsiniz::" -#: howto/clinic.rst:1321 +#: howto/clinic.rst:1326 #, fuzzy msgid "" "On the other hand, if you have a lot of functions that will use the same " @@ -2423,12 +2434,12 @@ msgstr "" "en iyisi ``self_converter`` alt sınıfını kullanarak, ancak ``type`` üyesinin " "üzerine yazarak kendi dönüştürücünüzü oluşturmaktır::" -#: howto/clinic.rst:1343 +#: howto/clinic.rst:1348 #, fuzzy msgid "How to use the \"defining class\" converter" msgstr "\"Sınıf tanımlama\" dönüştürücüsü kullanma" -#: howto/clinic.rst:1345 +#: howto/clinic.rst:1350 msgid "" "Argument Clinic facilitates gaining access to the defining class of a " "method. This is useful for :ref:`heap type ` methods that need " @@ -2444,7 +2455,7 @@ msgstr "" "modül durumunu, örneğin bir modül yönteminden almak için tanımlayıcı sınıf " "üzerinde :c:func:`PyType_GetModuleState` kullanabilirsiniz." -#: howto/clinic.rst:1351 +#: howto/clinic.rst:1356 #, fuzzy msgid "" "Example from :source:`Modules/zlibmodule.c`. First, ``defining_class`` is " @@ -2453,7 +2464,7 @@ msgstr "" "``Modules/zlibmodule.c`` den örnek. İlk olarak, ``defining_class`` klinik " "girdisine eklenir::" -#: howto/clinic.rst:1363 +#: howto/clinic.rst:1368 msgid "" "After running the Argument Clinic tool, the following function signature is " "generated::" @@ -2461,7 +2472,7 @@ msgstr "" "Argüman Kliniği aracını çalıştırdıktan sonra aşağıdaki fonksiyon imzası " "oluşturulur::" -#: howto/clinic.rst:1373 +#: howto/clinic.rst:1378 msgid "" "The following code can now use ``PyType_GetModuleState(cls)`` to fetch the " "module state::" @@ -2469,7 +2480,7 @@ msgstr "" "Aşağıdaki kod artık modül durumunu almak için ``PyType_GetModuleState(cls)`` " "kullanabilir::" -#: howto/clinic.rst:1379 +#: howto/clinic.rst:1384 #, fuzzy msgid "" "Each method may only have one argument using this converter, and it must " @@ -2482,7 +2493,7 @@ msgstr "" "argüman olarak görünmelidir. Argüman ``PyTypeObject *`` tipinde olacaktır. " "Argüman ``__text_signature__`` içinde görünmeyecektir." -#: howto/clinic.rst:1384 +#: howto/clinic.rst:1389 #, fuzzy msgid "" "The ``defining_class`` converter is not compatible with :py:meth:`!__init__` " @@ -2492,7 +2503,7 @@ msgstr "" "``defining_class`` dönüştürücüsü, ``METH_METHOD`` kuralını kullanamayan " "``__init__`` ve ``__new__`` yöntemleriyle uyumlu değildir." -#: howto/clinic.rst:1388 +#: howto/clinic.rst:1393 #, fuzzy msgid "" "It is not possible to use ``defining_class`` with slot methods. In order to " @@ -2507,16 +2518,16 @@ msgstr "" "`PyModule_GetState` kullanın. ``Modules/_threadmodule.c`` içindeki " "``setattro`` slot yönteminden örnek::" -#: howto/clinic.rst:1403 +#: howto/clinic.rst:1408 msgid "See also :pep:`573`." msgstr "Bkz: :pep:`573`." -#: howto/clinic.rst:1409 +#: howto/clinic.rst:1414 #, fuzzy msgid "How to write a custom converter" msgstr "Özel bir dönüştürücü yazma" -#: howto/clinic.rst:1411 +#: howto/clinic.rst:1416 #, fuzzy msgid "" "A converter is a Python class that inherits from :py:class:`CConverter`. The " @@ -2530,7 +2541,7 @@ msgstr "" "kullanan bir parametreniz varsa, bu parametreyi birim ayrıştırmak, bir :c:" "func:`PyArg_ParseTuple` \"dönüştürücü işlevi\" çağırmak anlamına gelir." -#: howto/clinic.rst:1416 +#: howto/clinic.rst:1421 #, fuzzy msgid "" "Your converter class should be named :samp:`{ConverterName}_converter`. By " @@ -2543,7 +2554,7 @@ msgstr "" "kaydedilecektir; adı, ``_converter`` son eki çıkarılmış sınıfınızın adı " "olacaktır. (Bu bir meta sınıf ile gerçekleştirilir.)" -#: howto/clinic.rst:1421 +#: howto/clinic.rst:1426 #, fuzzy msgid "" "Instead of subclassing :py:meth:`!CConverter.__init__`, write a :py:meth:`!" @@ -2560,7 +2571,7 @@ msgstr "" "dönüştürücüye aktarılan tüm argümanlar ``converter_init()`` fonksiyonunuza " "aktarılacaktır." -#: howto/clinic.rst:1430 +#: howto/clinic.rst:1435 #, fuzzy msgid "" "Here's the simplest example of a custom converter, from :source:`Modules/" @@ -2569,7 +2580,7 @@ msgstr "" "İşte ``Modules/zlibmodule.c`` adresinden özel bir dönüştürücünün en basit " "örneği::" -#: howto/clinic.rst:1441 +#: howto/clinic.rst:1446 #, fuzzy msgid "" "This block adds a converter named ``ssize_t`` to Argument Clinic. Parameters " @@ -2584,7 +2595,7 @@ msgstr "" "``ssize_t_converter`` dönüştürücü işlevini çağıracaktır. ``ssize_t`` " "değişkenleri otomatik olarak varsayılan değerleri destekler." -#: howto/clinic.rst:1447 +#: howto/clinic.rst:1452 msgid "" "More sophisticated custom converters can insert custom C code to handle " "initialization and cleanup. You can see more examples of custom converters " @@ -2595,12 +2606,12 @@ msgstr "" "fazla özel dönüştürücü örneği görebilirsiniz; ``CConverter`` dizesi için C " "dosyalarını grepleyin." -#: howto/clinic.rst:1454 +#: howto/clinic.rst:1459 #, fuzzy msgid "How to write a custom return converter" msgstr "Özel bir dönüş dönüştürücü yazma" -#: howto/clinic.rst:1456 +#: howto/clinic.rst:1461 msgid "" "Writing a custom return converter is much like writing a custom converter. " "Except it's somewhat simpler, because return converters are themselves much " @@ -2610,7 +2621,7 @@ msgstr "" "benzer. Biraz basit olması dışında, çünkü geri dönüş dönüştürücülerinin " "kendileri çok daha basittir." -#: howto/clinic.rst:1460 +#: howto/clinic.rst:1465 #, fuzzy msgid "" "Return converters must subclass :py:class:`!CReturnConverter`. There are no " @@ -2625,11 +2636,11 @@ msgstr "" "lütfen ``Tools/clinic/clinic.py`` dosyasını, özellikle ``CReturnConverter`` " "ve tüm alt sınıflarının uygulamasını okuyun." -#: howto/clinic.rst:1469 +#: howto/clinic.rst:1474 msgid "How to convert ``METH_O`` and ``METH_NOARGS`` functions" msgstr "" -#: howto/clinic.rst:1471 +#: howto/clinic.rst:1476 #, fuzzy msgid "" "To convert a function using :c:macro:`METH_O`, make sure the function's " @@ -2640,7 +2651,7 @@ msgstr "" "argümanının ``object`` dönüştürücüsünü kullandığından emin olun ve " "argümanları sadece pozisyonel olarak işaretleyin::" -#: howto/clinic.rst:1483 +#: howto/clinic.rst:1488 #, fuzzy msgid "" "To convert a function using :c:macro:`METH_NOARGS`, just don't specify any " @@ -2649,7 +2660,7 @@ msgstr "" "Bir fonksiyonu ``METH_NOARGS`` kullanarak dönüştürmek için herhangi bir " "argüman belirtmemeniz yeterlidir." -#: howto/clinic.rst:1486 +#: howto/clinic.rst:1491 #, fuzzy msgid "" "You can still use a self converter, a return converter, and specify a *type* " @@ -2658,12 +2669,12 @@ msgstr "" "Yine de bir self dönüştürücü, bir return dönüştürücü kullanabilir ve " "``METH_O`` için nesne dönüştürücüye bir ``type`` argümanı belirtebilirsiniz." -#: howto/clinic.rst:1491 +#: howto/clinic.rst:1496 #, fuzzy msgid "How to convert ``tp_new`` and ``tp_init`` functions" msgstr "tp_new ve tp_init fonksiyonları" -#: howto/clinic.rst:1493 +#: howto/clinic.rst:1498 #, fuzzy msgid "" "You can convert :c:member:`~PyTypeObject.tp_new` and :c:member:" @@ -2674,7 +2685,7 @@ msgstr "" "uygun şekilde ``__new__`` veya ``__init__`` olarak adlandırmanız " "yeterlidir. Notlar:" -#: howto/clinic.rst:1497 +#: howto/clinic.rst:1502 msgid "" "The function name generated for ``__new__`` doesn't end in ``__new__`` like " "it would by default. It's just the name of the class, converted into a " @@ -2684,20 +2695,20 @@ msgstr "" "``__new__`` ile bitmez. Bu sadece geçerli bir C tanımlayıcısına " "dönüştürülmüş sınıf adıdır." -#: howto/clinic.rst:1501 +#: howto/clinic.rst:1506 #, fuzzy msgid "No :c:type:`PyMethodDef` ``#define`` is generated for these functions." msgstr "Bu fonksiyonlar için ``PyMethodDef`` ``#define`` oluşturulmaz." -#: howto/clinic.rst:1503 +#: howto/clinic.rst:1508 msgid "``__init__`` functions return ``int``, not ``PyObject *``." msgstr "``__init__`` fonksiyonları ``PyObject *`` değil ``int`` döndürür." -#: howto/clinic.rst:1505 +#: howto/clinic.rst:1510 msgid "Use the docstring as the class docstring." msgstr "Doküman dizesini sınıf doküman dizesi olarak kullanın." -#: howto/clinic.rst:1507 +#: howto/clinic.rst:1512 msgid "" "Although ``__new__`` and ``__init__`` functions must always accept both the " "``args`` and ``kwargs`` objects, when converting you may specify any " @@ -2712,12 +2723,12 @@ msgstr "" "oluşturulan ayrıştırma işlevi herhangi bir anahtar sözcük alırsa bir istisna " "atacaktır)." -#: howto/clinic.rst:1515 +#: howto/clinic.rst:1520 #, fuzzy msgid "How to change and redirect Clinic's output" msgstr "Kliniğin çıktısını değiştirme ve yönlendirme" -#: howto/clinic.rst:1517 +#: howto/clinic.rst:1522 msgid "" "It can be inconvenient to have Clinic's output interspersed with your " "conventional hand-edited C code. Luckily, Clinic is configurable: you can " @@ -2731,7 +2742,7 @@ msgstr "" "tamponlayabilir veya çıktısını ayrı bir dosyaya yazabilirsiniz. Ayrıca " "Kliniğin ürettiği çıktının her satırına bir önek veya sonek ekleyebilirsiniz." -#: howto/clinic.rst:1523 +#: howto/clinic.rst:1528 msgid "" "While changing Clinic's output in this manner can be a boon to readability, " "it may result in Clinic code using types before they are defined, or your " @@ -2752,15 +2763,15 @@ msgstr "" "kullanımdan önce tanımlama sorunlarını düzeltmek için kodunuzu yeniden " "düzenlemenizi asla gerektirmez)." -#: howto/clinic.rst:1532 +#: howto/clinic.rst:1537 msgid "Let's start with defining some terminology:" msgstr "Bazı terminolojileri tanımlamakla başlayalım:" -#: howto/clinic.rst:1559 +#: howto/clinic.rst:1564 msgid "*field*" msgstr "*field*" -#: howto/clinic.rst:1535 +#: howto/clinic.rst:1540 #, fuzzy msgid "" "A field, in this context, is a subsection of Clinic's output. For example, " @@ -2773,7 +2784,7 @@ msgstr "" "adlandırılan bir alandır. Kliniğin fonksiyon tanımı başına çıktı " "verebileceği yedi farklı alan vardır:" -#: howto/clinic.rst:1550 +#: howto/clinic.rst:1555 msgid "" "All the names are of the form ``\"_\"``, where ``\"\"`` is the " "semantic object represented (the parsing function, the impl function, the " @@ -2794,11 +2805,11 @@ msgstr "" "tanımını temsil eder. (``\"methoddef\"`` özeldir, ``\"_define\"`` ile biten " "tek metottur, #define önişlemcisi olduğunu gösterir.)" -#: howto/clinic.rst:1593 +#: howto/clinic.rst:1598 msgid "*destination*" msgstr "*destination*" -#: howto/clinic.rst:1562 +#: howto/clinic.rst:1567 msgid "" "A destination is a place Clinic can write output to. There are five built-" "in destinations:" @@ -2806,21 +2817,21 @@ msgstr "" "Hedef, Kliniğin çıktı yazabileceği bir yerdir. Beş adet yerleşik hedef " "vardır:" -#: howto/clinic.rst:1642 howto/clinic.rst:1720 +#: howto/clinic.rst:1647 howto/clinic.rst:1725 msgid "``block``" msgstr "``block````block``" -#: howto/clinic.rst:1566 +#: howto/clinic.rst:1571 msgid "" "The default destination: printed in the output section of the current Clinic " "block." msgstr "Varsayılan hedef: geçerli Klinik bloğunun çıktı bölümünde yazdırılır." -#: howto/clinic.rst:1669 howto/clinic.rst:1723 +#: howto/clinic.rst:1674 howto/clinic.rst:1728 msgid "``buffer``" msgstr "``buffer``" -#: howto/clinic.rst:1570 +#: howto/clinic.rst:1575 msgid "" "A text buffer where you can save text for later. Text sent here is appended " "to the end of any existing text. It's an error to have any text left in the " @@ -2830,11 +2841,11 @@ msgstr "" "Buraya gönderilen metin, mevcut metnin sonuna eklenir. Klinik bir dosyayı " "işlemeyi bitirdiğinde tamponda herhangi bir metin kalması bir hatadır." -#: howto/clinic.rst:1655 howto/clinic.rst:1749 +#: howto/clinic.rst:1660 howto/clinic.rst:1754 msgid "``file``" msgstr "``file``" -#: howto/clinic.rst:1576 +#: howto/clinic.rst:1581 #, fuzzy msgid "" "A separate \"clinic file\" that will be created automatically by Clinic. The " @@ -2849,7 +2860,7 @@ msgstr "" "path.splitext()`` çıktısına atanmıştır. (Örnek: ``_pickle.c`` için " "``dosya`` hedefi ``_pickle.clinic.c`` olarak yazılacaktır)." -#: howto/clinic.rst:1583 +#: howto/clinic.rst:1588 msgid "" "**Important: When using a** ``file`` **destination, you** *must check in* " "**the generated file!**" @@ -2857,11 +2868,11 @@ msgstr "" "**Önemli: Bir ** ``dosya`` **hedefi kullanırken, **oluşturulan dosyayı** " "**mutlaka** kontrol etmelisiniz!" -#: howto/clinic.rst:1682 howto/clinic.rst:1753 +#: howto/clinic.rst:1687 howto/clinic.rst:1758 msgid "``two-pass``" msgstr "``two-pass``" -#: howto/clinic.rst:1587 +#: howto/clinic.rst:1592 msgid "" "A buffer like ``buffer``. However, a two-pass buffer can only be dumped " "once, and it prints out all text sent to it during all processing, even from " @@ -2872,25 +2883,25 @@ msgstr "" "Klinik bloklardan bile tüm işlem sırasında kendisine gönderilen tüm metni " "yazdırır." -#: howto/clinic.rst:1716 +#: howto/clinic.rst:1721 msgid "``suppress``" msgstr "``suppress``" -#: howto/clinic.rst:1592 +#: howto/clinic.rst:1597 msgid "The text is suppressed—thrown away." msgstr "Metin bastırılmış, bir kenara atılmıştır." -#: howto/clinic.rst:1595 +#: howto/clinic.rst:1600 msgid "Clinic defines five new directives that let you reconfigure its output." msgstr "" "Klinik, çıktısını yeniden yapılandırmanıza olanak tanıyan beş yeni yönerge " "tanımlar." -#: howto/clinic.rst:1597 +#: howto/clinic.rst:1602 msgid "The first new directive is ``dump``:" msgstr "İlk yeni yönerge ``dump``:" -#: howto/clinic.rst:1603 +#: howto/clinic.rst:1608 msgid "" "This dumps the current contents of the named destination into the output of " "the current block, and empties it. This only works with ``buffer`` and " @@ -2899,14 +2910,14 @@ msgstr "" "Bu, adlandırılmış hedefin mevcut içeriğini geçerli bloğun çıktısına döker ve " "boşaltır. Bu sadece ``buffer`` ve ``two-pass`` hedefleri ile çalışır." -#: howto/clinic.rst:1607 +#: howto/clinic.rst:1612 msgid "" "The second new directive is ``output``. The most basic form of ``output`` " "is like this:" msgstr "" "İkinci yeni yönerge ise ``output``. En temel ``output`` biçimi şöyledir:" -#: howto/clinic.rst:1614 +#: howto/clinic.rst:1619 msgid "" "This tells Clinic to output *field* to *destination*. ``output`` also " "supports a special meta-destination, called ``everything``, which tells " @@ -2916,11 +2927,11 @@ msgstr "" "``everything`` adı verilen ve Kliniğe *tüm* alanların çıktısını bu *hedefe* " "vermesini söyleyen özel bir meta hedefi de destekler." -#: howto/clinic.rst:1618 +#: howto/clinic.rst:1623 msgid "``output`` has a number of other functions:" msgstr "``output`` bir dizi başka işleve sahiptir:" -#: howto/clinic.rst:1627 +#: howto/clinic.rst:1632 msgid "" "``output push`` and ``output pop`` allow you to push and pop configurations " "on an internal configuration stack, so that you can temporarily modify the " @@ -2935,7 +2946,7 @@ msgstr "" "kaydetmek için değişikliğinizden önce push yapmanız, ardından önceki " "yapılandırmayı geri yüklemek istediğinizde pop yapmanız yeterlidir." -#: howto/clinic.rst:1634 +#: howto/clinic.rst:1639 msgid "" "``output preset`` sets Clinic's output to one of several built-in preset " "configurations, as follows:" @@ -2943,7 +2954,7 @@ msgstr "" "``output preset`` Kliniğin çıkışını aşağıdaki gibi çeşitli yerleşik ön ayar " "yapılandırmalarından birine ayarlar:" -#: howto/clinic.rst:1638 +#: howto/clinic.rst:1643 msgid "" "Clinic's original starting configuration. Writes everything immediately " "after the input block." @@ -2951,7 +2962,7 @@ msgstr "" "Kliniğin orijinal başlangıç yapılandırması. Giriş bloğundan hemen sonra her " "şeyi yazar." -#: howto/clinic.rst:1641 +#: howto/clinic.rst:1646 msgid "" "Suppress the ``parser_prototype`` and ``docstring_prototype``, write " "everything else to ``block``." @@ -2959,7 +2970,7 @@ msgstr "" "Suppress the ``parser_prototype`` and ``docstring_prototype``, write " "everything else to ``block``." -#: howto/clinic.rst:1645 +#: howto/clinic.rst:1650 msgid "" "Designed to write everything to the \"clinic file\" that it can. You then " "``#include`` this file near the top of your file. You may need to rearrange " @@ -2972,7 +2983,7 @@ msgstr "" "genellikle bu sadece çeşitli ``typedef`` ve ``PyTypeObject`` tanımları için " "ileri bildirimler oluşturmak anlamına gelir." -#: howto/clinic.rst:1651 +#: howto/clinic.rst:1656 msgid "" "Suppress the ``parser_prototype`` and ``docstring_prototype``, write the " "``impl_definition`` to ``block``, and write everything else to ``file``." @@ -2981,12 +2992,12 @@ msgstr "" "``impl_definition`` öğesini ``block`` öğesine yazın ve diğer her şeyi " "``file`` öğesine yazın." -#: howto/clinic.rst:1655 +#: howto/clinic.rst:1660 msgid "The default filename is ``\"{dirname}/clinic/{basename}.h\"``." msgstr "" "Varsayılan dosya adı ``\"{dirname}/clinic/{basename}.h\"`` şeklindedir." -#: howto/clinic.rst:1658 +#: howto/clinic.rst:1663 msgid "" "Save up most of the output from Clinic, to be written into your file near " "the end. For Python files implementing modules or builtin types, it's " @@ -3002,7 +3013,7 @@ msgstr "" "ortasında tanımlanmış statik ``PyMethodDef`` dizileri varsa, ``buffer`` " "kullanmak ``file`` kullanmaktan daha fazla düzenleme gerektirebilir." -#: howto/clinic.rst:1667 +#: howto/clinic.rst:1672 msgid "" "Suppress the ``parser_prototype``, ``impl_prototype``, and " "``docstring_prototype``, write the ``impl_definition`` to ``block``, and " @@ -3012,7 +3023,7 @@ msgstr "" "öğelerini bastırın, ``impl_definition`` öğesini ``block`` öğesine yazın ve " "diğer her şeyi ``file`` öğesine yazın." -#: howto/clinic.rst:1672 +#: howto/clinic.rst:1677 msgid "" "Similar to the ``buffer`` preset, but writes forward declarations to the " "``two-pass`` buffer, and definitions to the ``buffer``. This is similar to " @@ -3026,7 +3037,7 @@ msgstr "" "üst kısmına yakın ``two-pass`` tamponunu boşaltın ve ``buffer`` ön ayarını " "kullanırken yaptığınız gibi sonuna yakın ``buffer``'ı boşaltın." -#: howto/clinic.rst:1679 +#: howto/clinic.rst:1684 msgid "" "Suppresses the ``impl_prototype``, write the ``impl_definition`` to " "``block``, write ``docstring_prototype``, ``methoddef_define``, and " @@ -3036,11 +3047,11 @@ msgstr "" "``docstring_prototype``, ``methoddef_define`` ve ``parser_prototype``'ı " "``two-pass``'a yazar, diğer her şeyi ``buffer``'a yazar." -#: howto/clinic.rst:1693 +#: howto/clinic.rst:1698 msgid "``partial-buffer``" msgstr "``partial-buffer``" -#: howto/clinic.rst:1685 +#: howto/clinic.rst:1690 msgid "" "Similar to the ``buffer`` preset, but writes more things to ``block``, only " "writing the really big chunks of generated code to ``buffer``. This avoids " @@ -3056,7 +3067,7 @@ msgstr "" "Tıpkı ``buffer`` ön ayarını kullanırken yaptığınız gibi, ``buffer``'ı sonuna " "doğru boşaltın." -#: howto/clinic.rst:1692 +#: howto/clinic.rst:1697 msgid "" "Suppresses the ``impl_prototype``, write the ``docstring_definition`` and " "``parser_definition`` to ``buffer``, write everything else to ``block``." @@ -3064,45 +3075,45 @@ msgstr "" "``impl_prototype`` ı bastırır, ``docstring_definition`` ve " "``parser_definition`` ı ``buffer`` a yazar, diğer her şeyi ``block`` a yazar." -#: howto/clinic.rst:1695 +#: howto/clinic.rst:1700 msgid "The third new directive is ``destination``:" msgstr "Üçüncü yeni yönerge ``destination`` dır:" -#: howto/clinic.rst:1701 +#: howto/clinic.rst:1706 msgid "This performs an operation on the destination named ``name``." msgstr "Bu, ``name`` adlı hedef üzerinde bir işlem gerçekleştirir." -#: howto/clinic.rst:1703 +#: howto/clinic.rst:1708 msgid "There are two defined subcommands: ``new`` and ``clear``." msgstr "Tanımlanmış iki alt komut vardır: ``new`` ve ``clear``." -#: howto/clinic.rst:1705 +#: howto/clinic.rst:1710 msgid "The ``new`` subcommand works like this:" msgstr "``new`` alt komutu şu şekilde çalışır:" -#: howto/clinic.rst:1711 +#: howto/clinic.rst:1716 msgid "" "This creates a new destination with name ```` and type ````." msgstr "Bu, adı ```` ve türü ```` olan yeni bir hedef oluşturur." -#: howto/clinic.rst:1713 +#: howto/clinic.rst:1718 msgid "There are five destination types:" msgstr "Beş hedef türü vardır:" -#: howto/clinic.rst:1716 +#: howto/clinic.rst:1721 msgid "Throws the text away." msgstr "Metni atıyor." -#: howto/clinic.rst:1719 +#: howto/clinic.rst:1724 msgid "" "Writes the text to the current block. This is what Clinic originally did." msgstr "Metni geçerli bloğa yazar. Kliniğin başlangıçta yaptığı budur." -#: howto/clinic.rst:1723 +#: howto/clinic.rst:1728 msgid "A simple text buffer, like the \"buffer\" builtin destination above." msgstr "Yukarıdaki \"buffer\" yerleşik hedefi gibi basit bir metin tamponu." -#: howto/clinic.rst:1726 +#: howto/clinic.rst:1731 msgid "" "A text file. The file destination takes an extra argument, a template to " "use for building the filename, like so:" @@ -3110,11 +3121,11 @@ msgstr "" "Bir metin dosyası. Dosya hedefi, dosya adını oluşturmak için kullanılacak " "bir şablon olan ekstra bir argüman alır, aşağıdaki gibi:" -#: howto/clinic.rst:1729 +#: howto/clinic.rst:1734 msgid "destination new " msgstr "hedef yeni " -#: howto/clinic.rst:1731 +#: howto/clinic.rst:1736 msgid "" "The template can use three strings internally that will be replaced by bits " "of the filename:" @@ -3122,45 +3133,45 @@ msgstr "" "Şablon dahili olarak dosya adının bitleriyle değiştirilecek üç dizge " "kullanabilir:" -#: howto/clinic.rst:1734 +#: howto/clinic.rst:1739 msgid "{path}" msgstr "{path}" -#: howto/clinic.rst:1735 +#: howto/clinic.rst:1740 msgid "The full path to the file, including directory and full filename." msgstr "Dizin ve tam dosya adı dahil olmak üzere dosyanın tam yolu." -#: howto/clinic.rst:1736 +#: howto/clinic.rst:1741 msgid "{dirname}" msgstr "{dirname}" -#: howto/clinic.rst:1737 +#: howto/clinic.rst:1742 msgid "The name of the directory the file is in." msgstr "Dosyanın içinde bulunduğu dizinin adı." -#: howto/clinic.rst:1738 +#: howto/clinic.rst:1743 msgid "{basename}" msgstr "{basename}" -#: howto/clinic.rst:1739 +#: howto/clinic.rst:1744 msgid "Just the name of the file, not including the directory." msgstr "Sadece dosyanın adı, dizin dahil değil." -#: howto/clinic.rst:1741 +#: howto/clinic.rst:1746 msgid "{basename_root}" msgstr "{basename_root}" -#: howto/clinic.rst:1741 +#: howto/clinic.rst:1746 msgid "" "Basename with the extension clipped off (everything up to but not including " "the last '.')." msgstr "Uzantısı kırpılmış temel ad (son '.' dahil olmak üzere her şey)." -#: howto/clinic.rst:1745 +#: howto/clinic.rst:1750 msgid "{basename_extension}" msgstr "{basename_extension}" -#: howto/clinic.rst:1744 +#: howto/clinic.rst:1749 msgid "" "The last '.' and everything after it. If the basename does not contain a " "period, this will be the empty string." @@ -3168,7 +3179,7 @@ msgstr "" "Son '.' ve ondan sonraki her şey. Ana ad nokta içermiyorsa, bu boş bir dize " "olacaktır." -#: howto/clinic.rst:1747 +#: howto/clinic.rst:1752 msgid "" "If there are no periods in the filename, {basename} and {filename} are the " "same, and {extension} is empty. \"{basename}{extension}\" is always exactly " @@ -3178,15 +3189,15 @@ msgstr "" "boştur. \"{basename}{extension}\" her zaman \"{filename}\" ile tamamen " "aynıdır.\"" -#: howto/clinic.rst:1752 +#: howto/clinic.rst:1757 msgid "A two-pass buffer, like the \"two-pass\" builtin destination above." msgstr "Yukarıdaki \"iki geçişli\" yerleşik hedef gibi iki geçişli bir tampon." -#: howto/clinic.rst:1755 +#: howto/clinic.rst:1760 msgid "The ``clear`` subcommand works like this:" msgstr "``clear`` alt komutu şu şekilde çalışır:" -#: howto/clinic.rst:1761 +#: howto/clinic.rst:1766 msgid "" "It removes all the accumulated text up to this point in the destination. (I " "don't know what you'd need this for, but I thought maybe it'd be useful " @@ -3196,11 +3207,11 @@ msgstr "" "duyacağınızı bilmiyorum, ancak birileri deneme yaparken belki yararlı " "olabileceğini düşündüm)." -#: howto/clinic.rst:1765 +#: howto/clinic.rst:1770 msgid "The fourth new directive is ``set``:" msgstr "Dördüncü yeni yönerge ``set``'tir:" -#: howto/clinic.rst:1772 +#: howto/clinic.rst:1777 msgid "" "``set`` lets you set two internal variables in Clinic. ``line_prefix`` is a " "string that will be prepended to every line of Clinic's output; " @@ -3211,30 +3222,30 @@ msgstr "" "Kliniğin çıktısının her satırına eklenecek bir dizedir; ``line_suffix``, " "Kliniğin çıktısının her satırına eklenecek bir dizedir." -#: howto/clinic.rst:1776 +#: howto/clinic.rst:1781 msgid "Both of these support two format strings:" msgstr "Bunların her ikisi de iki biçim dizesini destekler:" -#: howto/clinic.rst:1779 +#: howto/clinic.rst:1784 msgid "``{block comment start}``" msgstr "``{block comment start}``" -#: howto/clinic.rst:1779 +#: howto/clinic.rst:1784 msgid "" "Turns into the string ``/*``, the start-comment text sequence for C files." msgstr "" "C dosyaları için başlangıç-yorum metin dizisi olan ``/*`` dizesine dönüşür." -#: howto/clinic.rst:1782 +#: howto/clinic.rst:1787 msgid "``{block comment end}``" msgstr "``{block comment end}``" -#: howto/clinic.rst:1782 +#: howto/clinic.rst:1787 msgid "" "Turns into the string ``*/``, the end-comment text sequence for C files." msgstr "C dosyaları için yorum sonu metin dizisi olan ``*/`` dizesine dönüşür." -#: howto/clinic.rst:1784 +#: howto/clinic.rst:1789 msgid "" "The final new directive is one you shouldn't need to use directly, called " "``preserve``:" @@ -3242,7 +3253,7 @@ msgstr "" "Son yeni yönerge doğrudan kullanmanız gerekmeyen bir yönerge olup " "``preserve`` olarak adlandırılmıştır:" -#: howto/clinic.rst:1791 +#: howto/clinic.rst:1796 msgid "" "This tells Clinic that the current contents of the output should be kept, " "unmodified. This is used internally by Clinic when dumping output into " @@ -3256,12 +3267,12 @@ msgstr "" "dosyanın üzerine yazılmadan önce elle değiştirilmediğinden emin olmak için " "Clinic'in mevcut sağlama toplamı işlevini kullanmasını sağlar." -#: howto/clinic.rst:1798 +#: howto/clinic.rst:1803 #, fuzzy msgid "How to use the ``#ifdef`` trick" msgstr "#ifdef hilesi" -#: howto/clinic.rst:1800 +#: howto/clinic.rst:1805 msgid "" "If you're converting a function that isn't available on all platforms, " "there's a trick you can use to make life a little easier. The existing code " @@ -3271,13 +3282,13 @@ msgstr "" "daha kolaylaştırmak için kullanabileceğiniz bir numara var. Mevcut kod " "muhtemelen şuna benzer::" -#: howto/clinic.rst:1811 +#: howto/clinic.rst:1816 msgid "" "And then in the ``PyMethodDef`` structure at the bottom the existing code " "will have:" msgstr "Ve sonra alttaki ``PyMethodDef`` yapısında mevcut kod olacaktır:" -#: howto/clinic.rst:1820 +#: howto/clinic.rst:1825 msgid "" "In this scenario, you should enclose the body of your impl function inside " "the ``#ifdef``, like so::" @@ -3285,7 +3296,7 @@ msgstr "" "Bu senaryoda, impl fonksiyonunuzun gövdesini aşağıdaki gibi ``#ifdef`` içine " "almalısınız::" -#: howto/clinic.rst:1834 +#: howto/clinic.rst:1839 #, fuzzy msgid "" "Then, remove those three lines from the :c:type:`PyMethodDef` structure, " @@ -3294,7 +3305,7 @@ msgstr "" "Ardından, bu üç satırı ``PyMethodDef`` yapısından kaldırın ve bunların " "yerine Argument Clinic makrosunu oluşturun:" -#: howto/clinic.rst:1841 +#: howto/clinic.rst:1846 msgid "" "(You can find the real name for this macro inside the generated code. Or you " "can calculate it yourself: it's the name of your function as defined on the " @@ -3306,7 +3317,7 @@ msgstr "" "fonksiyonunuzun adıdır, ancak noktalar alt çizgi olarak değiştirilir, büyük " "harfle yazılır ve sonuna ``\"_METHODDEF\"`` eklenir)" -#: howto/clinic.rst:1846 +#: howto/clinic.rst:1851 msgid "" "Perhaps you're wondering: what if ``HAVE_FUNCTIONNAME`` isn't defined? The " "``MODULE_FUNCTIONNAME_METHODDEF`` macro won't be defined either!" @@ -3314,7 +3325,7 @@ msgstr "" "Belki de merak ediyorsunuzdur: ``HAVE_FUNCTIONNAME`` tanımlanmamışsa ne " "olur? ''MODULE_FUNCTIONNAME_METHODDEF'' makrosu da tanımlanmayacaktır!" -#: howto/clinic.rst:1849 +#: howto/clinic.rst:1854 msgid "" "Here's where Argument Clinic gets very clever. It actually detects that the " "Argument Clinic block might be deactivated by the ``#ifdef``. When that " @@ -3324,7 +3335,7 @@ msgstr "" "bloğunun ``#ifdef`` tarafından devre dışı bırakılabileceğini algılar. Bu " "olduğunda, şuna benzeyen küçük bir ekstra kod oluşturur::" -#: howto/clinic.rst:1857 +#: howto/clinic.rst:1862 msgid "" "That means the macro always works. If the function is defined, this turns " "into the correct structure, including the trailing comma. If the function " @@ -3334,7 +3345,7 @@ msgstr "" "sondaki virgül de dahil olmak üzere doğru yapıya dönüşür. İşlev " "tanımlanmamışsa, bu hiçbir şeye dönüşmez." -#: howto/clinic.rst:1861 +#: howto/clinic.rst:1866 msgid "" "However, this causes one ticklish problem: where should Argument Clinic put " "this extra code when using the \"block\" output preset? It can't go in the " @@ -3346,7 +3357,7 @@ msgstr "" "bloğuna koyulamaz, çünkü ``#ifdef`` tarafından devre dışı bırakılabilir. " "(Bütün mesele bu!)" -#: howto/clinic.rst:1865 +#: howto/clinic.rst:1870 msgid "" "In this situation, Argument Clinic writes the extra code to the \"buffer\" " "destination. This may mean that you get a complaint from Argument Clinic:" @@ -3354,7 +3365,7 @@ msgstr "" "Bu durumda, Argüman Kliniği ekstra kodu \"tampon\" hedefine yazar. Bu, " "Argüman Kliniği'nden bir şikayet almanız anlamına gelebilir:" -#: howto/clinic.rst:1873 +#: howto/clinic.rst:1878 #, fuzzy msgid "" "When this happens, just open your file, find the ``dump buffer`` block that " @@ -3365,12 +3376,12 @@ msgstr "" "buffer`` bloğunu bulun (en altta olacaktır), ardından bu makronun " "kullanıldığı ``PyMethodDef`` yapısının üzerine taşıyın." -#: howto/clinic.rst:1879 +#: howto/clinic.rst:1884 #, fuzzy msgid "How to use Argument Clinic in Python files" msgstr "Python dosyalarında Argüman Kliniği kullanma" -#: howto/clinic.rst:1881 +#: howto/clinic.rst:1886 msgid "" "It's actually possible to use Argument Clinic to preprocess Python files. " "There's no point to using Argument Clinic blocks, of course, as the output " @@ -3383,7 +3394,7 @@ msgstr "" "Python bloklarını çalıştırmak için Argüman Kliniği'ni kullanmak Python'u bir " "Python önişlemcisi olarak kullanmanızı sağlar!" -#: howto/clinic.rst:1886 +#: howto/clinic.rst:1891 msgid "" "Since Python comments are different from C comments, Argument Clinic blocks " "embedded in Python files look slightly different. They look like this:" @@ -3391,26 +3402,28 @@ msgstr "" "Python yorumları C yorumlarından farklı olduğu için, Python dosyalarına " "gömülü Argüman Kliniği blokları biraz farklı görünür. Şöyle görünürler:" -#: howto/clinic.rst:1901 -msgid "How to override the generated signature" -msgstr "" +#~ msgid "``Py_UNICODE``" +#~ msgstr "``Py_UNICODE``" -#: howto/clinic.rst:1903 -msgid "" -"You can use the ``@text_signature`` directive to override the default " -"generated signature in the docstring. This can be useful for complex " -"signatures that Argument Clinic cannot handle. The ``@text_signature`` " -"directive takes one argument: the custom signature as a string. The provided " -"signature is copied verbatim to the generated docstring." -msgstr "" +#~ msgid "``Py_UNICODE(zeroes=True)``" +#~ msgstr "``Py_UNICODE(zeroes=True)``" -#: howto/clinic.rst:1910 -msgid "Example from :source:`Objects/codeobject.c`::" -msgstr "" +#~ msgid "``Py_UNICODE(accept={str, NoneType})``" +#~ msgstr "``Py_UNICODE(accept={str, NoneType})``" -#: howto/clinic.rst:1923 -msgid "The generated docstring ends up looking like this:" -msgstr "" +#~ msgid "``Py_UNICODE(accept={str, NoneType}, zeroes=True)``" +#~ msgstr "``Py_UNICODE(accept={str, NoneType}, zeroes=True)``" + +#~ msgid "" +#~ "(There's also an experimental ``NoneType`` converter, which lets you " +#~ "return ``Py_None`` on success or ``NULL`` on failure, without having to " +#~ "increment the reference count on ``Py_None``. I'm not sure it adds " +#~ "enough clarity to be worth using.)" +#~ msgstr "" +#~ "(Ayrıca, ``Py_None`` referans sayısını artırmak zorunda kalmadan, başarı " +#~ "durumunda ``Py_None`` veya başarısızlık durumunda ``NULL`` döndürmenizi " +#~ "sağlayan deneysel bir ``NoneType`` dönüştürücü de vardır. Kullanmaya " +#~ "değecek kadar netlik kattığından emin değilim.)" #~ msgid "" #~ "Argument Clinic is a preprocessor for CPython C files. Its purpose is to " diff --git a/howto/enum.po b/howto/enum.po index 47fceb1ca..51e5341a5 100644 --- a/howto/enum.po +++ b/howto/enum.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -49,37 +49,39 @@ msgstr "" #: howto/enum.rst:39 msgid "" -"Because Enums are used to represent constants we recommend using UPPER_CASE " -"names for members, and will be using that style in our examples." +"Because Enums are used to represent constants, and to help avoid issues with " +"name clashes between mixin-class methods/attributes and enum names, we " +"strongly recommend using UPPER_CASE names for members, and will be using " +"that style in our examples." msgstr "" -#: howto/enum.rst:42 +#: howto/enum.rst:44 msgid "" "Depending on the nature of the enum a member's value may or may not be " "important, but either way that value can be used to get the corresponding " "member::" msgstr "" -#: howto/enum.rst:49 +#: howto/enum.rst:51 msgid "" "As you can see, the ``repr()`` of a member shows the enum name, the member " "name, and the value. The ``str()`` of a member shows only the enum name and " "member name::" msgstr "" -#: howto/enum.rst:56 +#: howto/enum.rst:58 msgid "The *type* of an enumeration member is the enum it belongs to::" msgstr "" -#: howto/enum.rst:63 +#: howto/enum.rst:65 msgid "Enum members have an attribute that contains just their :attr:`name`::" msgstr "" -#: howto/enum.rst:68 +#: howto/enum.rst:70 msgid "Likewise, they have an attribute for their :attr:`value`::" msgstr "" -#: howto/enum.rst:74 +#: howto/enum.rst:76 msgid "" "Unlike many languages that treat enumerations solely as name/value pairs, " "Python Enums can have behavior added. For example, :class:`datetime.date` " @@ -90,21 +92,21 @@ msgid "" "instance and return the matching enum member::" msgstr "" -#: howto/enum.rst:86 +#: howto/enum.rst:88 msgid "The complete :class:`Weekday` enum now looks like this::" msgstr "" -#: howto/enum.rst:101 +#: howto/enum.rst:103 msgid "Now we can find out what today is! Observe::" msgstr "" -#: howto/enum.rst:107 +#: howto/enum.rst:109 msgid "" "Of course, if you're reading this on some other day, you'll see that day " "instead." msgstr "" -#: howto/enum.rst:109 +#: howto/enum.rst:111 msgid "" "This :class:`Weekday` enum is great if our variable only needs one day, but " "what if we need several? Maybe we're writing a function to plot chores " @@ -112,70 +114,70 @@ msgid "" "different type of :class:`Enum`::" msgstr "" -#: howto/enum.rst:124 +#: howto/enum.rst:126 msgid "" "We've changed two things: we're inherited from :class:`Flag`, and the values " "are all powers of 2." msgstr "" -#: howto/enum.rst:127 +#: howto/enum.rst:129 msgid "" "Just like the original :class:`Weekday` enum above, we can have a single " "selection::" msgstr "" -#: howto/enum.rst:133 +#: howto/enum.rst:135 msgid "" "But :class:`Flag` also allows us to combine several members into a single " "variable::" msgstr "" -#: howto/enum.rst:140 +#: howto/enum.rst:142 msgid "You can even iterate over a :class:`Flag` variable::" msgstr "" -#: howto/enum.rst:147 +#: howto/enum.rst:149 msgid "Okay, let's get some chores set up::" msgstr "" -#: howto/enum.rst:155 +#: howto/enum.rst:157 msgid "And a function to display the chores for a given day::" msgstr "" -#: howto/enum.rst:164 +#: howto/enum.rst:167 msgid "" "In cases where the actual values of the members do not matter, you can save " "yourself some work and use :func:`auto()` for the values::" msgstr "" -#: howto/enum.rst:183 +#: howto/enum.rst:186 msgid "Programmatic access to enumeration members and their attributes" msgstr "" -#: howto/enum.rst:185 +#: howto/enum.rst:188 msgid "" "Sometimes it's useful to access members in enumerations programmatically (i." "e. situations where ``Color.RED`` won't do because the exact color is not " "known at program-writing time). ``Enum`` allows such access::" msgstr "" -#: howto/enum.rst:194 +#: howto/enum.rst:197 msgid "If you want to access enum members by *name*, use item access::" msgstr "" -#: howto/enum.rst:201 +#: howto/enum.rst:204 msgid "If you have an enum member and need its :attr:`name` or :attr:`value`::" msgstr "" -#: howto/enum.rst:211 +#: howto/enum.rst:214 msgid "Duplicating enum members and values" msgstr "" -#: howto/enum.rst:213 +#: howto/enum.rst:216 msgid "Having two enum members with the same name is invalid::" msgstr "" -#: howto/enum.rst:223 +#: howto/enum.rst:226 msgid "" "However, an enum member can have other names associated with it. Given two " "entries ``A`` and ``B`` with the same value (and ``A`` defined first), ``B`` " @@ -184,112 +186,112 @@ msgid "" "member ``A``. By-name lookup of ``B`` will also return the member ``A``::" msgstr "" -#: howto/enum.rst:244 +#: howto/enum.rst:247 msgid "" "Attempting to create a member with the same name as an already defined " "attribute (another member, a method, etc.) or attempting to create an " "attribute with the same name as a member is not allowed." msgstr "" -#: howto/enum.rst:250 +#: howto/enum.rst:253 msgid "Ensuring unique enumeration values" msgstr "" -#: howto/enum.rst:252 +#: howto/enum.rst:255 msgid "" "By default, enumerations allow multiple names as aliases for the same value. " "When this behavior isn't desired, you can use the :func:`unique` decorator::" msgstr "" -#: howto/enum.rst:269 +#: howto/enum.rst:272 msgid "Using automatic values" msgstr "" -#: howto/enum.rst:271 +#: howto/enum.rst:274 msgid "If the exact value is unimportant you can use :class:`auto`::" msgstr "" -#: howto/enum.rst:282 +#: howto/enum.rst:285 msgid "" "The values are chosen by :func:`_generate_next_value_`, which can be " "overridden::" msgstr "" -#: howto/enum.rst:300 +#: howto/enum.rst:304 msgid "" "The :meth:`_generate_next_value_` method must be defined before any members." msgstr "" -#: howto/enum.rst:303 +#: howto/enum.rst:307 msgid "Iteration" msgstr "" -#: howto/enum.rst:305 +#: howto/enum.rst:309 msgid "Iterating over the members of an enum does not provide the aliases::" msgstr "" -#: howto/enum.rst:312 +#: howto/enum.rst:316 msgid "" "Note that the aliases ``Shape.ALIAS_FOR_SQUARE`` and ``Weekday.WEEKEND`` " "aren't shown." msgstr "" -#: howto/enum.rst:314 +#: howto/enum.rst:318 msgid "" "The special attribute ``__members__`` is a read-only ordered mapping of " "names to members. It includes all names defined in the enumeration, " "including the aliases::" msgstr "" -#: howto/enum.rst:326 +#: howto/enum.rst:330 msgid "" "The ``__members__`` attribute can be used for detailed programmatic access " "to the enumeration members. For example, finding all the aliases::" msgstr "" -#: howto/enum.rst:334 +#: howto/enum.rst:338 msgid "" "Aliases for flags include values with multiple flags set, such as ``3``, and " "no flags set, i.e. ``0``." msgstr "" -#: howto/enum.rst:339 +#: howto/enum.rst:343 msgid "Comparisons" msgstr "" -#: howto/enum.rst:341 +#: howto/enum.rst:345 msgid "Enumeration members are compared by identity::" msgstr "" -#: howto/enum.rst:350 +#: howto/enum.rst:354 msgid "" "Ordered comparisons between enumeration values are *not* supported. Enum " "members are not integers (but see `IntEnum`_ below)::" msgstr "" -#: howto/enum.rst:358 +#: howto/enum.rst:362 msgid "Equality comparisons are defined though::" msgstr "" -#: howto/enum.rst:367 +#: howto/enum.rst:371 msgid "" "Comparisons against non-enumeration values will always compare not equal " "(again, :class:`IntEnum` was explicitly designed to behave differently, see " "below)::" msgstr "" -#: howto/enum.rst:376 +#: howto/enum.rst:380 msgid "" "It is possible to reload modules -- if a reloaded module contains enums, " "they will be recreated, and the new members may not compare identical/equal " "to the original members." msgstr "" -#: howto/enum.rst:381 +#: howto/enum.rst:385 msgid "Allowed members and attributes of enumerations" msgstr "" -#: howto/enum.rst:383 +#: howto/enum.rst:387 msgid "" "Most of the examples above use integers for enumeration values. Using " "integers is short and handy (and provided by default by the `Functional " @@ -298,17 +300,17 @@ msgid "" "*is* important, enumerations can have arbitrary values." msgstr "" -#: howto/enum.rst:389 +#: howto/enum.rst:393 msgid "" "Enumerations are Python classes, and can have methods and special methods as " "usual. If we have this enumeration::" msgstr "" -#: howto/enum.rst:409 +#: howto/enum.rst:413 msgid "Then::" msgstr "" -#: howto/enum.rst:418 +#: howto/enum.rst:422 msgid "" "The rules for what is allowed are as follows: names that start and end with " "a single underscore are reserved by enum and cannot be used; all other " @@ -318,14 +320,14 @@ msgid "" "names listed in :attr:`_ignore_`." msgstr "" -#: howto/enum.rst:425 +#: howto/enum.rst:429 msgid "" "Note: if your enumeration defines :meth:`__new__` and/or :meth:`__init__`, " "any value(s) given to the enum member will be passed into those methods. See " "`Planet`_ for an example." msgstr "" -#: howto/enum.rst:431 +#: howto/enum.rst:435 msgid "" "The :meth:`__new__` method, if defined, is used during creation of the Enum " "members; it is then replaced by Enum's :meth:`__new__` which is used after " @@ -333,28 +335,28 @@ msgid "" "more details." msgstr "" -#: howto/enum.rst:438 +#: howto/enum.rst:442 msgid "Restricted Enum subclassing" msgstr "" -#: howto/enum.rst:440 +#: howto/enum.rst:444 msgid "" "A new :class:`Enum` class must have one base enum class, up to one concrete " "data type, and as many :class:`object`-based mixin classes as needed. The " "order of these base classes is::" msgstr "" -#: howto/enum.rst:447 +#: howto/enum.rst:451 msgid "" "Also, subclassing an enumeration is allowed only if the enumeration does not " "define any members. So this is forbidden::" msgstr "" -#: howto/enum.rst:457 +#: howto/enum.rst:461 msgid "But this is allowed::" msgstr "" -#: howto/enum.rst:468 +#: howto/enum.rst:472 msgid "" "Allowing subclassing of enums that define members would lead to a violation " "of some important invariants of types and instances. On the other hand, it " @@ -362,56 +364,78 @@ msgid "" "enumerations. (See `OrderedEnum`_ for an example.)" msgstr "" -#: howto/enum.rst:475 +#: howto/enum.rst:481 +msgid "Dataclass support" +msgstr "" + +#: howto/enum.rst:483 +msgid "" +"When inheriting from a :class:`~dataclasses.dataclass`, the :meth:`~Enum." +"__repr__` omits the inherited class' name. For example::" +msgstr "" + +#: howto/enum.rst:499 +msgid "" +"Use the :func:`!dataclass` argument ``repr=False`` to use the standard :func:" +"`repr`." +msgstr "" + +#: howto/enum.rst:502 +msgid "" +"Only the dataclass fields are shown in the value area, not the dataclass' " +"name." +msgstr "" + +#: howto/enum.rst:508 msgid "Pickling" msgstr "" -#: howto/enum.rst:477 +#: howto/enum.rst:510 msgid "Enumerations can be pickled and unpickled::" msgstr "" -#: howto/enum.rst:484 +#: howto/enum.rst:517 msgid "" "The usual restrictions for pickling apply: picklable enums must be defined " "in the top level of a module, since unpickling requires them to be " "importable from that module." msgstr "" -#: howto/enum.rst:490 +#: howto/enum.rst:523 msgid "" "With pickle protocol version 4 it is possible to easily pickle enums nested " "in other classes." msgstr "" -#: howto/enum.rst:493 +#: howto/enum.rst:526 msgid "" "It is possible to modify how enum members are pickled/unpickled by defining :" "meth:`__reduce_ex__` in the enumeration class. The default method is by-" "value, but enums with complicated values may want to use by-name::" msgstr "" -#: howto/enum.rst:502 +#: howto/enum.rst:535 msgid "" "Using by-name for flags is not recommended, as unnamed aliases will not " "unpickle." msgstr "" -#: howto/enum.rst:507 +#: howto/enum.rst:540 msgid "Functional API" msgstr "" -#: howto/enum.rst:509 +#: howto/enum.rst:542 msgid "" "The :class:`Enum` class is callable, providing the following functional API::" msgstr "" -#: howto/enum.rst:519 +#: howto/enum.rst:552 msgid "" "The semantics of this API resemble :class:`~collections.namedtuple`. The " "first argument of the call to :class:`Enum` is the name of the enumeration." msgstr "" -#: howto/enum.rst:522 +#: howto/enum.rst:555 msgid "" "The second argument is the *source* of enumeration member names. It can be " "a whitespace-separated string of names, a sequence of names, a sequence of 2-" @@ -423,14 +447,14 @@ msgid "" "assignment to :class:`Animal` is equivalent to::" msgstr "" -#: howto/enum.rst:538 +#: howto/enum.rst:571 msgid "" "The reason for defaulting to ``1`` as the starting number and not ``0`` is " "that ``0`` is ``False`` in a boolean sense, but by default enum members all " "evaluate to ``True``." msgstr "" -#: howto/enum.rst:542 +#: howto/enum.rst:575 msgid "" "Pickling enums created with the functional API can be tricky as frame stack " "implementation details are used to try and figure out which module the " @@ -439,14 +463,14 @@ msgid "" "Jython). The solution is to specify the module name explicitly as follows::" msgstr "" -#: howto/enum.rst:552 +#: howto/enum.rst:585 msgid "" "If ``module`` is not supplied, and Enum cannot determine what it is, the new " "Enum members will not be unpicklable; to keep errors closer to the source, " "pickling will be disabled." msgstr "" -#: howto/enum.rst:556 +#: howto/enum.rst:589 msgid "" "The new pickle protocol 4 also, in some circumstances, relies on :attr:" "`~definition.__qualname__` being set to the location where pickle will be " @@ -454,7 +478,7 @@ msgid "" "class SomeData in the global scope::" msgstr "" -#: howto/enum.rst:563 +#: howto/enum.rst:596 msgid "The complete signature is::" msgstr "" @@ -462,7 +486,7 @@ msgstr "" msgid "value" msgstr "" -#: howto/enum.rst:575 +#: howto/enum.rst:608 msgid "What the new enum class will record as its name." msgstr "" @@ -470,21 +494,21 @@ msgstr "" msgid "names" msgstr "" -#: howto/enum.rst:577 +#: howto/enum.rst:610 msgid "" "The enum members. This can be a whitespace- or comma-separated string " "(values will start at 1 unless otherwise specified)::" msgstr "" -#: howto/enum.rst:582 +#: howto/enum.rst:615 msgid "or an iterator of names::" msgstr "" -#: howto/enum.rst:586 +#: howto/enum.rst:619 msgid "or an iterator of (name, value) pairs::" msgstr "" -#: howto/enum.rst:590 +#: howto/enum.rst:623 msgid "or a mapping::" msgstr "" @@ -492,7 +516,7 @@ msgstr "" msgid "module" msgstr "" -#: howto/enum.rst:594 +#: howto/enum.rst:627 msgid "name of module where new enum class can be found." msgstr "" @@ -500,7 +524,7 @@ msgstr "" msgid "qualname" msgstr "" -#: howto/enum.rst:596 +#: howto/enum.rst:629 msgid "where in module new enum class can be found." msgstr "" @@ -508,7 +532,7 @@ msgstr "" msgid "type" msgstr "" -#: howto/enum.rst:598 +#: howto/enum.rst:631 msgid "type to mix in to new enum class." msgstr "" @@ -516,23 +540,23 @@ msgstr "" msgid "start" msgstr "" -#: howto/enum.rst:600 +#: howto/enum.rst:633 msgid "number to start counting at if only names are passed in." msgstr "" -#: howto/enum.rst:602 +#: howto/enum.rst:635 msgid "The *start* parameter was added." msgstr "" -#: howto/enum.rst:607 +#: howto/enum.rst:640 msgid "Derived Enumerations" msgstr "" -#: howto/enum.rst:610 +#: howto/enum.rst:643 msgid "IntEnum" msgstr "" -#: howto/enum.rst:612 +#: howto/enum.rst:645 msgid "" "The first variation of :class:`Enum` that is provided is also a subclass of :" "class:`int`. Members of an :class:`IntEnum` can be compared to integers; by " @@ -540,22 +564,22 @@ msgid "" "each other::" msgstr "" -#: howto/enum.rst:633 +#: howto/enum.rst:666 msgid "" "However, they still can't be compared to standard :class:`Enum` " "enumerations::" msgstr "" -#: howto/enum.rst:646 +#: howto/enum.rst:679 msgid "" ":class:`IntEnum` values behave like integers in other ways you'd expect::" msgstr "" -#: howto/enum.rst:657 +#: howto/enum.rst:690 msgid "StrEnum" msgstr "" -#: howto/enum.rst:659 +#: howto/enum.rst:692 msgid "" "The second variation of :class:`Enum` that is provided is also a subclass " "of :class:`str`. Members of a :class:`StrEnum` can be compared to strings; " @@ -563,11 +587,11 @@ msgid "" "each other." msgstr "" -#: howto/enum.rst:668 +#: howto/enum.rst:701 msgid "IntFlag" msgstr "" -#: howto/enum.rst:670 +#: howto/enum.rst:703 msgid "" "The next variation of :class:`Enum` provided, :class:`IntFlag`, is also " "based on :class:`int`. The difference being :class:`IntFlag` members can be " @@ -577,60 +601,60 @@ msgid "" "is used." msgstr "" -#: howto/enum.rst:678 +#: howto/enum.rst:711 msgid "" "Any operation on an :class:`IntFlag` member besides the bit-wise operations " "will lose the :class:`IntFlag` membership." msgstr "" -#: howto/enum.rst:681 +#: howto/enum.rst:714 msgid "" "Bit-wise operations that result in invalid :class:`IntFlag` values will lose " "the :class:`IntFlag` membership. See :class:`FlagBoundary` for details." msgstr "" -#: howto/enum.rst:688 +#: howto/enum.rst:721 msgid "Sample :class:`IntFlag` class::" msgstr "" -#: howto/enum.rst:704 +#: howto/enum.rst:737 msgid "It is also possible to name the combinations::" msgstr "" -#: howto/enum.rst:720 +#: howto/enum.rst:754 msgid "" "Named combinations are considered aliases. Aliases do not show up during " "iteration, but can be returned from by-value lookups." msgstr "" -#: howto/enum.rst:725 +#: howto/enum.rst:759 msgid "" "Another important difference between :class:`IntFlag` and :class:`Enum` is " "that if no flags are set (the value is 0), its boolean evaluation is :data:" "`False`::" msgstr "" -#: howto/enum.rst:733 +#: howto/enum.rst:767 msgid "" "Because :class:`IntFlag` members are also subclasses of :class:`int` they " "can be combined with them (but may lose :class:`IntFlag` membership::" msgstr "" -#: howto/enum.rst:744 +#: howto/enum.rst:778 msgid "" "The negation operator, ``~``, always returns an :class:`IntFlag` member with " "a positive value::" msgstr "" -#: howto/enum.rst:750 +#: howto/enum.rst:784 msgid ":class:`IntFlag` members can also be iterated over::" msgstr "" -#: howto/enum.rst:759 +#: howto/enum.rst:793 msgid "Flag" msgstr "" -#: howto/enum.rst:761 +#: howto/enum.rst:795 msgid "" "The last variation is :class:`Flag`. Like :class:`IntFlag`, :class:`Flag` " "members can be combined using the bitwise operators (&, \\|, ^, ~). Unlike :" @@ -640,29 +664,29 @@ msgid "" "value and let :class:`Flag` select an appropriate value." msgstr "" -#: howto/enum.rst:770 +#: howto/enum.rst:804 msgid "" "Like :class:`IntFlag`, if a combination of :class:`Flag` members results in " "no flags being set, the boolean evaluation is :data:`False`::" msgstr "" -#: howto/enum.rst:784 +#: howto/enum.rst:818 msgid "" "Individual flags should have values that are powers of two (1, 2, 4, " "8, ...), while combinations of flags will not::" msgstr "" -#: howto/enum.rst:796 +#: howto/enum.rst:830 msgid "" "Giving a name to the \"no flags set\" condition does not change its boolean " "value::" msgstr "" -#: howto/enum.rst:810 +#: howto/enum.rst:844 msgid ":class:`Flag` members can also be iterated over::" msgstr "" -#: howto/enum.rst:820 +#: howto/enum.rst:854 msgid "" "For the majority of new code, :class:`Enum` and :class:`Flag` are strongly " "recommended, since :class:`IntEnum` and :class:`IntFlag` break some semantic " @@ -673,42 +697,42 @@ msgid "" "enumerations, or for interoperability with other systems." msgstr "" -#: howto/enum.rst:830 +#: howto/enum.rst:864 msgid "Others" msgstr "" -#: howto/enum.rst:832 +#: howto/enum.rst:866 msgid "" "While :class:`IntEnum` is part of the :mod:`enum` module, it would be very " "simple to implement independently::" msgstr "" -#: howto/enum.rst:838 +#: howto/enum.rst:872 msgid "" "This demonstrates how similar derived enumerations can be defined; for " "example a :class:`FloatEnum` that mixes in :class:`float` instead of :class:" "`int`." msgstr "" -#: howto/enum.rst:841 +#: howto/enum.rst:875 msgid "Some rules:" msgstr "" -#: howto/enum.rst:843 +#: howto/enum.rst:877 msgid "" "When subclassing :class:`Enum`, mix-in types must appear before :class:" "`Enum` itself in the sequence of bases, as in the :class:`IntEnum` example " "above." msgstr "" -#: howto/enum.rst:846 +#: howto/enum.rst:880 msgid "" "Mix-in types must be subclassable. For example, :class:`bool` and :class:" "`range` are not subclassable and will throw an error during Enum creation if " "used as the mix-in type." msgstr "" -#: howto/enum.rst:849 +#: howto/enum.rst:883 msgid "" "While :class:`Enum` can have members of any type, once you mix in an " "additional type, all the members must have values of that type, e.g. :class:" @@ -716,190 +740,194 @@ msgid "" "methods and don't specify another type." msgstr "" -#: howto/enum.rst:853 +#: howto/enum.rst:887 msgid "" "When another data type is mixed in, the :attr:`value` attribute is *not the " "same* as the enum member itself, although it is equivalent and will compare " "equal." msgstr "" -#: howto/enum.rst:856 -msgid "A ``data type`` is a mixin that defines :meth:`__new__`." +#: howto/enum.rst:890 +msgid "" +"A ``data type`` is a mixin that defines :meth:`__new__`, or a :class:" +"`~dataclasses.dataclass`" msgstr "" -#: howto/enum.rst:857 +#: howto/enum.rst:892 msgid "" "%-style formatting: ``%s`` and ``%r`` call the :class:`Enum` class's :meth:" "`__str__` and :meth:`__repr__` respectively; other codes (such as ``%i`` or " "``%h`` for IntEnum) treat the enum member as its mixed-in type." msgstr "" -#: howto/enum.rst:860 +#: howto/enum.rst:895 msgid "" ":ref:`Formatted string literals `, :meth:`str.format`, and :func:" "`format` will use the enum's :meth:`__str__` method." msgstr "" -#: howto/enum.rst:865 +#: howto/enum.rst:900 msgid "" "Because :class:`IntEnum`, :class:`IntFlag`, and :class:`StrEnum` are " "designed to be drop-in replacements for existing constants, their :meth:" "`__str__` method has been reset to their data types' :meth:`__str__` method." msgstr "" -#: howto/enum.rst:873 +#: howto/enum.rst:908 msgid "When to use :meth:`__new__` vs. :meth:`__init__`" msgstr "" -#: howto/enum.rst:875 +#: howto/enum.rst:910 msgid "" ":meth:`__new__` must be used whenever you want to customize the actual value " "of the :class:`Enum` member. Any other modifications may go in either :meth:" "`__new__` or :meth:`__init__`, with :meth:`__init__` being preferred." msgstr "" -#: howto/enum.rst:879 +#: howto/enum.rst:914 msgid "" "For example, if you want to pass several items to the constructor, but only " "want one of them to be the value::" msgstr "" -#: howto/enum.rst:906 +#: howto/enum.rst:941 msgid "" "*Do not* call ``super().__new__()``, as the lookup-only ``__new__`` is the " "one that is found; instead, use the data type directly." msgstr "" -#: howto/enum.rst:911 +#: howto/enum.rst:946 msgid "Finer Points" msgstr "" -#: howto/enum.rst:914 +#: howto/enum.rst:949 msgid "Supported ``__dunder__`` names" msgstr "" -#: howto/enum.rst:916 +#: howto/enum.rst:951 msgid "" ":attr:`__members__` is a read-only ordered mapping of ``member_name``:" "``member`` items. It is only available on the class." msgstr "" -#: howto/enum.rst:919 +#: howto/enum.rst:954 msgid "" ":meth:`__new__`, if specified, must create and return the enum members; it " "is also a very good idea to set the member's :attr:`_value_` appropriately. " "Once all the members are created it is no longer used." msgstr "" -#: howto/enum.rst:925 +#: howto/enum.rst:960 msgid "Supported ``_sunder_`` names" msgstr "" -#: howto/enum.rst:927 +#: howto/enum.rst:962 msgid "``_name_`` -- name of the member" msgstr "" -#: howto/enum.rst:928 +#: howto/enum.rst:963 msgid "" "``_value_`` -- value of the member; can be set / modified in ``__new__``" msgstr "" -#: howto/enum.rst:930 +#: howto/enum.rst:965 msgid "" "``_missing_`` -- a lookup function used when a value is not found; may be " "overridden" msgstr "" -#: howto/enum.rst:932 +#: howto/enum.rst:967 msgid "" "``_ignore_`` -- a list of names, either as a :class:`list` or a :class:" "`str`, that will not be transformed into members, and will be removed from " "the final class" msgstr "" -#: howto/enum.rst:935 +#: howto/enum.rst:970 msgid "" "``_order_`` -- used in Python 2/3 code to ensure member order is consistent " "(class attribute, removed during class creation)" msgstr "" -#: howto/enum.rst:937 +#: howto/enum.rst:972 msgid "" "``_generate_next_value_`` -- used by the `Functional API`_ and by :class:" "`auto` to get an appropriate value for an enum member; may be overridden" msgstr "" -#: howto/enum.rst:943 +#: howto/enum.rst:978 msgid "" "For standard :class:`Enum` classes the next value chosen is the last value " "seen incremented by one." msgstr "" -#: howto/enum.rst:946 +#: howto/enum.rst:981 msgid "" "For :class:`Flag` classes the next value chosen will be the next highest " "power-of-two, regardless of the last value seen." msgstr "" -#: howto/enum.rst:949 +#: howto/enum.rst:984 msgid "``_missing_``, ``_order_``, ``_generate_next_value_``" msgstr "" -#: howto/enum.rst:950 +#: howto/enum.rst:985 msgid "``_ignore_``" msgstr "" -#: howto/enum.rst:952 +#: howto/enum.rst:987 msgid "" "To help keep Python 2 / Python 3 code in sync an :attr:`_order_` attribute " "can be provided. It will be checked against the actual order of the " "enumeration and raise an error if the two do not match::" msgstr "" -#: howto/enum.rst:970 +#: howto/enum.rst:1005 msgid "" "In Python 2 code the :attr:`_order_` attribute is necessary as definition " "order is lost before it can be recorded." msgstr "" -#: howto/enum.rst:975 +#: howto/enum.rst:1010 msgid "_Private__names" msgstr "" -#: howto/enum.rst:977 +#: howto/enum.rst:1012 msgid "" ":ref:`Private names ` are not converted to enum " "members, but remain normal attributes." msgstr "" -#: howto/enum.rst:984 +#: howto/enum.rst:1019 msgid "``Enum`` member type" msgstr "" -#: howto/enum.rst:986 +#: howto/enum.rst:1021 msgid "" "Enum members are instances of their enum class, and are normally accessed as " "``EnumClass.member``. In certain situations, such as writing custom enum " "behavior, being able to access one member directly from another is useful, " -"and is supported." +"and is supported; however, in order to avoid name clashes between member " +"names and attributes/methods from mixed-in classes, upper-case names are " +"strongly recommended." msgstr "" -#: howto/enum.rst:995 +#: howto/enum.rst:1032 msgid "Creating members that are mixed with other data types" msgstr "" -#: howto/enum.rst:997 +#: howto/enum.rst:1034 msgid "" "When subclassing other data types, such as :class:`int` or :class:`str`, " "with an :class:`Enum`, all values after the ``=`` are passed to that data " "type's constructor. For example::" msgstr "" -#: howto/enum.rst:1009 +#: howto/enum.rst:1046 msgid "Boolean value of ``Enum`` classes and members" msgstr "" -#: howto/enum.rst:1011 +#: howto/enum.rst:1048 msgid "" "Enum classes that are mixed with non-:class:`Enum` types (such as :class:" "`int`, :class:`str`, etc.) are evaluated according to the mixed-in type's " @@ -908,137 +936,137 @@ msgid "" "your class::" msgstr "" -#: howto/enum.rst:1020 +#: howto/enum.rst:1057 msgid "Plain :class:`Enum` classes always evaluate as :data:`True`." msgstr "" -#: howto/enum.rst:1024 +#: howto/enum.rst:1061 msgid "``Enum`` classes with methods" msgstr "" -#: howto/enum.rst:1026 +#: howto/enum.rst:1063 msgid "" "If you give your enum subclass extra methods, like the `Planet`_ class " "below, those methods will show up in a :func:`dir` of the member, but not of " "the class::" msgstr "" -#: howto/enum.rst:1037 +#: howto/enum.rst:1074 msgid "Combining members of ``Flag``" msgstr "" -#: howto/enum.rst:1039 +#: howto/enum.rst:1076 msgid "" "Iterating over a combination of :class:`Flag` members will only return the " "members that are comprised of a single bit::" msgstr "" -#: howto/enum.rst:1057 +#: howto/enum.rst:1094 msgid "``Flag`` and ``IntFlag`` minutia" msgstr "" -#: howto/enum.rst:1059 +#: howto/enum.rst:1096 msgid "Using the following snippet for our examples::" msgstr "" -#: howto/enum.rst:1070 +#: howto/enum.rst:1107 msgid "the following are true:" msgstr "" -#: howto/enum.rst:1072 +#: howto/enum.rst:1109 msgid "single-bit flags are canonical" msgstr "" -#: howto/enum.rst:1073 +#: howto/enum.rst:1110 msgid "multi-bit and zero-bit flags are aliases" msgstr "" -#: howto/enum.rst:1074 +#: howto/enum.rst:1111 msgid "only canonical flags are returned during iteration::" msgstr "" -#: howto/enum.rst:1079 +#: howto/enum.rst:1116 msgid "" "negating a flag or flag set returns a new flag/flag set with the " "corresponding positive integer value::" msgstr "" -#: howto/enum.rst:1088 +#: howto/enum.rst:1125 msgid "names of pseudo-flags are constructed from their members' names::" msgstr "" -#: howto/enum.rst:1093 +#: howto/enum.rst:1130 msgid "multi-bit flags, aka aliases, can be returned from operations::" msgstr "" -#: howto/enum.rst:1104 +#: howto/enum.rst:1141 msgid "" "membership / containment checking: zero-valued flags are always considered " "to be contained::" msgstr "" -#: howto/enum.rst:1110 +#: howto/enum.rst:1147 msgid "" "otherwise, only if all bits of one flag are in the other flag will True be " "returned::" msgstr "" -#: howto/enum.rst:1119 +#: howto/enum.rst:1156 msgid "" "There is a new boundary mechanism that controls how out-of-range / invalid " "bits are handled: ``STRICT``, ``CONFORM``, ``EJECT``, and ``KEEP``:" msgstr "" -#: howto/enum.rst:1122 +#: howto/enum.rst:1159 msgid "STRICT --> raises an exception when presented with invalid values" msgstr "" -#: howto/enum.rst:1123 +#: howto/enum.rst:1160 msgid "CONFORM --> discards any invalid bits" msgstr "" -#: howto/enum.rst:1124 +#: howto/enum.rst:1161 msgid "EJECT --> lose Flag status and become a normal int with the given value" msgstr "" -#: howto/enum.rst:1128 +#: howto/enum.rst:1165 msgid "KEEP --> keep the extra bits" msgstr "" -#: howto/enum.rst:1126 +#: howto/enum.rst:1163 msgid "keeps Flag status and extra bits" msgstr "" -#: howto/enum.rst:1127 +#: howto/enum.rst:1164 msgid "extra bits do not show up in iteration" msgstr "" -#: howto/enum.rst:1128 +#: howto/enum.rst:1165 msgid "extra bits do show up in repr() and str()" msgstr "" -#: howto/enum.rst:1130 +#: howto/enum.rst:1167 msgid "" "The default for Flag is ``STRICT``, the default for ``IntFlag`` is " "``EJECT``, and the default for ``_convert_`` is ``KEEP`` (see ``ssl." "Options`` for an example of when ``KEEP`` is needed)." msgstr "" -#: howto/enum.rst:1138 +#: howto/enum.rst:1175 msgid "How are Enums and Flags different?" msgstr "" -#: howto/enum.rst:1140 +#: howto/enum.rst:1177 msgid "" "Enums have a custom metaclass that affects many aspects of both derived :" "class:`Enum` classes and their instances (members)." msgstr "" -#: howto/enum.rst:1145 +#: howto/enum.rst:1182 msgid "Enum Classes" msgstr "" -#: howto/enum.rst:1147 +#: howto/enum.rst:1184 msgid "" "The :class:`EnumType` metaclass is responsible for providing the :meth:" "`__contains__`, :meth:`__dir__`, :meth:`__iter__` and other methods that " @@ -1049,11 +1077,11 @@ msgid "" "`__getnewargs__`, :meth:`__str__` and :meth:`__repr__`)." msgstr "" -#: howto/enum.rst:1156 +#: howto/enum.rst:1193 msgid "Flag Classes" msgstr "" -#: howto/enum.rst:1158 +#: howto/enum.rst:1195 msgid "" "Flags have an expanded view of aliasing: to be canonical, the value of a " "flag needs to be a power-of-two value, and not a duplicate name. So, in " @@ -1062,11 +1090,11 @@ msgid "" "considered an alias." msgstr "" -#: howto/enum.rst:1164 +#: howto/enum.rst:1201 msgid "Enum Members (aka instances)" msgstr "" -#: howto/enum.rst:1166 +#: howto/enum.rst:1203 msgid "" "The most interesting thing about enum members is that they are singletons. :" "class:`EnumType` creates them all while it is creating the enum class " @@ -1075,37 +1103,37 @@ msgid "" "instances." msgstr "" -#: howto/enum.rst:1172 +#: howto/enum.rst:1209 msgid "Flag Members" msgstr "" -#: howto/enum.rst:1174 +#: howto/enum.rst:1211 msgid "" "Flag members can be iterated over just like the :class:`Flag` class, and " "only the canonical members will be returned. For example::" msgstr "" -#: howto/enum.rst:1180 +#: howto/enum.rst:1217 msgid "(Note that ``BLACK``, ``PURPLE``, and ``WHITE`` do not show up.)" msgstr "" -#: howto/enum.rst:1182 +#: howto/enum.rst:1219 msgid "" "Inverting a flag member returns the corresponding positive value, rather " "than a negative value --- for example::" msgstr "" -#: howto/enum.rst:1188 +#: howto/enum.rst:1225 msgid "" "Flag members have a length corresponding to the number of power-of-two " "values they contain. For example::" msgstr "" -#: howto/enum.rst:1198 +#: howto/enum.rst:1235 msgid "Enum Cookbook" msgstr "" -#: howto/enum.rst:1201 +#: howto/enum.rst:1238 msgid "" "While :class:`Enum`, :class:`IntEnum`, :class:`StrEnum`, :class:`Flag`, and :" "class:`IntFlag` are expected to cover the majority of use-cases, they cannot " @@ -1113,155 +1141,155 @@ msgid "" "that can be used directly, or as examples for creating one's own." msgstr "" -#: howto/enum.rst:1208 +#: howto/enum.rst:1245 msgid "Omitting values" msgstr "" -#: howto/enum.rst:1210 +#: howto/enum.rst:1247 msgid "" "In many use-cases, one doesn't care what the actual value of an enumeration " "is. There are several ways to define this type of simple enumeration:" msgstr "" -#: howto/enum.rst:1213 +#: howto/enum.rst:1250 msgid "use instances of :class:`auto` for the value" msgstr "" -#: howto/enum.rst:1214 +#: howto/enum.rst:1251 msgid "use instances of :class:`object` as the value" msgstr "" -#: howto/enum.rst:1215 +#: howto/enum.rst:1252 msgid "use a descriptive string as the value" msgstr "" -#: howto/enum.rst:1216 +#: howto/enum.rst:1253 msgid "" "use a tuple as the value and a custom :meth:`__new__` to replace the tuple " "with an :class:`int` value" msgstr "" -#: howto/enum.rst:1219 +#: howto/enum.rst:1256 msgid "" "Using any of these methods signifies to the user that these values are not " "important, and also enables one to add, remove, or reorder members without " "having to renumber the remaining members." msgstr "" -#: howto/enum.rst:1225 +#: howto/enum.rst:1262 msgid "Using :class:`auto`" msgstr "" -#: howto/enum.rst:1227 +#: howto/enum.rst:1264 msgid "Using :class:`auto` would look like::" msgstr "" -#: howto/enum.rst:1239 +#: howto/enum.rst:1276 msgid "Using :class:`object`" msgstr "" -#: howto/enum.rst:1241 +#: howto/enum.rst:1278 msgid "Using :class:`object` would look like::" msgstr "" -#: howto/enum.rst:1251 +#: howto/enum.rst:1288 msgid "" "This is also a good example of why you might want to write your own :meth:" "`__repr__`::" msgstr "" -#: howto/enum.rst:1267 +#: howto/enum.rst:1304 msgid "Using a descriptive string" msgstr "" -#: howto/enum.rst:1269 +#: howto/enum.rst:1306 msgid "Using a string as the value would look like::" msgstr "" -#: howto/enum.rst:1281 +#: howto/enum.rst:1318 msgid "Using a custom :meth:`__new__`" msgstr "" -#: howto/enum.rst:1283 +#: howto/enum.rst:1320 msgid "Using an auto-numbering :meth:`__new__` would look like::" msgstr "" -#: howto/enum.rst:1300 +#: howto/enum.rst:1337 msgid "" "To make a more general purpose ``AutoNumber``, add ``*args`` to the " "signature::" msgstr "" -#: howto/enum.rst:1310 +#: howto/enum.rst:1347 msgid "" "Then when you inherit from ``AutoNumber`` you can write your own " "``__init__`` to handle any extra arguments::" msgstr "" -#: howto/enum.rst:1329 +#: howto/enum.rst:1366 msgid "" "The :meth:`__new__` method, if defined, is used during creation of the Enum " "members; it is then replaced by Enum's :meth:`__new__` which is used after " "class creation for lookup of existing members." msgstr "" -#: howto/enum.rst:1335 +#: howto/enum.rst:1372 msgid "" "*Do not* call ``super().__new__()``, as the lookup-only ``__new__`` is the " "one that is found; instead, use the data type directly -- e.g.::" msgstr "" -#: howto/enum.rst:1342 +#: howto/enum.rst:1379 msgid "OrderedEnum" msgstr "" -#: howto/enum.rst:1344 +#: howto/enum.rst:1381 msgid "" "An ordered enumeration that is not based on :class:`IntEnum` and so " "maintains the normal :class:`Enum` invariants (such as not being comparable " "to other enumerations)::" msgstr "" -#: howto/enum.rst:1378 +#: howto/enum.rst:1415 msgid "DuplicateFreeEnum" msgstr "" -#: howto/enum.rst:1380 +#: howto/enum.rst:1417 msgid "" "Raises an error if a duplicate member value is found instead of creating an " "alias::" msgstr "" -#: howto/enum.rst:1405 +#: howto/enum.rst:1442 msgid "" "This is a useful example for subclassing Enum to add or change other " "behaviors as well as disallowing aliases. If the only desired change is " "disallowing aliases, the :func:`unique` decorator can be used instead." msgstr "" -#: howto/enum.rst:1411 +#: howto/enum.rst:1448 msgid "Planet" msgstr "" -#: howto/enum.rst:1413 +#: howto/enum.rst:1450 msgid "" "If :meth:`__new__` or :meth:`__init__` is defined, the value of the enum " "member will be passed to those methods::" msgstr "" -#: howto/enum.rst:1442 +#: howto/enum.rst:1479 msgid "TimePeriod" msgstr "" -#: howto/enum.rst:1444 +#: howto/enum.rst:1481 msgid "An example to show the :attr:`_ignore_` attribute in use::" msgstr "" -#: howto/enum.rst:1463 +#: howto/enum.rst:1500 msgid "Subclassing EnumType" msgstr "" -#: howto/enum.rst:1465 +#: howto/enum.rst:1502 msgid "" "While most enum needs can be met by customizing :class:`Enum` subclasses, " "either with class decorators or custom functions, :class:`EnumType` can be " diff --git a/howto/functional.po b/howto/functional.po index 654e6531e..6e421d77f 100644 --- a/howto/functional.po +++ b/howto/functional.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1328,14 +1328,20 @@ msgstr "" #: howto/functional.rst:1226 msgid "" +"https://en.wikipedia.org/wiki/Partial_application: Entry for the concept of " +"partial function application." +msgstr "" + +#: howto/functional.rst:1228 +msgid "" "https://en.wikipedia.org/wiki/Currying: Entry for the concept of currying." msgstr "" -#: howto/functional.rst:1229 +#: howto/functional.rst:1231 msgid "Python-specific" msgstr "" -#: howto/functional.rst:1231 +#: howto/functional.rst:1233 msgid "" "https://gnosis.cx/TPiP/: The first chapter of David Mertz's book :title-" "reference:`Text Processing in Python` discusses functional programming for " @@ -1343,7 +1349,7 @@ msgid "" "Text Processing\"." msgstr "" -#: howto/functional.rst:1236 +#: howto/functional.rst:1238 msgid "" "Mertz also wrote a 3-part series of articles on functional programming for " "IBM's DeveloperWorks site; see `part 1 `__," msgstr "" -#: howto/functional.rst:1244 +#: howto/functional.rst:1246 msgid "Python documentation" msgstr "" -#: howto/functional.rst:1246 +#: howto/functional.rst:1248 msgid "Documentation for the :mod:`itertools` module." msgstr "" -#: howto/functional.rst:1248 +#: howto/functional.rst:1250 msgid "Documentation for the :mod:`functools` module." msgstr "" -#: howto/functional.rst:1250 +#: howto/functional.rst:1252 msgid "Documentation for the :mod:`operator` module." msgstr "" -#: howto/functional.rst:1252 +#: howto/functional.rst:1254 msgid ":pep:`289`: \"Generator Expressions\"" msgstr "" -#: howto/functional.rst:1254 +#: howto/functional.rst:1256 msgid "" ":pep:`342`: \"Coroutines via Enhanced Generators\" describes the new " "generator features in Python 2.5." diff --git a/howto/isolating-extensions.po b/howto/isolating-extensions.po index b0ff2697b..f212c947d 100644 --- a/howto/isolating-extensions.po +++ b/howto/isolating-extensions.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: howto/isolating-extensions.rst:5 +#: howto/isolating-extensions.rst:7 msgid "Isolating Extension Modules" msgstr "" @@ -24,14 +24,14 @@ msgstr "" msgid "Abstract" msgstr "" -#: howto/isolating-extensions.rst:9 +#: howto/isolating-extensions.rst:11 msgid "" "Traditionally, state belonging to Python extension modules was kept in C " "``static`` variables, which have process-wide scope. This document describes " "problems of such per-process state and shows a safer way: per-module state." msgstr "" -#: howto/isolating-extensions.rst:14 +#: howto/isolating-extensions.rst:16 msgid "" "The document also describes how to switch to per-module state where " "possible. This transition involves allocating space for that state, " @@ -39,47 +39,47 @@ msgid "" "importantly—accessing per-module state from code." msgstr "" -#: howto/isolating-extensions.rst:21 +#: howto/isolating-extensions.rst:23 msgid "Who should read this" msgstr "" -#: howto/isolating-extensions.rst:23 +#: howto/isolating-extensions.rst:25 msgid "" "This guide is written for maintainers of :ref:`C-API ` " "extensions who would like to make that extension safer to use in " "applications where Python itself is used as a library." msgstr "" -#: howto/isolating-extensions.rst:29 +#: howto/isolating-extensions.rst:31 msgid "Background" msgstr "" -#: howto/isolating-extensions.rst:31 +#: howto/isolating-extensions.rst:33 msgid "" "An *interpreter* is the context in which Python code runs. It contains " "configuration (e.g. the import path) and runtime state (e.g. the set of " "imported modules)." msgstr "" -#: howto/isolating-extensions.rst:35 +#: howto/isolating-extensions.rst:37 msgid "" "Python supports running multiple interpreters in one process. There are two " "cases to think about—users may run interpreters:" msgstr "" -#: howto/isolating-extensions.rst:38 +#: howto/isolating-extensions.rst:40 msgid "" "in sequence, with several :c:func:`Py_InitializeEx`/:c:func:`Py_FinalizeEx` " "cycles, and" msgstr "" -#: howto/isolating-extensions.rst:40 +#: howto/isolating-extensions.rst:42 msgid "" "in parallel, managing \"sub-interpreters\" using :c:func:" "`Py_NewInterpreter`/:c:func:`Py_EndInterpreter`." msgstr "" -#: howto/isolating-extensions.rst:43 +#: howto/isolating-extensions.rst:45 msgid "" "Both cases (and combinations of them) would be most useful when embedding " "Python within a library. Libraries generally shouldn't make assumptions " @@ -87,7 +87,7 @@ msgid "" "\"main Python interpreter\"." msgstr "" -#: howto/isolating-extensions.rst:48 +#: howto/isolating-extensions.rst:50 msgid "" "Historically, Python extension modules don't handle this use case well. Many " "extension modules (and even some stdlib modules) use *per-process* global " @@ -98,28 +98,28 @@ msgid "" "than one interpreter in the same process." msgstr "" -#: howto/isolating-extensions.rst:56 +#: howto/isolating-extensions.rst:58 msgid "" "Unfortunately, *per-interpreter* state is not easy to achieve. Extension " "authors tend to not keep multiple interpreters in mind when developing, and " "it is currently cumbersome to test the behavior." msgstr "" -#: howto/isolating-extensions.rst:61 +#: howto/isolating-extensions.rst:63 msgid "Enter Per-Module State" msgstr "" -#: howto/isolating-extensions.rst:63 +#: howto/isolating-extensions.rst:65 msgid "" "Instead of focusing on per-interpreter state, Python's C API is evolving to " "better support the more granular *per-module* state. This means that C-level " -"data is be attached to a *module object*. Each interpreter creates its own " -"module object, keeping the data separate. For testing the isolation, " +"data should be attached to a *module object*. Each interpreter creates its " +"own module object, keeping the data separate. For testing the isolation, " "multiple module objects corresponding to a single extension can even be " "loaded in a single interpreter." msgstr "" -#: howto/isolating-extensions.rst:70 +#: howto/isolating-extensions.rst:72 msgid "" "Per-module state provides an easy way to think about lifetime and resource " "ownership: the extension module will initialize when a module object is " @@ -128,7 +128,7 @@ msgid "" "hooks to think—or forget—about." msgstr "" -#: howto/isolating-extensions.rst:76 +#: howto/isolating-extensions.rst:78 msgid "" "Note that there are use cases for different kinds of \"globals\": per-" "process, per-interpreter, per-thread or per-task state. With per-module " @@ -137,18 +137,18 @@ msgid "" "and testing. (Note that this guide does not cover them.)" msgstr "" -#: howto/isolating-extensions.rst:85 +#: howto/isolating-extensions.rst:87 msgid "Isolated Module Objects" msgstr "" -#: howto/isolating-extensions.rst:87 +#: howto/isolating-extensions.rst:89 msgid "" "The key point to keep in mind when developing an extension module is that " "several module objects can be created from a single shared library. For " "example:" msgstr "" -#: howto/isolating-extensions.rst:101 +#: howto/isolating-extensions.rst:103 msgid "" "As a rule of thumb, the two modules should be completely independent. All " "objects and state specific to the module should be encapsulated within the " @@ -158,18 +158,18 @@ msgid "" "and attention to edge cases." msgstr "" -#: howto/isolating-extensions.rst:109 +#: howto/isolating-extensions.rst:111 msgid "" "While some modules could do with less stringent restrictions, isolated " "modules make it easier to set clear expectations and guidelines that work " "across a variety of use cases." msgstr "" -#: howto/isolating-extensions.rst:115 +#: howto/isolating-extensions.rst:117 msgid "Surprising Edge Cases" msgstr "" -#: howto/isolating-extensions.rst:117 +#: howto/isolating-extensions.rst:119 msgid "" "Note that isolated modules do create some surprising edge cases. Most " "notably, each module object will typically not share its classes and " @@ -179,43 +179,43 @@ msgid "" "exception is *not* caught:" msgstr "" -#: howto/isolating-extensions.rst:137 +#: howto/isolating-extensions.rst:139 msgid "" "This is expected. Notice that pure-Python modules behave the same way: it is " "a part of how Python works." msgstr "" -#: howto/isolating-extensions.rst:140 +#: howto/isolating-extensions.rst:142 msgid "" "The goal is to make extension modules safe at the C level, not to make hacks " "behave intuitively. Mutating ``sys.modules`` \"manually\" counts as a hack." msgstr "" -#: howto/isolating-extensions.rst:146 +#: howto/isolating-extensions.rst:148 msgid "Making Modules Safe with Multiple Interpreters" msgstr "" -#: howto/isolating-extensions.rst:150 +#: howto/isolating-extensions.rst:152 msgid "Managing Global State" msgstr "" -#: howto/isolating-extensions.rst:152 +#: howto/isolating-extensions.rst:154 msgid "" "Sometimes, the state associated with a Python module is not specific to that " "module, but to the entire process (or something else \"more global\" than a " "module). For example:" msgstr "" -#: howto/isolating-extensions.rst:156 +#: howto/isolating-extensions.rst:158 msgid "The ``readline`` module manages *the* terminal." msgstr "" -#: howto/isolating-extensions.rst:157 +#: howto/isolating-extensions.rst:159 msgid "" "A module running on a circuit board wants to control *the* on-board LED." msgstr "" -#: howto/isolating-extensions.rst:160 +#: howto/isolating-extensions.rst:162 msgid "" "In these cases, the Python module should provide *access* to the global " "state, rather than *own* it. If possible, write the module so that multiple " @@ -224,7 +224,7 @@ msgid "" "explicit locking." msgstr "" -#: howto/isolating-extensions.rst:166 +#: howto/isolating-extensions.rst:168 msgid "" "If it is necessary to use process-global state, the simplest way to avoid " "issues with multiple interpreters is to explicitly prevent a module from " @@ -232,18 +232,18 @@ msgid "" "Object per Process`_." msgstr "" -#: howto/isolating-extensions.rst:173 +#: howto/isolating-extensions.rst:175 msgid "Managing Per-Module State" msgstr "" -#: howto/isolating-extensions.rst:175 +#: howto/isolating-extensions.rst:177 msgid "" "To use per-module state, use :ref:`multi-phase extension module " "initialization `. This signals that your module " "supports multiple interpreters correctly." msgstr "" -#: howto/isolating-extensions.rst:179 +#: howto/isolating-extensions.rst:181 msgid "" "Set ``PyModuleDef.m_size`` to a positive number to request that many bytes " "of storage local to the module. Usually, this will be set to the size of " @@ -254,7 +254,7 @@ msgid "" "function." msgstr "" -#: howto/isolating-extensions.rst:188 +#: howto/isolating-extensions.rst:190 msgid "" "Another option is to store state in the module's ``__dict__``, but you must " "avoid crashing when users modify ``__dict__`` from Python code. This usually " @@ -262,13 +262,13 @@ msgid "" "and hard to test sufficiently." msgstr "" -#: howto/isolating-extensions.rst:193 +#: howto/isolating-extensions.rst:195 msgid "" "However, if module state is not needed in C code, storing it in ``__dict__`` " "only is a good idea." msgstr "" -#: howto/isolating-extensions.rst:196 +#: howto/isolating-extensions.rst:198 msgid "" "If the module state includes ``PyObject`` pointers, the module object must " "hold references to those objects and implement the module-level hooks " @@ -278,18 +278,18 @@ msgid "" "unloaded cleanly." msgstr "" -#: howto/isolating-extensions.rst:203 +#: howto/isolating-extensions.rst:205 msgid "" "An example of a module with per-module state is currently available as " "`xxlimited `__; example module initialization shown at the bottom of the file." msgstr "" -#: howto/isolating-extensions.rst:209 +#: howto/isolating-extensions.rst:211 msgid "Opt-Out: Limiting to One Module Object per Process" msgstr "" -#: howto/isolating-extensions.rst:211 +#: howto/isolating-extensions.rst:213 msgid "" "A non-negative ``PyModuleDef.m_size`` signals that a module supports " "multiple interpreters correctly. If this is not yet the case for your " @@ -297,36 +297,36 @@ msgid "" "For example::" msgstr "" -#: howto/isolating-extensions.rst:232 +#: howto/isolating-extensions.rst:234 msgid "Module State Access from Functions" msgstr "" -#: howto/isolating-extensions.rst:234 +#: howto/isolating-extensions.rst:236 msgid "" "Accessing the state from module-level functions is straightforward. " "Functions get the module object as their first argument; for extracting the " "state, you can use ``PyModule_GetState``::" msgstr "" -#: howto/isolating-extensions.rst:249 +#: howto/isolating-extensions.rst:251 msgid "" "``PyModule_GetState`` may return ``NULL`` without setting an exception if " "there is no module state, i.e. ``PyModuleDef.m_size`` was zero. In your own " "module, you're in control of ``m_size``, so this is easy to prevent." msgstr "" -#: howto/isolating-extensions.rst:256 +#: howto/isolating-extensions.rst:258 msgid "Heap Types" msgstr "" -#: howto/isolating-extensions.rst:258 +#: howto/isolating-extensions.rst:260 msgid "" "Traditionally, types defined in C code are *static*; that is, ``static " "PyTypeObject`` structures defined directly in code and initialized using " "``PyType_Ready()``." msgstr "" -#: howto/isolating-extensions.rst:262 +#: howto/isolating-extensions.rst:264 msgid "" "Such types are necessarily shared across the process. Sharing them between " "module objects requires paying attention to any state they own or access. To " @@ -334,7 +334,7 @@ msgid "" "for example, you can't set ``str.myattribute = 123``." msgstr "" -#: howto/isolating-extensions.rst:268 +#: howto/isolating-extensions.rst:270 msgid "" "Sharing truly immutable objects between interpreters is fine, as long as " "they don't provide access to mutable objects. However, in CPython, every " @@ -344,7 +344,7 @@ msgid "" "process-wide GIL." msgstr "" -#: howto/isolating-extensions.rst:275 +#: howto/isolating-extensions.rst:277 msgid "" "Because they are immutable and process-global, static types cannot access " "\"their\" module state. If any method of such a type requires access to " @@ -353,15 +353,15 @@ msgid "" "Python's ``class`` statement." msgstr "" -#: howto/isolating-extensions.rst:282 +#: howto/isolating-extensions.rst:284 msgid "For new modules, using heap types by default is a good rule of thumb." msgstr "" -#: howto/isolating-extensions.rst:286 +#: howto/isolating-extensions.rst:288 msgid "Changing Static Types to Heap Types" msgstr "" -#: howto/isolating-extensions.rst:288 +#: howto/isolating-extensions.rst:290 msgid "" "Static types can be converted to heap types, but note that the heap type API " "was not designed for \"lossless\" conversion from static types—that is, " @@ -371,126 +371,126 @@ msgid "" "slots). Always test the details that are important to you." msgstr "" -#: howto/isolating-extensions.rst:297 +#: howto/isolating-extensions.rst:299 msgid "" "Watch out for the following two points in particular (but note that this is " "not a comprehensive list):" msgstr "" -#: howto/isolating-extensions.rst:300 +#: howto/isolating-extensions.rst:302 msgid "" "Unlike static types, heap type objects are mutable by default. Use the :c:" "macro:`Py_TPFLAGS_IMMUTABLETYPE` flag to prevent mutability." msgstr "" -#: howto/isolating-extensions.rst:302 +#: howto/isolating-extensions.rst:304 msgid "" "Heap types inherit :c:member:`~PyTypeObject.tp_new` by default, so it may " "become possible to instantiate them from Python code. You can prevent this " "with the :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag." msgstr "" -#: howto/isolating-extensions.rst:308 +#: howto/isolating-extensions.rst:310 msgid "Defining Heap Types" msgstr "" -#: howto/isolating-extensions.rst:310 +#: howto/isolating-extensions.rst:312 msgid "" "Heap types can be created by filling a :c:struct:`PyType_Spec` structure, a " "description or \"blueprint\" of a class, and calling :c:func:" "`PyType_FromModuleAndSpec` to construct a new class object." msgstr "" -#: howto/isolating-extensions.rst:315 +#: howto/isolating-extensions.rst:317 msgid "" "Other functions, like :c:func:`PyType_FromSpec`, can also create heap types, " "but :c:func:`PyType_FromModuleAndSpec` associates the module with the class, " "allowing access to the module state from methods." msgstr "" -#: howto/isolating-extensions.rst:319 +#: howto/isolating-extensions.rst:321 msgid "" "The class should generally be stored in *both* the module state (for safe " "access from C) and the module's ``__dict__`` (for access from Python code)." msgstr "" -#: howto/isolating-extensions.rst:325 +#: howto/isolating-extensions.rst:327 msgid "Garbage-Collection Protocol" msgstr "" -#: howto/isolating-extensions.rst:327 +#: howto/isolating-extensions.rst:329 msgid "" "Instances of heap types hold a reference to their type. This ensures that " "the type isn't destroyed before all its instances are, but may result in " "reference cycles that need to be broken by the garbage collector." msgstr "" -#: howto/isolating-extensions.rst:332 +#: howto/isolating-extensions.rst:334 msgid "" "To avoid memory leaks, instances of heap types must implement the garbage " "collection protocol. That is, heap types should:" msgstr "" -#: howto/isolating-extensions.rst:336 +#: howto/isolating-extensions.rst:338 msgid "Have the :c:macro:`Py_TPFLAGS_HAVE_GC` flag." msgstr "" -#: howto/isolating-extensions.rst:337 +#: howto/isolating-extensions.rst:339 msgid "" "Define a traverse function using ``Py_tp_traverse``, which visits the type " "(e.g. using :c:expr:`Py_VISIT(Py_TYPE(self))`)." msgstr "" -#: howto/isolating-extensions.rst:340 +#: howto/isolating-extensions.rst:342 msgid "" "Please refer to the :ref:`the documentation ` of :c:macro:" "`Py_TPFLAGS_HAVE_GC` and :c:member:`~PyTypeObject.tp_traverse` for " "additional considerations." msgstr "" -#: howto/isolating-extensions.rst:344 +#: howto/isolating-extensions.rst:346 msgid "" "If your traverse function delegates to the ``tp_traverse`` of its base class " "(or another type), ensure that ``Py_TYPE(self)`` is visited only once. Note " "that only heap type are expected to visit the type in ``tp_traverse``." msgstr "" -#: howto/isolating-extensions.rst:348 +#: howto/isolating-extensions.rst:350 msgid "For example, if your traverse function includes::" msgstr "" -#: howto/isolating-extensions.rst:352 +#: howto/isolating-extensions.rst:354 msgid "...and ``base`` may be a static type, then it should also include::" msgstr "" -#: howto/isolating-extensions.rst:360 +#: howto/isolating-extensions.rst:362 msgid "" "It is not necessary to handle the type's reference count in ``tp_new`` and " "``tp_clear``." msgstr "" -#: howto/isolating-extensions.rst:365 +#: howto/isolating-extensions.rst:367 msgid "Module State Access from Classes" msgstr "" -#: howto/isolating-extensions.rst:367 +#: howto/isolating-extensions.rst:369 msgid "" "If you have a type object defined with :c:func:`PyType_FromModuleAndSpec`, " "you can call :c:func:`PyType_GetModule` to get the associated module, and " "then :c:func:`PyModule_GetState` to get the module's state." msgstr "" -#: howto/isolating-extensions.rst:371 +#: howto/isolating-extensions.rst:373 msgid "" "To save a some tedious error-handling boilerplate code, you can combine " "these two steps with :c:func:`PyType_GetModuleState`, resulting in::" msgstr "" -#: howto/isolating-extensions.rst:381 +#: howto/isolating-extensions.rst:383 msgid "Module State Access from Regular Methods" msgstr "" -#: howto/isolating-extensions.rst:383 +#: howto/isolating-extensions.rst:385 msgid "" "Accessing the module-level state from methods of a class is somewhat more " "complicated, but is possible thanks to API introduced in Python 3.9. To get " @@ -498,27 +498,27 @@ msgid "" "module state from it." msgstr "" -#: howto/isolating-extensions.rst:388 +#: howto/isolating-extensions.rst:390 msgid "" "The largest roadblock is getting *the class a method was defined in*, or " "that method's \"defining class\" for short. The defining class can have a " "reference to the module it is part of." msgstr "" -#: howto/isolating-extensions.rst:392 +#: howto/isolating-extensions.rst:394 msgid "" "Do not confuse the defining class with :c:expr:`Py_TYPE(self)`. If the " "method is called on a *subclass* of your type, ``Py_TYPE(self)`` will refer " "to that subclass, which may be defined in different module than yours." msgstr "" -#: howto/isolating-extensions.rst:397 +#: howto/isolating-extensions.rst:399 msgid "" "The following Python code can illustrate the concept. ``Base." "get_defining_class`` returns ``Base`` even if ``type(self) == Sub``:" msgstr "" -#: howto/isolating-extensions.rst:413 +#: howto/isolating-extensions.rst:415 msgid "" "For a method to get its \"defining class\", it must use the :ref:" "`METH_METHOD | METH_FASTCALL | METH_KEYWORDS `__." msgstr "" -#: howto/isolating-extensions.rst:524 +#: howto/isolating-extensions.rst:526 msgid "Per-Class Scope" msgstr "" -#: howto/isolating-extensions.rst:526 +#: howto/isolating-extensions.rst:528 msgid "" "It is currently (as of Python 3.11) not possible to attach state to " "individual *types* without relying on CPython implementation details (which " @@ -623,11 +623,11 @@ msgid "" "per-class scope)." msgstr "" -#: howto/isolating-extensions.rst:533 +#: howto/isolating-extensions.rst:535 msgid "Lossless Conversion to Heap Types" msgstr "" -#: howto/isolating-extensions.rst:535 +#: howto/isolating-extensions.rst:537 msgid "" "The heap type API was not designed for \"lossless\" conversion from static " "types; that is, creating a type that works exactly like a given static type." diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index 21ca542ea..968c6b91b 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1864,7 +1864,7 @@ msgstr "" #: howto/logging-cookbook.rst:3642 msgid "" "Although :rfc:`5424` dates from 2009, most syslog servers are configured by " -"detault to use the older :rfc:`3164`, which hails from 2001. When " +"default to use the older :rfc:`3164`, which hails from 2001. When " "``logging`` was added to Python in 2003, it supported the earlier (and only " "existing) protocol at the time. Since RFC5424 came out, as there has not " "been widespread deployment of it in syslog servers, the :class:`~logging." @@ -1938,7 +1938,7 @@ msgstr "" #: howto/logging-cookbook.rst:3832 msgid "" "As you can see, this output isn't ideal. That's because the underlying code " -"which writes to ``sys.stderr`` makes mutiple writes, each of which results " +"which writes to ``sys.stderr`` makes multiple writes, each of which results " "in a separate logged line (for example, the last three lines above). To get " "around this problem, you need to buffer things and only output log lines " "when newlines are seen. Let's use a slghtly better implementation of " diff --git a/howto/logging.po b/howto/logging.po index f4b1dacc6..4e2fdb40e 100644 --- a/howto/logging.po +++ b/howto/logging.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -28,11 +28,17 @@ msgstr "" msgid "Vinay Sajip " msgstr "" -#: howto/logging.rst:12 +#: howto/logging.rst:11 +msgid "" +"This page contains tutorial information. For links to reference information " +"and a logging cookbook, please see :ref:`tutorial-ref-links`." +msgstr "" + +#: howto/logging.rst:15 msgid "Basic Logging Tutorial" msgstr "" -#: howto/logging.rst:14 +#: howto/logging.rst:17 msgid "" "Logging is a means of tracking events that happen when some software runs. " "The software's developer adds logging calls to their code to indicate that " @@ -43,11 +49,11 @@ msgid "" "the *level* or *severity*." msgstr "" -#: howto/logging.rst:23 +#: howto/logging.rst:26 msgid "When to use logging" msgstr "" -#: howto/logging.rst:25 +#: howto/logging.rst:28 msgid "" "Logging provides a set of convenience functions for simple logging usage. " "These are :func:`debug`, :func:`info`, :func:`warning`, :func:`error` and :" @@ -55,161 +61,161 @@ msgid "" "which states, for each of a set of common tasks, the best tool to use for it." msgstr "" -#: howto/logging.rst:31 +#: howto/logging.rst:34 msgid "Task you want to perform" msgstr "" -#: howto/logging.rst:31 +#: howto/logging.rst:34 msgid "The best tool for the task" msgstr "" -#: howto/logging.rst:33 +#: howto/logging.rst:36 msgid "" "Display console output for ordinary usage of a command line script or program" msgstr "" -#: howto/logging.rst:33 +#: howto/logging.rst:36 msgid ":func:`print`" msgstr "" -#: howto/logging.rst:37 +#: howto/logging.rst:40 msgid "" "Report events that occur during normal operation of a program (e.g. for " "status monitoring or fault investigation)" msgstr "" -#: howto/logging.rst:37 +#: howto/logging.rst:40 msgid "" ":func:`logging.info` (or :func:`logging.debug` for very detailed output for " "diagnostic purposes)" msgstr "" -#: howto/logging.rst:42 +#: howto/logging.rst:45 msgid "Issue a warning regarding a particular runtime event" msgstr "" -#: howto/logging.rst:42 +#: howto/logging.rst:45 msgid "" ":func:`warnings.warn` in library code if the issue is avoidable and the " "client application should be modified to eliminate the warning" msgstr "" -#: howto/logging.rst:47 +#: howto/logging.rst:50 msgid "" ":func:`logging.warning` if there is nothing the client application can do " "about the situation, but the event should still be noted" msgstr "" -#: howto/logging.rst:52 +#: howto/logging.rst:55 msgid "Report an error regarding a particular runtime event" msgstr "" -#: howto/logging.rst:52 +#: howto/logging.rst:55 msgid "Raise an exception" msgstr "" -#: howto/logging.rst:55 +#: howto/logging.rst:58 msgid "" "Report suppression of an error without raising an exception (e.g. error " "handler in a long-running server process)" msgstr "" -#: howto/logging.rst:55 +#: howto/logging.rst:58 msgid "" ":func:`logging.error`, :func:`logging.exception` or :func:`logging.critical` " "as appropriate for the specific error and application domain" msgstr "" -#: howto/logging.rst:62 +#: howto/logging.rst:65 msgid "" "The logging functions are named after the level or severity of the events " "they are used to track. The standard levels and their applicability are " "described below (in increasing order of severity):" msgstr "" -#: howto/logging.rst:863 +#: howto/logging.rst:866 msgid "Level" msgstr "" -#: howto/logging.rst:69 +#: howto/logging.rst:72 msgid "When it's used" msgstr "" -#: howto/logging.rst:873 +#: howto/logging.rst:876 msgid "``DEBUG``" msgstr "" -#: howto/logging.rst:71 +#: howto/logging.rst:74 msgid "" "Detailed information, typically of interest only when diagnosing problems." msgstr "" -#: howto/logging.rst:871 +#: howto/logging.rst:874 msgid "``INFO``" msgstr "" -#: howto/logging.rst:74 +#: howto/logging.rst:77 msgid "Confirmation that things are working as expected." msgstr "" -#: howto/logging.rst:869 +#: howto/logging.rst:872 msgid "``WARNING``" msgstr "" -#: howto/logging.rst:77 +#: howto/logging.rst:80 msgid "" "An indication that something unexpected happened, or indicative of some " "problem in the near future (e.g. 'disk space low'). The software is still " "working as expected." msgstr "" -#: howto/logging.rst:867 +#: howto/logging.rst:870 msgid "``ERROR``" msgstr "" -#: howto/logging.rst:82 +#: howto/logging.rst:85 msgid "" "Due to a more serious problem, the software has not been able to perform " "some function." msgstr "" -#: howto/logging.rst:865 +#: howto/logging.rst:868 msgid "``CRITICAL``" msgstr "" -#: howto/logging.rst:85 +#: howto/logging.rst:88 msgid "" "A serious error, indicating that the program itself may be unable to " "continue running." msgstr "" -#: howto/logging.rst:89 +#: howto/logging.rst:92 msgid "" "The default level is ``WARNING``, which means that only events of this level " "and above will be tracked, unless the logging package is configured to do " "otherwise." msgstr "" -#: howto/logging.rst:93 +#: howto/logging.rst:96 msgid "" "Events that are tracked can be handled in different ways. The simplest way " "of handling tracked events is to print them to the console. Another common " "way is to write them to a disk file." msgstr "" -#: howto/logging.rst:101 +#: howto/logging.rst:104 msgid "A simple example" msgstr "" -#: howto/logging.rst:103 +#: howto/logging.rst:106 msgid "A very simple example is::" msgstr "" -#: howto/logging.rst:109 +#: howto/logging.rst:112 msgid "If you type these lines into a script and run it, you'll see:" msgstr "" -#: howto/logging.rst:115 +#: howto/logging.rst:118 msgid "" "printed out on the console. The ``INFO`` message doesn't appear because the " "default level is ``WARNING``. The printed message includes the indication of " @@ -219,11 +225,11 @@ msgid "" "need that; formatting options will also be explained later." msgstr "" -#: howto/logging.rst:124 +#: howto/logging.rst:127 msgid "Logging to a file" msgstr "" -#: howto/logging.rst:126 +#: howto/logging.rst:129 msgid "" "A very common situation is that of recording logging events in a file, so " "let's look at that next. Be sure to try the following in a newly started " @@ -231,7 +237,7 @@ msgid "" "above::" msgstr "" -#: howto/logging.rst:137 +#: howto/logging.rst:140 msgid "" "The *encoding* argument was added. In earlier Python versions, or if not " "specified, the encoding used is the default value used by :func:`open`. " @@ -240,38 +246,38 @@ msgid "" "values and the default, see the documentation for :func:`open`." msgstr "" -#: howto/logging.rst:144 +#: howto/logging.rst:147 msgid "" "And now if we open the file and look at what we have, we should find the log " "messages:" msgstr "" -#: howto/logging.rst:154 +#: howto/logging.rst:157 msgid "" "This example also shows how you can set the logging level which acts as the " "threshold for tracking. In this case, because we set the threshold to " "``DEBUG``, all of the messages were printed." msgstr "" -#: howto/logging.rst:158 +#: howto/logging.rst:161 msgid "" "If you want to set the logging level from a command-line option such as:" msgstr "" -#: howto/logging.rst:164 +#: howto/logging.rst:167 msgid "" "and you have the value of the parameter passed for ``--log`` in some " "variable *loglevel*, you can use::" msgstr "" -#: howto/logging.rst:169 +#: howto/logging.rst:172 msgid "" "to get the value which you'll pass to :func:`basicConfig` via the *level* " "argument. You may want to error check any user input value, perhaps as in " "the following example::" msgstr "" -#: howto/logging.rst:181 +#: howto/logging.rst:184 msgid "" "The call to :func:`basicConfig` should come *before* any calls to :func:" "`debug`, :func:`info`, etc. Otherwise, those functions will call :func:" @@ -280,7 +286,7 @@ msgid "" "anything: subsequent calls are effectively no-ops." msgstr "" -#: howto/logging.rst:187 +#: howto/logging.rst:190 msgid "" "If you run the above script several times, the messages from successive runs " "are appended to the file *example.log*. If you want each run to start " @@ -288,27 +294,27 @@ msgid "" "*filemode* argument, by changing the call in the above example to::" msgstr "" -#: howto/logging.rst:194 +#: howto/logging.rst:197 msgid "" "The output will be the same as before, but the log file is no longer " "appended to, so the messages from earlier runs are lost." msgstr "" -#: howto/logging.rst:199 +#: howto/logging.rst:202 msgid "Logging from multiple modules" msgstr "" -#: howto/logging.rst:201 +#: howto/logging.rst:204 msgid "" "If your program consists of multiple modules, here's an example of how you " "could organize logging in it::" msgstr "" -#: howto/logging.rst:225 +#: howto/logging.rst:228 msgid "If you run *myapp.py*, you should see this in *myapp.log*:" msgstr "" -#: howto/logging.rst:233 +#: howto/logging.rst:236 msgid "" "which is hopefully what you were expecting to see. You can generalize this " "to multiple modules, using the pattern in *mylib.py*. Note that for this " @@ -319,21 +325,21 @@ msgid "" "advanced-tutorial`." msgstr "" -#: howto/logging.rst:243 +#: howto/logging.rst:246 msgid "Logging variable data" msgstr "" -#: howto/logging.rst:245 +#: howto/logging.rst:248 msgid "" "To log variable data, use a format string for the event description message " "and append the variable data as arguments. For example::" msgstr "" -#: howto/logging.rst:251 +#: howto/logging.rst:254 msgid "will display:" msgstr "" -#: howto/logging.rst:257 +#: howto/logging.rst:260 msgid "" "As you can see, merging of variable data into the event description message " "uses the old, %-style of string formatting. This is for backwards " @@ -343,21 +349,21 @@ msgid "" "tutorial: see :ref:`formatting-styles` for more information." msgstr "" -#: howto/logging.rst:266 +#: howto/logging.rst:269 msgid "Changing the format of displayed messages" msgstr "" -#: howto/logging.rst:268 +#: howto/logging.rst:271 msgid "" "To change the format which is used to display messages, you need to specify " "the format you want to use::" msgstr "" -#: howto/logging.rst:277 +#: howto/logging.rst:280 msgid "which would print:" msgstr "" -#: howto/logging.rst:285 +#: howto/logging.rst:288 msgid "" "Notice that the 'root' which appeared in earlier examples has disappeared. " "For a full set of things that can appear in format strings, you can refer to " @@ -367,42 +373,42 @@ msgid "" "This is described in the next section." msgstr "" -#: howto/logging.rst:294 +#: howto/logging.rst:297 msgid "Displaying the date/time in messages" msgstr "" -#: howto/logging.rst:296 +#: howto/logging.rst:299 msgid "" "To display the date and time of an event, you would place '%(asctime)s' in " "your format string::" msgstr "" -#: howto/logging.rst:303 +#: howto/logging.rst:306 msgid "which should print something like this:" msgstr "" -#: howto/logging.rst:309 +#: howto/logging.rst:312 msgid "" "The default format for date/time display (shown above) is like ISO8601 or :" "rfc:`3339`. If you need more control over the formatting of the date/time, " "provide a *datefmt* argument to ``basicConfig``, as in this example::" msgstr "" -#: howto/logging.rst:317 +#: howto/logging.rst:320 msgid "which would display something like this:" msgstr "" -#: howto/logging.rst:323 +#: howto/logging.rst:326 msgid "" "The format of the *datefmt* argument is the same as supported by :func:`time." "strftime`." msgstr "" -#: howto/logging.rst:328 +#: howto/logging.rst:331 msgid "Next Steps" msgstr "" -#: howto/logging.rst:330 +#: howto/logging.rst:333 msgid "" "That concludes the basic tutorial. It should be enough to get you up and " "running with logging. There's a lot more that the logging package offers, " @@ -411,7 +417,7 @@ msgid "" "of your favourite beverage and carry on." msgstr "" -#: howto/logging.rst:336 +#: howto/logging.rst:339 msgid "" "If your logging needs are simple, then use the above examples to incorporate " "logging into your own scripts, and if you run into problems or don't " @@ -420,50 +426,50 @@ msgid "" "should receive help before too long." msgstr "" -#: howto/logging.rst:342 +#: howto/logging.rst:345 msgid "" "Still here? You can carry on reading the next few sections, which provide a " "slightly more advanced/in-depth tutorial than the basic one above. After " "that, you can take a look at the :ref:`logging-cookbook`." msgstr "" -#: howto/logging.rst:350 +#: howto/logging.rst:353 msgid "Advanced Logging Tutorial" msgstr "" -#: howto/logging.rst:352 +#: howto/logging.rst:355 msgid "" "The logging library takes a modular approach and offers several categories " "of components: loggers, handlers, filters, and formatters." msgstr "" -#: howto/logging.rst:355 +#: howto/logging.rst:358 msgid "Loggers expose the interface that application code directly uses." msgstr "" -#: howto/logging.rst:356 +#: howto/logging.rst:359 msgid "" "Handlers send the log records (created by loggers) to the appropriate " "destination." msgstr "" -#: howto/logging.rst:358 +#: howto/logging.rst:361 msgid "" "Filters provide a finer grained facility for determining which log records " "to output." msgstr "" -#: howto/logging.rst:360 +#: howto/logging.rst:363 msgid "Formatters specify the layout of log records in the final output." msgstr "" -#: howto/logging.rst:362 +#: howto/logging.rst:365 msgid "" "Log event information is passed between loggers, handlers, filters and " "formatters in a :class:`LogRecord` instance." msgstr "" -#: howto/logging.rst:365 +#: howto/logging.rst:368 msgid "" "Logging is performed by calling methods on instances of the :class:`Logger` " "class (hereafter called :dfn:`loggers`). Each instance has a name, and they " @@ -474,19 +480,19 @@ msgid "" "originates." msgstr "" -#: howto/logging.rst:372 +#: howto/logging.rst:375 msgid "" "A good convention to use when naming loggers is to use a module-level " "logger, in each module which uses logging, named as follows::" msgstr "" -#: howto/logging.rst:377 +#: howto/logging.rst:380 msgid "" "This means that logger names track the package/module hierarchy, and it's " "intuitively obvious where events are logged just from the logger name." msgstr "" -#: howto/logging.rst:380 +#: howto/logging.rst:383 msgid "" "The root of the hierarchy of loggers is called the root logger. That's the " "logger used by the functions :func:`debug`, :func:`info`, :func:`warning`, :" @@ -495,7 +501,7 @@ msgid "" "root logger's name is printed as 'root' in the logged output." msgstr "" -#: howto/logging.rst:386 +#: howto/logging.rst:389 msgid "" "It is, of course, possible to log messages to different destinations. " "Support is included in the package for writing log messages to files, HTTP " @@ -506,7 +512,7 @@ msgid "" "built-in handler classes." msgstr "" -#: howto/logging.rst:393 +#: howto/logging.rst:396 msgid "" "By default, no destination is set for any logging messages. You can specify " "a destination (such as console or file) by using :func:`basicConfig` as in " @@ -518,32 +524,32 @@ msgid "" "message output." msgstr "" -#: howto/logging.rst:401 +#: howto/logging.rst:404 msgid "The default format set by :func:`basicConfig` for messages is:" msgstr "" -#: howto/logging.rst:407 +#: howto/logging.rst:410 msgid "" "You can change this by passing a format string to :func:`basicConfig` with " "the *format* keyword argument. For all options regarding how a format string " "is constructed, see :ref:`formatter-objects`." msgstr "" -#: howto/logging.rst:412 +#: howto/logging.rst:415 msgid "Logging Flow" msgstr "" -#: howto/logging.rst:414 +#: howto/logging.rst:417 msgid "" "The flow of log event information in loggers and handlers is illustrated in " "the following diagram." msgstr "" -#: howto/logging.rst:421 +#: howto/logging.rst:424 msgid "Loggers" msgstr "" -#: howto/logging.rst:423 +#: howto/logging.rst:426 msgid "" ":class:`Logger` objects have a threefold job. First, they expose several " "methods to application code so that applications can log messages at " @@ -553,17 +559,17 @@ msgid "" "handlers." msgstr "" -#: howto/logging.rst:429 +#: howto/logging.rst:432 msgid "" "The most widely used methods on logger objects fall into two categories: " "configuration and message sending." msgstr "" -#: howto/logging.rst:432 +#: howto/logging.rst:435 msgid "These are the most common configuration methods:" msgstr "" -#: howto/logging.rst:434 +#: howto/logging.rst:437 msgid "" ":meth:`Logger.setLevel` specifies the lowest-severity log message a logger " "will handle, where debug is the lowest built-in severity level and critical " @@ -572,32 +578,32 @@ msgid "" "messages and will ignore DEBUG messages." msgstr "" -#: howto/logging.rst:440 +#: howto/logging.rst:443 msgid "" ":meth:`Logger.addHandler` and :meth:`Logger.removeHandler` add and remove " "handler objects from the logger object. Handlers are covered in more detail " "in :ref:`handler-basic`." msgstr "" -#: howto/logging.rst:444 +#: howto/logging.rst:447 msgid "" ":meth:`Logger.addFilter` and :meth:`Logger.removeFilter` add and remove " "filter objects from the logger object. Filters are covered in more detail " "in :ref:`filter`." msgstr "" -#: howto/logging.rst:448 +#: howto/logging.rst:451 msgid "" "You don't need to always call these methods on every logger you create. See " "the last two paragraphs in this section." msgstr "" -#: howto/logging.rst:451 +#: howto/logging.rst:454 msgid "" "With the logger object configured, the following methods create log messages:" msgstr "" -#: howto/logging.rst:453 +#: howto/logging.rst:456 msgid "" ":meth:`Logger.debug`, :meth:`Logger.info`, :meth:`Logger.warning`, :meth:" "`Logger.error`, and :meth:`Logger.critical` all create log records with a " @@ -610,14 +616,14 @@ msgid "" "exception information." msgstr "" -#: howto/logging.rst:463 +#: howto/logging.rst:466 msgid "" ":meth:`Logger.exception` creates a log message similar to :meth:`Logger." "error`. The difference is that :meth:`Logger.exception` dumps a stack trace " "along with it. Call this method only from an exception handler." msgstr "" -#: howto/logging.rst:467 +#: howto/logging.rst:470 msgid "" ":meth:`Logger.log` takes a log level as an explicit argument. This is a " "little more verbose for logging messages than using the log level " @@ -625,7 +631,7 @@ msgid "" "levels." msgstr "" -#: howto/logging.rst:471 +#: howto/logging.rst:474 msgid "" ":func:`getLogger` returns a reference to a logger instance with the " "specified name if it is provided, or ``root`` if not. The names are period-" @@ -637,7 +643,7 @@ msgid "" "descendants of ``foo``." msgstr "" -#: howto/logging.rst:479 +#: howto/logging.rst:482 msgid "" "Loggers have a concept of *effective level*. If a level is not explicitly " "set on a logger, the level of its parent is used instead as its effective " @@ -649,7 +655,7 @@ msgid "" "handlers." msgstr "" -#: howto/logging.rst:487 +#: howto/logging.rst:490 msgid "" "Child loggers propagate messages up to the handlers associated with their " "ancestor loggers. Because of this, it is unnecessary to define and configure " @@ -659,11 +665,11 @@ msgid "" "attribute of a logger to ``False``.)" msgstr "" -#: howto/logging.rst:498 +#: howto/logging.rst:501 msgid "Handlers" msgstr "" -#: howto/logging.rst:500 +#: howto/logging.rst:503 msgid "" ":class:`~logging.Handler` objects are responsible for dispatching the " "appropriate log messages (based on the log messages' severity) to the " @@ -676,14 +682,14 @@ msgid "" "of a specific severity to a specific location." msgstr "" -#: howto/logging.rst:510 +#: howto/logging.rst:513 msgid "" "The standard library includes quite a few handler types (see :ref:`useful-" "handlers`); the tutorials use mainly :class:`StreamHandler` and :class:" "`FileHandler` in its examples." msgstr "" -#: howto/logging.rst:514 +#: howto/logging.rst:517 msgid "" "There are very few methods in a handler for application developers to " "concern themselves with. The only handler methods that seem relevant for " @@ -691,7 +697,7 @@ msgid "" "not creating custom handlers) are the following configuration methods:" msgstr "" -#: howto/logging.rst:519 +#: howto/logging.rst:522 msgid "" "The :meth:`~Handler.setLevel` method, just as in logger objects, specifies " "the lowest severity that will be dispatched to the appropriate destination. " @@ -701,19 +707,19 @@ msgid "" "on." msgstr "" -#: howto/logging.rst:525 +#: howto/logging.rst:528 msgid "" ":meth:`~Handler.setFormatter` selects a Formatter object for this handler to " "use." msgstr "" -#: howto/logging.rst:528 +#: howto/logging.rst:531 msgid "" ":meth:`~Handler.addFilter` and :meth:`~Handler.removeFilter` respectively " "configure and deconfigure filter objects on handlers." msgstr "" -#: howto/logging.rst:531 +#: howto/logging.rst:534 msgid "" "Application code should not directly instantiate and use instances of :class:" "`Handler`. Instead, the :class:`Handler` class is a base class that defines " @@ -721,11 +727,11 @@ msgid "" "behavior that child classes can use (or override)." msgstr "" -#: howto/logging.rst:538 +#: howto/logging.rst:541 msgid "Formatters" msgstr "" -#: howto/logging.rst:540 +#: howto/logging.rst:543 msgid "" "Formatter objects configure the final order, structure, and contents of the " "log message. Unlike the base :class:`logging.Handler` class, application " @@ -735,20 +741,20 @@ msgid "" "string and a style indicator." msgstr "" -#: howto/logging.rst:549 +#: howto/logging.rst:552 msgid "" "If there is no message format string, the default is to use the raw " "message. If there is no date format string, the default date format is:" msgstr "" -#: howto/logging.rst:556 +#: howto/logging.rst:559 msgid "" "with the milliseconds tacked on at the end. The ``style`` is one of ``'%'``, " "``'{'``, or ``'$'``. If one of these is not specified, then ``'%'`` will be " "used." msgstr "" -#: howto/logging.rst:559 +#: howto/logging.rst:562 msgid "" "If the ``style`` is ``'%'``, the message format string uses ``%()s`` styled string substitution; the possible keys are documented in :" @@ -758,18 +764,18 @@ msgid "" "should conform to what is expected by :meth:`string.Template.substitute`." msgstr "" -#: howto/logging.rst:566 +#: howto/logging.rst:569 msgid "Added the ``style`` parameter." msgstr "" -#: howto/logging.rst:569 +#: howto/logging.rst:572 msgid "" "The following message format string will log the time in a human-readable " "format, the severity of the message, and the contents of the message, in " "that order::" msgstr "" -#: howto/logging.rst:575 +#: howto/logging.rst:578 msgid "" "Formatters use a user-configurable function to convert the creation time of " "a record to a tuple. By default, :func:`time.localtime` is used; to change " @@ -780,68 +786,68 @@ msgid "" "in the Formatter class (to ``time.gmtime`` for GMT display)." msgstr "" -#: howto/logging.rst:585 +#: howto/logging.rst:588 msgid "Configuring Logging" msgstr "" -#: howto/logging.rst:589 +#: howto/logging.rst:592 msgid "Programmers can configure logging in three ways:" msgstr "" -#: howto/logging.rst:591 +#: howto/logging.rst:594 msgid "" "Creating loggers, handlers, and formatters explicitly using Python code that " "calls the configuration methods listed above." msgstr "" -#: howto/logging.rst:593 +#: howto/logging.rst:596 msgid "" "Creating a logging config file and reading it using the :func:`fileConfig` " "function." msgstr "" -#: howto/logging.rst:595 +#: howto/logging.rst:598 msgid "" "Creating a dictionary of configuration information and passing it to the :" "func:`dictConfig` function." msgstr "" -#: howto/logging.rst:598 +#: howto/logging.rst:601 msgid "" "For the reference documentation on the last two options, see :ref:`logging-" "config-api`. The following example configures a very simple logger, a " "console handler, and a simple formatter using Python code::" msgstr "" -#: howto/logging.rst:628 +#: howto/logging.rst:631 msgid "" "Running this module from the command line produces the following output:" msgstr "" -#: howto/logging.rst:639 +#: howto/logging.rst:642 msgid "" "The following Python module creates a logger, handler, and formatter nearly " "identical to those in the example listed above, with the only difference " "being the names of the objects::" msgstr "" -#: howto/logging.rst:658 +#: howto/logging.rst:661 msgid "Here is the logging.conf file:" msgstr "" -#: howto/logging.rst:690 +#: howto/logging.rst:693 msgid "" "The output is nearly identical to that of the non-config-file-based example:" msgstr "" -#: howto/logging.rst:701 +#: howto/logging.rst:704 msgid "" "You can see that the config file approach has a few advantages over the " "Python code approach, mainly separation of configuration and code and the " "ability of noncoders to easily modify the logging properties." msgstr "" -#: howto/logging.rst:705 +#: howto/logging.rst:708 msgid "" "The :func:`fileConfig` function takes a default parameter, " "``disable_existing_loggers``, which defaults to ``True`` for reasons of " @@ -852,7 +858,7 @@ msgid "" "information, and specify ``False`` for this parameter if you wish." msgstr "" -#: howto/logging.rst:713 +#: howto/logging.rst:716 msgid "" "The dictionary passed to :func:`dictConfig` can also specify a Boolean value " "with key ``disable_existing_loggers``, which if not specified explicitly in " @@ -861,7 +867,7 @@ msgid "" "want - in which case, provide the key explicitly with a value of ``False``." msgstr "" -#: howto/logging.rst:723 +#: howto/logging.rst:726 msgid "" "Note that the class names referenced in config files need to be either " "relative to the logging module, or absolute values which can be resolved " @@ -872,7 +878,7 @@ msgid "" "path)." msgstr "" -#: howto/logging.rst:731 +#: howto/logging.rst:734 msgid "" "In Python 3.2, a new means of configuring logging has been introduced, using " "dictionaries to hold configuration information. This provides a superset of " @@ -887,23 +893,23 @@ msgid "" "a socket, or use whatever approach makes sense for your application." msgstr "" -#: howto/logging.rst:743 +#: howto/logging.rst:746 msgid "" "Here's an example of the same configuration as above, in YAML format for the " "new dictionary-based approach:" msgstr "" -#: howto/logging.rst:767 +#: howto/logging.rst:770 msgid "" "For more information about logging using a dictionary, see :ref:`logging-" "config-api`." msgstr "" -#: howto/logging.rst:771 +#: howto/logging.rst:774 msgid "What happens if no configuration is provided" msgstr "" -#: howto/logging.rst:773 +#: howto/logging.rst:776 msgid "" "If no logging configuration is provided, it is possible to have a situation " "where a logging event needs to be output, but no handlers can be found to " @@ -911,27 +917,27 @@ msgid "" "circumstances is dependent on the Python version." msgstr "" -#: howto/logging.rst:778 +#: howto/logging.rst:781 msgid "For versions of Python prior to 3.2, the behaviour is as follows:" msgstr "" -#: howto/logging.rst:780 +#: howto/logging.rst:783 msgid "" "If *logging.raiseExceptions* is ``False`` (production mode), the event is " "silently dropped." msgstr "" -#: howto/logging.rst:783 +#: howto/logging.rst:786 msgid "" "If *logging.raiseExceptions* is ``True`` (development mode), a message 'No " "handlers could be found for logger X.Y.Z' is printed once." msgstr "" -#: howto/logging.rst:786 +#: howto/logging.rst:789 msgid "In Python 3.2 and later, the behaviour is as follows:" msgstr "" -#: howto/logging.rst:788 +#: howto/logging.rst:791 msgid "" "The event is output using a 'handler of last resort', stored in ``logging." "lastResort``. This internal handler is not associated with any logger, and " @@ -943,17 +949,17 @@ msgid "" "severities will be output." msgstr "" -#: howto/logging.rst:797 +#: howto/logging.rst:800 msgid "" "To obtain the pre-3.2 behaviour, ``logging.lastResort`` can be set to " "``None``." msgstr "" -#: howto/logging.rst:802 +#: howto/logging.rst:805 msgid "Configuring Logging for a Library" msgstr "" -#: howto/logging.rst:804 +#: howto/logging.rst:807 msgid "" "When developing a library which uses logging, you should take care to " "document how the library uses logging - for example, the names of loggers " @@ -964,7 +970,7 @@ msgid "" "is regarded as the best default behaviour." msgstr "" -#: howto/logging.rst:812 +#: howto/logging.rst:815 msgid "" "If for some reason you *don't* want these messages printed in the absence of " "any logging configuration, you can attach a do-nothing handler to the top-" @@ -976,7 +982,7 @@ msgid "" "to those handlers, as normal." msgstr "" -#: howto/logging.rst:821 +#: howto/logging.rst:824 msgid "" "A do-nothing handler is included in the logging package: :class:`~logging." "NullHandler` (since Python 3.1). An instance of this handler could be added " @@ -987,14 +993,14 @@ msgid "" "etc. then the code::" msgstr "" -#: howto/logging.rst:832 +#: howto/logging.rst:835 msgid "" "should have the desired effect. If an organisation produces a number of " "libraries, then the logger name specified can be 'orgname.foo' rather than " "just 'foo'." msgstr "" -#: howto/logging.rst:836 +#: howto/logging.rst:839 msgid "" "It is strongly advised that you *do not log to the root logger* in your " "library. Instead, use a logger with a unique and easily identifiable name, " @@ -1004,7 +1010,7 @@ msgid "" "library as they wish." msgstr "" -#: howto/logging.rst:843 +#: howto/logging.rst:846 msgid "" "It is strongly advised that you *do not add any handlers other than* :class:" "`~logging.NullHandler` *to your library's loggers*. This is because the " @@ -1015,11 +1021,11 @@ msgid "" "carry out unit tests and deliver logs which suit their requirements." msgstr "" -#: howto/logging.rst:854 +#: howto/logging.rst:857 msgid "Logging Levels" msgstr "" -#: howto/logging.rst:856 +#: howto/logging.rst:859 msgid "" "The numeric values of logging levels are given in the following table. These " "are primarily of interest if you want to define your own levels, and need " @@ -1028,39 +1034,39 @@ msgid "" "value; the predefined name is lost." msgstr "" -#: howto/logging.rst:863 +#: howto/logging.rst:866 msgid "Numeric value" msgstr "" -#: howto/logging.rst:865 +#: howto/logging.rst:868 msgid "50" msgstr "" -#: howto/logging.rst:867 +#: howto/logging.rst:870 msgid "40" msgstr "" -#: howto/logging.rst:869 +#: howto/logging.rst:872 msgid "30" msgstr "" -#: howto/logging.rst:871 +#: howto/logging.rst:874 msgid "20" msgstr "" -#: howto/logging.rst:873 +#: howto/logging.rst:876 msgid "10" msgstr "" -#: howto/logging.rst:875 +#: howto/logging.rst:878 msgid "``NOTSET``" msgstr "" -#: howto/logging.rst:875 +#: howto/logging.rst:878 msgid "0" msgstr "" -#: howto/logging.rst:878 +#: howto/logging.rst:881 msgid "" "Levels can also be associated with loggers, being set either by the " "developer or through loading a saved logging configuration. When a logging " @@ -1070,14 +1076,14 @@ msgid "" "basic mechanism controlling the verbosity of logging output." msgstr "" -#: howto/logging.rst:885 +#: howto/logging.rst:888 msgid "" "Logging messages are encoded as instances of the :class:`~logging.LogRecord` " "class. When a logger decides to actually log an event, a :class:`~logging." "LogRecord` instance is created from the logging message." msgstr "" -#: howto/logging.rst:889 +#: howto/logging.rst:892 msgid "" "Logging messages are subjected to a dispatch mechanism through the use of :" "dfn:`handlers`, which are instances of subclasses of the :class:`Handler` " @@ -1094,7 +1100,7 @@ msgid "" "at which point the passing to ancestor handlers stops)." msgstr "" -#: howto/logging.rst:903 +#: howto/logging.rst:906 msgid "" "Just as for loggers, handlers can have levels associated with them. A " "handler's level acts as a filter in the same way as a logger's level does. " @@ -1104,11 +1110,11 @@ msgid "" "`~Handler.emit`." msgstr "" -#: howto/logging.rst:912 +#: howto/logging.rst:915 msgid "Custom Levels" msgstr "" -#: howto/logging.rst:914 +#: howto/logging.rst:917 msgid "" "Defining your own levels is possible, but should not be necessary, as the " "existing levels have been chosen on the basis of practical experience. " @@ -1121,27 +1127,27 @@ msgid "" "given numeric value might mean different things for different libraries." msgstr "" -#: howto/logging.rst:927 +#: howto/logging.rst:930 msgid "Useful Handlers" msgstr "" -#: howto/logging.rst:929 +#: howto/logging.rst:932 msgid "" "In addition to the base :class:`Handler` class, many useful subclasses are " "provided:" msgstr "" -#: howto/logging.rst:932 +#: howto/logging.rst:935 msgid "" ":class:`StreamHandler` instances send messages to streams (file-like " "objects)." msgstr "" -#: howto/logging.rst:935 +#: howto/logging.rst:938 msgid ":class:`FileHandler` instances send messages to disk files." msgstr "" -#: howto/logging.rst:937 +#: howto/logging.rst:940 msgid "" ":class:`~handlers.BaseRotatingHandler` is the base class for handlers that " "rotate log files at a certain point. It is not meant to be instantiated " @@ -1149,61 +1155,61 @@ msgid "" "`~handlers.TimedRotatingFileHandler`." msgstr "" -#: howto/logging.rst:942 +#: howto/logging.rst:945 msgid "" ":class:`~handlers.RotatingFileHandler` instances send messages to disk " "files, with support for maximum log file sizes and log file rotation." msgstr "" -#: howto/logging.rst:945 +#: howto/logging.rst:948 msgid "" ":class:`~handlers.TimedRotatingFileHandler` instances send messages to disk " "files, rotating the log file at certain timed intervals." msgstr "" -#: howto/logging.rst:948 +#: howto/logging.rst:951 msgid "" ":class:`~handlers.SocketHandler` instances send messages to TCP/IP sockets. " "Since 3.4, Unix domain sockets are also supported." msgstr "" -#: howto/logging.rst:951 +#: howto/logging.rst:954 msgid "" ":class:`~handlers.DatagramHandler` instances send messages to UDP sockets. " "Since 3.4, Unix domain sockets are also supported." msgstr "" -#: howto/logging.rst:954 +#: howto/logging.rst:957 msgid "" ":class:`~handlers.SMTPHandler` instances send messages to a designated email " "address." msgstr "" -#: howto/logging.rst:957 +#: howto/logging.rst:960 msgid "" ":class:`~handlers.SysLogHandler` instances send messages to a Unix syslog " "daemon, possibly on a remote machine." msgstr "" -#: howto/logging.rst:960 +#: howto/logging.rst:963 msgid "" ":class:`~handlers.NTEventLogHandler` instances send messages to a Windows " "NT/2000/XP event log." msgstr "" -#: howto/logging.rst:963 +#: howto/logging.rst:966 msgid "" ":class:`~handlers.MemoryHandler` instances send messages to a buffer in " "memory, which is flushed whenever specific criteria are met." msgstr "" -#: howto/logging.rst:966 +#: howto/logging.rst:969 msgid "" ":class:`~handlers.HTTPHandler` instances send messages to an HTTP server " "using either ``GET`` or ``POST`` semantics." msgstr "" -#: howto/logging.rst:969 +#: howto/logging.rst:972 msgid "" ":class:`~handlers.WatchedFileHandler` instances watch the file they are " "logging to. If the file changes, it is closed and reopened using the file " @@ -1211,13 +1217,13 @@ msgid "" "support the underlying mechanism used." msgstr "" -#: howto/logging.rst:974 +#: howto/logging.rst:977 msgid "" ":class:`~handlers.QueueHandler` instances send messages to a queue, such as " "those implemented in the :mod:`queue` or :mod:`multiprocessing` modules." msgstr "" -#: howto/logging.rst:977 +#: howto/logging.rst:980 msgid "" ":class:`NullHandler` instances do nothing with error messages. They are used " "by library developers who want to use logging, but want to avoid the 'No " @@ -1226,15 +1232,15 @@ msgid "" "more information." msgstr "" -#: howto/logging.rst:983 +#: howto/logging.rst:986 msgid "The :class:`NullHandler` class." msgstr "" -#: howto/logging.rst:986 +#: howto/logging.rst:989 msgid "The :class:`~handlers.QueueHandler` class." msgstr "" -#: howto/logging.rst:989 +#: howto/logging.rst:992 msgid "" "The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler` " "classes are defined in the core logging package. The other handlers are " @@ -1242,14 +1248,14 @@ msgid "" "module, :mod:`logging.config`, for configuration functionality.)" msgstr "" -#: howto/logging.rst:994 +#: howto/logging.rst:997 msgid "" "Logged messages are formatted for presentation through instances of the :" "class:`Formatter` class. They are initialized with a format string suitable " "for use with the % operator and a dictionary." msgstr "" -#: howto/logging.rst:998 +#: howto/logging.rst:1001 msgid "" "For formatting multiple messages in a batch, instances of :class:`~handlers." "BufferingFormatter` can be used. In addition to the format string (which is " @@ -1257,7 +1263,7 @@ msgid "" "trailer format strings." msgstr "" -#: howto/logging.rst:1003 +#: howto/logging.rst:1006 msgid "" "When filtering based on logger level and/or handler level is not enough, " "instances of :class:`Filter` can be added to both :class:`Logger` and :class:" @@ -1267,18 +1273,18 @@ msgid "" "value, the message is not processed further." msgstr "" -#: howto/logging.rst:1010 +#: howto/logging.rst:1013 msgid "" "The basic :class:`Filter` functionality allows filtering by specific logger " "name. If this feature is used, messages sent to the named logger and its " "children are allowed through the filter, and all others dropped." msgstr "" -#: howto/logging.rst:1018 +#: howto/logging.rst:1021 msgid "Exceptions raised during logging" msgstr "" -#: howto/logging.rst:1020 +#: howto/logging.rst:1023 msgid "" "The logging package is designed to swallow exceptions which occur while " "logging in production. This is so that errors which occur while handling " @@ -1286,7 +1292,7 @@ msgid "" "errors - do not cause the application using logging to terminate prematurely." msgstr "" -#: howto/logging.rst:1025 +#: howto/logging.rst:1028 msgid "" ":class:`SystemExit` and :class:`KeyboardInterrupt` exceptions are never " "swallowed. Other exceptions which occur during the :meth:`~Handler.emit` " @@ -1294,7 +1300,7 @@ msgid "" "handleError` method." msgstr "" -#: howto/logging.rst:1030 +#: howto/logging.rst:1033 msgid "" "The default implementation of :meth:`~Handler.handleError` in :class:" "`Handler` checks to see if a module-level variable, :data:`raiseExceptions`, " @@ -1302,7 +1308,7 @@ msgid "" "the exception is swallowed." msgstr "" -#: howto/logging.rst:1035 +#: howto/logging.rst:1038 msgid "" "The default value of :data:`raiseExceptions` is ``True``. This is because " "during development, you typically want to be notified of any exceptions that " @@ -1310,11 +1316,11 @@ msgid "" "production usage." msgstr "" -#: howto/logging.rst:1045 +#: howto/logging.rst:1048 msgid "Using arbitrary objects as messages" msgstr "" -#: howto/logging.rst:1047 +#: howto/logging.rst:1050 msgid "" "In the preceding sections and examples, it has been assumed that the message " "passed when logging the event is a string. However, this is not the only " @@ -1326,11 +1332,11 @@ msgid "" "the wire." msgstr "" -#: howto/logging.rst:1058 +#: howto/logging.rst:1061 msgid "Optimization" msgstr "" -#: howto/logging.rst:1060 +#: howto/logging.rst:1063 msgid "" "Formatting of message arguments is deferred until it cannot be avoided. " "However, computing the arguments passed to the logging method can also be " @@ -1341,13 +1347,13 @@ msgid "" "code like this::" msgstr "" -#: howto/logging.rst:1072 +#: howto/logging.rst:1075 msgid "" "so that if the logger's threshold is set above ``DEBUG``, the calls to :func:" "`expensive_func1` and :func:`expensive_func2` are never made." msgstr "" -#: howto/logging.rst:1075 +#: howto/logging.rst:1078 msgid "" "In some cases, :meth:`~Logger.isEnabledFor` can itself be more expensive " "than you'd like (e.g. for deeply nested loggers where an explicit level is " @@ -1359,7 +1365,7 @@ msgid "" "while the application is running (which is not all that common)." msgstr "" -#: howto/logging.rst:1084 +#: howto/logging.rst:1087 msgid "" "There are other optimizations which can be made for specific applications " "which need more precise control over what logging information is collected. " @@ -1367,82 +1373,94 @@ msgid "" "you don't need:" msgstr "" -#: howto/logging.rst:1090 +#: howto/logging.rst:1093 msgid "What you don't want to collect" msgstr "" -#: howto/logging.rst:1090 +#: howto/logging.rst:1093 msgid "How to avoid collecting it" msgstr "" -#: howto/logging.rst:1092 +#: howto/logging.rst:1095 msgid "Information about where calls were made from." msgstr "" -#: howto/logging.rst:1092 +#: howto/logging.rst:1095 msgid "" "Set ``logging._srcfile`` to ``None``. This avoids calling :func:`sys." "_getframe`, which may help to speed up your code in environments like PyPy " "(which can't speed up code that uses :func:`sys._getframe`)." msgstr "" -#: howto/logging.rst:1098 +#: howto/logging.rst:1101 msgid "Threading information." msgstr "" -#: howto/logging.rst:1098 +#: howto/logging.rst:1101 msgid "Set ``logging.logThreads`` to ``False``." msgstr "" -#: howto/logging.rst:1100 +#: howto/logging.rst:1103 msgid "Current process ID (:func:`os.getpid`)" msgstr "" -#: howto/logging.rst:1100 +#: howto/logging.rst:1103 msgid "Set ``logging.logProcesses`` to ``False``." msgstr "" -#: howto/logging.rst:1102 +#: howto/logging.rst:1105 msgid "" "Current process name when using ``multiprocessing`` to manage multiple " "processes." msgstr "" -#: howto/logging.rst:1102 +#: howto/logging.rst:1105 msgid "Set ``logging.logMultiprocessing`` to ``False``." msgstr "" -#: howto/logging.rst:1106 +#: howto/logging.rst:1108 +msgid "Current :class:`asyncio.Task` name when using ``asyncio``." +msgstr "" + +#: howto/logging.rst:1108 +msgid "Set ``logging.logAsyncioTasks`` to ``False``." +msgstr "" + +#: howto/logging.rst:1112 msgid "" "Also note that the core logging module only includes the basic handlers. If " "you don't import :mod:`logging.handlers` and :mod:`logging.config`, they " "won't take up any memory." msgstr "" -#: howto/logging.rst:1113 +#: howto/logging.rst:1119 +msgid "Other resources" +msgstr "" + +#: howto/logging.rst:1124 msgid "Module :mod:`logging`" msgstr "" -#: howto/logging.rst:1113 +#: howto/logging.rst:1124 msgid "API reference for the logging module." msgstr "" -#: howto/logging.rst:1116 +#: howto/logging.rst:1127 msgid "Module :mod:`logging.config`" msgstr "" -#: howto/logging.rst:1116 +#: howto/logging.rst:1127 msgid "Configuration API for the logging module." msgstr "" -#: howto/logging.rst:1119 +#: howto/logging.rst:1130 msgid "Module :mod:`logging.handlers`" msgstr "" -#: howto/logging.rst:1119 +#: howto/logging.rst:1130 msgid "Useful handlers included with the logging module." msgstr "" -#: howto/logging.rst:1121 +#: howto/logging.rst:1132 msgid ":ref:`A logging cookbook `" msgstr "" diff --git a/howto/perf_profiling.po b/howto/perf_profiling.po new file mode 100644 index 000000000..276a3f688 --- /dev/null +++ b/howto/perf_profiling.po @@ -0,0 +1,150 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2001-2023, Python Software Foundation +# This file is distributed under the same license as the Python package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Python 3.12\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: howto/perf_profiling.rst:7 +msgid "Python support for the Linux ``perf`` profiler" +msgstr "" + +#: howto/perf_profiling.rst:0 +msgid "author" +msgstr "" + +#: howto/perf_profiling.rst:9 +msgid "Pablo Galindo" +msgstr "" + +#: howto/perf_profiling.rst:11 +msgid "" +"`The Linux perf profiler `_ is a very powerful " +"tool that allows you to profile and obtain information about the performance " +"of your application. ``perf`` also has a very vibrant ecosystem of tools " +"that aid with the analysis of the data that it produces." +msgstr "" + +#: howto/perf_profiling.rst:17 +msgid "" +"The main problem with using the ``perf`` profiler with Python applications " +"is that ``perf`` only gets information about native symbols, that is, the " +"names of functions and procedures written in C. This means that the names " +"and file names of Python functions in your code will not appear in the " +"output of ``perf``." +msgstr "" + +#: howto/perf_profiling.rst:22 +msgid "" +"Since Python 3.12, the interpreter can run in a special mode that allows " +"Python functions to appear in the output of the ``perf`` profiler. When this " +"mode is enabled, the interpreter will interpose a small piece of code " +"compiled on the fly before the execution of every Python function and it " +"will teach ``perf`` the relationship between this piece of code and the " +"associated Python function using :doc:`perf map files <../c-api/perfmaps>`." +msgstr "" + +#: howto/perf_profiling.rst:31 +msgid "" +"Support for the ``perf`` profiler is currently only available for Linux on " +"select architectures. Check the output of the ``configure`` build step or " +"check the output of ``python -m sysconfig | grep HAVE_PERF_TRAMPOLINE`` to " +"see if your system is supported." +msgstr "" + +#: howto/perf_profiling.rst:36 +msgid "For example, consider the following script:" +msgstr "" + +#: howto/perf_profiling.rst:55 +msgid "We can run ``perf`` to sample CPU stack traces at 9999 hertz::" +msgstr "" + +#: howto/perf_profiling.rst:59 +msgid "Then we can use ``perf report`` to analyze the data:" +msgstr "" + +#: howto/perf_profiling.rst:100 +msgid "" +"As you can see, the Python functions are not shown in the output, only " +"``_Py_Eval_EvalFrameDefault`` (the function that evaluates the Python " +"bytecode) shows up. Unfortunately that's not very useful because all Python " +"functions use the same C function to evaluate bytecode so we cannot know " +"which Python function corresponds to which bytecode-evaluating function." +msgstr "" + +#: howto/perf_profiling.rst:105 +msgid "" +"Instead, if we run the same experiment with ``perf`` support enabled we get:" +msgstr "" + +#: howto/perf_profiling.rst:152 +msgid "How to enable ``perf`` profiling support" +msgstr "" + +#: howto/perf_profiling.rst:154 +msgid "" +"``perf`` profiling support can be enabled either from the start using the " +"environment variable :envvar:`PYTHONPERFSUPPORT` or the :option:`-X perf <-" +"X>` option, or dynamically using :func:`sys.activate_stack_trampoline` and :" +"func:`sys.deactivate_stack_trampoline`." +msgstr "" + +#: howto/perf_profiling.rst:160 +msgid "" +"The :mod:`!sys` functions take precedence over the :option:`!-X` option, " +"the :option:`!-X` option takes precedence over the environment variable." +msgstr "" + +#: howto/perf_profiling.rst:163 +msgid "Example, using the environment variable::" +msgstr "" + +#: howto/perf_profiling.rst:169 +msgid "Example, using the :option:`!-X` option::" +msgstr "" + +#: howto/perf_profiling.rst:174 +msgid "Example, using the :mod:`sys` APIs in file :file:`example.py`:" +msgstr "" + +#: howto/perf_profiling.rst:186 +msgid "...then::" +msgstr "" + +#: howto/perf_profiling.rst:193 +msgid "How to obtain the best results" +msgstr "" + +#: howto/perf_profiling.rst:195 +msgid "" +"For best results, Python should be compiled with ``CFLAGS=\"-fno-omit-frame-" +"pointer -mno-omit-leaf-frame-pointer\"`` as this allows profilers to unwind " +"using only the frame pointer and not on DWARF debug information. This is " +"because as the code that is interposed to allow ``perf`` support is " +"dynamically generated it doesn't have any DWARF debugging information " +"available." +msgstr "" + +#: howto/perf_profiling.rst:202 +msgid "" +"You can check if your system has been compiled with this flag by running::" +msgstr "" + +#: howto/perf_profiling.rst:206 +msgid "" +"If you don't see any output it means that your interpreter has not been " +"compiled with frame pointers and therefore it may not be able to show Python " +"functions in the output of ``perf``." +msgstr "" diff --git a/howto/regex.po b/howto/regex.po index a4b32888f..665872508 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -622,11 +622,11 @@ msgid "" "for a complete listing." msgstr "" -#: howto/regex.rst:418 howto/regex.rst:1066 +#: howto/regex.rst:414 howto/regex.rst:1062 msgid "Method/Attribute" msgstr "" -#: howto/regex.rst:418 howto/regex.rst:1066 +#: howto/regex.rst:414 howto/regex.rst:1062 msgid "Purpose" msgstr "" @@ -675,20 +675,16 @@ msgstr "" #: howto/regex.rst:380 msgid "" "You can learn about this by interactively experimenting with the :mod:`re` " -"module. If you have :mod:`tkinter` available, you may also want to look at :" -"source:`Tools/demo/redemo.py`, a demonstration program included with the " -"Python distribution. It allows you to enter REs and strings, and displays " -"whether the RE matches or fails. :file:`redemo.py` can be quite useful when " -"trying to debug a complicated RE." +"module." msgstr "" -#: howto/regex.rst:387 +#: howto/regex.rst:383 msgid "" "This HOWTO uses the standard Python interpreter for its examples. First, run " "the Python interpreter, import the :mod:`re` module, and compile a RE::" msgstr "" -#: howto/regex.rst:395 +#: howto/regex.rst:391 msgid "" "Now, you can try matching various strings against the RE ``[a-z]+``. An " "empty string shouldn't match at all, since ``+`` means 'one or more " @@ -697,57 +693,57 @@ msgid "" "print the result of :meth:`!match` to make this clear. ::" msgstr "" -#: howto/regex.rst:405 +#: howto/regex.rst:401 msgid "" "Now, let's try it on a string that it should match, such as ``tempo``. In " "this case, :meth:`~re.Pattern.match` will return a :ref:`match object `, so you should store the result in a variable for later use. ::" msgstr "" -#: howto/regex.rst:413 +#: howto/regex.rst:409 msgid "" "Now you can query the :ref:`match object ` for information " "about the matching string. Match object instances also have several methods " "and attributes; the most important ones are:" msgstr "" -#: howto/regex.rst:420 +#: howto/regex.rst:416 msgid "``group()``" msgstr "" -#: howto/regex.rst:420 +#: howto/regex.rst:416 msgid "Return the string matched by the RE" msgstr "" -#: howto/regex.rst:422 +#: howto/regex.rst:418 msgid "``start()``" msgstr "" -#: howto/regex.rst:422 +#: howto/regex.rst:418 msgid "Return the starting position of the match" msgstr "" -#: howto/regex.rst:424 +#: howto/regex.rst:420 msgid "``end()``" msgstr "" -#: howto/regex.rst:424 +#: howto/regex.rst:420 msgid "Return the ending position of the match" msgstr "" -#: howto/regex.rst:426 +#: howto/regex.rst:422 msgid "``span()``" msgstr "" -#: howto/regex.rst:426 +#: howto/regex.rst:422 msgid "Return a tuple containing the (start, end) positions of the match" msgstr "" -#: howto/regex.rst:430 +#: howto/regex.rst:426 msgid "Trying these methods will soon clarify their meaning::" msgstr "" -#: howto/regex.rst:439 +#: howto/regex.rst:435 msgid "" ":meth:`~re.Match.group` returns the substring that was matched by the RE. :" "meth:`~re.Match.start` and :meth:`~re.Match.end` return the starting and " @@ -759,20 +755,20 @@ msgid "" "case. ::" msgstr "" -#: howto/regex.rst:456 +#: howto/regex.rst:452 msgid "" "In actual programs, the most common style is to store the :ref:`match object " "` in a variable, and then check if it was ``None``. This " "usually looks like::" msgstr "" -#: howto/regex.rst:467 +#: howto/regex.rst:463 msgid "" "Two pattern methods return all of the matches for a pattern. :meth:`~re." "Pattern.findall` returns a list of matching strings::" msgstr "" -#: howto/regex.rst:474 +#: howto/regex.rst:470 msgid "" "The ``r`` prefix, making the literal a raw string literal, is needed in this " "example because escape sequences in a normal \"cooked\" string literal that " @@ -781,7 +777,7 @@ msgid "" "`SyntaxError`. See :ref:`the-backslash-plague`." msgstr "" -#: howto/regex.rst:480 +#: howto/regex.rst:476 msgid "" ":meth:`~re.Pattern.findall` has to create the entire list before it can be " "returned as the result. The :meth:`~re.Pattern.finditer` method returns a " @@ -789,11 +785,11 @@ msgid "" "`iterator`::" msgstr "" -#: howto/regex.rst:496 +#: howto/regex.rst:492 msgid "Module-Level Functions" msgstr "" -#: howto/regex.rst:498 +#: howto/regex.rst:494 msgid "" "You don't have to create a pattern object and call its methods; the :mod:" "`re` module also provides top-level functions called :func:`~re.match`, :" @@ -803,7 +799,7 @@ msgid "" "``None`` or a :ref:`match object ` instance. ::" msgstr "" -#: howto/regex.rst:510 +#: howto/regex.rst:506 msgid "" "Under the hood, these functions simply create a pattern object for you and " "call the appropriate method on it. They also store the compiled object in a " @@ -811,7 +807,7 @@ msgid "" "again and again." msgstr "" -#: howto/regex.rst:515 +#: howto/regex.rst:511 msgid "" "Should you use these module-level functions, or should you get the pattern " "and call its methods yourself? If you're accessing a regex within a loop, " @@ -819,11 +815,11 @@ msgid "" "not much difference thanks to the internal cache." msgstr "" -#: howto/regex.rst:523 +#: howto/regex.rst:519 msgid "Compilation Flags" msgstr "" -#: howto/regex.rst:527 +#: howto/regex.rst:523 msgid "" "Compilation flags let you modify some aspects of how regular expressions " "work. Flags are available in the :mod:`re` module under two names, a long " @@ -835,72 +831,72 @@ msgid "" "example." msgstr "" -#: howto/regex.rst:535 +#: howto/regex.rst:531 msgid "" "Here's a table of the available flags, followed by a more detailed " "explanation of each one." msgstr "" -#: howto/regex.rst:539 +#: howto/regex.rst:535 msgid "Flag" msgstr "" -#: howto/regex.rst:539 +#: howto/regex.rst:535 msgid "Meaning" msgstr "" -#: howto/regex.rst:541 +#: howto/regex.rst:537 msgid ":const:`ASCII`, :const:`A`" msgstr "" -#: howto/regex.rst:541 +#: howto/regex.rst:537 msgid "" "Makes several escapes like ``\\w``, ``\\b``, ``\\s`` and ``\\d`` match only " "on ASCII characters with the respective property." msgstr "" -#: howto/regex.rst:545 +#: howto/regex.rst:541 msgid ":const:`DOTALL`, :const:`S`" msgstr "" -#: howto/regex.rst:545 +#: howto/regex.rst:541 msgid "Make ``.`` match any character, including newlines." msgstr "" -#: howto/regex.rst:548 +#: howto/regex.rst:544 msgid ":const:`IGNORECASE`, :const:`I`" msgstr "" -#: howto/regex.rst:548 +#: howto/regex.rst:544 msgid "Do case-insensitive matches." msgstr "" -#: howto/regex.rst:550 +#: howto/regex.rst:546 msgid ":const:`LOCALE`, :const:`L`" msgstr "" -#: howto/regex.rst:550 +#: howto/regex.rst:546 msgid "Do a locale-aware match." msgstr "" -#: howto/regex.rst:552 +#: howto/regex.rst:548 msgid ":const:`MULTILINE`, :const:`M`" msgstr "" -#: howto/regex.rst:552 +#: howto/regex.rst:548 msgid "Multi-line matching, affecting ``^`` and ``$``." msgstr "" -#: howto/regex.rst:555 +#: howto/regex.rst:551 msgid ":const:`VERBOSE`, :const:`X` (for 'extended')" msgstr "" -#: howto/regex.rst:555 +#: howto/regex.rst:551 msgid "" "Enable verbose REs, which can be organized more cleanly and understandably." msgstr "" -#: howto/regex.rst:564 +#: howto/regex.rst:560 msgid "" "Perform case-insensitive matching; character class and literal strings will " "match letters by ignoring case. For example, ``[A-Z]`` will match lowercase " @@ -916,13 +912,13 @@ msgid "" "also set the :const:`LOCALE` flag." msgstr "" -#: howto/regex.rst:582 +#: howto/regex.rst:578 msgid "" "Make ``\\w``, ``\\W``, ``\\b``, ``\\B`` and case-insensitive matching " "dependent on the current locale instead of the Unicode database." msgstr "" -#: howto/regex.rst:585 +#: howto/regex.rst:581 msgid "" "Locales are a feature of the C library intended to help in writing programs " "that take account of language differences. For example, if you're " @@ -941,13 +937,13 @@ msgid "" "patterns, and it is able to handle different locales/languages." msgstr "" -#: howto/regex.rst:607 +#: howto/regex.rst:603 msgid "" "(``^`` and ``$`` haven't been explained yet; they'll be introduced in " "section :ref:`more-metacharacters`.)" msgstr "" -#: howto/regex.rst:610 +#: howto/regex.rst:606 msgid "" "Usually ``^`` matches only at the beginning of the string, and ``$`` matches " "only at the end of the string and immediately before the newline (if any) at " @@ -958,20 +954,20 @@ msgid "" "(immediately preceding each newline)." msgstr "" -#: howto/regex.rst:623 +#: howto/regex.rst:619 msgid "" "Makes the ``'.'`` special character match any character at all, including a " "newline; without this flag, ``'.'`` will match anything *except* a newline." msgstr "" -#: howto/regex.rst:631 +#: howto/regex.rst:627 msgid "" "Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\s`` and ``\\S`` perform ASCII-" "only matching instead of full Unicode matching. This is only meaningful for " "Unicode patterns, and is ignored for byte patterns." msgstr "" -#: howto/regex.rst:640 +#: howto/regex.rst:636 msgid "" "This flag allows you to write regular expressions that are more readable by " "granting you more flexibility in how you can format them. When this flag " @@ -983,45 +979,45 @@ msgid "" "preceded by an unescaped backslash." msgstr "" -#: howto/regex.rst:649 +#: howto/regex.rst:645 msgid "" "For example, here's a RE that uses :const:`re.VERBOSE`; see how much easier " "it is to read? ::" msgstr "" -#: howto/regex.rst:662 +#: howto/regex.rst:658 msgid "Without the verbose setting, the RE would look like this::" msgstr "" -#: howto/regex.rst:668 +#: howto/regex.rst:664 msgid "" "In the above example, Python's automatic concatenation of string literals " "has been used to break up the RE into smaller pieces, but it's still more " "difficult to understand than the version using :const:`re.VERBOSE`." msgstr "" -#: howto/regex.rst:674 +#: howto/regex.rst:670 msgid "More Pattern Power" msgstr "" -#: howto/regex.rst:676 +#: howto/regex.rst:672 msgid "" "So far we've only covered a part of the features of regular expressions. In " "this section, we'll cover some new metacharacters, and how to use groups to " "retrieve portions of the text that was matched." msgstr "" -#: howto/regex.rst:684 +#: howto/regex.rst:680 msgid "More Metacharacters" msgstr "" -#: howto/regex.rst:686 +#: howto/regex.rst:682 msgid "" "There are some metacharacters that we haven't covered yet. Most of them " "will be covered in this section." msgstr "" -#: howto/regex.rst:689 +#: howto/regex.rst:685 msgid "" "Some of the remaining metacharacters to be discussed are :dfn:`zero-width " "assertions`. They don't cause the engine to advance through the string; " @@ -1033,11 +1029,11 @@ msgid "" "of times." msgstr "" -#: howto/regex.rst:705 +#: howto/regex.rst:701 msgid "``|``" msgstr "" -#: howto/regex.rst:698 +#: howto/regex.rst:694 msgid "" "Alternation, or the \"or\" operator. If *A* and *B* are regular " "expressions, ``A|B`` will match any string that matches either *A* or *B*. " @@ -1047,17 +1043,17 @@ msgid "" "``'ervo'``." msgstr "" -#: howto/regex.rst:704 +#: howto/regex.rst:700 msgid "" "To match a literal ``'|'``, use ``\\|``, or enclose it inside a character " "class, as in ``[|]``." msgstr "" -#: howto/regex.rst:720 +#: howto/regex.rst:716 msgid "``^``" msgstr "" -#: howto/regex.rst:708 +#: howto/regex.rst:704 msgid "" "Matches at the beginning of lines. Unless the :const:`MULTILINE` flag has " "been set, this will only match at the beginning of the string. In :const:" @@ -1065,37 +1061,37 @@ msgid "" "the string." msgstr "" -#: howto/regex.rst:712 +#: howto/regex.rst:708 msgid "" "For example, if you wish to match the word ``From`` only at the beginning of " "a line, the RE to use is ``^From``. ::" msgstr "" -#: howto/regex.rst:720 +#: howto/regex.rst:716 msgid "To match a literal ``'^'``, use ``\\^``." msgstr "" -#: howto/regex.rst:734 +#: howto/regex.rst:730 msgid "``$``" msgstr "" -#: howto/regex.rst:723 +#: howto/regex.rst:719 msgid "" "Matches at the end of a line, which is defined as either the end of the " "string, or any location followed by a newline character. ::" msgstr "" -#: howto/regex.rst:733 +#: howto/regex.rst:729 msgid "" "To match a literal ``'$'``, use ``\\$`` or enclose it inside a character " "class, as in ``[$]``." msgstr "" -#: howto/regex.rst:740 +#: howto/regex.rst:736 msgid "``\\A``" msgstr "" -#: howto/regex.rst:737 +#: howto/regex.rst:733 msgid "" "Matches only at the start of the string. When not in :const:`MULTILINE` " "mode, ``\\A`` and ``^`` are effectively the same. In :const:`MULTILINE` " @@ -1104,19 +1100,19 @@ msgid "" "newline character." msgstr "" -#: howto/regex.rst:743 +#: howto/regex.rst:739 msgid "``\\Z``" msgstr "" -#: howto/regex.rst:743 +#: howto/regex.rst:739 msgid "Matches only at the end of the string." msgstr "" -#: howto/regex.rst:778 +#: howto/regex.rst:774 msgid "``\\b``" msgstr "" -#: howto/regex.rst:746 +#: howto/regex.rst:742 msgid "" "Word boundary. This is a zero-width assertion that matches only at the " "beginning or end of a word. A word is defined as a sequence of alphanumeric " @@ -1124,13 +1120,13 @@ msgid "" "alphanumeric character." msgstr "" -#: howto/regex.rst:751 +#: howto/regex.rst:747 msgid "" "The following example matches ``class`` only when it's a complete word; it " "won't match when it's contained inside another word. ::" msgstr "" -#: howto/regex.rst:762 +#: howto/regex.rst:758 msgid "" "There are two subtleties you should remember when using this special " "sequence. First, this is the worst collision between Python's string " @@ -1141,28 +1137,28 @@ msgid "" "previous RE, but omits the ``'r'`` in front of the RE string. ::" msgstr "" -#: howto/regex.rst:776 +#: howto/regex.rst:772 msgid "" "Second, inside a character class, where there's no use for this assertion, " "``\\b`` represents the backspace character, for compatibility with Python's " "string literals." msgstr "" -#: howto/regex.rst:783 +#: howto/regex.rst:779 msgid "``\\B``" msgstr "" -#: howto/regex.rst:781 +#: howto/regex.rst:777 msgid "" "Another zero-width assertion, this is the opposite of ``\\b``, only matching " "when the current position is not at a word boundary." msgstr "" -#: howto/regex.rst:786 +#: howto/regex.rst:782 msgid "Grouping" msgstr "" -#: howto/regex.rst:788 +#: howto/regex.rst:784 msgid "" "Frequently you need to obtain more information than just whether the RE " "matched or not. Regular expressions are often used to dissect strings by " @@ -1171,14 +1167,14 @@ msgid "" "name and a value, separated by a ``':'``, like this:" msgstr "" -#: howto/regex.rst:801 +#: howto/regex.rst:797 msgid "" "This can be handled by writing a regular expression which matches an entire " "header line, and has one group which matches the header name, and another " "group which matches the header's value." msgstr "" -#: howto/regex.rst:805 +#: howto/regex.rst:801 msgid "" "Groups are marked by the ``'('``, ``')'`` metacharacters. ``'('`` and " "``')'`` have much the same meaning as they do in mathematical expressions; " @@ -1188,7 +1184,7 @@ msgid "" "repetitions of ``ab``. ::" msgstr "" -#: howto/regex.rst:816 +#: howto/regex.rst:812 msgid "" "Groups indicated with ``'('``, ``')'`` also capture the starting and ending " "index of the text that they match; this can be retrieved by passing an " @@ -1200,27 +1196,27 @@ msgid "" "they match. ::" msgstr "" -#: howto/regex.rst:832 +#: howto/regex.rst:828 msgid "" "Subgroups are numbered from left to right, from 1 upward. Groups can be " "nested; to determine the number, just count the opening parenthesis " "characters, going from left to right. ::" msgstr "" -#: howto/regex.rst:845 +#: howto/regex.rst:841 msgid "" ":meth:`~re.Match.group` can be passed multiple group numbers at a time, in " "which case it will return a tuple containing the corresponding values for " "those groups. ::" msgstr "" -#: howto/regex.rst:851 +#: howto/regex.rst:847 msgid "" "The :meth:`~re.Match.groups` method returns a tuple containing the strings " "for all the subgroups, from 1 up to however many there are. ::" msgstr "" -#: howto/regex.rst:857 +#: howto/regex.rst:853 msgid "" "Backreferences in a pattern allow you to specify that the contents of an " "earlier capturing group must also be found at the current location in the " @@ -1231,11 +1227,11 @@ msgid "" "when incorporating backreferences in a RE." msgstr "" -#: howto/regex.rst:865 +#: howto/regex.rst:861 msgid "For example, the following RE detects doubled words in a string. ::" msgstr "" -#: howto/regex.rst:871 +#: howto/regex.rst:867 msgid "" "Backreferences like this aren't often useful for just searching through a " "string --- there are few text formats which repeat data in this way --- but " @@ -1243,11 +1239,11 @@ msgid "" "substitutions." msgstr "" -#: howto/regex.rst:877 +#: howto/regex.rst:873 msgid "Non-capturing and Named Groups" msgstr "" -#: howto/regex.rst:879 +#: howto/regex.rst:875 msgid "" "Elaborate REs may use many groups, both to capture substrings of interest, " "and to group and structure the RE itself. In complex REs, it becomes " @@ -1256,7 +1252,7 @@ msgid "" "expression extensions, so we'll look at that first." msgstr "" -#: howto/regex.rst:885 +#: howto/regex.rst:881 msgid "" "Perl 5 is well known for its powerful additions to standard regular " "expressions. For these new features the Perl developers couldn't choose new " @@ -1267,7 +1263,7 @@ msgid "" "wouldn't have escaped it by writing ``\\&`` or ``[&]``." msgstr "" -#: howto/regex.rst:892 +#: howto/regex.rst:888 msgid "" "The solution chosen by the Perl developers was to use ``(?...)`` as the " "extension syntax. ``?`` immediately after a parenthesis was a syntax error " @@ -1278,20 +1274,20 @@ msgid "" "capturing group containing the subexpression ``foo``)." msgstr "" -#: howto/regex.rst:900 +#: howto/regex.rst:896 msgid "" "Python supports several of Perl's extensions and adds an extension syntax to " "Perl's extension syntax. If the first character after the question mark is " "a ``P``, you know that it's an extension that's specific to Python." msgstr "" -#: howto/regex.rst:905 +#: howto/regex.rst:901 msgid "" "Now that we've looked at the general extension syntax, we can return to the " "features that simplify working with groups in complex REs." msgstr "" -#: howto/regex.rst:908 +#: howto/regex.rst:904 msgid "" "Sometimes you'll want to use a group to denote a part of a regular " "expression, but aren't interested in retrieving the group's contents. You " @@ -1299,7 +1295,7 @@ msgid "" "where you can replace the ``...`` with any other regular expression. ::" msgstr "" -#: howto/regex.rst:920 +#: howto/regex.rst:916 msgid "" "Except for the fact that you can't retrieve the contents of what the group " "matched, a non-capturing group behaves exactly the same as a capturing " @@ -1312,13 +1308,13 @@ msgid "" "groups; neither form is any faster than the other." msgstr "" -#: howto/regex.rst:929 +#: howto/regex.rst:925 msgid "" "A more significant feature is named groups: instead of referring to them by " "numbers, groups can be referenced by a name." msgstr "" -#: howto/regex.rst:932 +#: howto/regex.rst:928 msgid "" "The syntax for a named group is one of the Python-specific extensions: ``(?" "P...)``. *name* is, obviously, the name of the group. Named groups " @@ -1330,26 +1326,26 @@ msgid "" "ways::" msgstr "" -#: howto/regex.rst:947 +#: howto/regex.rst:943 msgid "" "Additionally, you can retrieve named groups as a dictionary with :meth:`~re." "Match.groupdict`::" msgstr "" -#: howto/regex.rst:954 +#: howto/regex.rst:950 msgid "" "Named groups are handy because they let you use easily remembered names, " "instead of having to remember numbers. Here's an example RE from the :mod:" "`imaplib` module::" msgstr "" -#: howto/regex.rst:965 +#: howto/regex.rst:961 msgid "" "It's obviously much easier to retrieve ``m.group('zonem')``, instead of " "having to remember to retrieve group 9." msgstr "" -#: howto/regex.rst:968 +#: howto/regex.rst:964 msgid "" "The syntax for backreferences in an expression such as ``(...)\\1`` refers " "to the number of the group. There's naturally a variant that uses the group " @@ -1360,22 +1356,22 @@ msgid "" "P\\w+)\\s+(?P=word)\\b``::" msgstr "" -#: howto/regex.rst:981 +#: howto/regex.rst:977 msgid "Lookahead Assertions" msgstr "" -#: howto/regex.rst:983 +#: howto/regex.rst:979 msgid "" "Another zero-width assertion is the lookahead assertion. Lookahead " "assertions are available in both positive and negative form, and look like " "this:" msgstr "" -#: howto/regex.rst:991 +#: howto/regex.rst:987 msgid "``(?=...)``" msgstr "" -#: howto/regex.rst:987 +#: howto/regex.rst:983 msgid "" "Positive lookahead assertion. This succeeds if the contained regular " "expression, represented here by ``...``, successfully matches at the current " @@ -1384,18 +1380,18 @@ msgid "" "is tried right where the assertion started." msgstr "" -#: howto/regex.rst:996 +#: howto/regex.rst:992 msgid "``(?!...)``" msgstr "" -#: howto/regex.rst:994 +#: howto/regex.rst:990 msgid "" "Negative lookahead assertion. This is the opposite of the positive " "assertion; it succeeds if the contained expression *doesn't* match at the " "current position in the string." msgstr "" -#: howto/regex.rst:998 +#: howto/regex.rst:994 msgid "" "To make this concrete, let's look at a case where a lookahead is useful. " "Consider a simple pattern to match a filename and split it apart into a base " @@ -1403,15 +1399,15 @@ msgid "" "``news`` is the base name, and ``rc`` is the filename's extension." msgstr "" -#: howto/regex.rst:1003 +#: howto/regex.rst:999 msgid "The pattern to match this is quite simple:" msgstr "" -#: howto/regex.rst:1005 +#: howto/regex.rst:1001 msgid "``.*[.].*$``" msgstr "" -#: howto/regex.rst:1007 +#: howto/regex.rst:1003 msgid "" "Notice that the ``.`` needs to be treated specially because it's a " "metacharacter, so it's inside a character class to only match that specific " @@ -1421,24 +1417,24 @@ msgid "" "``printers.conf``." msgstr "" -#: howto/regex.rst:1014 +#: howto/regex.rst:1010 msgid "" "Now, consider complicating the problem a bit; what if you want to match " "filenames where the extension is not ``bat``? Some incorrect attempts:" msgstr "" -#: howto/regex.rst:1017 +#: howto/regex.rst:1013 msgid "" "``.*[.][^b].*$`` The first attempt above tries to exclude ``bat`` by " "requiring that the first character of the extension is not a ``b``. This is " "wrong, because the pattern also doesn't match ``foo.bar``." msgstr "" -#: howto/regex.rst:1021 +#: howto/regex.rst:1017 msgid "``.*[.]([^b]..|.[^a].|..[^t])$``" msgstr "" -#: howto/regex.rst:1023 +#: howto/regex.rst:1019 msgid "" "The expression gets messier when you try to patch up the first solution by " "requiring one of the following cases to match: the first character of the " @@ -1449,18 +1445,18 @@ msgid "" "pattern again in an effort to fix it." msgstr "" -#: howto/regex.rst:1031 +#: howto/regex.rst:1027 msgid "``.*[.]([^b].?.?|.[^a]?.?|..?[^t]?)$``" msgstr "" -#: howto/regex.rst:1033 +#: howto/regex.rst:1029 msgid "" "In the third attempt, the second and third letters are all made optional in " "order to allow matching extensions shorter than three characters, such as " "``sendmail.cf``." msgstr "" -#: howto/regex.rst:1037 +#: howto/regex.rst:1033 msgid "" "The pattern's getting really complicated now, which makes it hard to read " "and understand. Worse, if the problem changes and you want to exclude both " @@ -1468,11 +1464,11 @@ msgid "" "complicated and confusing." msgstr "" -#: howto/regex.rst:1042 +#: howto/regex.rst:1038 msgid "A negative lookahead cuts through all this confusion:" msgstr "" -#: howto/regex.rst:1044 +#: howto/regex.rst:1040 msgid "" "``.*[.](?!bat$)[^.]*$`` The negative lookahead means: if the expression " "``bat`` doesn't match at this point, try the rest of the pattern; if " @@ -1482,61 +1478,61 @@ msgid "" "the pattern works when there are multiple dots in the filename." msgstr "" -#: howto/regex.rst:1051 +#: howto/regex.rst:1047 msgid "" "Excluding another filename extension is now easy; simply add it as an " "alternative inside the assertion. The following pattern excludes filenames " "that end in either ``bat`` or ``exe``:" msgstr "" -#: howto/regex.rst:1055 +#: howto/regex.rst:1051 msgid "``.*[.](?!bat$|exe$)[^.]*$``" msgstr "" -#: howto/regex.rst:1059 +#: howto/regex.rst:1055 msgid "Modifying Strings" msgstr "" -#: howto/regex.rst:1061 +#: howto/regex.rst:1057 msgid "" "Up to this point, we've simply performed searches against a static string. " "Regular expressions are also commonly used to modify strings in various " "ways, using the following pattern methods:" msgstr "" -#: howto/regex.rst:1068 +#: howto/regex.rst:1064 msgid "``split()``" msgstr "" -#: howto/regex.rst:1068 +#: howto/regex.rst:1064 msgid "Split the string into a list, splitting it wherever the RE matches" msgstr "" -#: howto/regex.rst:1071 +#: howto/regex.rst:1067 msgid "``sub()``" msgstr "" -#: howto/regex.rst:1071 +#: howto/regex.rst:1067 msgid "" "Find all substrings where the RE matches, and replace them with a different " "string" msgstr "" -#: howto/regex.rst:1074 +#: howto/regex.rst:1070 msgid "``subn()``" msgstr "" -#: howto/regex.rst:1074 +#: howto/regex.rst:1070 msgid "" "Does the same thing as :meth:`!sub`, but returns the new string and the " "number of replacements" msgstr "" -#: howto/regex.rst:1081 +#: howto/regex.rst:1077 msgid "Splitting Strings" msgstr "" -#: howto/regex.rst:1083 +#: howto/regex.rst:1079 msgid "" "The :meth:`~re.Pattern.split` method of a pattern splits a string apart " "wherever the RE matches, returning a list of the pieces. It's similar to " @@ -1546,7 +1542,7 @@ msgid "" "module-level :func:`re.split` function, too." msgstr "" -#: howto/regex.rst:1094 +#: howto/regex.rst:1090 msgid "" "Split *string* by the matches of the regular expression. If capturing " "parentheses are used in the RE, then their contents will also be returned as " @@ -1554,7 +1550,7 @@ msgid "" "splits are performed." msgstr "" -#: howto/regex.rst:1099 +#: howto/regex.rst:1095 msgid "" "You can limit the number of splits made, by passing a value for *maxsplit*. " "When *maxsplit* is nonzero, at most *maxsplit* splits will be made, and the " @@ -1563,7 +1559,7 @@ msgid "" "characters. ::" msgstr "" -#: howto/regex.rst:1111 +#: howto/regex.rst:1107 msgid "" "Sometimes you're not only interested in what the text between delimiters is, " "but also need to know what the delimiter was. If capturing parentheses are " @@ -1571,17 +1567,17 @@ msgid "" "Compare the following calls::" msgstr "" -#: howto/regex.rst:1123 +#: howto/regex.rst:1119 msgid "" "The module-level function :func:`re.split` adds the RE to be used as the " "first argument, but is otherwise the same. ::" msgstr "" -#: howto/regex.rst:1135 +#: howto/regex.rst:1131 msgid "Search and Replace" msgstr "" -#: howto/regex.rst:1137 +#: howto/regex.rst:1133 msgid "" "Another common task is to find all the matches for a pattern, and replace " "them with a different string. The :meth:`~re.Pattern.sub` method takes a " @@ -1589,40 +1585,40 @@ msgid "" "string to be processed." msgstr "" -#: howto/regex.rst:1144 +#: howto/regex.rst:1140 msgid "" "Returns the string obtained by replacing the leftmost non-overlapping " "occurrences of the RE in *string* by the replacement *replacement*. If the " "pattern isn't found, *string* is returned unchanged." msgstr "" -#: howto/regex.rst:1148 +#: howto/regex.rst:1144 msgid "" "The optional argument *count* is the maximum number of pattern occurrences " "to be replaced; *count* must be a non-negative integer. The default value " "of 0 means to replace all occurrences." msgstr "" -#: howto/regex.rst:1152 +#: howto/regex.rst:1148 msgid "" "Here's a simple example of using the :meth:`~re.Pattern.sub` method. It " "replaces colour names with the word ``colour``::" msgstr "" -#: howto/regex.rst:1161 +#: howto/regex.rst:1157 msgid "" "The :meth:`~re.Pattern.subn` method does the same work, but returns a 2-" "tuple containing the new string value and the number of replacements that " "were performed::" msgstr "" -#: howto/regex.rst:1170 +#: howto/regex.rst:1166 msgid "" "Empty matches are replaced only when they're not adjacent to a previous " "empty match. ::" msgstr "" -#: howto/regex.rst:1177 +#: howto/regex.rst:1173 msgid "" "If *replacement* is a string, any backslash escapes in it are processed. " "That is, ``\\n`` is converted to a single newline character, ``\\r`` is " @@ -1633,13 +1629,13 @@ msgid "" "string." msgstr "" -#: howto/regex.rst:1184 +#: howto/regex.rst:1180 msgid "" "This example matches the word ``section`` followed by a string enclosed in " "``{``, ``}``, and changes ``section`` to ``subsection``::" msgstr "" -#: howto/regex.rst:1191 +#: howto/regex.rst:1187 msgid "" "There's also a syntax for referring to named groups as defined by the ``(?" "P...)`` syntax. ``\\g`` will use the substring matched by the " @@ -1651,7 +1647,7 @@ msgid "" "but use all three variations of the replacement string. ::" msgstr "" -#: howto/regex.rst:1208 +#: howto/regex.rst:1204 msgid "" "*replacement* can also be a function, which gives you even more control. If " "*replacement* is a function, the function is called for every non-" @@ -1660,13 +1656,13 @@ msgid "" "this information to compute the desired replacement string and return it." msgstr "" -#: howto/regex.rst:1214 +#: howto/regex.rst:1210 msgid "" "In the following example, the replacement function translates decimals into " "hexadecimal::" msgstr "" -#: howto/regex.rst:1226 +#: howto/regex.rst:1222 msgid "" "When using the module-level :func:`re.sub` function, the pattern is passed " "as the first argument. The pattern may be provided as an object or as a " @@ -1676,11 +1672,11 @@ msgid "" "x'``." msgstr "" -#: howto/regex.rst:1234 +#: howto/regex.rst:1230 msgid "Common Problems" msgstr "" -#: howto/regex.rst:1236 +#: howto/regex.rst:1232 msgid "" "Regular expressions are a powerful tool for some applications, but in some " "ways their behaviour isn't intuitive and at times they don't behave the way " @@ -1688,11 +1684,11 @@ msgid "" "pitfalls." msgstr "" -#: howto/regex.rst:1242 +#: howto/regex.rst:1238 msgid "Use String Methods" msgstr "" -#: howto/regex.rst:1244 +#: howto/regex.rst:1240 msgid "" "Sometimes using the :mod:`re` module is a mistake. If you're matching a " "fixed string, or a single character class, and you're not using any :mod:" @@ -1704,7 +1700,7 @@ msgid "" "engine." msgstr "" -#: howto/regex.rst:1252 +#: howto/regex.rst:1248 msgid "" "One example might be replacing a single fixed string with another one; for " "example, you might replace ``word`` with ``deed``. :func:`re.sub` seems " @@ -1717,7 +1713,7 @@ msgid "" "meth:`!replace`'s abilities.)" msgstr "" -#: howto/regex.rst:1261 +#: howto/regex.rst:1257 msgid "" "Another common task is deleting every occurrence of a single character from " "a string or replacing it with another single character. You might do this " @@ -1726,17 +1722,17 @@ msgid "" "operation can be." msgstr "" -#: howto/regex.rst:1267 +#: howto/regex.rst:1263 msgid "" "In short, before turning to the :mod:`re` module, consider whether your " "problem can be solved with a faster and simpler string method." msgstr "" -#: howto/regex.rst:1272 +#: howto/regex.rst:1268 msgid "match() versus search()" msgstr "" -#: howto/regex.rst:1274 +#: howto/regex.rst:1270 msgid "" "The :func:`~re.match` function only checks if the RE matches at the " "beginning of the string while :func:`~re.search` will scan forward through " @@ -1746,13 +1742,13 @@ msgid "" "report it. ::" msgstr "" -#: howto/regex.rst:1285 +#: howto/regex.rst:1281 msgid "" "On the other hand, :func:`~re.search` will scan forward through the string, " "reporting the first match it finds. ::" msgstr "" -#: howto/regex.rst:1293 +#: howto/regex.rst:1289 msgid "" "Sometimes you'll be tempted to keep using :func:`re.match`, and just add ``." "*`` to the front of your RE. Resist this temptation and use :func:`re." @@ -1764,18 +1760,18 @@ msgid "" "starting character, only trying the full match if a ``'C'`` is found." msgstr "" -#: howto/regex.rst:1302 +#: howto/regex.rst:1298 msgid "" "Adding ``.*`` defeats this optimization, requiring scanning to the end of " "the string and then backtracking to find a match for the rest of the RE. " "Use :func:`re.search` instead." msgstr "" -#: howto/regex.rst:1308 +#: howto/regex.rst:1304 msgid "Greedy versus Non-Greedy" msgstr "" -#: howto/regex.rst:1310 +#: howto/regex.rst:1306 msgid "" "When repeating a regular expression, as in ``a*``, the resulting action is " "to consume as much of the pattern as possible. This fact often bites you " @@ -1784,7 +1780,7 @@ msgid "" "HTML tag doesn't work because of the greedy nature of ``.*``. ::" msgstr "" -#: howto/regex.rst:1324 +#: howto/regex.rst:1320 msgid "" "The RE matches the ``'<'`` in ``''``, and the ``.*`` consumes the rest " "of the string. There's still more left in the RE, though, and the ``>`` " @@ -1794,7 +1790,7 @@ msgid "" "``''``, which isn't what you want." msgstr "" -#: howto/regex.rst:1331 +#: howto/regex.rst:1327 msgid "" "In this case, the solution is to use the non-greedy quantifiers ``*?``, ``+?" "``, ``??``, or ``{m,n}?``, which match as *little* text as possible. In the " @@ -1803,7 +1799,7 @@ msgid "" "retrying the ``'>'`` at every step. This produces just the right result::" msgstr "" -#: howto/regex.rst:1340 +#: howto/regex.rst:1336 msgid "" "(Note that parsing HTML or XML with regular expressions is painful. Quick-" "and-dirty patterns will handle common cases, but HTML and XML have special " @@ -1813,11 +1809,11 @@ msgid "" "such tasks.)" msgstr "" -#: howto/regex.rst:1348 +#: howto/regex.rst:1344 msgid "Using re.VERBOSE" msgstr "" -#: howto/regex.rst:1350 +#: howto/regex.rst:1346 msgid "" "By now you've probably noticed that regular expressions are a very compact " "notation, but they're not terribly readable. REs of moderate complexity can " @@ -1825,14 +1821,14 @@ msgid "" "making them difficult to read and understand." msgstr "" -#: howto/regex.rst:1355 +#: howto/regex.rst:1351 msgid "" "For such REs, specifying the :const:`re.VERBOSE` flag when compiling the " "regular expression can be helpful, because it allows you to format the " "regular expression more clearly." msgstr "" -#: howto/regex.rst:1359 +#: howto/regex.rst:1355 msgid "" "The ``re.VERBOSE`` flag has several effects. Whitespace in the regular " "expression that *isn't* inside a character class is ignored. This means " @@ -1843,15 +1839,15 @@ msgid "" "quoted strings, this enables REs to be formatted more neatly::" msgstr "" -#: howto/regex.rst:1376 +#: howto/regex.rst:1372 msgid "This is far more readable than::" msgstr "" -#: howto/regex.rst:1382 +#: howto/regex.rst:1378 msgid "Feedback" msgstr "" -#: howto/regex.rst:1384 +#: howto/regex.rst:1380 msgid "" "Regular expressions are a complicated topic. Did this document help you " "understand them? Were there parts that were unclear, or Problems you " @@ -1859,7 +1855,7 @@ msgid "" "improvements to the author." msgstr "" -#: howto/regex.rst:1389 +#: howto/regex.rst:1385 msgid "" "The most complete book on regular expressions is almost certainly Jeffrey " "Friedl's Mastering Regular Expressions, published by O'Reilly. " diff --git a/install/index.po b/install/index.po deleted file mode 100644 index 8cb9d9670..000000000 --- a/install/index.po +++ /dev/null @@ -1,2015 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" -"PO-Revision-Date: 2023-03-08 10:14-0500\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 3.2.2\n" - -#: install/index.rst:7 -msgid "Installing Python Modules (Legacy version)" -msgstr "Python Modüllerini Yükleme (Eski sürüm)" - -#: install/index.rst:0 -msgid "Author" -msgstr "Yazar" - -#: install/index.rst:9 -msgid "Greg Ward" -msgstr "Greg Ward" - -#: install/index.rst:15 -msgid "" -"The entire ``distutils`` package has been deprecated and will be removed in " -"Python 3.12. This documentation is retained as a reference only, and will be " -"removed with the package. See the :ref:`What's New ` " -"entry for more information." -msgstr "" -"Tüm ``distutils`` paketi kullanımdan kaldırıldı ve Python 3.12'de " -"kaldırılacak. Bu belgeler yalnızca referans olarak tutulur ve paketle " -"birlikte kaldırılacaktır. Daha fazla bilgi için :ref:`What's New ` girişine bakın." - -#: install/index.rst:23 -msgid ":ref:`installing-index`" -msgstr ":ref:`installing-index`" - -#: install/index.rst:23 -msgid "" -"The up to date module installation documentation. For regular Python usage, " -"you almost certainly want that document rather than this one." -msgstr "" -"Güncel modül kurulum belgeleri. Normal Python kullanımı için, neredeyse " -"kesinlikle bu belgeden ziyade o belgeyi istersiniz." - -#: distutils/_setuptools_disclaimer.rst:3 -msgid "" -"This document is being retained solely until the ``setuptools`` " -"documentation at https://setuptools.readthedocs.io/en/latest/setuptools.html " -"independently covers all of the relevant information currently included here." -msgstr "" -"Bu belge yalnızca https://setuptools.readthedocs.io/en/latest/setuptools." -"html adresindeki ``setuptools`` belgeleri burada bulunan ilgili tüm " -"bilgileri bağımsız olarak kapsayana kadar saklanacaktır." - -#: install/index.rst:30 -msgid "" -"This guide only covers the basic tools for building and distributing " -"extensions that are provided as part of this version of Python. Third party " -"tools offer easier to use and more secure alternatives. Refer to the `quick " -"recommendations section `__ in the Python Packaging User Guide for more information." -msgstr "" -"Bu kılavuz yalnızca, Python'un bu sürümünün bir parçası olarak sağlanan " -"uzantıları oluşturmaya ve dağıtmaya yönelik temel araçları kapsar. Üçüncü " -"taraf araçlar, kullanımı daha kolay ve daha güvenli alternatifler sunar. " -"Daha fazla bilgi için Python Paketleme Kullanıcı Kılavuzundaki `hızlı " -"öneriler bölümüne `__ bakın." - -#: install/index.rst:41 -msgid "Introduction" -msgstr "Giriş" - -#: install/index.rst:43 -msgid "" -"In Python 2.0, the ``distutils`` API was first added to the standard " -"library. This provided Linux distro maintainers with a standard way of " -"converting Python projects into Linux distro packages, and system " -"administrators with a standard way of installing them directly onto target " -"systems." -msgstr "" -"Python 2.0'da ``distutils`` API'ı ilk olarak standart kitaplığa eklendi. Bu, " -"Linux dağıtım yöneticilerine Python projelerini Linux dağıtım paketlerine " -"dönüştürmenin standart bir yolunu ve sistem yöneticilerine bunları doğrudan " -"hedef sistemlere yüklemenin standart bir yolunu sağladı." - -#: install/index.rst:48 -msgid "" -"In the many years since Python 2.0 was released, tightly coupling the build " -"system and package installer to the language runtime release cycle has " -"turned out to be problematic, and it is now recommended that projects use " -"the ``pip`` package installer and the ``setuptools`` build system, rather " -"than using ``distutils`` directly." -msgstr "" -"Python 2.0'ın piyasaya sürülmesinden bu yana geçen uzun yıllardan bu yana, " -"yapı sistemi ve paket yükleyiciyi dil çalışma zamanı sürüm döngüsüne sıkı " -"bir şekilde bağlamak sorunlu hale geldi ve artık projelerin ``pip`` paket " -"yükleyicisini ve doğrudan ``distutils`` kullanmak yerine ``setuptools`` yapı " -"sistemi." - -#: install/index.rst:54 -msgid "" -"See :ref:`installing-index` and :ref:`distributing-index` for more details." -msgstr "" -"Daha fazla ayrıntı için :ref:`installing-index` ve :ref:`distributing-index` " -"'e bakın." - -#: install/index.rst:56 -msgid "" -"This legacy documentation is being retained only until we're confident that " -"the ``setuptools`` documentation covers everything needed." -msgstr "" -"Bu eski belgeler, yalnızca ``setuptools`` belgelerinin gereken her şeyi " -"kapsadığından emin olana kadar tutulur." - -#: install/index.rst:62 -msgid "Distutils based source distributions" -msgstr "Distutils tabanlı kaynak dağıtımları" - -#: install/index.rst:64 -msgid "" -"If you download a module source distribution, you can tell pretty quickly if " -"it was packaged and distributed in the standard way, i.e. using the " -"Distutils. First, the distribution's name and version number will be " -"featured prominently in the name of the downloaded archive, e.g. :file:" -"`foo-1.0.tar.gz` or :file:`widget-0.9.7.zip`. Next, the archive will unpack " -"into a similarly named directory: :file:`foo-1.0` or :file:`widget-0.9.7`. " -"Additionally, the distribution will contain a setup script :file:`setup.py`, " -"and a file named :file:`README.txt` or possibly just :file:`README`, which " -"should explain that building and installing the module distribution is a " -"simple matter of running one command from a terminal::" -msgstr "" -"Bir modül kaynak dağıtımı indirirseniz, bunun standart bir şekilde, yani " -"Distutils kullanılarak paketlenip dağıtılmadığını oldukça hızlı bir şekilde " -"anlayabilirsiniz. İlk olarak, dağıtımın adı ve sürüm numarası, indirilen " -"arşivin adında belirgin bir şekilde yer alacaktır, ör. :file:`foo-1.0.tar." -"gz` veya :file:`widget-0.9.7.zip`. Ardından, arşiv benzer adlı bir dizine " -"açılır: :file:`foo-1.0` veya :file:`widget-0.9.7`. Ek olarak, dağıtım bir " -"kurulum komut dosyası :file:`setup.py` ve :file:`README.txt` veya muhtemelen " -"sadece :file:`README` adlı bir dosya içerecek ve modül dağıtımının " -"oluşturulması ve kurulmasınının bir terminalden bir komut çalıştırmanın " -"basit bir meselesi olduğunu açıklamalıdır::" - -#: install/index.rst:77 -msgid "" -"For Windows, this command should be run from a command prompt window (:" -"menuselection:`Start --> Accessories`)::" -msgstr "" -"Windows için bu komut bir komut istemi penceresinden çalıştırılmalıdır (:" -"menuselection:`Start --> Accessories`)::" - -#: install/index.rst:82 -msgid "" -"If all these things are true, then you already know how to build and install " -"the modules you've just downloaded: Run the command above. Unless you need " -"to install things in a non-standard way or customize the build process, you " -"don't really need this manual. Or rather, the above command is everything " -"you need to get out of this manual." -msgstr "" -"Tüm bunlar doğruysa, yeni indirdiğiniz modülleri nasıl oluşturacağınızı ve " -"kuracağınızı zaten biliyorsunuzdur: Yukarıdaki komutu çalıştırın. Standart " -"olmayan bir şekilde bir şeyler kurmanız veya oluşturma sürecini " -"özelleştirmeniz gerekmiyorsa, bu kılavuza gerçekten ihtiyacınız yoktur. Veya " -"daha doğrusu, yukarıdaki komut, bu kılavuzdan çıkmanız için ihtiyacınız olan " -"her şeydir." - -#: install/index.rst:92 -msgid "Standard Build and Install" -msgstr "Standart Derleme ve Yükleme" - -#: install/index.rst:94 -msgid "" -"As described in section :ref:`inst-new-standard`, building and installing a " -"module distribution using the Distutils is usually one simple command to run " -"from a terminal::" -msgstr "" -":ref:`inst-new-standard` bölümünde açıklandığı gibi, Distutils kullanarak " -"bir modül dağıtımı oluşturmak ve kurmak genellikle bir terminalden " -"çalıştırılacak basit bir komuttur::" - -#: install/index.rst:104 -msgid "Platform variations" -msgstr "Platform varyasyonları" - -#: install/index.rst:106 -msgid "" -"You should always run the setup command from the distribution root " -"directory, i.e. the top-level subdirectory that the module source " -"distribution unpacks into. For example, if you've just downloaded a module " -"source distribution :file:`foo-1.0.tar.gz` onto a Unix system, the normal " -"thing to do is::" -msgstr "" -"Kurulum komutunu her zaman dağıtım kök dizininden, yani modül kaynak " -"dağıtımının paketini açtığı en üst düzey alt dizinden çalıştırmalısınız. " -"Örneğin, bir Unix sistemine yeni bir kaynak dağıtımı :file:`foo-1.0.tar.gz` " -"indirdiyseniz, yapmanız gereken normal şey:" - -#: install/index.rst:115 -msgid "" -"On Windows, you'd probably download :file:`foo-1.0.zip`. If you downloaded " -"the archive file to :file:`C:\\\\Temp`, then it would unpack into :file:`C:\\" -"\\Temp\\\\foo-1.0`; you can use either an archive manipulator with a " -"graphical user interface (such as WinZip) or a command-line tool (such as :" -"program:`unzip` or :program:`pkunzip`) to unpack the archive. Then, open a " -"command prompt window and run::" -msgstr "" -"Windows'ta muhtemelen :file:`foo-1.0.zip` dosyasını indirirsiniz. Arşiv " -"dosyasını :file:`C:\\\\Temp` konumuna indirdiyseniz, paketinden :file:`C:\\" -"\\Temp\\\\foo-1.0`; arşivi açmak için grafiksel kullanıcı arabirimli bir " -"arşiv manipülatörü (WinZip gibi) veya bir komut satırı aracı (örneğin :" -"program:`unzip` veya :program:`pkunzip`) kullanabilirsiniz. Ardından, bir " -"komut istemi penceresi açın ve şunu çalıştırın::" - -#: install/index.rst:129 -msgid "Splitting the job up" -msgstr "İşi bölmek" - -#: install/index.rst:131 -msgid "" -"Running ``setup.py install`` builds and installs all modules in one run. If " -"you prefer to work incrementally---especially useful if you want to " -"customize the build process, or if things are going wrong---you can use the " -"setup script to do one thing at a time. This is particularly helpful when " -"the build and install will be done by different users---for example, you " -"might want to build a module distribution and hand it off to a system " -"administrator for installation (or do it yourself, with super-user " -"privileges)." -msgstr "" -"``setup.py install`` çalıştırıldığında, tüm modüller tek bir çalıştırmada " -"oluşturulur ve kurulur. Kademeli olarak çalışmayı tercih ediyorsanız -- " -"özellikle oluşturma sürecini özelleştirmek istiyorsanız veya işler ters " -"gidiyorsa kullanışlıdır -- her seferinde bir şey yapmak için kurulum komut " -"dosyasını kullanabilirsiniz. Bu, özellikle derleme ve yükleme farklı " -"kullanıcılar tarafından yapılacaksa yararlıdır -- örneğin, bir modül " -"dağıtımı oluşturmak ve yükleme için bir sistem yöneticisine teslim etmek " -"(veya süper kullanıcı ayrıcalıklarıyla kendiniz yapmak) isteyebilirsiniz. )." - -#: install/index.rst:139 -msgid "" -"For example, you can build everything in one step, and then install " -"everything in a second step, by invoking the setup script twice::" -msgstr "" -"Örneğin, her şeyi bir adımda oluşturabilir ve ardından kurulum komut " -"dosyasını iki kez çağırarak her şeyi ikinci bir adımda yükleyebilirsiniz:" - -#: install/index.rst:145 -msgid "" -"If you do this, you will notice that running the :command:`install` command " -"first runs the :command:`build` command, which---in this case---quickly " -"notices that it has nothing to do, since everything in the :file:`build` " -"directory is up-to-date." -msgstr "" -"Bunu yaparsanız, :command:`install` komutunu çalıştırmanın önce :command:" -"`build` komutunu çalıştırdığını fark edeceksiniz, bu komut --bu durumda --" -"hızlı bir şekilde ilgisi olmadığını fark edecek, çünkü her şey :file:`build` " -"dizini günceldir." - -#: install/index.rst:150 -msgid "" -"You may not need this ability to break things down often if all you do is " -"install modules downloaded off the 'net, but it's very handy for more " -"advanced tasks. If you get into distributing your own Python modules and " -"extensions, you'll run lots of individual Distutils commands on their own." -msgstr "" -"Tek yapmanız gereken ağdan indirilen modülleri kurmaksa, işleri parçalamak " -"için bu yeteneğe ihtiyacınız olmayabilir, ancak daha gelişmiş görevler için " -"çok kullanışlıdır. Kendi Python modüllerinizi ve uzantılarınızı dağıtmaya " -"başlarsanız, birçok Distutils komutunu kendi başlarına çalıştıracaksınız." - -#: install/index.rst:159 -msgid "How building works" -msgstr "Building nasıl çalışır" - -#: install/index.rst:161 -msgid "" -"As implied above, the :command:`build` command is responsible for putting " -"the files to install into a *build directory*. By default, this is :file:" -"`build` under the distribution root; if you're excessively concerned with " -"speed, or want to keep the source tree pristine, you can change the build " -"directory with the :option:`!--build-base` option. For example::" -msgstr "" -"Yukarıda belirtildiği gibi, :command:`build` komutu, kurulacak dosyaların " -"bir *build directory* ye yerleştirilmesinden sorumludur. Varsayılan olarak, " -"bu, dağıtım kökünün altındaki :file:`build` 'dir; Hızla aşırı derecede " -"ilgileniyorsanız veya kaynak ağacı bozulmamış tutmak istiyorsanız, derleme " -"dizinini :option:`!--build-base` seçeneğiyle değiştirebilirsiniz. Örneğin::" - -#: install/index.rst:169 -msgid "" -"(Or you could do this permanently with a directive in your system or " -"personal Distutils configuration file; see section :ref:`inst-config-" -"files`.) Normally, this isn't necessary." -msgstr "" -"(Ya da bunu sisteminizdeki veya kişisel Distutils yapılandırma dosyanızdaki " -"bir yönerge ile kalıcı olarak yapabilirsiniz; bkz. bölüm :ref:`inst-config-" -"files`.) Normalde, bu gerekli değildir." - -#: install/index.rst:173 -msgid "The default layout for the build tree is as follows::" -msgstr "Derleme ağacının varsayılan düzeni aşağıdaki gibidir:" - -#: install/index.rst:180 -msgid "" -"where ```` expands to a brief description of the current OS/hardware " -"platform and Python version. The first form, with just a :file:`lib` " -"directory, is used for \"pure module distributions\"---that is, module " -"distributions that include only pure Python modules. If a module " -"distribution contains any extensions (modules written in C/C++), then the " -"second form, with two ```` directories, is used. In that case, the :" -"file:`temp.{plat}` directory holds temporary files generated by the compile/" -"link process that don't actually get installed. In either case, the :file:" -"`lib` (or :file:`lib.{plat}`) directory contains all Python modules (pure " -"Python and extensions) that will be installed." -msgstr "" -"burada ```` mevcut işletim sistemi/donanım platformunun ve Python " -"sürümünün kısa bir açıklamasına genişler. Yalnızca bir :file:`lib` dizini " -"içeren ilk biçim, \"saf modül dağıtımları\" için kullanılır---yani, yalnızca " -"salt Python modüllerini içeren modül dağıtımları. Bir modül dağıtımı " -"herhangi bir uzantı içeriyorsa (C/C++ ile yazılmış modüller), o zaman iki " -"```` dizinli ikinci form kullanılır. Bu durumda, :file:`temp.{plat}` " -"dizini, derleme/bağlantı işlemi tarafından oluşturulan ve aslında " -"yüklenmeyen geçici dosyaları tutar. Her iki durumda da, :file:`lib` (veya :" -"file:`lib.{plat}`) dizini, kurulacak tüm Python modüllerini (saf Python ve " -"uzantıları) içerir." - -#: install/index.rst:190 -msgid "" -"In the future, more directories will be added to handle Python scripts, " -"documentation, binary executables, and whatever else is needed to handle the " -"job of installing Python modules and applications." -msgstr "" -"Gelecekte, Python komut dosyalarını, belgeleri, ikili yürütülebilir " -"dosyaları ve Python modüllerini ve uygulamalarını yükleme işini yürütmek " -"için gereken diğer her şeyi işlemek için daha fazla dizin eklenecektir." - -#: install/index.rst:198 -msgid "How installation works" -msgstr "Kurulum nasıl çalışır" - -#: install/index.rst:200 -msgid "" -"After the :command:`build` command runs (whether you run it explicitly, or " -"the :command:`install` command does it for you), the work of the :command:" -"`install` command is relatively simple: all it has to do is copy everything " -"under :file:`build/lib` (or :file:`build/lib.{plat}`) to your chosen " -"installation directory." -msgstr "" -":command:`build` komutu çalıştırıldıktan sonra (ister açık bir şekilde " -"çalıştırın, ister :command:`install` komutu sizin için yapar), :command:" -"`install` komutunun çalışması nispeten basittir: sahip olduğu tek şey " -"yapılacak şey :file:`build/lib` (veya :file:`build/lib.{plat}`) altındaki " -"her şeyi seçtiğiniz kurulum dizinine kopyalamaktır." - -#: install/index.rst:206 -msgid "" -"If you don't choose an installation directory---i.e., if you just run " -"``setup.py install``\\ ---then the :command:`install` command installs to " -"the standard location for third-party Python modules. This location varies " -"by platform and by how you built/installed Python itself. On Unix (and " -"macOS, which is also Unix-based), it also depends on whether the module " -"distribution being installed is pure Python or contains extensions (\"non-" -"pure\"):" -msgstr "" -"Bir kurulum dizini seçmezseniz -- yani, sadece ``setup.py install``\\ " -"komutunu çalıştırırsanız -- o zaman :command:`install` komutu üçüncü taraf " -"Python modülleri için standart konuma yüklenir . Bu konum, platforma ve " -"Python'un kendisini nasıl oluşturduğunuza/kurduğunuza göre değişir. Unix'te " -"(ve aynı zamanda Unix tabanlı olan macOS'ta), yüklenen modül dağıtımının saf " -"Python olup olmadığına veya uzantılar (\"non pürse\") içerip içermediğine de " -"bağlıdır:" - -#: install/index.rst:216 -msgid "Platform" -msgstr "Platform" - -#: install/index.rst:216 -msgid "Standard installation location" -msgstr "Standart kurulum lokasyonu" - -#: install/index.rst:216 -msgid "Default value" -msgstr "Varsayılan değer" - -#: install/index.rst:742 install/index.rst:754 -msgid "Notes" -msgstr "Notlar" - -#: install/index.rst:218 -msgid "Unix (pure)" -msgstr "Unix (pure)" - -#: install/index.rst:431 -msgid ":file:`{prefix}/lib/python{X.Y}/site-packages`" -msgstr ":file:`{prefix}/lib/python{X.Y}/site-packages`" - -#: install/index.rst:220 -msgid ":file:`/usr/local/lib/python{X.Y}/site-packages`" -msgstr ":file:`/usr/local/lib/python{X.Y}/site-packages`" - -#: install/index.rst:220 install/index.rst:744 -msgid "\\(1)" -msgstr "\\(1)" - -#: install/index.rst:220 -msgid "Unix (non-pure)" -msgstr "Unix (non-pure)" - -#: install/index.rst:432 -msgid ":file:`{exec-prefix}/lib/python{X.Y}/site-packages`" -msgstr ":file:`{exec-prefix}/lib/python{X.Y}/site-packages`" - -#: install/index.rst:222 -msgid "Windows" -msgstr "Windows" - -#: install/index.rst:483 -msgid ":file:`{prefix}\\\\Lib\\\\site-packages`" -msgstr ":file:`{prefix}\\\\Lib\\\\site-packages`" - -#: install/index.rst:222 -msgid ":file:`C:\\\\Python{XY}\\\\Lib\\\\site-packages`" -msgstr ":file:`C:\\\\Python{XY}\\\\Lib\\\\site-packages`" - -#: install/index.rst:746 -msgid "\\(2)" -msgstr "\\(2)" - -#: install/index.rst:766 -msgid "Notes:" -msgstr "Notlar:" - -#: install/index.rst:228 -msgid "" -"Most Linux distributions include Python as a standard part of the system, " -"so :file:`{prefix}` and :file:`{exec-prefix}` are usually both :file:`/usr` " -"on Linux. If you build Python yourself on Linux (or any Unix-like system), " -"the default :file:`{prefix}` and :file:`{exec-prefix}` are :file:`/usr/" -"local`." -msgstr "" -"Çoğu Linux dağıtımı Python'u sistemin standart bir parçası olarak içerir, bu " -"nedenle :file:`{prefix}` ve :file:`{exec-prefix}` genellikle Linux'ta :file:" -"`/usr` 'dır. Python'u Linux'ta (veya herhangi bir Unix benzeri sistemde) " -"kendiniz kurarsanız, varsayılan :file:`{prefix}` ve :file:`{exec-prefix}` :" -"file:`/usr/local` şeklindedir." - -#: install/index.rst:234 -msgid "" -"The default installation directory on Windows was :file:`C:\\\\Program " -"Files\\\\Python` under Python 1.6a1, 1.5.2, and earlier." -msgstr "" -"Windows'ta varsayılan kurulum dizini Python 1.6a1, 1.5.2 ve önceki " -"sürümlerde :file:`C:\\\\Program Files\\\\Python` idi." - -#: install/index.rst:237 -msgid "" -":file:`{prefix}` and :file:`{exec-prefix}` stand for the directories that " -"Python is installed to, and where it finds its libraries at run-time. They " -"are always the same under Windows, and very often the same under Unix and " -"macOS. You can find out what your Python installation uses for :file:" -"`{prefix}` and :file:`{exec-prefix}` by running Python in interactive mode " -"and typing a few simple commands. Under Unix, just type ``python`` at the " -"shell prompt. Under Windows, choose :menuselection:`Start --> Programs --> " -"Python X.Y --> Python (command line)`. Once the interpreter is started, " -"you type Python code at the prompt. For example, on my Linux system, I type " -"the three Python statements shown below, and get the output as shown, to " -"find out my :file:`{prefix}` and :file:`{exec-prefix}`:" -msgstr "" -":file:`{prefix}` ve :file:`{exec-prefix}` Python'un kurulu olduğu dizinleri " -"ve çalışma zamanında kütüphanelerini nerede bulduğunu gösterir. Windows " -"altında her zaman aynıdırlar ve çoğu zaman Unix ve macOS altında aynıdırlar. " -"Python kurulumunuzun :file:`{prefix}` ve :file:`{exec-prefix}` için ne " -"kullandığını Python'u etkileşimli modda çalıştırarak ve birkaç basit komut " -"yazarak öğrenebilirsiniz. Unix altında, kabuk istemine ``python`` yazmanız " -"yeterlidir. Windows altında, :menuselection:`Başlat --> Programlar --> " -"Python X.Y --> Python (komut satırı)` öğesini seçin. Yorumlayıcı " -"başlatıldığında, komut istemine Python kodunu yazarsınız. Örneğin, Linux " -"sistemimde, :file:`{prefix}` ve :file:`{exec-prefix}` i bulmak için aşağıda " -"gösterilen üç Python ifadesini yazıyorum ve gösterildiği gibi çıktı alıyorum:" - -#: install/index.rst:259 -msgid "" -"A few other placeholders are used in this document: :file:`{X.Y}` stands for " -"the version of Python, for example ``3.2``; :file:`{abiflags}` will be " -"replaced by the value of :data:`sys.abiflags` or the empty string for " -"platforms which don't define ABI flags; :file:`{distname}` will be replaced " -"by the name of the module distribution being installed. Dots and " -"capitalization are important in the paths; for example, a value that uses " -"``python3.2`` on UNIX will typically use ``Python32`` on Windows." -msgstr "" -"Bu belgede birkaç başka yer tutucu kullanılmıştır: :file:`{X.Y}` Python " -"sürümünü temsil eder, örneğin ``3.2``; :file:`{abiflags}`, :data:`sys." -"abiflags` değeri veya ABI bayrakları tanımlamayan platformlar için boş dize " -"ile değiştirilecektir; :file:`{distname}`, kurulmakta olan modül dağıtımının " -"adıyla değiştirilecektir. Yollarda noktalar ve büyük harf kullanımı " -"önemlidir; örneğin, UNIX'te ``python3.2`` 'yi kullanan bir değer, Windows'ta " -"genellikle ``Python32`` 'yi kullanır." - -#: install/index.rst:267 -msgid "" -"If you don't want to install modules to the standard location, or if you " -"don't have permission to write there, then you need to read about alternate " -"installations in section :ref:`inst-alt-install`. If you want to customize " -"your installation directories more heavily, see section :ref:`inst-custom-" -"install` on custom installations." -msgstr "" -"Modülleri standart konuma kurmak istemiyorsanız veya oraya yazma izniniz " -"yoksa, alternatif kurulumlar hakkında :ref:`inst-alt-install` bölümünde " -"okumanız gerekir. Kurulum dizinlerinizi daha yoğun bir şekilde özelleştirmek " -"istiyorsanız, özel kurulumlarla ilgili :ref:`inst-custom-install` bölümüne " -"bakın." - -#: install/index.rst:277 -msgid "Alternate Installation" -msgstr "Alternatif Kurulum" - -#: install/index.rst:279 -msgid "" -"Often, it is necessary or desirable to install modules to a location other " -"than the standard location for third-party Python modules. For example, on " -"a Unix system you might not have permission to write to the standard third-" -"party module directory. Or you might wish to try out a module before making " -"it a standard part of your local Python installation. This is especially " -"true when upgrading a distribution already present: you want to make sure " -"your existing base of scripts still works with the new version before " -"actually upgrading." -msgstr "" -"Çoğu zaman, modüllerin üçüncü taraf Python modülleri için standart konumdan " -"farklı bir konuma kurulması gerekli veya istenir. Örneğin, bir Unix " -"sisteminde standart üçüncü taraf modül dizinine yazma izniniz olmayabilir. " -"Veya bir modülü yerel Python kurulumunuzun standart bir parçası yapmadan " -"önce denemek isteyebilirsiniz. Bu özellikle halihazırda mevcut olan bir " -"dağıtımı yükseltirken geçerlidir: gerçekten yükseltmeden önce mevcut komut " -"dosyası tabanınızın yeni sürümle hala çalıştığından emin olmak istersiniz." - -#: install/index.rst:287 -msgid "" -"The Distutils :command:`install` command is designed to make installing " -"module distributions to an alternate location simple and painless. The " -"basic idea is that you supply a base directory for the installation, and " -"the :command:`install` command picks a set of directories (called an " -"*installation scheme*) under this base directory in which to install files. " -"The details differ across platforms, so read whichever of the following " -"sections applies to you." -msgstr "" -"Distutils :command:`install` komutu, modül dağıtımlarını alternatif bir " -"konuma yüklemeyi basit ve zahmetsiz hale getirmek için tasarlanmıştır. Temel " -"fikir, kurulum için bir temel dizin sağlamanız ve :command:`install` " -"komutunun, dosyaların kurulacağı bu temel dizin altında bir dizi dizini " -"(*installation scheme* olarak adlandırılır) seçmesidir. Ayrıntılar " -"platformlar arasında farklılık gösterir, bu nedenle aşağıdaki bölümlerden " -"hangisi size uyuyorsa onu okuyun." - -#: install/index.rst:295 -msgid "" -"Note that the various alternate installation schemes are mutually exclusive: " -"you can pass ``--user``, or ``--home``, or ``--prefix`` and ``--exec-" -"prefix``, or ``--install-base`` and ``--install-platbase``, but you can't " -"mix from these groups." -msgstr "" -"Çeşitli alternatif kurulum şemalarının birbirini dışladığını unutmayın: ``--" -"user`` veya ``--home`` veya ``--prefix`` ve ``--exec-prefix`` " -"iletebilirsiniz, veya ``--install-base`` ve ``--install-platbase``, ancak bu " -"gruplardan karıştıramazsınız." - -#: install/index.rst:304 -msgid "Alternate installation: the user scheme" -msgstr "Alternatif kurulum: kullanıcı şeması" - -#: install/index.rst:306 -msgid "" -"This scheme is designed to be the most convenient solution for users that " -"don't have write permission to the global site-packages directory or don't " -"want to install into it. It is enabled with a simple option::" -msgstr "" -"Bu şema, global site paketleri dizinine yazma izni olmayan veya içine " -"yüklemek istemeyen kullanıcılar için en uygun çözüm olacak şekilde " -"tasarlanmıştır. Basit bir seçenekle etkinleştirilir::" - -#: install/index.rst:312 -#, fuzzy -msgid "" -"Files will be installed into subdirectories of :const:`site.USER_BASE` " -"(written as :file:`{userbase}` hereafter). This scheme installs pure Python " -"modules and extension modules in the same location (also known as :const:" -"`site.USER_SITE`). Here are the values for UNIX, including macOS:" -msgstr "" -"Dosyalar :data:`site.USER_BASE` (bundan sonra :file:`{userbase}` şeklinde " -"yazılacaktır) alt dizinlerine kurulacaktır. Bu şema, saf Python modüllerini " -"ve uzantı modüllerini aynı konuma kurar (ayrıca :data:`site.USER_SITE` " -"olarak da bilinir). İşte macOS dahil UNIX değerleri:" - -#: install/index.rst:329 install/index.rst:429 install/index.rst:506 -#: install/index.rst:754 -msgid "Type of file" -msgstr "Dosya tipi" - -#: install/index.rst:329 install/index.rst:429 install/index.rst:481 -msgid "Installation directory" -msgstr "Kurulum dizini" - -#: install/index.rst:331 install/index.rst:483 -msgid "modules" -msgstr "modüller" - -#: install/index.rst:320 -msgid ":file:`{userbase}/lib/python{X.Y}/site-packages`" -msgstr ":file:`{userbase}/lib/python{X.Y}/site-packages`" - -#: install/index.rst:332 install/index.rst:433 install/index.rst:511 -msgid "scripts" -msgstr "scriptler" - -#: install/index.rst:321 -msgid ":file:`{userbase}/bin`" -msgstr ":file:`{userbase}/bin`" - -#: install/index.rst:333 install/index.rst:434 install/index.rst:512 -msgid "data" -msgstr "data" - -#: install/index.rst:333 -msgid ":file:`{userbase}`" -msgstr ":file:`{userbase}`" - -#: install/index.rst:334 install/index.rst:435 install/index.rst:513 -msgid "C headers" -msgstr "C başlıkları" - -#: install/index.rst:323 -msgid ":file:`{userbase}/include/python{X.Y}{abiflags}/{distname}`" -msgstr ":file:`{userbase}/include/python{X.Y}{abiflags}/{distname}`" - -#: install/index.rst:326 -msgid "And here are the values used on Windows:" -msgstr "Windows'ta kullanılan değerler:" - -#: install/index.rst:331 -msgid ":file:`{userbase}\\\\Python{XY}\\\\site-packages`" -msgstr ":file:`{userbase}\\\\Python{XY}\\\\site-packages`" - -#: install/index.rst:332 -msgid ":file:`{userbase}\\\\Python{XY}\\\\Scripts`" -msgstr ":file:`{userbase}\\\\Python{XY}\\\\Scripts`" - -#: install/index.rst:334 -msgid ":file:`{userbase}\\\\Python{XY}\\\\Include\\\\{distname}`" -msgstr ":file:`{userbase}\\\\Python{XY}\\\\Include\\\\{distname}`" - -#: install/index.rst:337 -msgid "" -"The advantage of using this scheme compared to the other ones described " -"below is that the user site-packages directory is under normal conditions " -"always included in :data:`sys.path` (see :mod:`site` for more information), " -"which means that there is no additional step to perform after running the :" -"file:`setup.py` script to finalize the installation." -msgstr "" -"Aşağıda açıklanan diğerlerine kıyasla bu şemayı kullanmanın avantajı, normal " -"koşullar altında kullanıcı site paketleri dizininin her zaman :data:`sys." -"path` (daha fazla bilgi için :mod:`site` bölümüne bakın) içinde " -"bulunmasıdır. bu, kurulumu tamamlamak için :file:`setup.py` betiğini " -"çalıştırdıktan sonra gerçekleştirilecek ek bir adım olmadığı anlamına gelir." - -#: install/index.rst:343 -msgid "" -"The :command:`build_ext` command also has a ``--user`` option to add :file:" -"`{userbase}/include` to the compiler search path for header files and :file:" -"`{userbase}/lib` to the compiler search path for libraries as well as to the " -"runtime search path for shared C libraries (rpath)." -msgstr "" -":command:`build_ext` komutu ayrıca başlık dosyaları ve :file:`{userbase}/" -"lib` için derleyici arama yoluna :file:`{userbase}/include` eklemek için bir " -"``--user`` seçeneğine sahiptir. kütüphaneler için derleyici arama yolunun " -"yanı sıra paylaşılan C kütüphaneleri (rpath) için çalışma zamanı arama " -"yoluna." - -#: install/index.rst:352 -msgid "Alternate installation: the home scheme" -msgstr "Alternatif kurulum: ev şeması" - -#: install/index.rst:354 -msgid "" -"The idea behind the \"home scheme\" is that you build and maintain a " -"personal stash of Python modules. This scheme's name is derived from the " -"idea of a \"home\" directory on Unix, since it's not unusual for a Unix user " -"to make their home directory have a layout similar to :file:`/usr/` or :file:" -"`/usr/local/`. This scheme can be used by anyone, regardless of the " -"operating system they are installing for." -msgstr "" -"\"Ev planı\"nın arkasındaki fikir, Python modüllerinin kişisel bir zulasını " -"oluşturmanız ve sürdürmenizdir. Bu şemanın adı, Unix'teki bir \"ev\" dizini " -"fikrinden türetilmiştir, çünkü bir Unix kullanıcısının ev dizininin :file:`/" -"usr/` veya :file:`/usr'ye benzer bir düzene sahip olması alışılmadık bir " -"durum değildir. /yerel/`. Bu şema, yükledikleri işletim sistemi ne olursa " -"olsun herkes tarafından kullanılabilir." - -#: install/index.rst:361 -msgid "Installing a new module distribution is as simple as ::" -msgstr "Yeni bir modül dağıtımı kurmak şu kadar basittir ::" - -#: install/index.rst:365 -msgid "" -"where you can supply any directory you like for the :option:`!--home` " -"option. On Unix, lazy typists can just type a tilde (``~``); the :command:" -"`install` command will expand this to your home directory::" -msgstr "" -"burada :option:`!--home` seçeneği için istediğiniz dizini sağlayabilirsiniz. " -"Unix'te tembel daktilo yazarları yalnızca bir yaklaşık işareti (``~``) " -"yazabilir; :command:`install` komutu bunu ana dizininize genişletecektir::" - -#: install/index.rst:371 -#, fuzzy -msgid "" -"To make Python find the distributions installed with this scheme, you may " -"have to :ref:`modify Python's search path ` or edit :mod:`!" -"sitecustomize` (see :mod:`site`) to call :func:`site.addsitedir` or edit :" -"data:`sys.path`." -msgstr "" -"Python'un bu şema ile kurulu dağıtımları bulmasını sağlamak için, :ref:" -"`modify Python's search path ` değiştirmeniz veya aramak " -"için :mod:`sitecustomize` (bkz. :mod:`site`) düzenlemeniz gerekebilir. :func:" -"`site.addsitedir` veya :data:`sys.path` düzenleyin." - -#: install/index.rst:376 -msgid "" -"The :option:`!--home` option defines the installation base directory. Files " -"are installed to the following directories under the installation base as " -"follows:" -msgstr "" -":option:`!--home` seçeneği, kurulum temel dizinini tanımlar. Dosyalar, " -"kurulum tabanının altındaki aşağıdaki dizinlere aşağıdaki şekilde kurulur:" - -#: install/index.rst:382 -msgid ":file:`{home}/lib/python`" -msgstr ":file:`{home}/lib/python`" - -#: install/index.rst:383 -msgid ":file:`{home}/bin`" -msgstr ":file:`{home}/bin`" - -#: install/index.rst:384 -msgid ":file:`{home}`" -msgstr ":file:`{home}`" - -#: install/index.rst:385 -msgid ":file:`{home}/include/python/{distname}`" -msgstr ":file:`{home}/include/python/{distname}`" - -#: install/index.rst:388 -msgid "(Mentally replace slashes with backslashes if you're on Windows.)" -msgstr "" -"(Windows kullanıyorsanız, eğik çizgileri zihinsel olarak ters eğik çizgiyle " -"değiştirin.)" - -#: install/index.rst:394 -msgid "Alternate installation: Unix (the prefix scheme)" -msgstr "Alternatif kurulum: Unix (ön ek (prefix) şeması)" - -#: install/index.rst:396 -msgid "" -"The \"prefix scheme\" is useful when you wish to use one Python installation " -"to perform the build/install (i.e., to run the setup script), but install " -"modules into the third-party module directory of a different Python " -"installation (or something that looks like a different Python " -"installation). If this sounds a trifle unusual, it is---that's why the user " -"and home schemes come before. However, there are at least two known cases " -"where the prefix scheme will be useful." -msgstr "" -"\"Prefix şeması\", oluşturma/kurulum işlemini gerçekleştirmek için (yani " -"kurulum komut dosyasını çalıştırmak için) bir Python kurulumu kullanmak " -"istediğinizde, ancak modülleri farklı bir Python kurulumunun (veya farklı " -"bir Python kurulumuna benziyor). Bu kulağa biraz olağandışı geliyorsa, bu--" -"kullanıcı ve ev şemalarının önce gelmesinin nedeni budur. Bununla birlikte, " -"prefix şemasının yararlı olacağı bilinen en az iki durum vardır." - -#: install/index.rst:403 -msgid "" -"First, consider that many Linux distributions put Python in :file:`/usr`, " -"rather than the more traditional :file:`/usr/local`. This is entirely " -"appropriate, since in those cases Python is part of \"the system\" rather " -"than a local add-on. However, if you are installing Python modules from " -"source, you probably want them to go in :file:`/usr/local/lib/python2.{X}` " -"rather than :file:`/usr/lib/python2.{X}`. This can be done with ::" -msgstr "" -"İlk olarak, birçok Linux dağıtımının Python'u daha geleneksel :file:`/usr/" -"local` yerine :file:`/usr` içine koyduğunu düşünün. Bu tamamen uygundur, " -"çünkü bu durumlarda Python yerel bir eklentiden ziyade \"sistemin\" bir " -"parçasıdır. Ancak, Python modüllerini kaynaktan kuruyorsanız, muhtemelen " -"bunların :file:`/usr/lib/python2 yerine :file:`/usr/local/lib/python2.{X}` " -"içine girmesini istersiniz.{X }`. Şu şekilde yapılabilir ::" - -#: install/index.rst:412 -msgid "" -"Another possibility is a network filesystem where the name used to write to " -"a remote directory is different from the name used to read it: for example, " -"the Python interpreter accessed as :file:`/usr/local/bin/python` might " -"search for modules in :file:`/usr/local/lib/python2.{X}`, but those modules " -"would have to be installed to, say, :file:`/mnt/{@server}/export/lib/python2." -"{X}`. This could be done with ::" -msgstr "" -"Başka bir olasılık, uzak bir dizine yazmak için kullanılan adın onu okumak " -"için kullanılan addan farklı olduğu bir ağ dosya sistemidir: örneğin, :file:" -"`/usr/local/bin/python` olarak erişilen Python yorumlayıcısı için arama " -"yapabilir. modüller :file:`/usr/local/lib/python2.{X}` dizinindedir, ancak " -"bu modüllerin örneğin :file:`/mnt/{@server}/export/lib/python2 konumuna " -"yüklenmesi gerekir. {X}`. Şu şekilde yapılabilir ::" - -#: install/index.rst:421 -msgid "" -"In either case, the :option:`!--prefix` option defines the installation " -"base, and the :option:`!--exec-prefix` option defines the platform-specific " -"installation base, which is used for platform-specific files. (Currently, " -"this just means non-pure module distributions, but could be expanded to C " -"libraries, binary executables, etc.) If :option:`!--exec-prefix` is not " -"supplied, it defaults to :option:`!--prefix`. Files are installed as " -"follows:" -msgstr "" -"Her iki durumda da, :option:`!--prefix` seçeneği kurulum tabanını tanımlar " -"ve :option:`!--exec-prefix` seçeneği platforma özel dosyalar için kullanılan " -"platforma özel kurulum tabanını tanımlar. . (Şu anda, bu yalnızca saf " -"olmayan modül dağıtımları anlamına gelir, ancak C kütüphanelerine, ikili " -"yürütülebilir dosyalara vb. genişletilebilir.) :option:`!--exec-prefix` " -"sağlanmazsa, varsayılan olarak :option:`! --prefix`. Dosyalar aşağıdaki gibi " -"yüklenir:" - -#: install/index.rst:508 -msgid "Python modules" -msgstr "Python modülleri" - -#: install/index.rst:509 -msgid "extension modules" -msgstr "extension (uzatma) modülleri" - -#: install/index.rst:433 -msgid ":file:`{prefix}/bin`" -msgstr ":file:`{prefix}/bin`" - -#: install/index.rst:485 -msgid ":file:`{prefix}`" -msgstr ":file:`{prefix}`" - -#: install/index.rst:435 -msgid ":file:`{prefix}/include/python{X.Y}{abiflags}/{distname}`" -msgstr ":file:`{prefix}/include/python{X.Y}{abiflags}/{distname}`" - -#: install/index.rst:438 -msgid "" -"There is no requirement that :option:`!--prefix` or :option:`!--exec-prefix` " -"actually point to an alternate Python installation; if the directories " -"listed above do not already exist, they are created at installation time." -msgstr "" -":option:`!--prefix` veya :option:`!--exec-prefix` 'in aslında alternatif bir " -"Python kurulumuna işaret etmesi gerekliliği yoktur; yukarıda listelenen " -"dizinler zaten mevcut değilse, kurulum sırasında oluşturulurlar." - -#: install/index.rst:442 -msgid "" -"Incidentally, the real reason the prefix scheme is important is simply that " -"a standard Unix installation uses the prefix scheme, but with :option:`!--" -"prefix` and :option:`!--exec-prefix` supplied by Python itself as ``sys." -"prefix`` and ``sys.exec_prefix``. Thus, you might think you'll never use " -"the prefix scheme, but every time you run ``python setup.py install`` " -"without any other options, you're using it." -msgstr "" -"Bu arada, önek şemasının önemli olmasının gerçek nedeni, standart bir Unix " -"kurulumunun örnek şemasını kullanmasıdır, ancak :option:`!--prefix` ve :" -"option:`!--exec-prefix` Python'un kendisi tarafından sağlanır. ``sys." -"prefix`` ve ``sys.exec_prefix``. Bu nedenle, önek şemasını asla " -"kullanmayacağınızı düşünebilirsiniz, ancak ``python setup.py install`` " -"dosyasını başka bir seçenek olmadan her çalıştırdığınızda, onu " -"kullanıyorsunuz." - -#: install/index.rst:449 -msgid "" -"Note that installing extensions to an alternate Python installation has no " -"effect on how those extensions are built: in particular, the Python header " -"files (:file:`Python.h` and friends) installed with the Python interpreter " -"used to run the setup script will be used in compiling extensions. It is " -"your responsibility to ensure that the interpreter used to run extensions " -"installed in this way is compatible with the interpreter used to build " -"them. The best way to do this is to ensure that the two interpreters are " -"the same version of Python (possibly different builds, or possibly copies of " -"the same build). (Of course, if your :option:`!--prefix` and :option:`!--" -"exec-prefix` don't even point to an alternate Python installation, this is " -"immaterial.)" -msgstr "" -"Alternatif bir Python kurulumuna uzantı yüklemenin, bu uzantıların nasıl " -"oluşturulduğu üzerinde hiçbir etkisi olmadığını unutmayın: özellikle, " -"kurulum komut dosyasını çalıştırmak için kullanılan Python yorumlayıcısı ile " -"yüklenen Python başlık dosyaları (:file:`Python.h` ve arkadaşları) " -"uzantıların derlenmesinde kullanılabilir. Bu şekilde yüklenen uzantıları " -"çalıştırmak için kullanılan yorumlayıcının, bunları oluşturmak için " -"kullanılan yorumlayıcıyla uyumlu olmasını sağlamak sizin " -"sorumluluğunuzdadır. Bunu yapmanın en iyi yolu, iki yorumlayıcının aynı " -"Python sürümü (muhtemelen farklı yapılar veya muhtemelen aynı yapının " -"kopyaları) olduğundan emin olmaktır. (Elbette, :option:`!--prefix` ve :" -"option:`!--exec-prefix` öğeleriniz alternatif bir Python kurulumuna işaret " -"etmiyorsa, bu önemsizdir.)" - -#: install/index.rst:464 -msgid "Alternate installation: Windows (the prefix scheme)" -msgstr "Alternatif kurulum: Windows (ön ek şeması)" - -#: install/index.rst:466 -msgid "" -"Windows has no concept of a user's home directory, and since the standard " -"Python installation under Windows is simpler than under Unix, the :option:" -"`!--prefix` option has traditionally been used to install additional " -"packages in separate locations on Windows. ::" -msgstr "" -"Windows'ta bir kullanıcının ev dizini kavramı yoktur ve Windows altında " -"standart Python kurulumu Unix'e göre daha basit olduğundan, :option:`!--" -"prefix` seçeneği geleneksel olarak Windows'ta ayrı konumlara ek paketler " -"kurmak için kullanılmıştır. ::" - -#: install/index.rst:473 -msgid "" -"to install modules to the :file:`\\\\Temp\\\\Python` directory on the " -"current drive." -msgstr "" -"modülleri geçerli sürücüdeki :file:`\\\\Temp\\\\Python` dizinine kurmak için." - -#: install/index.rst:475 -msgid "" -"The installation base is defined by the :option:`!--prefix` option; the :" -"option:`!--exec-prefix` option is not supported under Windows, which means " -"that pure Python modules and extension modules are installed into the same " -"location. Files are installed as follows:" -msgstr "" -"Kurulum tabanı :option:`!--prefix` seçeneği ile tanımlanır; :option:`!--exec-" -"prefix` seçeneği Windows'ta desteklenmez, bu da saf Python modüllerinin ve " -"genişletme modüllerinin aynı konuma kurulu olduğu anlamına gelir. Dosyalar " -"aşağıdaki gibi yüklenir:" - -#: install/index.rst:484 -msgid ":file:`{prefix}\\\\Scripts`" -msgstr ":file:`{prefix}\\\\Scripts`" - -#: install/index.rst:486 -msgid ":file:`{prefix}\\\\Include\\\\{distname}`" -msgstr ":file:`{prefix}\\\\Include\\\\{distname}`" - -#: install/index.rst:493 -msgid "Custom Installation" -msgstr "Özel Kurulum" - -#: install/index.rst:495 -msgid "" -"Sometimes, the alternate installation schemes described in section :ref:" -"`inst-alt-install` just don't do what you want. You might want to tweak " -"just one or two directories while keeping everything under the same base " -"directory, or you might want to completely redefine the installation " -"scheme. In either case, you're creating a *custom installation scheme*." -msgstr "" -"Bazen, :ref:`inst-alt-install` bölümünde açıklanan alternatif kurulum " -"şemaları istediğinizi yapmaz. Her şeyi aynı temel dizin altında tutarken " -"yalnızca bir veya iki dizinde ince ayar yapmak veya kurulum şemasını tamamen " -"yeniden tanımlamak isteyebilirsiniz. Her iki durumda da *özel bir yükleme " -"şeması* oluşturuyorsunuz." - -#: install/index.rst:501 -msgid "" -"To create a custom installation scheme, you start with one of the alternate " -"schemes and override some of the installation directories used for the " -"various types of files, using these options:" -msgstr "" -"Özel bir kurulum şeması oluşturmak için, alternatif şemalardan biriyle " -"başlarsınız ve aşağıdaki seçenekleri kullanarak çeşitli dosya türleri için " -"kullanılan bazı kurulum dizinlerini geçersiz kılarsınız:" - -#: install/index.rst:506 -msgid "Override option" -msgstr "Geçersiz kılma seçeneği" - -#: install/index.rst:508 -msgid "``--install-purelib``" -msgstr "``--install-purelib``" - -#: install/index.rst:509 -msgid "``--install-platlib``" -msgstr "``--install-platlib``" - -#: install/index.rst:510 -msgid "all modules" -msgstr "tüm modüller" - -#: install/index.rst:510 -msgid "``--install-lib``" -msgstr "``--install-lib``" - -#: install/index.rst:511 -msgid "``--install-scripts``" -msgstr "``--install-scripts``" - -#: install/index.rst:512 -msgid "``--install-data``" -msgstr "``--install-data``" - -#: install/index.rst:513 -msgid "``--install-headers``" -msgstr "``--install-headers``" - -#: install/index.rst:516 -msgid "" -"These override options can be relative, absolute, or explicitly defined in " -"terms of one of the installation base directories. (There are two " -"installation base directories, and they are normally the same---they only " -"differ when you use the Unix \"prefix scheme\" and supply different ``--" -"prefix`` and ``--exec-prefix`` options; using ``--install-lib`` will " -"override values computed or given for ``--install-purelib`` and ``--install-" -"platlib``, and is recommended for schemes that don't make a difference " -"between Python and extension modules.)" -msgstr "" -"Bu geçersiz kılma seçenekleri göreli, mutlak veya kurulum temel " -"dizinlerinden biri açısından açıkça tanımlanmış olabilir. (İki kurulum temel " -"dizini vardır ve bunlar normalde aynıdır -- yalnızca Unix \"ön ek şeması\" " -"kullandığınızda ve farklı ``--prefix`` ve ``--exec-prefix`` seçenekleri " -"sağladığınızda farklılık gösterirler; ``--install-lib`` kullanmak, ``--" -"install-purelib`` ve ``--install-platlib`` için hesaplanan veya verilen " -"değerleri geçersiz kılar ve fark yaratmayan şemalar için Python ve uzatma " -"modülleri arasında önerilir.)" - -#: install/index.rst:525 -msgid "" -"For example, say you're installing a module distribution to your home " -"directory under Unix---but you want scripts to go in :file:`~/scripts` " -"rather than :file:`~/bin`. As you might expect, you can override this " -"directory with the :option:`!--install-scripts` option; in this case, it " -"makes most sense to supply a relative path, which will be interpreted " -"relative to the installation base directory (your home directory, in this " -"case)::" -msgstr "" -"Örneğin, Unix altında ana dizininize bir modül dağıtımı kurduğunuzu, ancak " -"komut dosyalarının :file:`~/bin` yerine :file:`~/scripts` içine girmesini " -"istediğinizi varsayalım. Tahmin edebileceğiniz gibi, bu dizini :option:`!--" -"install-scripts` seçeneği ile geçersiz kılabilirsiniz; bu durumda, kurulum " -"temel dizinine (bu durumda ana dizininiz) göre yorumlanacak olan bir göreli " -"yol sağlamak en mantıklısı olur:" - -#: install/index.rst:534 -msgid "" -"Another Unix example: suppose your Python installation was built and " -"installed with a prefix of :file:`/usr/local/python`, so under a standard " -"installation scripts will wind up in :file:`/usr/local/python/bin`. If you " -"want them in :file:`/usr/local/bin` instead, you would supply this absolute " -"directory for the :option:`!--install-scripts` option::" -msgstr "" -"Başka bir Unix örneği: Python kurulumunuzun :file:`/usr/local/python` ön " -"ekiyle oluşturulduğunu ve kurulduğunu varsayalım, bu nedenle standart bir " -"kurulum komut dosyaları altında :file:`/usr/local/python/bin` olarak " -"kurulacaktır. Bunların yerine :file:`/usr/local/bin` içinde olmasını " -"istiyorsanız, :option:`!--install-scripts` seçeneği için bu mutlak dizini " -"sağlarsınız:" - -#: install/index.rst:542 -msgid "" -"(This performs an installation using the \"prefix scheme\", where the prefix " -"is whatever your Python interpreter was installed with--- :file:`/usr/local/" -"python` in this case.)" -msgstr "" -"(Bu, \"ön ek şemasını\" kullanarak bir yükleme gerçekleştirir; burada önek, " -"bu durumda Python yorumlayıcınız-- :file:`/usr/local/python` ile birlikte " -"yüklenir.)" - -#: install/index.rst:546 -msgid "" -"If you maintain Python on Windows, you might want third-party modules to " -"live in a subdirectory of :file:`{prefix}`, rather than right in :file:" -"`{prefix}` itself. This is almost as easy as customizing the script " -"installation directory---you just have to remember that there are two types " -"of modules to worry about, Python and extension modules, which can " -"conveniently be both controlled by one option::" -msgstr "" -"Python'u Windows'ta kullanıyorsanız, üçüncü taraf modüllerin doğrudan :file:" -"`{prefix}` içinde değil, :file:`{prefix}` alt dizininde yaşamasını " -"isteyebilirsiniz. Bu neredeyse komut dosyası yükleme dizinini özelleştirmek " -"kadar kolaydır -- endişelenmeniz gereken iki tür modül olduğunu hatırlamanız " -"yeterlidir: Python ve genişletme modülleri, her ikisi de tek bir seçenekle " -"kolayca kontrol edilebilir:" - -#: install/index.rst:555 -msgid "" -"The specified installation directory is relative to :file:`{prefix}`. Of " -"course, you also have to ensure that this directory is in Python's module " -"search path, such as by putting a :file:`.pth` file in a site directory " -"(see :mod:`site`). See section :ref:`inst-search-path` to find out how to " -"modify Python's search path." -msgstr "" -"Belirtilen kurulum dizini :file:`{prefix}` ile ilişkilidir. Elbette, örneğin " -"bir site dizinine bir :file:`.pth` dosyası koyarak (bkz. :mod:`site`) bu " -"dizinin Python'un modül arama yolunda olduğundan emin olmalısınız. Python'un " -"arama yolunu nasıl değiştireceğinizi öğrenmek için :ref:`inst-search-path` " -"bölümüne bakın." - -#: install/index.rst:561 -msgid "" -"If you want to define an entire installation scheme, you just have to supply " -"all of the installation directory options. The recommended way to do this " -"is to supply relative paths; for example, if you want to maintain all Python " -"module-related files under :file:`python` in your home directory, and you " -"want a separate directory for each platform that you use your home directory " -"from, you might define the following installation scheme::" -msgstr "" -"Tüm bir kurulum şemasını tanımlamak istiyorsanız, tüm kurulum dizini " -"seçeneklerini sağlamanız yeterlidir. Bunu yapmanın önerilen yolu, göreli " -"yollar sağlamaktır; örneğin, Python modülü ile ilgili tüm dosyaları ana " -"dizininizde :file:`python` altında tutmak istiyorsanız ve ana dizininizi " -"kullandığınız her platform için ayrı bir dizin istiyorsanız, aşağıdaki " -"kurulum şemasını tanımlayabilirsiniz. ::" - -#: install/index.rst:574 -msgid "or, equivalently, ::" -msgstr "veya eş değer olarak, ::" - -#: install/index.rst:582 -msgid "" -"``$PLAT`` is not (necessarily) an environment variable---it will be expanded " -"by the Distutils as it parses your command line options, just as it does " -"when parsing your configuration file(s)." -msgstr "" -"``$PLAT`` (zorunlu olarak) bir ortam değişkeni değildir -- yapılandırma " -"dosya(lar)ınızı ayrıştırırken yaptığı gibi, komut satırı seçeneklerinizi " -"ayrıştırırken Distutils tarafından genişletilecektir." - -#: install/index.rst:586 -msgid "" -"Obviously, specifying the entire installation scheme every time you install " -"a new module distribution would be very tedious. Thus, you can put these " -"options into your Distutils config file (see section :ref:`inst-config-" -"files`):" -msgstr "" -"Açıkçası, her yeni modül dağıtımı kurduğunuzda tüm kurulum şemasını " -"belirtmek çok sıkıcı olacaktır. Böylece, bu seçenekleri Distutils " -"yapılandırma dosyanıza koyabilirsiniz (bkz. :ref:`inst-config-files` bölümü):" - -#: install/index.rst:599 -msgid "or, equivalently," -msgstr "veya eş değer olarak," - -#: install/index.rst:610 -msgid "" -"Note that these two are *not* equivalent if you supply a different " -"installation base directory when you run the setup script. For example, ::" -msgstr "" -"Kurulum komut dosyasını çalıştırırken farklı bir kurulum temel dizini " -"sağlarsanız, bu ikisinin eş değer *değil* olduğunu unutmayın. Örneğin, ::" - -#: install/index.rst:615 -msgid "" -"would install pure modules to :file:`/tmp/python/lib` in the first case, and " -"to :file:`/tmp/lib` in the second case. (For the second case, you probably " -"want to supply an installation base of :file:`/tmp/python`.)" -msgstr "" -"saf modülleri ilk durumda :file:`/tmp/python/lib` dizinine ve ikinci " -"durumda :file:`/tmp/lib` dizinine kurardı. (İkinci durum için, muhtemelen " -"bir :file:`/tmp/python` kurulum tabanı sağlamak istersiniz.)" - -#: install/index.rst:619 -msgid "" -"You probably noticed the use of ``$HOME`` and ``$PLAT`` in the sample " -"configuration file input. These are Distutils configuration variables, " -"which bear a strong resemblance to environment variables. In fact, you can " -"use environment variables in config files on platforms that have such a " -"notion but the Distutils additionally define a few extra variables that may " -"not be in your environment, such as ``$PLAT``. (And of course, on systems " -"that don't have environment variables, such as Mac OS 9, the configuration " -"variables supplied by the Distutils are the only ones you can use.) See " -"section :ref:`inst-config-files` for details." -msgstr "" -"Örnek yapılandırma dosyası girişinde ``$HOME`` ve ``$PLAT`` kullanıldığını " -"muhtemelen fark etmişsinizdir. Bunlar, ortam değişkenlerine güçlü bir " -"benzerlik gösteren Distutils yapılandırma değişkenleridir. Aslında, ortam " -"değişkenlerini böyle bir kavramı olan platformlarda yapılandırma " -"dosyalarında kullanabilirsiniz, ancak Distutils ek olarak ``$PLAT`` gibi " -"ortamınızda olmayabilecek birkaç ekstra değişken tanımlar. Ve elbette, Mac " -"OS 9 gibi ortam değişkenlerine sahip olmayan sistemlerde, yalnızca Distutils " -"tarafından sağlanan yapılandırma değişkenlerini kullanabilirsiniz. Bkz. :ref:" -"`inst-config-files`." - -#: install/index.rst:629 -msgid "" -"When a :ref:`virtual environment ` is activated, any options that " -"change the installation path will be ignored from all distutils " -"configuration files to prevent inadvertently installing projects outside of " -"the virtual environment." -msgstr "" -"Bir :ref:`virtual environment ` etkinleştirildiğinde, projelerin " -"yanlışlıkla sanal ortamın dışına kurulmasını önlemek için kurulum yolunu " -"değiştiren tüm seçenekler tüm distutils yapılandırma dosyalarından yok " -"sayılır." - -#: install/index.rst:643 -msgid "Modifying Python's Search Path" -msgstr "Python'un Arama Yolunu Değiştirme" - -#: install/index.rst:645 -msgid "" -"When the Python interpreter executes an :keyword:`import` statement, it " -"searches for both Python code and extension modules along a search path. A " -"default value for the path is configured into the Python binary when the " -"interpreter is built. You can determine the path by importing the :mod:`sys` " -"module and printing the value of ``sys.path``. ::" -msgstr "" -"Python yorumlayıcısı bir :keyword:`import` ifadesini çalıştırdığında, bir " -"arama yolu boyunca hem Python kodunu hem de uzantı modüllerini arar. " -"Yorumlayıcı oluşturulduğunda, yol için varsayılan bir değer Python ikili " -"dosyasında yapılandırılır. :mod:`sys` modülünü içe aktararak ve ``sys.path`` " -"değerini yazdırarak yolu belirleyebilirsiniz. ::" - -#: install/index.rst:662 -msgid "" -"The null string in ``sys.path`` represents the current working directory." -msgstr "``sys.path`` içindeki boş dize, geçerli çalışma dizinini temsil eder." - -#: install/index.rst:664 -msgid "" -"The expected convention for locally installed packages is to put them in " -"the :file:`{...}/site-packages/` directory, but you may want to install " -"Python modules into some arbitrary directory. For example, your site may " -"have a convention of keeping all software related to the web server under :" -"file:`/www`. Add-on Python modules might then belong in :file:`/www/python`, " -"and in order to import them, this directory must be added to ``sys.path``. " -"There are several different ways to add the directory." -msgstr "" -"Yerel olarak kurulmuş paketler için beklenen kural, onları :file:`{...}/site-" -"packages/` dizinine koymaktır, ancak Python modüllerini rastgele bir dizine " -"kurmak isteyebilirsiniz. Örneğin, sitenizin web sunucusuyla ilgili tüm " -"yazılımları :file:`/www` altında tutma kuralı olabilir. Eklenti Python " -"modülleri daha sonra :file:`/www/python` klasörüne ait olabilir ve bunları " -"içe aktarmak için bu dizinin ``sys.path`` klasörüne eklenmesi gerekir. " -"Dizini eklemenin birkaç farklı yolu vardır." - -#: install/index.rst:672 -msgid "" -"The most convenient way is to add a path configuration file to a directory " -"that's already on Python's path, usually to the :file:`.../site-packages/` " -"directory. Path configuration files have an extension of :file:`.pth`, and " -"each line must contain a single path that will be appended to ``sys.path``. " -"(Because the new paths are appended to ``sys.path``, modules in the added " -"directories will not override standard modules. This means you can't use " -"this mechanism for installing fixed versions of standard modules.)" -msgstr "" -"En uygun yol, zaten Python'un yolunda bulunan bir dizine, genellikle :file:" -"`…/site-packages/` dizinine bir yol yapılandırma dosyası eklemektir. Yol " -"yapılandırma dosyalarının uzantısı :file:`.pth` 'dir ve her satırda ``sys." -"path`` dosyasına eklenecek tek bir yol bulunmalıdır. (Yeni yollar ``sys." -"path`` dizinine eklendiğinden, eklenen dizinlerdeki modüller standart " -"modülleri geçersiz kılmaz. Bu, standart modüllerin sabit sürümlerini kurmak " -"için bu mekanizmayı kullanamayacağınız anlamına gelir.)" - -#: install/index.rst:680 -msgid "" -"Paths can be absolute or relative, in which case they're relative to the " -"directory containing the :file:`.pth` file. See the documentation of the :" -"mod:`site` module for more information." -msgstr "" -"Yollar mutlak veya göreli olabilir, bu durumda :file:`.pth` dosyasını içeren " -"dizine göredirler. Daha fazla bilgi için :mod:`site` modülünün belgelerine " -"bakın." - -#: install/index.rst:684 -msgid "" -"A slightly less convenient way is to edit the :file:`site.py` file in " -"Python's standard library, and modify ``sys.path``. :file:`site.py` is " -"automatically imported when the Python interpreter is executed, unless the :" -"option:`-S` switch is supplied to suppress this behaviour. So you could " -"simply edit :file:`site.py` and add two lines to it:" -msgstr "" -"Biraz daha az kullanışlı bir yol, Python'un standart kitaplığındaki :file:" -"`site.py` dosyasını düzenlemek ve ``sys.path`` değiştirmektir. Bu davranışı " -"bastırmak için :option:`-S` anahtarı sağlanmadıkça, Python yorumlayıcısı " -"çalıştırıldığında :file:`site.py` otomatik olarak içe aktarılır. Böylece :" -"file:`site.py` dosyasını düzenleyebilir ve ona iki satır ekleyebilirsiniz:" - -#: install/index.rst:695 -#, fuzzy -msgid "" -"However, if you reinstall the same minor version of Python (perhaps when " -"upgrading from 2.2 to 2.2.2, for example) :file:`site.py` will be " -"overwritten by the stock version. You'd have to remember that it was " -"modified and save a copy before doing the installation." -msgstr "" -"Ancak, Python'un aynı ana sürümünü yeniden yüklerseniz (örneğin, 2.2'den " -"2.2.2'ye yükseltme yaparken) :file:`site.py` stok sürümü tarafından üzerine " -"yazılır. Kurulumu yapmadan önce değiştirildiğini hatırlamanız ve bir " -"kopyasını kaydetmeniz gerekir." - -#: install/index.rst:700 -msgid "" -"There are two environment variables that can modify ``sys.path``. :envvar:" -"`PYTHONHOME` sets an alternate value for the prefix of the Python " -"installation. For example, if :envvar:`PYTHONHOME` is set to ``/www/" -"python``, the search path will be set to ``['', '/www/python/lib/pythonX." -"Y/', '/www/python/lib/pythonX.Y/plat-linux2', ...]``." -msgstr "" -"``sys.path`` değiştirebilen iki ortam değişkeni vardır. :envvar:`PYTHONHOME` " -"Python kurulumunun öneki için alternatif bir değer ayarlar. Örneğin, :envvar:" -"`PYTHONHOME`, ``/www/python`` olarak ayarlanırsa, arama yolu ``['', '/www/" -"python/lib/pythonX.Y/', '/www/python/lib/pythonX.Y/plat-linux2', ...]`` " -"olarak ayarlanır." - -#: install/index.rst:706 -msgid "" -"The :envvar:`PYTHONPATH` variable can be set to a list of paths that will be " -"added to the beginning of ``sys.path``. For example, if :envvar:" -"`PYTHONPATH` is set to ``/www/python:/opt/py``, the search path will begin " -"with ``['/www/python', '/opt/py']``. (Note that directories must exist in " -"order to be added to ``sys.path``; the :mod:`site` module removes paths that " -"don't exist.)" -msgstr "" -":envvar:`PYTHONPATH` değişkeni, ``sys.path`` başına eklenecek bir yol " -"listesine ayarlanabilir. Örneğin, :envvar:`PYTHONPATH`, ``/www/python:/opt/" -"py`` olarak ayarlanırsa, arama yolu ``['/www/python', '/opt/py']`` ile " -"başlar. (``sys.path`` klasörüne eklenmek için dizinlerin var olması " -"gerektiğini unutmayın; :mod:`site` modülü var olmayan yolları kaldırır.)" - -#: install/index.rst:713 -msgid "" -"Finally, ``sys.path`` is just a regular Python list, so any Python " -"application can modify it by adding or removing entries." -msgstr "" -"Son olarak, ``sys.path`` sadece normal bir Python listesidir, bu nedenle " -"herhangi bir Python uygulaması, girdiler ekleyerek veya çıkararak onu " -"değiştirebilir." - -#: install/index.rst:720 -msgid "Distutils Configuration Files" -msgstr "Distutils Yapılandırma Dosyaları" - -#: install/index.rst:722 -msgid "" -"As mentioned above, you can use Distutils configuration files to record " -"personal or site preferences for any Distutils options. That is, any option " -"to any command can be stored in one of two or three (depending on your " -"platform) configuration files, which will be consulted before the command-" -"line is parsed. This means that configuration files will override default " -"values, and the command-line will in turn override configuration files. " -"Furthermore, if multiple configuration files apply, values from \"earlier\" " -"files are overridden by \"later\" files." -msgstr "" -"Yukarıda bahsedildiği gibi, herhangi bir Distutils seçeneği için kişisel " -"veya site tercihlerini kaydetmek için Distutils konfigürasyon dosyalarını " -"kullanabilirsiniz. Yani, herhangi bir komutun herhangi bir seçeneği, komut " -"satırı ayrıştırılmadan önce danışılacak olan (platformunuza bağlı olarak) " -"iki veya üç yapılandırma dosyasından birinde saklanabilir. Bu, yapılandırma " -"dosyalarının varsayılan değerleri geçersiz kılacağı ve komut satırının da " -"yapılandırma dosyalarını geçersiz kılacağı anlamına gelir. Ayrıca, birden " -"fazla yapılandırma dosyası geçerliyse, \"önceki\" dosyalardan alınan " -"değerler \"sonraki\" dosyalar tarafından geçersiz kılınır." - -#: install/index.rst:735 -msgid "Location and names of config files" -msgstr "Yapılandırma dosyalarının konumu ve adları" - -#: install/index.rst:737 -msgid "" -"The names and locations of the configuration files vary slightly across " -"platforms. On Unix and macOS, the three configuration files (in the order " -"they are processed) are:" -msgstr "" -"Yapılandırma dosyalarının adları ve konumları platformlar arasında biraz " -"farklılık gösterir. Unix ve macOS'ta üç yapılandırma dosyası (işlendikleri " -"sırayla):" - -#: install/index.rst:754 -msgid "Location and filename" -msgstr "Konum ve dosya adı" - -#: install/index.rst:756 -msgid "system" -msgstr "system" - -#: install/index.rst:744 -msgid ":file:`{prefix}/lib/python{ver}/distutils/distutils.cfg`" -msgstr ":file:`{prefix}/lib/python{ver}/distutils/distutils.cfg`" - -#: install/index.rst:758 -msgid "personal" -msgstr "personal" - -#: install/index.rst:746 -msgid ":file:`$HOME/.pydistutils.cfg`" -msgstr ":file:`$HOME/.pydistutils.cfg`" - -#: install/index.rst:760 -msgid "local" -msgstr "local" - -#: install/index.rst:760 -msgid ":file:`setup.cfg`" -msgstr ":file:`setup.cfg`" - -#: install/index.rst:760 -msgid "\\(3)" -msgstr "\\(3)" - -#: install/index.rst:751 -msgid "And on Windows, the configuration files are:" -msgstr "Ve Windows'ta yapılandırma dosyaları şunlardır:" - -#: install/index.rst:756 -msgid ":file:`{prefix}\\\\Lib\\\\distutils\\\\distutils.cfg`" -msgstr ":file:`{prefix}\\\\Lib\\\\distutils\\\\distutils.cfg`" - -#: install/index.rst:756 -msgid "\\(4)" -msgstr "\\(4)" - -#: install/index.rst:758 -msgid ":file:`%HOME%\\\\pydistutils.cfg`" -msgstr ":file:`%HOME%\\\\pydistutils.cfg`" - -#: install/index.rst:758 -msgid "\\(5)" -msgstr "\\(5)" - -#: install/index.rst:763 -msgid "" -"On all platforms, the \"personal\" file can be temporarily disabled by " -"passing the ``--no-user-cfg`` option." -msgstr "" -"Tüm platformlarda, ``--no-user-cfg`` seçeneği geçilerek \"kişisel\" dosya " -"geçici olarak devre dışı bırakılabilir." - -#: install/index.rst:769 -msgid "" -"Strictly speaking, the system-wide configuration file lives in the directory " -"where the Distutils are installed; under Python 1.6 and later on Unix, this " -"is as shown. For Python 1.5.2, the Distutils will normally be installed to :" -"file:`{prefix}/lib/python1.5/site-packages/distutils`, so the system " -"configuration file should be put there under Python 1.5.2." -msgstr "" -"Kesin olarak söylemek gerekirse, sistem genelindeki yapılandırma dosyası " -"Distutils'in kurulu olduğu dizinde bulunur; Python 1.6 altında ve daha sonra " -"Unix'te bu gösterildiği gibidir. Python 1.5.2 için, Distutils normalde :file:" -"`{prefix}/lib/python1.5/site-packages/distutils` konumuna yüklenecektir, bu " -"nedenle sistem yapılandırma dosyası oraya Python 1.5.2 altına " -"yerleştirilmelidir." - -#: install/index.rst:776 -#, fuzzy -msgid "" -"On Unix, if the :envvar:`HOME` environment variable is not defined, the " -"user's home directory will be determined with the :func:`~pwd.getpwuid` " -"function from the standard :mod:`pwd` module. This is done by the :func:`os." -"path.expanduser` function used by Distutils." -msgstr "" -"Unix'te, :envvar:`HOME` ortam değişkeni tanımlı değilse, kullanıcının ana " -"dizini standart :mod:`pwd` modülünden :func:`getpwuid` işleviyle belirlenir. " -"Bu, Distutils tarafından kullanılan :func:`os.path.expanduser` işlevi " -"tarafından yapılır." - -#: install/index.rst:782 -msgid "" -"I.e., in the current directory (usually the location of the setup script)." -msgstr "Yani, geçerli dizinde (genellikle kurulum komut dosyasının konumu)." - -#: install/index.rst:785 -msgid "" -"(See also note (1).) Under Python 1.6 and later, Python's default " -"\"installation prefix\" is :file:`C:\\\\Python`, so the system configuration " -"file is normally :file:`C:\\\\Python\\\\Lib\\\\distutils\\\\distutils.cfg`. " -"Under Python 1.5.2, the default prefix was :file:`C:\\\\Program Files\\" -"\\Python`, and the Distutils were not part of the standard library---so the " -"system configuration file would be :file:`C:\\\\Program Files\\\\Python\\" -"\\distutils\\\\distutils.cfg` in a standard Python 1.5.2 installation under " -"Windows." -msgstr "" -"(Ayrıca not (1)'e bakın.) Python 1.6 ve sonraki sürümlerde, Python'un " -"varsayılan \"kurulum öneki\" :file:`C:\\\\Python` şeklindedir, bu nedenle " -"sistem yapılandırma dosyası normalde :file:`C:\\\\Python\\ şeklindedir. " -"\\Lib\\\\distutils\\\\distutils.cfg`. Python 1.5.2 altında, varsayılan önek :" -"file:`C:\\\\Program Files\\\\Python` idi ve Distutils standart kitaplığın " -"parçası değildi -- bu nedenle sistem yapılandırma dosyası :file:`C " -"olacaktır. :\\\\Program Files\\\\Python\\\\distutils\\\\distutils.cfg` " -"Windows altında standart bir Python 1.5.2 kurulumunda." - -#: install/index.rst:794 -msgid "" -"On Windows, if the :envvar:`HOME` environment variable is not defined, :" -"envvar:`USERPROFILE` then :envvar:`HOMEDRIVE` and :envvar:`HOMEPATH` will be " -"tried. This is done by the :func:`os.path.expanduser` function used by " -"Distutils." -msgstr "" -"Windows'ta, :envvar:`HOME` ortam değişkeni tanımlı değilse, :envvar:" -"`USERPROFILE` :envvar:`HOMEDRIVE` ve :envvar:`HOMEPATH` denenecektir. Bu, " -"Distutils tarafından kullanılan :func:`os.path.expanduser` işlevi tarafından " -"yapılır." - -#: install/index.rst:803 -msgid "Syntax of config files" -msgstr "Yapılandırma dosyalarının Syntax'ı (sözdizimi)" - -#: install/index.rst:805 -msgid "" -"The Distutils configuration files all have the same syntax. The config " -"files are grouped into sections. There is one section for each Distutils " -"command, plus a ``global`` section for global options that affect every " -"command. Each section consists of one option per line, specified as " -"``option=value``." -msgstr "" -"Distutils yapılandırma dosyalarının tümü aynı Syntax'a sahiptir. " -"Yapılandırma dosyaları bölümlere ayrılmıştır. Her Distutils komutu için bir " -"bölüm ve ayrıca her komutu etkileyen genel seçenekler için bir ``global`` " -"bölüm vardır. Her bölüm, satır başına ``seçenek=değer`` olarak belirtilen " -"bir seçenekten oluşur." - -#: install/index.rst:810 -msgid "" -"For example, the following is a complete config file that just forces all " -"commands to run quietly by default:" -msgstr "" -"Örneğin, aşağıdaki, tüm komutları varsayılan olarak sessizce çalışmaya " -"zorlayan eksiksiz bir yapılandırma dosyasıdır:" - -#: install/index.rst:818 -msgid "" -"If this is installed as the system config file, it will affect all " -"processing of any Python module distribution by any user on the current " -"system. If it is installed as your personal config file (on systems that " -"support them), it will affect only module distributions processed by you. " -"And if it is used as the :file:`setup.cfg` for a particular module " -"distribution, it affects only that distribution." -msgstr "" -"Bu, sistem yapılandırma dosyası olarak kurulursa, mevcut sistemdeki herhangi " -"bir kullanıcı tarafından herhangi bir Python modülü dağıtımının tüm " -"işlemlerini etkileyecektir. Kişisel yapılandırma dosyanız olarak kurulursa " -"(onları destekleyen sistemlerde), yalnızca sizin tarafınızdan işlenen modül " -"dağıtımlarını etkiler. Ve belirli bir modül dağıtımı için :file:`setup.cfg` " -"olarak kullanılırsa, yalnızca bu dağıtımı etkiler." - -#: install/index.rst:825 -msgid "" -"You could override the default \"build base\" directory and make the :" -"command:`build\\*` commands always forcibly rebuild all files with the " -"following:" -msgstr "" -"Varsayılan \"temel oluşturma\" dizinini geçersiz kılabilir ve :command:" -"`build\\*` komutlarını aşağıdakilerle tüm dosyaları her zaman zorla yeniden " -"oluşturabilirsiniz:" - -#: install/index.rst:835 -msgid "which corresponds to the command-line arguments ::" -msgstr "hangi komut satırı argümanlarına karşılık gelir ::" - -#: install/index.rst:839 -msgid "" -"except that including the :command:`build` command on the command-line means " -"that command will be run. Including a particular command in config files " -"has no such implication; it only means that if the command is run, the " -"options in the config file will apply. (Or if other commands that derive " -"values from it are run, they will use the values in the config file.)" -msgstr "" -":command:`build` komutunun komut satırına eklenmesi, komutun çalıştırılacağı " -"anlamına gelir. Yapılandırma dosyalarına belirli bir komutu dahil etmenin " -"böyle bir anlamı yoktur; bu yalnızca komut çalıştırılırsa yapılandırma " -"dosyasındaki seçeneklerin uygulanacağı anlamına gelir. (Ya da ondan değer " -"türeten başka komutlar çalıştırılırsa, yapılandırma dosyasındaki değerleri " -"kullanırlar.)" - -#: install/index.rst:845 -msgid "" -"You can find out the complete list of options for any command using the :" -"option:`!--help` option, e.g.::" -msgstr "" -":option:`!--help` seçeneğini kullanarak herhangi bir komut için seçeneklerin " -"tam listesini bulabilirsiniz, ör.::" - -#: install/index.rst:850 -msgid "" -"and you can find out the complete list of global options by using :option:" -"`!--help` without a command::" -msgstr "" -"ve komut olmadan :option:`!--help` kullanarak global seçeneklerin tam " -"listesini bulabilirsiniz::" - -#: install/index.rst:855 -msgid "" -"See also the \"Reference\" section of the \"Distributing Python Modules\" " -"manual." -msgstr "" -"Ayrıca \"Python Modüllerini Dağıtma\" kılavuzunun \"Referans\" bölümüne " -"bakın." - -#: install/index.rst:861 -msgid "Building Extensions: Tips and Tricks" -msgstr "Bina Uzantıları: İpuçları ve Püf Noktaları" - -#: install/index.rst:863 -msgid "" -"Whenever possible, the Distutils try to use the configuration information " -"made available by the Python interpreter used to run the :file:`setup.py` " -"script. For example, the same compiler and linker flags used to compile " -"Python will also be used for compiling extensions. Usually this will work " -"well, but in complicated situations this might be inappropriate. This " -"section discusses how to override the usual Distutils behaviour." -msgstr "" -"Mümkün olduğunda, Distutils, :file:`setup.py` komut dosyasını çalıştırmak " -"için kullanılan Python yorumlayıcısı tarafından sağlanan yapılandırma " -"bilgilerini kullanmaya çalışır. Örneğin, Python'u derlemek için kullanılan " -"aynı derleyici ve bağlayıcı bayrakları, uzantıları derlemek için de " -"kullanılacaktır. Genellikle bu iyi çalışır, ancak karmaşık durumlarda bu " -"uygun olmayabilir. Bu bölüm, olağan Distutils davranışının nasıl geçersiz " -"kılınacağını tartışır." - -#: install/index.rst:874 -msgid "Tweaking compiler/linker flags" -msgstr "Derleyici/bağlayıcı bayraklarında ince ayar yapma" - -#: install/index.rst:876 -msgid "" -"Compiling a Python extension written in C or C++ will sometimes require " -"specifying custom flags for the compiler and linker in order to use a " -"particular library or produce a special kind of object code. This is " -"especially true if the extension hasn't been tested on your platform, or if " -"you're trying to cross-compile Python." -msgstr "" -"C veya C++ ile yazılmış bir Python uzantısını derlemek, bazen belirli bir " -"kitaplığı kullanmak veya özel bir tür nesne kodu üretmek için derleyici ve " -"bağlayıcı için özel bayraklar belirtmeyi gerektirir. Bu, özellikle uzantı " -"platformunuzda test edilmemişse veya Python'u çapraz derlemeye " -"çalışıyorsanız geçerlidir." - -#: install/index.rst:882 -msgid "" -"In the most general case, the extension author might have foreseen that " -"compiling the extensions would be complicated, and provided a :file:`Setup` " -"file for you to edit. This will likely only be done if the module " -"distribution contains many separate extension modules, or if they often " -"require elaborate sets of compiler flags in order to work." -msgstr "" -"En genel durumda, uzantı yazarı, uzantıları derlemenin karmaşık olacağını " -"öngörmüş ve düzenlemeniz için bir :file:`Setup` dosyası sağlamış olabilir. " -"Bu muhtemelen yalnızca modül dağıtımı birçok ayrı genişletme modülü " -"içeriyorsa veya çalışmak için genellikle ayrıntılı derleyici bayrakları " -"gerektiriyorsa yapılacaktır." - -#: install/index.rst:888 -msgid "" -"A :file:`Setup` file, if present, is parsed in order to get a list of " -"extensions to build. Each line in a :file:`Setup` describes a single " -"module. Lines have the following structure::" -msgstr "" -"Bir :file:`Setup` dosyası varsa, oluşturulacak uzantıların bir listesini " -"almak için ayrıştırılır. :file:`Setup` içindeki her satır tek bir modülü " -"tanımlar. Hatlar aşağıdaki yapıya sahiptir:" - -#: install/index.rst:895 -msgid "Let's examine each of the fields in turn." -msgstr "Alanların her birini sırayla inceleyelim." - -#: install/index.rst:897 -msgid "" -"*module* is the name of the extension module to be built, and should be a " -"valid Python identifier. You can't just change this in order to rename a " -"module (edits to the source code would also be needed), so this should be " -"left alone." -msgstr "" -"*module*, oluşturulacak uzantı modülünün adıdır ve geçerli bir Python " -"tanımlayıcısı olmalıdır. Bunu sadece bir modülü yeniden adlandırmak için " -"değiştiremezsiniz (kaynak kodunda da düzenlemeler yapılması gerekir), bu " -"yüzden bu yalnız bırakılmalıdır." - -#: install/index.rst:901 -msgid "" -"*sourcefile* is anything that's likely to be a source code file, at least " -"judging by the filename. Filenames ending in :file:`.c` are assumed to be " -"written in C, filenames ending in :file:`.C`, :file:`.cc`, and :file:`.c++` " -"are assumed to be C++, and filenames ending in :file:`.m` or :file:`.mm` are " -"assumed to be in Objective C." -msgstr "" -"*sourcefile*, en azından dosya adına bakılırsa, kaynak kod dosyası olması " -"muhtemel herhangi bir şeydir. :file:`.c` ile biten dosya adlarının C ile " -"yazıldığı, :file:`.C`, :file:`.cc` ve :file:`.c++` ile biten dosya adlarının " -"C++ olduğu varsayılır. ve :file:`.m` veya :file:`.mm` ile biten dosya " -"adlarının Amaç C'de olduğu varsayılır." - -#: install/index.rst:907 -msgid "" -"*cpparg* is an argument for the C preprocessor, and is anything starting " -"with :option:`!-I`, :option:`!-D`, :option:`!-U` or :option:`!-C`." -msgstr "" -"*cpparg*, C önişlemcisi için bir argümandır ve :option:`!-I`, :option:`!-" -"D`, :option:`!-U` veya :option:`!-C` ile başlayan herhangi bir şeydir." - -#: install/index.rst:910 -msgid "" -"*library* is anything ending in :file:`.a` or beginning with :option:`!-l` " -"or :option:`!-L`." -msgstr "" -"*library* is anything ending in :file:`.a` or beginning with :option:`!-l` " -"or :option:`!-L`." - -#: install/index.rst:913 -msgid "" -"If a particular platform requires a special library on your platform, you " -"can add it by editing the :file:`Setup` file and running ``python setup.py " -"build``. For example, if the module defined by the line ::" -msgstr "" -"Belirli bir platform, platformunuzda özel bir kütüphane gerektiriyorsa, " -"bunu :file:`Setup` dosyasını düzenleyerek ve ``python setup.py build`` " -"çalıştırarak ekleyebilirsiniz. Örneğin, modül satır ile tamamlanırsa ::" - -#: install/index.rst:919 -msgid "" -"must be linked with the math library :file:`libm.a` on your platform, simply " -"add :option:`!-lm` to the line::" -msgstr "" -"platformunuzdaki matematik kitaplığı :file:`libm.a` ile bağlantılı " -"olmalıdır, sadece :option:`!-lm` satırına ekleyin::" - -#: install/index.rst:924 -msgid "" -"Arbitrary switches intended for the compiler or the linker can be supplied " -"with the :option:`!-Xcompiler` *arg* and :option:`!-Xlinker` *arg* options::" -msgstr "" -"Derleyici veya bağlayıcıya yönelik keyfi anahtarlar :option:`!-Xcompiler` " -"*arg* ve :option:`!-Xlinker` *arg* seçenekleriyle sağlanabilir::" - -#: install/index.rst:929 -msgid "" -"The next option after :option:`!-Xcompiler` and :option:`!-Xlinker` will be " -"appended to the proper command line, so in the above example the compiler " -"will be passed the :option:`!-o32` option, and the linker will be passed :" -"option:`!-shared`. If a compiler option requires an argument, you'll have " -"to supply multiple :option:`!-Xcompiler` options; for example, to pass ``-x " -"c++`` the :file:`Setup` file would have to contain ``-Xcompiler -x -" -"Xcompiler c++``." -msgstr "" -":option:`!-Xcompiler` ve :option:`!-Xlinker` 'dan sonraki sonraki seçenek " -"uygun komut satırına eklenecektir, bu nedenle yukarıdaki örnekte " -"derleyiciye :option:`!-o32` seçeneği geçilecektir. , ve bağlayıcı geçirilir :" -"option:`!-shared`. Derleyici seçeneği bir argüman gerektiriyorsa, birden " -"çok :option:`!-Xcompiler` seçeneği sağlamanız gerekir; örneğin, ``-x c++`` " -"geçmek için :file:`Setup` dosyasının ``-Xcompiler -x -Xcompiler c++`` " -"içermesi gerekir." - -#: install/index.rst:936 -msgid "" -"Compiler flags can also be supplied through setting the :envvar:`CFLAGS` " -"environment variable. If set, the contents of :envvar:`CFLAGS` will be " -"added to the compiler flags specified in the :file:`Setup` file." -msgstr "" -"Derleyici bayrakları, :envvar:`CFLAGS` ortam değişkeni ayarlanarak da " -"sağlanabilir. Ayarlanırsa, :envvar:`CFLAGS` içeriği :file:`Setup` dosyasında " -"belirtilen derleyici bayraklarına eklenecektir." - -#: install/index.rst:944 -msgid "Using non-Microsoft compilers on Windows" -msgstr "Windows'ta Microsoft'a ait olmayan derleyicileri kullanma" - -#: install/index.rst:951 -msgid "Borland/CodeGear C++" -msgstr "Borland/CodeGear C++" - -#: install/index.rst:953 -msgid "" -"This subsection describes the necessary steps to use Distutils with the " -"Borland C++ compiler version 5.5. First you have to know that Borland's " -"object file format (OMF) is different from the format used by the Python " -"version you can download from the Python or ActiveState web site. (Python " -"is built with Microsoft Visual C++, which uses COFF as the object file " -"format.) For this reason you have to convert Python's library :file:" -"`python25.lib` into the Borland format. You can do this as follows:" -msgstr "" -"Bu alt bölüm, Distutils'i Borland C++ derleyici sürüm 5.5 ile kullanmak için " -"gerekli adımları açıklar. Öncelikle Borland'ın nesne dosya formatının (OMF), " -"Python veya ActiveState web sitesinden indirebileceğiniz Python sürümünün " -"kullandığı formattan farklı olduğunu bilmelisiniz. (Python, nesne dosya " -"formatı olarak COFF kullanan Microsoft Visual C++ ile oluşturulmuştur.) Bu " -"nedenle Python'un :file:`python25.lib` kütüphanesini Borland formatına " -"dönüştürmeniz gerekmektedir. Bunu aşağıdaki gibi yapabilirsiniz:" - -#: install/index.rst:968 -msgid "" -"The :file:`coff2omf` program comes with the Borland compiler. The file :" -"file:`python25.lib` is in the :file:`Libs` directory of your Python " -"installation. If your extension uses other libraries (zlib, ...) you have " -"to convert them too." -msgstr "" -":file:`coff2omf` programı Borland derleyicisiyle birlikte gelir. :file:" -"`python25.lib` dosyası, Python kurulumunuzun :file:`Libs` dizinindedir. " -"Uzantınız başka kütüphaneler (zlib, …) kullanıyorsa, onları da dönüştürmeniz " -"gerekir." - -#: install/index.rst:973 -msgid "" -"The converted files have to reside in the same directories as the normal " -"libraries." -msgstr "" -"Dönüştürülen dosyalar, normal kütüphanelerle aynı dizinlerde bulunmalıdır." - -#: install/index.rst:976 -msgid "" -"How does Distutils manage to use these libraries with their changed names? " -"If the extension needs a library (eg. :file:`foo`) Distutils checks first if " -"it finds a library with suffix :file:`_bcpp` (eg. :file:`foo_bcpp.lib`) and " -"then uses this library. In the case it doesn't find such a special library " -"it uses the default name (:file:`foo.lib`.) [#]_" -msgstr "" -"Distutils, bu kütüphaneleri değişen adlarıyla kullanmayı nasıl başarıyor? " -"Uzantının bir kitaplığa ihtiyacı varsa (örn. :file:`foo`) Distutils önce :" -"file:`_bcpp` (örn. :file:`foo_bcpp.lib`) sonekine sahip bir kütüphane bulup " -"bulmadığını kontrol eder ve ardından bu kitaplığı kullanır. Böyle özel bir " -"kütüphane bulamazsa, varsayılan adı kullanır (:file:`foo.lib`.) [#]_" - -#: install/index.rst:982 -msgid "" -"To let Distutils compile your extension with Borland C++ you now have to " -"type::" -msgstr "" -"Distutils'in uzantınızı Borland C++ ile derlemesine izin vermek için şimdi " -"şunu yazmanız gerekir::" - -#: install/index.rst:986 -msgid "" -"If you want to use the Borland C++ compiler as the default, you could " -"specify this in your personal or system-wide configuration file for " -"Distutils (see section :ref:`inst-config-files`.)" -msgstr "" -"Borland C++ derleyicisini varsayılan olarak kullanmak istiyorsanız, bunu " -"Distutils için kişisel veya sistem genelindeki yapılandırma dosyanızda " -"belirtebilirsiniz (bkz. :ref:`inst-config-files`.)" - -#: install/index.rst:995 -msgid "`C++Builder Compiler `_" -msgstr "`C++Builder Compiler `_" - -#: install/index.rst:994 -msgid "" -"Information about the free C++ compiler from Borland, including links to the " -"download pages." -msgstr "" -"İndirme sayfalarına bağlantılar da dahil olmak üzere Borland'ın ücretsiz C++ " -"derleyicisi hakkında bilgiler." - -#: install/index.rst:998 -msgid "" -"`Creating Python Extensions Using Borland's Free Compiler `_" -msgstr "" -"`Borland'ın Ücretsiz Derleyicisini Kullanarak Python Uzantıları Oluşturma " -"`_" - -#: install/index.rst:998 -msgid "" -"Document describing how to use Borland's free command-line C++ compiler to " -"build Python." -msgstr "" -"Python'u oluşturmak için Borland'ın ücretsiz komut satırı C++ derleyicisinin " -"nasıl kullanılacağını açıklayan belge." - -#: install/index.rst:1003 -msgid "GNU C / Cygwin / MinGW" -msgstr "GNU C / Cygwin / MinGW" - -#: install/index.rst:1005 -msgid "" -"This section describes the necessary steps to use Distutils with the GNU C/C+" -"+ compilers in their Cygwin and MinGW distributions. [#]_ For a Python " -"interpreter that was built with Cygwin, everything should work without any " -"of these following steps." -msgstr "" -"Bu bölüm, Distutils'i GNU C/C++ derleyicileriyle Cygwin ve MinGW " -"dağıtımlarında kullanmak için gerekli adımları açıklar. [#]_ Cygwin ile " -"oluşturulmuş bir Python yorumlayıcısı için, aşağıdaki adımlardan herhangi " -"biri olmadan her şey çalışmalıdır." - -#: install/index.rst:1010 -msgid "" -"Not all extensions can be built with MinGW or Cygwin, but many can. " -"Extensions most likely to not work are those that use C++ or depend on " -"Microsoft Visual C extensions." -msgstr "" -"Tüm uzantılar MinGW veya Cygwin ile oluşturulamaz, ancak çoğu yapılabilir. " -"Çalışmama olasılığı en yüksek olan uzantılar, C++ kullanan veya Microsoft " -"Visual C uzantılarına bağlı olanlardır." - -#: install/index.rst:1014 -msgid "To let Distutils compile your extension with Cygwin you have to type::" -msgstr "" -"Distutils'in uzantınızı Cygwin ile derlemesine izin vermek için şunu " -"yazmanız gerekir::" - -#: install/index.rst:1018 -msgid "and for Cygwin in no-cygwin mode [#]_ or for MinGW type::" -msgstr "ve Cygwin olmayan modda [#]_ Cygwin için veya MinGW tipi için::" - -#: install/index.rst:1022 -msgid "" -"If you want to use any of these options/compilers as default, you should " -"consider writing it in your personal or system-wide configuration file for " -"Distutils (see section :ref:`inst-config-files`.)" -msgstr "" -"Bu seçeneklerden/derleyicilerden herhangi birini varsayılan olarak kullanmak " -"istiyorsanız, bunu Distutils için kişisel veya sistem genelindeki " -"yapılandırma dosyanıza yazmayı düşünmelisiniz (bkz. :ref:`inst-config-" -"files`.)" - -#: install/index.rst:1027 -msgid "Older Versions of Python and MinGW" -msgstr "Python ve MinGW'nin Eski Sürümleri" - -#: install/index.rst:1028 -msgid "" -"The following instructions only apply if you're using a version of Python " -"inferior to 2.4.1 with a MinGW inferior to 3.0.0 (with " -"binutils-2.13.90-20030111-1)." -msgstr "" -"Aşağıdaki talimatlar yalnızca, MinGW'si 3.0.0'dan düşük " -"(binutils-2.13.90-20030111-1 ile) 2.4.1'den düşük bir Python sürümü " -"kullanıyorsanız geçerlidir." - -#: install/index.rst:1032 -msgid "" -"These compilers require some special libraries. This task is more complex " -"than for Borland's C++, because there is no program to convert the library. " -"First you have to create a list of symbols which the Python DLL exports. " -"(You can find a good program for this task at https://sourceforge.net/" -"projects/mingw/files/MinGW/Extension/pexports/)." -msgstr "" -"Bu derleyiciler bazı özel kütüphaneler gerektirir. Bu görev, Borland'ın C+" -"+'ından daha karmaşıktır çünkü kitaplığı dönüştürecek bir program yoktur. " -"Öncelikle Python DLL'nin dışa aktardığı bir sembol listesi oluşturmalısınız. " -"(Bu görev için iyi bir program https://sourceforge.net/projects/mingw/files/" -"MinGW/Extension/pexports/ adresinde bulabilirsiniz)." - -#: install/index.rst:1045 -msgid "" -"The location of an installed :file:`python25.dll` will depend on the " -"installation options and the version and language of Windows. In a \"just " -"for me\" installation, it will appear in the root of the installation " -"directory. In a shared installation, it will be located in the system " -"directory." -msgstr "" -"Yüklü bir :file:`python25.dll` dosyasının konumu, yükleme seçeneklerine ve " -"Windows sürümüne ve diline bağlı olacaktır. \"Sadece benim için\" kurulumda, " -"kurulum dizininin kökünde görünecektir. Paylaşılan bir kurulumda, sistem " -"dizininde bulunur." - -#: install/index.rst:1050 -msgid "" -"Then you can create from these information an import library for gcc. ::" -msgstr "" -"Ardından bu bilgilerden gcc için bir içe aktarma kitaplığı " -"oluşturabilirsiniz. ::" - -#: install/index.rst:1054 -msgid "" -"The resulting library has to be placed in the same directory as :file:" -"`python25.lib`. (Should be the :file:`libs` directory under your Python " -"installation directory.)" -msgstr "" -"Ortaya çıkan kütüphane, :file:`python25.lib` ile aynı dizine " -"yerleştirilmelidir. (Python kurulum dizininizin altındaki :file:`libs` " -"dizini olmalıdır.)" - -#: install/index.rst:1058 -msgid "" -"If your extension uses other libraries (zlib,...) you might have to convert " -"them too. The converted files have to reside in the same directories as the " -"normal libraries do." -msgstr "" -"Uzantınız başka kütüphaneler (zlib,…) kullanıyorsa, onları da dönüştürmeniz " -"gerekebilir. Dönüştürülen dosyalar, normal kütüphanelerde olduğu gibi aynı " -"dizinlerde bulunmalıdır." - -#: install/index.rst:1065 -msgid "" -"`Building Python modules on MS Windows platform with MinGW `_" -msgstr "" -"`MinGW ile MS Windows platformunda Python modülleri oluşturma `_" - -#: install/index.rst:1066 -msgid "" -"Information about building the required libraries for the MinGW environment." -msgstr "MinGW ortamı için gerekli kütüphaneleri oluşturmaya ilişkin bilgiler." - -#: install/index.rst:1070 -msgid "Footnotes" -msgstr "Dipnotlar" - -#: install/index.rst:1071 -msgid "" -"This also means you could replace all existing COFF-libraries with OMF-" -"libraries of the same name." -msgstr "" -"Bu aynı zamanda mevcut tüm COFF-kütüphanelerini aynı adı taşıyan OMF-" -"kütüphaneleriyle değiştirebileceğiniz anlamına gelir." - -#: install/index.rst:1074 -msgid "Check https://www.sourceware.org/cygwin/ for more information" -msgstr "" -"Daha fazla bilgi için https://www.sourceware.org/cygwin/ adresini kontrol " -"edin" - -#: install/index.rst:1076 -msgid "" -"Then you have no POSIX emulation available, but you also don't need :file:" -"`cygwin1.dll`." -msgstr "" -"O zaman kullanılabilir POSIX öykünmesine sahip değilsiniz, ancak :file:" -"`cygwin1.dll` 'e de ihtiyacınız yok." diff --git a/installing/index.po b/installing/index.po index 28fc05556..0460c7ece 100644 --- a/installing/index.po +++ b/installing/index.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2023-02-01 17:47-0500\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -128,13 +128,13 @@ msgstr "" "deposudur." #: installing/index.rst:52 +#, fuzzy msgid "" "the `Python Packaging Authority `__ is the group of " "developers and documentation authors responsible for the maintenance and " "evolution of the standard packaging tools and the associated metadata and " "file format standards. They maintain a variety of tools, documentation, and " -"issue trackers on both `GitHub `__ and `Bitbucket " -"`__." +"issue trackers on `GitHub `__." msgstr "" "`Python Packaging Authority `__, standart paketleme " "araçlarının ve ilişkili meta veri ve dosya biçimi standartlarının bakımından " @@ -143,7 +143,7 @@ msgstr "" "bitbucket.org/pypa/>`__ 'ta çeşitli araçlar, dokümantasyon ve sorun " "izleyicileri bulundururlar." -#: installing/index.rst:59 +#: installing/index.rst:58 msgid "" "``distutils`` is the original build and distribution system first added to " "the Python standard library in 1998. While direct use of ``distutils`` is " @@ -160,13 +160,13 @@ msgstr "" "yaşıyor (Python paketleme standartlarının geliştirilmesini koordine etmek " "için kullanılan posta listesinin adı gibi)." -#: installing/index.rst:67 +#: installing/index.rst:66 msgid "" "The use of ``venv`` is now recommended for creating virtual environments." msgstr "" "Artık sanal ortamlar oluşturmak için ``venv`` 'in kullanılması önerilir." -#: installing/index.rst:72 +#: installing/index.rst:71 msgid "" "`Python Packaging User Guide: Creating and using virtual environments " "`__" @@ -174,11 +174,11 @@ msgstr "" "`Python Paketleme Kullanıcı Kılavuzu: Sanal ortamları oluşturma ve kullanma " "`__" -#: installing/index.rst:77 +#: installing/index.rst:76 msgid "Basic usage" msgstr "Temel kullanım" -#: installing/index.rst:79 +#: installing/index.rst:78 msgid "" "The standard packaging tools are all designed to be used from the command " "line." @@ -186,7 +186,7 @@ msgstr "" "Standart paketleme araçlarının tümü, komut satırından kullanılmak üzere " "tasarlanmıştır." -#: installing/index.rst:82 +#: installing/index.rst:81 msgid "" "The following command will install the latest version of a module and its " "dependencies from the Python Package Index::" @@ -194,7 +194,7 @@ msgstr "" "Aşağıdaki komut, bir modülün en son sürümünü ve bağımlılıklarını Python " "Paket Dizininden yükleyecektir::" -#: installing/index.rst:89 +#: installing/index.rst:88 msgid "" "For POSIX users (including macOS and Linux users), the examples in this " "guide assume the use of a :term:`virtual environment`." @@ -203,7 +203,7 @@ msgstr "" "kılavuzdaki örneklerde bir :term:`virtual environment` kullanıldığı " "varsayılmıştır." -#: installing/index.rst:92 +#: installing/index.rst:91 msgid "" "For Windows users, the examples in this guide assume that the option to " "adjust the system PATH environment variable was selected when installing " @@ -213,7 +213,7 @@ msgstr "" "sistem PATH ortam değişkenini ayarlama seçeneğinin seçildiği " "varsayılmaktadır." -#: installing/index.rst:96 +#: installing/index.rst:95 msgid "" "It's also possible to specify an exact or minimum version directly on the " "command line. When using comparator operators such as ``>``, ``<`` or some " @@ -225,7 +225,7 @@ msgstr "" "yorumlanan diğer bazı özel karakterler kullanılırken, paket adı ve sürüm " "çift tırnak içine alınmalıdır::" -#: installing/index.rst:104 +#: installing/index.rst:103 msgid "" "Normally, if a suitable module is already installed, attempting to install " "it again will have no effect. Upgrading existing modules must be requested " @@ -234,7 +234,7 @@ msgstr "" "Normalde, uygun bir modül zaten kuruluysa, onu tekrar kurmayı denemenin bir " "etkisi olmaz. Mevcut modüllerin yükseltilmesi açıkça talep edilmelidir::" -#: installing/index.rst:110 +#: installing/index.rst:109 msgid "" "More information and resources regarding ``pip`` and its capabilities can be " "found in the `Python Packaging User Guide `__." @@ -243,7 +243,7 @@ msgstr "" "Paketleme Kullanıcı Kılavuzu `__ 'nda " "bulunabilir." -#: installing/index.rst:113 +#: installing/index.rst:112 msgid "" "Creation of virtual environments is done through the :mod:`venv` module. " "Installing packages into an active virtual environment uses the commands " @@ -253,7 +253,7 @@ msgstr "" "Paketleri aktif bir sanal ortama kurmak, yukarıda gösterilen komutları " "kullanır." -#: installing/index.rst:119 +#: installing/index.rst:118 msgid "" "`Python Packaging User Guide: Installing Python Distribution Packages " "`__" @@ -261,19 +261,19 @@ msgstr "" "`Python Paketleme Kullanıcı Kılavuzu: Python Dağıtma Paketlerini Kurma " "`__" -#: installing/index.rst:124 +#: installing/index.rst:123 msgid "How do I ...?" msgstr "Nasıl yapabilirim ...?" -#: installing/index.rst:126 +#: installing/index.rst:125 msgid "These are quick answers or links for some common tasks." msgstr "Bunlar, bazı genel görevler için hızlı cevaplar veya bağlantılardır." -#: installing/index.rst:129 +#: installing/index.rst:128 msgid "... install ``pip`` in versions of Python prior to Python 3.4?" msgstr "... ``pip`` 'i Python 3.4'ten önceki Python sürümlerinde kurmalı mı?" -#: installing/index.rst:131 +#: installing/index.rst:130 msgid "" "Python only started bundling ``pip`` with Python 3.4. For earlier versions, " "``pip`` needs to be \"bootstrapped\" as described in the Python Packaging " @@ -283,7 +283,7 @@ msgstr "" "sürümler için, ``pip`` 'in Python Paketleme Kullanıcı Kılavuzu'nda " "açıklandığı gibi \"önyüklenmesi\" gerekir." -#: installing/index.rst:137 +#: installing/index.rst:136 msgid "" "`Python Packaging User Guide: Requirements for Installing Packages `__" @@ -292,11 +292,11 @@ msgstr "" "`__" -#: installing/index.rst:144 +#: installing/index.rst:143 msgid "... install packages just for the current user?" msgstr "... sadece mevcut kullanıcı için paketler kurabilirim?" -#: installing/index.rst:146 +#: installing/index.rst:145 msgid "" "Passing the ``--user`` option to ``python -m pip install`` will install a " "package just for the current user, rather than for all users of the system." @@ -305,11 +305,11 @@ msgstr "" "tüm kullanıcıları yerine yalnızca geçerli kullanıcı için bir paket " "yükleyecektir." -#: installing/index.rst:151 +#: installing/index.rst:150 msgid "... install scientific Python packages?" msgstr "... bilimsel Python paketleri kurabilirim?" -#: installing/index.rst:153 +#: installing/index.rst:152 msgid "" "A number of scientific Python packages have complex binary dependencies, and " "aren't currently easy to install using ``pip`` directly. At this point in " @@ -323,7 +323,7 @@ msgstr "" "yollar `__ ile kurması genellikle " "daha kolay olacaktır." -#: installing/index.rst:161 +#: installing/index.rst:160 msgid "" "`Python Packaging User Guide: Installing Scientific Packages `__" @@ -331,12 +331,12 @@ msgstr "" "`Python Paketleme Kullanıcı Kılavuzu: Bilimsel Paketler Kurma `__" -#: installing/index.rst:166 +#: installing/index.rst:165 msgid "... work with multiple versions of Python installed in parallel?" msgstr "" "... paralel olarak yüklenmiş birden çok Python sürümüyle çalışabilirim?" -#: installing/index.rst:168 +#: installing/index.rst:167 msgid "" "On Linux, macOS, and other POSIX systems, use the versioned Python commands " "in combination with the ``-m`` switch to run the appropriate copy of " @@ -346,11 +346,11 @@ msgstr "" "çalıştırmak için ``-m`` anahtarıyla birlikte sürümlü Python komutlarını " "kullanın::" -#: installing/index.rst:177 +#: installing/index.rst:176 msgid "Appropriately versioned ``pip`` commands may also be available." msgstr "Uygun sürüme sahip ``pip`` komutları da mevcut olabilir." -#: installing/index.rst:179 +#: installing/index.rst:178 msgid "" "On Windows, use the ``py`` Python launcher in combination with the ``-m`` " "switch::" @@ -358,15 +358,15 @@ msgstr "" "Windows'ta, ``py`` Python başlatıcısını ``-m`` anahtarıyla birlikte " "kullanın::" -#: installing/index.rst:196 +#: installing/index.rst:195 msgid "Common installation issues" msgstr "Genel yükleme sorunları" -#: installing/index.rst:199 +#: installing/index.rst:198 msgid "Installing into the system Python on Linux" msgstr "Python'u Linux'te sisteme kurmak" -#: installing/index.rst:201 +#: installing/index.rst:200 msgid "" "On Linux systems, a Python installation will typically be included as part " "of the distribution. Installing into this Python installation requires root " @@ -380,7 +380,7 @@ msgstr "" "kullanılarak güncellenirse, sistem paketi yöneticisinin ve sistemin diğer " "bileşenlerinin çalışmasına müdahale edebilir." -#: installing/index.rst:207 +#: installing/index.rst:206 msgid "" "On such systems, it is often better to use a virtual environment or a per-" "user installation when installing packages with ``pip``." @@ -388,18 +388,18 @@ msgstr "" "Bu tür sistemlerde, ``pip`` ile paketleri kurarken sanal ortam veya " "kullanıcı başına kurulum kullanmak genellikle daha iyidir." -#: installing/index.rst:212 +#: installing/index.rst:211 msgid "Pip not installed" msgstr "Pip yüklü değil" -#: installing/index.rst:214 +#: installing/index.rst:213 msgid "" "It is possible that ``pip`` does not get installed by default. One potential " "fix is::" msgstr "" "``pip`` 'in varsayılan olarak yüklenmemesi mümkündür. Bir olası düzeltme::" -#: installing/index.rst:218 +#: installing/index.rst:217 msgid "" "There are also additional resources for `installing pip. `__ için " "ek kaynaklar da vardır." -#: installing/index.rst:223 +#: installing/index.rst:222 msgid "Installing binary extensions" msgstr "İkili uzantıları yükleme" -#: installing/index.rst:225 +#: installing/index.rst:224 msgid "" "Python has typically relied heavily on source based distribution, with end " "users being expected to compile extension modules from source as part of the " @@ -423,7 +423,7 @@ msgstr "" "kullanıcıların kurulum sürecinin bir parçası olarak uzantı modüllerini " "kaynaktan derlemesi beklenir." -#: installing/index.rst:229 +#: installing/index.rst:228 msgid "" "With the introduction of support for the binary ``wheel`` format, and the " "ability to publish wheels for at least Windows and macOS through the Python " @@ -437,7 +437,7 @@ msgstr "" "yerine daha düzenli bir şekilde yükleyebildiğinden bu sorunun zaman içinde " "azalması bekleniyor." -#: installing/index.rst:235 +#: installing/index.rst:234 msgid "" "Some of the solutions for installing `scientific software `__ that are not yet available as pre-built ``wheel`` " @@ -449,7 +449,7 @@ msgstr "" "olmayan çözümlerden bazıları, diğer ikili uzantıları yerel olarak kurmaya " "gerek kalmadan edinmeye de yardımcı olabilir." -#: installing/index.rst:242 +#: installing/index.rst:241 msgid "" "`Python Packaging User Guide: Binary Extensions `__" diff --git a/library/__main__.po b/library/__main__.po index d53e73a51..ad297956e 100644 --- a/library/__main__.po +++ b/library/__main__.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -194,8 +194,8 @@ msgstr "" #: library/__main__.rst:180 msgid "" "By proactively following this convention ourselves, our module will have the " -"same behavior when run directly (i.e. ``python3 echo.py``) as it will have " -"if we later package it as a console script entry-point in a pip-installable " +"same behavior when run directly (i.e. ``python echo.py``) as it will have if " +"we later package it as a console script entry-point in a pip-installable " "package." msgstr "" diff --git a/library/_thread.po b/library/_thread.po index 5632826e8..38c317940 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -76,52 +76,58 @@ msgid "" msgstr "" #: library/_thread.rst:60 +msgid "" +"Raises an :ref:`auditing event ` ``_thread.start_new_thread`` with " +"arguments ``function``, ``args``, ``kwargs``." +msgstr "" + +#: library/_thread.rst:62 msgid ":func:`sys.unraisablehook` is now used to handle unhandled exceptions." msgstr "" -#: library/_thread.rst:66 +#: library/_thread.rst:68 msgid "" "Simulate the effect of a signal arriving in the main thread. A thread can " "use this function to interrupt the main thread, though there is no guarantee " "that the interruption will happen immediately." msgstr "" -#: library/_thread.rst:70 +#: library/_thread.rst:72 msgid "" "If given, *signum* is the number of the signal to simulate. If *signum* is " "not given, :const:`signal.SIGINT` is simulated." msgstr "" -#: library/_thread.rst:73 +#: library/_thread.rst:75 msgid "" "If the given signal isn't handled by Python (it was set to :const:`signal." "SIG_DFL` or :const:`signal.SIG_IGN`), this function does nothing." msgstr "" -#: library/_thread.rst:77 +#: library/_thread.rst:79 msgid "The *signum* argument is added to customize the signal number." msgstr "" -#: library/_thread.rst:81 +#: library/_thread.rst:83 msgid "" "This does not emit the corresponding signal but schedules a call to the " "associated handler (if it exists). If you want to truly emit the signal, " "use :func:`signal.raise_signal`." msgstr "" -#: library/_thread.rst:88 +#: library/_thread.rst:90 msgid "" "Raise the :exc:`SystemExit` exception. When not caught, this will cause the " "thread to exit silently." msgstr "" -#: library/_thread.rst:102 +#: library/_thread.rst:104 msgid "" "Return a new lock object. Methods of locks are described below. The lock " "is initially unlocked." msgstr "" -#: library/_thread.rst:108 +#: library/_thread.rst:110 msgid "" "Return the 'thread identifier' of the current thread. This is a nonzero " "integer. Its value has no direct meaning; it is intended as a magic cookie " @@ -130,7 +136,7 @@ msgid "" "created." msgstr "" -#: library/_thread.rst:116 +#: library/_thread.rst:118 msgid "" "Return the native integral Thread ID of the current thread assigned by the " "kernel. This is a non-negative integer. Its value may be used to uniquely " @@ -138,13 +144,13 @@ msgid "" "after which the value may be recycled by the OS)." msgstr "" -#: library/_thread.rst:121 +#: library/_thread.rst:123 msgid "" ":ref:`Availability `: Windows, FreeBSD, Linux, macOS, OpenBSD, " -"NetBSD, AIX." +"NetBSD, AIX, DragonFlyBSD." msgstr "" -#: library/_thread.rst:128 +#: library/_thread.rst:130 msgid "" "Return the thread stack size used when creating new threads. The optional " "*size* argument specifies the stack size to be used for subsequently created " @@ -163,26 +169,26 @@ msgid "" "information)." msgstr "" -#: library/_thread.rst:143 +#: library/_thread.rst:145 msgid ":ref:`Availability `: Windows, pthreads." msgstr "" -#: library/_thread.rst:145 +#: library/_thread.rst:147 msgid "Unix platforms with POSIX threads support." msgstr "" -#: library/_thread.rst:150 +#: library/_thread.rst:152 msgid "" "The maximum value allowed for the *timeout* parameter of :meth:`Lock.acquire " "`. Specifying a timeout greater than this value will " "raise an :exc:`OverflowError`." msgstr "" -#: library/_thread.rst:157 +#: library/_thread.rst:159 msgid "Lock objects have the following methods:" msgstr "" -#: library/_thread.rst:162 +#: library/_thread.rst:164 msgid "" "Without any optional argument, this method acquires the lock " "unconditionally, if necessary waiting until it is released by another thread " @@ -190,7 +196,7 @@ msgid "" "existence)." msgstr "" -#: library/_thread.rst:166 +#: library/_thread.rst:168 msgid "" "If the *blocking* argument is present, the action depends on its value: if " "it is False, the lock is only acquired if it can be acquired immediately " @@ -198,7 +204,7 @@ msgid "" "as above." msgstr "" -#: library/_thread.rst:171 +#: library/_thread.rst:173 msgid "" "If the floating-point *timeout* argument is present and positive, it " "specifies the maximum wait time in seconds before returning. A negative " @@ -206,70 +212,70 @@ msgid "" "*timeout* if *blocking* is False." msgstr "" -#: library/_thread.rst:176 +#: library/_thread.rst:178 msgid "" "The return value is ``True`` if the lock is acquired successfully, ``False`` " "if not." msgstr "" -#: library/_thread.rst:179 +#: library/_thread.rst:181 msgid "The *timeout* parameter is new." msgstr "" -#: library/_thread.rst:182 +#: library/_thread.rst:184 msgid "Lock acquires can now be interrupted by signals on POSIX." msgstr "" -#: library/_thread.rst:188 +#: library/_thread.rst:190 msgid "" "Releases the lock. The lock must have been acquired earlier, but not " "necessarily by the same thread." msgstr "" -#: library/_thread.rst:194 +#: library/_thread.rst:196 msgid "" "Return the status of the lock: ``True`` if it has been acquired by some " "thread, ``False`` if not." msgstr "" -#: library/_thread.rst:197 +#: library/_thread.rst:199 msgid "" "In addition to these methods, lock objects can also be used via the :keyword:" "`with` statement, e.g.::" msgstr "" -#: library/_thread.rst:207 +#: library/_thread.rst:209 msgid "**Caveats:**" msgstr "" -#: library/_thread.rst:211 +#: library/_thread.rst:213 msgid "" "Threads interact strangely with interrupts: the :exc:`KeyboardInterrupt` " "exception will be received by an arbitrary thread. (When the :mod:`signal` " "module is available, interrupts always go to the main thread.)" msgstr "" -#: library/_thread.rst:215 +#: library/_thread.rst:217 msgid "" "Calling :func:`sys.exit` or raising the :exc:`SystemExit` exception is " "equivalent to calling :func:`_thread.exit`." msgstr "" -#: library/_thread.rst:218 +#: library/_thread.rst:220 msgid "" "It is not possible to interrupt the :meth:`~threading.Lock.acquire` method " "on a lock --- the :exc:`KeyboardInterrupt` exception will happen after the " "lock has been acquired." msgstr "" -#: library/_thread.rst:222 +#: library/_thread.rst:224 msgid "" "When the main thread exits, it is system defined whether the other threads " "survive. On most systems, they are killed without executing :keyword:" "`try` ... :keyword:`finally` clauses or executing object destructors." msgstr "" -#: library/_thread.rst:227 +#: library/_thread.rst:229 msgid "" "When the main thread exits, it does not do any of its usual cleanup (except " "that :keyword:`try` ... :keyword:`finally` clauses are honored), and the " @@ -304,10 +310,10 @@ msgstr "" msgid "POSIX" msgstr "" -#: library/_thread.rst:209 +#: library/_thread.rst:211 msgid "module" msgstr "" -#: library/_thread.rst:209 +#: library/_thread.rst:211 msgid "signal" msgstr "" diff --git a/library/argparse.po b/library/argparse.po index 80c0bd7fa..ccad93de0 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -55,7 +55,8 @@ msgstr "" msgid "" "The :mod:`argparse` module's support for command-line interfaces is built " "around an instance of :class:`argparse.ArgumentParser`. It is a container " -"for argument specifications and has options that apply the parser as whole::" +"for argument specifications and has options that apply to the parser as " +"whole::" msgstr "" #: library/argparse.rst:41 @@ -184,7 +185,7 @@ msgid "``True`` or ``False``" msgstr "" #: library/argparse.rst:72 -msgid "type_" +msgid ":ref:`type `" msgstr "" #: library/argparse.rst:72 @@ -382,7 +383,7 @@ msgstr "" msgid "*exit_on_error* parameter was added." msgstr "" -#: library/argparse.rst:770 +#: library/argparse.rst:780 msgid "The following sections describe how each of these are used." msgstr "" @@ -585,7 +586,7 @@ msgid "" "by the arguments they contain. For example::" msgstr "" -#: library/argparse.rst:573 +#: library/argparse.rst:574 msgid "" "Arguments read from a file must by default be one per line (but see also :" "meth:`~ArgumentParser.convert_arg_line_to_args`) and are treated as if they " @@ -595,17 +596,32 @@ msgid "" "f', 'bar']``." msgstr "" -#: library/argparse.rst:579 +#: library/argparse.rst:580 +msgid "" +":class:`ArgumentParser` uses :term:`filesystem encoding and error handler` " +"to read the file containing arguments." +msgstr "" + +#: library/argparse.rst:583 msgid "" "The ``fromfile_prefix_chars=`` argument defaults to ``None``, meaning that " "arguments will never be treated as file references." msgstr "" -#: library/argparse.rst:584 +#: library/argparse.rst:586 +msgid "" +":class:`ArgumentParser` changed encoding and errors to read arguments files " +"from default (e.g. :func:`locale.getpreferredencoding(False) ` and ``\"strict\"``) to :term:`filesystem encoding and " +"error handler`. Arguments file should be encoded in UTF-8 instead of ANSI " +"Codepage on Windows." +msgstr "" + +#: library/argparse.rst:594 msgid "argument_default" msgstr "" -#: library/argparse.rst:586 +#: library/argparse.rst:596 msgid "" "Generally, argument defaults are specified either by passing a default to :" "meth:`~ArgumentParser.add_argument` or by calling the :meth:`~ArgumentParser." @@ -617,26 +633,26 @@ msgid "" "supply ``argument_default=SUPPRESS``::" msgstr "" -#: library/argparse.rst:606 +#: library/argparse.rst:616 msgid "allow_abbrev" msgstr "" -#: library/argparse.rst:608 +#: library/argparse.rst:618 msgid "" "Normally, when you pass an argument list to the :meth:`~ArgumentParser." "parse_args` method of an :class:`ArgumentParser`, it :ref:`recognizes " "abbreviations ` of long options." msgstr "" -#: library/argparse.rst:612 +#: library/argparse.rst:622 msgid "This feature can be disabled by setting ``allow_abbrev`` to ``False``::" msgstr "" -#: library/argparse.rst:625 +#: library/argparse.rst:635 msgid "conflict_handler" msgstr "" -#: library/argparse.rst:627 +#: library/argparse.rst:637 msgid "" ":class:`ArgumentParser` objects do not allow two actions with the same " "option string. By default, :class:`ArgumentParser` objects raise an " @@ -644,7 +660,7 @@ msgid "" "that is already in use::" msgstr "" -#: library/argparse.rst:639 +#: library/argparse.rst:649 msgid "" "Sometimes (e.g. when using parents_) it may be useful to simply override any " "older arguments with the same option string. To get this behavior, the " @@ -652,7 +668,7 @@ msgid "" "of :class:`ArgumentParser`::" msgstr "" -#: library/argparse.rst:655 +#: library/argparse.rst:665 msgid "" "Note that :class:`ArgumentParser` objects only remove an action if all of " "its option strings are overridden. So, in the example above, the old ``-f/--" @@ -660,31 +676,31 @@ msgid "" "option string was overridden." msgstr "" -#: library/argparse.rst:662 +#: library/argparse.rst:672 msgid "add_help" msgstr "" -#: library/argparse.rst:664 +#: library/argparse.rst:674 msgid "" "By default, ArgumentParser objects add an option which simply displays the " "parser's help message. For example, consider a file named ``myprogram.py`` " "containing the following code::" msgstr "" -#: library/argparse.rst:673 +#: library/argparse.rst:683 msgid "" "If ``-h`` or ``--help`` is supplied at the command line, the ArgumentParser " "help will be printed:" msgstr "" -#: library/argparse.rst:685 +#: library/argparse.rst:695 msgid "" "Occasionally, it may be useful to disable the addition of this help option. " "This can be achieved by passing ``False`` as the ``add_help=`` argument to :" "class:`ArgumentParser`::" msgstr "" -#: library/argparse.rst:697 +#: library/argparse.rst:707 msgid "" "The help option is typically ``-h/--help``. The exception to this is if the " "``prefix_chars=`` is specified and does not include ``-``, in which case ``-" @@ -692,94 +708,94 @@ msgid "" "in ``prefix_chars`` is used to prefix the help options::" msgstr "" -#: library/argparse.rst:712 +#: library/argparse.rst:722 msgid "exit_on_error" msgstr "" -#: library/argparse.rst:714 +#: library/argparse.rst:724 msgid "" "Normally, when you pass an invalid argument list to the :meth:" "`~ArgumentParser.parse_args` method of an :class:`ArgumentParser`, it will " "exit with error info." msgstr "" -#: library/argparse.rst:717 +#: library/argparse.rst:727 msgid "" "If the user would like to catch errors manually, the feature can be enabled " "by setting ``exit_on_error`` to ``False``::" msgstr "" -#: library/argparse.rst:734 +#: library/argparse.rst:744 msgid "The add_argument() method" msgstr "" -#: library/argparse.rst:740 +#: library/argparse.rst:750 msgid "" "Define how a single command-line argument should be parsed. Each parameter " "has its own more detailed description below, but in short they are:" msgstr "" -#: library/argparse.rst:743 +#: library/argparse.rst:753 msgid "" "`name or flags`_ - Either a name or a list of option strings, e.g. ``foo`` " "or ``-f, --foo``." msgstr "" -#: library/argparse.rst:746 +#: library/argparse.rst:756 msgid "" "action_ - The basic type of action to be taken when this argument is " "encountered at the command line." msgstr "" -#: library/argparse.rst:749 +#: library/argparse.rst:759 msgid "nargs_ - The number of command-line arguments that should be consumed." msgstr "" -#: library/argparse.rst:751 +#: library/argparse.rst:761 msgid "" "const_ - A constant value required by some action_ and nargs_ selections." msgstr "" -#: library/argparse.rst:753 +#: library/argparse.rst:763 msgid "" "default_ - The value produced if the argument is absent from the command " "line and if it is absent from the namespace object." msgstr "" -#: library/argparse.rst:756 +#: library/argparse.rst:766 msgid "" "type_ - The type to which the command-line argument should be converted." msgstr "" -#: library/argparse.rst:758 +#: library/argparse.rst:768 msgid "choices_ - A sequence of the allowable values for the argument." msgstr "" -#: library/argparse.rst:760 +#: library/argparse.rst:770 msgid "" "required_ - Whether or not the command-line option may be omitted (optionals " "only)." msgstr "" -#: library/argparse.rst:763 +#: library/argparse.rst:773 msgid "help_ - A brief description of what the argument does." msgstr "" -#: library/argparse.rst:765 +#: library/argparse.rst:775 msgid "metavar_ - A name for the argument in usage messages." msgstr "" -#: library/argparse.rst:767 +#: library/argparse.rst:777 msgid "" "dest_ - The name of the attribute to be added to the object returned by :" "meth:`parse_args`." msgstr "" -#: library/argparse.rst:776 +#: library/argparse.rst:786 msgid "name or flags" msgstr "" -#: library/argparse.rst:778 +#: library/argparse.rst:788 msgid "" "The :meth:`~ArgumentParser.add_argument` method must know whether an " "optional argument, like ``-f`` or ``--foo``, or a positional argument, like " @@ -788,26 +804,26 @@ msgid "" "or a simple argument name." msgstr "" -#: library/argparse.rst:784 +#: library/argparse.rst:794 msgid "For example, an optional argument could be created like::" msgstr "" -#: library/argparse.rst:788 +#: library/argparse.rst:798 msgid "while a positional argument could be created like::" msgstr "" -#: library/argparse.rst:792 +#: library/argparse.rst:802 msgid "" "When :meth:`~ArgumentParser.parse_args` is called, optional arguments will " "be identified by the ``-`` prefix, and the remaining arguments will be " "assumed to be positional::" msgstr "" -#: library/argparse.rst:811 +#: library/argparse.rst:821 msgid "action" msgstr "" -#: library/argparse.rst:813 +#: library/argparse.rst:823 msgid "" ":class:`ArgumentParser` objects associate command-line arguments with " "actions. These actions can do just about anything with the command-line " @@ -817,13 +833,13 @@ msgid "" "be handled. The supplied actions are:" msgstr "" -#: library/argparse.rst:819 +#: library/argparse.rst:829 msgid "" "``'store'`` - This just stores the argument's value. This is the default " "action. For example::" msgstr "" -#: library/argparse.rst:827 +#: library/argparse.rst:837 msgid "" "``'store_const'`` - This stores the value specified by the const_ keyword " "argument; note that the const_ keyword argument defaults to ``None``. The " @@ -831,7 +847,7 @@ msgid "" "specify some sort of flag. For example::" msgstr "" -#: library/argparse.rst:837 +#: library/argparse.rst:847 msgid "" "``'store_true'`` and ``'store_false'`` - These are special cases of " "``'store_const'`` used for storing the values ``True`` and ``False`` " @@ -839,7 +855,7 @@ msgid "" "``True`` respectively. For example::" msgstr "" -#: library/argparse.rst:849 +#: library/argparse.rst:859 msgid "" "``'append'`` - This stores a list, and appends each argument value to the " "list. It is useful to allow an option to be specified multiple times. If the " @@ -848,7 +864,7 @@ msgid "" "after those default values. Example usage::" msgstr "" -#: library/argparse.rst:860 +#: library/argparse.rst:870 msgid "" "``'append_const'`` - This stores a list, and appends the value specified by " "the const_ keyword argument to the list; note that the const_ keyword " @@ -857,17 +873,17 @@ msgid "" "example::" msgstr "" -#: library/argparse.rst:872 +#: library/argparse.rst:882 msgid "" "``'count'`` - This counts the number of times a keyword argument occurs. For " "example, this is useful for increasing verbosity levels::" msgstr "" -#: library/argparse.rst:880 +#: library/argparse.rst:890 msgid "Note, the *default* will be ``None`` unless explicitly set to *0*." msgstr "" -#: library/argparse.rst:882 +#: library/argparse.rst:892 msgid "" "``'help'`` - This prints a complete help message for all the options in the " "current parser and then exits. By default a help action is automatically " @@ -875,20 +891,20 @@ msgid "" "output is created." msgstr "" -#: library/argparse.rst:887 +#: library/argparse.rst:897 msgid "" "``'version'`` - This expects a ``version=`` keyword argument in the :meth:" "`~ArgumentParser.add_argument` call, and prints version information and " "exits when invoked::" msgstr "" -#: library/argparse.rst:897 +#: library/argparse.rst:907 msgid "" "``'extend'`` - This stores a list, and extends each argument value to the " "list. Example usage::" msgstr "" -#: library/argparse.rst:908 +#: library/argparse.rst:918 msgid "" "You may also specify an arbitrary action by passing an Action subclass or " "other object that implements the same interface. The " @@ -896,46 +912,46 @@ msgid "" "boolean actions such as ``--foo`` and ``--no-foo``::" msgstr "" -#: library/argparse.rst:921 +#: library/argparse.rst:931 msgid "" "The recommended way to create a custom action is to extend :class:`Action`, " "overriding the ``__call__`` method and optionally the ``__init__`` and " "``format_usage`` methods." msgstr "" -#: library/argparse.rst:925 +#: library/argparse.rst:935 msgid "An example of a custom action::" msgstr "" -#: library/argparse.rst:945 +#: library/argparse.rst:955 msgid "For more details, see :class:`Action`." msgstr "" -#: library/argparse.rst:951 +#: library/argparse.rst:961 msgid "nargs" msgstr "" -#: library/argparse.rst:953 +#: library/argparse.rst:963 msgid "" "ArgumentParser objects usually associate a single command-line argument with " "a single action to be taken. The ``nargs`` keyword argument associates a " -"different number of command-line arguments with a single action. The " -"supported values are:" +"different number of command-line arguments with a single action. See also :" +"ref:`specifying-ambiguous-arguments`. The supported values are:" msgstr "" -#: library/argparse.rst:958 +#: library/argparse.rst:968 msgid "" "``N`` (an integer). ``N`` arguments from the command line will be gathered " "together into a list. For example::" msgstr "" -#: library/argparse.rst:967 +#: library/argparse.rst:977 msgid "" "Note that ``nargs=1`` produces a list of one item. This is different from " "the default, in which the item is produced by itself." msgstr "" -#: library/argparse.rst:972 +#: library/argparse.rst:982 msgid "" "``'?'``. One argument will be consumed from the command line if possible, " "and produced as a single item. If no command-line argument is present, the " @@ -945,13 +961,13 @@ msgid "" "produced. Some examples to illustrate this::" msgstr "" -#: library/argparse.rst:989 +#: library/argparse.rst:999 msgid "" "One of the more common uses of ``nargs='?'`` is to allow optional input and " "output files::" msgstr "" -#: library/argparse.rst:1006 +#: library/argparse.rst:1016 msgid "" "``'*'``. All command-line arguments present are gathered into a list. Note " "that it generally doesn't make much sense to have more than one positional " @@ -959,14 +975,14 @@ msgid "" "``nargs='*'`` is possible. For example::" msgstr "" -#: library/argparse.rst:1020 +#: library/argparse.rst:1030 msgid "" "``'+'``. Just like ``'*'``, all command-line args present are gathered into " "a list. Additionally, an error message will be generated if there wasn't at " "least one command-line argument present. For example::" msgstr "" -#: library/argparse.rst:1032 +#: library/argparse.rst:1042 msgid "" "If the ``nargs`` keyword argument is not provided, the number of arguments " "consumed is determined by the action_. Generally this means a single " @@ -974,11 +990,11 @@ msgid "" "be produced." msgstr "" -#: library/argparse.rst:1040 +#: library/argparse.rst:1050 msgid "const" msgstr "" -#: library/argparse.rst:1042 +#: library/argparse.rst:1052 msgid "" "The ``const`` argument of :meth:`~ArgumentParser.add_argument` is used to " "hold constant values that are not read from the command line but are " @@ -986,7 +1002,7 @@ msgid "" "common uses of it are:" msgstr "" -#: library/argparse.rst:1046 +#: library/argparse.rst:1056 msgid "" "When :meth:`~ArgumentParser.add_argument` is called with " "``action='store_const'`` or ``action='append_const'``. These actions add " @@ -996,7 +1012,7 @@ msgid "" "receive a default value of ``None``." msgstr "" -#: library/argparse.rst:1054 +#: library/argparse.rst:1064 msgid "" "When :meth:`~ArgumentParser.add_argument` is called with option strings " "(like ``-f`` or ``--foo``) and ``nargs='?'``. This creates an optional " @@ -1006,17 +1022,17 @@ msgid "" "to be ``None`` instead. See the nargs_ description for examples." msgstr "" -#: library/argparse.rst:1061 +#: library/argparse.rst:1071 msgid "" "``const=None`` by default, including when ``action='append_const'`` or " "``action='store_const'``." msgstr "" -#: library/argparse.rst:1068 +#: library/argparse.rst:1078 msgid "default" msgstr "" -#: library/argparse.rst:1070 +#: library/argparse.rst:1080 msgid "" "All optional arguments and some positional arguments may be omitted at the " "command line. The ``default`` keyword argument of :meth:`~ArgumentParser." @@ -1026,13 +1042,13 @@ msgid "" "command line::" msgstr "" -#: library/argparse.rst:1084 +#: library/argparse.rst:1094 msgid "" "If the target namespace already has an attribute set, the action *default* " "will not over write it::" msgstr "" -#: library/argparse.rst:1092 +#: library/argparse.rst:1102 msgid "" "If the ``default`` value is a string, the parser parses the value as if it " "were a command-line argument. In particular, the parser applies any type_ " @@ -1040,23 +1056,23 @@ msgid "" "`Namespace` return value. Otherwise, the parser uses the value as is::" msgstr "" -#: library/argparse.rst:1103 +#: library/argparse.rst:1113 msgid "" "For positional arguments with nargs_ equal to ``?`` or ``*``, the " "``default`` value is used when no command-line argument was present::" msgstr "" -#: library/argparse.rst:1114 +#: library/argparse.rst:1124 msgid "" "Providing ``default=argparse.SUPPRESS`` causes no attribute to be added if " "the command-line argument was not present::" msgstr "" -#: library/argparse.rst:1128 +#: library/argparse.rst:1138 msgid "type" msgstr "" -#: library/argparse.rst:1130 +#: library/argparse.rst:1140 msgid "" "By default, the parser reads command-line arguments in as simple strings. " "However, quite often the command-line string should instead be interpreted " @@ -1065,13 +1081,13 @@ msgid "" "checking and type conversions to be performed." msgstr "" -#: library/argparse.rst:1136 +#: library/argparse.rst:1146 msgid "" "If the type_ keyword is used with the default_ keyword, the type converter " "is only applied if the default is a string." msgstr "" -#: library/argparse.rst:1139 +#: library/argparse.rst:1149 msgid "" "The argument to ``type`` can be any callable that accepts a single string. " "If the function raises :exc:`ArgumentTypeError`, :exc:`TypeError`, or :exc:" @@ -1079,22 +1095,22 @@ msgid "" "is displayed. No other exception types are handled." msgstr "" -#: library/argparse.rst:1144 +#: library/argparse.rst:1154 msgid "Common built-in types and functions can be used as type converters:" msgstr "" -#: library/argparse.rst:1160 +#: library/argparse.rst:1170 msgid "User defined functions can be used as well:" msgstr "" -#: library/argparse.rst:1172 +#: library/argparse.rst:1182 msgid "" "The :func:`bool` function is not recommended as a type converter. All it " "does is convert empty strings to ``False`` and non-empty strings to " "``True``. This is usually not what is desired." msgstr "" -#: library/argparse.rst:1176 +#: library/argparse.rst:1186 msgid "" "In general, the ``type`` keyword is a convenience that should only be used " "for simple conversions that can only raise one of the three supported " @@ -1102,7 +1118,7 @@ msgid "" "management should be done downstream after the arguments are parsed." msgstr "" -#: library/argparse.rst:1181 +#: library/argparse.rst:1191 msgid "" "For example, JSON or YAML conversions have complex error cases that require " "better reporting than can be given by the ``type`` keyword. A :exc:`~json." @@ -1110,7 +1126,7 @@ msgid "" "exception would not be handled at all." msgstr "" -#: library/argparse.rst:1186 +#: library/argparse.rst:1196 msgid "" "Even :class:`~argparse.FileType` has its limitations for use with the " "``type`` keyword. If one argument uses *FileType* and then a subsequent " @@ -1119,17 +1135,17 @@ msgid "" "run and then use the :keyword:`with`-statement to manage the files." msgstr "" -#: library/argparse.rst:1192 +#: library/argparse.rst:1202 msgid "" "For type checkers that simply check against a fixed set of values, consider " "using the choices_ keyword instead." msgstr "" -#: library/argparse.rst:1199 +#: library/argparse.rst:1209 msgid "choices" msgstr "" -#: library/argparse.rst:1201 +#: library/argparse.rst:1211 msgid "" "Some command-line arguments should be selected from a restricted set of " "values. These can be handled by passing a sequence object as the *choices* " @@ -1138,26 +1154,26 @@ msgid "" "be displayed if the argument was not one of the acceptable values::" msgstr "" -#: library/argparse.rst:1216 +#: library/argparse.rst:1226 msgid "" "Note that inclusion in the *choices* sequence is checked after any type_ " "conversions have been performed, so the type of the objects in the *choices* " "sequence should match the type_ specified::" msgstr "" -#: library/argparse.rst:1228 +#: library/argparse.rst:1238 msgid "" "Any sequence can be passed as the *choices* value, so :class:`list` " "objects, :class:`tuple` objects, and custom sequences are all supported." msgstr "" -#: library/argparse.rst:1231 +#: library/argparse.rst:1241 msgid "" "Use of :class:`enum.Enum` is not recommended because it is difficult to " "control its appearance in usage, help, and error messages." msgstr "" -#: library/argparse.rst:1234 +#: library/argparse.rst:1244 msgid "" "Formatted choices override the default *metavar* which is normally derived " "from *dest*. This is usually what you want because the user never sees the " @@ -1165,11 +1181,11 @@ msgid "" "are many choices), just specify an explicit metavar_." msgstr "" -#: library/argparse.rst:1243 +#: library/argparse.rst:1253 msgid "required" msgstr "" -#: library/argparse.rst:1245 +#: library/argparse.rst:1255 msgid "" "In general, the :mod:`argparse` module assumes that flags like ``-f`` and " "``--bar`` indicate *optional* arguments, which can always be omitted at the " @@ -1177,24 +1193,24 @@ msgid "" "the ``required=`` keyword argument to :meth:`~ArgumentParser.add_argument`::" msgstr "" -#: library/argparse.rst:1258 +#: library/argparse.rst:1268 msgid "" "As the example shows, if an option is marked as ``required``, :meth:" "`~ArgumentParser.parse_args` will report an error if that option is not " "present at the command line." msgstr "" -#: library/argparse.rst:1264 +#: library/argparse.rst:1274 msgid "" "Required options are generally considered bad form because users expect " "*options* to be *optional*, and thus they should be avoided when possible." msgstr "" -#: library/argparse.rst:1271 +#: library/argparse.rst:1281 msgid "help" msgstr "" -#: library/argparse.rst:1273 +#: library/argparse.rst:1283 msgid "" "The ``help`` value is a string containing a brief description of the " "argument. When a user requests help (usually by using ``-h`` or ``--help`` " @@ -1202,7 +1218,7 @@ msgid "" "each argument::" msgstr "" -#: library/argparse.rst:1293 +#: library/argparse.rst:1303 msgid "" "The ``help`` strings can include various format specifiers to avoid " "repetition of things like the program name or the argument default_. The " @@ -1211,23 +1227,23 @@ msgid "" "``%(type)s``, etc.::" msgstr "" -#: library/argparse.rst:1310 +#: library/argparse.rst:1320 msgid "" "As the help string supports %-formatting, if you want a literal ``%`` to " "appear in the help string, you must escape it as ``%%``." msgstr "" -#: library/argparse.rst:1313 +#: library/argparse.rst:1323 msgid "" ":mod:`argparse` supports silencing the help entry for certain options, by " "setting the ``help`` value to ``argparse.SUPPRESS``::" msgstr "" -#: library/argparse.rst:1328 +#: library/argparse.rst:1338 msgid "metavar" msgstr "" -#: library/argparse.rst:1330 +#: library/argparse.rst:1340 msgid "" "When :class:`ArgumentParser` generates help messages, it needs some way to " "refer to each expected argument. By default, ArgumentParser objects use the " @@ -1239,29 +1255,29 @@ msgid "" "argument will be referred to as ``FOO``. An example::" msgstr "" -#: library/argparse.rst:1354 +#: library/argparse.rst:1364 msgid "An alternative name can be specified with ``metavar``::" msgstr "" -#: library/argparse.rst:1371 +#: library/argparse.rst:1381 msgid "" "Note that ``metavar`` only changes the *displayed* name - the name of the " "attribute on the :meth:`~ArgumentParser.parse_args` object is still " "determined by the dest_ value." msgstr "" -#: library/argparse.rst:1375 +#: library/argparse.rst:1385 msgid "" "Different values of ``nargs`` may cause the metavar to be used multiple " "times. Providing a tuple to ``metavar`` specifies a different display for " "each of the arguments::" msgstr "" -#: library/argparse.rst:1394 +#: library/argparse.rst:1404 msgid "dest" msgstr "" -#: library/argparse.rst:1396 +#: library/argparse.rst:1406 msgid "" "Most :class:`ArgumentParser` actions add some value as an attribute of the " "object returned by :meth:`~ArgumentParser.parse_args`. The name of this " @@ -1271,7 +1287,7 @@ msgid "" "add_argument`::" msgstr "" -#: library/argparse.rst:1408 +#: library/argparse.rst:1418 msgid "" "For optional argument actions, the value of ``dest`` is normally inferred " "from the option strings. :class:`ArgumentParser` generates the value of " @@ -1283,15 +1299,15 @@ msgid "" "below illustrate this behavior::" msgstr "" -#: library/argparse.rst:1425 +#: library/argparse.rst:1435 msgid "``dest`` allows a custom attribute name to be provided::" msgstr "" -#: library/argparse.rst:1433 +#: library/argparse.rst:1443 msgid "Action classes" msgstr "" -#: library/argparse.rst:1435 +#: library/argparse.rst:1445 msgid "" "Action classes implement the Action API, a callable which returns a callable " "which processes arguments from the command-line. Any object which follows " @@ -1299,7 +1315,7 @@ msgid "" "add_argument`." msgstr "" -#: library/argparse.rst:1444 +#: library/argparse.rst:1454 msgid "" "Action objects are used by an ArgumentParser to represent the information " "needed to parse a single argument from one or more strings from the command " @@ -1308,7 +1324,7 @@ msgid "" "the ``action`` itself." msgstr "" -#: library/argparse.rst:1450 +#: library/argparse.rst:1460 msgid "" "Instances of Action (or return value of any callable to the ``action`` " "parameter) should have attributes \"dest\", \"option_strings\", \"default\", " @@ -1316,114 +1332,114 @@ msgid "" "these attributes are defined is to call ``Action.__init__``." msgstr "" -#: library/argparse.rst:1455 +#: library/argparse.rst:1465 msgid "" "Action instances should be callable, so subclasses must override the " "``__call__`` method, which should accept four parameters:" msgstr "" -#: library/argparse.rst:1458 +#: library/argparse.rst:1468 msgid "``parser`` - The ArgumentParser object which contains this action." msgstr "" -#: library/argparse.rst:1460 +#: library/argparse.rst:1470 msgid "" "``namespace`` - The :class:`Namespace` object that will be returned by :meth:" "`~ArgumentParser.parse_args`. Most actions add an attribute to this object " "using :func:`setattr`." msgstr "" -#: library/argparse.rst:1464 +#: library/argparse.rst:1474 msgid "" "``values`` - The associated command-line arguments, with any type " "conversions applied. Type conversions are specified with the type_ keyword " "argument to :meth:`~ArgumentParser.add_argument`." msgstr "" -#: library/argparse.rst:1468 +#: library/argparse.rst:1478 msgid "" "``option_string`` - The option string that was used to invoke this action. " "The ``option_string`` argument is optional, and will be absent if the action " "is associated with a positional argument." msgstr "" -#: library/argparse.rst:1472 +#: library/argparse.rst:1482 msgid "" "The ``__call__`` method may perform arbitrary actions, but will typically " "set attributes on the ``namespace`` based on ``dest`` and ``values``." msgstr "" -#: library/argparse.rst:1475 +#: library/argparse.rst:1485 msgid "" "Action subclasses can define a ``format_usage`` method that takes no " "argument and return a string which will be used when printing the usage of " "the program. If such method is not provided, a sensible default will be used." msgstr "" -#: library/argparse.rst:1480 +#: library/argparse.rst:1490 msgid "The parse_args() method" msgstr "" -#: library/argparse.rst:1484 +#: library/argparse.rst:1494 msgid "" "Convert argument strings to objects and assign them as attributes of the " "namespace. Return the populated namespace." msgstr "" -#: library/argparse.rst:1487 +#: library/argparse.rst:1497 msgid "" "Previous calls to :meth:`add_argument` determine exactly what objects are " "created and how they are assigned. See the documentation for :meth:" "`add_argument` for details." msgstr "" -#: library/argparse.rst:1491 +#: library/argparse.rst:1501 msgid "" "args_ - List of strings to parse. The default is taken from :data:`sys." "argv`." msgstr "" -#: library/argparse.rst:1494 +#: library/argparse.rst:1504 msgid "" "namespace_ - An object to take the attributes. The default is a new empty :" "class:`Namespace` object." msgstr "" -#: library/argparse.rst:1499 +#: library/argparse.rst:1509 msgid "Option value syntax" msgstr "" -#: library/argparse.rst:1501 +#: library/argparse.rst:1511 msgid "" "The :meth:`~ArgumentParser.parse_args` method supports several ways of " "specifying the value of an option (if it takes one). In the simplest case, " "the option and its value are passed as two separate arguments::" msgstr "" -#: library/argparse.rst:1513 +#: library/argparse.rst:1523 msgid "" "For long options (options with names longer than a single character), the " "option and value can also be passed as a single command-line argument, using " "``=`` to separate them::" msgstr "" -#: library/argparse.rst:1520 +#: library/argparse.rst:1530 msgid "" "For short options (options only one character long), the option and its " "value can be concatenated::" msgstr "" -#: library/argparse.rst:1526 +#: library/argparse.rst:1536 msgid "" "Several short options can be joined together, using only a single ``-`` " "prefix, as long as only the last option (or none of them) requires a value::" msgstr "" -#: library/argparse.rst:1538 +#: library/argparse.rst:1548 msgid "Invalid arguments" msgstr "" -#: library/argparse.rst:1540 +#: library/argparse.rst:1550 msgid "" "While parsing the command line, :meth:`~ArgumentParser.parse_args` checks " "for a variety of errors, including ambiguous options, invalid types, invalid " @@ -1431,11 +1447,11 @@ msgid "" "an error, it exits and prints the error along with a usage message::" msgstr "" -#: library/argparse.rst:1566 +#: library/argparse.rst:1576 msgid "Arguments containing ``-``" msgstr "" -#: library/argparse.rst:1568 +#: library/argparse.rst:1578 msgid "" "The :meth:`~ArgumentParser.parse_args` method attempts to give errors " "whenever the user has clearly made a mistake, but some situations are " @@ -1447,7 +1463,7 @@ msgid "" "negative numbers::" msgstr "" -#: library/argparse.rst:1606 +#: library/argparse.rst:1616 msgid "" "If you have positional arguments that must begin with ``-`` and don't look " "like negative numbers, you can insert the pseudo-argument ``'--'`` which " @@ -1455,28 +1471,34 @@ msgid "" "positional argument::" msgstr "" -#: library/argparse.rst:1617 +#: library/argparse.rst:1624 +msgid "" +"See also :ref:`the argparse howto on ambiguous arguments ` for more details." +msgstr "" + +#: library/argparse.rst:1630 msgid "Argument abbreviations (prefix matching)" msgstr "" -#: library/argparse.rst:1619 +#: library/argparse.rst:1632 msgid "" "The :meth:`~ArgumentParser.parse_args` method :ref:`by default " "` allows long options to be abbreviated to a prefix, if the " "abbreviation is unambiguous (the prefix matches a unique option)::" msgstr "" -#: library/argparse.rst:1634 +#: library/argparse.rst:1647 msgid "" "An error is produced for arguments that could produce more than one options. " "This feature can be disabled by setting :ref:`allow_abbrev` to ``False``." msgstr "" -#: library/argparse.rst:1640 +#: library/argparse.rst:1653 msgid "Beyond ``sys.argv``" msgstr "" -#: library/argparse.rst:1642 +#: library/argparse.rst:1655 msgid "" "Sometimes it may be useful to have an ArgumentParser parse arguments other " "than those of :data:`sys.argv`. This can be accomplished by passing a list " @@ -1484,39 +1506,39 @@ msgid "" "testing at the interactive prompt::" msgstr "" -#: library/argparse.rst:1662 +#: library/argparse.rst:1675 msgid "The Namespace object" msgstr "" -#: library/argparse.rst:1666 +#: library/argparse.rst:1679 msgid "" "Simple class used by default by :meth:`~ArgumentParser.parse_args` to create " "an object holding attributes and return it." msgstr "" -#: library/argparse.rst:1669 +#: library/argparse.rst:1682 msgid "" "This class is deliberately simple, just an :class:`object` subclass with a " "readable string representation. If you prefer to have dict-like view of the " "attributes, you can use the standard Python idiom, :func:`vars`::" msgstr "" -#: library/argparse.rst:1679 +#: library/argparse.rst:1692 msgid "" "It may also be useful to have an :class:`ArgumentParser` assign attributes " "to an already existing object, rather than a new :class:`Namespace` object. " "This can be achieved by specifying the ``namespace=`` keyword argument::" msgstr "" -#: library/argparse.rst:1695 +#: library/argparse.rst:1708 msgid "Other utilities" msgstr "" -#: library/argparse.rst:1698 +#: library/argparse.rst:1711 msgid "Sub-commands" msgstr "" -#: library/argparse.rst:1705 +#: library/argparse.rst:1718 msgid "" "Many programs split up their functionality into a number of sub-commands, " "for example, the ``svn`` program can invoke sub-commands like ``svn " @@ -1532,69 +1554,69 @@ msgid "" "can be modified as usual." msgstr "" -#: library/argparse.rst:1717 +#: library/argparse.rst:1730 msgid "Description of parameters:" msgstr "" -#: library/argparse.rst:1719 +#: library/argparse.rst:1732 msgid "" "title - title for the sub-parser group in help output; by default " "\"subcommands\" if description is provided, otherwise uses title for " "positional arguments" msgstr "" -#: library/argparse.rst:1723 +#: library/argparse.rst:1736 msgid "" "description - description for the sub-parser group in help output, by " "default ``None``" msgstr "" -#: library/argparse.rst:1726 +#: library/argparse.rst:1739 msgid "" "prog - usage information that will be displayed with sub-command help, by " "default the name of the program and any positional arguments before the " "subparser argument" msgstr "" -#: library/argparse.rst:1730 +#: library/argparse.rst:1743 msgid "" "parser_class - class which will be used to create sub-parser instances, by " "default the class of the current parser (e.g. ArgumentParser)" msgstr "" -#: library/argparse.rst:1733 +#: library/argparse.rst:1746 msgid "" "action_ - the basic type of action to be taken when this argument is " "encountered at the command line" msgstr "" -#: library/argparse.rst:1736 +#: library/argparse.rst:1749 msgid "" "dest_ - name of the attribute under which sub-command name will be stored; " "by default ``None`` and no value is stored" msgstr "" -#: library/argparse.rst:1739 +#: library/argparse.rst:1752 msgid "" "required_ - Whether or not a subcommand must be provided, by default " "``False`` (added in 3.7)" msgstr "" -#: library/argparse.rst:1742 +#: library/argparse.rst:1755 msgid "help_ - help for sub-parser group in help output, by default ``None``" msgstr "" -#: library/argparse.rst:1744 +#: library/argparse.rst:1757 msgid "" "metavar_ - string presenting available sub-commands in help; by default it " "is ``None`` and presents sub-commands in form {cmd1, cmd2, ..}" msgstr "" -#: library/argparse.rst:1747 +#: library/argparse.rst:1760 msgid "Some example usage::" msgstr "" -#: library/argparse.rst:1768 +#: library/argparse.rst:1781 msgid "" "Note that the object returned by :meth:`parse_args` will only contain " "attributes for the main parser and the subparser that was selected by the " @@ -1604,7 +1626,7 @@ msgid "" "``baz`` attributes are present." msgstr "" -#: library/argparse.rst:1775 +#: library/argparse.rst:1788 msgid "" "Similarly, when a help message is requested from a subparser, only the help " "for that particular parser will be printed. The help message will not " @@ -1613,21 +1635,21 @@ msgid "" "to :meth:`~_SubParsersAction.add_parser` as above.)" msgstr "" -#: library/argparse.rst:1811 +#: library/argparse.rst:1824 msgid "" "The :meth:`add_subparsers` method also supports ``title`` and " "``description`` keyword arguments. When either is present, the subparser's " "commands will appear in their own group in the help output. For example::" msgstr "" -#: library/argparse.rst:1832 +#: library/argparse.rst:1845 msgid "" "Furthermore, ``add_parser`` supports an additional ``aliases`` argument, " "which allows multiple strings to refer to the same subparser. This example, " "like ``svn``, aliases ``co`` as a shorthand for ``checkout``::" msgstr "" -#: library/argparse.rst:1843 +#: library/argparse.rst:1856 msgid "" "One particularly effective way of handling sub-commands is to combine the " "use of the :meth:`add_subparsers` method with calls to :meth:`set_defaults` " @@ -1635,7 +1657,7 @@ msgid "" "example::" msgstr "" -#: library/argparse.rst:1880 +#: library/argparse.rst:1893 msgid "" "This way, you can let :meth:`parse_args` do the job of calling the " "appropriate function after argument parsing is complete. Associating " @@ -1645,15 +1667,15 @@ msgid "" "argument to the :meth:`add_subparsers` call will work::" msgstr "" -#: library/argparse.rst:1896 +#: library/argparse.rst:1909 msgid "New *required* keyword argument." msgstr "" -#: library/argparse.rst:1901 +#: library/argparse.rst:1914 msgid "FileType objects" msgstr "" -#: library/argparse.rst:1905 +#: library/argparse.rst:1918 msgid "" "The :class:`FileType` factory creates objects that can be passed to the type " "argument of :meth:`ArgumentParser.add_argument`. Arguments that have :class:" @@ -1662,22 +1684,22 @@ msgid "" "the :func:`open` function for more details)::" msgstr "" -#: library/argparse.rst:1917 +#: library/argparse.rst:1930 msgid "" "FileType objects understand the pseudo-argument ``'-'`` and automatically " "convert this into :data:`sys.stdin` for readable :class:`FileType` objects " "and :data:`sys.stdout` for writable :class:`FileType` objects::" msgstr "" -#: library/argparse.rst:1926 +#: library/argparse.rst:1939 msgid "The *encodings* and *errors* keyword arguments." msgstr "" -#: library/argparse.rst:1931 +#: library/argparse.rst:1944 msgid "Argument groups" msgstr "" -#: library/argparse.rst:1935 +#: library/argparse.rst:1948 msgid "" "By default, :class:`ArgumentParser` groups command-line arguments into " "\"positional arguments\" and \"options\" when displaying help messages. When " @@ -1686,7 +1708,7 @@ msgid "" "method::" msgstr "" -#: library/argparse.rst:1952 +#: library/argparse.rst:1965 msgid "" "The :meth:`add_argument_group` method returns an argument group object which " "has an :meth:`~ArgumentParser.add_argument` method just like a regular :" @@ -1697,13 +1719,13 @@ msgid "" "this display::" msgstr "" -#: library/argparse.rst:1978 +#: library/argparse.rst:1991 msgid "" "Note that any arguments not in your user-defined groups will end up back in " "the usual \"positional arguments\" and \"optional arguments\" sections." msgstr "" -#: library/argparse.rst:1981 +#: library/argparse.rst:1994 msgid "" "Calling :meth:`add_argument_group` on an argument group is deprecated. This " "feature was never supported and does not always work correctly. The function " @@ -1711,32 +1733,33 @@ msgid "" "future." msgstr "" -#: library/argparse.rst:1989 +#: library/argparse.rst:2002 msgid "Mutual exclusion" msgstr "" -#: library/argparse.rst:1993 +#: library/argparse.rst:2006 msgid "" "Create a mutually exclusive group. :mod:`argparse` will make sure that only " "one of the arguments in the mutually exclusive group was present on the " "command line::" msgstr "" -#: library/argparse.rst:2009 +#: library/argparse.rst:2022 msgid "" "The :meth:`add_mutually_exclusive_group` method also accepts a *required* " "argument, to indicate that at least one of the mutually exclusive arguments " "is required::" msgstr "" -#: library/argparse.rst:2021 +#: library/argparse.rst:2034 msgid "" "Note that currently mutually exclusive argument groups do not support the " "*title* and *description* arguments of :meth:`~ArgumentParser." -"add_argument_group`." +"add_argument_group`. However, a mutually exclusive group can be added to an " +"argument group that has a title and description. For example::" msgstr "" -#: library/argparse.rst:2025 +#: library/argparse.rst:2057 msgid "" "Calling :meth:`add_argument_group` or :meth:`add_mutually_exclusive_group` " "on a mutually exclusive group is deprecated. These features were never " @@ -1744,11 +1767,11 @@ msgid "" "by accident through inheritance and will be removed in the future." msgstr "" -#: library/argparse.rst:2033 +#: library/argparse.rst:2065 msgid "Parser defaults" msgstr "" -#: library/argparse.rst:2037 +#: library/argparse.rst:2069 msgid "" "Most of the time, the attributes of the object returned by :meth:" "`parse_args` will be fully determined by inspecting the command-line " @@ -1757,72 +1780,72 @@ msgid "" "command line to be added::" msgstr "" -#: library/argparse.rst:2049 +#: library/argparse.rst:2081 msgid "" "Note that parser-level defaults always override argument-level defaults::" msgstr "" -#: library/argparse.rst:2057 +#: library/argparse.rst:2089 msgid "" "Parser-level defaults can be particularly useful when working with multiple " "parsers. See the :meth:`~ArgumentParser.add_subparsers` method for an " "example of this type." msgstr "" -#: library/argparse.rst:2063 +#: library/argparse.rst:2095 msgid "" "Get the default value for a namespace attribute, as set by either :meth:" "`~ArgumentParser.add_argument` or by :meth:`~ArgumentParser.set_defaults`::" msgstr "" -#: library/argparse.rst:2074 +#: library/argparse.rst:2106 msgid "Printing help" msgstr "" -#: library/argparse.rst:2076 +#: library/argparse.rst:2108 msgid "" "In most typical applications, :meth:`~ArgumentParser.parse_args` will take " "care of formatting and printing any usage or error messages. However, " "several formatting methods are available:" msgstr "" -#: library/argparse.rst:2082 +#: library/argparse.rst:2114 msgid "" "Print a brief description of how the :class:`ArgumentParser` should be " "invoked on the command line. If *file* is ``None``, :data:`sys.stdout` is " "assumed." msgstr "" -#: library/argparse.rst:2088 +#: library/argparse.rst:2120 msgid "" "Print a help message, including the program usage and information about the " "arguments registered with the :class:`ArgumentParser`. If *file* is " "``None``, :data:`sys.stdout` is assumed." msgstr "" -#: library/argparse.rst:2092 +#: library/argparse.rst:2124 msgid "" "There are also variants of these methods that simply return a string instead " "of printing it:" msgstr "" -#: library/argparse.rst:2097 +#: library/argparse.rst:2129 msgid "" "Return a string containing a brief description of how the :class:" "`ArgumentParser` should be invoked on the command line." msgstr "" -#: library/argparse.rst:2102 +#: library/argparse.rst:2134 msgid "" "Return a string containing a help message, including the program usage and " "information about the arguments registered with the :class:`ArgumentParser`." msgstr "" -#: library/argparse.rst:2107 +#: library/argparse.rst:2139 msgid "Partial parsing" msgstr "" -#: library/argparse.rst:2111 +#: library/argparse.rst:2143 msgid "" "Sometimes a script may only parse a few of the command-line arguments, " "passing the remaining arguments on to another script or program. In these " @@ -1833,7 +1856,7 @@ msgid "" "remaining argument strings." msgstr "" -#: library/argparse.rst:2127 +#: library/argparse.rst:2159 msgid "" ":ref:`Prefix matching ` rules apply to :meth:" "`~ArgumentParser.parse_known_args`. The parser may consume an option even if " @@ -1841,11 +1864,11 @@ msgid "" "remaining arguments list." msgstr "" -#: library/argparse.rst:2134 +#: library/argparse.rst:2166 msgid "Customizing file parsing" msgstr "" -#: library/argparse.rst:2138 +#: library/argparse.rst:2170 msgid "" "Arguments that are read from a file (see the *fromfile_prefix_chars* keyword " "argument to the :class:`ArgumentParser` constructor) are read one argument " @@ -1853,41 +1876,41 @@ msgid "" "reading." msgstr "" -#: library/argparse.rst:2143 +#: library/argparse.rst:2175 msgid "" "This method takes a single argument *arg_line* which is a string read from " "the argument file. It returns a list of arguments parsed from this string. " "The method is called once per line read from the argument file, in order." msgstr "" -#: library/argparse.rst:2147 +#: library/argparse.rst:2179 msgid "" "A useful override of this method is one that treats each space-separated " "word as an argument. The following example demonstrates how to do this::" msgstr "" -#: library/argparse.rst:2156 +#: library/argparse.rst:2188 msgid "Exiting methods" msgstr "" -#: library/argparse.rst:2160 +#: library/argparse.rst:2192 msgid "" "This method terminates the program, exiting with the specified *status* and, " "if given, it prints a *message* before that. The user can override this " "method to handle these steps differently::" msgstr "" -#: library/argparse.rst:2172 +#: library/argparse.rst:2204 msgid "" "This method prints a usage message including the *message* to the standard " "error and terminates the program with a status code of 2." msgstr "" -#: library/argparse.rst:2177 +#: library/argparse.rst:2209 msgid "Intermixed parsing" msgstr "" -#: library/argparse.rst:2182 +#: library/argparse.rst:2214 msgid "" "A number of Unix commands allow the user to intermix optional arguments with " "positional arguments. The :meth:`~ArgumentParser.parse_intermixed_args` " @@ -1895,7 +1918,7 @@ msgid "" "parsing style." msgstr "" -#: library/argparse.rst:2187 +#: library/argparse.rst:2219 msgid "" "These parsers do not support all the argparse features, and will raise " "exceptions if unsupported features are used. In particular, subparsers, and " @@ -1903,7 +1926,7 @@ msgid "" "not supported." msgstr "" -#: library/argparse.rst:2192 +#: library/argparse.rst:2224 msgid "" "The following example shows the difference between :meth:`~ArgumentParser." "parse_known_args` and :meth:`~ArgumentParser.parse_intermixed_args`: the " @@ -1911,7 +1934,7 @@ msgid "" "collects all the positionals into ``rest``. ::" msgstr "" -#: library/argparse.rst:2207 +#: library/argparse.rst:2239 msgid "" ":meth:`~ArgumentParser.parse_known_intermixed_args` returns a two item tuple " "containing the populated namespace and the list of remaining argument " @@ -1919,11 +1942,11 @@ msgid "" "there are any remaining unparsed argument strings." msgstr "" -#: library/argparse.rst:2217 +#: library/argparse.rst:2249 msgid "Upgrading optparse code" msgstr "" -#: library/argparse.rst:2219 +#: library/argparse.rst:2251 msgid "" "Originally, the :mod:`argparse` module had attempted to maintain " "compatibility with :mod:`optparse`. However, :mod:`optparse` was difficult " @@ -1934,47 +1957,47 @@ msgid "" "compatibility." msgstr "" -#: library/argparse.rst:2226 +#: library/argparse.rst:2258 msgid "" "The :mod:`argparse` module improves on the standard library :mod:`optparse` " "module in a number of ways including:" msgstr "" -#: library/argparse.rst:2229 +#: library/argparse.rst:2261 msgid "Handling positional arguments." msgstr "" -#: library/argparse.rst:2230 +#: library/argparse.rst:2262 msgid "Supporting sub-commands." msgstr "" -#: library/argparse.rst:2231 +#: library/argparse.rst:2263 msgid "Allowing alternative option prefixes like ``+`` and ``/``." msgstr "" -#: library/argparse.rst:2232 +#: library/argparse.rst:2264 msgid "Handling zero-or-more and one-or-more style arguments." msgstr "" -#: library/argparse.rst:2233 +#: library/argparse.rst:2265 msgid "Producing more informative usage messages." msgstr "" -#: library/argparse.rst:2234 +#: library/argparse.rst:2266 msgid "Providing a much simpler interface for custom ``type`` and ``action``." msgstr "" -#: library/argparse.rst:2236 +#: library/argparse.rst:2268 msgid "A partial upgrade path from :mod:`optparse` to :mod:`argparse`:" msgstr "" -#: library/argparse.rst:2238 +#: library/argparse.rst:2270 msgid "" "Replace all :meth:`optparse.OptionParser.add_option` calls with :meth:" "`ArgumentParser.add_argument` calls." msgstr "" -#: library/argparse.rst:2241 +#: library/argparse.rst:2273 msgid "" "Replace ``(options, args) = parser.parse_args()`` with ``args = parser." "parse_args()`` and add additional :meth:`ArgumentParser.add_argument` calls " @@ -1982,76 +2005,76 @@ msgid "" "``options``, now in the :mod:`argparse` context is called ``args``." msgstr "" -#: library/argparse.rst:2246 +#: library/argparse.rst:2278 msgid "" "Replace :meth:`optparse.OptionParser.disable_interspersed_args` by using :" "meth:`~ArgumentParser.parse_intermixed_args` instead of :meth:" "`~ArgumentParser.parse_args`." msgstr "" -#: library/argparse.rst:2250 +#: library/argparse.rst:2282 msgid "" "Replace callback actions and the ``callback_*`` keyword arguments with " "``type`` or ``action`` arguments." msgstr "" -#: library/argparse.rst:2253 +#: library/argparse.rst:2285 msgid "" "Replace string names for ``type`` keyword arguments with the corresponding " "type objects (e.g. int, float, complex, etc)." msgstr "" -#: library/argparse.rst:2256 +#: library/argparse.rst:2288 msgid "" "Replace :class:`optparse.Values` with :class:`Namespace` and :exc:`optparse." "OptionError` and :exc:`optparse.OptionValueError` with :exc:`ArgumentError`." msgstr "" -#: library/argparse.rst:2260 +#: library/argparse.rst:2292 msgid "" "Replace strings with implicit arguments such as ``%default`` or ``%prog`` " "with the standard Python syntax to use dictionaries to format strings, that " "is, ``%(default)s`` and ``%(prog)s``." msgstr "" -#: library/argparse.rst:2264 +#: library/argparse.rst:2296 msgid "" "Replace the OptionParser constructor ``version`` argument with a call to " "``parser.add_argument('--version', action='version', version='')``." msgstr "" -#: library/argparse.rst:2268 +#: library/argparse.rst:2300 msgid "Exceptions" msgstr "" -#: library/argparse.rst:2272 +#: library/argparse.rst:2304 msgid "An error from creating or using an argument (optional or positional)." msgstr "" -#: library/argparse.rst:2274 +#: library/argparse.rst:2306 msgid "" "The string value of this exception is the message, augmented with " "information about the argument that caused it." msgstr "" -#: library/argparse.rst:2279 +#: library/argparse.rst:2311 msgid "" "Raised when something goes wrong converting a command line string to a type." msgstr "" -#: library/argparse.rst:970 +#: library/argparse.rst:980 msgid "? (question mark)" msgstr "" -#: library/argparse.rst:1004 library/argparse.rst:1018 +#: library/argparse.rst:1014 library/argparse.rst:1028 msgid "in argparse module" msgstr "" -#: library/argparse.rst:1004 +#: library/argparse.rst:1014 msgid "* (asterisk)" msgstr "" -#: library/argparse.rst:1018 +#: library/argparse.rst:1028 msgid "+ (plus)" msgstr "" diff --git a/library/ast.po b/library/ast.po index d5964103f..0fdb75e76 100644 --- a/library/ast.po +++ b/library/ast.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -456,11 +456,11 @@ msgid "" "case both ``target`` and ``value`` must be single nodes." msgstr "" -#: library/ast.rst:668 +#: library/ast.rst:669 msgid "Subscripting" msgstr "" -#: library/ast.rst:672 +#: library/ast.rst:673 msgid "" "A subscript, such as ``l[1]``. ``value`` is the subscripted object (usually " "sequence or mapping). ``slice`` is an index, slice or key. It can be a :" @@ -468,29 +468,29 @@ msgid "" "`Store` or :class:`Del` according to the action performed with the subscript." msgstr "" -#: library/ast.rst:696 +#: library/ast.rst:697 msgid "" "Regular slicing (on the form ``lower:upper`` or ``lower:upper:step``). Can " "occur only inside the *slice* field of :class:`Subscript`, either directly " "or as an element of :class:`Tuple`." msgstr "" -#: library/ast.rst:713 +#: library/ast.rst:714 msgid "Comprehensions" msgstr "" -#: library/ast.rst:720 +#: library/ast.rst:721 msgid "" "List and set comprehensions, generator expressions, and dictionary " "comprehensions. ``elt`` (or ``key`` and ``value``) is a single node " "representing the part that will be evaluated for each item." msgstr "" -#: library/ast.rst:724 +#: library/ast.rst:725 msgid "``generators`` is a list of :class:`comprehension` nodes." msgstr "" -#: library/ast.rst:766 +#: library/ast.rst:767 msgid "" "One ``for`` clause in a comprehension. ``target`` is the reference to use " "for each element - typically a :class:`Name` or :class:`Tuple` node. " @@ -498,35 +498,35 @@ msgid "" "expressions: each ``for`` clause can have multiple ``ifs``." msgstr "" -#: library/ast.rst:771 +#: library/ast.rst:772 msgid "" "``is_async`` indicates a comprehension is asynchronous (using an ``async " "for`` instead of ``for``). The value is an integer (0 or 1)." msgstr "" -#: library/ast.rst:840 +#: library/ast.rst:841 msgid "Statements" msgstr "" -#: library/ast.rst:844 +#: library/ast.rst:845 msgid "" "An assignment. ``targets`` is a list of nodes, and ``value`` is a single " "node." msgstr "" -#: library/ast.rst:846 +#: library/ast.rst:847 msgid "" "Multiple nodes in ``targets`` represents assigning the same value to each. " "Unpacking is represented by putting a :class:`Tuple` or :class:`List` within " "``targets``." msgstr "" -#: library/ast.rst:1139 library/ast.rst:1764 +#: library/ast.rst:1161 library/ast.rst:1891 msgid "" "``type_comment`` is an optional string with the type annotation as a comment." msgstr "" -#: library/ast.rst:882 +#: library/ast.rst:883 msgid "" "An assignment with a type annotation. ``target`` is a single node and can be " "a :class:`Name`, a :class:`Attribute` or a :class:`Subscript`. " @@ -536,7 +536,7 @@ msgid "" "appear in between parenthesis and are hence pure names and not expressions." msgstr "" -#: library/ast.rst:937 +#: library/ast.rst:938 msgid "" "Augmented assignment, such as ``a += 1``. In the following example, " "``target`` is a :class:`Name` node for ``x`` (with the :class:`Store` " @@ -544,50 +544,58 @@ msgid "" "value for 1." msgstr "" -#: library/ast.rst:942 +#: library/ast.rst:943 msgid "" "The ``target`` attribute cannot be of class :class:`Tuple` or :class:`List`, " "unlike the targets of :class:`Assign`." msgstr "" -#: library/ast.rst:959 +#: library/ast.rst:960 msgid "" "A ``raise`` statement. ``exc`` is the exception object to be raised, " "normally a :class:`Call` or :class:`Name`, or ``None`` for a standalone " "``raise``. ``cause`` is the optional part for ``y`` in ``raise x from y``." msgstr "" -#: library/ast.rst:976 +#: library/ast.rst:977 msgid "" "An assertion. ``test`` holds the condition, such as a :class:`Compare` node. " "``msg`` holds the failure message." msgstr "" -#: library/ast.rst:992 +#: library/ast.rst:993 msgid "" "Represents a ``del`` statement. ``targets`` is a list of nodes, such as :" "class:`Name`, :class:`Attribute` or :class:`Subscript` nodes." msgstr "" -#: library/ast.rst:1010 +#: library/ast.rst:1011 msgid "A ``pass`` statement." msgstr "" -#: library/ast.rst:1021 +#: library/ast.rst:1024 +msgid "" +"A :ref:`type alias ` created through the :keyword:`type` " +"statement. ``name`` is the name of the alias, ``type_params`` is a list of :" +"ref:`type parameters `, and ``value`` is the value of the " +"type alias." +msgstr "" + +#: library/ast.rst:1042 msgid "" "Other statements which are only applicable inside functions or loops are " "described in other sections." msgstr "" -#: library/ast.rst:1025 +#: library/ast.rst:1046 msgid "Imports" msgstr "" -#: library/ast.rst:1029 +#: library/ast.rst:1050 msgid "An import statement. ``names`` is a list of :class:`alias` nodes." msgstr "" -#: library/ast.rst:1046 +#: library/ast.rst:1067 msgid "" "Represents ``from x import y``. ``module`` is a raw string of the 'from' " "name, without any leading dots, or ``None`` for statements such as ``from . " @@ -595,68 +603,69 @@ msgid "" "import (0 means absolute import)." msgstr "" -#: library/ast.rst:1068 +#: library/ast.rst:1089 msgid "" "Both parameters are raw strings of the names. ``asname`` can be ``None`` if " "the regular name is to be used." msgstr "" -#: library/ast.rst:1085 +#: library/ast.rst:1106 msgid "Control flow" msgstr "" -#: library/ast.rst:1088 +#: library/ast.rst:1109 msgid "" "Optional clauses such as ``else`` are stored as an empty list if they're not " "present." msgstr "" -#: library/ast.rst:1093 +#: library/ast.rst:1114 msgid "" "An ``if`` statement. ``test`` holds a single node, such as a :class:" "`Compare` node. ``body`` and ``orelse`` each hold a list of nodes." msgstr "" -#: library/ast.rst:1096 +#: library/ast.rst:1117 msgid "" "``elif`` clauses don't have a special representation in the AST, but rather " "appear as extra :class:`If` nodes within the ``orelse`` section of the " "previous one." msgstr "" -#: library/ast.rst:1131 +#: library/ast.rst:1152 msgid "" "A ``for`` loop. ``target`` holds the variable(s) the loop assigns to, as a " -"single :class:`Name`, :class:`Tuple` or :class:`List` node. ``iter`` holds " -"the item to be looped over, again as a single node. ``body`` and ``orelse`` " -"contain lists of nodes to execute. Those in ``orelse`` are executed if the " -"loop finishes normally, rather than via a ``break`` statement." +"single :class:`Name`, :class:`Tuple`, :class:`List`, :class:`Attribute` or :" +"class:`Subscript` node. ``iter`` holds the item to be looped over, again as " +"a single node. ``body`` and ``orelse`` contain lists of nodes to execute. " +"Those in ``orelse`` are executed if the loop finishes normally, rather than " +"via a ``break`` statement." msgstr "" -#: library/ast.rst:1165 +#: library/ast.rst:1187 msgid "" "A ``while`` loop. ``test`` holds the condition, such as a :class:`Compare` " "node." msgstr "" -#: library/ast.rst:1192 +#: library/ast.rst:1214 msgid "The ``break`` and ``continue`` statements." msgstr "" -#: library/ast.rst:1227 +#: library/ast.rst:1249 msgid "" "``try`` blocks. All attributes are list of nodes to execute, except for " "``handlers``, which is a list of :class:`ExceptHandler` nodes." msgstr "" -#: library/ast.rst:1273 +#: library/ast.rst:1295 msgid "" "``try`` blocks which are followed by ``except*`` clauses. The attributes are " "the same as for :class:`Try` but the :class:`ExceptHandler` nodes in " "``handlers`` are interpreted as ``except*`` blocks rather then ``except``." msgstr "" -#: library/ast.rst:1304 +#: library/ast.rst:1327 msgid "" "A single ``except`` clause. ``type`` is the exception type it will match, " "typically a :class:`Name` node (or ``None`` for a catch-all ``except:`` " @@ -664,14 +673,14 @@ msgid "" "``None`` if the clause doesn't have ``as foo``. ``body`` is a list of nodes." msgstr "" -#: library/ast.rst:1338 +#: library/ast.rst:1361 msgid "" "A ``with`` block. ``items`` is a list of :class:`withitem` nodes " "representing the context managers, and ``body`` is the indented block inside " "the context." msgstr "" -#: library/ast.rst:1348 +#: library/ast.rst:1371 msgid "" "A single context manager in a ``with`` block. ``context_expr`` is the " "context manager, often a :class:`Call` node. ``optional_vars`` is a :class:" @@ -679,18 +688,18 @@ msgid "" "if that isn't used." msgstr "" -#: library/ast.rst:1381 +#: library/ast.rst:1404 msgid "Pattern matching" msgstr "" -#: library/ast.rst:1386 +#: library/ast.rst:1409 msgid "" "A ``match`` statement. ``subject`` holds the subject of the match (the " "object that is being matched against the cases) and ``cases`` contains an " "iterable of :class:`match_case` nodes with the different cases." msgstr "" -#: library/ast.rst:1392 +#: library/ast.rst:1417 msgid "" "A single case pattern in a ``match`` statement. ``pattern`` contains the " "match pattern that the subject will be matched against. Note that the :class:" @@ -698,19 +707,19 @@ msgid "" "expressions, even when they share the same syntax." msgstr "" -#: library/ast.rst:1397 +#: library/ast.rst:1422 msgid "" "The ``guard`` attribute contains an expression that will be evaluated if the " "pattern matches the subject." msgstr "" -#: library/ast.rst:1400 +#: library/ast.rst:1425 msgid "" "``body`` contains a list of nodes to execute if the pattern matches and the " "result of evaluating the guard expression is true." msgstr "" -#: library/ast.rst:1443 +#: library/ast.rst:1470 msgid "" "A match literal or value pattern that compares by equality. ``value`` is an " "expression node. Permitted value nodes are restricted as described in the " @@ -718,14 +727,14 @@ msgid "" "equal to the evaluated value." msgstr "" -#: library/ast.rst:1470 +#: library/ast.rst:1499 msgid "" "A match literal pattern that compares by identity. ``value`` is the " "singleton to be compared against: ``None``, ``True``, or ``False``. This " "pattern succeeds if the match subject is the given constant." msgstr "" -#: library/ast.rst:1495 +#: library/ast.rst:1526 msgid "" "A match sequence pattern. ``patterns`` contains the patterns to be matched " "against the subject elements if the subject is a sequence. Matches a " @@ -733,7 +742,7 @@ msgid "" "otherwise matches a fixed length sequence." msgstr "" -#: library/ast.rst:1526 +#: library/ast.rst:1559 msgid "" "Matches the rest of the sequence in a variable length match sequence " "pattern. If ``name`` is not ``None``, a list containing the remaining " @@ -741,7 +750,7 @@ msgid "" "successful." msgstr "" -#: library/ast.rst:1566 +#: library/ast.rst:1601 msgid "" "A match mapping pattern. ``keys`` is a sequence of expression nodes. " "``patterns`` is a corresponding sequence of pattern nodes. ``rest`` is an " @@ -750,7 +759,7 @@ msgid "" "statement documentation." msgstr "" -#: library/ast.rst:1572 +#: library/ast.rst:1607 msgid "" "This pattern succeeds if the subject is a mapping, all evaluated key " "expressions are present in the mapping, and the value corresponding to each " @@ -759,7 +768,7 @@ msgid "" "overall mapping pattern is successful." msgstr "" -#: library/ast.rst:1612 +#: library/ast.rst:1649 msgid "" "A match class pattern. ``cls`` is an expression giving the nominal class to " "be matched. ``patterns`` is a sequence of pattern nodes to be matched " @@ -770,21 +779,21 @@ msgid "" "pattern)." msgstr "" -#: library/ast.rst:1619 +#: library/ast.rst:1656 msgid "" "This pattern succeeds if the subject is an instance of the nominated class, " "all positional patterns match the corresponding class-defined attributes, " "and any specified keyword attributes match their corresponding pattern." msgstr "" -#: library/ast.rst:1623 +#: library/ast.rst:1660 msgid "" "Note: classes may define a property that returns self in order to match a " "pattern node against the instance being matched. Several builtin types are " "also matched that way, as described in the match statement documentation." msgstr "" -#: library/ast.rst:1676 +#: library/ast.rst:1715 msgid "" "A match \"as-pattern\", capture pattern or wildcard pattern. ``pattern`` " "contains the match pattern that the subject will be matched against. If the " @@ -792,14 +801,14 @@ msgid "" "and will always succeed." msgstr "" -#: library/ast.rst:1681 +#: library/ast.rst:1720 msgid "" "The ``name`` attribute contains the name that will be bound if the pattern " "is successful. If ``name`` is ``None``, ``pattern`` must also be ``None`` " "and the node represents the wildcard pattern." msgstr "" -#: library/ast.rst:1717 +#: library/ast.rst:1758 msgid "" "A match \"or-pattern\". An or-pattern matches each of its subpatterns in " "turn to the subject, until one succeeds. The or-pattern is then deemed to " @@ -808,151 +817,188 @@ msgid "" "matched against the subject." msgstr "" -#: library/ast.rst:1749 +#: library/ast.rst:1793 +msgid "Type parameters" +msgstr "" + +#: library/ast.rst:1795 +msgid "" +":ref:`Type parameters ` can exist on classes, functions, and " +"type aliases." +msgstr "" + +#: library/ast.rst:1800 +msgid "" +"A :class:`typing.TypeVar`. ``name`` is the name of the type variable. " +"``bound`` is the bound or constraints, if any. If ``bound`` is a :class:" +"`Tuple`, it represents constraints; otherwise it represents the bound." +msgstr "" + +#: library/ast.rst:1825 +msgid "" +"A :class:`typing.ParamSpec`. ``name`` is the name of the parameter " +"specification." +msgstr "" + +#: library/ast.rst:1850 +msgid "" +"A :class:`typing.TypeVarTuple`. ``name`` is the name of the type variable " +"tuple." +msgstr "" + +#: library/ast.rst:1875 msgid "Function and class definitions" msgstr "" -#: library/ast.rst:1753 +#: library/ast.rst:1879 msgid "A function definition." msgstr "" -#: library/ast.rst:1755 +#: library/ast.rst:1881 msgid "``name`` is a raw string of the function name." msgstr "" -#: library/ast.rst:1756 +#: library/ast.rst:1882 msgid "``args`` is an :class:`arguments` node." msgstr "" -#: library/ast.rst:1757 +#: library/ast.rst:1883 msgid "``body`` is the list of nodes inside the function." msgstr "" -#: library/ast.rst:1758 +#: library/ast.rst:1884 msgid "" "``decorator_list`` is the list of decorators to be applied, stored outermost " "first (i.e. the first in the list will be applied last)." msgstr "" -#: library/ast.rst:1760 +#: library/ast.rst:1886 msgid "``returns`` is the return annotation." msgstr "" -#: library/ast.rst:1769 +#: library/ast.rst:2065 +msgid "``type_params`` is a list of :ref:`type parameters `." +msgstr "" + +#: library/ast.rst:2094 library/ast.rst:2105 +msgid "Added ``type_params``." +msgstr "" + +#: library/ast.rst:1899 msgid "" "``lambda`` is a minimal function definition that can be used inside an " "expression. Unlike :class:`FunctionDef`, ``body`` holds a single node." msgstr "" -#: library/ast.rst:1793 +#: library/ast.rst:1923 msgid "The arguments for a function." msgstr "" -#: library/ast.rst:1795 +#: library/ast.rst:1925 msgid "" "``posonlyargs``, ``args`` and ``kwonlyargs`` are lists of :class:`arg` nodes." msgstr "" -#: library/ast.rst:1796 +#: library/ast.rst:1926 msgid "" "``vararg`` and ``kwarg`` are single :class:`arg` nodes, referring to the " "``*args, **kwargs`` parameters." msgstr "" -#: library/ast.rst:1798 +#: library/ast.rst:1928 msgid "" "``kw_defaults`` is a list of default values for keyword-only arguments. If " "one is ``None``, the corresponding argument is required." msgstr "" -#: library/ast.rst:1800 +#: library/ast.rst:1930 msgid "" "``defaults`` is a list of default values for arguments that can be passed " "positionally. If there are fewer defaults, they correspond to the last n " "arguments." msgstr "" -#: library/ast.rst:1807 +#: library/ast.rst:1937 msgid "" "A single argument in a list. ``arg`` is a raw string of the argument name, " "``annotation`` is its annotation, such as a :class:`Str` or :class:`Name` " "node." msgstr "" -#: library/ast.rst:1813 +#: library/ast.rst:1943 msgid "" "``type_comment`` is an optional string with the type annotation as a comment" msgstr "" -#: library/ast.rst:1857 +#: library/ast.rst:1988 msgid "A ``return`` statement." msgstr "" -#: library/ast.rst:1872 +#: library/ast.rst:2003 msgid "" "A ``yield`` or ``yield from`` expression. Because these are expressions, " "they must be wrapped in a :class:`Expr` node if the value sent back is not " "used." msgstr "" -#: library/ast.rst:1897 +#: library/ast.rst:2028 msgid "" "``global`` and ``nonlocal`` statements. ``names`` is a list of raw strings." msgstr "" -#: library/ast.rst:1924 +#: library/ast.rst:2055 msgid "A class definition." msgstr "" -#: library/ast.rst:1926 +#: library/ast.rst:2057 msgid "``name`` is a raw string for the class name" msgstr "" -#: library/ast.rst:1927 +#: library/ast.rst:2058 msgid "``bases`` is a list of nodes for explicitly specified base classes." msgstr "" -#: library/ast.rst:1928 +#: library/ast.rst:2059 msgid "" "``keywords`` is a list of :class:`.keyword` nodes, principally for " "'metaclass'. Other keywords will be passed to the metaclass, as per " "`PEP-3115 `_." msgstr "" -#: library/ast.rst:1931 +#: library/ast.rst:2062 msgid "" "``body`` is a list of nodes representing the code within the class " "definition." msgstr "" -#: library/ast.rst:1933 +#: library/ast.rst:2064 msgid "``decorator_list`` is a list of nodes, as in :class:`FunctionDef`." msgstr "" -#: library/ast.rst:1962 +#: library/ast.rst:2098 msgid "Async and await" msgstr "" -#: library/ast.rst:1966 +#: library/ast.rst:2102 msgid "" "An ``async def`` function definition. Has the same fields as :class:" "`FunctionDef`." msgstr "" -#: library/ast.rst:1972 +#: library/ast.rst:2111 msgid "" "An ``await`` expression. ``value`` is what it waits for. Only valid in the " "body of an :class:`AsyncFunctionDef`." msgstr "" -#: library/ast.rst:2005 +#: library/ast.rst:2145 msgid "" "``async for`` loops and ``async with`` context managers. They have the same " "fields as :class:`For` and :class:`With`, respectively. Only valid in the " "body of an :class:`AsyncFunctionDef`." msgstr "" -#: library/ast.rst:2010 +#: library/ast.rst:2150 msgid "" "When a string is parsed by :func:`ast.parse`, operator nodes (subclasses of :" "class:`ast.operator`, :class:`ast.unaryop`, :class:`ast.cmpop`, :class:`ast." @@ -961,23 +1007,23 @@ msgid "" "same value (e.g. :class:`ast.Add`)." msgstr "" -#: library/ast.rst:2018 +#: library/ast.rst:2158 msgid ":mod:`ast` Helpers" msgstr "" -#: library/ast.rst:2020 +#: library/ast.rst:2160 msgid "" "Apart from the node classes, the :mod:`ast` module defines these utility " "functions and classes for traversing abstract syntax trees:" msgstr "" -#: library/ast.rst:2025 +#: library/ast.rst:2165 msgid "" "Parse the source into an AST node. Equivalent to ``compile(source, " "filename, mode, ast.PyCF_ONLY_AST)``." msgstr "" -#: library/ast.rst:2028 +#: library/ast.rst:2168 msgid "" "If ``type_comments=True`` is given, the parser is modified to check and " "return type comments as specified by :pep:`484` and :pep:`526`. This is " @@ -990,14 +1036,14 @@ msgid "" "empty list)." msgstr "" -#: library/ast.rst:2038 +#: library/ast.rst:2178 msgid "" "In addition, if ``mode`` is ``'func_type'``, the input syntax is modified to " "correspond to :pep:`484` \"signature type comments\", e.g. ``(str, int) -> " "List[str]``." msgstr "" -#: library/ast.rst:2042 +#: library/ast.rst:2182 msgid "" "Also, setting ``feature_version`` to a tuple ``(major, minor)`` will attempt " "to parse using that Python version's grammar. Currently ``major`` must equal " @@ -1006,12 +1052,12 @@ msgid "" "version is ``(3, 4)``; the highest is ``sys.version_info[0:2]``." msgstr "" -#: library/ast.rst:2049 +#: library/ast.rst:2189 msgid "" "If source contains a null character ('\\0'), :exc:`ValueError` is raised." msgstr "" -#: library/ast.rst:2052 +#: library/ast.rst:2192 msgid "" "Note that successfully parsing source code into an AST object doesn't " "guarantee that the source code provided is valid Python code that can be " @@ -1021,43 +1067,43 @@ msgid "" "inside a function node)." msgstr "" -#: library/ast.rst:2059 +#: library/ast.rst:2199 msgid "" "In particular, :func:`ast.parse` won't do any scoping checks, which the " "compilation step does." msgstr "" -#: library/ast.rst:2063 +#: library/ast.rst:2203 msgid "" "It is possible to crash the Python interpreter with a sufficiently large/" "complex string due to stack depth limitations in Python's AST compiler." msgstr "" -#: library/ast.rst:2067 +#: library/ast.rst:2207 msgid "Added ``type_comments``, ``mode='func_type'`` and ``feature_version``." msgstr "" -#: library/ast.rst:2073 +#: library/ast.rst:2213 msgid "" "Unparse an :class:`ast.AST` object and generate a string with code that " "would produce an equivalent :class:`ast.AST` object if parsed back with :" "func:`ast.parse`." msgstr "" -#: library/ast.rst:2078 +#: library/ast.rst:2218 msgid "" "The produced code string will not necessarily be equal to the original code " "that generated the :class:`ast.AST` object (without any compiler " "optimizations, such as constant tuples/frozensets)." msgstr "" -#: library/ast.rst:2083 +#: library/ast.rst:2223 msgid "" "Trying to unparse a highly complex expression would result with :exc:" "`RecursionError`." msgstr "" -#: library/ast.rst:2091 +#: library/ast.rst:2231 msgid "" "Evaluate an expression node or a string containing only a Python literal or " "container display. The string or node provided may only consist of the " @@ -1065,14 +1111,14 @@ msgid "" "dicts, sets, booleans, ``None`` and ``Ellipsis``." msgstr "" -#: library/ast.rst:2096 +#: library/ast.rst:2236 msgid "" "This can be used for evaluating strings containing Python values without the " "need to parse the values oneself. It is not capable of evaluating " "arbitrarily complex expressions, for example involving operators or indexing." msgstr "" -#: library/ast.rst:2101 +#: library/ast.rst:2241 msgid "" "This function had been documented as \"safe\" in the past without defining " "what that meant. That was misleading. This is specifically designed not to " @@ -1084,31 +1130,31 @@ msgid "" "untrusted data is thus not recommended." msgstr "" -#: library/ast.rst:2111 +#: library/ast.rst:2251 msgid "" "It is possible to crash the Python interpreter due to stack depth " "limitations in Python's AST compiler." msgstr "" -#: library/ast.rst:2114 +#: library/ast.rst:2254 msgid "" "It can raise :exc:`ValueError`, :exc:`TypeError`, :exc:`SyntaxError`, :exc:" "`MemoryError` and :exc:`RecursionError` depending on the malformed input." msgstr "" -#: library/ast.rst:2118 +#: library/ast.rst:2258 msgid "Now allows bytes and set literals." msgstr "" -#: library/ast.rst:2121 +#: library/ast.rst:2261 msgid "Now supports creating empty sets with ``'set()'``." msgstr "" -#: library/ast.rst:2124 +#: library/ast.rst:2264 msgid "For string inputs, leading spaces and tabs are now stripped." msgstr "" -#: library/ast.rst:2130 +#: library/ast.rst:2270 msgid "" "Return the docstring of the given *node* (which must be a :class:" "`FunctionDef`, :class:`AsyncFunctionDef`, :class:`ClassDef`, or :class:" @@ -1116,24 +1162,24 @@ msgid "" "clean up the docstring's indentation with :func:`inspect.cleandoc`." msgstr "" -#: library/ast.rst:2136 +#: library/ast.rst:2276 msgid ":class:`AsyncFunctionDef` is now supported." msgstr "" -#: library/ast.rst:2142 +#: library/ast.rst:2282 msgid "" "Get source code segment of the *source* that generated *node*. If some " "location information (:attr:`lineno`, :attr:`end_lineno`, :attr:" "`col_offset`, or :attr:`end_col_offset`) is missing, return ``None``." msgstr "" -#: library/ast.rst:2146 +#: library/ast.rst:2286 msgid "" "If *padded* is ``True``, the first line of a multi-line statement will be " "padded with spaces to match its original position." msgstr "" -#: library/ast.rst:2154 +#: library/ast.rst:2294 msgid "" "When you compile a node tree with :func:`compile`, the compiler expects :" "attr:`lineno` and :attr:`col_offset` attributes for every node that supports " @@ -1142,77 +1188,77 @@ msgid "" "the values of the parent node. It works recursively starting at *node*." msgstr "" -#: library/ast.rst:2163 +#: library/ast.rst:2303 msgid "" "Increment the line number and end line number of each node in the tree " "starting at *node* by *n*. This is useful to \"move code\" to a different " "location in a file." msgstr "" -#: library/ast.rst:2170 +#: library/ast.rst:2310 msgid "" "Copy source location (:attr:`lineno`, :attr:`col_offset`, :attr:" "`end_lineno`, and :attr:`end_col_offset`) from *old_node* to *new_node* if " "possible, and return *new_node*." msgstr "" -#: library/ast.rst:2177 +#: library/ast.rst:2317 msgid "" "Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields`` " "that is present on *node*." msgstr "" -#: library/ast.rst:2183 +#: library/ast.rst:2323 msgid "" "Yield all direct child nodes of *node*, that is, all fields that are nodes " "and all items of fields that are lists of nodes." msgstr "" -#: library/ast.rst:2189 +#: library/ast.rst:2329 msgid "" "Recursively yield all descendant nodes in the tree starting at *node* " "(including *node* itself), in no specified order. This is useful if you " "only want to modify nodes in place and don't care about the context." msgstr "" -#: library/ast.rst:2196 +#: library/ast.rst:2336 msgid "" "A node visitor base class that walks the abstract syntax tree and calls a " "visitor function for every node found. This function may return a value " "which is forwarded by the :meth:`visit` method." msgstr "" -#: library/ast.rst:2200 +#: library/ast.rst:2340 msgid "" "This class is meant to be subclassed, with the subclass adding visitor " "methods." msgstr "" -#: library/ast.rst:2205 +#: library/ast.rst:2345 msgid "" "Visit a node. The default implementation calls the method called :samp:" "`self.visit_{classname}` where *classname* is the name of the node class, " "or :meth:`generic_visit` if that method doesn't exist." msgstr "" -#: library/ast.rst:2211 +#: library/ast.rst:2351 msgid "This visitor calls :meth:`visit` on all children of the node." msgstr "" -#: library/ast.rst:2213 +#: library/ast.rst:2353 msgid "" "Note that child nodes of nodes that have a custom visitor method won't be " "visited unless the visitor calls :meth:`generic_visit` or visits them itself." msgstr "" -#: library/ast.rst:2217 +#: library/ast.rst:2357 msgid "" "Don't use the :class:`NodeVisitor` if you want to apply changes to nodes " "during traversal. For this a special visitor exists (:class:" "`NodeTransformer`) that allows modifications." msgstr "" -#: library/ast.rst:2223 +#: library/ast.rst:2363 msgid "" "Methods :meth:`visit_Num`, :meth:`visit_Str`, :meth:`visit_Bytes`, :meth:" "`visit_NameConstant` and :meth:`visit_Ellipsis` are deprecated now and will " @@ -1220,13 +1266,13 @@ msgid "" "method to handle all constant nodes." msgstr "" -#: library/ast.rst:2231 +#: library/ast.rst:2371 msgid "" "A :class:`NodeVisitor` subclass that walks the abstract syntax tree and " "allows modification of nodes." msgstr "" -#: library/ast.rst:2234 +#: library/ast.rst:2374 msgid "" "The :class:`NodeTransformer` will walk the AST and use the return value of " "the visitor methods to replace or remove the old node. If the return value " @@ -1235,27 +1281,27 @@ msgid "" "may be the original node in which case no replacement takes place." msgstr "" -#: library/ast.rst:2240 +#: library/ast.rst:2380 msgid "" "Here is an example transformer that rewrites all occurrences of name lookups " "(``foo``) to ``data['foo']``::" msgstr "" -#: library/ast.rst:2252 +#: library/ast.rst:2392 msgid "" "Keep in mind that if the node you're operating on has child nodes you must " "either transform the child nodes yourself or call the :meth:`generic_visit` " "method for the node first." msgstr "" -#: library/ast.rst:2256 +#: library/ast.rst:2396 msgid "" "For nodes that were part of a collection of statements (that applies to all " "statement nodes), the visitor may also return a list of nodes rather than " "just a single node." msgstr "" -#: library/ast.rst:2260 +#: library/ast.rst:2400 msgid "" "If :class:`NodeTransformer` introduces new nodes (that weren't part of " "original tree) without giving them location information (such as :attr:" @@ -1263,11 +1309,11 @@ msgid "" "tree to recalculate the location information::" msgstr "" -#: library/ast.rst:2268 +#: library/ast.rst:2408 msgid "Usually you use the transformer like this::" msgstr "" -#: library/ast.rst:2275 +#: library/ast.rst:2415 msgid "" "Return a formatted dump of the tree in *node*. This is mainly useful for " "debugging purposes. If *annotate_fields* is true (by default), the returned " @@ -1278,7 +1324,7 @@ msgid "" "true." msgstr "" -#: library/ast.rst:2283 +#: library/ast.rst:2423 msgid "" "If *indent* is a non-negative integer or string, then the tree will be " "pretty-printed with that indent level. An indent level of 0, negative, or " @@ -1288,87 +1334,87 @@ msgid "" "string is used to indent each level." msgstr "" -#: library/ast.rst:2290 +#: library/ast.rst:2430 msgid "Added the *indent* option." msgstr "" -#: library/ast.rst:2297 +#: library/ast.rst:2437 msgid "Compiler Flags" msgstr "" -#: library/ast.rst:2299 +#: library/ast.rst:2439 msgid "" "The following flags may be passed to :func:`compile` in order to change " "effects on the compilation of a program:" msgstr "" -#: library/ast.rst:2304 +#: library/ast.rst:2444 msgid "" "Enables support for top-level ``await``, ``async for``, ``async with`` and " "async comprehensions." msgstr "" -#: library/ast.rst:2311 +#: library/ast.rst:2451 msgid "" "Generates and returns an abstract syntax tree instead of returning a " "compiled code object." msgstr "" -#: library/ast.rst:2316 +#: library/ast.rst:2456 msgid "" "Enables support for :pep:`484` and :pep:`526` style type comments (``# type: " "``, ``# type: ignore ``)." msgstr "" -#: library/ast.rst:2325 +#: library/ast.rst:2465 msgid "Command-Line Usage" msgstr "" -#: library/ast.rst:2329 +#: library/ast.rst:2469 msgid "" "The :mod:`ast` module can be executed as a script from the command line. It " "is as simple as:" msgstr "" -#: library/ast.rst:2336 +#: library/ast.rst:2476 msgid "The following options are accepted:" msgstr "" -#: library/ast.rst:2342 +#: library/ast.rst:2482 msgid "Show the help message and exit." msgstr "" -#: library/ast.rst:2347 +#: library/ast.rst:2487 msgid "" "Specify what kind of code must be compiled, like the *mode* argument in :" "func:`parse`." msgstr "" -#: library/ast.rst:2352 +#: library/ast.rst:2492 msgid "Don't parse type comments." msgstr "" -#: library/ast.rst:2356 +#: library/ast.rst:2496 msgid "Include attributes such as line numbers and column offsets." msgstr "" -#: library/ast.rst:2361 +#: library/ast.rst:2501 msgid "Indentation of nodes in AST (number of spaces)." msgstr "" -#: library/ast.rst:2363 +#: library/ast.rst:2503 msgid "" "If :file:`infile` is specified its contents are parsed to AST and dumped to " "stdout. Otherwise, the content is read from stdin." msgstr "" -#: library/ast.rst:2369 +#: library/ast.rst:2509 msgid "" "`Green Tree Snakes `_, an external " "documentation resource, has good details on working with Python ASTs." msgstr "" -#: library/ast.rst:2372 +#: library/ast.rst:2512 msgid "" "`ASTTokens `_ " "annotates Python ASTs with the positions of tokens and text in the source " @@ -1376,21 +1422,21 @@ msgid "" "transformations." msgstr "" -#: library/ast.rst:2377 +#: library/ast.rst:2517 msgid "" "`leoAst.py `_ unifies the " "token-based and parse-tree-based views of python programs by inserting two-" "way links between tokens and ast nodes." msgstr "" -#: library/ast.rst:2381 +#: library/ast.rst:2521 msgid "" "`LibCST `_ parses code as a Concrete Syntax " "Tree that looks like an ast tree and keeps all formatting details. It's " "useful for building automated refactoring (codemod) applications and linters." msgstr "" -#: library/ast.rst:2386 +#: library/ast.rst:2526 msgid "" "`Parso `_ is a Python parser that supports " "error recovery and round-trip parsing for different Python versions (in " diff --git a/library/asynchat.po b/library/asynchat.po deleted file mode 100644 index 661da32de..000000000 --- a/library/asynchat.po +++ /dev/null @@ -1,243 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: library/asynchat.rst:2 -msgid ":mod:`asynchat` --- Asynchronous socket command/response handler" -msgstr "" - -#: library/asynchat.rst:11 -msgid "**Source code:** :source:`Lib/asynchat.py`" -msgstr "" - -#: library/asynchat.rst:17 -msgid "" -"The :mod:`asynchat` module is deprecated (see :pep:`PEP 594 <594#asynchat>` " -"for details). Please use :mod:`asyncio` instead." -msgstr "" - -#: library/asynchat.rst:22 -msgid "" -"This module exists for backwards compatibility only. For new code we " -"recommend using :mod:`asyncio`." -msgstr "" - -#: library/asynchat.rst:25 -msgid "" -"This module builds on the :mod:`asyncore` infrastructure, simplifying " -"asynchronous clients and servers and making it easier to handle protocols " -"whose elements are terminated by arbitrary strings, or are of variable " -"length. :mod:`asynchat` defines the abstract class :class:`async_chat` that " -"you subclass, providing implementations of the :meth:`collect_incoming_data` " -"and :meth:`found_terminator` methods. It uses the same asynchronous loop as :" -"mod:`asyncore`, and the two types of channel, :class:`asyncore.dispatcher` " -"and :class:`asynchat.async_chat`, can freely be mixed in the channel map. " -"Typically an :class:`asyncore.dispatcher` server channel generates new :" -"class:`asynchat.async_chat` channel objects as it receives incoming " -"connection requests." -msgstr "" - -#: includes/wasm-notavail.rst:3 -msgid ":ref:`Availability `: not Emscripten, not WASI." -msgstr "" - -#: includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly platforms " -"``wasm32-emscripten`` and ``wasm32-wasi``. See :ref:`wasm-availability` for " -"more information." -msgstr "" - -#: library/asynchat.rst:41 -msgid "" -"This class is an abstract subclass of :class:`asyncore.dispatcher`. To make " -"practical use of the code you must subclass :class:`async_chat`, providing " -"meaningful :meth:`collect_incoming_data` and :meth:`found_terminator` " -"methods. The :class:`asyncore.dispatcher` methods can be used, although not " -"all make sense in a message/response context." -msgstr "" - -#: library/asynchat.rst:48 -msgid "" -"Like :class:`asyncore.dispatcher`, :class:`async_chat` defines a set of " -"events that are generated by an analysis of socket conditions after a :c:" -"func:`select` call. Once the polling loop has been started the :class:" -"`async_chat` object's methods are called by the event-processing framework " -"with no action on the part of the programmer." -msgstr "" - -#: library/asynchat.rst:54 -msgid "" -"Two class attributes can be modified, to improve performance, or possibly " -"even to conserve memory." -msgstr "" - -#: library/asynchat.rst:60 -msgid "The asynchronous input buffer size (default ``4096``)." -msgstr "" - -#: library/asynchat.rst:65 -msgid "The asynchronous output buffer size (default ``4096``)." -msgstr "" - -#: library/asynchat.rst:67 -msgid "" -"Unlike :class:`asyncore.dispatcher`, :class:`async_chat` allows you to " -"define a :abbr:`FIFO (first-in, first-out)` queue of *producers*. A producer " -"need have only one method, :meth:`more`, which should return data to be " -"transmitted on the channel. The producer indicates exhaustion (*i.e.* that " -"it contains no more data) by having its :meth:`more` method return the empty " -"bytes object. At this point the :class:`async_chat` object removes the " -"producer from the queue and starts using the next producer, if any. When the " -"producer queue is empty the :meth:`handle_write` method does nothing. You " -"use the channel object's :meth:`set_terminator` method to describe how to " -"recognize the end of, or an important breakpoint in, an incoming " -"transmission from the remote endpoint." -msgstr "" - -#: library/asynchat.rst:80 -msgid "" -"To build a functioning :class:`async_chat` subclass your input methods :" -"meth:`collect_incoming_data` and :meth:`found_terminator` must handle the " -"data that the channel receives asynchronously. The methods are described " -"below." -msgstr "" - -#: library/asynchat.rst:88 -msgid "" -"Pushes a ``None`` on to the producer queue. When this producer is popped off " -"the queue it causes the channel to be closed." -msgstr "" - -#: library/asynchat.rst:94 -msgid "" -"Called with *data* holding an arbitrary amount of received data. The " -"default method, which must be overridden, raises a :exc:" -"`NotImplementedError` exception." -msgstr "" - -#: library/asynchat.rst:101 -msgid "" -"In emergencies this method will discard any data held in the input and/or " -"output buffers and the producer queue." -msgstr "" - -#: library/asynchat.rst:107 -msgid "" -"Called when the incoming data stream matches the termination condition set " -"by :meth:`set_terminator`. The default method, which must be overridden, " -"raises a :exc:`NotImplementedError` exception. The buffered input data " -"should be available via an instance attribute." -msgstr "" - -#: library/asynchat.rst:115 -msgid "Returns the current terminator for the channel." -msgstr "" - -#: library/asynchat.rst:120 -msgid "" -"Pushes data on to the channel's queue to ensure its transmission. This is " -"all you need to do to have the channel write the data out to the network, " -"although it is possible to use your own producers in more complex schemes to " -"implement encryption and chunking, for example." -msgstr "" - -#: library/asynchat.rst:128 -msgid "" -"Takes a producer object and adds it to the producer queue associated with " -"the channel. When all currently pushed producers have been exhausted the " -"channel will consume this producer's data by calling its :meth:`more` method " -"and send the data to the remote endpoint." -msgstr "" - -#: library/asynchat.rst:136 -msgid "" -"Sets the terminating condition to be recognized on the channel. ``term`` " -"may be any of three types of value, corresponding to three different ways to " -"handle incoming protocol data." -msgstr "" - -#: library/asynchat.rst:141 -msgid "term" -msgstr "" - -#: library/asynchat.rst:141 -msgid "Description" -msgstr "" - -#: library/asynchat.rst:143 -msgid "*string*" -msgstr "" - -#: library/asynchat.rst:143 -msgid "" -"Will call :meth:`found_terminator` when the string is found in the input " -"stream" -msgstr "" - -#: library/asynchat.rst:146 -msgid "*integer*" -msgstr "" - -#: library/asynchat.rst:146 -msgid "" -"Will call :meth:`found_terminator` when the indicated number of characters " -"have been received" -msgstr "" - -#: library/asynchat.rst:150 -msgid "``None``" -msgstr "" - -#: library/asynchat.rst:150 -msgid "The channel continues to collect data forever" -msgstr "" - -#: library/asynchat.rst:154 -msgid "" -"Note that any data following the terminator will be available for reading by " -"the channel after :meth:`found_terminator` is called." -msgstr "" - -#: library/asynchat.rst:161 -msgid "asynchat Example" -msgstr "" - -#: library/asynchat.rst:163 -msgid "" -"The following partial example shows how HTTP requests can be read with :" -"class:`async_chat`. A web server might create an :class:" -"`http_request_handler` object for each incoming client connection. Notice " -"that initially the channel terminator is set to match the blank line at the " -"end of the HTTP headers, and a flag indicates that the headers are being " -"read." -msgstr "" - -#: library/asynchat.rst:170 -msgid "" -"Once the headers have been read, if the request is of type POST (indicating " -"that further data are present in the input stream) then the ``Content-Length:" -"`` header is used to set a numeric terminator to read the right amount of " -"data from the channel." -msgstr "" - -#: library/asynchat.rst:175 -msgid "" -"The :meth:`handle_request` method is called once all relevant input has been " -"marshalled, after setting the channel terminator to ``None`` to ensure that " -"any extraneous data sent by the web client are ignored. ::" -msgstr "" diff --git a/library/asyncio-eventloop.po b/library/asyncio-eventloop.po index 05169bcde..b3fb645a2 100644 --- a/library/asyncio-eventloop.po +++ b/library/asyncio-eventloop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -98,100 +98,96 @@ msgid "" "and close an event loop." msgstr "" -#: library/asyncio-eventloop.rst:63 +#: library/asyncio-eventloop.rst:62 msgid "" -"In Python versions 3.10.0--3.10.8 and 3.11.0 this function (and other " -"functions which use it implicitly) emitted a :exc:`DeprecationWarning` if " -"there was no running event loop, even if the current loop was set on the " -"policy. In Python versions 3.10.9, 3.11.1 and 3.12 they emit a :exc:" -"`DeprecationWarning` if there is no running event loop and no current loop " -"is set. In some future Python release this will become an error." +"Deprecation warning is emitted if there is no current event loop. In some " +"future Python release this will become an error." msgstr "" -#: library/asyncio-eventloop.rst:74 +#: library/asyncio-eventloop.rst:68 msgid "Set *loop* as the current event loop for the current OS thread." msgstr "" -#: library/asyncio-eventloop.rst:78 +#: library/asyncio-eventloop.rst:72 msgid "Create and return a new event loop object." msgstr "" -#: library/asyncio-eventloop.rst:80 +#: library/asyncio-eventloop.rst:74 msgid "" "Note that the behaviour of :func:`get_event_loop`, :func:`set_event_loop`, " "and :func:`new_event_loop` functions can be altered by :ref:`setting a " "custom event loop policy `." msgstr "" -#: library/asyncio-eventloop.rst:86 +#: library/asyncio-eventloop.rst:80 msgid "Contents" msgstr "" -#: library/asyncio-eventloop.rst:87 +#: library/asyncio-eventloop.rst:81 msgid "This documentation page contains the following sections:" msgstr "" -#: library/asyncio-eventloop.rst:89 +#: library/asyncio-eventloop.rst:83 msgid "" "The `Event Loop Methods`_ section is the reference documentation of the " "event loop APIs;" msgstr "" -#: library/asyncio-eventloop.rst:92 +#: library/asyncio-eventloop.rst:86 msgid "" "The `Callback Handles`_ section documents the :class:`Handle` and :class:" "`TimerHandle` instances which are returned from scheduling methods such as :" "meth:`loop.call_soon` and :meth:`loop.call_later`;" msgstr "" -#: library/asyncio-eventloop.rst:96 +#: library/asyncio-eventloop.rst:90 msgid "" "The `Server Objects`_ section documents types returned from event loop " "methods like :meth:`loop.create_server`;" msgstr "" -#: library/asyncio-eventloop.rst:99 +#: library/asyncio-eventloop.rst:93 msgid "" "The `Event Loop Implementations`_ section documents the :class:" "`SelectorEventLoop` and :class:`ProactorEventLoop` classes;" msgstr "" -#: library/asyncio-eventloop.rst:102 +#: library/asyncio-eventloop.rst:96 msgid "" "The `Examples`_ section showcases how to work with some event loop APIs." msgstr "" -#: library/asyncio-eventloop.rst:109 +#: library/asyncio-eventloop.rst:103 msgid "Event Loop Methods" msgstr "" -#: library/asyncio-eventloop.rst:111 +#: library/asyncio-eventloop.rst:105 msgid "Event loops have **low-level** APIs for the following:" msgstr "" -#: library/asyncio-eventloop.rst:119 +#: library/asyncio-eventloop.rst:113 msgid "Running and stopping the loop" msgstr "" -#: library/asyncio-eventloop.rst:123 +#: library/asyncio-eventloop.rst:117 msgid "Run until the *future* (an instance of :class:`Future`) has completed." msgstr "" -#: library/asyncio-eventloop.rst:126 +#: library/asyncio-eventloop.rst:120 msgid "" "If the argument is a :ref:`coroutine object ` it is implicitly " "scheduled to run as a :class:`asyncio.Task`." msgstr "" -#: library/asyncio-eventloop.rst:129 +#: library/asyncio-eventloop.rst:123 msgid "Return the Future's result or raise its exception." msgstr "" -#: library/asyncio-eventloop.rst:133 +#: library/asyncio-eventloop.rst:127 msgid "Run the event loop until :meth:`stop` is called." msgstr "" -#: library/asyncio-eventloop.rst:135 +#: library/asyncio-eventloop.rst:129 msgid "" "If :meth:`stop` is called before :meth:`run_forever()` is called, the loop " "will poll the I/O selector once with a timeout of zero, run all callbacks " @@ -199,7 +195,7 @@ msgid "" "and then exit." msgstr "" -#: library/asyncio-eventloop.rst:140 +#: library/asyncio-eventloop.rst:134 msgid "" "If :meth:`stop` is called while :meth:`run_forever` is running, the loop " "will run the current batch of callbacks and then exit. Note that new " @@ -208,41 +204,41 @@ msgid "" "called." msgstr "" -#: library/asyncio-eventloop.rst:148 +#: library/asyncio-eventloop.rst:142 msgid "Stop the event loop." msgstr "" -#: library/asyncio-eventloop.rst:152 +#: library/asyncio-eventloop.rst:146 msgid "Return ``True`` if the event loop is currently running." msgstr "" -#: library/asyncio-eventloop.rst:156 +#: library/asyncio-eventloop.rst:150 msgid "Return ``True`` if the event loop was closed." msgstr "" -#: library/asyncio-eventloop.rst:160 +#: library/asyncio-eventloop.rst:154 msgid "Close the event loop." msgstr "" -#: library/asyncio-eventloop.rst:162 +#: library/asyncio-eventloop.rst:156 msgid "" "The loop must not be running when this function is called. Any pending " "callbacks will be discarded." msgstr "" -#: library/asyncio-eventloop.rst:165 +#: library/asyncio-eventloop.rst:159 msgid "" "This method clears all queues and shuts down the executor, but does not wait " "for the executor to finish." msgstr "" -#: library/asyncio-eventloop.rst:168 +#: library/asyncio-eventloop.rst:162 msgid "" "This method is idempotent and irreversible. No other methods should be " "called after the event loop is closed." msgstr "" -#: library/asyncio-eventloop.rst:173 +#: library/asyncio-eventloop.rst:167 msgid "" "Schedule all currently open :term:`asynchronous generator` objects to close " "with an :meth:`~agen.aclose()` call. After calling this method, the event " @@ -250,18 +246,18 @@ msgid "" "should be used to reliably finalize all scheduled asynchronous generators." msgstr "" -#: library/asyncio-eventloop.rst:179 +#: library/asyncio-eventloop.rst:173 msgid "" "Note that there is no need to call this function when :func:`asyncio.run` is " "used." msgstr "" -#: library/asyncio-eventloop.rst:182 library/asyncio-eventloop.rst:1219 -#: library/asyncio-eventloop.rst:1610 +#: library/asyncio-eventloop.rst:176 library/asyncio-eventloop.rst:1236 +#: library/asyncio-eventloop.rst:1643 msgid "Example::" msgstr "" -#: library/asyncio-eventloop.rst:194 +#: library/asyncio-eventloop.rst:188 msgid "" "Schedule the closure of the default executor and wait for it to join all of " "the threads in the :class:`~concurrent.futures.ThreadPoolExecutor`. Once " @@ -269,218 +265,236 @@ msgid "" "run_in_executor` will raise a :exc:`RuntimeError`." msgstr "" -#: library/asyncio-eventloop.rst:202 +#: library/asyncio-eventloop.rst:194 +msgid "" +"The *timeout* parameter specifies the amount of time (in :class:`float` " +"seconds) the executor will be given to finish joining. With the default, " +"``None``, the executor is allowed an unlimited amount of time." +msgstr "" + +#: library/asyncio-eventloop.rst:199 +msgid "" +"If the *timeout* is reached, a :exc:`RuntimeWarning` is emitted and the " +"default executor is terminated without waiting for its threads to finish " +"joining." +msgstr "" + +#: library/asyncio-eventloop.rst:205 msgid "" "Do not call this method when using :func:`asyncio.run`, as the latter " "handles default executor shutdown automatically." msgstr "" -#: library/asyncio-eventloop.rst:209 +#: library/asyncio-eventloop.rst:210 +msgid "Added the *timeout* parameter." +msgstr "" + +#: library/asyncio-eventloop.rst:214 msgid "Scheduling callbacks" msgstr "" -#: library/asyncio-eventloop.rst:213 +#: library/asyncio-eventloop.rst:218 msgid "" "Schedule the *callback* :term:`callback` to be called with *args* arguments " "at the next iteration of the event loop." msgstr "" -#: library/asyncio-eventloop.rst:216 +#: library/asyncio-eventloop.rst:221 msgid "" "Return an instance of :class:`asyncio.Handle`, which can be used later to " "cancel the callback." msgstr "" -#: library/asyncio-eventloop.rst:219 +#: library/asyncio-eventloop.rst:224 msgid "" "Callbacks are called in the order in which they are registered. Each " "callback will be called exactly once." msgstr "" -#: library/asyncio-eventloop.rst:222 +#: library/asyncio-eventloop.rst:227 msgid "" "The optional keyword-only *context* argument specifies a custom :class:" "`contextvars.Context` for the *callback* to run in. Callbacks use the " "current context when no *context* is provided." msgstr "" -#: library/asyncio-eventloop.rst:226 +#: library/asyncio-eventloop.rst:231 msgid "Unlike :meth:`call_soon_threadsafe`, this method is not thread-safe." msgstr "" -#: library/asyncio-eventloop.rst:230 +#: library/asyncio-eventloop.rst:235 msgid "" "A thread-safe variant of :meth:`call_soon`. When scheduling callbacks from " "another thread, this function *must* be used, since :meth:`call_soon` is not " "thread-safe." msgstr "" -#: library/asyncio-eventloop.rst:234 +#: library/asyncio-eventloop.rst:239 msgid "" "Raises :exc:`RuntimeError` if called on a loop that's been closed. This can " "happen on a secondary thread when the main application is shutting down." msgstr "" -#: library/asyncio-eventloop.rst:238 +#: library/asyncio-eventloop.rst:243 msgid "" "See the :ref:`concurrency and multithreading ` " "section of the documentation." msgstr "" -#: library/asyncio-eventloop.rst:241 library/asyncio-eventloop.rst:291 -#: library/asyncio-eventloop.rst:311 +#: library/asyncio-eventloop.rst:246 library/asyncio-eventloop.rst:296 +#: library/asyncio-eventloop.rst:316 msgid "" "The *context* keyword-only parameter was added. See :pep:`567` for more " "details." msgstr "" -#: library/asyncio-eventloop.rst:249 +#: library/asyncio-eventloop.rst:254 msgid "" "Most :mod:`asyncio` scheduling functions don't allow passing keyword " "arguments. To do that, use :func:`functools.partial`::" msgstr "" -#: library/asyncio-eventloop.rst:256 +#: library/asyncio-eventloop.rst:261 msgid "" "Using partial objects is usually more convenient than using lambdas, as " "asyncio can render partial objects better in debug and error messages." msgstr "" -#: library/asyncio-eventloop.rst:264 +#: library/asyncio-eventloop.rst:269 msgid "Scheduling delayed callbacks" msgstr "" -#: library/asyncio-eventloop.rst:266 +#: library/asyncio-eventloop.rst:271 msgid "" "Event loop provides mechanisms to schedule callback functions to be called " "at some point in the future. Event loop uses monotonic clocks to track time." msgstr "" -#: library/asyncio-eventloop.rst:273 +#: library/asyncio-eventloop.rst:278 msgid "" "Schedule *callback* to be called after the given *delay* number of seconds " "(can be either an int or a float)." msgstr "" -#: library/asyncio-eventloop.rst:276 library/asyncio-eventloop.rst:308 +#: library/asyncio-eventloop.rst:281 library/asyncio-eventloop.rst:313 msgid "" "An instance of :class:`asyncio.TimerHandle` is returned which can be used to " "cancel the callback." msgstr "" -#: library/asyncio-eventloop.rst:279 +#: library/asyncio-eventloop.rst:284 msgid "" "*callback* will be called exactly once. If two callbacks are scheduled for " "exactly the same time, the order in which they are called is undefined." msgstr "" -#: library/asyncio-eventloop.rst:283 +#: library/asyncio-eventloop.rst:288 msgid "" "The optional positional *args* will be passed to the callback when it is " "called. If you want the callback to be called with keyword arguments use :" "func:`functools.partial`." msgstr "" -#: library/asyncio-eventloop.rst:287 +#: library/asyncio-eventloop.rst:292 msgid "" "An optional keyword-only *context* argument allows specifying a custom :" "class:`contextvars.Context` for the *callback* to run in. The current " "context is used when no *context* is provided." msgstr "" -#: library/asyncio-eventloop.rst:295 +#: library/asyncio-eventloop.rst:300 msgid "" "In Python 3.7 and earlier with the default event loop implementation, the " "*delay* could not exceed one day. This has been fixed in Python 3.8." msgstr "" -#: library/asyncio-eventloop.rst:302 +#: library/asyncio-eventloop.rst:307 msgid "" "Schedule *callback* to be called at the given absolute timestamp *when* (an " "int or a float), using the same time reference as :meth:`loop.time`." msgstr "" -#: library/asyncio-eventloop.rst:306 +#: library/asyncio-eventloop.rst:311 msgid "This method's behavior is the same as :meth:`call_later`." msgstr "" -#: library/asyncio-eventloop.rst:315 +#: library/asyncio-eventloop.rst:320 msgid "" "In Python 3.7 and earlier with the default event loop implementation, the " "difference between *when* and the current time could not exceed one day. " "This has been fixed in Python 3.8." msgstr "" -#: library/asyncio-eventloop.rst:322 +#: library/asyncio-eventloop.rst:327 msgid "" "Return the current time, as a :class:`float` value, according to the event " "loop's internal monotonic clock." msgstr "" -#: library/asyncio-eventloop.rst:326 +#: library/asyncio-eventloop.rst:331 msgid "" "In Python 3.7 and earlier timeouts (relative *delay* or absolute *when*) " "should not exceed one day. This has been fixed in Python 3.8." msgstr "" -#: library/asyncio-eventloop.rst:332 +#: library/asyncio-eventloop.rst:337 msgid "The :func:`asyncio.sleep` function." msgstr "" -#: library/asyncio-eventloop.rst:336 +#: library/asyncio-eventloop.rst:341 msgid "Creating Futures and Tasks" msgstr "" -#: library/asyncio-eventloop.rst:340 +#: library/asyncio-eventloop.rst:345 msgid "Create an :class:`asyncio.Future` object attached to the event loop." msgstr "" -#: library/asyncio-eventloop.rst:342 +#: library/asyncio-eventloop.rst:347 msgid "" "This is the preferred way to create Futures in asyncio. This lets third-" "party event loops provide alternative implementations of the Future object " "(with better performance or instrumentation)." msgstr "" -#: library/asyncio-eventloop.rst:350 +#: library/asyncio-eventloop.rst:355 msgid "" "Schedule the execution of :ref:`coroutine ` *coro*. Return a :" "class:`Task` object." msgstr "" -#: library/asyncio-eventloop.rst:353 +#: library/asyncio-eventloop.rst:358 msgid "" "Third-party event loops can use their own subclass of :class:`Task` for " "interoperability. In this case, the result type is a subclass of :class:" "`Task`." msgstr "" -#: library/asyncio-eventloop.rst:357 +#: library/asyncio-eventloop.rst:362 msgid "" "If the *name* argument is provided and not ``None``, it is set as the name " "of the task using :meth:`Task.set_name`." msgstr "" -#: library/asyncio-eventloop.rst:360 +#: library/asyncio-eventloop.rst:365 msgid "" "An optional keyword-only *context* argument allows specifying a custom :" "class:`contextvars.Context` for the *coro* to run in. The current context " "copy is created when no *context* is provided." msgstr "" -#: library/asyncio-eventloop.rst:364 +#: library/asyncio-eventloop.rst:369 msgid "Added the *name* parameter." msgstr "" -#: library/asyncio-eventloop.rst:367 +#: library/asyncio-eventloop.rst:372 msgid "Added the *context* parameter." msgstr "" -#: library/asyncio-eventloop.rst:372 +#: library/asyncio-eventloop.rst:377 msgid "Set a task factory that will be used by :meth:`loop.create_task`." msgstr "" -#: library/asyncio-eventloop.rst:375 +#: library/asyncio-eventloop.rst:380 msgid "" "If *factory* is ``None`` the default task factory will be set. Otherwise, " "*factory* must be a *callable* with the signature matching ``(loop, coro, " @@ -489,80 +503,80 @@ msgid "" "Future`-compatible object." msgstr "" -#: library/asyncio-eventloop.rst:383 +#: library/asyncio-eventloop.rst:388 msgid "Return a task factory or ``None`` if the default one is in use." msgstr "" -#: library/asyncio-eventloop.rst:387 +#: library/asyncio-eventloop.rst:392 msgid "Opening network connections" msgstr "" -#: library/asyncio-eventloop.rst:397 +#: library/asyncio-eventloop.rst:403 msgid "" "Open a streaming transport connection to a given address specified by *host* " "and *port*." msgstr "" -#: library/asyncio-eventloop.rst:400 +#: library/asyncio-eventloop.rst:406 msgid "" "The socket family can be either :py:const:`~socket.AF_INET` or :py:const:" "`~socket.AF_INET6` depending on *host* (or the *family* argument, if " "provided)." msgstr "" -#: library/asyncio-eventloop.rst:404 +#: library/asyncio-eventloop.rst:410 msgid "The socket type will be :py:const:`~socket.SOCK_STREAM`." msgstr "" -#: library/asyncio-eventloop.rst:406 library/asyncio-eventloop.rst:1135 -#: library/asyncio-eventloop.rst:1151 +#: library/asyncio-eventloop.rst:412 library/asyncio-eventloop.rst:1152 +#: library/asyncio-eventloop.rst:1168 msgid "" "*protocol_factory* must be a callable returning an :ref:`asyncio protocol " "` implementation." msgstr "" -#: library/asyncio-eventloop.rst:409 +#: library/asyncio-eventloop.rst:415 msgid "" "This method will try to establish the connection in the background. When " "successful, it returns a ``(transport, protocol)`` pair." msgstr "" -#: library/asyncio-eventloop.rst:412 +#: library/asyncio-eventloop.rst:418 msgid "The chronological synopsis of the underlying operation is as follows:" msgstr "" -#: library/asyncio-eventloop.rst:414 +#: library/asyncio-eventloop.rst:420 msgid "" "The connection is established and a :ref:`transport ` is " "created for it." msgstr "" -#: library/asyncio-eventloop.rst:417 +#: library/asyncio-eventloop.rst:423 msgid "" "*protocol_factory* is called without arguments and is expected to return a :" "ref:`protocol ` instance." msgstr "" -#: library/asyncio-eventloop.rst:420 +#: library/asyncio-eventloop.rst:426 msgid "" "The protocol instance is coupled with the transport by calling its :meth:" "`~BaseProtocol.connection_made` method." msgstr "" -#: library/asyncio-eventloop.rst:423 +#: library/asyncio-eventloop.rst:429 msgid "A ``(transport, protocol)`` tuple is returned on success." msgstr "" -#: library/asyncio-eventloop.rst:425 +#: library/asyncio-eventloop.rst:431 msgid "" "The created transport is an implementation-dependent bidirectional stream." msgstr "" -#: library/asyncio-eventloop.rst:428 library/asyncio-eventloop.rst:549 +#: library/asyncio-eventloop.rst:434 library/asyncio-eventloop.rst:566 msgid "Other arguments:" msgstr "" -#: library/asyncio-eventloop.rst:430 +#: library/asyncio-eventloop.rst:436 msgid "" "*ssl*: if given and not false, a SSL/TLS transport is created (by default a " "plain TCP transport is created). If *ssl* is a :class:`ssl.SSLContext` " @@ -571,11 +585,11 @@ msgid "" "is used." msgstr "" -#: library/asyncio-eventloop.rst:436 +#: library/asyncio-eventloop.rst:442 msgid ":ref:`SSL/TLS security considerations `" msgstr "" -#: library/asyncio-eventloop.rst:438 +#: library/asyncio-eventloop.rst:444 msgid "" "*server_hostname* sets or overrides the hostname that the target server's " "certificate will be matched against. Should only be passed if *ssl* is not " @@ -586,7 +600,7 @@ msgid "" "potential man-in-the-middle attacks)." msgstr "" -#: library/asyncio-eventloop.rst:446 +#: library/asyncio-eventloop.rst:452 msgid "" "*family*, *proto*, *flags* are the optional address family, protocol and " "flags to be passed through to getaddrinfo() for *host* resolution. If given, " @@ -594,7 +608,7 @@ msgid "" "constants." msgstr "" -#: library/asyncio-eventloop.rst:451 +#: library/asyncio-eventloop.rst:457 msgid "" "*happy_eyeballs_delay*, if given, enables Happy Eyeballs for this " "connection. It should be a floating-point number representing the amount of " @@ -604,7 +618,7 @@ msgid "" "the RFC is ``0.25`` (250 milliseconds)." msgstr "" -#: library/asyncio-eventloop.rst:459 +#: library/asyncio-eventloop.rst:465 msgid "" "*interleave* controls address reordering when a host name resolves to " "multiple IP addresses. If ``0`` or unspecified, no reordering is done, and " @@ -615,7 +629,7 @@ msgid "" "*happy_eyeballs_delay* is not specified, and ``1`` if it is." msgstr "" -#: library/asyncio-eventloop.rst:468 +#: library/asyncio-eventloop.rst:474 msgid "" "*sock*, if given, should be an existing, already connected :class:`socket." "socket` object to be used by the transport. If *sock* is given, none of " @@ -623,55 +637,65 @@ msgid "" "*interleave* and *local_addr* should be specified." msgstr "" -#: library/asyncio-eventloop.rst:476 library/asyncio-eventloop.rst:580 -#: library/asyncio-eventloop.rst:804 +#: library/asyncio-eventloop.rst:482 library/asyncio-eventloop.rst:597 +#: library/asyncio-eventloop.rst:821 msgid "" "The *sock* argument transfers ownership of the socket to the transport " "created. To close the socket, call the transport's :meth:`~asyncio." "BaseTransport.close` method." msgstr "" -#: library/asyncio-eventloop.rst:480 +#: library/asyncio-eventloop.rst:486 msgid "" "*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind " "the socket locally. The *local_host* and *local_port* are looked up using " "``getaddrinfo()``, similarly to *host* and *port*." msgstr "" -#: library/asyncio-eventloop.rst:484 library/asyncio-eventloop.rst:898 +#: library/asyncio-eventloop.rst:490 library/asyncio-eventloop.rst:915 msgid "" "*ssl_handshake_timeout* is (for a TLS connection) the time in seconds to " "wait for the TLS handshake to complete before aborting the connection. " "``60.0`` seconds if ``None`` (default)." msgstr "" -#: library/asyncio-eventloop.rst:488 library/asyncio-eventloop.rst:721 -#: library/asyncio-eventloop.rst:815 library/asyncio-eventloop.rst:902 +#: library/asyncio-eventloop.rst:494 library/asyncio-eventloop.rst:738 +#: library/asyncio-eventloop.rst:832 library/asyncio-eventloop.rst:919 msgid "" "*ssl_shutdown_timeout* is the time in seconds to wait for the SSL shutdown " "to complete before aborting the connection. ``30.0`` seconds if ``None`` " "(default)." msgstr "" -#: library/asyncio-eventloop.rst:494 library/asyncio-eventloop.rst:733 +#: library/asyncio-eventloop.rst:498 +msgid "" +"*all_errors* determines what exceptions are raised when a connection cannot " +"be created. By default, only a single ``Exception`` is raised: the first " +"exception if there is only one or all errors have same message, or a single " +"``OSError`` with the error messages combined. When ``all_errors`` is " +"``True``, an ``ExceptionGroup`` will be raised containing all exceptions " +"(even if there is only one)." +msgstr "" + +#: library/asyncio-eventloop.rst:508 library/asyncio-eventloop.rst:750 msgid "Added support for SSL/TLS in :class:`ProactorEventLoop`." msgstr "" -#: library/asyncio-eventloop.rst:498 +#: library/asyncio-eventloop.rst:512 msgid "" "The socket option :py:const:`~socket.TCP_NODELAY` is set by default for all " "TCP connections." msgstr "" -#: library/asyncio-eventloop.rst:503 library/asyncio-eventloop.rst:825 +#: library/asyncio-eventloop.rst:517 library/asyncio-eventloop.rst:842 msgid "Added the *ssl_handshake_timeout* parameter." msgstr "" -#: library/asyncio-eventloop.rst:507 +#: library/asyncio-eventloop.rst:521 msgid "Added the *happy_eyeballs_delay* and *interleave* parameters." msgstr "" -#: library/asyncio-eventloop.rst:509 +#: library/asyncio-eventloop.rst:523 msgid "" "Happy Eyeballs Algorithm: Success with Dual-Stack Hosts. When a server's " "IPv4 path and protocol are working, but the server's IPv6 path and protocol " @@ -682,64 +706,68 @@ msgid "" "visible delay and provides an algorithm." msgstr "" -#: library/asyncio-eventloop.rst:518 +#: library/asyncio-eventloop.rst:532 msgid "For more information: https://datatracker.ietf.org/doc/html/rfc6555" msgstr "" -#: library/asyncio-eventloop.rst:522 library/asyncio-eventloop.rst:641 -#: library/asyncio-eventloop.rst:747 library/asyncio-eventloop.rst:782 -#: library/asyncio-eventloop.rst:829 library/asyncio-eventloop.rst:910 +#: library/asyncio-eventloop.rst:536 library/asyncio-eventloop.rst:658 +#: library/asyncio-eventloop.rst:764 library/asyncio-eventloop.rst:799 +#: library/asyncio-eventloop.rst:846 library/asyncio-eventloop.rst:927 msgid "Added the *ssl_shutdown_timeout* parameter." msgstr "" -#: library/asyncio-eventloop.rst:526 +#: library/asyncio-eventloop.rst:538 +msgid "*all_errors* was added." +msgstr "" + +#: library/asyncio-eventloop.rst:543 msgid "" "The :func:`open_connection` function is a high-level alternative API. It " "returns a pair of (:class:`StreamReader`, :class:`StreamWriter`) that can be " "used directly in async/await code." msgstr "" -#: library/asyncio-eventloop.rst:536 +#: library/asyncio-eventloop.rst:553 msgid "Create a datagram connection." msgstr "" -#: library/asyncio-eventloop.rst:538 +#: library/asyncio-eventloop.rst:555 msgid "" "The socket family can be either :py:const:`~socket.AF_INET`, :py:const:" "`~socket.AF_INET6`, or :py:const:`~socket.AF_UNIX`, depending on *host* (or " "the *family* argument, if provided)." msgstr "" -#: library/asyncio-eventloop.rst:542 +#: library/asyncio-eventloop.rst:559 msgid "The socket type will be :py:const:`~socket.SOCK_DGRAM`." msgstr "" -#: library/asyncio-eventloop.rst:544 library/asyncio-eventloop.rst:664 -#: library/asyncio-eventloop.rst:796 +#: library/asyncio-eventloop.rst:561 library/asyncio-eventloop.rst:681 +#: library/asyncio-eventloop.rst:813 msgid "" "*protocol_factory* must be a callable returning a :ref:`protocol ` implementation." msgstr "" -#: library/asyncio-eventloop.rst:547 library/asyncio-eventloop.rst:623 +#: library/asyncio-eventloop.rst:564 library/asyncio-eventloop.rst:640 msgid "A tuple of ``(transport, protocol)`` is returned on success." msgstr "" -#: library/asyncio-eventloop.rst:551 +#: library/asyncio-eventloop.rst:568 msgid "" "*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind " "the socket locally. The *local_host* and *local_port* are looked up using :" "meth:`getaddrinfo`." msgstr "" -#: library/asyncio-eventloop.rst:555 +#: library/asyncio-eventloop.rst:572 msgid "" "*remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used to " "connect the socket to a remote address. The *remote_host* and *remote_port* " "are looked up using :meth:`getaddrinfo`." msgstr "" -#: library/asyncio-eventloop.rst:559 +#: library/asyncio-eventloop.rst:576 msgid "" "*family*, *proto*, *flags* are the optional address family, protocol and " "flags to be passed through to :meth:`getaddrinfo` for *host* resolution. If " @@ -747,7 +775,7 @@ msgid "" "module constants." msgstr "" -#: library/asyncio-eventloop.rst:564 +#: library/asyncio-eventloop.rst:581 msgid "" "*reuse_port* tells the kernel to allow this endpoint to be bound to the same " "port as other existing endpoints are bound to, so long as they all set this " @@ -756,13 +784,13 @@ msgid "" "this capability is unsupported." msgstr "" -#: library/asyncio-eventloop.rst:570 +#: library/asyncio-eventloop.rst:587 msgid "" "*allow_broadcast* tells the kernel to allow this endpoint to send messages " "to the broadcast address." msgstr "" -#: library/asyncio-eventloop.rst:573 +#: library/asyncio-eventloop.rst:590 msgid "" "*sock* can optionally be specified in order to use a preexisting, already " "connected, :class:`socket.socket` object to be used by the transport. If " @@ -770,33 +798,33 @@ msgid "" "`None`)." msgstr "" -#: library/asyncio-eventloop.rst:584 +#: library/asyncio-eventloop.rst:601 msgid "" "See :ref:`UDP echo client protocol ` and :" "ref:`UDP echo server protocol ` examples." msgstr "" -#: library/asyncio-eventloop.rst:587 +#: library/asyncio-eventloop.rst:604 msgid "" "The *family*, *proto*, *flags*, *reuse_address*, *reuse_port*, " "*allow_broadcast*, and *sock* parameters were added." msgstr "" -#: library/asyncio-eventloop.rst:591 +#: library/asyncio-eventloop.rst:608 msgid "" "The *reuse_address* parameter is no longer supported, as using :py:const:" "`~sockets.SO_REUSEADDR` poses a significant security concern for UDP. " "Explicitly passing ``reuse_address=True`` will raise an exception." msgstr "" -#: library/asyncio-eventloop.rst:596 +#: library/asyncio-eventloop.rst:613 msgid "" "When multiple processes with differing UIDs assign sockets to an identical " "UDP socket address with ``SO_REUSEADDR``, incoming packets can become " "randomly distributed among the sockets." msgstr "" -#: library/asyncio-eventloop.rst:600 +#: library/asyncio-eventloop.rst:617 msgid "" "For supported platforms, *reuse_port* can be used as a replacement for " "similar functionality. With *reuse_port*, :py:const:`~sockets.SO_REUSEPORT` " @@ -804,94 +832,94 @@ msgid "" "from assigning sockets to the same socket address." msgstr "" -#: library/asyncio-eventloop.rst:606 +#: library/asyncio-eventloop.rst:623 msgid "Added support for Windows." msgstr "" -#: library/asyncio-eventloop.rst:609 +#: library/asyncio-eventloop.rst:626 msgid "" "The *reuse_address* parameter, disabled since Python 3.9.0, 3.8.1, 3.7.6 and " "3.6.10, has been entirely removed." msgstr "" -#: library/asyncio-eventloop.rst:618 +#: library/asyncio-eventloop.rst:635 msgid "Create a Unix connection." msgstr "" -#: library/asyncio-eventloop.rst:620 +#: library/asyncio-eventloop.rst:637 msgid "" "The socket family will be :py:const:`~socket.AF_UNIX`; socket type will be :" "py:const:`~socket.SOCK_STREAM`." msgstr "" -#: library/asyncio-eventloop.rst:625 +#: library/asyncio-eventloop.rst:642 msgid "" "*path* is the name of a Unix domain socket and is required, unless a *sock* " "parameter is specified. Abstract Unix sockets, :class:`str`, :class:" "`bytes`, and :class:`~pathlib.Path` paths are supported." msgstr "" -#: library/asyncio-eventloop.rst:630 +#: library/asyncio-eventloop.rst:647 msgid "" "See the documentation of the :meth:`loop.create_connection` method for " "information about arguments to this method." msgstr "" -#: library/asyncio-eventloop.rst:633 library/asyncio-eventloop.rst:773 -#: library/asyncio-eventloop.rst:1202 +#: library/asyncio-eventloop.rst:650 library/asyncio-eventloop.rst:790 +#: library/asyncio-eventloop.rst:1219 msgid ":ref:`Availability `: Unix." msgstr "" -#: library/asyncio-eventloop.rst:635 +#: library/asyncio-eventloop.rst:652 msgid "" "Added the *ssl_handshake_timeout* parameter. The *path* parameter can now be " "a :term:`path-like object`." msgstr "" -#: library/asyncio-eventloop.rst:645 +#: library/asyncio-eventloop.rst:662 msgid "Creating network servers" msgstr "" -#: library/asyncio-eventloop.rst:657 +#: library/asyncio-eventloop.rst:674 msgid "" "Create a TCP server (socket type :const:`~socket.SOCK_STREAM`) listening on " "*port* of the *host* address." msgstr "" -#: library/asyncio-eventloop.rst:660 +#: library/asyncio-eventloop.rst:677 msgid "Returns a :class:`Server` object." msgstr "" -#: library/asyncio-eventloop.rst:662 +#: library/asyncio-eventloop.rst:679 msgid "Arguments:" msgstr "" -#: library/asyncio-eventloop.rst:667 +#: library/asyncio-eventloop.rst:684 msgid "" "The *host* parameter can be set to several types which determine where the " "server would be listening:" msgstr "" -#: library/asyncio-eventloop.rst:670 +#: library/asyncio-eventloop.rst:687 msgid "" "If *host* is a string, the TCP server is bound to a single network interface " "specified by *host*." msgstr "" -#: library/asyncio-eventloop.rst:673 +#: library/asyncio-eventloop.rst:690 msgid "" "If *host* is a sequence of strings, the TCP server is bound to all network " "interfaces specified by the sequence." msgstr "" -#: library/asyncio-eventloop.rst:676 +#: library/asyncio-eventloop.rst:693 msgid "" "If *host* is an empty string or ``None``, all interfaces are assumed and a " "list of multiple sockets will be returned (most likely one for IPv4 and " "another one for IPv6)." msgstr "" -#: library/asyncio-eventloop.rst:680 +#: library/asyncio-eventloop.rst:697 msgid "" "The *port* parameter can be set to specify which port the server should " "listen on. If ``0`` or ``None`` (the default), a random unused port will be " @@ -899,63 +927,63 @@ msgid "" "different random port will be selected for each interface)." msgstr "" -#: library/asyncio-eventloop.rst:685 +#: library/asyncio-eventloop.rst:702 msgid "" "*family* can be set to either :const:`socket.AF_INET` or :const:`~socket." "AF_INET6` to force the socket to use IPv4 or IPv6. If not set, the *family* " "will be determined from host name (defaults to :const:`~socket.AF_UNSPEC`)." msgstr "" -#: library/asyncio-eventloop.rst:690 +#: library/asyncio-eventloop.rst:707 msgid "*flags* is a bitmask for :meth:`getaddrinfo`." msgstr "" -#: library/asyncio-eventloop.rst:692 +#: library/asyncio-eventloop.rst:709 msgid "" "*sock* can optionally be specified in order to use a preexisting socket " "object. If specified, *host* and *port* must not be specified." msgstr "" -#: library/asyncio-eventloop.rst:697 +#: library/asyncio-eventloop.rst:714 msgid "" "The *sock* argument transfers ownership of the socket to the server created. " "To close the socket, call the server's :meth:`~asyncio.Server.close` method." msgstr "" -#: library/asyncio-eventloop.rst:701 +#: library/asyncio-eventloop.rst:718 msgid "" "*backlog* is the maximum number of queued connections passed to :meth:" "`~socket.socket.listen` (defaults to 100)." msgstr "" -#: library/asyncio-eventloop.rst:704 +#: library/asyncio-eventloop.rst:721 msgid "" "*ssl* can be set to an :class:`~ssl.SSLContext` instance to enable TLS over " "the accepted connections." msgstr "" -#: library/asyncio-eventloop.rst:707 +#: library/asyncio-eventloop.rst:724 msgid "" "*reuse_address* tells the kernel to reuse a local socket in ``TIME_WAIT`` " "state, without waiting for its natural timeout to expire. If not specified " "will automatically be set to ``True`` on Unix." msgstr "" -#: library/asyncio-eventloop.rst:712 +#: library/asyncio-eventloop.rst:729 msgid "" "*reuse_port* tells the kernel to allow this endpoint to be bound to the same " "port as other existing endpoints are bound to, so long as they all set this " "flag when being created. This option is not supported on Windows." msgstr "" -#: library/asyncio-eventloop.rst:717 +#: library/asyncio-eventloop.rst:734 msgid "" "*ssl_handshake_timeout* is (for a TLS server) the time in seconds to wait " "for the TLS handshake to complete before aborting the connection. ``60.0`` " "seconds if ``None`` (default)." msgstr "" -#: library/asyncio-eventloop.rst:725 +#: library/asyncio-eventloop.rst:742 msgid "" "*start_serving* set to ``True`` (the default) causes the created server to " "start accepting connections immediately. When set to ``False``, the user " @@ -963,104 +991,104 @@ msgid "" "to make the server to start accepting connections." msgstr "" -#: library/asyncio-eventloop.rst:737 +#: library/asyncio-eventloop.rst:754 msgid "The *host* parameter can be a sequence of strings." msgstr "" -#: library/asyncio-eventloop.rst:741 +#: library/asyncio-eventloop.rst:758 msgid "" "Added *ssl_handshake_timeout* and *start_serving* parameters. The socket " "option :py:const:`~socket.TCP_NODELAY` is set by default for all TCP " "connections." msgstr "" -#: library/asyncio-eventloop.rst:751 +#: library/asyncio-eventloop.rst:768 msgid "" "The :func:`start_server` function is a higher-level alternative API that " "returns a pair of :class:`StreamReader` and :class:`StreamWriter` that can " "be used in an async/await code." msgstr "" -#: library/asyncio-eventloop.rst:762 +#: library/asyncio-eventloop.rst:779 msgid "" "Similar to :meth:`loop.create_server` but works with the :py:const:`~socket." "AF_UNIX` socket family." msgstr "" -#: library/asyncio-eventloop.rst:765 +#: library/asyncio-eventloop.rst:782 msgid "" "*path* is the name of a Unix domain socket, and is required, unless a *sock* " "argument is provided. Abstract Unix sockets, :class:`str`, :class:`bytes`, " "and :class:`~pathlib.Path` paths are supported." msgstr "" -#: library/asyncio-eventloop.rst:770 +#: library/asyncio-eventloop.rst:787 msgid "" "See the documentation of the :meth:`loop.create_server` method for " "information about arguments to this method." msgstr "" -#: library/asyncio-eventloop.rst:777 +#: library/asyncio-eventloop.rst:794 msgid "" "Added the *ssl_handshake_timeout* and *start_serving* parameters. The *path* " "parameter can now be a :class:`~pathlib.Path` object." msgstr "" -#: library/asyncio-eventloop.rst:789 +#: library/asyncio-eventloop.rst:806 msgid "Wrap an already accepted connection into a transport/protocol pair." msgstr "" -#: library/asyncio-eventloop.rst:791 +#: library/asyncio-eventloop.rst:808 msgid "" "This method can be used by servers that accept connections outside of " "asyncio but that use asyncio to handle them." msgstr "" -#: library/asyncio-eventloop.rst:794 library/asyncio-eventloop.rst:884 +#: library/asyncio-eventloop.rst:811 library/asyncio-eventloop.rst:901 msgid "Parameters:" msgstr "" -#: library/asyncio-eventloop.rst:799 +#: library/asyncio-eventloop.rst:816 msgid "" "*sock* is a preexisting socket object returned from :meth:`socket.accept " "`." msgstr "" -#: library/asyncio-eventloop.rst:808 +#: library/asyncio-eventloop.rst:825 msgid "" "*ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the " "accepted connections." msgstr "" -#: library/asyncio-eventloop.rst:811 +#: library/asyncio-eventloop.rst:828 msgid "" "*ssl_handshake_timeout* is (for an SSL connection) the time in seconds to " "wait for the SSL handshake to complete before aborting the connection. " "``60.0`` seconds if ``None`` (default)." msgstr "" -#: library/asyncio-eventloop.rst:819 +#: library/asyncio-eventloop.rst:836 msgid "Returns a ``(transport, protocol)`` pair." msgstr "" -#: library/asyncio-eventloop.rst:833 +#: library/asyncio-eventloop.rst:850 msgid "Transferring files" msgstr "" -#: library/asyncio-eventloop.rst:838 +#: library/asyncio-eventloop.rst:855 msgid "" "Send a *file* over a *transport*. Return the total number of bytes sent." msgstr "" -#: library/asyncio-eventloop.rst:841 +#: library/asyncio-eventloop.rst:858 msgid "The method uses high-performance :meth:`os.sendfile` if available." msgstr "" -#: library/asyncio-eventloop.rst:843 +#: library/asyncio-eventloop.rst:860 msgid "*file* must be a regular file object opened in binary mode." msgstr "" -#: library/asyncio-eventloop.rst:845 library/asyncio-eventloop.rst:1090 +#: library/asyncio-eventloop.rst:862 library/asyncio-eventloop.rst:1107 msgid "" "*offset* tells from where to start reading the file. If specified, *count* " "is the total number of bytes to transmit as opposed to sending the file " @@ -1069,35 +1097,35 @@ msgid "" "obtain the actual number of bytes sent." msgstr "" -#: library/asyncio-eventloop.rst:852 +#: library/asyncio-eventloop.rst:869 msgid "" "*fallback* set to ``True`` makes asyncio to manually read and send the file " "when the platform does not support the sendfile system call (e.g. Windows or " "SSL socket on Unix)." msgstr "" -#: library/asyncio-eventloop.rst:856 +#: library/asyncio-eventloop.rst:873 msgid "" "Raise :exc:`SendfileNotAvailableError` if the system does not support the " "*sendfile* syscall and *fallback* is ``False``." msgstr "" -#: library/asyncio-eventloop.rst:863 +#: library/asyncio-eventloop.rst:880 msgid "TLS Upgrade" msgstr "" -#: library/asyncio-eventloop.rst:870 +#: library/asyncio-eventloop.rst:887 msgid "Upgrade an existing transport-based connection to TLS." msgstr "" -#: library/asyncio-eventloop.rst:872 +#: library/asyncio-eventloop.rst:889 msgid "" "Create a TLS coder/decoder instance and insert it between the *transport* " "and the *protocol*. The coder/decoder implements both *transport*-facing " "protocol and *protocol*-facing transport." msgstr "" -#: library/asyncio-eventloop.rst:876 +#: library/asyncio-eventloop.rst:893 msgid "" "Return the created two-interface instance. After *await*, the *protocol* " "must stop using the original *transport* and communicate with the returned " @@ -1105,79 +1133,79 @@ msgid "" "exchanges extra TLS session packets with *transport*." msgstr "" -#: library/asyncio-eventloop.rst:881 +#: library/asyncio-eventloop.rst:898 msgid "" "In some situations (e.g. when the passed transport is already closing) this " "may return ``None``." msgstr "" -#: library/asyncio-eventloop.rst:886 +#: library/asyncio-eventloop.rst:903 msgid "" "*transport* and *protocol* instances that methods like :meth:`~loop." "create_server` and :meth:`~loop.create_connection` return." msgstr "" -#: library/asyncio-eventloop.rst:890 +#: library/asyncio-eventloop.rst:907 msgid "*sslcontext*: a configured instance of :class:`~ssl.SSLContext`." msgstr "" -#: library/asyncio-eventloop.rst:892 +#: library/asyncio-eventloop.rst:909 msgid "" "*server_side* pass ``True`` when a server-side connection is being upgraded " "(like the one created by :meth:`~loop.create_server`)." msgstr "" -#: library/asyncio-eventloop.rst:895 +#: library/asyncio-eventloop.rst:912 msgid "" "*server_hostname*: sets or overrides the host name that the target server's " "certificate will be matched against." msgstr "" -#: library/asyncio-eventloop.rst:915 +#: library/asyncio-eventloop.rst:932 msgid "Watching file descriptors" msgstr "" -#: library/asyncio-eventloop.rst:919 +#: library/asyncio-eventloop.rst:936 msgid "" "Start monitoring the *fd* file descriptor for read availability and invoke " "*callback* with the specified arguments once *fd* is available for reading." msgstr "" -#: library/asyncio-eventloop.rst:925 +#: library/asyncio-eventloop.rst:942 msgid "" "Stop monitoring the *fd* file descriptor for read availability. Returns " "``True`` if *fd* was previously being monitored for reads." msgstr "" -#: library/asyncio-eventloop.rst:930 +#: library/asyncio-eventloop.rst:947 msgid "" "Start monitoring the *fd* file descriptor for write availability and invoke " "*callback* with the specified arguments once *fd* is available for writing." msgstr "" -#: library/asyncio-eventloop.rst:934 library/asyncio-eventloop.rst:1189 +#: library/asyncio-eventloop.rst:951 library/asyncio-eventloop.rst:1206 msgid "" "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *callback*." msgstr "" -#: library/asyncio-eventloop.rst:939 +#: library/asyncio-eventloop.rst:956 msgid "" "Stop monitoring the *fd* file descriptor for write availability. Returns " "``True`` if *fd* was previously being monitored for writes." msgstr "" -#: library/asyncio-eventloop.rst:942 +#: library/asyncio-eventloop.rst:959 msgid "" "See also :ref:`Platform Support ` section for some " "limitations of these methods." msgstr "" -#: library/asyncio-eventloop.rst:947 +#: library/asyncio-eventloop.rst:964 msgid "Working with socket objects directly" msgstr "" -#: library/asyncio-eventloop.rst:949 +#: library/asyncio-eventloop.rst:966 msgid "" "In general, protocol implementations that use transport-based APIs such as :" "meth:`loop.create_connection` and :meth:`loop.create_server` are faster than " @@ -1186,68 +1214,68 @@ msgid "" "socket` objects directly is more convenient." msgstr "" -#: library/asyncio-eventloop.rst:958 +#: library/asyncio-eventloop.rst:975 msgid "" "Receive up to *nbytes* from *sock*. Asynchronous version of :meth:`socket." "recv() `." msgstr "" -#: library/asyncio-eventloop.rst:961 +#: library/asyncio-eventloop.rst:978 msgid "Return the received data as a bytes object." msgstr "" -#: library/asyncio-eventloop.rst:963 library/asyncio-eventloop.rst:977 -#: library/asyncio-eventloop.rst:988 library/asyncio-eventloop.rst:1000 -#: library/asyncio-eventloop.rst:1015 library/asyncio-eventloop.rst:1030 -#: library/asyncio-eventloop.rst:1040 library/asyncio-eventloop.rst:1066 -#: library/asyncio-eventloop.rst:1104 +#: library/asyncio-eventloop.rst:980 library/asyncio-eventloop.rst:994 +#: library/asyncio-eventloop.rst:1005 library/asyncio-eventloop.rst:1017 +#: library/asyncio-eventloop.rst:1032 library/asyncio-eventloop.rst:1047 +#: library/asyncio-eventloop.rst:1057 library/asyncio-eventloop.rst:1083 +#: library/asyncio-eventloop.rst:1121 msgid "*sock* must be a non-blocking socket." msgstr "" -#: library/asyncio-eventloop.rst:965 +#: library/asyncio-eventloop.rst:982 msgid "" "Even though this method was always documented as a coroutine method, " "releases before Python 3.7 returned a :class:`Future`. Since Python 3.7 this " "is an ``async def`` method." msgstr "" -#: library/asyncio-eventloop.rst:972 +#: library/asyncio-eventloop.rst:989 msgid "" "Receive data from *sock* into the *buf* buffer. Modeled after the blocking :" "meth:`socket.recv_into() ` method." msgstr "" -#: library/asyncio-eventloop.rst:975 +#: library/asyncio-eventloop.rst:992 msgid "Return the number of bytes written to the buffer." msgstr "" -#: library/asyncio-eventloop.rst:983 +#: library/asyncio-eventloop.rst:1000 msgid "" "Receive a datagram of up to *bufsize* from *sock*. Asynchronous version of :" "meth:`socket.recvfrom() `." msgstr "" -#: library/asyncio-eventloop.rst:986 +#: library/asyncio-eventloop.rst:1003 msgid "Return a tuple of (received data, remote address)." msgstr "" -#: library/asyncio-eventloop.rst:994 +#: library/asyncio-eventloop.rst:1011 msgid "" "Receive a datagram of up to *nbytes* from *sock* into *buf*. Asynchronous " "version of :meth:`socket.recvfrom_into() `." msgstr "" -#: library/asyncio-eventloop.rst:998 +#: library/asyncio-eventloop.rst:1015 msgid "Return a tuple of (number of bytes received, remote address)." msgstr "" -#: library/asyncio-eventloop.rst:1006 +#: library/asyncio-eventloop.rst:1023 msgid "" "Send *data* to the *sock* socket. Asynchronous version of :meth:`socket." "sendall() `." msgstr "" -#: library/asyncio-eventloop.rst:1009 +#: library/asyncio-eventloop.rst:1026 msgid "" "This method continues to send to the socket until either all data in *data* " "has been sent or an error occurs. ``None`` is returned on success. On " @@ -1256,33 +1284,33 @@ msgid "" "the connection." msgstr "" -#: library/asyncio-eventloop.rst:1017 library/asyncio-eventloop.rst:1068 +#: library/asyncio-eventloop.rst:1034 library/asyncio-eventloop.rst:1085 msgid "" "Even though the method was always documented as a coroutine method, before " "Python 3.7 it returned a :class:`Future`. Since Python 3.7, this is an " "``async def`` method." msgstr "" -#: library/asyncio-eventloop.rst:1024 +#: library/asyncio-eventloop.rst:1041 msgid "" "Send a datagram from *sock* to *address*. Asynchronous version of :meth:" "`socket.sendto() `." msgstr "" -#: library/asyncio-eventloop.rst:1028 +#: library/asyncio-eventloop.rst:1045 msgid "Return the number of bytes sent." msgstr "" -#: library/asyncio-eventloop.rst:1036 +#: library/asyncio-eventloop.rst:1053 msgid "Connect *sock* to a remote socket at *address*." msgstr "" -#: library/asyncio-eventloop.rst:1038 +#: library/asyncio-eventloop.rst:1055 msgid "" "Asynchronous version of :meth:`socket.connect() `." msgstr "" -#: library/asyncio-eventloop.rst:1042 +#: library/asyncio-eventloop.rst:1059 msgid "" "``address`` no longer needs to be resolved. ``sock_connect`` will try to " "check if the *address* is already resolved by calling :func:`socket." @@ -1290,19 +1318,19 @@ msgid "" "*address*." msgstr "" -#: library/asyncio-eventloop.rst:1051 +#: library/asyncio-eventloop.rst:1068 msgid "" ":meth:`loop.create_connection` and :func:`asyncio.open_connection() " "`." msgstr "" -#: library/asyncio-eventloop.rst:1057 +#: library/asyncio-eventloop.rst:1074 msgid "" "Accept a connection. Modeled after the blocking :meth:`socket.accept() " "` method." msgstr "" -#: library/asyncio-eventloop.rst:1060 +#: library/asyncio-eventloop.rst:1077 msgid "" "The socket must be bound to an address and listening for connections. The " "return value is a pair ``(conn, address)`` where *conn* is a *new* socket " @@ -1310,57 +1338,57 @@ msgid "" "the address bound to the socket on the other end of the connection." msgstr "" -#: library/asyncio-eventloop.rst:1075 +#: library/asyncio-eventloop.rst:1092 msgid ":meth:`loop.create_server` and :func:`start_server`." msgstr "" -#: library/asyncio-eventloop.rst:1080 +#: library/asyncio-eventloop.rst:1097 msgid "" "Send a file using high-performance :mod:`os.sendfile` if possible. Return " "the total number of bytes sent." msgstr "" -#: library/asyncio-eventloop.rst:1083 +#: library/asyncio-eventloop.rst:1100 msgid "" "Asynchronous version of :meth:`socket.sendfile() `." msgstr "" -#: library/asyncio-eventloop.rst:1085 +#: library/asyncio-eventloop.rst:1102 msgid "" "*sock* must be a non-blocking :const:`socket.SOCK_STREAM` :class:`~socket." "socket`." msgstr "" -#: library/asyncio-eventloop.rst:1088 +#: library/asyncio-eventloop.rst:1105 msgid "*file* must be a regular file object open in binary mode." msgstr "" -#: library/asyncio-eventloop.rst:1097 +#: library/asyncio-eventloop.rst:1114 msgid "" "*fallback*, when set to ``True``, makes asyncio manually read and send the " "file when the platform does not support the sendfile syscall (e.g. Windows " "or SSL socket on Unix)." msgstr "" -#: library/asyncio-eventloop.rst:1101 +#: library/asyncio-eventloop.rst:1118 msgid "" "Raise :exc:`SendfileNotAvailableError` if the system does not support " "*sendfile* syscall and *fallback* is ``False``." msgstr "" -#: library/asyncio-eventloop.rst:1110 +#: library/asyncio-eventloop.rst:1127 msgid "DNS" msgstr "" -#: library/asyncio-eventloop.rst:1115 +#: library/asyncio-eventloop.rst:1132 msgid "Asynchronous version of :meth:`socket.getaddrinfo`." msgstr "" -#: library/asyncio-eventloop.rst:1119 +#: library/asyncio-eventloop.rst:1136 msgid "Asynchronous version of :meth:`socket.getnameinfo`." msgstr "" -#: library/asyncio-eventloop.rst:1121 +#: library/asyncio-eventloop.rst:1138 msgid "" "Both *getaddrinfo* and *getnameinfo* methods were always documented to " "return a coroutine, but prior to Python 3.7 they were, in fact, returning :" @@ -1368,66 +1396,66 @@ msgid "" "coroutines." msgstr "" -#: library/asyncio-eventloop.rst:1129 +#: library/asyncio-eventloop.rst:1146 msgid "Working with pipes" msgstr "" -#: library/asyncio-eventloop.rst:1133 +#: library/asyncio-eventloop.rst:1150 msgid "Register the read end of *pipe* in the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1138 +#: library/asyncio-eventloop.rst:1155 msgid "*pipe* is a :term:`file-like object `." msgstr "" -#: library/asyncio-eventloop.rst:1140 +#: library/asyncio-eventloop.rst:1157 msgid "" "Return pair ``(transport, protocol)``, where *transport* supports the :class:" "`ReadTransport` interface and *protocol* is an object instantiated by the " "*protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1144 library/asyncio-eventloop.rst:1160 +#: library/asyncio-eventloop.rst:1161 library/asyncio-eventloop.rst:1177 msgid "" "With :class:`SelectorEventLoop` event loop, the *pipe* is set to non-" "blocking mode." msgstr "" -#: library/asyncio-eventloop.rst:1149 +#: library/asyncio-eventloop.rst:1166 msgid "Register the write end of *pipe* in the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1154 +#: library/asyncio-eventloop.rst:1171 msgid "*pipe* is :term:`file-like object `." msgstr "" -#: library/asyncio-eventloop.rst:1156 +#: library/asyncio-eventloop.rst:1173 msgid "" "Return pair ``(transport, protocol)``, where *transport* supports :class:" "`WriteTransport` interface and *protocol* is an object instantiated by the " "*protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1165 +#: library/asyncio-eventloop.rst:1182 msgid "" ":class:`SelectorEventLoop` does not support the above methods on Windows. " "Use :class:`ProactorEventLoop` instead for Windows." msgstr "" -#: library/asyncio-eventloop.rst:1170 +#: library/asyncio-eventloop.rst:1187 msgid "" "The :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods." msgstr "" -#: library/asyncio-eventloop.rst:1175 +#: library/asyncio-eventloop.rst:1192 msgid "Unix signals" msgstr "" -#: library/asyncio-eventloop.rst:1179 +#: library/asyncio-eventloop.rst:1196 msgid "Set *callback* as the handler for the *signum* signal." msgstr "" -#: library/asyncio-eventloop.rst:1181 +#: library/asyncio-eventloop.rst:1198 msgid "" "The callback will be invoked by *loop*, along with other queued callbacks " "and runnable coroutines of that event loop. Unlike signal handlers " @@ -1435,46 +1463,46 @@ msgid "" "function is allowed to interact with the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1186 +#: library/asyncio-eventloop.rst:1203 msgid "" "Raise :exc:`ValueError` if the signal number is invalid or uncatchable. " "Raise :exc:`RuntimeError` if there is a problem setting up the handler." msgstr "" -#: library/asyncio-eventloop.rst:1192 +#: library/asyncio-eventloop.rst:1209 msgid "" "Like :func:`signal.signal`, this function must be invoked in the main thread." msgstr "" -#: library/asyncio-eventloop.rst:1197 +#: library/asyncio-eventloop.rst:1214 msgid "Remove the handler for the *sig* signal." msgstr "" -#: library/asyncio-eventloop.rst:1199 +#: library/asyncio-eventloop.rst:1216 msgid "" "Return ``True`` if the signal handler was removed, or ``False`` if no " "handler was set for the given signal." msgstr "" -#: library/asyncio-eventloop.rst:1206 +#: library/asyncio-eventloop.rst:1223 msgid "The :mod:`signal` module." msgstr "" -#: library/asyncio-eventloop.rst:1210 +#: library/asyncio-eventloop.rst:1227 msgid "Executing code in thread or process pools" msgstr "" -#: library/asyncio-eventloop.rst:1214 +#: library/asyncio-eventloop.rst:1231 msgid "Arrange for *func* to be called in the specified executor." msgstr "" -#: library/asyncio-eventloop.rst:1216 +#: library/asyncio-eventloop.rst:1233 msgid "" "The *executor* argument should be an :class:`concurrent.futures.Executor` " "instance. The default executor is used if *executor* is ``None``." msgstr "" -#: library/asyncio-eventloop.rst:1261 +#: library/asyncio-eventloop.rst:1278 msgid "" "Note that the entry point guard (``if __name__ == '__main__'``) is required " "for option 3 due to the peculiarities of :mod:`multiprocessing`, which is " @@ -1482,17 +1510,17 @@ msgid "" "importing of main module `." msgstr "" -#: library/asyncio-eventloop.rst:1266 +#: library/asyncio-eventloop.rst:1283 msgid "This method returns a :class:`asyncio.Future` object." msgstr "" -#: library/asyncio-eventloop.rst:1268 +#: library/asyncio-eventloop.rst:1285 msgid "" "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *func*." msgstr "" -#: library/asyncio-eventloop.rst:1271 +#: library/asyncio-eventloop.rst:1288 msgid "" ":meth:`loop.run_in_executor` no longer configures the ``max_workers`` of the " "thread pool executor it creates, instead leaving it up to the thread pool " @@ -1500,32 +1528,32 @@ msgid "" "default." msgstr "" -#: library/asyncio-eventloop.rst:1280 +#: library/asyncio-eventloop.rst:1297 msgid "" "Set *executor* as the default executor used by :meth:`run_in_executor`. " "*executor* must be an instance of :class:`~concurrent.futures." "ThreadPoolExecutor`." msgstr "" -#: library/asyncio-eventloop.rst:1284 +#: library/asyncio-eventloop.rst:1301 msgid "" "*executor* must be an instance of :class:`~concurrent.futures." "ThreadPoolExecutor`." msgstr "" -#: library/asyncio-eventloop.rst:1290 +#: library/asyncio-eventloop.rst:1307 msgid "Error Handling API" msgstr "" -#: library/asyncio-eventloop.rst:1292 +#: library/asyncio-eventloop.rst:1309 msgid "Allows customizing how exceptions are handled in the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1296 +#: library/asyncio-eventloop.rst:1313 msgid "Set *handler* as the new event loop exception handler." msgstr "" -#: library/asyncio-eventloop.rst:1298 +#: library/asyncio-eventloop.rst:1315 msgid "" "If *handler* is ``None``, the default exception handler will be set. " "Otherwise, *handler* must be a callable with the signature matching ``(loop, " @@ -1534,158 +1562,171 @@ msgid "" "(see :meth:`call_exception_handler` documentation for details about context)." msgstr "" -#: library/asyncio-eventloop.rst:1308 +#: library/asyncio-eventloop.rst:1323 +msgid "" +"If the handler is called on behalf of a :class:`~asyncio.Task` or :class:" +"`~asyncio.Handle`, it is run in the :class:`contextvars.Context` of that " +"task or callback handle." +msgstr "" + +#: library/asyncio-eventloop.rst:1329 +msgid "" +"The handler may be called in the :class:`~contextvars.Context` of the task " +"or handle where the exception originated." +msgstr "" + +#: library/asyncio-eventloop.rst:1334 msgid "" "Return the current exception handler, or ``None`` if no custom exception " "handler was set." msgstr "" -#: library/asyncio-eventloop.rst:1315 +#: library/asyncio-eventloop.rst:1341 msgid "Default exception handler." msgstr "" -#: library/asyncio-eventloop.rst:1317 +#: library/asyncio-eventloop.rst:1343 msgid "" "This is called when an exception occurs and no exception handler is set. " "This can be called by a custom exception handler that wants to defer to the " "default handler behavior." msgstr "" -#: library/asyncio-eventloop.rst:1321 +#: library/asyncio-eventloop.rst:1347 msgid "" "*context* parameter has the same meaning as in :meth:" "`call_exception_handler`." msgstr "" -#: library/asyncio-eventloop.rst:1326 +#: library/asyncio-eventloop.rst:1352 msgid "Call the current event loop exception handler." msgstr "" -#: library/asyncio-eventloop.rst:1328 +#: library/asyncio-eventloop.rst:1354 msgid "" "*context* is a ``dict`` object containing the following keys (new keys may " "be introduced in future Python versions):" msgstr "" -#: library/asyncio-eventloop.rst:1331 +#: library/asyncio-eventloop.rst:1357 msgid "'message': Error message;" msgstr "" -#: library/asyncio-eventloop.rst:1332 +#: library/asyncio-eventloop.rst:1358 msgid "'exception' (optional): Exception object;" msgstr "" -#: library/asyncio-eventloop.rst:1333 +#: library/asyncio-eventloop.rst:1359 msgid "'future' (optional): :class:`asyncio.Future` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1334 +#: library/asyncio-eventloop.rst:1360 msgid "'task' (optional): :class:`asyncio.Task` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1335 +#: library/asyncio-eventloop.rst:1361 msgid "'handle' (optional): :class:`asyncio.Handle` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1336 +#: library/asyncio-eventloop.rst:1362 msgid "'protocol' (optional): :ref:`Protocol ` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1337 +#: library/asyncio-eventloop.rst:1363 msgid "'transport' (optional): :ref:`Transport ` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1338 +#: library/asyncio-eventloop.rst:1364 msgid "'socket' (optional): :class:`socket.socket` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1340 +#: library/asyncio-eventloop.rst:1366 msgid "'asyncgen' (optional): Asynchronous generator that caused" msgstr "" -#: library/asyncio-eventloop.rst:1340 +#: library/asyncio-eventloop.rst:1366 msgid "the exception." msgstr "" -#: library/asyncio-eventloop.rst:1344 +#: library/asyncio-eventloop.rst:1370 msgid "" "This method should not be overloaded in subclassed event loops. For custom " "exception handling, use the :meth:`set_exception_handler()` method." msgstr "" -#: library/asyncio-eventloop.rst:1349 +#: library/asyncio-eventloop.rst:1375 msgid "Enabling debug mode" msgstr "" -#: library/asyncio-eventloop.rst:1353 +#: library/asyncio-eventloop.rst:1379 msgid "Get the debug mode (:class:`bool`) of the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1355 +#: library/asyncio-eventloop.rst:1381 msgid "" "The default value is ``True`` if the environment variable :envvar:" "`PYTHONASYNCIODEBUG` is set to a non-empty string, ``False`` otherwise." msgstr "" -#: library/asyncio-eventloop.rst:1361 +#: library/asyncio-eventloop.rst:1387 msgid "Set the debug mode of the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1365 +#: library/asyncio-eventloop.rst:1391 msgid "" "The new :ref:`Python Development Mode ` can now also be used to " "enable the debug mode." msgstr "" -#: library/asyncio-eventloop.rst:1370 +#: library/asyncio-eventloop.rst:1396 msgid "The :ref:`debug mode of asyncio `." msgstr "" -#: library/asyncio-eventloop.rst:1374 +#: library/asyncio-eventloop.rst:1400 msgid "Running Subprocesses" msgstr "" -#: library/asyncio-eventloop.rst:1376 +#: library/asyncio-eventloop.rst:1402 msgid "" "Methods described in this subsections are low-level. In regular async/await " "code consider using the high-level :func:`asyncio.create_subprocess_shell` " "and :func:`asyncio.create_subprocess_exec` convenience functions instead." msgstr "" -#: library/asyncio-eventloop.rst:1383 +#: library/asyncio-eventloop.rst:1409 msgid "" "On Windows, the default event loop :class:`ProactorEventLoop` supports " "subprocesses, whereas :class:`SelectorEventLoop` does not. See :ref:" "`Subprocess Support on Windows ` for details." msgstr "" -#: library/asyncio-eventloop.rst:1392 +#: library/asyncio-eventloop.rst:1418 msgid "" "Create a subprocess from one or more string arguments specified by *args*." msgstr "" -#: library/asyncio-eventloop.rst:1395 +#: library/asyncio-eventloop.rst:1421 msgid "*args* must be a list of strings represented by:" msgstr "" -#: library/asyncio-eventloop.rst:1397 +#: library/asyncio-eventloop.rst:1423 msgid ":class:`str`;" msgstr "" -#: library/asyncio-eventloop.rst:1398 +#: library/asyncio-eventloop.rst:1424 msgid "" "or :class:`bytes`, encoded to the :ref:`filesystem encoding `." msgstr "" -#: library/asyncio-eventloop.rst:1401 +#: library/asyncio-eventloop.rst:1427 msgid "" "The first string specifies the program executable, and the remaining strings " "specify the arguments. Together, string arguments form the ``argv`` of the " "program." msgstr "" -#: library/asyncio-eventloop.rst:1405 +#: library/asyncio-eventloop.rst:1431 msgid "" "This is similar to the standard library :class:`subprocess.Popen` class " "called with ``shell=False`` and the list of strings passed as the first " @@ -1693,133 +1734,134 @@ msgid "" "which is list of strings, *subprocess_exec* takes multiple string arguments." msgstr "" -#: library/asyncio-eventloop.rst:1411 +#: library/asyncio-eventloop.rst:1437 msgid "" "The *protocol_factory* must be a callable returning a subclass of the :class:" "`asyncio.SubprocessProtocol` class." msgstr "" -#: library/asyncio-eventloop.rst:1414 +#: library/asyncio-eventloop.rst:1440 msgid "Other parameters:" msgstr "" -#: library/asyncio-eventloop.rst:1416 +#: library/asyncio-eventloop.rst:1442 msgid "*stdin* can be any of these:" msgstr "" -#: library/asyncio-eventloop.rst:1418 -msgid "" -"a file-like object representing a pipe to be connected to the subprocess's " -"standard input stream using :meth:`~loop.connect_write_pipe`" +#: library/asyncio-eventloop.rst:1444 library/asyncio-eventloop.rst:1455 +#: library/asyncio-eventloop.rst:1465 +msgid "a file-like object" msgstr "" -#: library/asyncio-eventloop.rst:1421 library/asyncio-eventloop.rst:1433 #: library/asyncio-eventloop.rst:1445 msgid "" +"an existing file descriptor (a positive integer), for example those created " +"with :meth:`os.pipe()`" +msgstr "" + +#: library/asyncio-eventloop.rst:1446 library/asyncio-eventloop.rst:1456 +#: library/asyncio-eventloop.rst:1466 +msgid "" "the :const:`subprocess.PIPE` constant (default) which will create a new pipe " "and connect it," msgstr "" -#: library/asyncio-eventloop.rst:1423 library/asyncio-eventloop.rst:1435 -#: library/asyncio-eventloop.rst:1447 +#: library/asyncio-eventloop.rst:1448 library/asyncio-eventloop.rst:1458 +#: library/asyncio-eventloop.rst:1468 msgid "" "the value ``None`` which will make the subprocess inherit the file " "descriptor from this process" msgstr "" -#: library/asyncio-eventloop.rst:1425 library/asyncio-eventloop.rst:1437 -#: library/asyncio-eventloop.rst:1449 +#: library/asyncio-eventloop.rst:1450 library/asyncio-eventloop.rst:1460 +#: library/asyncio-eventloop.rst:1470 msgid "" "the :const:`subprocess.DEVNULL` constant which indicates that the special :" "data:`os.devnull` file will be used" msgstr "" -#: library/asyncio-eventloop.rst:1428 +#: library/asyncio-eventloop.rst:1453 msgid "*stdout* can be any of these:" msgstr "" -#: library/asyncio-eventloop.rst:1430 -msgid "" -"a file-like object representing a pipe to be connected to the subprocess's " -"standard output stream using :meth:`~loop.connect_write_pipe`" -msgstr "" - -#: library/asyncio-eventloop.rst:1440 +#: library/asyncio-eventloop.rst:1463 msgid "*stderr* can be any of these:" msgstr "" -#: library/asyncio-eventloop.rst:1442 -msgid "" -"a file-like object representing a pipe to be connected to the subprocess's " -"standard error stream using :meth:`~loop.connect_write_pipe`" -msgstr "" - -#: library/asyncio-eventloop.rst:1451 +#: library/asyncio-eventloop.rst:1472 msgid "" "the :const:`subprocess.STDOUT` constant which will connect the standard " "error stream to the process' standard output stream" msgstr "" -#: library/asyncio-eventloop.rst:1454 +#: library/asyncio-eventloop.rst:1475 msgid "" "All other keyword arguments are passed to :class:`subprocess.Popen` without " "interpretation, except for *bufsize*, *universal_newlines*, *shell*, *text*, " "*encoding* and *errors*, which should not be specified at all." msgstr "" -#: library/asyncio-eventloop.rst:1459 +#: library/asyncio-eventloop.rst:1480 msgid "" "The ``asyncio`` subprocess API does not support decoding the streams as " "text. :func:`bytes.decode` can be used to convert the bytes returned from " "the stream to text." msgstr "" -#: library/asyncio-eventloop.rst:1463 +#: library/asyncio-eventloop.rst:1484 +msgid "" +"If a file-like object passed as *stdin*, *stdout* or *stderr* represents a " +"pipe, then the other side of this pipe should be registered with :meth:" +"`~loop.connect_write_pipe` or :meth:`~loop.connect_read_pipe` for use with " +"the event loop." +msgstr "" + +#: library/asyncio-eventloop.rst:1489 msgid "" "See the constructor of the :class:`subprocess.Popen` class for documentation " "on other arguments." msgstr "" -#: library/asyncio-eventloop.rst:1466 +#: library/asyncio-eventloop.rst:1492 msgid "" "Returns a pair of ``(transport, protocol)``, where *transport* conforms to " "the :class:`asyncio.SubprocessTransport` base class and *protocol* is an " "object instantiated by the *protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1474 +#: library/asyncio-eventloop.rst:1500 msgid "" "Create a subprocess from *cmd*, which can be a :class:`str` or a :class:" "`bytes` string encoded to the :ref:`filesystem encoding `, using the platform's \"shell\" syntax." msgstr "" -#: library/asyncio-eventloop.rst:1479 +#: library/asyncio-eventloop.rst:1505 msgid "" "This is similar to the standard library :class:`subprocess.Popen` class " "called with ``shell=True``." msgstr "" -#: library/asyncio-eventloop.rst:1482 +#: library/asyncio-eventloop.rst:1508 msgid "" "The *protocol_factory* must be a callable returning a subclass of the :class:" "`SubprocessProtocol` class." msgstr "" -#: library/asyncio-eventloop.rst:1485 +#: library/asyncio-eventloop.rst:1511 msgid "" "See :meth:`~loop.subprocess_exec` for more details about the remaining " "arguments." msgstr "" -#: library/asyncio-eventloop.rst:1488 +#: library/asyncio-eventloop.rst:1514 msgid "" "Returns a pair of ``(transport, protocol)``, where *transport* conforms to " "the :class:`SubprocessTransport` base class and *protocol* is an object " "instantiated by the *protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1493 +#: library/asyncio-eventloop.rst:1519 msgid "" "It is the application's responsibility to ensure that all whitespace and " "special characters are quoted appropriately to avoid `shell injection " @@ -1829,111 +1871,116 @@ msgid "" "used to construct shell commands." msgstr "" -#: library/asyncio-eventloop.rst:1502 +#: library/asyncio-eventloop.rst:1528 msgid "Callback Handles" msgstr "" -#: library/asyncio-eventloop.rst:1506 +#: library/asyncio-eventloop.rst:1532 msgid "" "A callback wrapper object returned by :meth:`loop.call_soon`, :meth:`loop." "call_soon_threadsafe`." msgstr "" -#: library/asyncio-eventloop.rst:1511 +#: library/asyncio-eventloop.rst:1537 +msgid "" +"Return the :class:`contextvars.Context` object associated with the handle." +msgstr "" + +#: library/asyncio-eventloop.rst:1544 msgid "" "Cancel the callback. If the callback has already been canceled or executed, " "this method has no effect." msgstr "" -#: library/asyncio-eventloop.rst:1516 +#: library/asyncio-eventloop.rst:1549 msgid "Return ``True`` if the callback was cancelled." msgstr "" -#: library/asyncio-eventloop.rst:1522 +#: library/asyncio-eventloop.rst:1555 msgid "" "A callback wrapper object returned by :meth:`loop.call_later`, and :meth:" "`loop.call_at`." msgstr "" -#: library/asyncio-eventloop.rst:1525 +#: library/asyncio-eventloop.rst:1558 msgid "This class is a subclass of :class:`Handle`." msgstr "" -#: library/asyncio-eventloop.rst:1529 +#: library/asyncio-eventloop.rst:1562 msgid "Return a scheduled callback time as :class:`float` seconds." msgstr "" -#: library/asyncio-eventloop.rst:1531 +#: library/asyncio-eventloop.rst:1564 msgid "" "The time is an absolute timestamp, using the same time reference as :meth:" "`loop.time`." msgstr "" -#: library/asyncio-eventloop.rst:1538 +#: library/asyncio-eventloop.rst:1571 msgid "Server Objects" msgstr "" -#: library/asyncio-eventloop.rst:1540 +#: library/asyncio-eventloop.rst:1573 msgid "" "Server objects are created by :meth:`loop.create_server`, :meth:`loop." "create_unix_server`, :func:`start_server`, and :func:`start_unix_server` " "functions." msgstr "" -#: library/asyncio-eventloop.rst:1544 +#: library/asyncio-eventloop.rst:1577 msgid "Do not instantiate the :class:`Server` class directly." msgstr "" -#: library/asyncio-eventloop.rst:1548 +#: library/asyncio-eventloop.rst:1581 msgid "" "*Server* objects are asynchronous context managers. When used in an ``async " "with`` statement, it's guaranteed that the Server object is closed and not " "accepting new connections when the ``async with`` statement is completed::" msgstr "" -#: library/asyncio-eventloop.rst:1561 +#: library/asyncio-eventloop.rst:1594 msgid "Server object is an asynchronous context manager since Python 3.7." msgstr "" -#: library/asyncio-eventloop.rst:1564 +#: library/asyncio-eventloop.rst:1597 msgid "" "This class was exposed publicly as ``asyncio.Server`` in Python 3.9.11, " "3.10.3 and 3.11." msgstr "" -#: library/asyncio-eventloop.rst:1569 +#: library/asyncio-eventloop.rst:1602 msgid "" "Stop serving: close listening sockets and set the :attr:`sockets` attribute " "to ``None``." msgstr "" -#: library/asyncio-eventloop.rst:1572 +#: library/asyncio-eventloop.rst:1605 msgid "" "The sockets that represent existing incoming client connections are left " "open." msgstr "" -#: library/asyncio-eventloop.rst:1575 +#: library/asyncio-eventloop.rst:1608 msgid "" "The server is closed asynchronously, use the :meth:`wait_closed` coroutine " "to wait until the server is closed." msgstr "" -#: library/asyncio-eventloop.rst:1580 +#: library/asyncio-eventloop.rst:1613 msgid "Return the event loop associated with the server object." msgstr "" -#: library/asyncio-eventloop.rst:1586 +#: library/asyncio-eventloop.rst:1619 msgid "Start accepting connections." msgstr "" -#: library/asyncio-eventloop.rst:1588 +#: library/asyncio-eventloop.rst:1621 msgid "" "This method is idempotent, so it can be called when the server is already " "serving." msgstr "" -#: library/asyncio-eventloop.rst:1591 +#: library/asyncio-eventloop.rst:1624 msgid "" "The *start_serving* keyword-only parameter to :meth:`loop.create_server` " "and :meth:`asyncio.start_server` allows creating a Server object that is not " @@ -1942,98 +1989,98 @@ msgid "" "accepting connections." msgstr "" -#: library/asyncio-eventloop.rst:1602 +#: library/asyncio-eventloop.rst:1635 msgid "" "Start accepting connections until the coroutine is cancelled. Cancellation " "of ``serve_forever`` task causes the server to be closed." msgstr "" -#: library/asyncio-eventloop.rst:1606 +#: library/asyncio-eventloop.rst:1639 msgid "" "This method can be called if the server is already accepting connections. " "Only one ``serve_forever`` task can exist per one *Server* object." msgstr "" -#: library/asyncio-eventloop.rst:1628 +#: library/asyncio-eventloop.rst:1661 msgid "Return ``True`` if the server is accepting new connections." msgstr "" -#: library/asyncio-eventloop.rst:1634 +#: library/asyncio-eventloop.rst:1667 msgid "Wait until the :meth:`close` method completes." msgstr "" -#: library/asyncio-eventloop.rst:1638 +#: library/asyncio-eventloop.rst:1671 msgid "" "List of socket-like objects, ``asyncio.trsock.TransportSocket``, which the " "server is listening on." msgstr "" -#: library/asyncio-eventloop.rst:1641 +#: library/asyncio-eventloop.rst:1674 msgid "" "Prior to Python 3.7 ``Server.sockets`` used to return an internal list of " "server sockets directly. In 3.7 a copy of that list is returned." msgstr "" -#: library/asyncio-eventloop.rst:1651 +#: library/asyncio-eventloop.rst:1684 msgid "Event Loop Implementations" msgstr "" -#: library/asyncio-eventloop.rst:1653 +#: library/asyncio-eventloop.rst:1686 msgid "" "asyncio ships with two different event loop implementations: :class:" "`SelectorEventLoop` and :class:`ProactorEventLoop`." msgstr "" -#: library/asyncio-eventloop.rst:1656 +#: library/asyncio-eventloop.rst:1689 msgid "" "By default asyncio is configured to use :class:`SelectorEventLoop` on Unix " "and :class:`ProactorEventLoop` on Windows." msgstr "" -#: library/asyncio-eventloop.rst:1662 +#: library/asyncio-eventloop.rst:1695 msgid "An event loop based on the :mod:`selectors` module." msgstr "" -#: library/asyncio-eventloop.rst:1664 +#: library/asyncio-eventloop.rst:1697 msgid "" "Uses the most efficient *selector* available for the given platform. It is " "also possible to manually configure the exact selector implementation to be " "used::" msgstr "" -#: library/asyncio-eventloop.rst:1679 +#: library/asyncio-eventloop.rst:1712 msgid ":ref:`Availability `: Unix, Windows." msgstr "" -#: library/asyncio-eventloop.rst:1684 +#: library/asyncio-eventloop.rst:1717 msgid "An event loop for Windows that uses \"I/O Completion Ports\" (IOCP)." msgstr "" -#: library/asyncio-eventloop.rst:1686 +#: library/asyncio-eventloop.rst:1719 msgid ":ref:`Availability `: Windows." msgstr "" -#: library/asyncio-eventloop.rst:1690 +#: library/asyncio-eventloop.rst:1723 msgid "" "`MSDN documentation on I/O Completion Ports `_." msgstr "" -#: library/asyncio-eventloop.rst:1696 +#: library/asyncio-eventloop.rst:1729 msgid "Abstract base class for asyncio-compliant event loops." msgstr "" -#: library/asyncio-eventloop.rst:1698 +#: library/asyncio-eventloop.rst:1731 msgid "" "The :ref:`asyncio-event-loop-methods` section lists all methods that an " "alternative implementation of ``AbstractEventLoop`` should have defined." msgstr "" -#: library/asyncio-eventloop.rst:1704 +#: library/asyncio-eventloop.rst:1737 msgid "Examples" msgstr "" -#: library/asyncio-eventloop.rst:1706 +#: library/asyncio-eventloop.rst:1739 msgid "" "Note that all examples in this section **purposefully** show how to use the " "low-level event loop APIs, such as :meth:`loop.run_forever` and :meth:`loop." @@ -2041,70 +2088,70 @@ msgid "" "consider using the high-level functions like :func:`asyncio.run`." msgstr "" -#: library/asyncio-eventloop.rst:1716 +#: library/asyncio-eventloop.rst:1749 msgid "Hello World with call_soon()" msgstr "" -#: library/asyncio-eventloop.rst:1718 +#: library/asyncio-eventloop.rst:1751 msgid "" "An example using the :meth:`loop.call_soon` method to schedule a callback. " "The callback displays ``\"Hello World\"`` and then stops the event loop::" msgstr "" -#: library/asyncio-eventloop.rst:1742 +#: library/asyncio-eventloop.rst:1775 msgid "" "A similar :ref:`Hello World ` example created with a coroutine " "and the :func:`run` function." msgstr "" -#: library/asyncio-eventloop.rst:1749 +#: library/asyncio-eventloop.rst:1782 msgid "Display the current date with call_later()" msgstr "" -#: library/asyncio-eventloop.rst:1751 +#: library/asyncio-eventloop.rst:1784 msgid "" "An example of a callback displaying the current date every second. The " "callback uses the :meth:`loop.call_later` method to reschedule itself after " "5 seconds, and then stops the event loop::" msgstr "" -#: library/asyncio-eventloop.rst:1779 +#: library/asyncio-eventloop.rst:1812 msgid "" "A similar :ref:`current date ` example created with a " "coroutine and the :func:`run` function." msgstr "" -#: library/asyncio-eventloop.rst:1786 +#: library/asyncio-eventloop.rst:1819 msgid "Watch a file descriptor for read events" msgstr "" -#: library/asyncio-eventloop.rst:1788 +#: library/asyncio-eventloop.rst:1821 msgid "" "Wait until a file descriptor received some data using the :meth:`loop." "add_reader` method and then close the event loop::" msgstr "" -#: library/asyncio-eventloop.rst:1826 +#: library/asyncio-eventloop.rst:1859 msgid "" "A similar :ref:`example ` using " "transports, protocols, and the :meth:`loop.create_connection` method." msgstr "" -#: library/asyncio-eventloop.rst:1830 +#: library/asyncio-eventloop.rst:1863 msgid "" "Another similar :ref:`example ` " "using the high-level :func:`asyncio.open_connection` function and streams." msgstr "" -#: library/asyncio-eventloop.rst:1838 +#: library/asyncio-eventloop.rst:1871 msgid "Set signal handlers for SIGINT and SIGTERM" msgstr "" -#: library/asyncio-eventloop.rst:1840 +#: library/asyncio-eventloop.rst:1873 msgid "(This ``signals`` example only works on Unix.)" msgstr "" -#: library/asyncio-eventloop.rst:1842 +#: library/asyncio-eventloop.rst:1875 msgid "" "Register handlers for signals :py:data:`SIGINT` and :py:data:`SIGTERM` using " "the :meth:`loop.add_signal_handler` method::" diff --git a/library/asyncio-policy.po b/library/asyncio-policy.po index 208d2c246..da3e9882f 100644 --- a/library/asyncio-policy.po +++ b/library/asyncio-policy.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -115,76 +115,76 @@ msgid "" "interface." msgstr "" -#: library/asyncio-policy.rst:95 +#: library/asyncio-policy.rst:97 msgid "This function is Unix specific." msgstr "" -#: library/asyncio-policy.rst:93 +#: library/asyncio-policy.rst:95 msgid "Set the current child process watcher to *watcher*." msgstr "" -#: library/asyncio-policy.rst:100 +#: library/asyncio-policy.rst:104 msgid "asyncio ships with the following built-in policies:" msgstr "" -#: library/asyncio-policy.rst:105 +#: library/asyncio-policy.rst:109 msgid "" "The default asyncio policy. Uses :class:`SelectorEventLoop` on Unix and :" "class:`ProactorEventLoop` on Windows." msgstr "" -#: library/asyncio-policy.rst:108 +#: library/asyncio-policy.rst:112 msgid "" "There is no need to install the default policy manually. asyncio is " "configured to use the default policy automatically." msgstr "" -#: library/asyncio-policy.rst:113 +#: library/asyncio-policy.rst:117 msgid "On Windows, :class:`ProactorEventLoop` is now used by default." msgstr "" -#: library/asyncio-policy.rst:116 +#: library/asyncio-policy.rst:119 msgid "" -"In Python versions 3.10.9, 3.11.1 and 3.12 the :meth:`get_event_loop` method " -"of the default asyncio policy emits a :exc:`DeprecationWarning` if there is " -"no running event loop and no current loop is set. In some future Python " -"release this will become an error." +"The :meth:`get_event_loop` method of the default asyncio policy now emits a :" +"exc:`DeprecationWarning` if there is no current event loop set and it " +"decides to create one. In some future Python release this will become an " +"error." msgstr "" -#: library/asyncio-policy.rst:124 +#: library/asyncio-policy.rst:128 msgid "" "An alternative event loop policy that uses the :class:`SelectorEventLoop` " "event loop implementation." msgstr "" -#: library/asyncio-policy.rst:135 +#: library/asyncio-policy.rst:139 msgid ":ref:`Availability `: Windows." msgstr "" -#: library/asyncio-policy.rst:132 +#: library/asyncio-policy.rst:136 msgid "" "An alternative event loop policy that uses the :class:`ProactorEventLoop` " "event loop implementation." msgstr "" -#: library/asyncio-policy.rst:141 +#: library/asyncio-policy.rst:145 msgid "Process Watchers" msgstr "" -#: library/asyncio-policy.rst:143 +#: library/asyncio-policy.rst:147 msgid "" "A process watcher allows customization of how an event loop monitors child " "processes on Unix. Specifically, the event loop needs to know when a child " "process has exited." msgstr "" -#: library/asyncio-policy.rst:147 +#: library/asyncio-policy.rst:151 msgid "" "In asyncio, child processes are created with :func:`create_subprocess_exec` " "and :meth:`loop.subprocess_exec` functions." msgstr "" -#: library/asyncio-policy.rst:151 +#: library/asyncio-policy.rst:155 msgid "" "asyncio defines the :class:`AbstractChildWatcher` abstract base class, which " "child watchers should implement, and has four different implementations: :" @@ -193,176 +193,176 @@ msgid "" "`FastChildWatcher`." msgstr "" -#: library/asyncio-policy.rst:157 +#: library/asyncio-policy.rst:161 msgid "" "See also the :ref:`Subprocess and Threads ` " "section." msgstr "" -#: library/asyncio-policy.rst:160 +#: library/asyncio-policy.rst:164 msgid "" "The following two functions can be used to customize the child process " "watcher implementation used by the asyncio event loop:" msgstr "" -#: library/asyncio-policy.rst:165 +#: library/asyncio-policy.rst:169 msgid "Return the current child watcher for the current policy." msgstr "" -#: library/asyncio-policy.rst:169 +#: library/asyncio-policy.rst:175 msgid "" "Set the current child watcher to *watcher* for the current policy. " "*watcher* must implement methods defined in the :class:" "`AbstractChildWatcher` base class." msgstr "" -#: library/asyncio-policy.rst:174 +#: library/asyncio-policy.rst:182 msgid "" "Third-party event loops implementations might not support custom child " "watchers. For such event loops, using :func:`set_child_watcher` might be " "prohibited or have no effect." msgstr "" -#: library/asyncio-policy.rst:182 +#: library/asyncio-policy.rst:190 msgid "Register a new child handler." msgstr "" -#: library/asyncio-policy.rst:184 +#: library/asyncio-policy.rst:192 msgid "" "Arrange for ``callback(pid, returncode, *args)`` to be called when a process " "with PID equal to *pid* terminates. Specifying another callback for the " "same process replaces the previous handler." msgstr "" -#: library/asyncio-policy.rst:189 +#: library/asyncio-policy.rst:197 msgid "The *callback* callable must be thread-safe." msgstr "" -#: library/asyncio-policy.rst:193 +#: library/asyncio-policy.rst:201 msgid "Removes the handler for process with PID equal to *pid*." msgstr "" -#: library/asyncio-policy.rst:195 +#: library/asyncio-policy.rst:203 msgid "" "The function returns ``True`` if the handler was successfully removed, " "``False`` if there was nothing to remove." msgstr "" -#: library/asyncio-policy.rst:200 +#: library/asyncio-policy.rst:208 msgid "Attach the watcher to an event loop." msgstr "" -#: library/asyncio-policy.rst:202 +#: library/asyncio-policy.rst:210 msgid "" "If the watcher was previously attached to an event loop, then it is first " "detached before attaching to the new loop." msgstr "" -#: library/asyncio-policy.rst:205 +#: library/asyncio-policy.rst:213 msgid "Note: loop may be ``None``." msgstr "" -#: library/asyncio-policy.rst:209 +#: library/asyncio-policy.rst:217 msgid "Return ``True`` if the watcher is ready to use." msgstr "" -#: library/asyncio-policy.rst:211 +#: library/asyncio-policy.rst:219 msgid "" "Spawning a subprocess with *inactive* current child watcher raises :exc:" "`RuntimeError`." msgstr "" -#: library/asyncio-policy.rst:218 +#: library/asyncio-policy.rst:226 msgid "Close the watcher." msgstr "" -#: library/asyncio-policy.rst:220 +#: library/asyncio-policy.rst:228 msgid "" "This method has to be called to ensure that underlying resources are cleaned-" "up." msgstr "" -#: library/asyncio-policy.rst:225 +#: library/asyncio-policy.rst:236 msgid "" "This implementation starts a new waiting thread for every subprocess spawn." msgstr "" -#: library/asyncio-policy.rst:227 +#: library/asyncio-policy.rst:238 msgid "" "It works reliably even when the asyncio event loop is run in a non-main OS " "thread." msgstr "" -#: library/asyncio-policy.rst:229 +#: library/asyncio-policy.rst:240 msgid "" "There is no noticeable overhead when handling a big number of children " "(*O(1)* each time a child terminates), but starting a thread per process " "requires extra memory." msgstr "" -#: library/asyncio-policy.rst:232 +#: library/asyncio-policy.rst:243 msgid "This watcher is used by default." msgstr "" -#: library/asyncio-policy.rst:238 +#: library/asyncio-policy.rst:249 msgid "" "This implementation registers a :py:data:`SIGCHLD` signal handler on " "instantiation. That can break third-party code that installs a custom " "handler for :py:data:`SIGCHLD` signal." msgstr "" -#: library/asyncio-policy.rst:260 +#: library/asyncio-policy.rst:273 msgid "" "The watcher avoids disrupting other code spawning processes by polling every " "process explicitly on a :py:data:`SIGCHLD` signal." msgstr "" -#: library/asyncio-policy.rst:245 +#: library/asyncio-policy.rst:256 msgid "" "There is no limitation for running subprocesses from different threads once " "the watcher is installed." msgstr "" -#: library/asyncio-policy.rst:248 +#: library/asyncio-policy.rst:259 msgid "" "The solution is safe but it has a significant overhead when handling a big " "number of processes (*O(n)* each time a :py:data:`SIGCHLD` is received)." msgstr "" -#: library/asyncio-policy.rst:256 +#: library/asyncio-policy.rst:269 msgid "" "This implementation uses active event loop from the main thread to handle :" "py:data:`SIGCHLD` signal. If the main thread has no running event loop " "another thread cannot spawn a subprocess (:exc:`RuntimeError` is raised)." msgstr "" -#: library/asyncio-policy.rst:263 +#: library/asyncio-policy.rst:276 msgid "" "This solution is as safe as :class:`MultiLoopChildWatcher` and has the same " "*O(N)* complexity but requires a running event loop in the main thread to " "work." msgstr "" -#: library/asyncio-policy.rst:268 +#: library/asyncio-policy.rst:283 msgid "" "This implementation reaps every terminated processes by calling ``os." "waitpid(-1)`` directly, possibly breaking other code spawning processes and " "waiting for their termination." msgstr "" -#: library/asyncio-policy.rst:272 +#: library/asyncio-policy.rst:287 msgid "" "There is no noticeable overhead when handling a big number of children " "(*O(1)* each time a child terminates)." msgstr "" -#: library/asyncio-policy.rst:275 +#: library/asyncio-policy.rst:290 msgid "" "This solution requires a running event loop in the main thread to work, as :" "class:`SafeChildWatcher`." msgstr "" -#: library/asyncio-policy.rst:280 +#: library/asyncio-policy.rst:297 msgid "" "This implementation polls process file descriptors (pidfds) to await child " "process termination. In some respects, :class:`PidfdChildWatcher` is a " @@ -373,11 +373,11 @@ msgid "" "only work on recent (5.3+) kernels." msgstr "" -#: library/asyncio-policy.rst:294 +#: library/asyncio-policy.rst:311 msgid "Custom Policies" msgstr "" -#: library/asyncio-policy.rst:296 +#: library/asyncio-policy.rst:313 msgid "" "To implement a new event loop policy, it is recommended to subclass :class:" "`DefaultEventLoopPolicy` and override the methods for which custom behavior " diff --git a/library/asyncio-runner.po b/library/asyncio-runner.po index 6f57691ac..a6864c1bf 100644 --- a/library/asyncio-runner.po +++ b/library/asyncio-runner.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -46,16 +46,16 @@ msgstr "" #: library/asyncio-runner.rst:29 msgid "" "This function runs the passed coroutine, taking care of managing the asyncio " -"event loop, *finalizing asynchronous generators*, and closing the threadpool." +"event loop, *finalizing asynchronous generators*, and closing the executor." msgstr "" -#: library/asyncio-runner.rst:103 +#: library/asyncio-runner.rst:113 msgid "" "This function cannot be called when another asyncio event loop is running in " "the same thread." msgstr "" -#: library/asyncio-runner.rst:73 +#: library/asyncio-runner.rst:83 msgid "" "If *debug* is ``True``, the event loop will be run in debug mode. ``False`` " "disables debug mode explicitly. ``None`` is used to respect the global :ref:" @@ -64,41 +64,54 @@ msgstr "" #: library/asyncio-runner.rst:40 msgid "" -"This function always creates a new event loop and closes it at the end. It " -"should be used as a main entry point for asyncio programs, and should " -"ideally only be called once." +"If *loop_factory* is not ``None``, it is used to create a new event loop; " +"otherwise :func:`asyncio.new_event_loop` is used. The loop is closed at the " +"end. This function should be used as a main entry point for asyncio " +"programs, and should ideally only be called once. It is recommended to use " +"*loop_factory* to configure the event loop instead of policies." +msgstr "" + +#: library/asyncio-runner.rst:46 +msgid "" +"The executor is given a timeout duration of 5 minutes to shutdown. If the " +"executor hasn't finished within that duration, a warning is emitted and the " +"executor is closed." msgstr "" -#: library/asyncio-runner.rst:44 +#: library/asyncio-runner.rst:50 msgid "Example::" msgstr "" -#: library/asyncio-runner.rst:54 +#: library/asyncio-runner.rst:60 msgid "Updated to use :meth:`loop.shutdown_default_executor`." msgstr "" -#: library/asyncio-runner.rst:59 +#: library/asyncio-runner.rst:65 msgid "" "*debug* is ``None`` by default to respect the global debug mode settings." msgstr "" -#: library/asyncio-runner.rst:63 +#: library/asyncio-runner.rst:69 +msgid "Added *loop_factory* parameter." +msgstr "" + +#: library/asyncio-runner.rst:73 msgid "Runner context manager" msgstr "" -#: library/asyncio-runner.rst:67 +#: library/asyncio-runner.rst:77 msgid "" "A context manager that simplifies *multiple* async function calls in the " "same context." msgstr "" -#: library/asyncio-runner.rst:70 +#: library/asyncio-runner.rst:80 msgid "" "Sometimes several top-level async functions should be called in the same :" "ref:`event loop ` and :class:`contextvars.Context`." msgstr "" -#: library/asyncio-runner.rst:77 +#: library/asyncio-runner.rst:87 msgid "" "*loop_factory* could be used for overriding the loop creation. It is the " "responsibility of the *loop_factory* to set the created loop as the current " @@ -106,58 +119,58 @@ msgid "" "event loop with :func:`asyncio.set_event_loop` if *loop_factory* is ``None``." msgstr "" -#: library/asyncio-runner.rst:82 +#: library/asyncio-runner.rst:92 msgid "" "Basically, :func:`asyncio.run()` example can be rewritten with the runner " "usage::" msgstr "" -#: library/asyncio-runner.rst:95 +#: library/asyncio-runner.rst:105 msgid "Run a :term:`coroutine ` *coro* in the embedded loop." msgstr "" -#: library/asyncio-runner.rst:97 +#: library/asyncio-runner.rst:107 msgid "Return the coroutine's result or raise its exception." msgstr "" -#: library/asyncio-runner.rst:99 +#: library/asyncio-runner.rst:109 msgid "" "An optional keyword-only *context* argument allows specifying a custom :" "class:`contextvars.Context` for the *coro* to run in. The runner's default " "context is used if ``None``." msgstr "" -#: library/asyncio-runner.rst:108 +#: library/asyncio-runner.rst:118 msgid "Close the runner." msgstr "" -#: library/asyncio-runner.rst:110 +#: library/asyncio-runner.rst:120 msgid "" "Finalize asynchronous generators, shutdown default executor, close the event " "loop and release embedded :class:`contextvars.Context`." msgstr "" -#: library/asyncio-runner.rst:115 +#: library/asyncio-runner.rst:125 msgid "Return the event loop associated with the runner instance." msgstr "" -#: library/asyncio-runner.rst:119 +#: library/asyncio-runner.rst:129 msgid "" ":class:`Runner` uses the lazy initialization strategy, its constructor " "doesn't initialize underlying low-level structures." msgstr "" -#: library/asyncio-runner.rst:122 +#: library/asyncio-runner.rst:132 msgid "" "Embedded *loop* and *context* are created at the :keyword:`with` body " "entering or the first call of :meth:`run` or :meth:`get_loop`." msgstr "" -#: library/asyncio-runner.rst:127 +#: library/asyncio-runner.rst:137 msgid "Handling Keyboard Interruption" msgstr "" -#: library/asyncio-runner.rst:131 +#: library/asyncio-runner.rst:141 msgid "" "When :const:`signal.SIGINT` is raised by :kbd:`Ctrl-C`, :exc:" "`KeyboardInterrupt` exception is raised in the main thread by default. " @@ -165,26 +178,26 @@ msgid "" "asyncio internals and can hang the program from exiting." msgstr "" -#: library/asyncio-runner.rst:136 +#: library/asyncio-runner.rst:146 msgid "" "To mitigate this issue, :mod:`asyncio` handles :const:`signal.SIGINT` as " "follows:" msgstr "" -#: library/asyncio-runner.rst:138 +#: library/asyncio-runner.rst:148 msgid "" ":meth:`asyncio.Runner.run` installs a custom :const:`signal.SIGINT` handler " "before any user code is executed and removes it when exiting from the " "function." msgstr "" -#: library/asyncio-runner.rst:140 +#: library/asyncio-runner.rst:150 msgid "" "The :class:`~asyncio.Runner` creates the main task for the passed coroutine " "for its execution." msgstr "" -#: library/asyncio-runner.rst:142 +#: library/asyncio-runner.rst:152 msgid "" "When :const:`signal.SIGINT` is raised by :kbd:`Ctrl-C`, the custom signal " "handler cancels the main task by calling :meth:`asyncio.Task.cancel` which " @@ -194,7 +207,7 @@ msgid "" "Runner.run` raises :exc:`KeyboardInterrupt`." msgstr "" -#: library/asyncio-runner.rst:148 +#: library/asyncio-runner.rst:158 msgid "" "A user could write a tight loop which cannot be interrupted by :meth:" "`asyncio.Task.cancel`, in which case the second following :kbd:`Ctrl-C` " diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index 40841d08d..8b131abdc 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: 2023-03-01 00:18+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -93,6 +93,7 @@ msgid "Removed the *loop* parameter." msgstr "" #: library/asyncio-stream.rst:128 library/asyncio-stream.rst:190 +#: library/asyncio-stream.rst:368 msgid "Added the *ssl_shutdown_timeout* parameter." msgstr "" @@ -373,91 +374,98 @@ msgid "" "(default)." msgstr "" -#: library/asyncio-stream.rst:366 +#: library/asyncio-stream.rst:362 +msgid "" +"*ssl_shutdown_timeout* is the time in seconds to wait for the SSL shutdown " +"to complete before aborting the connection. ``30.0`` seconds if ``None`` " +"(default)." +msgstr "" + +#: library/asyncio-stream.rst:374 msgid "" "Return ``True`` if the stream is closed or in the process of being closed." msgstr "" -#: library/asyncio-stream.rst:373 +#: library/asyncio-stream.rst:381 msgid "Wait until the stream is closed." msgstr "" -#: library/asyncio-stream.rst:375 +#: library/asyncio-stream.rst:383 msgid "" "Should be called after :meth:`close` to wait until the underlying connection " "is closed, ensuring that all data has been flushed before e.g. exiting the " "program." msgstr "" -#: library/asyncio-stream.rst:383 +#: library/asyncio-stream.rst:391 msgid "Examples" msgstr "" -#: library/asyncio-stream.rst:388 +#: library/asyncio-stream.rst:396 msgid "TCP echo client using streams" msgstr "" -#: library/asyncio-stream.rst:390 +#: library/asyncio-stream.rst:398 msgid "TCP echo client using the :func:`asyncio.open_connection` function::" msgstr "" -#: library/asyncio-stream.rst:414 +#: library/asyncio-stream.rst:422 msgid "" "The :ref:`TCP echo client protocol " "` example uses the low-level :meth:" "`loop.create_connection` method." msgstr "" -#: library/asyncio-stream.rst:421 +#: library/asyncio-stream.rst:429 msgid "TCP echo server using streams" msgstr "" -#: library/asyncio-stream.rst:423 +#: library/asyncio-stream.rst:431 msgid "TCP echo server using the :func:`asyncio.start_server` function::" msgstr "" -#: library/asyncio-stream.rst:457 +#: library/asyncio-stream.rst:465 msgid "" "The :ref:`TCP echo server protocol " "` example uses the :meth:`loop." "create_server` method." msgstr "" -#: library/asyncio-stream.rst:462 +#: library/asyncio-stream.rst:470 msgid "Get HTTP headers" msgstr "" -#: library/asyncio-stream.rst:464 +#: library/asyncio-stream.rst:472 msgid "" "Simple example querying HTTP headers of the URL passed on the command line::" msgstr "" -#: library/asyncio-stream.rst:503 +#: library/asyncio-stream.rst:511 msgid "Usage::" msgstr "" -#: library/asyncio-stream.rst:507 +#: library/asyncio-stream.rst:515 msgid "or with HTTPS::" msgstr "" -#: library/asyncio-stream.rst:515 +#: library/asyncio-stream.rst:523 msgid "Register an open socket to wait for data using streams" msgstr "" -#: library/asyncio-stream.rst:517 +#: library/asyncio-stream.rst:525 msgid "" "Coroutine waiting until a socket receives data using the :func:" "`open_connection` function::" msgstr "" -#: library/asyncio-stream.rst:552 +#: library/asyncio-stream.rst:560 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:556 +#: library/asyncio-stream.rst:564 msgid "" "The :ref:`watch a file descriptor for read events " "` example uses the low-level :meth:`loop." diff --git a/library/asyncio-subprocess.po b/library/asyncio-subprocess.po index ce0bc67a5..fc140ca64 100644 --- a/library/asyncio-subprocess.po +++ b/library/asyncio-subprocess.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -236,24 +236,28 @@ msgid "send data to *stdin* (if *input* is not ``None``);" msgstr "" #: library/asyncio-subprocess.rst:210 -msgid "read data from *stdout* and *stderr*, until EOF is reached;" +msgid "closes *stdin*;" msgstr "" #: library/asyncio-subprocess.rst:211 +msgid "read data from *stdout* and *stderr*, until EOF is reached;" +msgstr "" + +#: library/asyncio-subprocess.rst:212 msgid "wait for process to terminate." msgstr "" -#: library/asyncio-subprocess.rst:213 +#: library/asyncio-subprocess.rst:214 msgid "" "The optional *input* argument is the data (:class:`bytes` object) that will " "be sent to the child process." msgstr "" -#: library/asyncio-subprocess.rst:216 +#: library/asyncio-subprocess.rst:217 msgid "Return a tuple ``(stdout_data, stderr_data)``." msgstr "" -#: library/asyncio-subprocess.rst:218 +#: library/asyncio-subprocess.rst:219 msgid "" "If either :exc:`BrokenPipeError` or :exc:`ConnectionResetError` exception is " "raised when writing *input* into *stdin*, the exception is ignored. This " @@ -261,7 +265,7 @@ msgid "" "*stdin*." msgstr "" -#: library/asyncio-subprocess.rst:223 +#: library/asyncio-subprocess.rst:224 msgid "" "If it is desired to send data to the process' *stdin*, the process needs to " "be created with ``stdin=PIPE``. Similarly, to get anything other than " @@ -269,71 +273,75 @@ msgid "" "``stdout=PIPE`` and/or ``stderr=PIPE`` arguments." msgstr "" -#: library/asyncio-subprocess.rst:229 +#: library/asyncio-subprocess.rst:230 msgid "" "Note, that the data read is buffered in memory, so do not use this method if " "the data size is large or unlimited." msgstr "" -#: library/asyncio-subprocess.rst:234 +#: library/asyncio-subprocess.rst:235 +msgid "*stdin* gets closed when `input=None` too." +msgstr "" + +#: library/asyncio-subprocess.rst:239 msgid "Sends the signal *signal* to the child process." msgstr "" -#: library/asyncio-subprocess.rst:238 +#: library/asyncio-subprocess.rst:243 msgid "" "On Windows, :py:data:`SIGTERM` is an alias for :meth:`terminate`. " "``CTRL_C_EVENT`` and ``CTRL_BREAK_EVENT`` can be sent to processes started " "with a *creationflags* parameter which includes ``CREATE_NEW_PROCESS_GROUP``." msgstr "" -#: library/asyncio-subprocess.rst:245 +#: library/asyncio-subprocess.rst:250 msgid "Stop the child process." msgstr "" -#: library/asyncio-subprocess.rst:247 +#: library/asyncio-subprocess.rst:252 msgid "" "On POSIX systems this method sends :py:const:`signal.SIGTERM` to the child " "process." msgstr "" -#: library/asyncio-subprocess.rst:250 +#: library/asyncio-subprocess.rst:255 msgid "" "On Windows the Win32 API function :c:func:`TerminateProcess` is called to " "stop the child process." msgstr "" -#: library/asyncio-subprocess.rst:255 +#: library/asyncio-subprocess.rst:260 msgid "Kill the child process." msgstr "" -#: library/asyncio-subprocess.rst:257 +#: library/asyncio-subprocess.rst:262 msgid "" "On POSIX systems this method sends :py:data:`SIGKILL` to the child process." msgstr "" -#: library/asyncio-subprocess.rst:260 +#: library/asyncio-subprocess.rst:265 msgid "On Windows this method is an alias for :meth:`terminate`." msgstr "" -#: library/asyncio-subprocess.rst:264 +#: library/asyncio-subprocess.rst:269 msgid "" "Standard input stream (:class:`StreamWriter`) or ``None`` if the process was " "created with ``stdin=None``." msgstr "" -#: library/asyncio-subprocess.rst:269 +#: library/asyncio-subprocess.rst:274 msgid "" "Standard output stream (:class:`StreamReader`) or ``None`` if the process " "was created with ``stdout=None``." msgstr "" -#: library/asyncio-subprocess.rst:274 +#: library/asyncio-subprocess.rst:279 msgid "" "Standard error stream (:class:`StreamReader`) or ``None`` if the process was " "created with ``stderr=None``." msgstr "" -#: library/asyncio-subprocess.rst:279 +#: library/asyncio-subprocess.rst:284 msgid "" "Use the :meth:`communicate` method rather than :attr:`process.stdin.write() " "`, :attr:`await process.stdout.read() ` or :attr:`await " @@ -341,93 +349,93 @@ msgid "" "pausing reading or writing and blocking the child process." msgstr "" -#: library/asyncio-subprocess.rst:288 +#: library/asyncio-subprocess.rst:293 msgid "Process identification number (PID)." msgstr "" -#: library/asyncio-subprocess.rst:290 +#: library/asyncio-subprocess.rst:295 msgid "" "Note that for processes created by the :func:`create_subprocess_shell` " "function, this attribute is the PID of the spawned shell." msgstr "" -#: library/asyncio-subprocess.rst:295 +#: library/asyncio-subprocess.rst:300 msgid "Return code of the process when it exits." msgstr "" -#: library/asyncio-subprocess.rst:297 +#: library/asyncio-subprocess.rst:302 msgid "A ``None`` value indicates that the process has not terminated yet." msgstr "" -#: library/asyncio-subprocess.rst:299 +#: library/asyncio-subprocess.rst:304 msgid "" "A negative value ``-N`` indicates that the child was terminated by signal " "``N`` (POSIX only)." msgstr "" -#: library/asyncio-subprocess.rst:306 +#: library/asyncio-subprocess.rst:311 msgid "Subprocess and Threads" msgstr "" -#: library/asyncio-subprocess.rst:308 +#: library/asyncio-subprocess.rst:313 msgid "" "Standard asyncio event loop supports running subprocesses from different " "threads by default." msgstr "" -#: library/asyncio-subprocess.rst:311 +#: library/asyncio-subprocess.rst:316 msgid "" "On Windows subprocesses are provided by :class:`ProactorEventLoop` only " "(default), :class:`SelectorEventLoop` has no subprocess support." msgstr "" -#: library/asyncio-subprocess.rst:314 +#: library/asyncio-subprocess.rst:319 msgid "" "On UNIX *child watchers* are used for subprocess finish waiting, see :ref:" "`asyncio-watchers` for more info." msgstr "" -#: library/asyncio-subprocess.rst:320 +#: library/asyncio-subprocess.rst:325 msgid "" "UNIX switched to use :class:`ThreadedChildWatcher` for spawning subprocesses " "from different threads without any limitation." msgstr "" -#: library/asyncio-subprocess.rst:323 +#: library/asyncio-subprocess.rst:328 msgid "" "Spawning a subprocess with *inactive* current child watcher raises :exc:" "`RuntimeError`." msgstr "" -#: library/asyncio-subprocess.rst:326 +#: library/asyncio-subprocess.rst:331 msgid "" "Note that alternative event loop implementations might have own limitations; " "please refer to their documentation." msgstr "" -#: library/asyncio-subprocess.rst:331 +#: library/asyncio-subprocess.rst:336 msgid "" "The :ref:`Concurrency and multithreading in asyncio ` section." msgstr "" -#: library/asyncio-subprocess.rst:336 +#: library/asyncio-subprocess.rst:341 msgid "Examples" msgstr "" -#: library/asyncio-subprocess.rst:338 +#: library/asyncio-subprocess.rst:343 msgid "" "An example using the :class:`~asyncio.subprocess.Process` class to control a " "subprocess and the :class:`StreamReader` class to read from its standard " "output." msgstr "" -#: library/asyncio-subprocess.rst:344 +#: library/asyncio-subprocess.rst:349 msgid "" "The subprocess is created by the :func:`create_subprocess_exec` function::" msgstr "" -#: library/asyncio-subprocess.rst:371 +#: library/asyncio-subprocess.rst:376 msgid "" "See also the :ref:`same example ` written " "using low-level APIs." diff --git a/library/asyncio-task.po b/library/asyncio-task.po index d82869029..e3741cd86 100644 --- a/library/asyncio-task.po +++ b/library/asyncio-task.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -226,11 +226,12 @@ msgstr "" #: library/asyncio-task.rst:259 msgid "" -":meth:`asyncio.TaskGroup.create_task` is a newer alternative that allows for " -"convenient waiting for a group of related tasks." +":meth:`asyncio.TaskGroup.create_task` is a new alternative leveraging " +"structural concurrency; it allows for waiting for a group of related tasks " +"with strong safety guarantees." msgstr "" -#: library/asyncio-task.rst:264 +#: library/asyncio-task.rst:265 msgid "" "Save a reference to the result of this function, to avoid a task " "disappearing mid-execution. The event loop only keeps weak references to " @@ -239,25 +240,25 @@ msgid "" "tasks, gather them in a collection::" msgstr "" -#: library/asyncio-task.rst:1013 +#: library/asyncio-task.rst:1076 msgid "Added the *name* parameter." msgstr "" -#: library/asyncio-task.rst:1020 +#: library/asyncio-task.rst:1083 msgid "Added the *context* parameter." msgstr "" -#: library/asyncio-task.rst:294 +#: library/asyncio-task.rst:295 msgid "Task Cancellation" msgstr "" -#: library/asyncio-task.rst:296 +#: library/asyncio-task.rst:297 msgid "" "Tasks can easily and safely be cancelled. When a task is cancelled, :exc:" "`asyncio.CancelledError` will be raised in the task at the next opportunity." msgstr "" -#: library/asyncio-task.rst:300 +#: library/asyncio-task.rst:301 msgid "" "It is recommended that coroutines use ``try/finally`` blocks to robustly " "perform clean-up logic. In case :exc:`asyncio.CancelledError` is explicitly " @@ -266,7 +267,7 @@ msgid "" "code will not need to be aware of it." msgstr "" -#: library/asyncio-task.rst:306 +#: library/asyncio-task.rst:307 msgid "" "The asyncio components that enable structured concurrency, like :class:" "`asyncio.TaskGroup` and :func:`asyncio.timeout`, are implemented using " @@ -277,35 +278,35 @@ msgid "" "``uncancel()`` to completely remove the cancellation state." msgstr "" -#: library/asyncio-task.rst:318 +#: library/asyncio-task.rst:319 msgid "Task Groups" msgstr "" -#: library/asyncio-task.rst:320 +#: library/asyncio-task.rst:321 msgid "" "Task groups combine a task creation API with a convenient and reliable way " "to wait for all tasks in the group to finish." msgstr "" -#: library/asyncio-task.rst:325 +#: library/asyncio-task.rst:326 msgid "" "An :ref:`asynchronous context manager ` holding a " "group of tasks. Tasks can be added to the group using :meth:`create_task`. " "All tasks are awaited when the context manager exits." msgstr "" -#: library/asyncio-task.rst:334 +#: library/asyncio-task.rst:335 msgid "" "Create a task in this task group. The signature matches that of :func:" "`asyncio.create_task`." msgstr "" -#: library/asyncio-task.rst:467 library/asyncio-task.rst:653 -#: library/asyncio-task.rst:722 library/asyncio-task.rst:816 +#: library/asyncio-task.rst:472 library/asyncio-task.rst:703 +#: library/asyncio-task.rst:772 library/asyncio-task.rst:869 msgid "Example::" msgstr "" -#: library/asyncio-task.rst:345 +#: library/asyncio-task.rst:346 msgid "" "The ``async with`` statement will wait for all tasks in the group to finish. " "While waiting, new tasks may still be added to the group (for example, by " @@ -314,7 +315,7 @@ msgid "" "block is exited, no new tasks may be added to the group." msgstr "" -#: library/asyncio-task.rst:352 +#: library/asyncio-task.rst:353 msgid "" "The first time any of the tasks belonging to the group fails with an " "exception other than :exc:`asyncio.CancelledError`, the remaining tasks in " @@ -326,7 +327,7 @@ msgid "" "bubble out of the containing ``async with`` statement." msgstr "" -#: library/asyncio-task.rst:362 +#: library/asyncio-task.rst:363 msgid "" "Once all tasks have finished, if any tasks have failed with an exception " "other than :exc:`asyncio.CancelledError`, those exceptions are combined in " @@ -334,7 +335,7 @@ msgid "" "their documentation) which is then raised." msgstr "" -#: library/asyncio-task.rst:369 +#: library/asyncio-task.rst:370 msgid "" "Two base exceptions are treated specially: If any task fails with :exc:" "`KeyboardInterrupt` or :exc:`SystemExit`, the task group still cancels the " @@ -343,7 +344,7 @@ msgid "" "`ExceptionGroup` or :exc:`BaseExceptionGroup`." msgstr "" -#: library/asyncio-task.rst:375 +#: library/asyncio-task.rst:376 msgid "" "If the body of the ``async with`` statement exits with an exception (so :" "meth:`~object.__aexit__` is called with an exception set), this is treated " @@ -355,66 +356,66 @@ msgid "" "`KeyboardInterrupt` and :exc:`SystemExit` as in the previous paragraph." msgstr "" -#: library/asyncio-task.rst:389 +#: library/asyncio-task.rst:390 msgid "Sleeping" msgstr "" -#: library/asyncio-task.rst:393 +#: library/asyncio-task.rst:394 msgid "Block for *delay* seconds." msgstr "" -#: library/asyncio-task.rst:395 +#: library/asyncio-task.rst:396 msgid "" "If *result* is provided, it is returned to the caller when the coroutine " "completes." msgstr "" -#: library/asyncio-task.rst:398 +#: library/asyncio-task.rst:399 msgid "" "``sleep()`` always suspends the current task, allowing other tasks to run." msgstr "" -#: library/asyncio-task.rst:401 +#: library/asyncio-task.rst:402 msgid "" "Setting the delay to 0 provides an optimized path to allow other tasks to " "run. This can be used by long-running functions to avoid blocking the event " "loop for the full duration of the function call." msgstr "" -#: library/asyncio-task.rst:407 +#: library/asyncio-task.rst:408 msgid "" "Example of coroutine displaying the current date every second for 5 seconds::" msgstr "" -#: library/asyncio-task.rst:516 library/asyncio-task.rst:717 -#: library/asyncio-task.rst:799 library/asyncio-task.rst:822 +#: library/asyncio-task.rst:521 library/asyncio-task.rst:767 +#: library/asyncio-task.rst:849 library/asyncio-task.rst:875 msgid "Removed the *loop* parameter." msgstr "" -#: library/asyncio-task.rst:430 +#: library/asyncio-task.rst:431 msgid "Running Tasks Concurrently" msgstr "" -#: library/asyncio-task.rst:434 +#: library/asyncio-task.rst:435 msgid "" "Run :ref:`awaitable objects ` in the *aws* sequence " "*concurrently*." msgstr "" -#: library/asyncio-task.rst:437 +#: library/asyncio-task.rst:438 msgid "" "If any awaitable in *aws* is a coroutine, it is automatically scheduled as a " "Task." msgstr "" -#: library/asyncio-task.rst:440 +#: library/asyncio-task.rst:441 msgid "" "If all awaitables are completed successfully, the result is an aggregate " "list of returned values. The order of result values corresponds to the " "order of awaitables in *aws*." msgstr "" -#: library/asyncio-task.rst:444 +#: library/asyncio-task.rst:445 msgid "" "If *return_exceptions* is ``False`` (default), the first raised exception is " "immediately propagated to the task that awaits on ``gather()``. Other " @@ -422,19 +423,19 @@ msgid "" "run." msgstr "" -#: library/asyncio-task.rst:449 +#: library/asyncio-task.rst:450 msgid "" "If *return_exceptions* is ``True``, exceptions are treated the same as " "successful results, and aggregated in the result list." msgstr "" -#: library/asyncio-task.rst:452 +#: library/asyncio-task.rst:453 msgid "" "If ``gather()`` is *cancelled*, all submitted awaitables (that have not " "completed yet) are also *cancelled*." msgstr "" -#: library/asyncio-task.rst:455 +#: library/asyncio-task.rst:456 msgid "" "If any Task or Future from the *aws* sequence is *cancelled*, it is treated " "as if it raised :exc:`CancelledError` -- the ``gather()`` call is **not** " @@ -442,13 +443,17 @@ msgid "" "submitted Task/Future to cause other Tasks/Futures to be cancelled." msgstr "" -#: library/asyncio-task.rst:462 +#: library/asyncio-task.rst:463 msgid "" -"A more modern way to create and run tasks concurrently and wait for their " -"completion is :class:`asyncio.TaskGroup`." +"A new alternative to create and run tasks concurrently and wait for their " +"completion is :class:`asyncio.TaskGroup`. *TaskGroup* provides stronger " +"safety guarantees than *gather* for scheduling a nesting of subtasks: if a " +"task (or a subtask, a task scheduled by a task) raises an exception, " +"*TaskGroup* will, while *gather* will not, cancel the remaining scheduled " +"tasks)." msgstr "" -#: library/asyncio-task.rst:505 +#: library/asyncio-task.rst:510 msgid "" "If *return_exceptions* is False, cancelling gather() after it has been " "marked done won't cancel any submitted awaitables. For instance, gather can " @@ -457,42 +462,96 @@ msgid "" "the awaitables) from gather won't cancel any other awaitables." msgstr "" -#: library/asyncio-task.rst:512 +#: library/asyncio-task.rst:517 msgid "" "If the *gather* itself is cancelled, the cancellation is propagated " "regardless of *return_exceptions*." msgstr "" -#: library/asyncio-task.rst:519 +#: library/asyncio-task.rst:524 msgid "" "Deprecation warning is emitted if no positional arguments are provided or " "not all positional arguments are Future-like objects and there is no running " "event loop." msgstr "" -#: library/asyncio-task.rst:526 +#: library/asyncio-task.rst:533 +msgid "Eager Task Factory" +msgstr "" + +#: library/asyncio-task.rst:537 +msgid "A task factory for eager task execution." +msgstr "" + +#: library/asyncio-task.rst:539 +msgid "" +"When using this factory (via :meth:`loop.set_task_factory(asyncio." +"eager_task_factory) `), coroutines begin execution " +"synchronously during :class:`Task` construction. Tasks are only scheduled on " +"the event loop if they block. This can be a performance improvement as the " +"overhead of loop scheduling is avoided for coroutines that complete " +"synchronously." +msgstr "" + +#: library/asyncio-task.rst:545 +msgid "" +"A common example where this is beneficial is coroutines which employ caching " +"or memoization to avoid actual I/O when possible." +msgstr "" + +#: library/asyncio-task.rst:550 +msgid "" +"Immediate execution of the coroutine is a semantic change. If the coroutine " +"returns or raises, the task is never scheduled to the event loop. If the " +"coroutine execution blocks, the task is scheduled to the event loop. This " +"change may introduce behavior changes to existing applications. For example, " +"the application's task execution order is likely to change." +msgstr "" + +#: library/asyncio-task.rst:561 +msgid "" +"Create an eager task factory, similar to :func:`eager_task_factory`, using " +"the provided *custom_task_constructor* when creating a new task instead of " +"the default :class:`Task`." +msgstr "" + +#: library/asyncio-task.rst:565 +msgid "" +"*custom_task_constructor* must be a *callable* with the signature matching " +"the signature of :class:`Task.__init__ `. The callable must return a :" +"class:`asyncio.Task`-compatible object." +msgstr "" + +#: library/asyncio-task.rst:569 +msgid "" +"This function returns a *callable* intended to be used as a task factory of " +"an event loop via :meth:`loop.set_task_factory(factory) `)." +msgstr "" + +#: library/asyncio-task.rst:576 msgid "Shielding From Cancellation" msgstr "" -#: library/asyncio-task.rst:530 +#: library/asyncio-task.rst:580 msgid "" "Protect an :ref:`awaitable object ` from being :meth:" "`cancelled `." msgstr "" -#: library/asyncio-task.rst:699 +#: library/asyncio-task.rst:749 msgid "If *aw* is a coroutine it is automatically scheduled as a Task." msgstr "" -#: library/asyncio-task.rst:535 +#: library/asyncio-task.rst:585 msgid "The statement::" msgstr "" -#: library/asyncio-task.rst:540 +#: library/asyncio-task.rst:590 msgid "is equivalent to::" msgstr "" -#: library/asyncio-task.rst:544 +#: library/asyncio-task.rst:594 msgid "" "*except* that if the coroutine containing it is cancelled, the Task running " "in ``something()`` is not cancelled. From the point of view of " @@ -501,20 +560,20 @@ msgid "" "`CancelledError`." msgstr "" -#: library/asyncio-task.rst:550 +#: library/asyncio-task.rst:600 msgid "" "If ``something()`` is cancelled by other means (i.e. from within itself) " "that would also cancel ``shield()``." msgstr "" -#: library/asyncio-task.rst:553 +#: library/asyncio-task.rst:603 msgid "" "If it is desired to completely ignore cancellation (not recommended) the " "``shield()`` function should be combined with a try/except clause, as " "follows::" msgstr "" -#: library/asyncio-task.rst:565 +#: library/asyncio-task.rst:615 msgid "" "Save a reference to tasks passed to this function, to avoid a task " "disappearing mid-execution. The event loop only keeps weak references to " @@ -522,36 +581,36 @@ msgid "" "any time, even before it's done." msgstr "" -#: library/asyncio-task.rst:573 +#: library/asyncio-task.rst:623 msgid "" "Deprecation warning is emitted if *aw* is not Future-like object and there " "is no running event loop." msgstr "" -#: library/asyncio-task.rst:579 +#: library/asyncio-task.rst:629 msgid "Timeouts" msgstr "" -#: library/asyncio-task.rst:583 +#: library/asyncio-task.rst:633 msgid "" "Return an :ref:`asynchronous context manager ` that " "can be used to limit the amount of time spent waiting on something." msgstr "" -#: library/asyncio-task.rst:587 +#: library/asyncio-task.rst:637 msgid "" "*delay* can either be ``None``, or a float/int number of seconds to wait. If " "*delay* is ``None``, no time limit will be applied; this can be useful if " "the delay is unknown when the context manager is created." msgstr "" -#: library/asyncio-task.rst:592 +#: library/asyncio-task.rst:642 msgid "" "In either case, the context manager can be rescheduled after creation using :" "meth:`Timeout.reschedule`." msgstr "" -#: library/asyncio-task.rst:601 +#: library/asyncio-task.rst:651 msgid "" "If ``long_running_task`` takes more than 10 seconds to complete, the context " "manager will cancel the current task and handle the resulting :exc:`asyncio." @@ -559,225 +618,227 @@ msgid "" "can be caught and handled." msgstr "" -#: library/asyncio-task.rst:608 +#: library/asyncio-task.rst:658 msgid "" "The :func:`asyncio.timeout` context manager is what transforms the :exc:" "`asyncio.CancelledError` into a :exc:`TimeoutError`, which means the :exc:" "`TimeoutError` can only be caught *outside* of the context manager." msgstr "" -#: library/asyncio-task.rst:613 +#: library/asyncio-task.rst:663 msgid "Example of catching :exc:`TimeoutError`::" msgstr "" -#: library/asyncio-task.rst:624 +#: library/asyncio-task.rst:674 msgid "" "The context manager produced by :func:`asyncio.timeout` can be rescheduled " "to a different deadline and inspected." msgstr "" -#: library/asyncio-task.rst:629 +#: library/asyncio-task.rst:679 msgid "" "An :ref:`asynchronous context manager ` for " "cancelling overdue coroutines." msgstr "" -#: library/asyncio-task.rst:632 +#: library/asyncio-task.rst:682 msgid "" "``when`` should be an absolute time at which the context should time out, as " "measured by the event loop's clock:" msgstr "" -#: library/asyncio-task.rst:635 +#: library/asyncio-task.rst:685 msgid "If ``when`` is ``None``, the timeout will never trigger." msgstr "" -#: library/asyncio-task.rst:636 +#: library/asyncio-task.rst:686 msgid "" "If ``when < loop.time()``, the timeout will trigger on the next iteration of " "the event loop." msgstr "" -#: library/asyncio-task.rst:641 +#: library/asyncio-task.rst:691 msgid "" "Return the current deadline, or ``None`` if the current deadline is not set." msgstr "" -#: library/asyncio-task.rst:646 +#: library/asyncio-task.rst:696 msgid "Reschedule the timeout." msgstr "" -#: library/asyncio-task.rst:650 +#: library/asyncio-task.rst:700 msgid "Return whether the context manager has exceeded its deadline (expired)." msgstr "" -#: library/asyncio-task.rst:670 +#: library/asyncio-task.rst:720 msgid "Timeout context managers can be safely nested." msgstr "" -#: library/asyncio-task.rst:676 +#: library/asyncio-task.rst:726 msgid "" "Similar to :func:`asyncio.timeout`, except *when* is the absolute time to " "stop waiting, or ``None``." msgstr "" -#: library/asyncio-task.rst:696 +#: library/asyncio-task.rst:746 msgid "" "Wait for the *aw* :ref:`awaitable ` to complete with a " "timeout." msgstr "" -#: library/asyncio-task.rst:701 +#: library/asyncio-task.rst:751 msgid "" "*timeout* can either be ``None`` or a float or int number of seconds to wait " "for. If *timeout* is ``None``, block until the future completes." msgstr "" -#: library/asyncio-task.rst:705 +#: library/asyncio-task.rst:755 msgid "" "If a timeout occurs, it cancels the task and raises :exc:`TimeoutError`." msgstr "" -#: library/asyncio-task.rst:708 +#: library/asyncio-task.rst:758 msgid "" "To avoid the task :meth:`cancellation `, wrap it in :func:" "`shield`." msgstr "" -#: library/asyncio-task.rst:711 +#: library/asyncio-task.rst:761 msgid "" "The function will wait until the future is actually cancelled, so the total " "wait time may exceed the *timeout*. If an exception happens during " "cancellation, it is propagated." msgstr "" -#: library/asyncio-task.rst:715 +#: library/asyncio-task.rst:765 msgid "If the wait is cancelled, the future *aw* is also cancelled." msgstr "" -#: library/asyncio-task.rst:742 +#: library/asyncio-task.rst:792 msgid "" "When *aw* is cancelled due to a timeout, ``wait_for`` waits for *aw* to be " "cancelled. Previously, it raised :exc:`TimeoutError` immediately." msgstr "" -#: library/asyncio-task.rst:752 +#: library/asyncio-task.rst:802 msgid "Waiting Primitives" msgstr "" -#: library/asyncio-task.rst:756 +#: library/asyncio-task.rst:806 msgid "" "Run :class:`~asyncio.Future` and :class:`~asyncio.Task` instances in the " "*aws* iterable concurrently and block until the condition specified by " "*return_when*." msgstr "" -#: library/asyncio-task.rst:760 -msgid "" -"The *aws* iterable must not be empty and generators yielding tasks are not " -"accepted." +#: library/asyncio-task.rst:810 +msgid "The *aws* iterable must not be empty." msgstr "" -#: library/asyncio-task.rst:762 +#: library/asyncio-task.rst:812 msgid "Returns two sets of Tasks/Futures: ``(done, pending)``." msgstr "" -#: library/asyncio-task.rst:764 +#: library/asyncio-task.rst:814 msgid "Usage::" msgstr "" -#: library/asyncio-task.rst:768 +#: library/asyncio-task.rst:818 msgid "" "*timeout* (a float or int), if specified, can be used to control the maximum " "number of seconds to wait before returning." msgstr "" -#: library/asyncio-task.rst:771 +#: library/asyncio-task.rst:821 msgid "" "Note that this function does not raise :exc:`TimeoutError`. Futures or Tasks " "that aren't done when the timeout occurs are simply returned in the second " "set." msgstr "" -#: library/asyncio-task.rst:775 +#: library/asyncio-task.rst:825 msgid "" "*return_when* indicates when this function should return. It must be one of " "the following constants:" msgstr "" -#: library/asyncio-task.rst:781 +#: library/asyncio-task.rst:831 msgid "Constant" msgstr "" -#: library/asyncio-task.rst:781 +#: library/asyncio-task.rst:831 msgid "Description" msgstr "" -#: library/asyncio-task.rst:783 +#: library/asyncio-task.rst:833 msgid ":const:`FIRST_COMPLETED`" msgstr "" -#: library/asyncio-task.rst:783 +#: library/asyncio-task.rst:833 msgid "The function will return when any future finishes or is cancelled." msgstr "" -#: library/asyncio-task.rst:786 +#: library/asyncio-task.rst:836 msgid ":const:`FIRST_EXCEPTION`" msgstr "" -#: library/asyncio-task.rst:786 +#: library/asyncio-task.rst:836 msgid "" "The function will return when any future finishes by raising an exception. " "If no future raises an exception then it is equivalent to :const:" "`ALL_COMPLETED`." msgstr "" -#: library/asyncio-task.rst:792 +#: library/asyncio-task.rst:842 msgid ":const:`ALL_COMPLETED`" msgstr "" -#: library/asyncio-task.rst:792 +#: library/asyncio-task.rst:842 msgid "The function will return when all futures finish or are cancelled." msgstr "" -#: library/asyncio-task.rst:796 +#: library/asyncio-task.rst:846 msgid "" "Unlike :func:`~asyncio.wait_for`, ``wait()`` does not cancel the futures " "when a timeout occurs." msgstr "" -#: library/asyncio-task.rst:802 +#: library/asyncio-task.rst:852 msgid "Passing coroutine objects to ``wait()`` directly is forbidden." msgstr "" -#: library/asyncio-task.rst:807 +#: library/asyncio-task.rst:882 +msgid "Added support for generators yielding tasks." +msgstr "" + +#: library/asyncio-task.rst:861 msgid "" "Run :ref:`awaitable objects ` in the *aws* iterable " -"concurrently. Generators yielding tasks are not accepted as *aws* iterable. " -"Return an iterator of coroutines. Each coroutine returned can be awaited to " -"get the earliest next result from the iterable of the remaining awaitables." +"concurrently. Return an iterator of coroutines. Each coroutine returned can " +"be awaited to get the earliest next result from the iterable of the " +"remaining awaitables." msgstr "" -#: library/asyncio-task.rst:813 +#: library/asyncio-task.rst:866 msgid "" "Raises :exc:`TimeoutError` if the timeout occurs before all Futures are done." msgstr "" -#: library/asyncio-task.rst:825 +#: library/asyncio-task.rst:878 msgid "" "Deprecation warning is emitted if not all awaitable objects in the *aws* " "iterable are Future-like objects and there is no running event loop." msgstr "" -#: library/asyncio-task.rst:831 +#: library/asyncio-task.rst:887 msgid "Running in Threads" msgstr "" -#: library/asyncio-task.rst:835 +#: library/asyncio-task.rst:891 msgid "Asynchronously run function *func* in a separate thread." msgstr "" -#: library/asyncio-task.rst:837 +#: library/asyncio-task.rst:893 msgid "" "Any \\*args and \\*\\*kwargs supplied for this function are directly passed " "to *func*. Also, the current :class:`contextvars.Context` is propagated, " @@ -785,19 +846,19 @@ msgid "" "separate thread." msgstr "" -#: library/asyncio-task.rst:842 +#: library/asyncio-task.rst:898 msgid "" "Return a coroutine that can be awaited to get the eventual result of *func*." msgstr "" -#: library/asyncio-task.rst:844 +#: library/asyncio-task.rst:900 msgid "" "This coroutine function is primarily intended to be used for executing IO-" "bound functions/methods that would otherwise block the event loop if they " "were run in the main thread. For example::" msgstr "" -#: library/asyncio-task.rst:874 +#: library/asyncio-task.rst:930 msgid "" "Directly calling ``blocking_io()`` in any coroutine would block the event " "loop for its duration, resulting in an additional 1 second of run time. " @@ -805,7 +866,7 @@ msgid "" "thread without blocking the event loop." msgstr "" -#: library/asyncio-task.rst:881 +#: library/asyncio-task.rst:937 msgid "" "Due to the :term:`GIL`, ``asyncio.to_thread()`` can typically only be used " "to make IO-bound functions non-blocking. However, for extension modules that " @@ -813,85 +874,85 @@ msgid "" "``asyncio.to_thread()`` can also be used for CPU-bound functions." msgstr "" -#: library/asyncio-task.rst:890 +#: library/asyncio-task.rst:946 msgid "Scheduling From Other Threads" msgstr "" -#: library/asyncio-task.rst:894 +#: library/asyncio-task.rst:950 msgid "Submit a coroutine to the given event loop. Thread-safe." msgstr "" -#: library/asyncio-task.rst:896 +#: library/asyncio-task.rst:952 msgid "" "Return a :class:`concurrent.futures.Future` to wait for the result from " "another OS thread." msgstr "" -#: library/asyncio-task.rst:899 +#: library/asyncio-task.rst:955 msgid "" "This function is meant to be called from a different OS thread than the one " "where the event loop is running. Example::" msgstr "" -#: library/asyncio-task.rst:911 +#: library/asyncio-task.rst:967 msgid "" "If an exception is raised in the coroutine, the returned Future will be " "notified. It can also be used to cancel the task in the event loop::" msgstr "" -#: library/asyncio-task.rst:925 +#: library/asyncio-task.rst:981 msgid "" "See the :ref:`concurrency and multithreading ` " "section of the documentation." msgstr "" -#: library/asyncio-task.rst:928 +#: library/asyncio-task.rst:984 msgid "" "Unlike other asyncio functions this function requires the *loop* argument to " "be passed explicitly." msgstr "" -#: library/asyncio-task.rst:935 +#: library/asyncio-task.rst:991 msgid "Introspection" msgstr "" -#: library/asyncio-task.rst:940 +#: library/asyncio-task.rst:996 msgid "" "Return the currently running :class:`Task` instance, or ``None`` if no task " "is running." msgstr "" -#: library/asyncio-task.rst:943 +#: library/asyncio-task.rst:999 msgid "" "If *loop* is ``None`` :func:`get_running_loop` is used to get the current " "loop." msgstr "" -#: library/asyncio-task.rst:951 +#: library/asyncio-task.rst:1007 msgid "Return a set of not yet finished :class:`Task` objects run by the loop." msgstr "" -#: library/asyncio-task.rst:954 +#: library/asyncio-task.rst:1010 msgid "" "If *loop* is ``None``, :func:`get_running_loop` is used for getting current " "loop." msgstr "" -#: library/asyncio-task.rst:962 +#: library/asyncio-task.rst:1018 msgid "Return ``True`` if *obj* is a coroutine object." msgstr "" -#: library/asyncio-task.rst:968 +#: library/asyncio-task.rst:1024 msgid "Task Object" msgstr "" -#: library/asyncio-task.rst:972 +#: library/asyncio-task.rst:1028 msgid "" "A :class:`Future-like ` object that runs a Python :ref:`coroutine " "`. Not thread-safe." msgstr "" -#: library/asyncio-task.rst:975 +#: library/asyncio-task.rst:1031 msgid "" "Tasks are used to run coroutines in event loops. If a coroutine awaits on a " "Future, the Task suspends the execution of the coroutine and waits for the " @@ -899,21 +960,21 @@ msgid "" "wrapped coroutine resumes." msgstr "" -#: library/asyncio-task.rst:981 +#: library/asyncio-task.rst:1037 msgid "" "Event loops use cooperative scheduling: an event loop runs one Task at a " "time. While a Task awaits for the completion of a Future, the event loop " "runs other Tasks, callbacks, or performs IO operations." msgstr "" -#: library/asyncio-task.rst:986 +#: library/asyncio-task.rst:1042 msgid "" "Use the high-level :func:`asyncio.create_task` function to create Tasks, or " "the low-level :meth:`loop.create_task` or :func:`ensure_future` functions. " "Manual instantiation of Tasks is discouraged." msgstr "" -#: library/asyncio-task.rst:991 +#: library/asyncio-task.rst:1047 msgid "" "To cancel a running Task use the :meth:`cancel` method. Calling it will " "cause the Task to throw a :exc:`CancelledError` exception into the wrapped " @@ -921,20 +982,20 @@ msgid "" "cancellation, the Future object will be cancelled." msgstr "" -#: library/asyncio-task.rst:996 +#: library/asyncio-task.rst:1052 msgid "" ":meth:`cancelled` can be used to check if the Task was cancelled. The method " "returns ``True`` if the wrapped coroutine did not suppress the :exc:" "`CancelledError` exception and was actually cancelled." msgstr "" -#: library/asyncio-task.rst:1001 +#: library/asyncio-task.rst:1057 msgid "" ":class:`asyncio.Task` inherits from :class:`Future` all of its APIs except :" "meth:`Future.set_result` and :meth:`Future.set_exception`." msgstr "" -#: library/asyncio-task.rst:1005 +#: library/asyncio-task.rst:1061 msgid "" "An optional keyword-only *context* argument allows specifying a custom :" "class:`contextvars.Context` for the *coro* to run in. If no *context* is " @@ -942,92 +1003,106 @@ msgid "" "in the copied context." msgstr "" -#: library/asyncio-task.rst:1010 +#: library/asyncio-task.rst:1066 +msgid "" +"An optional keyword-only *eager_start* argument allows eagerly starting the " +"execution of the :class:`asyncio.Task` at task creation time. If set to " +"``True`` and the event loop is running, the task will start executing the " +"coroutine immediately, until the first time the coroutine blocks. If the " +"coroutine returns or raises without blocking, the task will be finished " +"eagerly and will skip scheduling to the event loop." +msgstr "" + +#: library/asyncio-task.rst:1073 msgid "Added support for the :mod:`contextvars` module." msgstr "" -#: library/asyncio-task.rst:1016 +#: library/asyncio-task.rst:1079 msgid "" "Deprecation warning is emitted if *loop* is not specified and there is no " "running event loop." msgstr "" -#: library/asyncio-task.rst:1025 +#: library/asyncio-task.rst:1086 +msgid "Added the *eager_start* parameter." +msgstr "" + +#: library/asyncio-task.rst:1091 msgid "Return ``True`` if the Task is *done*." msgstr "" -#: library/asyncio-task.rst:1027 +#: library/asyncio-task.rst:1093 msgid "" "A Task is *done* when the wrapped coroutine either returned a value, raised " "an exception, or the Task was cancelled." msgstr "" -#: library/asyncio-task.rst:1032 +#: library/asyncio-task.rst:1098 msgid "Return the result of the Task." msgstr "" -#: library/asyncio-task.rst:1034 +#: library/asyncio-task.rst:1100 msgid "" "If the Task is *done*, the result of the wrapped coroutine is returned (or " "if the coroutine raised an exception, that exception is re-raised.)" msgstr "" -#: library/asyncio-task.rst:1052 +#: library/asyncio-task.rst:1118 msgid "" "If the Task has been *cancelled*, this method raises a :exc:`CancelledError` " "exception." msgstr "" -#: library/asyncio-task.rst:1041 +#: library/asyncio-task.rst:1107 msgid "" "If the Task's result isn't yet available, this method raises a :exc:" "`InvalidStateError` exception." msgstr "" -#: library/asyncio-task.rst:1046 +#: library/asyncio-task.rst:1112 msgid "Return the exception of the Task." msgstr "" -#: library/asyncio-task.rst:1048 +#: library/asyncio-task.rst:1114 msgid "" "If the wrapped coroutine raised an exception that exception is returned. If " "the wrapped coroutine returned normally this method returns ``None``." msgstr "" -#: library/asyncio-task.rst:1055 +#: library/asyncio-task.rst:1121 msgid "" "If the Task isn't *done* yet, this method raises an :exc:`InvalidStateError` " "exception." msgstr "" -#: library/asyncio-task.rst:1060 +#: library/asyncio-task.rst:1126 msgid "Add a callback to be run when the Task is *done*." msgstr "" -#: library/asyncio-task.rst:1071 +#: library/asyncio-task.rst:1137 msgid "This method should only be used in low-level callback-based code." msgstr "" -#: library/asyncio-task.rst:1064 +#: library/asyncio-task.rst:1130 msgid "" "See the documentation of :meth:`Future.add_done_callback` for more details." msgstr "" -#: library/asyncio-task.rst:1069 +#: library/asyncio-task.rst:1135 msgid "Remove *callback* from the callbacks list." msgstr "" -#: library/asyncio-task.rst:1073 +#: library/asyncio-task.rst:1139 msgid "" "See the documentation of :meth:`Future.remove_done_callback` for more " "details." msgstr "" -#: library/asyncio-task.rst:1078 +#: library/asyncio-task.rst:1144 msgid "Return the list of stack frames for this Task." msgstr "" -#: library/asyncio-task.rst:1080 +#: library/asyncio-task.rst:1146 msgid "" "If the wrapped coroutine is not done, this returns the stack where it is " "suspended. If the coroutine has completed successfully or was cancelled, " @@ -1035,15 +1110,15 @@ msgid "" "this returns the list of traceback frames." msgstr "" -#: library/asyncio-task.rst:1086 +#: library/asyncio-task.rst:1152 msgid "The frames are always ordered from oldest to newest." msgstr "" -#: library/asyncio-task.rst:1088 +#: library/asyncio-task.rst:1154 msgid "Only one stack frame is returned for a suspended coroutine." msgstr "" -#: library/asyncio-task.rst:1090 +#: library/asyncio-task.rst:1156 msgid "" "The optional *limit* argument sets the maximum number of frames to return; " "by default all available frames are returned. The ordering of the returned " @@ -1052,66 +1127,81 @@ msgid "" "are returned. (This matches the behavior of the traceback module.)" msgstr "" -#: library/asyncio-task.rst:1099 +#: library/asyncio-task.rst:1165 msgid "Print the stack or traceback for this Task." msgstr "" -#: library/asyncio-task.rst:1101 +#: library/asyncio-task.rst:1167 msgid "" "This produces output similar to that of the traceback module for the frames " "retrieved by :meth:`get_stack`." msgstr "" -#: library/asyncio-task.rst:1104 +#: library/asyncio-task.rst:1170 msgid "The *limit* argument is passed to :meth:`get_stack` directly." msgstr "" -#: library/asyncio-task.rst:1106 +#: library/asyncio-task.rst:1172 msgid "" "The *file* argument is an I/O stream to which the output is written; by " "default output is written to :data:`sys.stdout`." msgstr "" -#: library/asyncio-task.rst:1111 +#: library/asyncio-task.rst:1177 msgid "Return the coroutine object wrapped by the :class:`Task`." msgstr "" -#: library/asyncio-task.rst:1117 +#: library/asyncio-task.rst:1181 +msgid "" +"This will return ``None`` for Tasks which have already completed eagerly. " +"See the :ref:`Eager Task Factory `." +msgstr "" + +#: library/asyncio-task.rst:1188 +msgid "Newly added eager task execution means result may be ``None``." +msgstr "" + +#: library/asyncio-task.rst:1192 +msgid "" +"Return the :class:`contextvars.Context` object associated with the task." +msgstr "" + +#: library/asyncio-task.rst:1199 msgid "Return the name of the Task." msgstr "" -#: library/asyncio-task.rst:1119 +#: library/asyncio-task.rst:1201 msgid "" "If no name has been explicitly assigned to the Task, the default asyncio " "Task implementation generates a default name during instantiation." msgstr "" -#: library/asyncio-task.rst:1127 +#: library/asyncio-task.rst:1209 msgid "Set the name of the Task." msgstr "" -#: library/asyncio-task.rst:1129 +#: library/asyncio-task.rst:1211 msgid "" "The *value* argument can be any object, which is then converted to a string." msgstr "" -#: library/asyncio-task.rst:1132 +#: library/asyncio-task.rst:1214 msgid "" "In the default Task implementation, the name will be visible in the :func:" "`repr` output of a task object." msgstr "" -#: library/asyncio-task.rst:1139 +#: library/asyncio-task.rst:1221 msgid "Request the Task to be cancelled." msgstr "" -#: library/asyncio-task.rst:1141 +#: library/asyncio-task.rst:1223 msgid "" "This arranges for a :exc:`CancelledError` exception to be thrown into the " "wrapped coroutine on the next cycle of the event loop." msgstr "" -#: library/asyncio-task.rst:1144 +#: library/asyncio-task.rst:1226 msgid "" "The coroutine then has a chance to clean up or even deny the request by " "suppressing the exception with a :keyword:`try` ... ... ``except " @@ -1123,46 +1213,46 @@ msgid "" "addition to catching the exception." msgstr "" -#: library/asyncio-task.rst:1154 +#: library/asyncio-task.rst:1236 msgid "Added the *msg* parameter." msgstr "" -#: library/asyncio-task.rst:1157 +#: library/asyncio-task.rst:1239 msgid "The ``msg`` parameter is propagated from cancelled task to its awaiter." msgstr "" -#: library/asyncio-task.rst:1162 +#: library/asyncio-task.rst:1244 msgid "" "The following example illustrates how coroutines can intercept the " "cancellation request::" msgstr "" -#: library/asyncio-task.rst:1201 +#: library/asyncio-task.rst:1283 msgid "Return ``True`` if the Task is *cancelled*." msgstr "" -#: library/asyncio-task.rst:1203 +#: library/asyncio-task.rst:1285 msgid "" "The Task is *cancelled* when the cancellation was requested with :meth:" "`cancel` and the wrapped coroutine propagated the :exc:`CancelledError` " "exception thrown into it." msgstr "" -#: library/asyncio-task.rst:1209 +#: library/asyncio-task.rst:1291 msgid "Decrement the count of cancellation requests to this Task." msgstr "" -#: library/asyncio-task.rst:1211 +#: library/asyncio-task.rst:1293 msgid "Returns the remaining number of cancellation requests." msgstr "" -#: library/asyncio-task.rst:1213 +#: library/asyncio-task.rst:1295 msgid "" "Note that once execution of a cancelled task completed, further calls to :" "meth:`uncancel` are ineffective." msgstr "" -#: library/asyncio-task.rst:1218 +#: library/asyncio-task.rst:1300 msgid "" "This method is used by asyncio's internals and isn't expected to be used by " "end-user code. In particular, if a Task gets successfully uncancelled, this " @@ -1171,7 +1261,7 @@ msgid "" "respective structured block. For example::" msgstr "" -#: library/asyncio-task.rst:1236 +#: library/asyncio-task.rst:1318 msgid "" "While the block with ``make_request()`` and ``make_another_request()`` might " "get cancelled due to the timeout, ``unrelated_code()`` should continue " @@ -1180,20 +1270,20 @@ msgid "" "similar fashion." msgstr "" -#: library/asyncio-task.rst:1242 +#: library/asyncio-task.rst:1324 msgid "" "If end-user code is, for some reason, suppresing cancellation by catching :" "exc:`CancelledError`, it needs to call this method to remove the " "cancellation state." msgstr "" -#: library/asyncio-task.rst:1248 +#: library/asyncio-task.rst:1330 msgid "" "Return the number of pending cancellation requests to this Task, i.e., the " "number of calls to :meth:`cancel` less the number of :meth:`uncancel` calls." msgstr "" -#: library/asyncio-task.rst:1252 +#: library/asyncio-task.rst:1334 msgid "" "Note that if this number is greater than zero but the Task is still " "executing, :meth:`cancelled` will still return ``False``. This is because " @@ -1202,7 +1292,7 @@ msgid "" "to zero." msgstr "" -#: library/asyncio-task.rst:1258 +#: library/asyncio-task.rst:1340 msgid "" "This method is used by asyncio's internals and isn't expected to be used by " "end-user code. See :meth:`uncancel` for more details." diff --git a/library/asyncore.po b/library/asyncore.po deleted file mode 100644 index 2bf628d10..000000000 --- a/library/asyncore.po +++ /dev/null @@ -1,375 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: library/asyncore.rst:2 -msgid ":mod:`asyncore` --- Asynchronous socket handler" -msgstr "" - -#: library/asyncore.rst:14 -msgid "**Source code:** :source:`Lib/asyncore.py`" -msgstr "" - -#: library/asyncore.rst:20 -msgid "" -"The :mod:`asyncore` module is deprecated (see :pep:`PEP 594 <594#asyncore>` " -"for details). Please use :mod:`asyncio` instead." -msgstr "" - -#: library/asyncore.rst:25 -msgid "" -"This module exists for backwards compatibility only. For new code we " -"recommend using :mod:`asyncio`." -msgstr "" - -#: library/asyncore.rst:28 -msgid "" -"This module provides the basic infrastructure for writing asynchronous " -"socket service clients and servers." -msgstr "" - -#: includes/wasm-notavail.rst:3 -msgid ":ref:`Availability `: not Emscripten, not WASI." -msgstr "" - -#: includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly platforms " -"``wasm32-emscripten`` and ``wasm32-wasi``. See :ref:`wasm-availability` for " -"more information." -msgstr "" - -#: library/asyncore.rst:33 -msgid "" -"There are only two ways to have a program on a single processor do \"more " -"than one thing at a time.\" Multi-threaded programming is the simplest and " -"most popular way to do it, but there is another very different technique, " -"that lets you have nearly all the advantages of multi-threading, without " -"actually using multiple threads. It's really only practical if your " -"program is largely I/O bound. If your program is processor bound, then pre-" -"emptive scheduled threads are probably what you really need. Network " -"servers are rarely processor bound, however." -msgstr "" - -#: library/asyncore.rst:42 -msgid "" -"If your operating system supports the :c:func:`select` system call in its I/" -"O library (and nearly all do), then you can use it to juggle multiple " -"communication channels at once; doing other work while your I/O is taking " -"place in the \"background.\" Although this strategy can seem strange and " -"complex, especially at first, it is in many ways easier to understand and " -"control than multi-threaded programming. The :mod:`asyncore` module solves " -"many of the difficult problems for you, making the task of building " -"sophisticated high-performance network servers and clients a snap. For " -"\"conversational\" applications and protocols the companion :mod:`asynchat` " -"module is invaluable." -msgstr "" - -#: library/asyncore.rst:53 -msgid "" -"The basic idea behind both modules is to create one or more network " -"*channels*, instances of class :class:`asyncore.dispatcher` and :class:" -"`asynchat.async_chat`. Creating the channels adds them to a global map, " -"used by the :func:`loop` function if you do not provide it with your own " -"*map*." -msgstr "" - -#: library/asyncore.rst:59 -msgid "" -"Once the initial channel(s) is(are) created, calling the :func:`loop` " -"function activates channel service, which continues until the last channel " -"(including any that have been added to the map during asynchronous service) " -"is closed." -msgstr "" - -#: library/asyncore.rst:66 -msgid "" -"Enter a polling loop that terminates after count passes or all open channels " -"have been closed. All arguments are optional. The *count* parameter " -"defaults to ``None``, resulting in the loop terminating only when all " -"channels have been closed. The *timeout* argument sets the timeout " -"parameter for the appropriate :func:`~select.select` or :func:`~select.poll` " -"call, measured in seconds; the default is 30 seconds. The *use_poll* " -"parameter, if true, indicates that :func:`~select.poll` should be used in " -"preference to :func:`~select.select` (the default is ``False``)." -msgstr "" - -#: library/asyncore.rst:75 -msgid "" -"The *map* parameter is a dictionary whose items are the channels to watch. " -"As channels are closed they are deleted from their map. If *map* is " -"omitted, a global map is used. Channels (instances of :class:`asyncore." -"dispatcher`, :class:`asynchat.async_chat` and subclasses thereof) can freely " -"be mixed in the map." -msgstr "" - -#: library/asyncore.rst:84 -msgid "" -"The :class:`dispatcher` class is a thin wrapper around a low-level socket " -"object. To make it more useful, it has a few methods for event-handling " -"which are called from the asynchronous loop. Otherwise, it can be treated " -"as a normal non-blocking socket object." -msgstr "" - -#: library/asyncore.rst:89 -msgid "" -"The firing of low-level events at certain times or in certain connection " -"states tells the asynchronous loop that certain higher-level events have " -"taken place. For example, if we have asked for a socket to connect to " -"another host, we know that the connection has been made when the socket " -"becomes writable for the first time (at this point you know that you may " -"write to it with the expectation of success). The implied higher-level " -"events are:" -msgstr "" - -#: library/asyncore.rst:98 -msgid "Event" -msgstr "" - -#: library/asyncore.rst:98 -msgid "Description" -msgstr "" - -#: library/asyncore.rst:100 -msgid "``handle_connect()``" -msgstr "" - -#: library/asyncore.rst:100 -msgid "Implied by the first read or write event" -msgstr "" - -#: library/asyncore.rst:103 -msgid "``handle_close()``" -msgstr "" - -#: library/asyncore.rst:103 -msgid "Implied by a read event with no data available" -msgstr "" - -#: library/asyncore.rst:106 -msgid "``handle_accepted()``" -msgstr "" - -#: library/asyncore.rst:106 -msgid "Implied by a read event on a listening socket" -msgstr "" - -#: library/asyncore.rst:110 -msgid "" -"During asynchronous processing, each mapped channel's :meth:`readable` and :" -"meth:`writable` methods are used to determine whether the channel's socket " -"should be added to the list of channels :c:func:`select`\\ ed or :c:func:" -"`poll`\\ ed for read and write events." -msgstr "" - -#: library/asyncore.rst:115 -msgid "" -"Thus, the set of channel events is larger than the basic socket events. The " -"full set of methods that can be overridden in your subclass follows:" -msgstr "" - -#: library/asyncore.rst:121 -msgid "" -"Called when the asynchronous loop detects that a :meth:`read` call on the " -"channel's socket will succeed." -msgstr "" - -#: library/asyncore.rst:127 -msgid "" -"Called when the asynchronous loop detects that a writable socket can be " -"written. Often this method will implement the necessary buffering for " -"performance. For example::" -msgstr "" - -#: library/asyncore.rst:138 -msgid "" -"Called when there is out of band (OOB) data for a socket connection. This " -"will almost never happen, as OOB is tenuously supported and rarely used." -msgstr "" - -#: library/asyncore.rst:144 -msgid "" -"Called when the active opener's socket actually makes a connection. Might " -"send a \"welcome\" banner, or initiate a protocol negotiation with the " -"remote endpoint, for example." -msgstr "" - -#: library/asyncore.rst:151 -msgid "Called when the socket is closed." -msgstr "" - -#: library/asyncore.rst:156 -msgid "" -"Called when an exception is raised and not otherwise handled. The default " -"version prints a condensed traceback." -msgstr "" - -#: library/asyncore.rst:162 -msgid "" -"Called on listening channels (passive openers) when a connection can be " -"established with a new remote endpoint that has issued a :meth:`connect` " -"call for the local endpoint. Deprecated in version 3.2; use :meth:" -"`handle_accepted` instead." -msgstr "" - -#: library/asyncore.rst:172 -msgid "" -"Called on listening channels (passive openers) when a connection has been " -"established with a new remote endpoint that has issued a :meth:`connect` " -"call for the local endpoint. *sock* is a *new* socket object usable to send " -"and receive data on the connection, and *addr* is the address bound to the " -"socket on the other end of the connection." -msgstr "" - -#: library/asyncore.rst:183 -msgid "" -"Called each time around the asynchronous loop to determine whether a " -"channel's socket should be added to the list on which read events can " -"occur. The default method simply returns ``True``, indicating that by " -"default, all channels will be interested in read events." -msgstr "" - -#: library/asyncore.rst:191 -msgid "" -"Called each time around the asynchronous loop to determine whether a " -"channel's socket should be added to the list on which write events can " -"occur. The default method simply returns ``True``, indicating that by " -"default, all channels will be interested in write events." -msgstr "" - -#: library/asyncore.rst:197 -msgid "" -"In addition, each channel delegates or extends many of the socket methods. " -"Most of these are nearly identical to their socket partners." -msgstr "" - -#: library/asyncore.rst:203 -msgid "" -"This is identical to the creation of a normal socket, and will use the same " -"options for creation. Refer to the :mod:`socket` documentation for " -"information on creating sockets." -msgstr "" - -#: library/asyncore.rst:207 -msgid "*family* and *type* arguments can be omitted." -msgstr "" - -#: library/asyncore.rst:213 -msgid "" -"As with the normal socket object, *address* is a tuple with the first " -"element the host to connect to, and the second the port number." -msgstr "" - -#: library/asyncore.rst:219 -msgid "Send *data* to the remote end-point of the socket." -msgstr "" - -#: library/asyncore.rst:224 -msgid "" -"Read at most *buffer_size* bytes from the socket's remote end-point. An " -"empty bytes object implies that the channel has been closed from the other " -"end." -msgstr "" - -#: library/asyncore.rst:228 -msgid "" -"Note that :meth:`recv` may raise :exc:`BlockingIOError` , even though :func:" -"`select.select` or :func:`select.poll` has reported the socket ready for " -"reading." -msgstr "" - -#: library/asyncore.rst:235 -msgid "" -"Listen for connections made to the socket. The *backlog* argument specifies " -"the maximum number of queued connections and should be at least 1; the " -"maximum value is system-dependent (usually 5)." -msgstr "" - -#: library/asyncore.rst:242 -msgid "" -"Bind the socket to *address*. The socket must not already be bound. (The " -"format of *address* depends on the address family --- refer to the :mod:" -"`socket` documentation for more information.) To mark the socket as re-" -"usable (setting the :const:`SO_REUSEADDR` option), call the :class:" -"`dispatcher` object's :meth:`set_reuse_addr` method." -msgstr "" - -#: library/asyncore.rst:251 -msgid "" -"Accept a connection. The socket must be bound to an address and listening " -"for connections. The return value can be either ``None`` or a pair ``(conn, " -"address)`` where *conn* is a *new* socket object usable to send and receive " -"data on the connection, and *address* is the address bound to the socket on " -"the other end of the connection. When ``None`` is returned it means the " -"connection didn't take place, in which case the server should just ignore " -"this event and keep listening for further incoming connections." -msgstr "" - -#: library/asyncore.rst:263 -msgid "" -"Close the socket. All future operations on the socket object will fail. The " -"remote end-point will receive no more data (after queued data is flushed). " -"Sockets are automatically closed when they are garbage-collected." -msgstr "" - -#: library/asyncore.rst:271 -msgid "" -"A :class:`dispatcher` subclass which adds simple buffered output capability, " -"useful for simple clients. For more sophisticated usage use :class:`asynchat." -"async_chat`." -msgstr "" - -#: library/asyncore.rst:277 -msgid "" -"A file_dispatcher takes a file descriptor or :term:`file object` along with " -"an optional map argument and wraps it for use with the :c:func:`poll` or :c:" -"func:`loop` functions. If provided a file object or anything with a :c:func:" -"`fileno` method, that method will be called and passed to the :class:" -"`file_wrapper` constructor." -msgstr "" - -#: library/asyncore.rst:292 -msgid ":ref:`Availability `: Unix." -msgstr "" - -#: library/asyncore.rst:287 -msgid "" -"A file_wrapper takes an integer file descriptor and calls :func:`os.dup` to " -"duplicate the handle so that the original handle may be closed independently " -"of the file_wrapper. This class implements sufficient methods to emulate a " -"socket for use by the :class:`file_dispatcher` class." -msgstr "" - -#: library/asyncore.rst:298 -msgid "asyncore Example basic HTTP client" -msgstr "" - -#: library/asyncore.rst:300 -msgid "" -"Here is a very basic HTTP client that uses the :class:`dispatcher` class to " -"implement its socket handling::" -msgstr "" - -#: library/asyncore.rst:337 -msgid "asyncore Example basic echo server" -msgstr "" - -#: library/asyncore.rst:339 -msgid "" -"Here is a basic echo server that uses the :class:`dispatcher` class to " -"accept connections and dispatches the incoming connections to a handler::" -msgstr "" diff --git a/library/atexit.po b/library/atexit.po index 71e6f2435..58e80f87b 100644 --- a/library/atexit.po +++ b/library/atexit.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -80,7 +80,21 @@ msgid "" "decorator." msgstr "" -#: library/atexit.rst:54 +#: library/atexit.rst:52 +msgid "" +"Starting new threads or calling :func:`os.fork` from a registered function " +"can lead to race condition between the main Python runtime thread freeing " +"thread states while internal :mod:`threading` routines or the new process " +"try to use that state. This can lead to crashes rather than clean shutdown." +msgstr "" + +#: library/atexit.rst:58 +msgid "" +"Attempts to start a new thread or :func:`os.fork` a new process in a " +"registered function now leads to :exc:`RuntimeError`." +msgstr "" + +#: library/atexit.rst:64 msgid "" "Remove *func* from the list of functions to be run at interpreter shutdown. :" "func:`unregister` silently does nothing if *func* was not previously " @@ -90,21 +104,21 @@ msgid "" "references do not need to have matching identities." msgstr "" -#: library/atexit.rst:65 +#: library/atexit.rst:75 msgid "Module :mod:`readline`" msgstr "" -#: library/atexit.rst:65 +#: library/atexit.rst:75 msgid "" "Useful example of :mod:`atexit` to read and write :mod:`readline` history " "files." msgstr "" -#: library/atexit.rst:72 +#: library/atexit.rst:82 msgid ":mod:`atexit` Example" msgstr "" -#: library/atexit.rst:74 +#: library/atexit.rst:84 msgid "" "The following simple example demonstrates how a module can initialize a " "counter from a file when it is imported and save the counter's updated value " @@ -112,16 +126,16 @@ msgid "" "making an explicit call into this module at termination. ::" msgstr "" -#: library/atexit.rst:97 +#: library/atexit.rst:107 msgid "" "Positional and keyword arguments may also be passed to :func:`register` to " "be passed along to the registered function when it is called::" msgstr "" -#: library/atexit.rst:109 +#: library/atexit.rst:119 msgid "Usage as a :term:`decorator`::" msgstr "" -#: library/atexit.rst:117 +#: library/atexit.rst:127 msgid "This only works with functions that can be called without arguments." msgstr "" diff --git a/library/bisect.po b/library/bisect.po index 089630269..a8446173d 100644 --- a/library/bisect.po +++ b/library/bisect.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -28,18 +28,26 @@ msgstr "" msgid "" "This module provides support for maintaining a list in sorted order without " "having to sort the list after each insertion. For long lists of items with " -"expensive comparison operations, this can be an improvement over the more " -"common approach. The module is called :mod:`bisect` because it uses a basic " -"bisection algorithm to do its work. The source code may be most useful as a " -"working example of the algorithm (the boundary conditions are already " -"right!)." +"expensive comparison operations, this can be an improvement over linear " +"searches or frequent resorting." msgstr "" -#: library/bisect.rst:23 +#: library/bisect.rst:19 +msgid "" +"The module is called :mod:`bisect` because it uses a basic bisection " +"algorithm to do its work. Unlike other bisection tools that search for a " +"specific value, the functions in this module are designed to locate an " +"insertion point. Accordingly, the functions never call an :meth:`__eq__` " +"method to determine whether a value has been found. Instead, the functions " +"only call the :meth:`__lt__` method and will return an insertion point " +"between values in an array." +msgstr "" + +#: library/bisect.rst:29 msgid "The following functions are provided:" msgstr "" -#: library/bisect.rst:28 +#: library/bisect.rst:34 msgid "" "Locate the insertion point for *x* in *a* to maintain sorted order. The " "parameters *lo* and *hi* may be used to specify a subset of the list which " @@ -49,41 +57,43 @@ msgid "" "parameter to ``list.insert()`` assuming that *a* is already sorted." msgstr "" -#: library/bisect.rst:35 +#: library/bisect.rst:41 msgid "" -"The returned insertion point *i* partitions the array *a* into two halves so " -"that ``all(val < x for val in a[lo : i])`` for the left side and ``all(val " -">= x for val in a[i : hi])`` for the right side." +"The returned insertion point *ip* partitions the array *a* into two slices " +"such that ``all(elem < x for elem in a[lo : ip])`` is true for the left " +"slice and ``all(elem >= x for elem in a[ip : hi])`` is true for the right " +"slice." msgstr "" -#: library/bisect.rst:60 +#: library/bisect.rst:46 msgid "" "*key* specifies a :term:`key function` of one argument that is used to " "extract a comparison key from each element in the array. To support " "searching complex records, the key function is not applied to the *x* value." msgstr "" -#: library/bisect.rst:64 +#: library/bisect.rst:50 msgid "" -"If *key* is ``None``, the elements are compared directly with no intervening " -"function call." +"If *key* is ``None``, the elements are compared directly and no key function " +"is called." msgstr "" #: library/bisect.rst:67 library/bisect.rst:105 msgid "Added the *key* parameter." msgstr "" -#: library/bisect.rst:53 +#: library/bisect.rst:60 msgid "" "Similar to :py:func:`~bisect.bisect_left`, but returns an insertion point " "which comes after (to the right of) any existing entries of *x* in *a*." msgstr "" -#: library/bisect.rst:56 +#: library/bisect.rst:63 msgid "" -"The returned insertion point *i* partitions the array *a* into two halves so " -"that ``all(val <= x for val in a[lo : i])`` for the left side and ``all(val " -"> x for val in a[i : hi])`` for the right side." +"The returned insertion point *ip* partitions the array *a* into two slices " +"such that ``all(elem <= x for elem in a[lo : ip])`` is true for the left " +"slice and ``all(elem > x for elem in a[ip : hi])`` is true for the right " +"slice." msgstr "" #: library/bisect.rst:73 diff --git a/library/calendar.po b/library/calendar.po index d55c7d2b4..f5b7ac4c2 100644 --- a/library/calendar.po +++ b/library/calendar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -400,147 +400,168 @@ msgid "" "locale." msgstr "" -#: library/calendar.rst:399 +#: library/calendar.rst:405 +msgid "" +"Aliases for the days of the week, where ``MONDAY`` is ``0`` and ``SUNDAY`` " +"is ``6``." +msgstr "" + +#: library/calendar.rst:413 +msgid "" +"Enumeration defining days of the week as integer constants. The members of " +"this enumeration are exported to the module scope as :data:`MONDAY` through :" +"data:`SUNDAY`." +msgstr "" + +#: library/calendar.rst:422 msgid "" "An array that represents the months of the year in the current locale. This " "follows normal convention of January being month number 1, so it has a " "length of 13 and ``month_name[0]`` is the empty string." msgstr "" -#: library/calendar.rst:406 +#: library/calendar.rst:429 msgid "" "An array that represents the abbreviated months of the year in the current " "locale. This follows normal convention of January being month number 1, so " "it has a length of 13 and ``month_abbr[0]`` is the empty string." msgstr "" -#: library/calendar.rst:418 +#: library/calendar.rst:447 msgid "" -"Aliases for day numbers, where ``MONDAY`` is ``0`` and ``SUNDAY`` is ``6``." +"Aliases for the months of the year, where ``JANUARY`` is ``1`` and " +"``DECEMBER`` is ``12``." msgstr "" -#: library/calendar.rst:421 +#: library/calendar.rst:455 +msgid "" +"Enumeration defining months of the year as integer constants. The members of " +"this enumeration are exported to the module scope as :data:`JANUARY` " +"through :data:`DECEMBER`." +msgstr "" + +#: library/calendar.rst:462 msgid "The :mod:`calendar` module defines the following exceptions:" msgstr "" -#: library/calendar.rst:425 +#: library/calendar.rst:466 msgid "" "A subclass of :exc:`ValueError`, raised when the given month number is " "outside of the range 1-12 (inclusive)." msgstr "" -#: library/calendar.rst:430 +#: library/calendar.rst:471 msgid "The invalid month number." msgstr "" -#: library/calendar.rst:435 +#: library/calendar.rst:476 msgid "" "A subclass of :exc:`ValueError`, raised when the given weekday number is " "outside of the range 0-6 (inclusive)." msgstr "" -#: library/calendar.rst:440 +#: library/calendar.rst:481 msgid "The invalid weekday number." msgstr "" -#: library/calendar.rst:447 +#: library/calendar.rst:488 msgid "Module :mod:`datetime`" msgstr "" -#: library/calendar.rst:446 +#: library/calendar.rst:487 msgid "" "Object-oriented interface to dates and times with similar functionality to " "the :mod:`time` module." msgstr "" -#: library/calendar.rst:449 +#: library/calendar.rst:490 msgid "Module :mod:`time`" msgstr "" -#: library/calendar.rst:450 +#: library/calendar.rst:491 msgid "Low-level time related functions." msgstr "" -#: library/calendar.rst:456 +#: library/calendar.rst:497 msgid "Command-Line Usage" msgstr "" -#: library/calendar.rst:460 +#: library/calendar.rst:501 msgid "" "The :mod:`calendar` module can be executed as a script from the command line " "to interactively print a calendar." msgstr "" -#: library/calendar.rst:470 +#: library/calendar.rst:511 msgid "For example, to print a calendar for the year 2000:" msgstr "" -#: library/calendar.rst:513 +#: library/calendar.rst:554 msgid "The following options are accepted:" msgstr "" -#: library/calendar.rst:520 +#: library/calendar.rst:561 msgid "Show the help message and exit." msgstr "" -#: library/calendar.rst:525 +#: library/calendar.rst:566 msgid "The locale to use for month and weekday names. Defaults to English." msgstr "" -#: library/calendar.rst:531 +#: library/calendar.rst:572 msgid "" "The encoding to use for output. :option:`--encoding` is required if :option:" "`--locale` is set." msgstr "" -#: library/calendar.rst:537 +#: library/calendar.rst:578 msgid "Print the calendar to the terminal as text, or as an HTML document." msgstr "" -#: library/calendar.rst:543 +#: library/calendar.rst:584 msgid "" "The year to print the calendar for. Must be a number between 1 and 9999. " "Defaults to the current year." msgstr "" -#: library/calendar.rst:550 +#: library/calendar.rst:591 msgid "" "The month of the specified :option:`year` to print the calendar for. Must be " "a number between 1 and 12, and may only be used in text mode. Defaults to " "printing a calendar for the full year." msgstr "" -#: library/calendar.rst:556 +#: library/calendar.rst:597 msgid "*Text-mode options:*" msgstr "" -#: library/calendar.rst:560 +#: library/calendar.rst:601 msgid "" "The width of the date column in terminal columns. The date is printed " "centred in the column. Any value lower than 2 is ignored. Defaults to 2." msgstr "" -#: library/calendar.rst:568 +#: library/calendar.rst:609 msgid "" "The number of lines for each week in terminal rows. The date is printed top-" "aligned. Any value lower than 1 is ignored. Defaults to 1." msgstr "" -#: library/calendar.rst:576 +#: library/calendar.rst:617 msgid "" "The space between months in columns. Any value lower than 2 is ignored. " "Defaults to 6." msgstr "" -#: library/calendar.rst:583 +#: library/calendar.rst:624 msgid "The number of months printed per row. Defaults to 3." msgstr "" -#: library/calendar.rst:587 +#: library/calendar.rst:628 msgid "*HTML-mode options:*" msgstr "" -#: library/calendar.rst:591 +#: library/calendar.rst:632 msgid "" "The path of a CSS stylesheet to use for the calendar. This must either be " "relative to the generated HTML, or an absolute HTTP or ``file:///`` URL." diff --git a/library/collections.abc.po b/library/collections.abc.po index abab76f28..36538af24 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -391,11 +391,19 @@ msgstr "" msgid "``aclose``, ``__aiter__``, ``__anext__``" msgstr "" -#: library/collections.abc.rst:184 -msgid "Footnotes" +#: library/collections.abc.rst:180 +msgid ":class:`Buffer` [1]_" +msgstr "" + +#: library/collections.abc.rst:180 +msgid "``__buffer__``" msgstr "" #: library/collections.abc.rst:185 +msgid "Footnotes" +msgstr "" + +#: library/collections.abc.rst:186 msgid "" "These ABCs override :meth:`object.__subclasshook__` to support testing an " "interface by verifying the required methods are present and have not been " @@ -403,7 +411,7 @@ msgid "" "interfaces require registration or direct subclassing." msgstr "" -#: library/collections.abc.rst:191 +#: library/collections.abc.rst:192 msgid "" "Checking ``isinstance(obj, Iterable)`` detects classes that are registered " "as :class:`Iterable` or that have an :meth:`__iter__` method, but it does " @@ -412,31 +420,31 @@ msgid "" "call ``iter(obj)``." msgstr "" -#: library/collections.abc.rst:199 +#: library/collections.abc.rst:200 msgid "Collections Abstract Base Classes -- Detailed Descriptions" msgstr "" -#: library/collections.abc.rst:204 +#: library/collections.abc.rst:205 msgid "ABC for classes that provide the :meth:`__contains__` method." msgstr "" -#: library/collections.abc.rst:208 +#: library/collections.abc.rst:209 msgid "ABC for classes that provide the :meth:`__hash__` method." msgstr "" -#: library/collections.abc.rst:212 +#: library/collections.abc.rst:213 msgid "ABC for classes that provide the :meth:`__len__` method." msgstr "" -#: library/collections.abc.rst:216 +#: library/collections.abc.rst:217 msgid "ABC for classes that provide the :meth:`__call__` method." msgstr "" -#: library/collections.abc.rst:220 +#: library/collections.abc.rst:221 msgid "ABC for classes that provide the :meth:`__iter__` method." msgstr "" -#: library/collections.abc.rst:222 +#: library/collections.abc.rst:223 msgid "" "Checking ``isinstance(obj, Iterable)`` detects classes that are registered " "as :class:`Iterable` or that have an :meth:`__iter__` method, but it does " @@ -445,22 +453,22 @@ msgid "" "call ``iter(obj)``." msgstr "" -#: library/collections.abc.rst:230 +#: library/collections.abc.rst:231 msgid "ABC for sized iterable container classes." msgstr "" -#: library/collections.abc.rst:236 +#: library/collections.abc.rst:237 msgid "" "ABC for classes that provide the :meth:`~iterator.__iter__` and :meth:" "`~iterator.__next__` methods. See also the definition of :term:`iterator`." msgstr "" -#: library/collections.abc.rst:242 +#: library/collections.abc.rst:243 msgid "" "ABC for iterable classes that also provide the :meth:`__reversed__` method." msgstr "" -#: library/collections.abc.rst:249 +#: library/collections.abc.rst:250 msgid "" "ABC for generator classes that implement the protocol defined in :pep:`342` " "that extends iterators with the :meth:`~generator.send`, :meth:`~generator." @@ -468,11 +476,11 @@ msgid "" "term:`generator`." msgstr "" -#: library/collections.abc.rst:260 +#: library/collections.abc.rst:261 msgid "ABCs for read-only and mutable :term:`sequences `." msgstr "" -#: library/collections.abc.rst:262 +#: library/collections.abc.rst:263 msgid "" "Implementation note: Some of the mixin methods, such as :meth:`__iter__`, :" "meth:`__reversed__` and :meth:`index`, make repeated calls to the " @@ -483,37 +491,44 @@ msgid "" "likely need to be overridden." msgstr "" -#: library/collections.abc.rst:271 +#: library/collections.abc.rst:272 msgid "The index() method added support for *stop* and *start* arguments." msgstr "" -#: library/collections.abc.rst:278 +#: library/collections.abc.rst:280 +msgid "" +"The :class:`ByteString` ABC has been deprecated. For use in typing, prefer a " +"union, like ``bytes | bytearray``, or :class:`collections.abc.Buffer`. For " +"use as an ABC, prefer :class:`Sequence` or :class:`collections.abc.Buffer`." +msgstr "" + +#: library/collections.abc.rst:285 msgid "ABCs for read-only and mutable sets." msgstr "" -#: library/collections.abc.rst:283 +#: library/collections.abc.rst:290 msgid "ABCs for read-only and mutable :term:`mappings `." msgstr "" -#: library/collections.abc.rst:290 +#: library/collections.abc.rst:297 msgid "" "ABCs for mapping, items, keys, and values :term:`views `." msgstr "" -#: library/collections.abc.rst:294 +#: library/collections.abc.rst:301 msgid "" "ABC for :term:`awaitable` objects, which can be used in :keyword:`await` " "expressions. Custom implementations must provide the :meth:`__await__` " "method." msgstr "" -#: library/collections.abc.rst:298 +#: library/collections.abc.rst:305 msgid "" ":term:`Coroutine ` objects and instances of the :class:" "`~collections.abc.Coroutine` ABC are all instances of this ABC." msgstr "" -#: library/collections.abc.rst:302 +#: library/collections.abc.rst:309 msgid "" "In CPython, generator-based coroutines (generators decorated with :func:" "`types.coroutine`) are *awaitables*, even though they do not have an :meth:" @@ -521,7 +536,7 @@ msgid "" "return ``False``. Use :func:`inspect.isawaitable` to detect them." msgstr "" -#: library/collections.abc.rst:312 +#: library/collections.abc.rst:319 msgid "" "ABC for coroutine compatible classes. These implement the following " "methods, defined in :ref:`coroutine-objects`: :meth:`~coroutine.send`, :meth:" @@ -531,7 +546,7 @@ msgid "" "`coroutine`." msgstr "" -#: library/collections.abc.rst:320 +#: library/collections.abc.rst:327 msgid "" "In CPython, generator-based coroutines (generators decorated with :func:" "`types.coroutine`) are *awaitables*, even though they do not have an :meth:" @@ -539,35 +554,41 @@ msgid "" "return ``False``. Use :func:`inspect.isawaitable` to detect them." msgstr "" -#: library/collections.abc.rst:330 +#: library/collections.abc.rst:337 msgid "" "ABC for classes that provide ``__aiter__`` method. See also the definition " "of :term:`asynchronous iterable`." msgstr "" -#: library/collections.abc.rst:337 +#: library/collections.abc.rst:344 msgid "" "ABC for classes that provide ``__aiter__`` and ``__anext__`` methods. See " "also the definition of :term:`asynchronous iterator`." msgstr "" -#: library/collections.abc.rst:344 +#: library/collections.abc.rst:351 msgid "" "ABC for asynchronous generator classes that implement the protocol defined " "in :pep:`525` and :pep:`492`." msgstr "" -#: library/collections.abc.rst:350 +#: library/collections.abc.rst:358 +msgid "" +"ABC for classes that provide the :meth:`~object.__buffer__` method, " +"implementing the :ref:`buffer protocol `. See :pep:`688`." +msgstr "" + +#: library/collections.abc.rst:364 msgid "Examples and Recipes" msgstr "" -#: library/collections.abc.rst:352 +#: library/collections.abc.rst:366 msgid "" "ABCs allow us to ask classes or instances if they provide particular " "functionality, for example::" msgstr "" -#: library/collections.abc.rst:359 +#: library/collections.abc.rst:373 msgid "" "Several of the ABCs are also useful as mixins that make it easier to develop " "classes supporting container APIs. For example, to write a class supporting " @@ -577,11 +598,11 @@ msgid "" "`__and__` and :meth:`isdisjoint`::" msgstr "" -#: library/collections.abc.rst:388 +#: library/collections.abc.rst:402 msgid "Notes on using :class:`Set` and :class:`MutableSet` as a mixin:" msgstr "" -#: library/collections.abc.rst:391 +#: library/collections.abc.rst:405 msgid "" "Since some set operations create new sets, the default mixin methods need a " "way to create new instances from an iterable. The class constructor is " @@ -594,14 +615,14 @@ msgid "" "iterable argument." msgstr "" -#: library/collections.abc.rst:402 +#: library/collections.abc.rst:416 msgid "" "To override the comparisons (presumably for speed, as the semantics are " "fixed), redefine :meth:`__le__` and :meth:`__ge__`, then the other " "operations will automatically follow suit." msgstr "" -#: library/collections.abc.rst:407 +#: library/collections.abc.rst:421 msgid "" "The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash " "value for the set; however, :meth:`__hash__` is not defined because not all " @@ -610,12 +631,12 @@ msgid "" "``__hash__ = Set._hash``." msgstr "" -#: library/collections.abc.rst:415 +#: library/collections.abc.rst:429 msgid "" "`OrderedSet recipe `_ for an " "example built on :class:`MutableSet`." msgstr "" -#: library/collections.abc.rst:418 +#: library/collections.abc.rst:432 msgid "For more about ABCs, see the :mod:`abc` module and :pep:`3119`." msgstr "" diff --git a/library/collections.po b/library/collections.po index 620b95163..108b7d4da 100644 --- a/library/collections.po +++ b/library/collections.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -281,7 +281,7 @@ msgid "" "example::" msgstr "" -#: library/collections.rst:244 +#: library/collections.rst:245 msgid "" "A :class:`Counter` is a :class:`dict` subclass for counting :term:`hashable` " "objects. It is a collection where elements are stored as dictionary keys and " @@ -290,25 +290,25 @@ msgid "" "is similar to bags or multisets in other languages." msgstr "" -#: library/collections.rst:250 +#: library/collections.rst:251 msgid "" "Elements are counted from an *iterable* or initialized from another " "*mapping* (or counter):" msgstr "" -#: library/collections.rst:258 +#: library/collections.rst:259 msgid "" "Counter objects have a dictionary interface except that they return a zero " "count for missing items instead of raising a :exc:`KeyError`:" msgstr "" -#: library/collections.rst:265 +#: library/collections.rst:266 msgid "" "Setting a count to zero does not remove an element from a counter. Use " "``del`` to remove it entirely:" msgstr "" -#: library/collections.rst:273 +#: library/collections.rst:274 msgid "" "As a :class:`dict` subclass, :class:`Counter` inherited the capability to " "remember insertion order. Math operations on *Counter* objects also " @@ -317,20 +317,20 @@ msgid "" "right operand." msgstr "" -#: library/collections.rst:279 +#: library/collections.rst:280 msgid "" "Counter objects support additional methods beyond those available for all " "dictionaries:" msgstr "" -#: library/collections.rst:284 +#: library/collections.rst:285 msgid "" "Return an iterator over elements repeating each as many times as its count. " "Elements are returned in the order first encountered. If an element's count " "is less than one, :meth:`elements` will ignore it." msgstr "" -#: library/collections.rst:294 +#: library/collections.rst:295 msgid "" "Return a list of the *n* most common elements and their counts from the most " "common to the least. If *n* is omitted or ``None``, :meth:`most_common` " @@ -338,28 +338,28 @@ msgid "" "ordered in the order first encountered:" msgstr "" -#: library/collections.rst:304 +#: library/collections.rst:305 msgid "" "Elements are subtracted from an *iterable* or from another *mapping* (or " "counter). Like :meth:`dict.update` but subtracts counts instead of " "replacing them. Both inputs and outputs may be zero or negative." msgstr "" -#: library/collections.rst:318 +#: library/collections.rst:319 msgid "Compute the sum of the counts." msgstr "" -#: library/collections.rst:326 +#: library/collections.rst:327 msgid "" "The usual dictionary methods are available for :class:`Counter` objects " "except for two which work differently for counters." msgstr "" -#: library/collections.rst:331 +#: library/collections.rst:332 msgid "This class method is not implemented for :class:`Counter` objects." msgstr "" -#: library/collections.rst:335 +#: library/collections.rst:336 msgid "" "Elements are counted from an *iterable* or added-in from another *mapping* " "(or counter). Like :meth:`dict.update` but adds counts instead of replacing " @@ -367,7 +367,7 @@ msgid "" "sequence of ``(key, value)`` pairs." msgstr "" -#: library/collections.rst:340 +#: library/collections.rst:341 msgid "" "Counters support rich comparison operators for equality, subset, and " "superset relationships: ``==``, ``!=``, ``<``, ``<=``, ``>``, ``>=``. All of " @@ -375,22 +375,22 @@ msgid "" "``Counter(a=1) == Counter(a=1, b=0)`` returns true." msgstr "" -#: library/collections.rst:345 +#: library/collections.rst:346 msgid "Rich comparison operations were added." msgstr "" -#: library/collections.rst:348 +#: library/collections.rst:349 msgid "" "In equality tests, missing elements are treated as having zero counts. " "Formerly, ``Counter(a=3)`` and ``Counter(a=3, b=0)`` were considered " "distinct." msgstr "" -#: library/collections.rst:353 +#: library/collections.rst:354 msgid "Common patterns for working with :class:`Counter` objects::" msgstr "" -#: library/collections.rst:365 +#: library/collections.rst:366 msgid "" "Several mathematical operations are provided for combining :class:`Counter` " "objects to produce multisets (counters that have counts greater than zero). " @@ -401,18 +401,18 @@ msgid "" "but the output will exclude results with counts of zero or less." msgstr "" -#: library/collections.rst:390 +#: library/collections.rst:391 msgid "" "Unary addition and subtraction are shortcuts for adding an empty counter or " "subtracting from an empty counter." msgstr "" -#: library/collections.rst:399 +#: library/collections.rst:400 msgid "" "Added support for unary plus, unary minus, and in-place multiset operations." msgstr "" -#: library/collections.rst:404 +#: library/collections.rst:405 msgid "" "Counters were primarily designed to work with positive integers to represent " "running counts; however, care was taken to not unnecessarily preclude use " @@ -420,20 +420,20 @@ msgid "" "this section documents the minimum range and type restrictions." msgstr "" -#: library/collections.rst:409 +#: library/collections.rst:410 msgid "" "The :class:`Counter` class itself is a dictionary subclass with no " "restrictions on its keys and values. The values are intended to be numbers " "representing counts, but you *could* store anything in the value field." msgstr "" -#: library/collections.rst:413 +#: library/collections.rst:414 msgid "" "The :meth:`~Counter.most_common` method requires only that the values be " "orderable." msgstr "" -#: library/collections.rst:415 +#: library/collections.rst:416 msgid "" "For in-place operations such as ``c[key] += 1``, the value type need only " "support addition and subtraction. So fractions, floats, and decimals would " @@ -442,7 +442,7 @@ msgid "" "zero values for both inputs and outputs." msgstr "" -#: library/collections.rst:421 +#: library/collections.rst:422 msgid "" "The multiset methods are designed only for use cases with positive values. " "The inputs may be negative or zero, but only outputs with positive values " @@ -450,54 +450,54 @@ msgid "" "support addition, subtraction, and comparison." msgstr "" -#: library/collections.rst:426 +#: library/collections.rst:427 msgid "" "The :meth:`~Counter.elements` method requires integer counts. It ignores " "zero and negative counts." msgstr "" -#: library/collections.rst:431 +#: library/collections.rst:432 msgid "" "`Bag class `_ in Smalltalk." msgstr "" -#: library/collections.rst:434 +#: library/collections.rst:435 msgid "" "Wikipedia entry for `Multisets `_." msgstr "" -#: library/collections.rst:436 +#: library/collections.rst:437 msgid "" "`C++ multisets `_ tutorial with examples." msgstr "" -#: library/collections.rst:439 +#: library/collections.rst:440 msgid "" "For mathematical operations on multisets and their use cases, see *Knuth, " "Donald. The Art of Computer Programming Volume II, Section 4.6.3, Exercise " "19*." msgstr "" -#: library/collections.rst:443 +#: library/collections.rst:444 msgid "" "To enumerate all distinct multisets of a given size over a given set of " "elements, see :func:`itertools.combinations_with_replacement`::" msgstr "" -#: library/collections.rst:450 +#: library/collections.rst:451 msgid ":class:`deque` objects" msgstr "" -#: library/collections.rst:454 +#: library/collections.rst:455 msgid "" "Returns a new deque object initialized left-to-right (using :meth:`append`) " "with data from *iterable*. If *iterable* is not specified, the new deque is " "empty." msgstr "" -#: library/collections.rst:457 +#: library/collections.rst:458 msgid "" "Deques are a generalization of stacks and queues (the name is pronounced " "\"deck\" and is short for \"double-ended queue\"). Deques support thread-" @@ -505,7 +505,7 @@ msgid "" "approximately the same O(1) performance in either direction." msgstr "" -#: library/collections.rst:462 +#: library/collections.rst:463 msgid "" "Though :class:`list` objects support similar operations, they are optimized " "for fast fixed-length operations and incur O(n) memory movement costs for " @@ -513,7 +513,7 @@ msgid "" "position of the underlying data representation." msgstr "" -#: library/collections.rst:468 +#: library/collections.rst:469 msgid "" "If *maxlen* is not specified or is ``None``, deques may grow to an arbitrary " "length. Otherwise, the deque is bounded to the specified maximum length. " @@ -524,104 +524,104 @@ msgid "" "only the most recent activity is of interest." msgstr "" -#: library/collections.rst:477 +#: library/collections.rst:478 msgid "Deque objects support the following methods:" msgstr "" -#: library/collections.rst:481 +#: library/collections.rst:482 msgid "Add *x* to the right side of the deque." msgstr "" -#: library/collections.rst:486 +#: library/collections.rst:487 msgid "Add *x* to the left side of the deque." msgstr "" -#: library/collections.rst:491 +#: library/collections.rst:492 msgid "Remove all elements from the deque leaving it with length 0." msgstr "" -#: library/collections.rst:496 +#: library/collections.rst:497 msgid "Create a shallow copy of the deque." msgstr "" -#: library/collections.rst:503 +#: library/collections.rst:504 msgid "Count the number of deque elements equal to *x*." msgstr "" -#: library/collections.rst:510 +#: library/collections.rst:511 msgid "" "Extend the right side of the deque by appending elements from the iterable " "argument." msgstr "" -#: library/collections.rst:516 +#: library/collections.rst:517 msgid "" "Extend the left side of the deque by appending elements from *iterable*. " "Note, the series of left appends results in reversing the order of elements " "in the iterable argument." msgstr "" -#: library/collections.rst:523 +#: library/collections.rst:524 msgid "" "Return the position of *x* in the deque (at or after index *start* and " "before index *stop*). Returns the first match or raises :exc:`ValueError` " "if not found." msgstr "" -#: library/collections.rst:532 +#: library/collections.rst:533 msgid "Insert *x* into the deque at position *i*." msgstr "" -#: library/collections.rst:534 +#: library/collections.rst:535 msgid "" "If the insertion would cause a bounded deque to grow beyond *maxlen*, an :" "exc:`IndexError` is raised." msgstr "" -#: library/collections.rst:542 +#: library/collections.rst:543 msgid "" "Remove and return an element from the right side of the deque. If no " "elements are present, raises an :exc:`IndexError`." msgstr "" -#: library/collections.rst:548 +#: library/collections.rst:549 msgid "" "Remove and return an element from the left side of the deque. If no elements " "are present, raises an :exc:`IndexError`." msgstr "" -#: library/collections.rst:554 +#: library/collections.rst:555 msgid "" "Remove the first occurrence of *value*. If not found, raises a :exc:" "`ValueError`." msgstr "" -#: library/collections.rst:560 +#: library/collections.rst:561 msgid "Reverse the elements of the deque in-place and then return ``None``." msgstr "" -#: library/collections.rst:567 +#: library/collections.rst:568 msgid "" "Rotate the deque *n* steps to the right. If *n* is negative, rotate to the " "left." msgstr "" -#: library/collections.rst:570 +#: library/collections.rst:571 msgid "" "When the deque is not empty, rotating one step to the right is equivalent to " "``d.appendleft(d.pop())``, and rotating one step to the left is equivalent " "to ``d.append(d.popleft())``." msgstr "" -#: library/collections.rst:575 +#: library/collections.rst:576 msgid "Deque objects also provide one read-only attribute:" msgstr "" -#: library/collections.rst:579 +#: library/collections.rst:580 msgid "Maximum size of a deque or ``None`` if unbounded." msgstr "" -#: library/collections.rst:584 +#: library/collections.rst:585 msgid "" "In addition to the above, deques support iteration, pickling, ``len(d)``, " "``reversed(d)``, ``copy.copy(d)``, ``copy.deepcopy(d)``, membership testing " @@ -630,37 +630,37 @@ msgid "" "to O(n) in the middle. For fast random access, use lists instead." msgstr "" -#: library/collections.rst:590 +#: library/collections.rst:591 msgid "" "Starting in version 3.5, deques support ``__add__()``, ``__mul__()``, and " "``__imul__()``." msgstr "" -#: library/collections.rst:593 +#: library/collections.rst:594 msgid "Example:" msgstr "" -#: library/collections.rst:650 +#: library/collections.rst:651 msgid ":class:`deque` Recipes" msgstr "" -#: library/collections.rst:652 +#: library/collections.rst:653 msgid "This section shows various approaches to working with deques." msgstr "" -#: library/collections.rst:654 +#: library/collections.rst:655 msgid "" "Bounded length deques provide functionality similar to the ``tail`` filter " "in Unix::" msgstr "" -#: library/collections.rst:662 +#: library/collections.rst:663 msgid "" "Another approach to using deques is to maintain a sequence of recently added " "elements by appending to the right and popping to the left::" msgstr "" -#: library/collections.rst:677 +#: library/collections.rst:678 msgid "" "A `round-robin scheduler `_ can be implemented with input iterators stored in a :" @@ -670,14 +670,14 @@ msgid "" "rotate` method::" msgstr "" -#: library/collections.rst:696 +#: library/collections.rst:697 msgid "" "The :meth:`~deque.rotate` method provides a way to implement :class:`deque` " "slicing and deletion. For example, a pure Python implementation of ``del " "d[n]`` relies on the ``rotate()`` method to position elements to be popped::" msgstr "" -#: library/collections.rst:705 +#: library/collections.rst:706 msgid "" "To implement :class:`deque` slicing, use a similar approach applying :meth:" "`~deque.rotate` to bring a target element to the left side of the deque. " @@ -687,11 +687,11 @@ msgid "" "as ``dup``, ``drop``, ``swap``, ``over``, ``pick``, ``rot``, and ``roll``." msgstr "" -#: library/collections.rst:715 +#: library/collections.rst:716 msgid ":class:`defaultdict` objects" msgstr "" -#: library/collections.rst:719 +#: library/collections.rst:720 msgid "" "Return a new dictionary-like object. :class:`defaultdict` is a subclass of " "the built-in :class:`dict` class. It overrides one method and adds one " @@ -699,7 +699,7 @@ msgid "" "the :class:`dict` class and is not documented here." msgstr "" -#: library/collections.rst:724 +#: library/collections.rst:725 msgid "" "The first argument provides the initial value for the :attr:" "`default_factory` attribute; it defaults to ``None``. All remaining " @@ -707,39 +707,39 @@ msgid "" "constructor, including keyword arguments." msgstr "" -#: library/collections.rst:730 +#: library/collections.rst:731 msgid "" ":class:`defaultdict` objects support the following method in addition to the " "standard :class:`dict` operations:" msgstr "" -#: library/collections.rst:735 +#: library/collections.rst:736 msgid "" "If the :attr:`default_factory` attribute is ``None``, this raises a :exc:" "`KeyError` exception with the *key* as argument." msgstr "" -#: library/collections.rst:738 +#: library/collections.rst:739 msgid "" "If :attr:`default_factory` is not ``None``, it is called without arguments " "to provide a default value for the given *key*, this value is inserted in " "the dictionary for the *key*, and returned." msgstr "" -#: library/collections.rst:742 +#: library/collections.rst:743 msgid "" "If calling :attr:`default_factory` raises an exception this exception is " "propagated unchanged." msgstr "" -#: library/collections.rst:745 +#: library/collections.rst:746 msgid "" "This method is called by the :meth:`__getitem__` method of the :class:`dict` " "class when the requested key is not found; whatever it returns or raises is " "then returned or raised by :meth:`__getitem__`." msgstr "" -#: library/collections.rst:749 +#: library/collections.rst:750 msgid "" "Note that :meth:`__missing__` is *not* called for any operations besides :" "meth:`__getitem__`. This means that :meth:`get` will, like normal " @@ -747,33 +747,33 @@ msgid "" "`default_factory`." msgstr "" -#: library/collections.rst:755 +#: library/collections.rst:756 msgid ":class:`defaultdict` objects support the following instance variable:" msgstr "" -#: library/collections.rst:760 +#: library/collections.rst:761 msgid "" "This attribute is used by the :meth:`__missing__` method; it is initialized " "from the first argument to the constructor, if present, or to ``None``, if " "absent." msgstr "" -#: library/collections.rst:1180 +#: library/collections.rst:1182 msgid "" "Added merge (``|``) and update (``|=``) operators, specified in :pep:`584`." msgstr "" -#: library/collections.rst:770 +#: library/collections.rst:771 msgid ":class:`defaultdict` Examples" msgstr "" -#: library/collections.rst:772 +#: library/collections.rst:773 msgid "" "Using :class:`list` as the :attr:`~defaultdict.default_factory`, it is easy " "to group a sequence of key-value pairs into a dictionary of lists:" msgstr "" -#: library/collections.rst:783 +#: library/collections.rst:784 msgid "" "When each key is encountered for the first time, it is not already in the " "mapping; so an entry is automatically created using the :attr:`~defaultdict." @@ -785,14 +785,14 @@ msgid "" "using :meth:`dict.setdefault`:" msgstr "" -#: library/collections.rst:798 +#: library/collections.rst:799 msgid "" "Setting the :attr:`~defaultdict.default_factory` to :class:`int` makes the :" "class:`defaultdict` useful for counting (like a bag or multiset in other " "languages):" msgstr "" -#: library/collections.rst:810 +#: library/collections.rst:811 msgid "" "When a letter is first encountered, it is missing from the mapping, so the :" "attr:`~defaultdict.default_factory` function calls :func:`int` to supply a " @@ -800,7 +800,7 @@ msgid "" "each letter." msgstr "" -#: library/collections.rst:814 +#: library/collections.rst:815 msgid "" "The function :func:`int` which always returns zero is just a special case of " "constant functions. A faster and more flexible way to create constant " @@ -808,17 +808,17 @@ msgid "" "(not just zero):" msgstr "" -#: library/collections.rst:826 +#: library/collections.rst:828 msgid "" "Setting the :attr:`~defaultdict.default_factory` to :class:`set` makes the :" "class:`defaultdict` useful for building a dictionary of sets:" msgstr "" -#: library/collections.rst:839 +#: library/collections.rst:841 msgid ":func:`namedtuple` Factory Function for Tuples with Named Fields" msgstr "" -#: library/collections.rst:841 +#: library/collections.rst:843 msgid "" "Named tuples assign meaning to each position in a tuple and allow for more " "readable, self-documenting code. They can be used wherever regular tuples " @@ -826,7 +826,7 @@ msgid "" "position index." msgstr "" -#: library/collections.rst:847 +#: library/collections.rst:849 msgid "" "Returns a new tuple subclass named *typename*. The new subclass is used to " "create tuple-like objects that have fields accessible by attribute lookup as " @@ -835,14 +835,14 @@ msgid "" "`__repr__` method which lists the tuple contents in a ``name=value`` format." msgstr "" -#: library/collections.rst:853 +#: library/collections.rst:855 msgid "" "The *field_names* are a sequence of strings such as ``['x', 'y']``. " "Alternatively, *field_names* can be a single string with each fieldname " "separated by whitespace and/or commas, for example ``'x y'`` or ``'x, y'``." msgstr "" -#: library/collections.rst:857 +#: library/collections.rst:859 msgid "" "Any valid Python identifier may be used for a fieldname except for names " "starting with an underscore. Valid identifiers consist of letters, digits, " @@ -850,7 +850,7 @@ msgid "" "mod:`keyword` such as *class*, *for*, *return*, *global*, *pass*, or *raise*." msgstr "" -#: library/collections.rst:863 +#: library/collections.rst:865 msgid "" "If *rename* is true, invalid fieldnames are automatically replaced with " "positional names. For example, ``['abc', 'def', 'ghi', 'abc']`` is " @@ -858,7 +858,7 @@ msgid "" "and the duplicate fieldname ``abc``." msgstr "" -#: library/collections.rst:868 +#: library/collections.rst:870 msgid "" "*defaults* can be ``None`` or an :term:`iterable` of default values. Since " "fields with a default value must come after any fields without a default, " @@ -868,76 +868,76 @@ msgid "" "will default to ``2``." msgstr "" -#: library/collections.rst:875 +#: library/collections.rst:877 msgid "" "If *module* is defined, the ``__module__`` attribute of the named tuple is " "set to that value." msgstr "" -#: library/collections.rst:878 +#: library/collections.rst:880 msgid "" "Named tuple instances do not have per-instance dictionaries, so they are " "lightweight and require no more memory than regular tuples." msgstr "" -#: library/collections.rst:881 +#: library/collections.rst:883 msgid "" "To support pickling, the named tuple class should be assigned to a variable " "that matches *typename*." msgstr "" -#: library/collections.rst:884 +#: library/collections.rst:886 msgid "Added support for *rename*." msgstr "" -#: library/collections.rst:887 +#: library/collections.rst:889 msgid "" "The *verbose* and *rename* parameters became :ref:`keyword-only arguments " "`." msgstr "" -#: library/collections.rst:891 +#: library/collections.rst:893 msgid "Added the *module* parameter." msgstr "" -#: library/collections.rst:894 +#: library/collections.rst:896 msgid "Removed the *verbose* parameter and the :attr:`_source` attribute." msgstr "" -#: library/collections.rst:897 +#: library/collections.rst:899 msgid "" "Added the *defaults* parameter and the :attr:`_field_defaults` attribute." msgstr "" -#: library/collections.rst:917 +#: library/collections.rst:919 msgid "" "Named tuples are especially useful for assigning field names to result " "tuples returned by the :mod:`csv` or :mod:`sqlite3` modules::" msgstr "" -#: library/collections.rst:933 +#: library/collections.rst:935 msgid "" "In addition to the methods inherited from tuples, named tuples support three " "additional methods and two attributes. To prevent conflicts with field " "names, the method and attribute names start with an underscore." msgstr "" -#: library/collections.rst:939 +#: library/collections.rst:941 msgid "" "Class method that makes a new instance from an existing sequence or iterable." msgstr "" -#: library/collections.rst:949 +#: library/collections.rst:951 msgid "" "Return a new :class:`dict` which maps field names to their corresponding " "values:" msgstr "" -#: library/collections.rst:958 +#: library/collections.rst:960 msgid "Returns an :class:`OrderedDict` instead of a regular :class:`dict`." msgstr "" -#: library/collections.rst:961 +#: library/collections.rst:963 msgid "" "Returns a regular :class:`dict` instead of an :class:`OrderedDict`. As of " "Python 3.7, regular dicts are guaranteed to be ordered. If the extra " @@ -945,89 +945,89 @@ msgid "" "to cast the result to the desired type: ``OrderedDict(nt._asdict())``." msgstr "" -#: library/collections.rst:970 +#: library/collections.rst:972 msgid "" "Return a new instance of the named tuple replacing specified fields with new " "values::" msgstr "" -#: library/collections.rst:982 +#: library/collections.rst:984 msgid "" "Tuple of strings listing the field names. Useful for introspection and for " "creating new named tuple types from existing named tuples." msgstr "" -#: library/collections.rst:997 +#: library/collections.rst:999 msgid "Dictionary mapping field names to default values." msgstr "" -#: library/collections.rst:1007 +#: library/collections.rst:1009 msgid "" "To retrieve a field whose name is stored in a string, use the :func:" "`getattr` function:" msgstr "" -#: library/collections.rst:1013 +#: library/collections.rst:1015 msgid "" "To convert a dictionary to a named tuple, use the double-star-operator (as " "described in :ref:`tut-unpacking-arguments`):" msgstr "" -#: library/collections.rst:1020 +#: library/collections.rst:1022 msgid "" "Since a named tuple is a regular Python class, it is easy to add or change " "functionality with a subclass. Here is how to add a calculated field and a " "fixed-width print format:" msgstr "" -#: library/collections.rst:1039 +#: library/collections.rst:1041 msgid "" "The subclass shown above sets ``__slots__`` to an empty tuple. This helps " "keep memory requirements low by preventing the creation of instance " "dictionaries." msgstr "" -#: library/collections.rst:1042 +#: library/collections.rst:1044 msgid "" "Subclassing is not useful for adding new, stored fields. Instead, simply " "create a new named tuple type from the :attr:`~somenamedtuple._fields` " "attribute:" msgstr "" -#: library/collections.rst:1047 +#: library/collections.rst:1049 msgid "" "Docstrings can be customized by making direct assignments to the ``__doc__`` " "fields:" msgstr "" -#: library/collections.rst:1056 +#: library/collections.rst:1058 msgid "Property docstrings became writeable." msgstr "" -#: library/collections.rst:1061 +#: library/collections.rst:1063 msgid "" "See :class:`typing.NamedTuple` for a way to add type hints for named " "tuples. It also provides an elegant notation using the :keyword:`class` " "keyword::" msgstr "" -#: library/collections.rst:1070 +#: library/collections.rst:1072 msgid "" "See :meth:`types.SimpleNamespace` for a mutable namespace based on an " "underlying dictionary instead of a tuple." msgstr "" -#: library/collections.rst:1073 +#: library/collections.rst:1075 msgid "" "The :mod:`dataclasses` module provides a decorator and functions for " "automatically adding generated special methods to user-defined classes." msgstr "" -#: library/collections.rst:1078 +#: library/collections.rst:1080 msgid ":class:`OrderedDict` objects" msgstr "" -#: library/collections.rst:1080 +#: library/collections.rst:1082 msgid "" "Ordered dictionaries are just like regular dictionaries but have some extra " "capabilities relating to ordering operations. They have become less " @@ -1035,91 +1035,91 @@ msgid "" "remember insertion order (this new behavior became guaranteed in Python 3.7)." msgstr "" -#: library/collections.rst:1086 +#: library/collections.rst:1088 msgid "Some differences from :class:`dict` still remain:" msgstr "" -#: library/collections.rst:1088 +#: library/collections.rst:1090 msgid "" "The regular :class:`dict` was designed to be very good at mapping " "operations. Tracking insertion order was secondary." msgstr "" -#: library/collections.rst:1091 +#: library/collections.rst:1093 msgid "" "The :class:`OrderedDict` was designed to be good at reordering operations. " "Space efficiency, iteration speed, and the performance of update operations " "were secondary." msgstr "" -#: library/collections.rst:1095 +#: library/collections.rst:1097 msgid "" "The :class:`OrderedDict` algorithm can handle frequent reordering operations " "better than :class:`dict`. As shown in the recipes below, this makes it " "suitable for implementing various kinds of LRU caches." msgstr "" -#: library/collections.rst:1099 +#: library/collections.rst:1101 msgid "" "The equality operation for :class:`OrderedDict` checks for matching order." msgstr "" -#: library/collections.rst:1101 +#: library/collections.rst:1103 msgid "" "A regular :class:`dict` can emulate the order sensitive equality test with " "``p == q and all(k1 == k2 for k1, k2 in zip(p, q))``." msgstr "" -#: library/collections.rst:1104 +#: library/collections.rst:1106 msgid "" "The :meth:`popitem` method of :class:`OrderedDict` has a different " "signature. It accepts an optional argument to specify which item is popped." msgstr "" -#: library/collections.rst:1107 +#: library/collections.rst:1109 msgid "" "A regular :class:`dict` can emulate OrderedDict's ``od.popitem(last=True)`` " "with ``d.popitem()`` which is guaranteed to pop the rightmost (last) item." msgstr "" -#: library/collections.rst:1110 +#: library/collections.rst:1112 msgid "" "A regular :class:`dict` can emulate OrderedDict's ``od.popitem(last=False)`` " "with ``(k := next(iter(d)), d.pop(k))`` which will return and remove the " "leftmost (first) item if it exists." msgstr "" -#: library/collections.rst:1114 +#: library/collections.rst:1116 msgid "" ":class:`OrderedDict` has a :meth:`move_to_end` method to efficiently " "reposition an element to an endpoint." msgstr "" -#: library/collections.rst:1117 +#: library/collections.rst:1119 msgid "" "A regular :class:`dict` can emulate OrderedDict's ``od.move_to_end(k, " "last=True)`` with ``d[k] = d.pop(k)`` which will move the key and its " "associated value to the rightmost (last) position." msgstr "" -#: library/collections.rst:1121 +#: library/collections.rst:1123 msgid "" "A regular :class:`dict` does not have an efficient equivalent for " "OrderedDict's ``od.move_to_end(k, last=False)`` which moves the key and its " "associated value to the leftmost (first) position." msgstr "" -#: library/collections.rst:1125 +#: library/collections.rst:1127 msgid "Until Python 3.8, :class:`dict` lacked a :meth:`__reversed__` method." msgstr "" -#: library/collections.rst:1130 +#: library/collections.rst:1132 msgid "" "Return an instance of a :class:`dict` subclass that has methods specialized " "for rearranging dictionary order." msgstr "" -#: library/collections.rst:1137 +#: library/collections.rst:1139 msgid "" "The :meth:`popitem` method for ordered dictionaries returns and removes a " "(key, value) pair. The pairs are returned in :abbr:`LIFO (last-in, first-" @@ -1127,20 +1127,20 @@ msgid "" "false." msgstr "" -#: library/collections.rst:1144 +#: library/collections.rst:1146 msgid "" "Move an existing *key* to either end of an ordered dictionary. The item is " "moved to the right end if *last* is true (the default) or to the beginning " "if *last* is false. Raises :exc:`KeyError` if the *key* does not exist:" msgstr "" -#: library/collections.rst:1161 +#: library/collections.rst:1163 msgid "" "In addition to the usual mapping methods, ordered dictionaries also support " "reverse iteration using :func:`reversed`." msgstr "" -#: library/collections.rst:1164 +#: library/collections.rst:1166 msgid "" "Equality tests between :class:`OrderedDict` objects are order-sensitive and " "are implemented as ``list(od1.items())==list(od2.items())``. Equality tests " @@ -1150,23 +1150,23 @@ msgid "" "dictionary is used." msgstr "" -#: library/collections.rst:1171 +#: library/collections.rst:1173 msgid "" "The items, keys, and values :term:`views ` of :class:" "`OrderedDict` now support reverse iteration using :func:`reversed`." msgstr "" -#: library/collections.rst:1175 +#: library/collections.rst:1177 msgid "" "With the acceptance of :pep:`468`, order is retained for keyword arguments " "passed to the :class:`OrderedDict` constructor and its :meth:`update` method." msgstr "" -#: library/collections.rst:1185 +#: library/collections.rst:1187 msgid ":class:`OrderedDict` Examples and Recipes" msgstr "" -#: library/collections.rst:1187 +#: library/collections.rst:1189 msgid "" "It is straightforward to create an ordered dictionary variant that remembers " "the order the keys were *last* inserted. If a new entry overwrites an " @@ -1174,17 +1174,17 @@ msgid "" "end::" msgstr "" -#: library/collections.rst:1199 +#: library/collections.rst:1201 msgid "" "An :class:`OrderedDict` would also be useful for implementing variants of :" "func:`functools.lru_cache`:" msgstr "" -#: library/collections.rst:1297 +#: library/collections.rst:1300 msgid ":class:`UserDict` objects" msgstr "" -#: library/collections.rst:1299 +#: library/collections.rst:1302 msgid "" "The class, :class:`UserDict` acts as a wrapper around dictionary objects. " "The need for this class has been partially supplanted by the ability to " @@ -1192,7 +1192,7 @@ msgid "" "work with because the underlying dictionary is accessible as an attribute." msgstr "" -#: library/collections.rst:1307 +#: library/collections.rst:1310 msgid "" "Class that simulates a dictionary. The instance's contents are kept in a " "regular dictionary, which is accessible via the :attr:`data` attribute of :" @@ -1201,22 +1201,22 @@ msgid "" "not be kept, allowing it to be used for other purposes." msgstr "" -#: library/collections.rst:1313 +#: library/collections.rst:1316 msgid "" "In addition to supporting the methods and operations of mappings, :class:" "`UserDict` instances provide the following attribute:" msgstr "" -#: library/collections.rst:1318 +#: library/collections.rst:1321 msgid "" "A real dictionary used to store the contents of the :class:`UserDict` class." msgstr "" -#: library/collections.rst:1324 +#: library/collections.rst:1327 msgid ":class:`UserList` objects" msgstr "" -#: library/collections.rst:1326 +#: library/collections.rst:1329 msgid "" "This class acts as a wrapper around list objects. It is a useful base class " "for your own list-like classes which can inherit from them and override " @@ -1224,14 +1224,14 @@ msgid "" "lists." msgstr "" -#: library/collections.rst:1331 +#: library/collections.rst:1334 msgid "" "The need for this class has been partially supplanted by the ability to " "subclass directly from :class:`list`; however, this class can be easier to " "work with because the underlying list is accessible as an attribute." msgstr "" -#: library/collections.rst:1337 +#: library/collections.rst:1340 msgid "" "Class that simulates a list. The instance's contents are kept in a regular " "list, which is accessible via the :attr:`data` attribute of :class:" @@ -1240,19 +1240,19 @@ msgid "" "for example a real Python list or a :class:`UserList` object." msgstr "" -#: library/collections.rst:1343 +#: library/collections.rst:1346 msgid "" "In addition to supporting the methods and operations of mutable sequences, :" "class:`UserList` instances provide the following attribute:" msgstr "" -#: library/collections.rst:1348 +#: library/collections.rst:1351 msgid "" "A real :class:`list` object used to store the contents of the :class:" "`UserList` class." msgstr "" -#: library/collections.rst:1351 +#: library/collections.rst:1354 msgid "" "**Subclassing requirements:** Subclasses of :class:`UserList` are expected " "to offer a constructor which can be called with either no arguments or one " @@ -1262,7 +1262,7 @@ msgid "" "object used as a data source." msgstr "" -#: library/collections.rst:1358 +#: library/collections.rst:1361 msgid "" "If a derived class does not wish to comply with this requirement, all of the " "special methods supported by this class will need to be overridden; please " @@ -1270,11 +1270,11 @@ msgid "" "provided in that case." msgstr "" -#: library/collections.rst:1364 +#: library/collections.rst:1367 msgid ":class:`UserString` objects" msgstr "" -#: library/collections.rst:1366 +#: library/collections.rst:1369 msgid "" "The class, :class:`UserString` acts as a wrapper around string objects. The " "need for this class has been partially supplanted by the ability to subclass " @@ -1282,7 +1282,7 @@ msgid "" "because the underlying string is accessible as an attribute." msgstr "" -#: library/collections.rst:1374 +#: library/collections.rst:1377 msgid "" "Class that simulates a string object. The instance's content is kept in a " "regular string object, which is accessible via the :attr:`data` attribute " @@ -1291,19 +1291,19 @@ msgid "" "converted into a string using the built-in :func:`str` function." msgstr "" -#: library/collections.rst:1381 +#: library/collections.rst:1384 msgid "" "In addition to supporting the methods and operations of strings, :class:" "`UserString` instances provide the following attribute:" msgstr "" -#: library/collections.rst:1386 +#: library/collections.rst:1389 msgid "" "A real :class:`str` object used to store the contents of the :class:" "`UserString` class." msgstr "" -#: library/collections.rst:1389 +#: library/collections.rst:1392 msgid "" "New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, " "``isprintable``, and ``maketrans``." diff --git a/library/concurrent.futures.po b/library/concurrent.futures.po index fc8bc69e8..ea2ee54df 100644 --- a/library/concurrent.futures.po +++ b/library/concurrent.futures.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -216,7 +216,7 @@ msgid "" "easier debugging." msgstr "" -#: library/concurrent.futures.rst:179 library/concurrent.futures.rst:281 +#: library/concurrent.futures.rst:179 library/concurrent.futures.rst:282 msgid "Added the *initializer* and *initargs* arguments." msgstr "" @@ -274,12 +274,13 @@ msgid "" "be raised. On Windows, *max_workers* must be less than or equal to ``61``. " "If it is not then :exc:`ValueError` will be raised. If *max_workers* is " "``None``, then the default chosen will be at most ``61``, even if more " -"processors are available. *mp_context* can be a multiprocessing context or " -"None. It will be used to launch the workers. If *mp_context* is ``None`` or " -"not given, the default multiprocessing context is used." +"processors are available. *mp_context* can be a :mod:`multiprocessing` " +"context or ``None``. It will be used to launch the workers. If *mp_context* " +"is ``None`` or not given, the default :mod:`multiprocessing` context is " +"used. See :ref:`multiprocessing-start-methods`." msgstr "" -#: library/concurrent.futures.rst:257 +#: library/concurrent.futures.rst:258 msgid "" "*initializer* is an optional callable that is called at the start of each " "worker process; *initargs* is a tuple of arguments passed to the " @@ -288,7 +289,7 @@ msgid "" "well as any attempt to submit more jobs to the pool." msgstr "" -#: library/concurrent.futures.rst:263 +#: library/concurrent.futures.rst:264 msgid "" "*max_tasks_per_child* is an optional argument that specifies the maximum " "number of tasks a single process can execute before it will exit and be " @@ -299,7 +300,7 @@ msgid "" "with the \"fork\" start method." msgstr "" -#: library/concurrent.futures.rst:271 +#: library/concurrent.futures.rst:272 msgid "" "When one of the worker processes terminates abruptly, a :exc:" "`BrokenProcessPool` error is now raised. Previously, behaviour was " @@ -307,40 +308,49 @@ msgid "" "or deadlock." msgstr "" -#: library/concurrent.futures.rst:277 +#: library/concurrent.futures.rst:278 msgid "" "The *mp_context* argument was added to allow users to control the " "start_method for worker processes created by the pool." msgstr "" -#: library/concurrent.futures.rst:283 +#: library/concurrent.futures.rst:285 +msgid "" +"The default :mod:`multiprocessing` start method (see :ref:`multiprocessing-" +"start-methods`) will change away from *fork* in Python 3.14. Code that " +"requires *fork* be used for their :class:`ProcessPoolExecutor` should " +"explicitly specify that by passing a ``mp_context=multiprocessing." +"get_context(\"fork\")`` parameter." +msgstr "" + +#: library/concurrent.futures.rst:292 msgid "" "The *max_tasks_per_child* argument was added to allow users to control the " "lifetime of workers in the pool." msgstr "" -#: library/concurrent.futures.rst:291 +#: library/concurrent.futures.rst:299 msgid "ProcessPoolExecutor Example" msgstr "" -#: library/concurrent.futures.rst:329 +#: library/concurrent.futures.rst:337 msgid "Future Objects" msgstr "" -#: library/concurrent.futures.rst:331 +#: library/concurrent.futures.rst:339 msgid "" "The :class:`Future` class encapsulates the asynchronous execution of a " "callable. :class:`Future` instances are created by :meth:`Executor.submit`." msgstr "" -#: library/concurrent.futures.rst:336 +#: library/concurrent.futures.rst:344 msgid "" "Encapsulates the asynchronous execution of a callable. :class:`Future` " "instances are created by :meth:`Executor.submit` and should not be created " "directly except for testing." msgstr "" -#: library/concurrent.futures.rst:342 +#: library/concurrent.futures.rst:350 msgid "" "Attempt to cancel the call. If the call is currently being executed or " "finished running and cannot be cancelled then the method will return " @@ -348,22 +358,22 @@ msgid "" "``True``." msgstr "" -#: library/concurrent.futures.rst:349 +#: library/concurrent.futures.rst:357 msgid "Return ``True`` if the call was successfully cancelled." msgstr "" -#: library/concurrent.futures.rst:353 +#: library/concurrent.futures.rst:361 msgid "" "Return ``True`` if the call is currently being executed and cannot be " "cancelled." msgstr "" -#: library/concurrent.futures.rst:358 +#: library/concurrent.futures.rst:366 msgid "" "Return ``True`` if the call was successfully cancelled or finished running." msgstr "" -#: library/concurrent.futures.rst:363 +#: library/concurrent.futures.rst:371 msgid "" "Return the value returned by the call. If the call hasn't yet completed then " "this method will wait up to *timeout* seconds. If the call hasn't completed " @@ -372,18 +382,18 @@ msgid "" "no limit to the wait time." msgstr "" -#: library/concurrent.futures.rst:370 library/concurrent.futures.rst:384 +#: library/concurrent.futures.rst:378 library/concurrent.futures.rst:392 msgid "" "If the future is cancelled before completing then :exc:`.CancelledError` " "will be raised." msgstr "" -#: library/concurrent.futures.rst:373 +#: library/concurrent.futures.rst:381 msgid "" "If the call raised an exception, this method will raise the same exception." msgstr "" -#: library/concurrent.futures.rst:377 +#: library/concurrent.futures.rst:385 msgid "" "Return the exception raised by the call. If the call hasn't yet completed " "then this method will wait up to *timeout* seconds. If the call hasn't " @@ -392,18 +402,18 @@ msgid "" "``None``, there is no limit to the wait time." msgstr "" -#: library/concurrent.futures.rst:387 +#: library/concurrent.futures.rst:395 msgid "If the call completed without raising, ``None`` is returned." msgstr "" -#: library/concurrent.futures.rst:391 +#: library/concurrent.futures.rst:399 msgid "" "Attaches the callable *fn* to the future. *fn* will be called, with the " "future as its only argument, when the future is cancelled or finishes " "running." msgstr "" -#: library/concurrent.futures.rst:395 +#: library/concurrent.futures.rst:403 msgid "" "Added callables are called in the order that they were added and are always " "called in a thread belonging to the process that added them. If the " @@ -412,26 +422,26 @@ msgid "" "behavior is undefined." msgstr "" -#: library/concurrent.futures.rst:401 +#: library/concurrent.futures.rst:409 msgid "" "If the future has already completed or been cancelled, *fn* will be called " "immediately." msgstr "" -#: library/concurrent.futures.rst:404 +#: library/concurrent.futures.rst:412 msgid "" "The following :class:`Future` methods are meant for use in unit tests and :" "class:`Executor` implementations." msgstr "" -#: library/concurrent.futures.rst:409 +#: library/concurrent.futures.rst:417 msgid "" "This method should only be called by :class:`Executor` implementations " "before executing the work associated with the :class:`Future` and by unit " "tests." msgstr "" -#: library/concurrent.futures.rst:413 +#: library/concurrent.futures.rst:421 msgid "" "If the method returns ``False`` then the :class:`Future` was cancelled, i." "e. :meth:`Future.cancel` was called and returned ``True``. Any threads " @@ -439,47 +449,47 @@ msgid "" "or :func:`wait`) will be woken up." msgstr "" -#: library/concurrent.futures.rst:418 +#: library/concurrent.futures.rst:426 msgid "" "If the method returns ``True`` then the :class:`Future` was not cancelled " "and has been put in the running state, i.e. calls to :meth:`Future.running` " "will return ``True``." msgstr "" -#: library/concurrent.futures.rst:422 +#: library/concurrent.futures.rst:430 msgid "" "This method can only be called once and cannot be called after :meth:`Future." "set_result` or :meth:`Future.set_exception` have been called." msgstr "" -#: library/concurrent.futures.rst:428 +#: library/concurrent.futures.rst:436 msgid "" "Sets the result of the work associated with the :class:`Future` to *result*." msgstr "" -#: library/concurrent.futures.rst:431 library/concurrent.futures.rst:444 +#: library/concurrent.futures.rst:439 library/concurrent.futures.rst:452 msgid "" "This method should only be used by :class:`Executor` implementations and " "unit tests." msgstr "" -#: library/concurrent.futures.rst:434 library/concurrent.futures.rst:447 +#: library/concurrent.futures.rst:442 library/concurrent.futures.rst:455 msgid "" "This method raises :exc:`concurrent.futures.InvalidStateError` if the :class:" "`Future` is already done." msgstr "" -#: library/concurrent.futures.rst:441 +#: library/concurrent.futures.rst:449 msgid "" "Sets the result of the work associated with the :class:`Future` to the :" "class:`Exception` *exception*." msgstr "" -#: library/concurrent.futures.rst:453 +#: library/concurrent.futures.rst:461 msgid "Module Functions" msgstr "" -#: library/concurrent.futures.rst:457 +#: library/concurrent.futures.rst:465 msgid "" "Wait for the :class:`Future` instances (possibly created by different :class:" "`Executor` instances) given by *fs* to complete. Duplicate futures given to " @@ -490,55 +500,55 @@ msgid "" "running futures)." msgstr "" -#: library/concurrent.futures.rst:465 +#: library/concurrent.futures.rst:473 msgid "" "*timeout* can be used to control the maximum number of seconds to wait " "before returning. *timeout* can be an int or float. If *timeout* is not " "specified or ``None``, there is no limit to the wait time." msgstr "" -#: library/concurrent.futures.rst:469 +#: library/concurrent.futures.rst:477 msgid "" "*return_when* indicates when this function should return. It must be one of " "the following constants:" msgstr "" -#: library/concurrent.futures.rst:475 +#: library/concurrent.futures.rst:483 msgid "Constant" msgstr "" -#: library/concurrent.futures.rst:475 +#: library/concurrent.futures.rst:483 msgid "Description" msgstr "" -#: library/concurrent.futures.rst:477 +#: library/concurrent.futures.rst:485 msgid ":const:`FIRST_COMPLETED`" msgstr "" -#: library/concurrent.futures.rst:477 +#: library/concurrent.futures.rst:485 msgid "The function will return when any future finishes or is cancelled." msgstr "" -#: library/concurrent.futures.rst:480 +#: library/concurrent.futures.rst:488 msgid ":const:`FIRST_EXCEPTION`" msgstr "" -#: library/concurrent.futures.rst:480 +#: library/concurrent.futures.rst:488 msgid "" "The function will return when any future finishes by raising an exception. " "If no future raises an exception then it is equivalent to :const:" "`ALL_COMPLETED`." msgstr "" -#: library/concurrent.futures.rst:486 +#: library/concurrent.futures.rst:494 msgid ":const:`ALL_COMPLETED`" msgstr "" -#: library/concurrent.futures.rst:486 +#: library/concurrent.futures.rst:494 msgid "The function will return when all futures finish or are cancelled." msgstr "" -#: library/concurrent.futures.rst:492 +#: library/concurrent.futures.rst:500 msgid "" "Returns an iterator over the :class:`Future` instances (possibly created by " "different :class:`Executor` instances) given by *fs* that yields futures as " @@ -551,55 +561,55 @@ msgid "" "*timeout* is not specified or ``None``, there is no limit to the wait time." msgstr "" -#: library/concurrent.futures.rst:506 +#: library/concurrent.futures.rst:514 msgid ":pep:`3148` -- futures - execute computations asynchronously" msgstr "" -#: library/concurrent.futures.rst:506 +#: library/concurrent.futures.rst:514 msgid "" "The proposal which described this feature for inclusion in the Python " "standard library." msgstr "" -#: library/concurrent.futures.rst:511 +#: library/concurrent.futures.rst:519 msgid "Exception classes" msgstr "" -#: library/concurrent.futures.rst:517 +#: library/concurrent.futures.rst:525 msgid "Raised when a future is cancelled." msgstr "" -#: library/concurrent.futures.rst:521 +#: library/concurrent.futures.rst:529 msgid "" "A deprecated alias of :exc:`TimeoutError`, raised when a future operation " "exceeds the given timeout." msgstr "" -#: library/concurrent.futures.rst:526 +#: library/concurrent.futures.rst:534 msgid "This class was made an alias of :exc:`TimeoutError`." msgstr "" -#: library/concurrent.futures.rst:531 +#: library/concurrent.futures.rst:539 msgid "" "Derived from :exc:`RuntimeError`, this exception class is raised when an " "executor is broken for some reason, and cannot be used to submit or execute " "new tasks." msgstr "" -#: library/concurrent.futures.rst:539 +#: library/concurrent.futures.rst:547 msgid "" "Raised when an operation is performed on a future that is not allowed in the " "current state." msgstr "" -#: library/concurrent.futures.rst:548 +#: library/concurrent.futures.rst:556 msgid "" "Derived from :exc:`~concurrent.futures.BrokenExecutor`, this exception class " "is raised when one of the workers of a :class:`ThreadPoolExecutor` has " "failed initializing." msgstr "" -#: library/concurrent.futures.rst:558 +#: library/concurrent.futures.rst:566 msgid "" "Derived from :exc:`~concurrent.futures.BrokenExecutor` (formerly :exc:" "`RuntimeError`), this exception class is raised when one of the workers of " diff --git a/library/configparser.po b/library/configparser.po index 39208d342..1ac0548c8 100644 --- a/library/configparser.po +++ b/library/configparser.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -764,7 +764,7 @@ msgid "" "implicitly converted to strings." msgstr "" -#: library/configparser.rst:1262 +#: library/configparser.rst:1240 msgid "" "The default *dict_type* is :class:`dict`, since it now preserves insertion " "order." @@ -1024,39 +1024,17 @@ msgid "" msgstr "" #: library/configparser.rst:1217 -msgid "Use :meth:`read_file` instead." -msgstr "" - -#: library/configparser.rst:1220 -msgid "" -":meth:`readfp` now iterates on *fp* instead of calling ``fp.readline()``." -msgstr "" - -#: library/configparser.rst:1223 -msgid "" -"For existing code calling :meth:`readfp` with arguments which don't support " -"iteration, the following generator may be used as a wrapper around the file-" -"like object::" -msgstr "" - -#: library/configparser.rst:1233 -msgid "" -"Instead of ``parser.readfp(fp)`` use ``parser." -"read_file(readline_generator(fp))``." -msgstr "" - -#: library/configparser.rst:1239 msgid "" "The maximum depth for recursive interpolation for :meth:`get` when the *raw* " "parameter is false. This is relevant only when the default *interpolation* " "is used." msgstr "" -#: library/configparser.rst:1247 +#: library/configparser.rst:1225 msgid "RawConfigParser Objects" msgstr "" -#: library/configparser.rst:1257 +#: library/configparser.rst:1235 msgid "" "Legacy variant of the :class:`ConfigParser`. It has interpolation disabled " "by default and allows for non-string section names, option names, and values " @@ -1064,27 +1042,27 @@ msgid "" "``defaults=`` keyword argument handling." msgstr "" -#: library/configparser.rst:1267 +#: library/configparser.rst:1245 msgid "" "Consider using :class:`ConfigParser` instead which checks types of the " "values to be stored internally. If you don't want interpolation, you can " "use ``ConfigParser(interpolation=None)``." msgstr "" -#: library/configparser.rst:1274 +#: library/configparser.rst:1252 msgid "" "Add a section named *section* to the instance. If a section by the given " "name already exists, :exc:`DuplicateSectionError` is raised. If the " "*default section* name is passed, :exc:`ValueError` is raised." msgstr "" -#: library/configparser.rst:1278 +#: library/configparser.rst:1256 msgid "" "Type of *section* is not checked which lets users create non-string named " "sections. This behaviour is unsupported and may cause internal errors." msgstr "" -#: library/configparser.rst:1284 +#: library/configparser.rst:1262 msgid "" "If the given section exists, set the given option to the specified value; " "otherwise raise :exc:`NoSectionError`. While it is possible to use :class:" @@ -1094,7 +1072,7 @@ msgid "" "string values." msgstr "" -#: library/configparser.rst:1291 +#: library/configparser.rst:1269 msgid "" "This method lets users assign non-string values to keys internally. This " "behaviour is unsupported and will cause errors when attempting to write to a " @@ -1102,32 +1080,32 @@ msgid "" "not allow such assignments to take place." msgstr "" -#: library/configparser.rst:1298 +#: library/configparser.rst:1276 msgid "Exceptions" msgstr "" -#: library/configparser.rst:1302 +#: library/configparser.rst:1280 msgid "Base class for all other :mod:`configparser` exceptions." msgstr "" -#: library/configparser.rst:1307 +#: library/configparser.rst:1285 msgid "Exception raised when a specified section is not found." msgstr "" -#: library/configparser.rst:1312 +#: library/configparser.rst:1290 msgid "" "Exception raised if :meth:`add_section` is called with the name of a section " "that is already present or in strict parsers when a section if found more " "than once in a single input file, string or dictionary." msgstr "" -#: library/configparser.rst:1316 +#: library/configparser.rst:1294 msgid "" "Optional ``source`` and ``lineno`` attributes and arguments to :meth:" "`__init__` were added." msgstr "" -#: library/configparser.rst:1323 +#: library/configparser.rst:1301 msgid "" "Exception raised by strict parsers if a single option appears twice during " "reading from a single file, string or dictionary. This catches misspellings " @@ -1135,58 +1113,58 @@ msgid "" "representing the same case-insensitive configuration key." msgstr "" -#: library/configparser.rst:1331 +#: library/configparser.rst:1309 msgid "" "Exception raised when a specified option is not found in the specified " "section." msgstr "" -#: library/configparser.rst:1337 +#: library/configparser.rst:1315 msgid "" "Base class for exceptions raised when problems occur performing string " "interpolation." msgstr "" -#: library/configparser.rst:1343 +#: library/configparser.rst:1321 msgid "" "Exception raised when string interpolation cannot be completed because the " "number of iterations exceeds :const:`MAX_INTERPOLATION_DEPTH`. Subclass of :" "exc:`InterpolationError`." msgstr "" -#: library/configparser.rst:1350 +#: library/configparser.rst:1328 msgid "" "Exception raised when an option referenced from a value does not exist. " "Subclass of :exc:`InterpolationError`." msgstr "" -#: library/configparser.rst:1356 +#: library/configparser.rst:1334 msgid "" "Exception raised when the source text into which substitutions are made does " "not conform to the required syntax. Subclass of :exc:`InterpolationError`." msgstr "" -#: library/configparser.rst:1362 +#: library/configparser.rst:1340 msgid "" "Exception raised when attempting to parse a file which has no section " "headers." msgstr "" -#: library/configparser.rst:1368 +#: library/configparser.rst:1346 msgid "Exception raised when errors occur attempting to parse a file." msgstr "" -#: library/configparser.rst:1370 +#: library/configparser.rst:1348 msgid "" -"The ``filename`` attribute and :meth:`__init__` argument were renamed to " -"``source`` for consistency." +"The ``filename`` attribute and :meth:`__init__` constructor argument were " +"removed. They have been available using the name ``source`` since 3.2." msgstr "" -#: library/configparser.rst:1376 +#: library/configparser.rst:1353 msgid "Footnotes" msgstr "" -#: library/configparser.rst:1377 +#: library/configparser.rst:1354 msgid "" "Config parsers allow for heavy customization. If you are interested in " "changing the behaviour outlined by the footnote reference, consult the " diff --git a/library/contextlib.po b/library/contextlib.po index 451e6fb30..9b83a2a62 100644 --- a/library/contextlib.po +++ b/library/contextlib.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -242,23 +242,37 @@ msgstr "" msgid "This code is equivalent to::" msgstr "" -#: library/contextlib.rst:345 library/contextlib.rst:372 +#: library/contextlib.rst:352 library/contextlib.rst:379 msgid "This context manager is :ref:`reentrant `." msgstr "" -#: library/contextlib.rst:312 +#: library/contextlib.rst:307 +msgid "" +"If the code within the :keyword:`!with` block raises an :exc:" +"`ExceptionGroup`, suppressed exceptions are removed from the group. If any " +"exceptions in the group are not suppressed, a group containing them is re-" +"raised." +msgstr "" + +#: library/contextlib.rst:313 +msgid "" +"``suppress`` now supports suppressing exceptions raised as part of an :exc:" +"`ExceptionGroup`." +msgstr "" + +#: library/contextlib.rst:319 msgid "" "Context manager for temporarily redirecting :data:`sys.stdout` to another " "file or file-like object." msgstr "" -#: library/contextlib.rst:315 +#: library/contextlib.rst:322 msgid "" "This tool adds flexibility to existing functions or classes whose output is " "hardwired to stdout." msgstr "" -#: library/contextlib.rst:318 +#: library/contextlib.rst:325 msgid "" "For example, the output of :func:`help` normally is sent to *sys.stdout*. " "You can capture that output in a string by redirecting the output to an :" @@ -267,17 +281,17 @@ msgid "" "`with` statement::" msgstr "" -#: library/contextlib.rst:328 +#: library/contextlib.rst:335 msgid "" "To send the output of :func:`help` to a file on disk, redirect the output to " "a regular file::" msgstr "" -#: library/contextlib.rst:335 +#: library/contextlib.rst:342 msgid "To send the output of :func:`help` to *sys.stderr*::" msgstr "" -#: library/contextlib.rst:340 +#: library/contextlib.rst:347 msgid "" "Note that the global side effect on :data:`sys.stdout` means that this " "context manager is not suitable for use in library code and most threaded " @@ -285,13 +299,13 @@ msgid "" "it is still a useful approach for many utility scripts." msgstr "" -#: library/contextlib.rst:352 +#: library/contextlib.rst:359 msgid "" "Similar to :func:`~contextlib.redirect_stdout` but redirecting :data:`sys." "stderr` to another file or file-like object." msgstr "" -#: library/contextlib.rst:362 +#: library/contextlib.rst:369 msgid "" "Non parallel-safe context manager to change the current working directory. " "As this changes a global state, the working directory, it is not suitable " @@ -301,60 +315,60 @@ msgid "" "when this context manager is active." msgstr "" -#: library/contextlib.rst:369 +#: library/contextlib.rst:376 msgid "" "This is a simple wrapper around :func:`~os.chdir`, it changes the current " "working directory upon entering and restores the old one on exit." msgstr "" -#: library/contextlib.rst:379 +#: library/contextlib.rst:386 msgid "" "A base class that enables a context manager to also be used as a decorator." msgstr "" -#: library/contextlib.rst:381 +#: library/contextlib.rst:388 msgid "" "Context managers inheriting from ``ContextDecorator`` have to implement " "``__enter__`` and ``__exit__`` as normal. ``__exit__`` retains its optional " "exception handling even when used as a decorator." msgstr "" -#: library/contextlib.rst:385 +#: library/contextlib.rst:392 msgid "" "``ContextDecorator`` is used by :func:`contextmanager`, so you get this " "functionality automatically." msgstr "" -#: library/contextlib.rst:388 +#: library/contextlib.rst:395 msgid "Example of ``ContextDecorator``::" msgstr "" -#: library/contextlib.rst:473 +#: library/contextlib.rst:480 msgid "The class can then be used like this::" msgstr "" -#: library/contextlib.rst:419 +#: library/contextlib.rst:426 msgid "" "This change is just syntactic sugar for any construct of the following form::" msgstr "" -#: library/contextlib.rst:425 +#: library/contextlib.rst:432 msgid "``ContextDecorator`` lets you instead write::" msgstr "" -#: library/contextlib.rst:431 +#: library/contextlib.rst:438 msgid "" "It makes it clear that the ``cm`` applies to the whole function, rather than " "just a piece of it (and saving an indentation level is nice, too)." msgstr "" -#: library/contextlib.rst:434 +#: library/contextlib.rst:441 msgid "" "Existing context managers that already have a base class can be extended by " "using ``ContextDecorator`` as a mixin class::" msgstr "" -#: library/contextlib.rst:447 +#: library/contextlib.rst:454 msgid "" "As the decorated function must be able to be called multiple times, the " "underlying context manager must support use in multiple :keyword:`with` " @@ -362,35 +376,35 @@ msgid "" "explicit :keyword:`!with` statement inside the function should be used." msgstr "" -#: library/contextlib.rst:457 +#: library/contextlib.rst:464 msgid "" "Similar to :class:`ContextDecorator` but only for asynchronous functions." msgstr "" -#: library/contextlib.rst:459 +#: library/contextlib.rst:466 msgid "Example of ``AsyncContextDecorator``::" msgstr "" -#: library/contextlib.rst:498 +#: library/contextlib.rst:505 msgid "" "A context manager that is designed to make it easy to programmatically " "combine other context managers and cleanup functions, especially those that " "are optional or otherwise driven by input data." msgstr "" -#: library/contextlib.rst:502 +#: library/contextlib.rst:509 msgid "" "For example, a set of files may easily be handled in a single with statement " "as follows::" msgstr "" -#: library/contextlib.rst:511 +#: library/contextlib.rst:518 msgid "" "The :meth:`__enter__` method returns the :class:`ExitStack` instance, and " "performs no additional operations." msgstr "" -#: library/contextlib.rst:514 +#: library/contextlib.rst:521 msgid "" "Each instance maintains a stack of registered callbacks that are called in " "reverse order when the instance is closed (either explicitly or implicitly " @@ -398,14 +412,14 @@ msgid "" "invoked implicitly when the context stack instance is garbage collected." msgstr "" -#: library/contextlib.rst:519 +#: library/contextlib.rst:526 msgid "" "This stack model is used so that context managers that acquire their " "resources in their ``__init__`` method (such as file objects) can be handled " "correctly." msgstr "" -#: library/contextlib.rst:523 +#: library/contextlib.rst:530 msgid "" "Since registered callbacks are invoked in the reverse order of registration, " "this ends up behaving as if multiple nested :keyword:`with` statements had " @@ -415,7 +429,7 @@ msgid "" "updated state." msgstr "" -#: library/contextlib.rst:530 +#: library/contextlib.rst:537 msgid "" "This is a relatively low level API that takes care of the details of " "correctly unwinding the stack of exit callbacks. It provides a suitable " @@ -423,74 +437,74 @@ msgid "" "in application specific ways." msgstr "" -#: library/contextlib.rst:539 +#: library/contextlib.rst:546 msgid "" "Enters a new context manager and adds its :meth:`__exit__` method to the " "callback stack. The return value is the result of the context manager's own :" "meth:`__enter__` method." msgstr "" -#: library/contextlib.rst:543 +#: library/contextlib.rst:550 msgid "" "These context managers may suppress exceptions just as they normally would " "if used directly as part of a :keyword:`with` statement." msgstr "" -#: library/contextlib.rst:546 +#: library/contextlib.rst:553 msgid "" "Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm* is not a " "context manager." msgstr "" -#: library/contextlib.rst:552 +#: library/contextlib.rst:559 msgid "Adds a context manager's :meth:`__exit__` method to the callback stack." msgstr "" -#: library/contextlib.rst:554 +#: library/contextlib.rst:561 msgid "" "As ``__enter__`` is *not* invoked, this method can be used to cover part of " "an :meth:`__enter__` implementation with a context manager's own :meth:" "`__exit__` method." msgstr "" -#: library/contextlib.rst:558 +#: library/contextlib.rst:565 msgid "" "If passed an object that is not a context manager, this method assumes it is " "a callback with the same signature as a context manager's :meth:`__exit__` " "method and adds it directly to the callback stack." msgstr "" -#: library/contextlib.rst:562 +#: library/contextlib.rst:569 msgid "" "By returning true values, these callbacks can suppress exceptions the same " "way context manager :meth:`__exit__` methods can." msgstr "" -#: library/contextlib.rst:565 +#: library/contextlib.rst:572 msgid "" "The passed in object is returned from the function, allowing this method to " "be used as a function decorator." msgstr "" -#: library/contextlib.rst:570 +#: library/contextlib.rst:577 msgid "" "Accepts an arbitrary callback function and arguments and adds it to the " "callback stack." msgstr "" -#: library/contextlib.rst:573 +#: library/contextlib.rst:580 msgid "" "Unlike the other methods, callbacks added this way cannot suppress " "exceptions (as they are never passed the exception details)." msgstr "" -#: library/contextlib.rst:576 +#: library/contextlib.rst:583 msgid "" "The passed in callback is returned from the function, allowing this method " "to be used as a function decorator." msgstr "" -#: library/contextlib.rst:581 +#: library/contextlib.rst:588 msgid "" "Transfers the callback stack to a fresh :class:`ExitStack` instance and " "returns it. No callbacks are invoked by this operation - instead, they will " @@ -498,76 +512,76 @@ msgid "" "at the end of a :keyword:`with` statement)." msgstr "" -#: library/contextlib.rst:586 +#: library/contextlib.rst:593 msgid "" "For example, a group of files can be opened as an \"all or nothing\" " "operation as follows::" msgstr "" -#: library/contextlib.rst:600 +#: library/contextlib.rst:607 msgid "" "Immediately unwinds the callback stack, invoking callbacks in the reverse " "order of registration. For any context managers and exit callbacks " "registered, the arguments passed in will indicate that no exception occurred." msgstr "" -#: library/contextlib.rst:607 +#: library/contextlib.rst:614 msgid "" "An :ref:`asynchronous context manager `, similar to :" "class:`ExitStack`, that supports combining both synchronous and asynchronous " "context managers, as well as having coroutines for cleanup logic." msgstr "" -#: library/contextlib.rst:612 +#: library/contextlib.rst:619 msgid "" "The :meth:`close` method is not implemented, :meth:`aclose` must be used " "instead." msgstr "" -#: library/contextlib.rst:617 +#: library/contextlib.rst:624 msgid "" "Similar to :meth:`enter_context` but expects an asynchronous context manager." msgstr "" -#: library/contextlib.rst:620 +#: library/contextlib.rst:627 msgid "" "Raises :exc:`TypeError` instead of :exc:`AttributeError` if *cm* is not an " "asynchronous context manager." msgstr "" -#: library/contextlib.rst:626 +#: library/contextlib.rst:633 msgid "" "Similar to :meth:`push` but expects either an asynchronous context manager " "or a coroutine function." msgstr "" -#: library/contextlib.rst:631 +#: library/contextlib.rst:638 msgid "Similar to :meth:`callback` but expects a coroutine function." msgstr "" -#: library/contextlib.rst:635 +#: library/contextlib.rst:642 msgid "Similar to :meth:`close` but properly handles awaitables." msgstr "" -#: library/contextlib.rst:637 +#: library/contextlib.rst:644 msgid "Continuing the example for :func:`asynccontextmanager`::" msgstr "" -#: library/contextlib.rst:649 +#: library/contextlib.rst:656 msgid "Examples and Recipes" msgstr "" -#: library/contextlib.rst:651 +#: library/contextlib.rst:658 msgid "" "This section describes some examples and recipes for making effective use of " "the tools provided by :mod:`contextlib`." msgstr "" -#: library/contextlib.rst:656 +#: library/contextlib.rst:663 msgid "Supporting a variable number of context managers" msgstr "" -#: library/contextlib.rst:658 +#: library/contextlib.rst:665 msgid "" "The primary use case for :class:`ExitStack` is the one given in the class " "documentation: supporting a variable number of context managers and other " @@ -577,18 +591,18 @@ msgid "" "of the context managers being optional::" msgstr "" -#: library/contextlib.rst:673 +#: library/contextlib.rst:680 msgid "" "As shown, :class:`ExitStack` also makes it quite easy to use :keyword:`with` " "statements to manage arbitrary resources that don't natively support the " "context management protocol." msgstr "" -#: library/contextlib.rst:679 +#: library/contextlib.rst:686 msgid "Catching exceptions from ``__enter__`` methods" msgstr "" -#: library/contextlib.rst:681 +#: library/contextlib.rst:688 msgid "" "It is occasionally desirable to catch exceptions from an ``__enter__`` " "method implementation, *without* inadvertently catching exceptions from the :" @@ -597,7 +611,7 @@ msgid "" "be separated slightly in order to allow this::" msgstr "" -#: library/contextlib.rst:696 +#: library/contextlib.rst:703 msgid "" "Actually needing to do this is likely to indicate that the underlying API " "should be providing a direct resource management interface for use with :" @@ -608,29 +622,29 @@ msgid "" "`with` statement." msgstr "" -#: library/contextlib.rst:706 +#: library/contextlib.rst:713 msgid "Cleaning up in an ``__enter__`` implementation" msgstr "" -#: library/contextlib.rst:708 +#: library/contextlib.rst:715 msgid "" "As noted in the documentation of :meth:`ExitStack.push`, this method can be " "useful in cleaning up an already allocated resource if later steps in the :" "meth:`__enter__` implementation fail." msgstr "" -#: library/contextlib.rst:712 +#: library/contextlib.rst:719 msgid "" "Here's an example of doing this for a context manager that accepts resource " "acquisition and release functions, along with an optional validation " "function, and maps them to the context management protocol::" msgstr "" -#: library/contextlib.rst:752 +#: library/contextlib.rst:759 msgid "Replacing any use of ``try-finally`` and flag variables" msgstr "" -#: library/contextlib.rst:754 +#: library/contextlib.rst:761 msgid "" "A pattern you will sometimes see is a ``try-finally`` statement with a flag " "variable to indicate whether or not the body of the ``finally`` clause " @@ -638,57 +652,57 @@ msgid "" "by using an ``except`` clause instead), it looks something like this::" msgstr "" -#: library/contextlib.rst:768 +#: library/contextlib.rst:775 msgid "" "As with any ``try`` statement based code, this can cause problems for " "development and review, because the setup code and the cleanup code can end " "up being separated by arbitrarily long sections of code." msgstr "" -#: library/contextlib.rst:772 +#: library/contextlib.rst:779 msgid "" ":class:`ExitStack` makes it possible to instead register a callback for " "execution at the end of a ``with`` statement, and then later decide to skip " "executing that callback::" msgstr "" -#: library/contextlib.rst:784 +#: library/contextlib.rst:791 msgid "" "This allows the intended cleanup up behaviour to be made explicit up front, " "rather than requiring a separate flag variable." msgstr "" -#: library/contextlib.rst:787 +#: library/contextlib.rst:794 msgid "" "If a particular application uses this pattern a lot, it can be simplified " "even further by means of a small helper class::" msgstr "" -#: library/contextlib.rst:805 +#: library/contextlib.rst:812 msgid "" "If the resource cleanup isn't already neatly bundled into a standalone " "function, then it is still possible to use the decorator form of :meth:" "`ExitStack.callback` to declare the resource cleanup in advance::" msgstr "" -#: library/contextlib.rst:820 +#: library/contextlib.rst:827 msgid "" "Due to the way the decorator protocol works, a callback function declared " "this way cannot take any parameters. Instead, any resources to be released " "must be accessed as closure variables." msgstr "" -#: library/contextlib.rst:826 +#: library/contextlib.rst:833 msgid "Using a context manager as a function decorator" msgstr "" -#: library/contextlib.rst:828 +#: library/contextlib.rst:835 msgid "" ":class:`ContextDecorator` makes it possible to use a context manager in both " "an ordinary ``with`` statement and also as a function decorator." msgstr "" -#: library/contextlib.rst:831 +#: library/contextlib.rst:838 msgid "" "For example, it is sometimes useful to wrap functions or groups of " "statements with a logger that can track the time of entry and time of exit. " @@ -697,15 +711,15 @@ msgid "" "in a single definition::" msgstr "" -#: library/contextlib.rst:852 +#: library/contextlib.rst:859 msgid "Instances of this class can be used as both a context manager::" msgstr "" -#: library/contextlib.rst:858 +#: library/contextlib.rst:865 msgid "And also as a function decorator::" msgstr "" -#: library/contextlib.rst:865 +#: library/contextlib.rst:872 msgid "" "Note that there is one additional limitation when using context managers as " "function decorators: there's no way to access the return value of :meth:" @@ -713,21 +727,21 @@ msgid "" "explicit ``with`` statement." msgstr "" -#: library/contextlib.rst:873 +#: library/contextlib.rst:880 msgid ":pep:`343` - The \"with\" statement" msgstr "" -#: library/contextlib.rst:873 +#: library/contextlib.rst:880 msgid "" "The specification, background, and examples for the Python :keyword:`with` " "statement." msgstr "" -#: library/contextlib.rst:879 +#: library/contextlib.rst:886 msgid "Single use, reusable and reentrant context managers" msgstr "" -#: library/contextlib.rst:881 +#: library/contextlib.rst:888 msgid "" "Most context managers are written in a way that means they can only be used " "effectively in a :keyword:`with` statement once. These single use context " @@ -735,32 +749,32 @@ msgid "" "them a second time will trigger an exception or otherwise not work correctly." msgstr "" -#: library/contextlib.rst:887 +#: library/contextlib.rst:894 msgid "" "This common limitation means that it is generally advisable to create " "context managers directly in the header of the :keyword:`with` statement " "where they are used (as shown in all of the usage examples above)." msgstr "" -#: library/contextlib.rst:891 +#: library/contextlib.rst:898 msgid "" "Files are an example of effectively single use context managers, since the " "first :keyword:`with` statement will close the file, preventing any further " "IO operations using that file object." msgstr "" -#: library/contextlib.rst:895 +#: library/contextlib.rst:902 msgid "" "Context managers created using :func:`contextmanager` are also single use " "context managers, and will complain about the underlying generator failing " "to yield if an attempt is made to use them a second time::" msgstr "" -#: library/contextlib.rst:923 +#: library/contextlib.rst:930 msgid "Reentrant context managers" msgstr "" -#: library/contextlib.rst:925 +#: library/contextlib.rst:932 msgid "" "More sophisticated context managers may be \"reentrant\". These context " "managers can not only be used in multiple :keyword:`with` statements, but " @@ -768,21 +782,21 @@ msgid "" "the same context manager." msgstr "" -#: library/contextlib.rst:930 +#: library/contextlib.rst:937 msgid "" ":class:`threading.RLock` is an example of a reentrant context manager, as " "are :func:`suppress`, :func:`redirect_stdout`, and :func:`chdir`. Here's a " "very simple example of reentrant use::" msgstr "" -#: library/contextlib.rst:949 +#: library/contextlib.rst:956 msgid "" "Real world examples of reentrancy are more likely to involve multiple " "functions calling each other and hence be far more complicated than this " "example." msgstr "" -#: library/contextlib.rst:953 +#: library/contextlib.rst:960 msgid "" "Note also that being reentrant is *not* the same thing as being thread " "safe. :func:`redirect_stdout`, for example, is definitely not thread safe, " @@ -790,11 +804,11 @@ msgid "" "stdout` to a different stream." msgstr "" -#: library/contextlib.rst:962 +#: library/contextlib.rst:969 msgid "Reusable context managers" msgstr "" -#: library/contextlib.rst:964 +#: library/contextlib.rst:971 msgid "" "Distinct from both single use and reentrant context managers are " "\"reusable\" context managers (or, to be completely explicit, \"reusable, " @@ -804,21 +818,21 @@ msgid "" "manager instance has already been used in a containing with statement." msgstr "" -#: library/contextlib.rst:971 +#: library/contextlib.rst:978 msgid "" ":class:`threading.Lock` is an example of a reusable, but not reentrant, " "context manager (for a reentrant lock, it is necessary to use :class:" "`threading.RLock` instead)." msgstr "" -#: library/contextlib.rst:975 +#: library/contextlib.rst:982 msgid "" "Another example of a reusable, but not reentrant, context manager is :class:" "`ExitStack`, as it invokes *all* currently registered callbacks when leaving " "any with statement, regardless of where those callbacks were added::" msgstr "" -#: library/contextlib.rst:1006 +#: library/contextlib.rst:1013 msgid "" "As the output from the example shows, reusing a single stack object across " "multiple with statements works correctly, but attempting to nest them will " @@ -826,7 +840,7 @@ msgid "" "which is unlikely to be desirable behaviour." msgstr "" -#: library/contextlib.rst:1011 +#: library/contextlib.rst:1018 msgid "" "Using separate :class:`ExitStack` instances instead of reusing a single " "instance avoids that problem::" diff --git a/library/csv.po b/library/csv.po index a3c76dbfa..4fdd0b626 100644 --- a/library/csv.po +++ b/library/csv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -95,7 +95,7 @@ msgid "" "into floats)." msgstr "" -#: library/csv.rst:105 library/csv.rst:212 +#: library/csv.rst:105 library/csv.rst:216 msgid "A short usage example::" msgstr "" @@ -185,15 +185,21 @@ msgid "" "`reader` instance." msgstr "" -#: library/csv.rst:170 +#: library/csv.rst:214 +msgid "" +"If the argument passed to *fieldnames* is an iterator, it will be coerced to " +"a :class:`list`." +msgstr "" + +#: library/csv.rst:172 msgid "Returned rows are now of type :class:`OrderedDict`." msgstr "" -#: library/csv.rst:173 +#: library/csv.rst:175 msgid "Returned rows are now of type :class:`dict`." msgstr "" -#: library/csv.rst:194 +#: library/csv.rst:196 msgid "" "Create an object which operates like a regular writer but maps dictionaries " "onto output rows. The *fieldnames* parameter is a :mod:`sequence " @@ -209,13 +215,13 @@ msgid "" "`writer` instance." msgstr "" -#: library/csv.rst:209 +#: library/csv.rst:211 msgid "" "Note that unlike the :class:`DictReader` class, the *fieldnames* parameter " "of the :class:`DictWriter` class is not optional." msgstr "" -#: library/csv.rst:228 +#: library/csv.rst:232 msgid "" "The :class:`Dialect` class is a container class whose attributes contain " "information for how to handle doublequotes, whitespace, delimiters, etc. Due " @@ -224,49 +230,49 @@ msgid "" "`reader` and :class:`writer` instances behave." msgstr "" -#: library/csv.rst:234 +#: library/csv.rst:238 msgid "" "All available :class:`Dialect` names are returned by :func:`list_dialects`, " "and they can be registered with specific :class:`reader` and :class:`writer` " "classes through their initializer (``__init__``) functions like this::" msgstr "" -#: library/csv.rst:247 +#: library/csv.rst:251 msgid "" "The :class:`excel` class defines the usual properties of an Excel-generated " "CSV file. It is registered with the dialect name ``'excel'``." msgstr "" -#: library/csv.rst:253 +#: library/csv.rst:257 msgid "" "The :class:`excel_tab` class defines the usual properties of an Excel-" "generated TAB-delimited file. It is registered with the dialect name " "``'excel-tab'``." msgstr "" -#: library/csv.rst:259 +#: library/csv.rst:263 msgid "" "The :class:`unix_dialect` class defines the usual properties of a CSV file " "generated on UNIX systems, i.e. using ``'\\n'`` as line terminator and " "quoting all fields. It is registered with the dialect name ``'unix'``." msgstr "" -#: library/csv.rst:268 +#: library/csv.rst:272 msgid "The :class:`Sniffer` class is used to deduce the format of a CSV file." msgstr "" -#: library/csv.rst:270 +#: library/csv.rst:274 msgid "The :class:`Sniffer` class provides two methods:" msgstr "" -#: library/csv.rst:274 +#: library/csv.rst:278 msgid "" "Analyze the given *sample* and return a :class:`Dialect` subclass reflecting " "the parameters found. If the optional *delimiters* parameter is given, it " "is interpreted as a string containing possible valid delimiter characters." msgstr "" -#: library/csv.rst:282 +#: library/csv.rst:286 msgid "" "Analyze the sample text (presumed to be in CSV format) and return :const:" "`True` if the first row appears to be a series of column headers. Inspecting " @@ -274,56 +280,58 @@ msgid "" "sample contains a header:" msgstr "" -#: library/csv.rst:287 +#: library/csv.rst:291 msgid "the second through n-th rows contain numeric values" msgstr "" -#: library/csv.rst:288 +#: library/csv.rst:292 msgid "" "the second through n-th rows contain strings where at least one value's " "length differs from that of the putative header of that column." msgstr "" -#: library/csv.rst:291 +#: library/csv.rst:295 msgid "" "Twenty rows after the first row are sampled; if more than half of columns + " "rows meet the criteria, :const:`True` is returned." msgstr "" -#: library/csv.rst:296 +#: library/csv.rst:300 msgid "" "This method is a rough heuristic and may produce both false positives and " "negatives." msgstr "" -#: library/csv.rst:299 +#: library/csv.rst:303 msgid "An example for :class:`Sniffer` use::" msgstr "" -#: library/csv.rst:308 +#: library/csv.rst:312 msgid "The :mod:`csv` module defines the following constants:" msgstr "" -#: library/csv.rst:312 +#: library/csv.rst:316 msgid "Instructs :class:`writer` objects to quote all fields." msgstr "" -#: library/csv.rst:317 +#: library/csv.rst:321 msgid "" "Instructs :class:`writer` objects to only quote those fields which contain " "special characters such as *delimiter*, *quotechar* or any of the characters " "in *lineterminator*." msgstr "" -#: library/csv.rst:324 +#: library/csv.rst:328 msgid "Instructs :class:`writer` objects to quote all non-numeric fields." msgstr "" -#: library/csv.rst:326 -msgid "Instructs the reader to convert all non-quoted fields to type *float*." +#: library/csv.rst:330 +msgid "" +"Instructs :class:`reader` objects to convert all non-quoted fields to type " +"*float*." msgstr "" -#: library/csv.rst:331 +#: library/csv.rst:335 msgid "" "Instructs :class:`writer` objects to never quote fields. When the current " "*delimiter* occurs in output data it is preceded by the current *escapechar* " @@ -331,25 +339,51 @@ msgid "" "if any characters that require escaping are encountered." msgstr "" -#: library/csv.rst:336 +#: library/csv.rst:340 msgid "" -"Instructs :class:`reader` to perform no special processing of quote " +"Instructs :class:`reader` objects to perform no special processing of quote " "characters." msgstr "" -#: library/csv.rst:338 +#: library/csv.rst:344 +msgid "" +"Instructs :class:`writer` objects to quote all fields which are not " +"``None``. This is similar to :data:`QUOTE_ALL`, except that if a field " +"value is ``None`` an empty (unquoted) string is written." +msgstr "" + +#: library/csv.rst:348 +msgid "" +"Instructs :class:`reader` objects to interpret an empty (unquoted) field as " +"None and to otherwise behave as :data:`QUOTE_ALL`." +msgstr "" + +#: library/csv.rst:353 +msgid "" +"Instructs :class:`writer` objects to always place quotes around fields which " +"are strings. This is similar to :data:`QUOTE_NONNUMERIC`, except that if a " +"field value is ``None`` an empty (unquoted) string is written." +msgstr "" + +#: library/csv.rst:357 +msgid "" +"Instructs :class:`reader` objects to interpret an empty (unquoted) string as " +"``None`` and to otherwise behave as :data:`QUOTE_NONNUMERIC`." +msgstr "" + +#: library/csv.rst:360 msgid "The :mod:`csv` module defines the following exception:" msgstr "" -#: library/csv.rst:343 +#: library/csv.rst:365 msgid "Raised by any of the functions when an error is detected." msgstr "" -#: library/csv.rst:348 +#: library/csv.rst:370 msgid "Dialects and Formatting Parameters" msgstr "" -#: library/csv.rst:350 +#: library/csv.rst:372 msgid "" "To make it easier to specify the format of input and output records, " "specific formatting parameters are grouped together into dialects. A " @@ -362,16 +396,16 @@ msgid "" "attributes defined below for the :class:`Dialect` class." msgstr "" -#: library/csv.rst:360 +#: library/csv.rst:382 msgid "Dialects support the following attributes:" msgstr "" -#: library/csv.rst:365 +#: library/csv.rst:387 msgid "" "A one-character string used to separate fields. It defaults to ``','``." msgstr "" -#: library/csv.rst:370 +#: library/csv.rst:392 msgid "" "Controls how instances of *quotechar* appearing inside a field should " "themselves be quoted. When :const:`True`, the character is doubled. When :" @@ -379,13 +413,13 @@ msgid "" "defaults to :const:`True`." msgstr "" -#: library/csv.rst:375 +#: library/csv.rst:397 msgid "" "On output, if *doublequote* is :const:`False` and no *escapechar* is set, :" "exc:`Error` is raised if a *quotechar* is found in a field." msgstr "" -#: library/csv.rst:381 +#: library/csv.rst:403 msgid "" "A one-character string used by the writer to escape the *delimiter* if " "*quoting* is set to :const:`QUOTE_NONE` and the *quotechar* if *doublequote* " @@ -394,64 +428,64 @@ msgid "" "escaping." msgstr "" -#: library/csv.rst:386 +#: library/csv.rst:408 msgid "An empty *escapechar* is not allowed." msgstr "" -#: library/csv.rst:391 +#: library/csv.rst:413 msgid "" "The string used to terminate lines produced by the :class:`writer`. It " "defaults to ``'\\r\\n'``." msgstr "" -#: library/csv.rst:396 +#: library/csv.rst:418 msgid "" "The :class:`reader` is hard-coded to recognise either ``'\\r'`` or ``'\\n'`` " "as end-of-line, and ignores *lineterminator*. This behavior may change in " "the future." msgstr "" -#: library/csv.rst:403 +#: library/csv.rst:425 msgid "" "A one-character string used to quote fields containing special characters, " "such as the *delimiter* or *quotechar*, or which contain new-line " "characters. It defaults to ``'\"'``." msgstr "" -#: library/csv.rst:407 +#: library/csv.rst:429 msgid "An empty *quotechar* is not allowed." msgstr "" -#: library/csv.rst:412 +#: library/csv.rst:434 msgid "" "Controls when quotes should be generated by the writer and recognised by the " "reader. It can take on any of the :const:`QUOTE_\\*` constants (see " "section :ref:`csv-contents`) and defaults to :const:`QUOTE_MINIMAL`." msgstr "" -#: library/csv.rst:419 +#: library/csv.rst:441 msgid "" "When :const:`True`, spaces immediately following the *delimiter* are " "ignored. The default is :const:`False`." msgstr "" -#: library/csv.rst:425 +#: library/csv.rst:447 msgid "" "When ``True``, raise exception :exc:`Error` on bad CSV input. The default is " "``False``." msgstr "" -#: library/csv.rst:429 +#: library/csv.rst:451 msgid "Reader Objects" msgstr "" -#: library/csv.rst:431 +#: library/csv.rst:453 msgid "" "Reader objects (:class:`DictReader` instances and objects returned by the :" "func:`reader` function) have the following public methods:" msgstr "" -#: library/csv.rst:436 +#: library/csv.rst:458 msgid "" "Return the next row of the reader's iterable object as a list (if the object " "was returned from :func:`reader`) or a dict (if it is a :class:`DictReader` " @@ -459,35 +493,35 @@ msgid "" "should call this as ``next(reader)``." msgstr "" -#: library/csv.rst:442 +#: library/csv.rst:464 msgid "Reader objects have the following public attributes:" msgstr "" -#: library/csv.rst:446 +#: library/csv.rst:468 msgid "A read-only description of the dialect in use by the parser." msgstr "" -#: library/csv.rst:451 +#: library/csv.rst:473 msgid "" "The number of lines read from the source iterator. This is not the same as " "the number of records returned, as records can span multiple lines." msgstr "" -#: library/csv.rst:455 +#: library/csv.rst:477 msgid "DictReader objects have the following public attribute:" msgstr "" -#: library/csv.rst:459 +#: library/csv.rst:481 msgid "" "If not passed as a parameter when creating the object, this attribute is " "initialized upon first access or when the first record is read from the file." msgstr "" -#: library/csv.rst:466 +#: library/csv.rst:488 msgid "Writer Objects" msgstr "" -#: library/csv.rst:468 +#: library/csv.rst:490 msgid "" ":class:`Writer` objects (:class:`DictWriter` instances and objects returned " "by the :func:`writer` function) have the following public methods. A *row* " @@ -499,66 +533,66 @@ msgid "" "complex numbers at all)." msgstr "" -#: library/csv.rst:479 +#: library/csv.rst:501 msgid "" "Write the *row* parameter to the writer's file object, formatted according " "to the current :class:`Dialect`. Return the return value of the call to the " "*write* method of the underlying file object." msgstr "" -#: library/csv.rst:483 +#: library/csv.rst:505 msgid "Added support of arbitrary iterables." msgstr "" -#: library/csv.rst:488 +#: library/csv.rst:510 msgid "" "Write all elements in *rows* (an iterable of *row* objects as described " "above) to the writer's file object, formatted according to the current " "dialect." msgstr "" -#: library/csv.rst:492 +#: library/csv.rst:514 msgid "Writer objects have the following public attribute:" msgstr "" -#: library/csv.rst:497 +#: library/csv.rst:519 msgid "A read-only description of the dialect in use by the writer." msgstr "" -#: library/csv.rst:500 +#: library/csv.rst:522 msgid "DictWriter objects have the following public method:" msgstr "" -#: library/csv.rst:505 +#: library/csv.rst:527 msgid "" "Write a row with the field names (as specified in the constructor) to the " "writer's file object, formatted according to the current dialect. Return the " "return value of the :meth:`csvwriter.writerow` call used internally." msgstr "" -#: library/csv.rst:510 +#: library/csv.rst:532 msgid "" ":meth:`writeheader` now also returns the value returned by the :meth:" "`csvwriter.writerow` method it uses internally." msgstr "" -#: library/csv.rst:518 +#: library/csv.rst:540 msgid "Examples" msgstr "" -#: library/csv.rst:520 +#: library/csv.rst:542 msgid "The simplest example of reading a CSV file::" msgstr "" -#: library/csv.rst:528 +#: library/csv.rst:550 msgid "Reading a file with an alternate format::" msgstr "" -#: library/csv.rst:536 +#: library/csv.rst:558 msgid "The corresponding simplest possible writing example is::" msgstr "" -#: library/csv.rst:543 +#: library/csv.rst:565 msgid "" "Since :func:`open` is used to open a CSV file for reading, the file will by " "default be decoded into unicode using the system default encoding (see :func:" @@ -566,33 +600,33 @@ msgid "" "``encoding`` argument of open::" msgstr "" -#: library/csv.rst:554 +#: library/csv.rst:576 msgid "" "The same applies to writing in something other than the system default " "encoding: specify the encoding argument when opening the output file." msgstr "" -#: library/csv.rst:557 +#: library/csv.rst:579 msgid "Registering a new dialect::" msgstr "" -#: library/csv.rst:564 +#: library/csv.rst:586 msgid "" "A slightly more advanced use of the reader --- catching and reporting " "errors::" msgstr "" -#: library/csv.rst:576 +#: library/csv.rst:598 msgid "" "And while the module doesn't directly support parsing strings, it can easily " "be done::" msgstr "" -#: library/csv.rst:585 +#: library/csv.rst:607 msgid "Footnotes" msgstr "" -#: library/csv.rst:586 +#: library/csv.rst:608 msgid "" "If ``newline=''`` is not specified, newlines embedded inside quoted fields " "will not be interpreted correctly, and on platforms that use ``\\r\\n`` " diff --git a/library/ctypes.po b/library/ctypes.po index 278cdbca3..09ed521eb 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -66,9 +66,9 @@ msgid "" "loads libraries which export functions using the standard ``cdecl`` calling " "convention, while *windll* libraries call functions using the ``stdcall`` " "calling convention. *oledll* also uses the ``stdcall`` calling convention, " -"and assumes the functions return a Windows :c:type:`HRESULT` error code. The " -"error code is used to automatically raise an :class:`OSError` exception when " -"the function call fails." +"and assumes the functions return a Windows :c:type:`!HRESULT` error code. " +"The error code is used to automatically raise an :class:`OSError` exception " +"when the function call fails." msgstr "" #: library/ctypes.rst:48 @@ -100,20 +100,20 @@ msgstr "" msgid "" "On Linux, it is required to specify the filename *including* the extension " "to load a library, so attribute access can not be used to load libraries. " -"Either the :meth:`LoadLibrary` method of the dll loaders should be used, or " -"you should load the library by creating an instance of CDLL by calling the " -"constructor::" +"Either the :meth:`~LibraryLoader.LoadLibrary` method of the dll loaders " +"should be used, or you should load the library by creating an instance of " +"CDLL by calling the constructor::" msgstr "" -#: library/ctypes.rst:91 +#: library/ctypes.rst:92 msgid "Accessing functions from loaded dlls" msgstr "" -#: library/ctypes.rst:93 +#: library/ctypes.rst:94 msgid "Functions are accessed as attributes of dll objects::" msgstr "" -#: library/ctypes.rst:108 +#: library/ctypes.rst:109 msgid "" "Note that win32 system dlls like ``kernel32`` and ``user32`` often export " "ANSI as well as UNICODE versions of a function. The UNICODE version is " @@ -124,43 +124,43 @@ msgid "" "``GetModuleHandle`` depending on whether UNICODE is defined or not::" msgstr "" -#: library/ctypes.rst:121 +#: library/ctypes.rst:122 msgid "" "*windll* does not try to select one of them by magic, you must access the " "version you need by specifying ``GetModuleHandleA`` or ``GetModuleHandleW`` " "explicitly, and then call it with bytes or string objects respectively." msgstr "" -#: library/ctypes.rst:125 +#: library/ctypes.rst:126 msgid "" "Sometimes, dlls export functions with names which aren't valid Python " "identifiers, like ``\"??2@YAPAXI@Z\"``. In this case you have to use :func:" "`getattr` to retrieve the function::" msgstr "" -#: library/ctypes.rst:133 +#: library/ctypes.rst:134 msgid "" "On Windows, some dlls export functions not by name but by ordinal. These " "functions can be accessed by indexing the dll object with the ordinal " "number::" msgstr "" -#: library/ctypes.rst:150 +#: library/ctypes.rst:151 msgid "Calling functions" msgstr "" -#: library/ctypes.rst:152 +#: library/ctypes.rst:153 msgid "" "You can call these functions like any other Python callable. This example " -"uses the ``time()`` function, which returns system time in seconds since the " -"Unix epoch, and the ``GetModuleHandleA()`` function, which returns a win32 " -"module handle." +"uses the ``rand()`` function, which takes no arguments and returns a pseudo-" +"random integer::" msgstr "" -#: library/ctypes.rst:157 +#: library/ctypes.rst:159 msgid "" -"This example calls both functions with a ``NULL`` pointer (``None`` should " -"be used as the ``NULL`` pointer)::" +"On Windows, you can call the ``GetModuleHandleA()`` function, which returns " +"a win32 module handle (passing ``None`` as single argument to call it with a " +"``NULL`` pointer)::" msgstr "" #: library/ctypes.rst:166 @@ -207,7 +207,7 @@ msgid "" "learn more about :mod:`ctypes` data types." msgstr "" -#: library/ctypes.rst:2160 +#: library/ctypes.rst:2201 msgid "Fundamental data types" msgstr "" @@ -269,6 +269,7 @@ msgstr "" #: library/ctypes.rst:228 library/ctypes.rst:232 library/ctypes.rst:236 #: library/ctypes.rst:240 library/ctypes.rst:244 library/ctypes.rst:249 +#: library/ctypes.rst:252 msgid "int" msgstr "" @@ -361,85 +362,93 @@ msgid ":c:type:`ssize_t` or :c:expr:`Py_ssize_t`" msgstr "" #: library/ctypes.rst:252 -msgid ":class:`c_float`" +msgid ":class:`c_time_t`" msgstr "" #: library/ctypes.rst:252 +msgid ":c:type:`time_t`" +msgstr "" + +#: library/ctypes.rst:254 +msgid ":class:`c_float`" +msgstr "" + +#: library/ctypes.rst:254 msgid ":c:expr:`float`" msgstr "" -#: library/ctypes.rst:254 library/ctypes.rst:256 +#: library/ctypes.rst:256 library/ctypes.rst:258 msgid "float" msgstr "" -#: library/ctypes.rst:254 +#: library/ctypes.rst:256 msgid ":class:`c_double`" msgstr "" -#: library/ctypes.rst:254 +#: library/ctypes.rst:256 msgid ":c:expr:`double`" msgstr "" -#: library/ctypes.rst:256 +#: library/ctypes.rst:258 msgid ":class:`c_longdouble`" msgstr "" -#: library/ctypes.rst:256 +#: library/ctypes.rst:258 msgid ":c:expr:`long double`" msgstr "" -#: library/ctypes.rst:258 +#: library/ctypes.rst:260 msgid ":class:`c_char_p`" msgstr "" -#: library/ctypes.rst:258 +#: library/ctypes.rst:260 msgid ":c:expr:`char *` (NUL terminated)" msgstr "" -#: library/ctypes.rst:258 +#: library/ctypes.rst:260 msgid "bytes object or ``None``" msgstr "" -#: library/ctypes.rst:260 +#: library/ctypes.rst:262 msgid ":class:`c_wchar_p`" msgstr "" -#: library/ctypes.rst:260 +#: library/ctypes.rst:262 msgid ":c:expr:`wchar_t *` (NUL terminated)" msgstr "" -#: library/ctypes.rst:260 +#: library/ctypes.rst:262 msgid "string or ``None``" msgstr "" -#: library/ctypes.rst:262 +#: library/ctypes.rst:264 msgid ":class:`c_void_p`" msgstr "" -#: library/ctypes.rst:262 +#: library/ctypes.rst:264 msgid ":c:expr:`void *`" msgstr "" -#: library/ctypes.rst:262 +#: library/ctypes.rst:264 msgid "int or ``None``" msgstr "" -#: library/ctypes.rst:266 +#: library/ctypes.rst:268 msgid "The constructor accepts any object with a truth value." msgstr "" -#: library/ctypes.rst:268 +#: library/ctypes.rst:270 msgid "" "All these types can be created by calling them with an optional initializer " "of the correct type and value::" msgstr "" -#: library/ctypes.rst:279 +#: library/ctypes.rst:281 msgid "" "Since these types are mutable, their value can also be changed afterwards::" msgstr "" -#: library/ctypes.rst:291 +#: library/ctypes.rst:293 msgid "" "Assigning a new value to instances of the pointer types :class:`c_char_p`, :" "class:`c_wchar_p`, and :class:`c_void_p` changes the *memory location* they " @@ -447,7 +456,7 @@ msgid "" "Python bytes objects are immutable)::" msgstr "" -#: library/ctypes.rst:311 +#: library/ctypes.rst:313 msgid "" "You should be careful, however, not to pass them to functions expecting " "pointers to mutable memory. If you need mutable memory blocks, ctypes has a :" @@ -457,37 +466,37 @@ msgid "" "``value`` property::" msgstr "" -#: library/ctypes.rst:335 +#: library/ctypes.rst:337 msgid "" -"The :func:`create_string_buffer` function replaces the old :func:`c_buffer` " +"The :func:`create_string_buffer` function replaces the old :func:`!c_buffer` " "function (which is still available as an alias). To create a mutable memory " "block containing unicode characters of the C type :c:type:`wchar_t`, use " "the :func:`create_unicode_buffer` function." msgstr "" -#: library/ctypes.rst:344 +#: library/ctypes.rst:346 msgid "Calling functions, continued" msgstr "" -#: library/ctypes.rst:346 +#: library/ctypes.rst:348 msgid "" "Note that printf prints to the real standard output channel, *not* to :data:" "`sys.stdout`, so these examples will only work at the console prompt, not " "from within *IDLE* or *PythonWin*::" msgstr "" -#: library/ctypes.rst:366 +#: library/ctypes.rst:368 msgid "" "As has been mentioned before, all Python types except integers, strings, and " "bytes objects have to be wrapped in their corresponding :mod:`ctypes` type, " "so that they can be converted to the required C data type::" msgstr "" -#: library/ctypes.rst:378 +#: library/ctypes.rst:380 msgid "Calling variadic functions" msgstr "" -#: library/ctypes.rst:380 +#: library/ctypes.rst:382 msgid "" "On a lot of platforms calling variadic functions through ctypes is exactly " "the same as calling functions with a fixed number of parameters. On some " @@ -496,23 +505,23 @@ msgid "" "functions." msgstr "" -#: library/ctypes.rst:385 +#: library/ctypes.rst:387 msgid "" -"On those platforms it is required to specify the *argtypes* attribute for " -"the regular, non-variadic, function arguments:" +"On those platforms it is required to specify the :attr:`~_FuncPtr.argtypes` " +"attribute for the regular, non-variadic, function arguments:" msgstr "" -#: library/ctypes.rst:392 +#: library/ctypes.rst:394 msgid "" "Because specifying the attribute does not inhibit portability it is advised " -"to always specify ``argtypes`` for all variadic functions." +"to always specify :attr:`~_FuncPtr.argtypes` for all variadic functions." msgstr "" -#: library/ctypes.rst:399 +#: library/ctypes.rst:401 msgid "Calling functions with your own custom data types" msgstr "" -#: library/ctypes.rst:401 +#: library/ctypes.rst:403 msgid "" "You can also customize :mod:`ctypes` argument conversion to allow instances " "of your own classes be used as function arguments. :mod:`ctypes` looks for " @@ -521,86 +530,105 @@ msgid "" "or an object with an :attr:`!_as_parameter_` attribute::" msgstr "" -#: library/ctypes.rst:417 +#: library/ctypes.rst:419 msgid "" -"If you don't want to store the instance's data in the :attr:`_as_parameter_` " -"instance variable, you could define a :class:`property` which makes the " -"attribute available on request." +"If you don't want to store the instance's data in the :attr:`!" +"_as_parameter_` instance variable, you could define a :class:`property` " +"which makes the attribute available on request." msgstr "" -#: library/ctypes.rst:425 +#: library/ctypes.rst:427 msgid "Specifying the required argument types (function prototypes)" msgstr "" -#: library/ctypes.rst:427 +#: library/ctypes.rst:429 msgid "" "It is possible to specify the required argument types of functions exported " -"from DLLs by setting the :attr:`argtypes` attribute." +"from DLLs by setting the :attr:`~_FuncPtr.argtypes` attribute." msgstr "" -#: library/ctypes.rst:430 +#: library/ctypes.rst:432 msgid "" -":attr:`argtypes` must be a sequence of C data types (the ``printf`` function " -"is probably not a good example here, because it takes a variable number and " -"different types of parameters depending on the format string, on the other " -"hand this is quite handy to experiment with this feature)::" +":attr:`~_FuncPtr.argtypes` must be a sequence of C data types (the :func:`!" +"printf` function is probably not a good example here, because it takes a " +"variable number and different types of parameters depending on the format " +"string, on the other hand this is quite handy to experiment with this " +"feature)::" msgstr "" -#: library/ctypes.rst:441 +#: library/ctypes.rst:443 msgid "" "Specifying a format protects against incompatible argument types (just as a " "prototype for a C function), and tries to convert the arguments to valid " "types::" msgstr "" -#: library/ctypes.rst:453 +#: library/ctypes.rst:455 msgid "" "If you have defined your own classes which you pass to function calls, you " -"have to implement a :meth:`from_param` class method for them to be able to " -"use them in the :attr:`argtypes` sequence. The :meth:`from_param` class " -"method receives the Python object passed to the function call, it should do " -"a typecheck or whatever is needed to make sure this object is acceptable, " -"and then return the object itself, its :attr:`_as_parameter_` attribute, or " -"whatever you want to pass as the C function argument in this case. Again, " -"the result should be an integer, string, bytes, a :mod:`ctypes` instance, or " -"an object with an :attr:`_as_parameter_` attribute." +"have to implement a :meth:`~_CData.from_param` class method for them to be " +"able to use them in the :attr:`~_FuncPtr.argtypes` sequence. The :meth:" +"`~_CData.from_param` class method receives the Python object passed to the " +"function call, it should do a typecheck or whatever is needed to make sure " +"this object is acceptable, and then return the object itself, its :attr:`!" +"_as_parameter_` attribute, or whatever you want to pass as the C function " +"argument in this case. Again, the result should be an integer, string, " +"bytes, a :mod:`ctypes` instance, or an object with an :attr:`!" +"_as_parameter_` attribute." msgstr "" -#: library/ctypes.rst:467 +#: library/ctypes.rst:469 msgid "Return types" msgstr "" -#: library/ctypes.rst:469 +#: library/ctypes.rst:479 msgid "" "By default functions are assumed to return the C :c:expr:`int` type. Other " -"return types can be specified by setting the :attr:`restype` attribute of " -"the function object." +"return types can be specified by setting the :attr:`~_FuncPtr.restype` " +"attribute of the function object." +msgstr "" + +#: library/ctypes.rst:483 +msgid "" +"The C prototype of :c:func:`time` is ``time_t time(time_t *)``. Because :c:" +"type:`time_t` might be of a different type than the default return type :c:" +"expr:`int`, you should specify the :attr:`!restype` attribute::" +msgstr "" + +#: library/ctypes.rst:489 +msgid "The argument types can be specified using :attr:`~_FuncPtr.argtypes`::" msgstr "" -#: library/ctypes.rst:473 +#: library/ctypes.rst:493 msgid "" -"Here is a more advanced example, it uses the ``strchr`` function, which " +"To call the function with a ``NULL`` pointer as first argument, use " +"``None``::" +msgstr "" + +#: library/ctypes.rst:498 +msgid "" +"Here is a more advanced example, it uses the :func:`!strchr` function, which " "expects a string pointer and a char, and returns a pointer to a string::" msgstr "" -#: library/ctypes.rst:486 +#: library/ctypes.rst:511 msgid "" -"If you want to avoid the ``ord(\"x\")`` calls above, you can set the :attr:" -"`argtypes` attribute, and the second argument will be converted from a " -"single character Python bytes object into a C char::" +"If you want to avoid the :func:`ord(\"x\") ` calls above, you can set " +"the :attr:`~_FuncPtr.argtypes` attribute, and the second argument will be " +"converted from a single character Python bytes object into a C char:" msgstr "" -#: library/ctypes.rst:504 +#: library/ctypes.rst:530 msgid "" "You can also use a callable Python object (a function or a class for " -"example) as the :attr:`restype` attribute, if the foreign function returns " -"an integer. The callable will be called with the *integer* the C function " -"returns, and the result of this call will be used as the result of your " -"function call. This is useful to check for error return values and " +"example) as the :attr:`~_FuncPtr.restype` attribute, if the foreign function " +"returns an integer. The callable will be called with the *integer* the C " +"function returns, and the result of this call will be used as the result of " +"your function call. This is useful to check for error return values and " "automatically raise an exception::" msgstr "" -#: library/ctypes.rst:527 +#: library/ctypes.rst:553 msgid "" "``WinError`` is a function which will call Windows ``FormatMessage()`` api " "to get the string representation of an error code, and *returns* an " @@ -608,17 +636,18 @@ msgid "" "used, it calls :func:`GetLastError` to retrieve it." msgstr "" -#: library/ctypes.rst:532 +#: library/ctypes.rst:558 msgid "" "Please note that a much more powerful error checking mechanism is available " -"through the :attr:`errcheck` attribute; see the reference manual for details." +"through the :attr:`~_FuncPtr.errcheck` attribute; see the reference manual " +"for details." msgstr "" -#: library/ctypes.rst:539 +#: library/ctypes.rst:566 msgid "Passing pointers (or: passing parameters by reference)" msgstr "" -#: library/ctypes.rst:541 +#: library/ctypes.rst:568 msgid "" "Sometimes a C api function expects a *pointer* to a data type as parameter, " "probably to write into the corresponding location, or if the data is too " @@ -626,7 +655,7 @@ msgid "" "reference*." msgstr "" -#: library/ctypes.rst:545 +#: library/ctypes.rst:572 msgid "" ":mod:`ctypes` exports the :func:`byref` function which is used to pass " "parameters by reference. The same effect can be achieved with the :func:" @@ -635,56 +664,57 @@ msgid "" "you don't need the pointer object in Python itself::" msgstr "" -#: library/ctypes.rst:567 +#: library/ctypes.rst:594 msgid "Structures and unions" msgstr "" -#: library/ctypes.rst:569 +#: library/ctypes.rst:596 msgid "" "Structures and unions must derive from the :class:`Structure` and :class:" "`Union` base classes which are defined in the :mod:`ctypes` module. Each " -"subclass must define a :attr:`_fields_` attribute. :attr:`_fields_` must be " -"a list of *2-tuples*, containing a *field name* and a *field type*." +"subclass must define a :attr:`~Structure._fields_` attribute. :attr:`!" +"_fields_` must be a list of *2-tuples*, containing a *field name* and a " +"*field type*." msgstr "" -#: library/ctypes.rst:574 +#: library/ctypes.rst:601 msgid "" "The field type must be a :mod:`ctypes` type like :class:`c_int`, or any " "other derived :mod:`ctypes` type: structure, union, array, pointer." msgstr "" -#: library/ctypes.rst:577 +#: library/ctypes.rst:604 msgid "" "Here is a simple example of a POINT structure, which contains two integers " "named *x* and *y*, and also shows how to initialize a structure in the " "constructor::" msgstr "" -#: library/ctypes.rst:597 +#: library/ctypes.rst:624 msgid "" "You can, however, build much more complicated structures. A structure can " "itself contain other structures by using a structure as a field type." msgstr "" -#: library/ctypes.rst:600 +#: library/ctypes.rst:627 msgid "" "Here is a RECT structure which contains two POINTs named *upperleft* and " "*lowerright*::" msgstr "" -#: library/ctypes.rst:614 +#: library/ctypes.rst:641 msgid "" "Nested structures can also be initialized in the constructor in several " "ways::" msgstr "" -#: library/ctypes.rst:619 +#: library/ctypes.rst:646 msgid "" "Field :term:`descriptor`\\s can be retrieved from the *class*, they are " "useful for debugging because they can provide useful information::" msgstr "" -#: library/ctypes.rst:633 +#: library/ctypes.rst:660 msgid "" ":mod:`ctypes` does not support passing unions or structures with bit-fields " "to functions by value. While this may work on 32-bit x86, it's not " @@ -692,20 +722,20 @@ msgid "" "structures with bit-fields should always be passed to functions by pointer." msgstr "" -#: library/ctypes.rst:639 +#: library/ctypes.rst:666 msgid "Structure/union alignment and byte order" msgstr "" -#: library/ctypes.rst:641 +#: library/ctypes.rst:668 msgid "" "By default, Structure and Union fields are aligned in the same way the C " "compiler does it. It is possible to override this behavior by specifying a :" -"attr:`_pack_` class attribute in the subclass definition. This must be set " -"to a positive integer and specifies the maximum alignment for the fields. " -"This is what ``#pragma pack(n)`` also does in MSVC." +"attr:`~Structure._pack_` class attribute in the subclass definition. This " +"must be set to a positive integer and specifies the maximum alignment for " +"the fields. This is what ``#pragma pack(n)`` also does in MSVC." msgstr "" -#: library/ctypes.rst:647 +#: library/ctypes.rst:674 msgid "" ":mod:`ctypes` uses the native byte order for Structures and Unions. To " "build structures with non-native byte order, you can use one of the :class:" @@ -714,91 +744,91 @@ msgid "" "classes cannot contain pointer fields." msgstr "" -#: library/ctypes.rst:657 +#: library/ctypes.rst:684 msgid "Bit fields in structures and unions" msgstr "" -#: library/ctypes.rst:659 +#: library/ctypes.rst:686 msgid "" "It is possible to create structures and unions containing bit fields. Bit " "fields are only possible for integer fields, the bit width is specified as " -"the third item in the :attr:`_fields_` tuples::" +"the third item in the :attr:`~Structure._fields_` tuples::" msgstr "" -#: library/ctypes.rst:677 +#: library/ctypes.rst:704 msgid "Arrays" msgstr "" -#: library/ctypes.rst:679 +#: library/ctypes.rst:706 msgid "" "Arrays are sequences, containing a fixed number of instances of the same " "type." msgstr "" -#: library/ctypes.rst:681 +#: library/ctypes.rst:708 msgid "" "The recommended way to create array types is by multiplying a data type with " "a positive integer::" msgstr "" -#: library/ctypes.rst:686 +#: library/ctypes.rst:713 msgid "" "Here is an example of a somewhat artificial data type, a structure " "containing 4 POINTs among other stuff::" msgstr "" -#: library/ctypes.rst:702 +#: library/ctypes.rst:729 msgid "Instances are created in the usual way, by calling the class::" msgstr "" -#: library/ctypes.rst:708 +#: library/ctypes.rst:735 msgid "" "The above code print a series of ``0 0`` lines, because the array contents " "is initialized to zeros." msgstr "" -#: library/ctypes.rst:711 +#: library/ctypes.rst:738 msgid "Initializers of the correct type can also be specified::" msgstr "" -#: library/ctypes.rst:727 +#: library/ctypes.rst:754 msgid "Pointers" msgstr "" -#: library/ctypes.rst:729 +#: library/ctypes.rst:756 msgid "" "Pointer instances are created by calling the :func:`pointer` function on a :" "mod:`ctypes` type::" msgstr "" -#: library/ctypes.rst:737 +#: library/ctypes.rst:764 msgid "" "Pointer instances have a :attr:`~_Pointer.contents` attribute which returns " "the object to which the pointer points, the ``i`` object above::" msgstr "" -#: library/ctypes.rst:744 +#: library/ctypes.rst:771 msgid "" "Note that :mod:`ctypes` does not have OOR (original object return), it " "constructs a new, equivalent object each time you retrieve an attribute::" msgstr "" -#: library/ctypes.rst:753 +#: library/ctypes.rst:780 msgid "" "Assigning another :class:`c_int` instance to the pointer's contents " "attribute would cause the pointer to point to the memory location where this " "is stored::" msgstr "" -#: library/ctypes.rst:765 +#: library/ctypes.rst:792 msgid "Pointer instances can also be indexed with integers::" msgstr "" -#: library/ctypes.rst:771 +#: library/ctypes.rst:798 msgid "Assigning to an integer index changes the pointed to value::" msgstr "" -#: library/ctypes.rst:780 +#: library/ctypes.rst:807 msgid "" "It is also possible to use indexes different from 0, but you must know what " "you're doing, just as in C: You can access or change arbitrary memory " @@ -807,7 +837,7 @@ msgid "" "instead of a single item." msgstr "" -#: library/ctypes.rst:786 +#: library/ctypes.rst:813 msgid "" "Behind the scenes, the :func:`pointer` function does more than simply create " "pointer instances, it has to create pointer *types* first. This is done with " @@ -815,46 +845,47 @@ msgid "" "returns a new type::" msgstr "" -#: library/ctypes.rst:802 +#: library/ctypes.rst:829 msgid "" "Calling the pointer type without an argument creates a ``NULL`` pointer. " "``NULL`` pointers have a ``False`` boolean value::" msgstr "" -#: library/ctypes.rst:810 +#: library/ctypes.rst:837 msgid "" ":mod:`ctypes` checks for ``NULL`` when dereferencing pointers (but " "dereferencing invalid non-\\ ``NULL`` pointers would crash Python)::" msgstr "" -#: library/ctypes.rst:829 +#: library/ctypes.rst:856 msgid "Type conversions" msgstr "" -#: library/ctypes.rst:831 +#: library/ctypes.rst:858 msgid "" "Usually, ctypes does strict type checking. This means, if you have " -"``POINTER(c_int)`` in the :attr:`argtypes` list of a function or as the type " -"of a member field in a structure definition, only instances of exactly the " -"same type are accepted. There are some exceptions to this rule, where " -"ctypes accepts other objects. For example, you can pass compatible array " -"instances instead of pointer types. So, for ``POINTER(c_int)``, ctypes " -"accepts an array of c_int::" +"``POINTER(c_int)`` in the :attr:`~_FuncPtr.argtypes` list of a function or " +"as the type of a member field in a structure definition, only instances of " +"exactly the same type are accepted. There are some exceptions to this rule, " +"where ctypes accepts other objects. For example, you can pass compatible " +"array instances instead of pointer types. So, for ``POINTER(c_int)``, " +"ctypes accepts an array of c_int::" msgstr "" -#: library/ctypes.rst:852 +#: library/ctypes.rst:879 msgid "" "In addition, if a function argument is explicitly declared to be a pointer " -"type (such as ``POINTER(c_int)``) in :attr:`argtypes`, an object of the " -"pointed type (``c_int`` in this case) can be passed to the function. ctypes " -"will apply the required :func:`byref` conversion in this case automatically." +"type (such as ``POINTER(c_int)``) in :attr:`~_FuncPtr.argtypes`, an object " +"of the pointed type (``c_int`` in this case) can be passed to the function. " +"ctypes will apply the required :func:`byref` conversion in this case " +"automatically." msgstr "" -#: library/ctypes.rst:857 +#: library/ctypes.rst:884 msgid "To set a POINTER type field to ``NULL``, you can assign ``None``::" msgstr "" -#: library/ctypes.rst:864 +#: library/ctypes.rst:891 msgid "" "Sometimes you have instances of incompatible types. In C, you can cast one " "type into another type. :mod:`ctypes` provides a :func:`cast` function " @@ -863,11 +894,11 @@ msgid "" "``values`` field, but not instances of other types::" msgstr "" -#: library/ctypes.rst:876 +#: library/ctypes.rst:903 msgid "For these cases, the :func:`cast` function is handy." msgstr "" -#: library/ctypes.rst:878 +#: library/ctypes.rst:905 msgid "" "The :func:`cast` function can be used to cast a ctypes instance into a " "pointer to a different ctypes data type. :func:`cast` takes two parameters, " @@ -876,60 +907,60 @@ msgid "" "references the same memory block as the first argument::" msgstr "" -#: library/ctypes.rst:889 +#: library/ctypes.rst:916 msgid "" "So, :func:`cast` can be used to assign to the ``values`` field of ``Bar`` " "the structure::" msgstr "" -#: library/ctypes.rst:902 +#: library/ctypes.rst:929 msgid "Incomplete Types" msgstr "" -#: library/ctypes.rst:904 +#: library/ctypes.rst:931 msgid "" "*Incomplete Types* are structures, unions or arrays whose members are not " "yet specified. In C, they are specified by forward declarations, which are " "defined later::" msgstr "" -#: library/ctypes.rst:915 +#: library/ctypes.rst:942 msgid "" "The straightforward translation into ctypes code would be this, but it does " "not work::" msgstr "" -#: library/ctypes.rst:928 +#: library/ctypes.rst:955 msgid "" "because the new ``class cell`` is not available in the class statement " "itself. In :mod:`ctypes`, we can define the ``cell`` class and set the :attr:" -"`_fields_` attribute later, after the class statement::" +"`~Structure._fields_` attribute later, after the class statement::" msgstr "" -#: library/ctypes.rst:940 +#: library/ctypes.rst:967 msgid "" "Let's try it. We create two instances of ``cell``, and let them point to " "each other, and finally follow the pointer chain a few times::" msgstr "" -#: library/ctypes.rst:961 +#: library/ctypes.rst:988 msgid "Callback functions" msgstr "" -#: library/ctypes.rst:963 +#: library/ctypes.rst:990 msgid "" ":mod:`ctypes` allows creating C callable function pointers from Python " "callables. These are sometimes called *callback functions*." msgstr "" -#: library/ctypes.rst:966 +#: library/ctypes.rst:993 msgid "" "First, you must create a class for the callback function. The class knows " "the calling convention, the return type, and the number and types of " "arguments this function will receive." msgstr "" -#: library/ctypes.rst:970 +#: library/ctypes.rst:997 msgid "" "The :func:`CFUNCTYPE` factory function creates types for callback functions " "using the ``cdecl`` calling convention. On Windows, the :func:`WINFUNCTYPE` " @@ -937,23 +968,23 @@ msgid "" "calling convention." msgstr "" -#: library/ctypes.rst:975 +#: library/ctypes.rst:1002 msgid "" "Both of these factory functions are called with the result type as first " "argument, and the callback functions expected argument types as the " "remaining arguments." msgstr "" -#: library/ctypes.rst:979 +#: library/ctypes.rst:1006 msgid "" -"I will present an example here which uses the standard C library's :c:func:" -"`qsort` function, that is used to sort items with the help of a callback " -"function. :c:func:`qsort` will be used to sort an array of integers::" +"I will present an example here which uses the standard C library's :c:func:`!" +"qsort` function, that is used to sort items with the help of a callback " +"function. :c:func:`!qsort` will be used to sort an array of integers::" msgstr "" -#: library/ctypes.rst:989 +#: library/ctypes.rst:1016 msgid "" -":func:`qsort` must be called with a pointer to the data to sort, the number " +":func:`!qsort` must be called with a pointer to the data to sort, the number " "of items in the data array, the size of one item, and a pointer to the " "comparison function, the callback. The callback will then be called with two " "pointers to items, and it must return a negative integer if the first item " @@ -961,44 +992,44 @@ msgid "" "otherwise." msgstr "" -#: library/ctypes.rst:995 +#: library/ctypes.rst:1022 msgid "" "So our callback function receives pointers to integers, and must return an " "integer. First we create the ``type`` for the callback function::" msgstr "" -#: library/ctypes.rst:1001 +#: library/ctypes.rst:1028 msgid "" "To get started, here is a simple callback that shows the values it gets " "passed::" msgstr "" -#: library/ctypes.rst:1011 +#: library/ctypes.rst:1038 msgid "The result::" msgstr "" -#: library/ctypes.rst:1021 +#: library/ctypes.rst:1048 msgid "Now we can actually compare the two items and return a useful result::" msgstr "" -#: library/ctypes.rst:1036 +#: library/ctypes.rst:1063 msgid "As we can easily check, our array is sorted now::" msgstr "" -#: library/ctypes.rst:1043 +#: library/ctypes.rst:1070 msgid "" "The function factories can be used as decorator factories, so we may as well " "write::" msgstr "" -#: library/ctypes.rst:1061 +#: library/ctypes.rst:1088 msgid "" "Make sure you keep references to :func:`CFUNCTYPE` objects as long as they " "are used from C code. :mod:`ctypes` doesn't, and if you don't, they may be " "garbage collected, crashing your program when a callback is made." msgstr "" -#: library/ctypes.rst:1065 +#: library/ctypes.rst:1092 msgid "" "Also, note that if the callback function is called in a thread created " "outside of Python's control (e.g. by the foreign code that calls the " @@ -1008,43 +1039,42 @@ msgid "" "even when those calls are made from the same C thread." msgstr "" -#: library/ctypes.rst:1075 +#: library/ctypes.rst:1102 msgid "Accessing values exported from dlls" msgstr "" -#: library/ctypes.rst:1077 +#: library/ctypes.rst:1104 msgid "" "Some shared libraries not only export functions, they also export variables. " -"An example in the Python library itself is the :c:data:`Py_OptimizeFlag`, an " -"integer set to 0, 1, or 2, depending on the :option:`-O` or :option:`-OO` " -"flag given on startup." +"An example in the Python library itself is the :c:data:`Py_Version`, Python " +"runtime version number encoded in a single constant integer." msgstr "" -#: library/ctypes.rst:1082 +#: library/ctypes.rst:1108 msgid "" -":mod:`ctypes` can access values like this with the :meth:`in_dll` class " -"methods of the type. *pythonapi* is a predefined symbol giving access to " -"the Python C api::" +":mod:`ctypes` can access values like this with the :meth:`~_CData.in_dll` " +"class methods of the type. *pythonapi* is a predefined symbol giving access " +"to the Python C api::" msgstr "" -#: library/ctypes.rst:1091 +#: library/ctypes.rst:1116 msgid "" "If the interpreter would have been started with :option:`-O`, the sample " "would have printed ``c_long(1)``, or ``c_long(2)`` if :option:`-OO` would " "have been specified." msgstr "" -#: library/ctypes.rst:1095 +#: library/ctypes.rst:1120 msgid "" "An extended example which also demonstrates the use of pointers accesses " "the :c:data:`PyImport_FrozenModules` pointer exported by Python." msgstr "" -#: library/ctypes.rst:1098 +#: library/ctypes.rst:1123 msgid "Quoting the docs for that value:" msgstr "" -#: library/ctypes.rst:1100 +#: library/ctypes.rst:1125 msgid "" "This pointer is initialized to point to an array of :c:struct:`_frozen` " "records, terminated by one whose members are all ``NULL`` or zero. When a " @@ -1053,19 +1083,19 @@ msgid "" "frozen modules." msgstr "" -#: library/ctypes.rst:1105 +#: library/ctypes.rst:1130 msgid "" "So manipulating this pointer could even prove useful. To restrict the " "example size, we show only how this table can be read with :mod:`ctypes`::" msgstr "" -#: library/ctypes.rst:1119 +#: library/ctypes.rst:1144 msgid "" "We have defined the :c:struct:`_frozen` data type, so we can get the pointer " "to the table::" msgstr "" -#: library/ctypes.rst:1126 +#: library/ctypes.rst:1151 msgid "" "Since ``table`` is a ``pointer`` to the array of ``struct_frozen`` records, " "we can iterate over it, but we just have to make sure that our loop " @@ -1074,34 +1104,34 @@ msgid "" "the loop when we hit the ``NULL`` entry::" msgstr "" -#: library/ctypes.rst:1142 +#: library/ctypes.rst:1167 msgid "" "The fact that standard Python has a frozen module and a frozen package " "(indicated by the negative ``size`` member) is not well known, it is only " "used for testing. Try it out with ``import __hello__`` for example." msgstr "" -#: library/ctypes.rst:1150 +#: library/ctypes.rst:1175 msgid "Surprises" msgstr "" -#: library/ctypes.rst:1152 +#: library/ctypes.rst:1177 msgid "" "There are some edges in :mod:`ctypes` where you might expect something other " "than what actually happens." msgstr "" -#: library/ctypes.rst:1155 +#: library/ctypes.rst:1180 msgid "Consider the following example::" msgstr "" -#: library/ctypes.rst:1175 +#: library/ctypes.rst:1200 msgid "" "Hm. We certainly expected the last statement to print ``3 4 1 2``. What " "happened? Here are the steps of the ``rc.a, rc.b = rc.b, rc.a`` line above::" msgstr "" -#: library/ctypes.rst:1183 +#: library/ctypes.rst:1208 msgid "" "Note that ``temp0`` and ``temp1`` are objects still using the internal " "buffer of the ``rc`` object above. So executing ``rc.a = temp0`` copies the " @@ -1110,26 +1140,26 @@ msgid "" "have the expected effect." msgstr "" -#: library/ctypes.rst:1189 +#: library/ctypes.rst:1214 msgid "" "Keep in mind that retrieving sub-objects from Structure, Unions, and Arrays " "doesn't *copy* the sub-object, instead it retrieves a wrapper object " "accessing the root-object's underlying buffer." msgstr "" -#: library/ctypes.rst:1193 +#: library/ctypes.rst:1218 msgid "" "Another example that may behave differently from what one would expect is " "this::" msgstr "" -#: library/ctypes.rst:1205 +#: library/ctypes.rst:1230 msgid "" "Objects instantiated from :class:`c_char_p` can only have their value set to " "bytes or integers." msgstr "" -#: library/ctypes.rst:1208 +#: library/ctypes.rst:1233 msgid "" "Why is it printing ``False``? ctypes instances are objects containing a " "memory block plus some :term:`descriptor`\\s accessing the contents of the " @@ -1138,16 +1168,16 @@ msgid "" "the contents again constructs a new Python object each time!" msgstr "" -#: library/ctypes.rst:1218 +#: library/ctypes.rst:1243 msgid "Variable-sized data types" msgstr "" -#: library/ctypes.rst:1220 +#: library/ctypes.rst:1245 msgid "" ":mod:`ctypes` provides some support for variable-sized arrays and structures." msgstr "" -#: library/ctypes.rst:1222 +#: library/ctypes.rst:1247 msgid "" "The :func:`resize` function can be used to resize the memory buffer of an " "existing ctypes object. The function takes the object as first argument, " @@ -1156,50 +1186,50 @@ msgid "" "objects type, a :exc:`ValueError` is raised if this is tried::" msgstr "" -#: library/ctypes.rst:1242 +#: library/ctypes.rst:1267 msgid "" "This is nice and fine, but how would one access the additional elements " "contained in this array? Since the type still only knows about 4 elements, " "we get errors accessing other elements::" msgstr "" -#: library/ctypes.rst:1254 +#: library/ctypes.rst:1279 msgid "" "Another way to use variable-sized data types with :mod:`ctypes` is to use " "the dynamic nature of Python, and (re-)define the data type after the " "required size is already known, on a case by case basis." msgstr "" -#: library/ctypes.rst:1262 +#: library/ctypes.rst:1287 msgid "ctypes reference" msgstr "" -#: library/ctypes.rst:1268 +#: library/ctypes.rst:1293 msgid "Finding shared libraries" msgstr "" -#: library/ctypes.rst:1270 +#: library/ctypes.rst:1295 msgid "" "When programming in a compiled language, shared libraries are accessed when " "compiling/linking a program, and when the program is run." msgstr "" -#: library/ctypes.rst:1273 +#: library/ctypes.rst:1298 msgid "" -"The purpose of the :func:`find_library` function is to locate a library in a " -"way similar to what the compiler or runtime loader does (on platforms with " -"several versions of a shared library the most recent should be loaded), " -"while the ctypes library loaders act like when a program is run, and call " -"the runtime loader directly." +"The purpose of the :func:`~ctypes.util.find_library` function is to locate a " +"library in a way similar to what the compiler or runtime loader does (on " +"platforms with several versions of a shared library the most recent should " +"be loaded), while the ctypes library loaders act like when a program is run, " +"and call the runtime loader directly." msgstr "" -#: library/ctypes.rst:1279 +#: library/ctypes.rst:1304 msgid "" -"The :mod:`ctypes.util` module provides a function which can help to " +"The :mod:`!ctypes.util` module provides a function which can help to " "determine the library to load." msgstr "" -#: library/ctypes.rst:1287 +#: library/ctypes.rst:1312 msgid "" "Try to find a library and return a pathname. *name* is the library name " "without any prefix like *lib*, suffix like ``.so``, ``.dylib`` or version " @@ -1207,67 +1237,69 @@ msgid "" "If no library can be found, returns ``None``." msgstr "" -#: library/ctypes.rst:1935 +#: library/ctypes.rst:1976 msgid "The exact functionality is system dependent." msgstr "" -#: library/ctypes.rst:1294 +#: library/ctypes.rst:1319 msgid "" -"On Linux, :func:`find_library` tries to run external programs (``/sbin/" -"ldconfig``, ``gcc``, ``objdump`` and ``ld``) to find the library file. It " -"returns the filename of the library file." +"On Linux, :func:`~ctypes.util.find_library` tries to run external programs " +"(``/sbin/ldconfig``, ``gcc``, ``objdump`` and ``ld``) to find the library " +"file. It returns the filename of the library file." msgstr "" -#: library/ctypes.rst:1298 +#: library/ctypes.rst:1323 msgid "" "On Linux, the value of the environment variable ``LD_LIBRARY_PATH`` is used " "when searching for libraries, if a library cannot be found by any other " "means." msgstr "" -#: library/ctypes.rst:1302 +#: library/ctypes.rst:1327 msgid "Here are some examples::" msgstr "" -#: library/ctypes.rst:1313 +#: library/ctypes.rst:1338 msgid "" -"On macOS, :func:`find_library` tries several predefined naming schemes and " -"paths to locate the library, and returns a full pathname if successful::" +"On macOS, :func:`~ctypes.util.find_library` tries several predefined naming " +"schemes and paths to locate the library, and returns a full pathname if " +"successful::" msgstr "" -#: library/ctypes.rst:1327 +#: library/ctypes.rst:1352 msgid "" -"On Windows, :func:`find_library` searches along the system search path, and " -"returns the full pathname, but since there is no predefined naming scheme a " -"call like ``find_library(\"c\")`` will fail and return ``None``." +"On Windows, :func:`~ctypes.util.find_library` searches along the system " +"search path, and returns the full pathname, but since there is no predefined " +"naming scheme a call like ``find_library(\"c\")`` will fail and return " +"``None``." msgstr "" -#: library/ctypes.rst:1331 +#: library/ctypes.rst:1356 msgid "" "If wrapping a shared library with :mod:`ctypes`, it *may* be better to " "determine the shared library name at development time, and hardcode that " -"into the wrapper module instead of using :func:`find_library` to locate the " -"library at runtime." +"into the wrapper module instead of using :func:`~ctypes.util.find_library` " +"to locate the library at runtime." msgstr "" -#: library/ctypes.rst:1339 +#: library/ctypes.rst:1364 msgid "Loading shared libraries" msgstr "" -#: library/ctypes.rst:1341 +#: library/ctypes.rst:1366 msgid "" "There are several ways to load shared libraries into the Python process. " "One way is to instantiate one of the following classes:" msgstr "" -#: library/ctypes.rst:1347 +#: library/ctypes.rst:1372 msgid "" "Instances of this class represent loaded shared libraries. Functions in " "these libraries use the standard C calling convention, and are assumed to " "return :c:expr:`int`." msgstr "" -#: library/ctypes.rst:1351 +#: library/ctypes.rst:1376 msgid "" "On Windows creating a :class:`CDLL` instance may fail even if the DLL name " "exists. When a dependent DLL of the loaded DLL is not found, a :exc:" @@ -1279,13 +1311,17 @@ msgid "" "determine which one is not found using Windows debugging and tracing tools." msgstr "" -#: library/ctypes.rst:1363 +#: library/ctypes.rst:1410 library/ctypes.rst:1438 +msgid "The *name* parameter can now be a :term:`path-like object`." +msgstr "" + +#: library/ctypes.rst:1392 msgid "" "`Microsoft DUMPBIN tool `_ -- A tool to find DLL dependents." msgstr "" -#: library/ctypes.rst:1369 +#: library/ctypes.rst:1398 msgid "" "Windows only: Instances of this class represent loaded shared libraries, " "functions in these libraries use the ``stdcall`` calling convention, and are " @@ -1295,24 +1331,24 @@ msgid "" "value signals a failure, an :class:`OSError` is automatically raised." msgstr "" -#: library/ctypes.rst:1376 +#: library/ctypes.rst:1405 msgid ":exc:`WindowsError` used to be raised." msgstr "" -#: library/ctypes.rst:1382 +#: library/ctypes.rst:1415 msgid "" "Windows only: Instances of this class represent loaded shared libraries, " "functions in these libraries use the ``stdcall`` calling convention, and are " "assumed to return :c:expr:`int` by default." msgstr "" -#: library/ctypes.rst:1386 +#: library/ctypes.rst:1423 msgid "" "The Python :term:`global interpreter lock` is released before calling any " "function exported by these libraries, and reacquired afterwards." msgstr "" -#: library/ctypes.rst:1392 +#: library/ctypes.rst:1429 msgid "" "Instances of this class behave like :class:`CDLL` instances, except that the " "Python GIL is *not* released during the function call, and after the " @@ -1320,21 +1356,21 @@ msgid "" "set, a Python exception is raised." msgstr "" -#: library/ctypes.rst:1397 +#: library/ctypes.rst:1434 msgid "Thus, this is only useful to call Python C api functions directly." msgstr "" -#: library/ctypes.rst:1399 +#: library/ctypes.rst:1440 msgid "" "All these classes can be instantiated by calling them with at least one " "argument, the pathname of the shared library. If you have an existing " "handle to an already loaded shared library, it can be passed as the " -"``handle`` named parameter, otherwise the underlying platforms ``dlopen`` or " -"``LoadLibrary`` function is used to load the library into the process, and " -"to get a handle to it." +"``handle`` named parameter, otherwise the underlying platforms :c:func:`!" +"dlopen` or :c:func:`!LoadLibrary` function is used to load the library into " +"the process, and to get a handle to it." msgstr "" -#: library/ctypes.rst:1406 +#: library/ctypes.rst:1447 msgid "" "The *mode* parameter can be used to specify how the library is loaded. For " "details, consult the :manpage:`dlopen(3)` manpage. On Windows, *mode* is " @@ -1342,7 +1378,7 @@ msgid "" "configurable." msgstr "" -#: library/ctypes.rst:1411 +#: library/ctypes.rst:1452 msgid "" "The *use_errno* parameter, when set to true, enables a ctypes mechanism that " "allows accessing the system :data:`errno` error number in a safe way. :mod:" @@ -1352,55 +1388,55 @@ msgid "" "private copy, the same happens immediately after the function call." msgstr "" -#: library/ctypes.rst:1418 +#: library/ctypes.rst:1459 msgid "" "The function :func:`ctypes.get_errno` returns the value of the ctypes " "private copy, and the function :func:`ctypes.set_errno` changes the ctypes " "private copy to a new value and returns the former value." msgstr "" -#: library/ctypes.rst:1422 +#: library/ctypes.rst:1463 msgid "" "The *use_last_error* parameter, when set to true, enables the same mechanism " "for the Windows error code which is managed by the :func:`GetLastError` and :" -"func:`SetLastError` Windows API functions; :func:`ctypes.get_last_error` " +"func:`!SetLastError` Windows API functions; :func:`ctypes.get_last_error` " "and :func:`ctypes.set_last_error` are used to request and change the ctypes " "private copy of the windows error code." msgstr "" -#: library/ctypes.rst:1428 +#: library/ctypes.rst:1469 msgid "" "The *winmode* parameter is used on Windows to specify how the library is " "loaded (since *mode* is ignored). It takes any value that is valid for the " "Win32 API ``LoadLibraryEx`` flags parameter. When omitted, the default is to " -"use the flags that result in the most secure DLL load to avoiding issues " +"use the flags that result in the most secure DLL load, which avoids issues " "such as DLL hijacking. Passing the full path to the DLL is the safest way to " "ensure the correct library and dependencies are loaded." msgstr "" -#: library/ctypes.rst:1435 +#: library/ctypes.rst:1476 msgid "Added *winmode* parameter." msgstr "" -#: library/ctypes.rst:1442 +#: library/ctypes.rst:1483 msgid "" "Flag to use as *mode* parameter. On platforms where this flag is not " "available, it is defined as the integer zero." msgstr "" -#: library/ctypes.rst:1449 +#: library/ctypes.rst:1490 msgid "" "Flag to use as *mode* parameter. On platforms where this is not available, " "it is the same as *RTLD_GLOBAL*." msgstr "" -#: library/ctypes.rst:1456 +#: library/ctypes.rst:1497 msgid "" "The default mode which is used to load shared libraries. On OSX 10.3, this " "is *RTLD_GLOBAL*, otherwise it is the same as *RTLD_LOCAL*." msgstr "" -#: library/ctypes.rst:1459 +#: library/ctypes.rst:1500 msgid "" "Instances of these classes have no public methods. Functions exported by " "the shared library can be accessed as attributes or by index. Please note " @@ -1409,125 +1445,126 @@ msgid "" "other hand, accessing it through an index returns a new object each time::" msgstr "" -#: library/ctypes.rst:1472 +#: library/ctypes.rst:1513 msgid "" "The following public attributes are available, their name starts with an " "underscore to not clash with exported function names:" msgstr "" -#: library/ctypes.rst:1478 +#: library/ctypes.rst:1519 msgid "The system handle used to access the library." msgstr "" -#: library/ctypes.rst:1483 +#: library/ctypes.rst:1524 msgid "The name of the library passed in the constructor." msgstr "" -#: library/ctypes.rst:1485 +#: library/ctypes.rst:1526 msgid "" "Shared libraries can also be loaded by using one of the prefabricated " "objects, which are instances of the :class:`LibraryLoader` class, either by " -"calling the :meth:`LoadLibrary` method, or by retrieving the library as " -"attribute of the loader instance." +"calling the :meth:`~LibraryLoader.LoadLibrary` method, or by retrieving the " +"library as attribute of the loader instance." msgstr "" -#: library/ctypes.rst:1493 +#: library/ctypes.rst:1534 msgid "" "Class which loads shared libraries. *dlltype* should be one of the :class:" "`CDLL`, :class:`PyDLL`, :class:`WinDLL`, or :class:`OleDLL` types." msgstr "" -#: library/ctypes.rst:1496 +#: library/ctypes.rst:1537 msgid "" -":meth:`__getattr__` has special behavior: It allows loading a shared library " -"by accessing it as attribute of a library loader instance. The result is " -"cached, so repeated attribute accesses return the same library each time." +":meth:`!__getattr__` has special behavior: It allows loading a shared " +"library by accessing it as attribute of a library loader instance. The " +"result is cached, so repeated attribute accesses return the same library " +"each time." msgstr "" -#: library/ctypes.rst:1502 +#: library/ctypes.rst:1543 msgid "" "Load a shared library into the process and return it. This method always " "returns a new instance of the library." msgstr "" -#: library/ctypes.rst:1506 +#: library/ctypes.rst:1547 msgid "These prefabricated library loaders are available:" msgstr "" -#: library/ctypes.rst:1511 +#: library/ctypes.rst:1552 msgid "Creates :class:`CDLL` instances." msgstr "" -#: library/ctypes.rst:1517 +#: library/ctypes.rst:1558 msgid "Windows only: Creates :class:`WinDLL` instances." msgstr "" -#: library/ctypes.rst:1523 +#: library/ctypes.rst:1564 msgid "Windows only: Creates :class:`OleDLL` instances." msgstr "" -#: library/ctypes.rst:1529 +#: library/ctypes.rst:1570 msgid "Creates :class:`PyDLL` instances." msgstr "" -#: library/ctypes.rst:1532 +#: library/ctypes.rst:1573 msgid "" "For accessing the C Python api directly, a ready-to-use Python shared " "library object is available:" msgstr "" -#: library/ctypes.rst:1538 +#: library/ctypes.rst:1579 msgid "" "An instance of :class:`PyDLL` that exposes Python C API functions as " "attributes. Note that all these functions are assumed to return C :c:expr:" "`int`, which is of course not always the truth, so you have to assign the " -"correct :attr:`restype` attribute to use these functions." +"correct :attr:`!restype` attribute to use these functions." msgstr "" -#: library/ctypes.rst:1543 +#: library/ctypes.rst:1584 msgid "" "Raises an :ref:`auditing event ` ``ctypes.dlopen`` with argument " "``name``." msgstr "" -#: library/ctypes.rst:1545 +#: library/ctypes.rst:1586 msgid "" "Loading a library through any of these objects raises an :ref:`auditing " "event ` ``ctypes.dlopen`` with string argument ``name``, the name " "used to load the library." msgstr "" -#: library/ctypes.rst:1549 +#: library/ctypes.rst:1590 msgid "" "Raises an :ref:`auditing event ` ``ctypes.dlsym`` with arguments " "``library``, ``name``." msgstr "" -#: library/ctypes.rst:1551 +#: library/ctypes.rst:1592 msgid "" "Accessing a function on a loaded library raises an auditing event ``ctypes." "dlsym`` with arguments ``library`` (the library object) and ``name`` (the " "symbol's name as a string or integer)." msgstr "" -#: library/ctypes.rst:1555 +#: library/ctypes.rst:1596 msgid "" "Raises an :ref:`auditing event ` ``ctypes.dlsym/handle`` with " "arguments ``handle``, ``name``." msgstr "" -#: library/ctypes.rst:1557 +#: library/ctypes.rst:1598 msgid "" "In cases when only the library handle is available rather than the object, " "accessing a function raises an auditing event ``ctypes.dlsym/handle`` with " "arguments ``handle`` (the raw library handle) and ``name``." msgstr "" -#: library/ctypes.rst:1564 +#: library/ctypes.rst:1605 msgid "Foreign functions" msgstr "" -#: library/ctypes.rst:1566 +#: library/ctypes.rst:1607 msgid "" "As explained in the previous section, foreign functions can be accessed as " "attributes of loaded shared libraries. The function objects created in this " @@ -1536,39 +1573,39 @@ msgid "" "library loader. They are instances of a private class:" msgstr "" -#: library/ctypes.rst:1575 +#: library/ctypes.rst:1616 msgid "Base class for C callable foreign functions." msgstr "" -#: library/ctypes.rst:1577 +#: library/ctypes.rst:1618 msgid "" "Instances of foreign functions are also C compatible data types; they " "represent C function pointers." msgstr "" -#: library/ctypes.rst:1580 +#: library/ctypes.rst:1621 msgid "" "This behavior can be customized by assigning to special attributes of the " "foreign function object." msgstr "" -#: library/ctypes.rst:1585 +#: library/ctypes.rst:1626 msgid "" "Assign a ctypes type to specify the result type of the foreign function. Use " "``None`` for :c:expr:`void`, a function not returning anything." msgstr "" -#: library/ctypes.rst:1588 +#: library/ctypes.rst:1629 msgid "" "It is possible to assign a callable Python object that is not a ctypes type, " "in this case the function is assumed to return a C :c:expr:`int`, and the " "callable will be called with this integer, allowing further processing or " "error checking. Using this is deprecated, for more flexible post processing " -"or error checking use a ctypes data type as :attr:`restype` and assign a " +"or error checking use a ctypes data type as :attr:`!restype` and assign a " "callable to the :attr:`errcheck` attribute." msgstr "" -#: library/ctypes.rst:1597 +#: library/ctypes.rst:1638 msgid "" "Assign a tuple of ctypes types to specify the argument types that the " "function accepts. Functions using the ``stdcall`` calling convention can " @@ -1577,94 +1614,94 @@ msgid "" "unspecified arguments as well." msgstr "" -#: library/ctypes.rst:1603 +#: library/ctypes.rst:1644 msgid "" "When a foreign function is called, each actual argument is passed to the :" -"meth:`from_param` class method of the items in the :attr:`argtypes` tuple, " -"this method allows adapting the actual argument to an object that the " +"meth:`~_CData.from_param` class method of the items in the :attr:`argtypes` " +"tuple, this method allows adapting the actual argument to an object that the " "foreign function accepts. For example, a :class:`c_char_p` item in the :" "attr:`argtypes` tuple will convert a string passed as argument into a bytes " "object using ctypes conversion rules." msgstr "" -#: library/ctypes.rst:1610 +#: library/ctypes.rst:1651 msgid "" "New: It is now possible to put items in argtypes which are not ctypes types, " -"but each item must have a :meth:`from_param` method which returns a value " -"usable as argument (integer, string, ctypes instance). This allows defining " -"adapters that can adapt custom objects as function parameters." +"but each item must have a :meth:`~_CData.from_param` method which returns a " +"value usable as argument (integer, string, ctypes instance). This allows " +"defining adapters that can adapt custom objects as function parameters." msgstr "" -#: library/ctypes.rst:1617 +#: library/ctypes.rst:1658 msgid "" "Assign a Python function or another callable to this attribute. The callable " "will be called with three or more arguments:" msgstr "" -#: library/ctypes.rst:1624 +#: library/ctypes.rst:1665 msgid "" -"*result* is what the foreign function returns, as specified by the :attr:" -"`restype` attribute." +"*result* is what the foreign function returns, as specified by the :attr:`!" +"restype` attribute." msgstr "" -#: library/ctypes.rst:1627 +#: library/ctypes.rst:1668 msgid "" "*func* is the foreign function object itself, this allows reusing the same " "callable object to check or post process the results of several functions." msgstr "" -#: library/ctypes.rst:1631 +#: library/ctypes.rst:1672 msgid "" "*arguments* is a tuple containing the parameters originally passed to the " "function call, this allows specializing the behavior on the arguments used." msgstr "" -#: library/ctypes.rst:1635 +#: library/ctypes.rst:1676 msgid "" "The object that this function returns will be returned from the foreign " "function call, but it can also check the result value and raise an exception " "if the foreign function call failed." msgstr "" -#: library/ctypes.rst:1642 +#: library/ctypes.rst:1683 msgid "" "This exception is raised when a foreign function call cannot convert one of " "the passed arguments." msgstr "" -#: library/ctypes.rst:1646 +#: library/ctypes.rst:1687 msgid "" -"Raises an :ref:`auditing event ` ``ctypes.seh_exception`` with " +"Raises an :ref:`auditing event ` ``ctypes.set_exception`` with " "argument ``code``." msgstr "" -#: library/ctypes.rst:1648 +#: library/ctypes.rst:1689 msgid "" "On Windows, when a foreign function call raises a system exception (for " "example, due to an access violation), it will be captured and replaced with " "a suitable Python exception. Further, an auditing event ``ctypes." -"seh_exception`` with argument ``code`` will be raised, allowing an audit " +"set_exception`` with argument ``code`` will be raised, allowing an audit " "hook to replace the exception with its own." msgstr "" -#: library/ctypes.rst:1654 +#: library/ctypes.rst:1695 msgid "" "Raises an :ref:`auditing event ` ``ctypes.call_function`` with " "arguments ``func_pointer``, ``arguments``." msgstr "" -#: library/ctypes.rst:1656 +#: library/ctypes.rst:1697 msgid "" "Some ways to invoke foreign function calls may raise an auditing event " "``ctypes.call_function`` with arguments ``function pointer`` and " "``arguments``." msgstr "" -#: library/ctypes.rst:1662 +#: library/ctypes.rst:1703 msgid "Function prototypes" msgstr "" -#: library/ctypes.rst:1664 +#: library/ctypes.rst:1705 msgid "" "Foreign functions can also be created by instantiating function prototypes. " "Function prototypes are similar to function prototypes in C; they describe a " @@ -1675,7 +1712,7 @@ msgid "" "``@wrapper`` syntax. See :ref:`ctypes-callback-functions` for examples." msgstr "" -#: library/ctypes.rst:1675 +#: library/ctypes.rst:1716 msgid "" "The returned function prototype creates functions that use the standard C " "calling convention. The function will release the GIL during the call. If " @@ -1684,37 +1721,37 @@ msgid "" "after the call; *use_last_error* does the same for the Windows error code." msgstr "" -#: library/ctypes.rst:1685 +#: library/ctypes.rst:1726 msgid "" "Windows only: The returned function prototype creates functions that use the " "``stdcall`` calling convention. The function will release the GIL during " "the call. *use_errno* and *use_last_error* have the same meaning as above." msgstr "" -#: library/ctypes.rst:1693 +#: library/ctypes.rst:1734 msgid "" "The returned function prototype creates functions that use the Python " "calling convention. The function will *not* release the GIL during the call." msgstr "" -#: library/ctypes.rst:1696 +#: library/ctypes.rst:1737 msgid "" "Function prototypes created by these factory functions can be instantiated " "in different ways, depending on the type and number of the parameters in the " "call:" msgstr "" -#: library/ctypes.rst:1704 +#: library/ctypes.rst:1745 msgid "" "Returns a foreign function at the specified address which must be an integer." msgstr "" -#: library/ctypes.rst:1711 +#: library/ctypes.rst:1752 msgid "" "Create a C callable function (a callback function) from a Python *callable*." msgstr "" -#: library/ctypes.rst:1718 +#: library/ctypes.rst:1759 msgid "" "Returns a foreign function exported by a shared library. *func_spec* must be " "a 2-tuple ``(name_or_ordinal, library)``. The first item is the name of the " @@ -1722,7 +1759,7 @@ msgid "" "small integer. The second item is the shared library instance." msgstr "" -#: library/ctypes.rst:1728 +#: library/ctypes.rst:1769 msgid "" "Returns a foreign function that will call a COM method. *vtbl_index* is the " "index into the virtual function table, a small non-negative integer. *name* " @@ -1730,85 +1767,87 @@ msgid "" "identifier which is used in extended error reporting." msgstr "" -#: library/ctypes.rst:1733 +#: library/ctypes.rst:1774 msgid "" "COM methods use a special calling convention: They require a pointer to the " "COM interface as first argument, in addition to those parameters that are " -"specified in the :attr:`argtypes` tuple." +"specified in the :attr:`!argtypes` tuple." msgstr "" -#: library/ctypes.rst:1737 +#: library/ctypes.rst:1778 msgid "" "The optional *paramflags* parameter creates foreign function wrappers with " "much more functionality than the features described above." msgstr "" -#: library/ctypes.rst:1740 -msgid "*paramflags* must be a tuple of the same length as :attr:`argtypes`." +#: library/ctypes.rst:1781 +msgid "" +"*paramflags* must be a tuple of the same length as :attr:`~_FuncPtr." +"argtypes`." msgstr "" -#: library/ctypes.rst:1742 +#: library/ctypes.rst:1783 msgid "" "Each item in this tuple contains further information about a parameter, it " "must be a tuple containing one, two, or three items." msgstr "" -#: library/ctypes.rst:1745 +#: library/ctypes.rst:1786 msgid "" "The first item is an integer containing a combination of direction flags for " "the parameter:" msgstr "" -#: library/ctypes.rst:1749 +#: library/ctypes.rst:1790 msgid "1" msgstr "" -#: library/ctypes.rst:1749 +#: library/ctypes.rst:1790 msgid "Specifies an input parameter to the function." msgstr "" -#: library/ctypes.rst:1752 +#: library/ctypes.rst:1793 msgid "2" msgstr "" -#: library/ctypes.rst:1752 +#: library/ctypes.rst:1793 msgid "Output parameter. The foreign function fills in a value." msgstr "" -#: library/ctypes.rst:1755 +#: library/ctypes.rst:1796 msgid "4" msgstr "" -#: library/ctypes.rst:1755 +#: library/ctypes.rst:1796 msgid "Input parameter which defaults to the integer zero." msgstr "" -#: library/ctypes.rst:1757 +#: library/ctypes.rst:1798 msgid "" "The optional second item is the parameter name as string. If this is " "specified, the foreign function can be called with named parameters." msgstr "" -#: library/ctypes.rst:1760 +#: library/ctypes.rst:1801 msgid "The optional third item is the default value for this parameter." msgstr "" -#: library/ctypes.rst:1762 +#: library/ctypes.rst:1803 msgid "" "This example demonstrates how to wrap the Windows ``MessageBoxW`` function " "so that it supports default parameters and named arguments. The C " "declaration from the windows header file is this::" msgstr "" -#: library/ctypes.rst:1796 +#: library/ctypes.rst:1837 msgid "Here is the wrapping with :mod:`ctypes`::" msgstr "" -#: library/ctypes.rst:1781 +#: library/ctypes.rst:1822 msgid "The ``MessageBox`` foreign function can now be called in these ways::" msgstr "" -#: library/ctypes.rst:1787 +#: library/ctypes.rst:1828 msgid "" "A second example demonstrates output parameters. The win32 " "``GetWindowRect`` function retrieves the dimensions of a specified window by " @@ -1816,7 +1855,7 @@ msgid "" "the C declaration::" msgstr "" -#: library/ctypes.rst:1805 +#: library/ctypes.rst:1846 msgid "" "Functions with output parameters will automatically return the output " "parameter value if there is a single one, or a tuple containing the output " @@ -1824,64 +1863,64 @@ msgid "" "now returns a RECT instance, when called." msgstr "" -#: library/ctypes.rst:1810 +#: library/ctypes.rst:1851 msgid "" -"Output parameters can be combined with the :attr:`errcheck` protocol to do " -"further output processing and error checking. The win32 ``GetWindowRect`` " -"api function returns a ``BOOL`` to signal success or failure, so this " -"function could do the error checking, and raises an exception when the api " -"call failed::" +"Output parameters can be combined with the :attr:`~_FuncPtr.errcheck` " +"protocol to do further output processing and error checking. The win32 " +"``GetWindowRect`` api function returns a ``BOOL`` to signal success or " +"failure, so this function could do the error checking, and raises an " +"exception when the api call failed::" msgstr "" -#: library/ctypes.rst:1823 +#: library/ctypes.rst:1864 msgid "" -"If the :attr:`errcheck` function returns the argument tuple it receives " -"unchanged, :mod:`ctypes` continues the normal processing it does on the " -"output parameters. If you want to return a tuple of window coordinates " +"If the :attr:`~_FuncPtr.errcheck` function returns the argument tuple it " +"receives unchanged, :mod:`ctypes` continues the normal processing it does on " +"the output parameters. If you want to return a tuple of window coordinates " "instead of a ``RECT`` instance, you can retrieve the fields in the function " "and return them instead, the normal processing will no longer take place::" msgstr "" -#: library/ctypes.rst:1842 +#: library/ctypes.rst:1883 msgid "Utility functions" msgstr "" -#: library/ctypes.rst:1846 +#: library/ctypes.rst:1887 msgid "" "Returns the address of the memory buffer as integer. *obj* must be an " "instance of a ctypes type." msgstr "" -#: library/ctypes.rst:1849 +#: library/ctypes.rst:1890 msgid "" "Raises an :ref:`auditing event ` ``ctypes.addressof`` with " "argument ``obj``." msgstr "" -#: library/ctypes.rst:1854 +#: library/ctypes.rst:1895 msgid "" "Returns the alignment requirements of a ctypes type. *obj_or_type* must be a " "ctypes type or instance." msgstr "" -#: library/ctypes.rst:1860 +#: library/ctypes.rst:1901 msgid "" "Returns a light-weight pointer to *obj*, which must be an instance of a " "ctypes type. *offset* defaults to zero, and must be an integer that will be " "added to the internal pointer value." msgstr "" -#: library/ctypes.rst:1864 +#: library/ctypes.rst:1905 msgid "``byref(obj, offset)`` corresponds to this C code::" msgstr "" -#: library/ctypes.rst:1868 +#: library/ctypes.rst:1909 msgid "" "The returned object can only be used as a foreign function call parameter. " "It behaves similar to ``pointer(obj)``, but the construction is a lot faster." msgstr "" -#: library/ctypes.rst:1874 +#: library/ctypes.rst:1915 msgid "" "This function is similar to the cast operator in C. It returns a new " "instance of *type* which points to the same memory block as *obj*. *type* " @@ -1889,19 +1928,19 @@ msgid "" "as a pointer." msgstr "" -#: library/ctypes.rst:1882 +#: library/ctypes.rst:1923 msgid "" "This function creates a mutable character buffer. The returned object is a " "ctypes array of :class:`c_char`." msgstr "" -#: library/ctypes.rst:1885 +#: library/ctypes.rst:1926 msgid "" "*init_or_size* must be an integer which specifies the size of the array, or " "a bytes object which will be used to initialize the array items." msgstr "" -#: library/ctypes.rst:1888 +#: library/ctypes.rst:1929 msgid "" "If a bytes object is specified as first argument, the buffer is made one " "item larger than its length so that the last element in the array is a NUL " @@ -1910,25 +1949,25 @@ msgid "" "not be used." msgstr "" -#: library/ctypes.rst:1893 +#: library/ctypes.rst:1934 msgid "" "Raises an :ref:`auditing event ` ``ctypes.create_string_buffer`` " "with arguments ``init``, ``size``." msgstr "" -#: library/ctypes.rst:1898 +#: library/ctypes.rst:1939 msgid "" "This function creates a mutable unicode character buffer. The returned " "object is a ctypes array of :class:`c_wchar`." msgstr "" -#: library/ctypes.rst:1901 +#: library/ctypes.rst:1942 msgid "" "*init_or_size* must be an integer which specifies the size of the array, or " "a string which will be used to initialize the array items." msgstr "" -#: library/ctypes.rst:1904 +#: library/ctypes.rst:1945 msgid "" "If a string is specified as first argument, the buffer is made one item " "larger than the length of the string so that the last element in the array " @@ -1937,27 +1976,27 @@ msgid "" "should not be used." msgstr "" -#: library/ctypes.rst:1910 +#: library/ctypes.rst:1951 msgid "" "Raises an :ref:`auditing event ` ``ctypes.create_unicode_buffer`` " "with arguments ``init``, ``size``." msgstr "" -#: library/ctypes.rst:1915 +#: library/ctypes.rst:1956 msgid "" "Windows only: This function is a hook which allows implementing in-process " "COM servers with ctypes. It is called from the DllCanUnloadNow function " "that the _ctypes extension dll exports." msgstr "" -#: library/ctypes.rst:1922 +#: library/ctypes.rst:1963 msgid "" "Windows only: This function is a hook which allows implementing in-process " "COM servers with ctypes. It is called from the DllGetClassObject function " "that the ``_ctypes`` extension dll exports." msgstr "" -#: library/ctypes.rst:1930 +#: library/ctypes.rst:1971 msgid "" "Try to find a library and return a pathname. *name* is the library name " "without any prefix like ``lib``, suffix like ``.so``, ``.dylib`` or version " @@ -1965,92 +2004,92 @@ msgid "" "If no library can be found, returns ``None``." msgstr "" -#: library/ctypes.rst:1941 +#: library/ctypes.rst:1982 msgid "" "Windows only: return the filename of the VC runtime library used by Python, " "and by the extension modules. If the name of the library cannot be " "determined, ``None`` is returned." msgstr "" -#: library/ctypes.rst:1945 +#: library/ctypes.rst:1986 msgid "" "If you need to free memory, for example, allocated by an extension module " "with a call to the ``free(void *)``, it is important that you use the " "function in the same library that allocated the memory." msgstr "" -#: library/ctypes.rst:1952 +#: library/ctypes.rst:1993 msgid "" "Windows only: Returns a textual description of the error code *code*. If no " "error code is specified, the last error code is used by calling the Windows " "api function GetLastError." msgstr "" -#: library/ctypes.rst:1959 +#: library/ctypes.rst:2000 msgid "" "Windows only: Returns the last error code set by Windows in the calling " "thread. This function calls the Windows ``GetLastError()`` function " "directly, it does not return the ctypes-private copy of the error code." msgstr "" -#: library/ctypes.rst:1965 +#: library/ctypes.rst:2006 msgid "" "Returns the current value of the ctypes-private copy of the system :data:" "`errno` variable in the calling thread." msgstr "" -#: library/ctypes.rst:1968 +#: library/ctypes.rst:2009 msgid "" "Raises an :ref:`auditing event ` ``ctypes.get_errno`` with no " "arguments." msgstr "" -#: library/ctypes.rst:1972 +#: library/ctypes.rst:2013 msgid "" "Windows only: returns the current value of the ctypes-private copy of the " -"system :data:`LastError` variable in the calling thread." +"system :data:`!LastError` variable in the calling thread." msgstr "" -#: library/ctypes.rst:1975 +#: library/ctypes.rst:2016 msgid "" "Raises an :ref:`auditing event ` ``ctypes.get_last_error`` with no " "arguments." msgstr "" -#: library/ctypes.rst:1979 +#: library/ctypes.rst:2020 msgid "" "Same as the standard C memmove library function: copies *count* bytes from " "*src* to *dst*. *dst* and *src* must be integers or ctypes instances that " "can be converted to pointers." msgstr "" -#: library/ctypes.rst:1986 +#: library/ctypes.rst:2027 msgid "" "Same as the standard C memset library function: fills the memory block at " "address *dst* with *count* bytes of value *c*. *dst* must be an integer " "specifying an address, or a ctypes instance." msgstr "" -#: library/ctypes.rst:1993 +#: library/ctypes.rst:2034 msgid "" "Create and return a new ctypes pointer type. Pointer types are cached and " "reused internally, so calling this function repeatedly is cheap. *type* must " "be a ctypes type." msgstr "" -#: library/ctypes.rst:2000 +#: library/ctypes.rst:2041 msgid "" "Create a new pointer instance, pointing to *obj*. The returned object is of " "the type ``POINTER(type(obj))``." msgstr "" -#: library/ctypes.rst:2003 +#: library/ctypes.rst:2044 msgid "" "Note: If you just want to pass a pointer to an object to a foreign function " "call, you should use ``byref(obj)`` which is much faster." msgstr "" -#: library/ctypes.rst:2009 +#: library/ctypes.rst:2050 msgid "" "This function resizes the internal memory buffer of *obj*, which must be an " "instance of a ctypes type. It is not possible to make the buffer smaller " @@ -2058,51 +2097,51 @@ msgid "" "but it is possible to enlarge the buffer." msgstr "" -#: library/ctypes.rst:2017 +#: library/ctypes.rst:2058 msgid "" "Set the current value of the ctypes-private copy of the system :data:`errno` " "variable in the calling thread to *value* and return the previous value." msgstr "" -#: library/ctypes.rst:2020 +#: library/ctypes.rst:2061 msgid "" "Raises an :ref:`auditing event ` ``ctypes.set_errno`` with " "argument ``errno``." msgstr "" -#: library/ctypes.rst:2025 +#: library/ctypes.rst:2066 msgid "" "Windows only: set the current value of the ctypes-private copy of the " -"system :data:`LastError` variable in the calling thread to *value* and " +"system :data:`!LastError` variable in the calling thread to *value* and " "return the previous value." msgstr "" -#: library/ctypes.rst:2029 +#: library/ctypes.rst:2070 msgid "" "Raises an :ref:`auditing event ` ``ctypes.set_last_error`` with " "argument ``error``." msgstr "" -#: library/ctypes.rst:2034 +#: library/ctypes.rst:2075 msgid "" "Returns the size in bytes of a ctypes type or instance memory buffer. Does " "the same as the C ``sizeof`` operator." msgstr "" -#: library/ctypes.rst:2040 +#: library/ctypes.rst:2081 msgid "" "This function returns the C string starting at memory address *address* as a " "bytes object. If size is specified, it is used as size, otherwise the string " "is assumed to be zero-terminated." msgstr "" -#: library/ctypes.rst:2044 +#: library/ctypes.rst:2085 msgid "" "Raises an :ref:`auditing event ` ``ctypes.string_at`` with " "arguments ``address``, ``size``." msgstr "" -#: library/ctypes.rst:2049 +#: library/ctypes.rst:2090 msgid "" "Windows only: this function is probably the worst-named thing in ctypes. It " "creates an instance of OSError. If *code* is not specified, " @@ -2111,11 +2150,11 @@ msgid "" "error." msgstr "" -#: library/ctypes.rst:2055 +#: library/ctypes.rst:2096 msgid "An instance of :exc:`WindowsError` used to be created." msgstr "" -#: library/ctypes.rst:2061 +#: library/ctypes.rst:2102 msgid "" "This function returns the wide character string starting at memory address " "*address* as a string. If *size* is specified, it is used as the number of " @@ -2123,17 +2162,17 @@ msgid "" "terminated." msgstr "" -#: library/ctypes.rst:2066 +#: library/ctypes.rst:2107 msgid "" "Raises an :ref:`auditing event ` ``ctypes.wstring_at`` with " "arguments ``address``, ``size``." msgstr "" -#: library/ctypes.rst:2072 +#: library/ctypes.rst:2113 msgid "Data types" msgstr "" -#: library/ctypes.rst:2077 +#: library/ctypes.rst:2118 msgid "" "This non-public class is the common base class of all ctypes data types. " "Among other things, all ctypes type instances contain a memory block that " @@ -2143,13 +2182,13 @@ msgid "" "alive in case the memory block contains pointers." msgstr "" -#: library/ctypes.rst:2084 +#: library/ctypes.rst:2125 msgid "" "Common methods of ctypes data types, these are all class methods (to be " "exact, they are methods of the :term:`metaclass`):" msgstr "" -#: library/ctypes.rst:2089 +#: library/ctypes.rst:2130 msgid "" "This method returns a ctypes instance that shares the buffer of the *source* " "object. The *source* object must support the writeable buffer interface. " @@ -2158,13 +2197,13 @@ msgid "" "exc:`ValueError` is raised." msgstr "" -#: library/ctypes.rst:2105 +#: library/ctypes.rst:2146 msgid "" "Raises an :ref:`auditing event ` ``ctypes.cdata/buffer`` with " "arguments ``pointer``, ``size``, ``offset``." msgstr "" -#: library/ctypes.rst:2099 +#: library/ctypes.rst:2140 msgid "" "This method creates a ctypes instance, copying the buffer from the *source* " "object buffer which must be readable. The optional *offset* parameter " @@ -2172,51 +2211,51 @@ msgid "" "If the source buffer is not large enough a :exc:`ValueError` is raised." msgstr "" -#: library/ctypes.rst:2109 +#: library/ctypes.rst:2150 msgid "" "This method returns a ctypes type instance using the memory specified by " "*address* which must be an integer." msgstr "" -#: library/ctypes.rst:2112 +#: library/ctypes.rst:2153 msgid "" "Raises an :ref:`auditing event ` ``ctypes.cdata`` with argument " "``address``." msgstr "" -#: library/ctypes.rst:2114 +#: library/ctypes.rst:2155 msgid "" "This method, and others that indirectly call this method, raises an :ref:" "`auditing event ` ``ctypes.cdata`` with argument ``address``." msgstr "" -#: library/ctypes.rst:2120 +#: library/ctypes.rst:2161 msgid "" "This method adapts *obj* to a ctypes type. It is called with the actual " "object used in a foreign function call when the type is present in the " -"foreign function's :attr:`argtypes` tuple; it must return an object that can " -"be used as a function call parameter." +"foreign function's :attr:`~_FuncPtr.argtypes` tuple; it must return an " +"object that can be used as a function call parameter." msgstr "" -#: library/ctypes.rst:2125 +#: library/ctypes.rst:2166 msgid "" "All ctypes data types have a default implementation of this classmethod that " "normally returns *obj* if that is an instance of the type. Some types " "accept other objects as well." msgstr "" -#: library/ctypes.rst:2131 +#: library/ctypes.rst:2172 msgid "" "This method returns a ctypes type instance exported by a shared library. " "*name* is the name of the symbol that exports the data, *library* is the " "loaded shared library." msgstr "" -#: library/ctypes.rst:2135 +#: library/ctypes.rst:2176 msgid "Common instance variables of ctypes data types:" msgstr "" -#: library/ctypes.rst:2139 +#: library/ctypes.rst:2180 msgid "" "Sometimes ctypes data instances do not own the memory block they contain, " "instead they share part of the memory block of a base object. The :attr:" @@ -2224,13 +2263,13 @@ msgid "" "block." msgstr "" -#: library/ctypes.rst:2146 +#: library/ctypes.rst:2187 msgid "" "This read-only variable is true when the ctypes data instance has allocated " "the memory block itself, false otherwise." msgstr "" -#: library/ctypes.rst:2151 +#: library/ctypes.rst:2192 msgid "" "This member is either ``None`` or a dictionary containing Python objects " "that need to be kept alive so that the memory block contents is kept valid. " @@ -2238,7 +2277,7 @@ msgid "" "dictionary." msgstr "" -#: library/ctypes.rst:2164 +#: library/ctypes.rst:2205 msgid "" "This non-public class is the base class of all fundamental ctypes data " "types. It is mentioned here because it contains the common attributes of the " @@ -2247,11 +2286,11 @@ msgid "" "types that are not and do not contain pointers can now be pickled." msgstr "" -#: library/ctypes.rst:2170 +#: library/ctypes.rst:2211 msgid "Instances have a single attribute:" msgstr "" -#: library/ctypes.rst:2174 +#: library/ctypes.rst:2215 msgid "" "This attribute contains the actual value of the instance. For integer and " "pointer types, it is an integer, for character types, it is a single " @@ -2259,7 +2298,7 @@ msgid "" "bytes object or string." msgstr "" -#: library/ctypes.rst:2179 +#: library/ctypes.rst:2220 msgid "" "When the ``value`` attribute is retrieved from a ctypes instance, usually a " "new object is returned each time. :mod:`ctypes` does *not* implement " @@ -2267,42 +2306,43 @@ msgid "" "true for all other ctypes object instances." msgstr "" -#: library/ctypes.rst:2185 +#: library/ctypes.rst:2226 msgid "" "Fundamental data types, when returned as foreign function call results, or, " "for example, by retrieving structure field members or array items, are " "transparently converted to native Python types. In other words, if a " -"foreign function has a :attr:`restype` of :class:`c_char_p`, you will always " -"receive a Python bytes object, *not* a :class:`c_char_p` instance." +"foreign function has a :attr:`~_FuncPtr.restype` of :class:`c_char_p`, you " +"will always receive a Python bytes object, *not* a :class:`c_char_p` " +"instance." msgstr "" -#: library/ctypes.rst:2193 +#: library/ctypes.rst:2234 msgid "" "Subclasses of fundamental data types do *not* inherit this behavior. So, if " -"a foreign functions :attr:`restype` is a subclass of :class:`c_void_p`, you " +"a foreign functions :attr:`!restype` is a subclass of :class:`c_void_p`, you " "will receive an instance of this subclass from the function call. Of course, " "you can get the value of the pointer by accessing the ``value`` attribute." msgstr "" -#: library/ctypes.rst:2198 +#: library/ctypes.rst:2239 msgid "These are the fundamental ctypes data types:" msgstr "" -#: library/ctypes.rst:2202 +#: library/ctypes.rst:2243 msgid "" "Represents the C :c:expr:`signed char` datatype, and interprets the value as " "small integer. The constructor accepts an optional integer initializer; no " "overflow checking is done." msgstr "" -#: library/ctypes.rst:2209 +#: library/ctypes.rst:2250 msgid "" "Represents the C :c:expr:`char` datatype, and interprets the value as a " "single character. The constructor accepts an optional string initializer, " "the length of the string must be exactly one character." msgstr "" -#: library/ctypes.rst:2216 +#: library/ctypes.rst:2257 msgid "" "Represents the C :c:expr:`char *` datatype when it points to a zero-" "terminated string. For a general character pointer that may also point to " @@ -2310,220 +2350,224 @@ msgid "" "integer address, or a bytes object." msgstr "" -#: library/ctypes.rst:2224 +#: library/ctypes.rst:2265 msgid "" "Represents the C :c:expr:`double` datatype. The constructor accepts an " "optional float initializer." msgstr "" -#: library/ctypes.rst:2230 +#: library/ctypes.rst:2271 msgid "" "Represents the C :c:expr:`long double` datatype. The constructor accepts an " "optional float initializer. On platforms where ``sizeof(long double) == " "sizeof(double)`` it is an alias to :class:`c_double`." msgstr "" -#: library/ctypes.rst:2236 +#: library/ctypes.rst:2277 msgid "" "Represents the C :c:expr:`float` datatype. The constructor accepts an " "optional float initializer." msgstr "" -#: library/ctypes.rst:2242 +#: library/ctypes.rst:2283 msgid "" "Represents the C :c:expr:`signed int` datatype. The constructor accepts an " "optional integer initializer; no overflow checking is done. On platforms " "where ``sizeof(int) == sizeof(long)`` it is an alias to :class:`c_long`." msgstr "" -#: library/ctypes.rst:2249 +#: library/ctypes.rst:2290 msgid "" "Represents the C 8-bit :c:expr:`signed int` datatype. Usually an alias for :" "class:`c_byte`." msgstr "" -#: library/ctypes.rst:2255 +#: library/ctypes.rst:2296 msgid "" "Represents the C 16-bit :c:expr:`signed int` datatype. Usually an alias " "for :class:`c_short`." msgstr "" -#: library/ctypes.rst:2261 +#: library/ctypes.rst:2302 msgid "" "Represents the C 32-bit :c:expr:`signed int` datatype. Usually an alias " "for :class:`c_int`." msgstr "" -#: library/ctypes.rst:2267 +#: library/ctypes.rst:2308 msgid "" "Represents the C 64-bit :c:expr:`signed int` datatype. Usually an alias " "for :class:`c_longlong`." msgstr "" -#: library/ctypes.rst:2273 +#: library/ctypes.rst:2314 msgid "" "Represents the C :c:expr:`signed long` datatype. The constructor accepts an " "optional integer initializer; no overflow checking is done." msgstr "" -#: library/ctypes.rst:2279 +#: library/ctypes.rst:2320 msgid "" "Represents the C :c:expr:`signed long long` datatype. The constructor " "accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: library/ctypes.rst:2285 +#: library/ctypes.rst:2326 msgid "" "Represents the C :c:expr:`signed short` datatype. The constructor accepts " "an optional integer initializer; no overflow checking is done." msgstr "" -#: library/ctypes.rst:2291 +#: library/ctypes.rst:2332 msgid "Represents the C :c:type:`size_t` datatype." msgstr "" -#: library/ctypes.rst:2296 +#: library/ctypes.rst:2337 msgid "Represents the C :c:type:`ssize_t` datatype." msgstr "" -#: library/ctypes.rst:2303 +#: library/ctypes.rst:2344 +msgid "Represents the C :c:type:`time_t` datatype." +msgstr "" + +#: library/ctypes.rst:2351 msgid "" "Represents the C :c:expr:`unsigned char` datatype, it interprets the value " "as small integer. The constructor accepts an optional integer initializer; " "no overflow checking is done." msgstr "" -#: library/ctypes.rst:2310 +#: library/ctypes.rst:2358 msgid "" "Represents the C :c:expr:`unsigned int` datatype. The constructor accepts " "an optional integer initializer; no overflow checking is done. On platforms " "where ``sizeof(int) == sizeof(long)`` it is an alias for :class:`c_ulong`." msgstr "" -#: library/ctypes.rst:2317 +#: library/ctypes.rst:2365 msgid "" "Represents the C 8-bit :c:expr:`unsigned int` datatype. Usually an alias " "for :class:`c_ubyte`." msgstr "" -#: library/ctypes.rst:2323 +#: library/ctypes.rst:2371 msgid "" "Represents the C 16-bit :c:expr:`unsigned int` datatype. Usually an alias " "for :class:`c_ushort`." msgstr "" -#: library/ctypes.rst:2329 +#: library/ctypes.rst:2377 msgid "" "Represents the C 32-bit :c:expr:`unsigned int` datatype. Usually an alias " "for :class:`c_uint`." msgstr "" -#: library/ctypes.rst:2335 +#: library/ctypes.rst:2383 msgid "" "Represents the C 64-bit :c:expr:`unsigned int` datatype. Usually an alias " "for :class:`c_ulonglong`." msgstr "" -#: library/ctypes.rst:2341 +#: library/ctypes.rst:2389 msgid "" "Represents the C :c:expr:`unsigned long` datatype. The constructor accepts " "an optional integer initializer; no overflow checking is done." msgstr "" -#: library/ctypes.rst:2347 +#: library/ctypes.rst:2395 msgid "" "Represents the C :c:expr:`unsigned long long` datatype. The constructor " "accepts an optional integer initializer; no overflow checking is done." msgstr "" -#: library/ctypes.rst:2353 +#: library/ctypes.rst:2401 msgid "" "Represents the C :c:expr:`unsigned short` datatype. The constructor accepts " "an optional integer initializer; no overflow checking is done." msgstr "" -#: library/ctypes.rst:2359 +#: library/ctypes.rst:2407 msgid "" "Represents the C :c:expr:`void *` type. The value is represented as " "integer. The constructor accepts an optional integer initializer." msgstr "" -#: library/ctypes.rst:2365 +#: library/ctypes.rst:2413 msgid "" "Represents the C :c:type:`wchar_t` datatype, and interprets the value as a " "single character unicode string. The constructor accepts an optional string " "initializer, the length of the string must be exactly one character." msgstr "" -#: library/ctypes.rst:2372 +#: library/ctypes.rst:2420 msgid "" "Represents the C :c:expr:`wchar_t *` datatype, which must be a pointer to a " "zero-terminated wide character string. The constructor accepts an integer " "address, or a string." msgstr "" -#: library/ctypes.rst:2379 +#: library/ctypes.rst:2427 msgid "" "Represent the C :c:expr:`bool` datatype (more accurately, :c:expr:`_Bool` " "from C99). Its value can be ``True`` or ``False``, and the constructor " "accepts any object that has a truth value." msgstr "" -#: library/ctypes.rst:2386 +#: library/ctypes.rst:2434 msgid "" -"Windows only: Represents a :c:type:`HRESULT` value, which contains success " +"Windows only: Represents a :c:type:`!HRESULT` value, which contains success " "or error information for a function or method call." msgstr "" -#: library/ctypes.rst:2392 +#: library/ctypes.rst:2440 msgid "" "Represents the C :c:expr:`PyObject *` datatype. Calling this without an " "argument creates a ``NULL`` :c:expr:`PyObject *` pointer." msgstr "" -#: library/ctypes.rst:2395 +#: library/ctypes.rst:2443 msgid "" -"The :mod:`ctypes.wintypes` module provides quite some other Windows specific " -"data types, for example :c:type:`HWND`, :c:type:`WPARAM`, or :c:type:" -"`DWORD`. Some useful structures like :c:type:`MSG` or :c:type:`RECT` are " -"also defined." +"The :mod:`!ctypes.wintypes` module provides quite some other Windows " +"specific data types, for example :c:type:`!HWND`, :c:type:`!WPARAM`, or :c:" +"type:`!DWORD`. Some useful structures like :c:type:`!MSG` or :c:type:`!RECT` " +"are also defined." msgstr "" -#: library/ctypes.rst:2403 +#: library/ctypes.rst:2451 msgid "Structured data types" msgstr "" -#: library/ctypes.rst:2408 +#: library/ctypes.rst:2456 msgid "Abstract base class for unions in native byte order." msgstr "" -#: library/ctypes.rst:2413 +#: library/ctypes.rst:2461 msgid "Abstract base class for unions in *big endian* byte order." msgstr "" -#: library/ctypes.rst:2419 +#: library/ctypes.rst:2467 msgid "Abstract base class for unions in *little endian* byte order." msgstr "" -#: library/ctypes.rst:2425 +#: library/ctypes.rst:2473 msgid "Abstract base class for structures in *big endian* byte order." msgstr "" -#: library/ctypes.rst:2430 +#: library/ctypes.rst:2478 msgid "Abstract base class for structures in *little endian* byte order." msgstr "" -#: library/ctypes.rst:2432 +#: library/ctypes.rst:2480 msgid "" "Structures and unions with non-native byte order cannot contain pointer type " "fields, or any other data types containing pointer type fields." msgstr "" -#: library/ctypes.rst:2438 +#: library/ctypes.rst:2486 msgid "Abstract base class for structures in *native* byte order." msgstr "" -#: library/ctypes.rst:2440 +#: library/ctypes.rst:2488 msgid "" "Concrete structure and union types must be created by subclassing one of " "these types, and at least define a :attr:`_fields_` class variable. :mod:" @@ -2531,34 +2575,34 @@ msgid "" "the fields by direct attribute accesses. These are the" msgstr "" -#: library/ctypes.rst:2448 +#: library/ctypes.rst:2496 msgid "" "A sequence defining the structure fields. The items must be 2-tuples or 3-" "tuples. The first item is the name of the field, the second item specifies " "the type of the field; it can be any ctypes data type." msgstr "" -#: library/ctypes.rst:2452 +#: library/ctypes.rst:2500 msgid "" "For integer type fields like :class:`c_int`, a third optional item can be " "given. It must be a small positive integer defining the bit width of the " "field." msgstr "" -#: library/ctypes.rst:2456 +#: library/ctypes.rst:2504 msgid "" "Field names must be unique within one structure or union. This is not " "checked, only one field can be accessed when names are repeated." msgstr "" -#: library/ctypes.rst:2459 +#: library/ctypes.rst:2507 msgid "" "It is possible to define the :attr:`_fields_` class variable *after* the " "class statement that defines the Structure subclass, this allows creating " "data types that directly or indirectly reference themselves::" msgstr "" -#: library/ctypes.rst:2469 +#: library/ctypes.rst:2517 msgid "" "The :attr:`_fields_` class variable must, however, be defined before the " "type is first used (an instance is created, :func:`sizeof` is called on it, " @@ -2566,28 +2610,29 @@ msgid "" "raise an AttributeError." msgstr "" -#: library/ctypes.rst:2474 +#: library/ctypes.rst:2522 msgid "" "It is possible to define sub-subclasses of structure types, they inherit the " "fields of the base class plus the :attr:`_fields_` defined in the sub-" "subclass, if any." msgstr "" -#: library/ctypes.rst:2481 +#: library/ctypes.rst:2529 msgid "" "An optional small integer that allows overriding the alignment of structure " "fields in the instance. :attr:`_pack_` must already be defined when :attr:" -"`_fields_` is assigned, otherwise it will have no effect." +"`_fields_` is assigned, otherwise it will have no effect. Setting this " +"attribute to 0 is the same as not setting it at all." msgstr "" -#: library/ctypes.rst:2488 +#: library/ctypes.rst:2537 msgid "" "An optional sequence that lists the names of unnamed (anonymous) fields. :" "attr:`_anonymous_` must be already defined when :attr:`_fields_` is " "assigned, otherwise it will have no effect." msgstr "" -#: library/ctypes.rst:2492 +#: library/ctypes.rst:2541 msgid "" "The fields listed in this variable must be structure or union type fields. :" "mod:`ctypes` will create descriptors in the structure type that allows " @@ -2595,11 +2640,11 @@ msgid "" "structure or union field." msgstr "" -#: library/ctypes.rst:2497 +#: library/ctypes.rst:2546 msgid "Here is an example type (Windows)::" msgstr "" -#: library/ctypes.rst:2510 +#: library/ctypes.rst:2559 msgid "" "The ``TYPEDESC`` structure describes a COM data type, the ``vt`` field " "specifies which one of the union fields is valid. Since the ``u`` field is " @@ -2609,7 +2654,7 @@ msgid "" "temporary union instance::" msgstr "" -#: library/ctypes.rst:2522 +#: library/ctypes.rst:2571 msgid "" "It is possible to define sub-subclasses of structures, they inherit the " "fields of the base class. If the subclass definition has a separate :attr:" @@ -2617,7 +2662,7 @@ msgid "" "of the base class." msgstr "" -#: library/ctypes.rst:2527 +#: library/ctypes.rst:2576 msgid "" "Structure and union constructors accept both positional and keyword " "arguments. Positional arguments are used to initialize member fields in the " @@ -2627,15 +2672,15 @@ msgid "" "names not present in :attr:`_fields_`." msgstr "" -#: library/ctypes.rst:2538 +#: library/ctypes.rst:2587 msgid "Arrays and pointers" msgstr "" -#: library/ctypes.rst:2542 +#: library/ctypes.rst:2591 msgid "Abstract base class for arrays." msgstr "" -#: library/ctypes.rst:2544 +#: library/ctypes.rst:2593 msgid "" "The recommended way to create concrete array types is by multiplying any :" "mod:`ctypes` data type with a non-negative integer. Alternatively, you can " @@ -2645,34 +2690,34 @@ msgid "" "an :class:`Array`." msgstr "" -#: library/ctypes.rst:2554 +#: library/ctypes.rst:2603 msgid "" "A positive integer specifying the number of elements in the array. Out-of-" "range subscripts result in an :exc:`IndexError`. Will be returned by :func:" "`len`." msgstr "" -#: library/ctypes.rst:2561 +#: library/ctypes.rst:2610 msgid "Specifies the type of each element in the array." msgstr "" -#: library/ctypes.rst:2564 +#: library/ctypes.rst:2613 msgid "" "Array subclass constructors accept positional arguments, used to initialize " "the elements in order." msgstr "" -#: library/ctypes.rst:2570 +#: library/ctypes.rst:2619 msgid "Private, abstract base class for pointers." msgstr "" -#: library/ctypes.rst:2572 +#: library/ctypes.rst:2621 msgid "" "Concrete pointer types are created by calling :func:`POINTER` with the type " "that will be pointed to; this is done automatically by :func:`pointer`." msgstr "" -#: library/ctypes.rst:2576 +#: library/ctypes.rst:2625 msgid "" "If a pointer points to an array, its elements can be read and written using " "standard subscript and slice accesses. Pointer objects have no size, so :" @@ -2681,11 +2726,11 @@ msgid "" "probably crash with an access violation (if you're lucky)." msgstr "" -#: library/ctypes.rst:2586 +#: library/ctypes.rst:2635 msgid "Specifies the type pointed to." msgstr "" -#: library/ctypes.rst:2590 +#: library/ctypes.rst:2639 msgid "" "Returns the object to which to pointer points. Assigning to this attribute " "changes the pointer to point to the assigned object." diff --git a/library/curses.po b/library/curses.po index 884b0f60a..1142fc2a1 100644 --- a/library/curses.po +++ b/library/curses.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -78,7 +78,7 @@ msgid "" "bindings." msgstr "" -#: library/curses.rst:45 +#: library/curses.rst:44 msgid ":ref:`curses-howto`" msgstr "" @@ -88,37 +88,30 @@ msgid "" "Raymond." msgstr "" -#: library/curses.rst:47 -msgid "" -"The :source:`Tools/demo/` directory in the Python source distribution " -"contains some example programs using the curses bindings provided by this " -"module." -msgstr "" - -#: library/curses.rst:54 +#: library/curses.rst:51 msgid "Functions" msgstr "" -#: library/curses.rst:56 +#: library/curses.rst:53 msgid "The module :mod:`curses` defines the following exception:" msgstr "" -#: library/curses.rst:61 +#: library/curses.rst:58 msgid "Exception raised when a curses library function returns an error." msgstr "" -#: library/curses.rst:65 +#: library/curses.rst:62 msgid "" "Whenever *x* or *y* arguments to a function or a method are optional, they " "default to the current cursor location. Whenever *attr* is optional, it " "defaults to :const:`A_NORMAL`." msgstr "" -#: library/curses.rst:69 +#: library/curses.rst:66 msgid "The module :mod:`curses` defines the following functions:" msgstr "" -#: library/curses.rst:74 +#: library/curses.rst:71 msgid "" "Return the output speed of the terminal in bits per second. On software " "terminal emulators it will have a fixed high value. Included for historical " @@ -126,17 +119,17 @@ msgid "" "and occasionally to change interfaces depending on the line speed." msgstr "" -#: library/curses.rst:82 +#: library/curses.rst:79 msgid "Emit a short attention sound." msgstr "" -#: library/curses.rst:87 +#: library/curses.rst:84 msgid "" "Return ``True`` or ``False``, depending on whether the programmer can change " "the colors displayed by the terminal." msgstr "" -#: library/curses.rst:93 +#: library/curses.rst:90 msgid "" "Enter cbreak mode. In cbreak mode (sometimes called \"rare\" mode) normal " "tty line buffering is turned off and characters are available to be read one " @@ -146,7 +139,7 @@ msgid "" "terminal in cbreak mode." msgstr "" -#: library/curses.rst:102 +#: library/curses.rst:99 msgid "" "Return the intensity of the red, green, and blue (RGB) components in the " "color *color_number*, which must be between ``0`` and ``COLORS - 1``. " @@ -155,7 +148,7 @@ msgid "" "component)." msgstr "" -#: library/curses.rst:110 +#: library/curses.rst:107 msgid "" "Return the attribute value for displaying text in the specified color pair. " "Only the first 256 color pairs are supported. This attribute value can be " @@ -164,7 +157,7 @@ msgid "" "function." msgstr "" -#: library/curses.rst:119 +#: library/curses.rst:116 msgid "" "Set the cursor state. *visibility* can be set to ``0``, ``1``, or ``2``, " "for invisible, normal, or very visible. If the terminal supports the " @@ -173,7 +166,7 @@ msgid "" "and the \"very visible\" mode is a block cursor." msgstr "" -#: library/curses.rst:128 +#: library/curses.rst:125 msgid "" "Save the current terminal mode as the \"program\" mode, the mode when the " "running program is using curses. (Its counterpart is the \"shell\" mode, " @@ -181,7 +174,7 @@ msgid "" "`reset_prog_mode` will restore this mode." msgstr "" -#: library/curses.rst:136 +#: library/curses.rst:133 msgid "" "Save the current terminal mode as the \"shell\" mode, the mode when the " "running program is not using curses. (Its counterpart is the \"program\" " @@ -189,11 +182,11 @@ msgid "" "func:`reset_shell_mode` will restore this mode." msgstr "" -#: library/curses.rst:144 +#: library/curses.rst:141 msgid "Insert an *ms* millisecond pause in output." msgstr "" -#: library/curses.rst:149 +#: library/curses.rst:146 msgid "" "Update the physical screen. The curses library keeps two data structures, " "one representing the current physical screen contents and a virtual screen " @@ -201,7 +194,7 @@ msgid "" "the physical screen to match the virtual screen." msgstr "" -#: library/curses.rst:154 +#: library/curses.rst:151 msgid "" "The virtual screen may be updated by a :meth:`~window.noutrefresh` call " "after write operations such as :meth:`~window.addstr` have been performed on " @@ -212,24 +205,24 @@ msgid "" "func:`!doupdate`." msgstr "" -#: library/curses.rst:164 +#: library/curses.rst:161 msgid "" "Enter echo mode. In echo mode, each character input is echoed to the screen " "as it is entered." msgstr "" -#: library/curses.rst:170 +#: library/curses.rst:167 msgid "De-initialize the library, and return terminal to normal status." msgstr "" -#: library/curses.rst:175 +#: library/curses.rst:172 msgid "" "Return the user's current erase character as a one-byte bytes object. Under " "Unix operating systems this is a property of the controlling tty of the " "curses program, and is not set by the curses library itself." msgstr "" -#: library/curses.rst:182 +#: library/curses.rst:179 msgid "" "The :func:`.filter` routine, if used, must be called before :func:`initscr` " "is called. The effect is that, during those calls, :envvar:`LINES` is set " @@ -240,20 +233,20 @@ msgid "" "time line editing without touching the rest of the screen." msgstr "" -#: library/curses.rst:192 +#: library/curses.rst:189 msgid "" "Flash the screen. That is, change it to reverse-video and then change it " "back in a short interval. Some people prefer such as 'visible bell' to the " "audible attention signal produced by :func:`beep`." msgstr "" -#: library/curses.rst:199 +#: library/curses.rst:196 msgid "" "Flush all input buffers. This throws away any typeahead that has been " "typed by the user and has not yet been processed by the program." msgstr "" -#: library/curses.rst:205 +#: library/curses.rst:202 msgid "" "After :meth:`~window.getch` returns :const:`KEY_MOUSE` to signal a mouse " "event, this method should be called to retrieve the queued mouse event, " @@ -268,51 +261,51 @@ msgid "" "const:`BUTTON_ALT`." msgstr "" -#: library/curses.rst:1777 +#: library/curses.rst:1774 msgid "" "The ``BUTTON5_*`` constants are now exposed if they are provided by the " "underlying curses library." msgstr "" -#: library/curses.rst:223 +#: library/curses.rst:220 msgid "" "Return the current coordinates of the virtual screen cursor as a tuple ``(y, " "x)``. If :meth:`leaveok ` is currently ``True``, then " "return ``(-1, -1)``." msgstr "" -#: library/curses.rst:229 +#: library/curses.rst:226 msgid "" "Read window related data stored in the file by an earlier :func:`window." "putwin` call. The routine then creates and initializes a new window using " "that data, returning the new window object." msgstr "" -#: library/curses.rst:236 +#: library/curses.rst:233 msgid "" "Return ``True`` if the terminal can display colors; otherwise, return " "``False``." msgstr "" -#: library/curses.rst:240 +#: library/curses.rst:237 msgid "" "Return ``True`` if the module supports extended colors; otherwise, return " "``False``. Extended color support allows more than 256 color pairs for " "terminals that support more than 16 colors (e.g. xterm-256color)." msgstr "" -#: library/curses.rst:244 +#: library/curses.rst:241 msgid "Extended color support requires ncurses version 6.1 or later." msgstr "" -#: library/curses.rst:250 +#: library/curses.rst:247 msgid "" "Return ``True`` if the terminal has insert- and delete-character " "capabilities. This function is included for historical reasons only, as all " "modern software terminal emulators have such capabilities." msgstr "" -#: library/curses.rst:257 +#: library/curses.rst:254 msgid "" "Return ``True`` if the terminal has insert- and delete-line capabilities, or " "can simulate them using scrolling regions. This function is included for " @@ -320,13 +313,13 @@ msgid "" "capabilities." msgstr "" -#: library/curses.rst:265 +#: library/curses.rst:262 msgid "" "Take a key value *ch*, and return ``True`` if the current terminal type " "recognizes a key with that value." msgstr "" -#: library/curses.rst:271 +#: library/curses.rst:268 msgid "" "Used for half-delay mode, which is similar to cbreak mode in that characters " "typed by the user are immediately available to the program. However, after " @@ -335,7 +328,7 @@ msgid "" "``255``. Use :func:`nocbreak` to leave half-delay mode." msgstr "" -#: library/curses.rst:280 +#: library/curses.rst:277 msgid "" "Change the definition of a color, taking the number of the color to be " "changed followed by three RGB values (for the amounts of red, green, and " @@ -347,7 +340,7 @@ msgid "" "``True``." msgstr "" -#: library/curses.rst:291 +#: library/curses.rst:288 msgid "" "Change the definition of a color-pair. It takes three arguments: the number " "of the color-pair to be changed, the foreground color number, and the " @@ -360,31 +353,31 @@ msgid "" "definition." msgstr "" -#: library/curses.rst:304 +#: library/curses.rst:301 msgid "" "Initialize the library. Return a :ref:`window ` " "object which represents the whole screen." msgstr "" -#: library/curses.rst:309 +#: library/curses.rst:306 msgid "" "If there is an error opening the terminal, the underlying curses library may " "cause the interpreter to exit." msgstr "" -#: library/curses.rst:315 +#: library/curses.rst:312 msgid "" "Return ``True`` if :func:`resize_term` would modify the window structure, " "``False`` otherwise." msgstr "" -#: library/curses.rst:321 +#: library/curses.rst:318 msgid "" "Return ``True`` if :func:`endwin` has been called (that is, the curses " "library has been deinitialized)." msgstr "" -#: library/curses.rst:327 +#: library/curses.rst:324 msgid "" "Return the name of the key numbered *k* as a bytes object. The name of a " "key generating printable ASCII character is the key's character. The name " @@ -395,27 +388,27 @@ msgid "" "character." msgstr "" -#: library/curses.rst:337 +#: library/curses.rst:334 msgid "" "Return the user's current line kill character as a one-byte bytes object. " "Under Unix operating systems this is a property of the controlling tty of " "the curses program, and is not set by the curses library itself." msgstr "" -#: library/curses.rst:344 +#: library/curses.rst:341 msgid "" "Return a bytes object containing the terminfo long name field describing the " "current terminal. The maximum length of a verbose description is 128 " "characters. It is defined only after the call to :func:`initscr`." msgstr "" -#: library/curses.rst:351 +#: library/curses.rst:348 msgid "" "If *flag* is ``True``, allow 8-bit characters to be input. If *flag* is " "``False``, allow only 7-bit chars." msgstr "" -#: library/curses.rst:357 +#: library/curses.rst:354 msgid "" "Set the maximum time in milliseconds that can elapse between press and " "release events in order for them to be recognized as a click, and return the " @@ -423,7 +416,7 @@ msgid "" "fifth of a second." msgstr "" -#: library/curses.rst:364 +#: library/curses.rst:361 msgid "" "Set the mouse events to be reported, and return a tuple ``(availmask, " "oldmask)``. *availmask* indicates which of the specified mouse events can " @@ -432,17 +425,17 @@ msgid "" "never called, no mouse events are ever reported." msgstr "" -#: library/curses.rst:373 +#: library/curses.rst:370 msgid "Sleep for *ms* milliseconds." msgstr "" -#: library/curses.rst:378 +#: library/curses.rst:375 msgid "" "Create and return a pointer to a new pad data structure with the given " "number of lines and columns. Return a pad as a window object." msgstr "" -#: library/curses.rst:381 +#: library/curses.rst:378 msgid "" "A pad is like a window, except that it is not restricted by the screen size, " "and is not necessarily associated with a particular part of the screen. " @@ -458,35 +451,35 @@ msgid "" "to be displayed." msgstr "" -#: library/curses.rst:397 +#: library/curses.rst:394 msgid "" "Return a new :ref:`window `, whose left-upper corner " "is at ``(begin_y, begin_x)``, and whose height/width is *nlines*/*ncols*." msgstr "" -#: library/curses.rst:400 +#: library/curses.rst:397 msgid "" "By default, the window will extend from the specified position to the lower " "right corner of the screen." msgstr "" -#: library/curses.rst:406 +#: library/curses.rst:403 msgid "" "Enter newline mode. This mode translates the return key into newline on " "input, and translates newline into return and line-feed on output. Newline " "mode is initially on." msgstr "" -#: library/curses.rst:413 +#: library/curses.rst:410 msgid "" "Leave cbreak mode. Return to normal \"cooked\" mode with line buffering." msgstr "" -#: library/curses.rst:418 +#: library/curses.rst:415 msgid "Leave echo mode. Echoing of input characters is turned off." msgstr "" -#: library/curses.rst:423 +#: library/curses.rst:420 msgid "" "Leave newline mode. Disable translation of return into newline on input, " "and disable low-level translation of newline into newline/return on output " @@ -496,7 +489,7 @@ msgid "" "also, it will be able to detect the return key on input." msgstr "" -#: library/curses.rst:433 +#: library/curses.rst:430 msgid "" "When the :func:`!noqiflush` routine is used, normal flush of input and " "output queues associated with the ``INTR``, ``QUIT`` and ``SUSP`` characters " @@ -505,63 +498,63 @@ msgid "" "occurred, after the handler exits." msgstr "" -#: library/curses.rst:441 +#: library/curses.rst:438 msgid "Leave raw mode. Return to normal \"cooked\" mode with line buffering." msgstr "" -#: library/curses.rst:446 +#: library/curses.rst:443 msgid "" "Return a tuple ``(fg, bg)`` containing the colors for the requested color " "pair. The value of *pair_number* must be between ``0`` and ``COLOR_PAIRS - " "1``." msgstr "" -#: library/curses.rst:452 +#: library/curses.rst:449 msgid "" "Return the number of the color-pair set by the attribute value *attr*. :func:" "`color_pair` is the counterpart to this function." msgstr "" -#: library/curses.rst:458 +#: library/curses.rst:455 msgid "" "Equivalent to ``tputs(str, 1, putchar)``; emit the value of a specified " "terminfo capability for the current terminal. Note that the output of :func:" "`putp` always goes to standard output." msgstr "" -#: library/curses.rst:465 +#: library/curses.rst:462 msgid "" "If *flag* is ``False``, the effect is the same as calling :func:`noqiflush`. " "If *flag* is ``True``, or no argument is provided, the queues will be " "flushed when these control characters are read." msgstr "" -#: library/curses.rst:472 +#: library/curses.rst:469 msgid "" "Enter raw mode. In raw mode, normal line buffering and processing of " "interrupt, quit, suspend, and flow control keys are turned off; characters " "are presented to curses input functions one by one." msgstr "" -#: library/curses.rst:479 +#: library/curses.rst:476 msgid "" "Restore the terminal to \"program\" mode, as previously saved by :func:" "`def_prog_mode`." msgstr "" -#: library/curses.rst:485 +#: library/curses.rst:482 msgid "" "Restore the terminal to \"shell\" mode, as previously saved by :func:" "`def_shell_mode`." msgstr "" -#: library/curses.rst:491 +#: library/curses.rst:488 msgid "" "Restore the state of the terminal modes to what it was at the last call to :" "func:`savetty`." msgstr "" -#: library/curses.rst:497 +#: library/curses.rst:494 msgid "" "Backend function used by :func:`resizeterm`, performing most of the work; " "when resizing the windows, :func:`resize_term` blank-fills the areas that " @@ -571,47 +564,47 @@ msgid "" "to resize these without additional interaction with the application." msgstr "" -#: library/curses.rst:507 +#: library/curses.rst:504 msgid "" "Resize the standard and current windows to the specified dimensions, and " "adjusts other bookkeeping data used by the curses library that record the " "window dimensions (in particular the SIGWINCH handler)." msgstr "" -#: library/curses.rst:514 +#: library/curses.rst:511 msgid "" "Save the current state of the terminal modes in a buffer, usable by :func:" "`resetty`." msgstr "" -#: library/curses.rst:519 +#: library/curses.rst:516 msgid "Retrieves the value set by :func:`set_escdelay`." msgstr "" -#: library/curses.rst:525 +#: library/curses.rst:522 msgid "" "Sets the number of milliseconds to wait after reading an escape character, " "to distinguish between an individual escape character entered on the " "keyboard from escape sequences sent by cursor and function keys." msgstr "" -#: library/curses.rst:533 +#: library/curses.rst:530 msgid "Retrieves the value set by :func:`set_tabsize`." msgstr "" -#: library/curses.rst:539 +#: library/curses.rst:536 msgid "" "Sets the number of columns used by the curses library when converting a tab " "character to spaces as it adds the tab to a window." msgstr "" -#: library/curses.rst:546 +#: library/curses.rst:543 msgid "" "Set the virtual screen cursor to *y*, *x*. If *y* and *x* are both ``-1``, " "then :meth:`leaveok ` is set ``True``." msgstr "" -#: library/curses.rst:552 +#: library/curses.rst:549 msgid "" "Initialize the terminal. *term* is a string giving the terminal name, or " "``None``; if omitted or ``None``, the value of the :envvar:`TERM` " @@ -620,14 +613,14 @@ msgid "" "descriptor for ``sys.stdout`` will be used." msgstr "" -#: library/curses.rst:561 +#: library/curses.rst:558 msgid "" "Must be called if the programmer wants to use colors, and before any other " "color manipulation routine is called. It is good practice to call this " "routine right after :func:`initscr`." msgstr "" -#: library/curses.rst:565 +#: library/curses.rst:562 msgid "" ":func:`start_color` initializes eight basic colors (black, red, green, " "yellow, blue, magenta, cyan, and white), and two global variables in the :" @@ -637,20 +630,20 @@ msgid "" "terminal was just turned on." msgstr "" -#: library/curses.rst:574 +#: library/curses.rst:571 msgid "" "Return a logical OR of all video attributes supported by the terminal. This " "information is useful when a curses program needs complete control over the " "appearance of the screen." msgstr "" -#: library/curses.rst:581 +#: library/curses.rst:578 msgid "" "Return the value of the environment variable :envvar:`TERM`, as a bytes " "object, truncated to 14 characters." msgstr "" -#: library/curses.rst:587 +#: library/curses.rst:584 msgid "" "Return the value of the Boolean capability corresponding to the terminfo " "capability name *capname* as an integer. Return the value ``-1`` if " @@ -658,7 +651,7 @@ msgid "" "from the terminal description." msgstr "" -#: library/curses.rst:595 +#: library/curses.rst:592 msgid "" "Return the value of the numeric capability corresponding to the terminfo " "capability name *capname* as an integer. Return the value ``-2`` if " @@ -666,7 +659,7 @@ msgid "" "from the terminal description." msgstr "" -#: library/curses.rst:603 +#: library/curses.rst:600 msgid "" "Return the value of the string capability corresponding to the terminfo " "capability name *capname* as a bytes object. Return ``None`` if *capname* " @@ -674,7 +667,7 @@ msgid "" "terminal description." msgstr "" -#: library/curses.rst:611 +#: library/curses.rst:608 msgid "" "Instantiate the bytes object *str* with the supplied parameters, where *str* " "should be a parameterized string obtained from the terminfo database. E.g. " @@ -682,13 +675,13 @@ msgid "" "exact result depending on terminal type." msgstr "" -#: library/curses.rst:619 +#: library/curses.rst:616 msgid "" "Specify that the file descriptor *fd* be used for typeahead checking. If " "*fd* is ``-1``, then no typeahead checking is done." msgstr "" -#: library/curses.rst:622 +#: library/curses.rst:619 msgid "" "The curses library does \"line-breakout optimization\" by looking for " "typeahead periodically while updating the screen. If input is found, and it " @@ -698,7 +691,7 @@ msgid "" "typeahead checking." msgstr "" -#: library/curses.rst:631 +#: library/curses.rst:628 msgid "" "Return a bytes object which is a printable representation of the character " "*ch*. Control characters are represented as a caret followed by the " @@ -706,35 +699,35 @@ msgid "" "are." msgstr "" -#: library/curses.rst:638 +#: library/curses.rst:635 msgid "Push *ch* so the next :meth:`~window.getch` will return it." msgstr "" -#: library/curses.rst:642 +#: library/curses.rst:639 msgid "Only one *ch* can be pushed before :meth:`!getch` is called." msgstr "" -#: library/curses.rst:647 +#: library/curses.rst:644 msgid "" "Update the :const:`LINES` and :const:`COLS` module variables. Useful for " "detecting manual screen resize." msgstr "" -#: library/curses.rst:655 +#: library/curses.rst:652 msgid "Push *ch* so the next :meth:`~window.get_wch` will return it." msgstr "" -#: library/curses.rst:659 +#: library/curses.rst:656 msgid "Only one *ch* can be pushed before :meth:`!get_wch` is called." msgstr "" -#: library/curses.rst:666 +#: library/curses.rst:663 msgid "" "Push a :const:`KEY_MOUSE` event onto the input queue, associating the given " "state data with it." msgstr "" -#: library/curses.rst:672 +#: library/curses.rst:669 msgid "" "If used, this function should be called before :func:`initscr` or newterm " "are called. When *flag* is ``False``, the values of lines and columns " @@ -744,7 +737,7 @@ msgid "" "to use the window size if :envvar:`LINES` and :envvar:`COLUMNS` are not set)." msgstr "" -#: library/curses.rst:682 +#: library/curses.rst:679 msgid "" "Allow use of default values for colors on terminals supporting this feature. " "Use this to support transparency in your application. The default color is " @@ -753,7 +746,7 @@ msgid "" "*x* to a red foreground color on the default background." msgstr "" -#: library/curses.rst:691 +#: library/curses.rst:688 msgid "" "Initialize curses and call another callable object, *func*, which should be " "the rest of your curses-using application. If the application raises an " @@ -767,50 +760,50 @@ msgid "" "echo, and disables the terminal keypad." msgstr "" -#: library/curses.rst:705 +#: library/curses.rst:702 msgid "Window Objects" msgstr "" -#: library/curses.rst:707 +#: library/curses.rst:704 msgid "" "Window objects, as returned by :func:`initscr` and :func:`newwin` above, " "have the following methods and attributes:" msgstr "" -#: library/curses.rst:714 +#: library/curses.rst:711 msgid "" "Paint character *ch* at ``(y, x)`` with attributes *attr*, overwriting any " "character previously painted at that location. By default, the character " "position and attributes are the current settings for the window object." msgstr "" -#: library/curses.rst:720 +#: library/curses.rst:717 msgid "" "Writing outside the window, subwindow, or pad raises a :exc:`curses.error`. " "Attempting to write to the lower right corner of a window, subwindow, or pad " "will cause an exception to be raised after the character is printed." msgstr "" -#: library/curses.rst:728 +#: library/curses.rst:725 msgid "" "Paint at most *n* characters of the character string *str* at ``(y, x)`` " "with attributes *attr*, overwriting anything previously on the display." msgstr "" -#: library/curses.rst:736 +#: library/curses.rst:733 msgid "" "Paint the character string *str* at ``(y, x)`` with attributes *attr*, " "overwriting anything previously on the display." msgstr "" -#: library/curses.rst:741 +#: library/curses.rst:738 msgid "" "Writing outside the window, subwindow, or pad raises :exc:`curses.error`. " "Attempting to write to the lower right corner of a window, subwindow, or pad " "will cause an exception to be raised after the string is printed." msgstr "" -#: library/curses.rst:745 +#: library/curses.rst:742 msgid "" "A `bug in ncurses `_, the backend for " "this Python module, can cause SegFaults when resizing windows. This is fixed " @@ -820,44 +813,44 @@ msgid "" "line." msgstr "" -#: library/curses.rst:755 +#: library/curses.rst:752 msgid "" "Remove attribute *attr* from the \"background\" set applied to all writes to " "the current window." msgstr "" -#: library/curses.rst:761 +#: library/curses.rst:758 msgid "" "Add attribute *attr* from the \"background\" set applied to all writes to " "the current window." msgstr "" -#: library/curses.rst:767 +#: library/curses.rst:764 msgid "" "Set the \"background\" set of attributes to *attr*. This set is initially " "``0`` (no attributes)." msgstr "" -#: library/curses.rst:773 +#: library/curses.rst:770 msgid "" "Set the background property of the window to the character *ch*, with " "attributes *attr*. The change is then applied to every character position " "in that window:" msgstr "" -#: library/curses.rst:777 +#: library/curses.rst:774 msgid "" "The attribute of every character in the window is changed to the new " "background attribute." msgstr "" -#: library/curses.rst:780 +#: library/curses.rst:777 msgid "" "Wherever the former background character appears, it is changed to the new " "background character." msgstr "" -#: library/curses.rst:786 +#: library/curses.rst:783 msgid "" "Set the window's background. A window's background consists of a character " "and any combination of attributes. The attribute part of the background is " @@ -868,128 +861,128 @@ msgid "" "delete line/character operations." msgstr "" -#: library/curses.rst:796 +#: library/curses.rst:793 msgid "" "Draw a border around the edges of the window. Each parameter specifies the " "character to use for a specific part of the border; see the table below for " "more details." msgstr "" -#: library/curses.rst:802 +#: library/curses.rst:799 msgid "" "A ``0`` value for any parameter will cause the default character to be used " "for that parameter. Keyword parameters can *not* be used. The defaults are " "listed in this table:" msgstr "" -#: library/curses.rst:807 +#: library/curses.rst:804 msgid "Parameter" msgstr "" -#: library/curses.rst:807 +#: library/curses.rst:804 msgid "Description" msgstr "" -#: library/curses.rst:807 +#: library/curses.rst:804 msgid "Default value" msgstr "" -#: library/curses.rst:809 +#: library/curses.rst:806 msgid "*ls*" msgstr "" -#: library/curses.rst:809 +#: library/curses.rst:806 msgid "Left side" msgstr "" -#: library/curses.rst:811 +#: library/curses.rst:808 msgid ":const:`ACS_VLINE`" msgstr "" -#: library/curses.rst:811 +#: library/curses.rst:808 msgid "*rs*" msgstr "" -#: library/curses.rst:811 +#: library/curses.rst:808 msgid "Right side" msgstr "" -#: library/curses.rst:813 +#: library/curses.rst:810 msgid "*ts*" msgstr "" -#: library/curses.rst:813 +#: library/curses.rst:810 msgid "Top" msgstr "" -#: library/curses.rst:815 +#: library/curses.rst:812 msgid ":const:`ACS_HLINE`" msgstr "" -#: library/curses.rst:815 +#: library/curses.rst:812 msgid "*bs*" msgstr "" -#: library/curses.rst:815 +#: library/curses.rst:812 msgid "Bottom" msgstr "" -#: library/curses.rst:817 +#: library/curses.rst:814 msgid "*tl*" msgstr "" -#: library/curses.rst:817 +#: library/curses.rst:814 msgid "Upper-left corner" msgstr "" -#: library/curses.rst:817 +#: library/curses.rst:814 msgid ":const:`ACS_ULCORNER`" msgstr "" -#: library/curses.rst:819 +#: library/curses.rst:816 msgid "*tr*" msgstr "" -#: library/curses.rst:819 +#: library/curses.rst:816 msgid "Upper-right corner" msgstr "" -#: library/curses.rst:819 +#: library/curses.rst:816 msgid ":const:`ACS_URCORNER`" msgstr "" -#: library/curses.rst:821 +#: library/curses.rst:818 msgid "*bl*" msgstr "" -#: library/curses.rst:821 +#: library/curses.rst:818 msgid "Bottom-left corner" msgstr "" -#: library/curses.rst:821 +#: library/curses.rst:818 msgid ":const:`ACS_LLCORNER`" msgstr "" -#: library/curses.rst:823 +#: library/curses.rst:820 msgid "*br*" msgstr "" -#: library/curses.rst:823 +#: library/curses.rst:820 msgid "Bottom-right corner" msgstr "" -#: library/curses.rst:823 +#: library/curses.rst:820 msgid ":const:`ACS_LRCORNER`" msgstr "" -#: library/curses.rst:829 +#: library/curses.rst:826 msgid "" "Similar to :meth:`border`, but both *ls* and *rs* are *vertch* and both *ts* " "and *bs* are *horch*. The default corner characters are always used by this " "function." msgstr "" -#: library/curses.rst:838 +#: library/curses.rst:835 msgid "" "Set the attributes of *num* characters at the current cursor position, or at " "position ``(y, x)`` if supplied. If *num* is not given or is ``-1``, the " @@ -999,45 +992,45 @@ msgid "" "be redisplayed by the next window refresh." msgstr "" -#: library/curses.rst:848 +#: library/curses.rst:845 msgid "" "Like :meth:`erase`, but also cause the whole window to be repainted upon " "next call to :meth:`refresh`." msgstr "" -#: library/curses.rst:854 +#: library/curses.rst:851 msgid "" "If *flag* is ``True``, the next call to :meth:`refresh` will clear the " "window completely." msgstr "" -#: library/curses.rst:860 +#: library/curses.rst:857 msgid "" "Erase from cursor to the end of the window: all lines below the cursor are " "deleted, and then the equivalent of :meth:`clrtoeol` is performed." msgstr "" -#: library/curses.rst:866 +#: library/curses.rst:863 msgid "Erase from cursor to the end of the line." msgstr "" -#: library/curses.rst:871 +#: library/curses.rst:868 msgid "" "Update the current cursor position of all the ancestors of the window to " "reflect the current cursor position of the window." msgstr "" -#: library/curses.rst:877 +#: library/curses.rst:874 msgid "Delete any character at ``(y, x)``." msgstr "" -#: library/curses.rst:882 +#: library/curses.rst:879 msgid "" "Delete the line under the cursor. All following lines are moved up by one " "line." msgstr "" -#: library/curses.rst:888 +#: library/curses.rst:885 msgid "" "An abbreviation for \"derive window\", :meth:`derwin` is the same as " "calling :meth:`subwin`, except that *begin_y* and *begin_x* are relative to " @@ -1045,13 +1038,13 @@ msgid "" "a window object for the derived window." msgstr "" -#: library/curses.rst:896 +#: library/curses.rst:893 msgid "" "Add character *ch* with attribute *attr*, and immediately call :meth:" "`refresh` on the window." msgstr "" -#: library/curses.rst:902 +#: library/curses.rst:899 msgid "" "Test whether the given pair of screen-relative character-cell coordinates " "are enclosed by the given window, returning ``True`` or ``False``. It is " @@ -1059,11 +1052,11 @@ msgid "" "location of a mouse event." msgstr "" -#: library/curses.rst:907 +#: library/curses.rst:904 msgid "Previously it returned ``1`` or ``0`` instead of ``True`` or ``False``." msgstr "" -#: library/curses.rst:913 +#: library/curses.rst:910 msgid "" "Encoding used to encode method arguments (Unicode strings and characters). " "The encoding attribute is inherited from the parent window when a subwindow " @@ -1071,19 +1064,19 @@ msgid "" "locale encoding is used (see :func:`locale.getencoding`)." msgstr "" -#: library/curses.rst:923 +#: library/curses.rst:920 msgid "Clear the window." msgstr "" -#: library/curses.rst:928 +#: library/curses.rst:925 msgid "Return a tuple ``(y, x)`` of co-ordinates of upper-left corner." msgstr "" -#: library/curses.rst:933 +#: library/curses.rst:930 msgid "Return the given window's current background character/attribute pair." msgstr "" -#: library/curses.rst:938 +#: library/curses.rst:935 msgid "" "Get a character. Note that the integer returned does *not* have to be in " "ASCII range: function keys, keypad keys and so on are represented by numbers " @@ -1091,14 +1084,14 @@ msgid "" "otherwise wait until a key is pressed." msgstr "" -#: library/curses.rst:946 +#: library/curses.rst:943 msgid "" "Get a wide character. Return a character for most keys, or an integer for " "function keys, keypad keys, and other special keys. In no-delay mode, raise " "an exception if there is no input." msgstr "" -#: library/curses.rst:955 +#: library/curses.rst:952 msgid "" "Get a character, returning a string instead of an integer, as :meth:`getch` " "does. Function keys, keypad keys and other special keys return a multibyte " @@ -1106,35 +1099,35 @@ msgid "" "there is no input." msgstr "" -#: library/curses.rst:963 +#: library/curses.rst:960 msgid "Return a tuple ``(y, x)`` of the height and width of the window." msgstr "" -#: library/curses.rst:968 +#: library/curses.rst:965 msgid "" "Return the beginning coordinates of this window relative to its parent " "window as a tuple ``(y, x)``. Return ``(-1, -1)`` if this window has no " "parent." msgstr "" -#: library/curses.rst:978 +#: library/curses.rst:975 msgid "" "Read a bytes object from the user, with primitive line editing capacity." msgstr "" -#: library/curses.rst:983 +#: library/curses.rst:980 msgid "" "Return a tuple ``(y, x)`` of current cursor position relative to the " "window's upper-left corner." msgstr "" -#: library/curses.rst:990 +#: library/curses.rst:987 msgid "" "Display a horizontal line starting at ``(y, x)`` with length *n* consisting " "of the character *ch*." msgstr "" -#: library/curses.rst:996 +#: library/curses.rst:993 msgid "" "If *flag* is ``False``, curses no longer considers using the hardware insert/" "delete character feature of the terminal; if *flag* is ``True``, use of " @@ -1142,13 +1135,13 @@ msgid "" "initialized, use of character insert/delete is enabled by default." msgstr "" -#: library/curses.rst:1004 +#: library/curses.rst:1001 msgid "" "If *flag* is ``True``, :mod:`curses` will try and use hardware line editing " "facilities. Otherwise, line insertion/deletion are disabled." msgstr "" -#: library/curses.rst:1010 +#: library/curses.rst:1007 msgid "" "If *flag* is ``True``, any change in the window image automatically causes " "the window to be refreshed; you no longer have to call :meth:`refresh` " @@ -1156,19 +1149,19 @@ msgid "" "calls to wrefresh. This option is disabled by default." msgstr "" -#: library/curses.rst:1018 +#: library/curses.rst:1015 msgid "" "Return the character at the given position in the window. The bottom 8 bits " "are the character proper, and upper bits are the attributes." msgstr "" -#: library/curses.rst:1025 +#: library/curses.rst:1022 msgid "" "Paint character *ch* at ``(y, x)`` with attributes *attr*, moving the line " "from position *x* right by one character." msgstr "" -#: library/curses.rst:1031 +#: library/curses.rst:1028 msgid "" "Insert *nlines* lines into the specified window above the current line. The " "*nlines* bottom lines are lost. For negative *nlines*, delete *nlines* " @@ -1177,13 +1170,13 @@ msgid "" "remains the same." msgstr "" -#: library/curses.rst:1040 +#: library/curses.rst:1037 msgid "" "Insert a blank line under the cursor. All following lines are moved down by " "one line." msgstr "" -#: library/curses.rst:1047 +#: library/curses.rst:1044 msgid "" "Insert a character string (as many characters as will fit on the line) " "before the character under the cursor, up to *n* characters. If *n* is " @@ -1193,7 +1186,7 @@ msgid "" "if specified)." msgstr "" -#: library/curses.rst:1057 +#: library/curses.rst:1054 msgid "" "Insert a character string (as many characters as will fit on the line) " "before the character under the cursor. All characters to the right of the " @@ -1202,7 +1195,7 @@ msgid "" "specified)." msgstr "" -#: library/curses.rst:1066 +#: library/curses.rst:1063 msgid "" "Return a bytes object of characters, extracted from the window starting at " "the current cursor position, or at *y*, *x* if specified. Attributes are " @@ -1210,76 +1203,76 @@ msgid "" "string at most *n* characters long (exclusive of the trailing NUL)." msgstr "" -#: library/curses.rst:1074 +#: library/curses.rst:1071 msgid "" "Return ``True`` if the specified line was modified since the last call to :" "meth:`refresh`; otherwise return ``False``. Raise a :exc:`curses.error` " "exception if *line* is not valid for the given window." msgstr "" -#: library/curses.rst:1081 +#: library/curses.rst:1078 msgid "" "Return ``True`` if the specified window was modified since the last call to :" "meth:`refresh`; otherwise return ``False``." msgstr "" -#: library/curses.rst:1087 +#: library/curses.rst:1084 msgid "" "If *flag* is ``True``, escape sequences generated by some keys (keypad, " "function keys) will be interpreted by :mod:`curses`. If *flag* is ``False``, " "escape sequences will be left as is in the input stream." msgstr "" -#: library/curses.rst:1094 +#: library/curses.rst:1091 msgid "" "If *flag* is ``True``, cursor is left where it is on update, instead of " "being at \"cursor position.\" This reduces cursor movement where possible. " "If possible the cursor will be made invisible." msgstr "" -#: library/curses.rst:1098 +#: library/curses.rst:1095 msgid "" "If *flag* is ``False``, cursor will always be at \"cursor position\" after " "an update." msgstr "" -#: library/curses.rst:1103 +#: library/curses.rst:1100 msgid "Move cursor to ``(new_y, new_x)``." msgstr "" -#: library/curses.rst:1108 +#: library/curses.rst:1105 msgid "" "Move the window inside its parent window. The screen-relative parameters of " "the window are not changed. This routine is used to display different parts " "of the parent window at the same physical position on the screen." msgstr "" -#: library/curses.rst:1115 +#: library/curses.rst:1112 msgid "Move the window so its upper-left corner is at ``(new_y, new_x)``." msgstr "" -#: library/curses.rst:1120 +#: library/curses.rst:1117 msgid "If *flag* is ``True``, :meth:`getch` will be non-blocking." msgstr "" -#: library/curses.rst:1125 +#: library/curses.rst:1122 msgid "If *flag* is ``True``, escape sequences will not be timed out." msgstr "" -#: library/curses.rst:1127 +#: library/curses.rst:1124 msgid "" "If *flag* is ``False``, after a few milliseconds, an escape sequence will " "not be interpreted, and will be left in the input stream as is." msgstr "" -#: library/curses.rst:1133 +#: library/curses.rst:1130 msgid "" "Mark for refresh but wait. This function updates the data structure " "representing the desired state of the window, but does not force an update " "of the physical screen. To accomplish that, call :func:`doupdate`." msgstr "" -#: library/curses.rst:1140 +#: library/curses.rst:1137 msgid "" "Overlay the window on top of *destwin*. The windows need not be the same " "size, only the overlapping region is copied. This copy is non-destructive, " @@ -1287,7 +1280,7 @@ msgid "" "contents of *destwin*." msgstr "" -#: library/curses.rst:1145 +#: library/curses.rst:1142 msgid "" "To get fine-grained control over the copied region, the second form of :meth:" "`overlay` can be used. *sminrow* and *smincol* are the upper-left " @@ -1295,7 +1288,7 @@ msgid "" "in the destination window." msgstr "" -#: library/curses.rst:1153 +#: library/curses.rst:1150 msgid "" "Overwrite the window on top of *destwin*. The windows need not be the same " "size, in which case only the overlapping region is copied. This copy is " @@ -1303,7 +1296,7 @@ msgid "" "the old contents of *destwin*." msgstr "" -#: library/curses.rst:1158 +#: library/curses.rst:1155 msgid "" "To get fine-grained control over the copied region, the second form of :meth:" "`overwrite` can be used. *sminrow* and *smincol* are the upper-left " @@ -1311,31 +1304,31 @@ msgid "" "the destination window." msgstr "" -#: library/curses.rst:1166 +#: library/curses.rst:1163 msgid "" "Write all data associated with the window into the provided file object. " "This information can be later retrieved using the :func:`getwin` function." msgstr "" -#: library/curses.rst:1172 +#: library/curses.rst:1169 msgid "" "Indicate that the *num* screen lines, starting at line *beg*, are corrupted " "and should be completely redrawn on the next :meth:`refresh` call." msgstr "" -#: library/curses.rst:1178 +#: library/curses.rst:1175 msgid "" "Touch the entire window, causing it to be completely redrawn on the next :" "meth:`refresh` call." msgstr "" -#: library/curses.rst:1184 +#: library/curses.rst:1181 msgid "" "Update the display immediately (sync actual screen with previous drawing/" "deleting methods)." msgstr "" -#: library/curses.rst:1187 +#: library/curses.rst:1184 msgid "" "The 6 optional arguments can only be specified when the window is a pad " "created with :func:`newpad`. The additional parameters are needed to " @@ -1350,7 +1343,7 @@ msgid "" "*smincol* are treated as if they were zero." msgstr "" -#: library/curses.rst:1201 +#: library/curses.rst:1198 msgid "" "Reallocate storage for a curses window to adjust its dimensions to the " "specified values. If either dimension is larger than the current values, " @@ -1358,11 +1351,11 @@ msgid "" "rendition (as set by :meth:`bkgdset`) merged into them." msgstr "" -#: library/curses.rst:1209 +#: library/curses.rst:1206 msgid "Scroll the screen or scrolling region upward by *lines* lines." msgstr "" -#: library/curses.rst:1214 +#: library/curses.rst:1211 msgid "" "Control what happens when the cursor of a window is moved off the edge of " "the window or scrolling region, either as a result of a newline action on " @@ -1372,54 +1365,54 @@ msgid "" "scrolling effect on the terminal, it is also necessary to call :meth:`idlok`." msgstr "" -#: library/curses.rst:1224 +#: library/curses.rst:1221 msgid "" "Set the scrolling region from line *top* to line *bottom*. All scrolling " "actions will take place in this region." msgstr "" -#: library/curses.rst:1230 +#: library/curses.rst:1227 msgid "" "Turn off the standout attribute. On some terminals this has the side effect " "of turning off all attributes." msgstr "" -#: library/curses.rst:1236 +#: library/curses.rst:1233 msgid "Turn on attribute *A_STANDOUT*." msgstr "" -#: library/curses.rst:1249 +#: library/curses.rst:1246 msgid "" "Return a sub-window, whose upper-left corner is at ``(begin_y, begin_x)``, " "and whose width/height is *ncols*/*nlines*." msgstr "" -#: library/curses.rst:1252 +#: library/curses.rst:1249 msgid "" "By default, the sub-window will extend from the specified position to the " "lower right corner of the window." msgstr "" -#: library/curses.rst:1258 +#: library/curses.rst:1255 msgid "" "Touch each location in the window that has been touched in any of its " "ancestor windows. This routine is called by :meth:`refresh`, so it should " "almost never be necessary to call it manually." msgstr "" -#: library/curses.rst:1265 +#: library/curses.rst:1262 msgid "" "If *flag* is ``True``, then :meth:`syncup` is called automatically whenever " "there is a change in the window." msgstr "" -#: library/curses.rst:1271 +#: library/curses.rst:1268 msgid "" "Touch all locations in ancestors of the window that have been changed in " "the window." msgstr "" -#: library/curses.rst:1277 +#: library/curses.rst:1274 msgid "" "Set blocking or non-blocking read behavior for the window. If *delay* is " "negative, blocking read is used (which will wait indefinitely for input). " @@ -1429,7 +1422,7 @@ msgid "" "still no input at the end of that time." msgstr "" -#: library/curses.rst:1287 +#: library/curses.rst:1284 msgid "" "Pretend *count* lines have been changed, starting with line *start*. If " "*changed* is supplied, it specifies whether the affected lines are marked as " @@ -1437,49 +1430,49 @@ msgid "" "``=False``)." msgstr "" -#: library/curses.rst:1294 +#: library/curses.rst:1291 msgid "" "Pretend the whole window has been changed, for purposes of drawing " "optimizations." msgstr "" -#: library/curses.rst:1300 +#: library/curses.rst:1297 msgid "" "Mark all lines in the window as unchanged since the last call to :meth:" "`refresh`." msgstr "" -#: library/curses.rst:1307 +#: library/curses.rst:1304 msgid "" "Display a vertical line starting at ``(y, x)`` with length *n* consisting of " "the character *ch* with attributes *attr*." msgstr "" -#: library/curses.rst:1312 +#: library/curses.rst:1309 msgid "Constants" msgstr "" -#: library/curses.rst:1314 +#: library/curses.rst:1311 msgid "The :mod:`curses` module defines the following data members:" msgstr "" -#: library/curses.rst:1319 +#: library/curses.rst:1316 msgid "" "Some curses routines that return an integer, such as :meth:`~window." "getch`, return :const:`ERR` upon failure." msgstr "" -#: library/curses.rst:1325 +#: library/curses.rst:1322 msgid "" "Some curses routines that return an integer, such as :func:`napms`, " "return :const:`OK` upon success." msgstr "" -#: library/curses.rst:1332 +#: library/curses.rst:1329 msgid "A bytes object representing the current version of the module." msgstr "" -#: library/curses.rst:1337 +#: library/curses.rst:1334 msgid "" "A named tuple containing the three components of the ncurses library " "version: *major*, *minor*, and *patch*. All values are integers. The " @@ -1487,535 +1480,535 @@ msgid "" "is equivalent to ``curses.ncurses_version.major`` and so on." msgstr "" -#: library/curses.rst:1342 +#: library/curses.rst:1339 msgid "Availability: if the ncurses library is used." msgstr "" -#: library/curses.rst:1348 +#: library/curses.rst:1345 msgid "" "The maximum number of colors the terminal can support. It is defined only " "after the call to :func:`start_color`." msgstr "" -#: library/curses.rst:1353 +#: library/curses.rst:1350 msgid "" "The maximum number of color pairs the terminal can support. It is defined " "only after the call to :func:`start_color`." msgstr "" -#: library/curses.rst:1358 +#: library/curses.rst:1355 msgid "" "The width of the screen, i.e., the number of columns. It is defined only " "after the call to :func:`initscr`. Updated by :func:`update_lines_cols`, :" "func:`resizeterm` and :func:`resize_term`." msgstr "" -#: library/curses.rst:1365 +#: library/curses.rst:1362 msgid "" "The height of the screen, i.e., the number of lines. It is defined only " "after the call to :func:`initscr`. Updated by :func:`update_lines_cols`, :" "func:`resizeterm` and :func:`resize_term`." msgstr "" -#: library/curses.rst:1371 +#: library/curses.rst:1368 msgid "" "Some constants are available to specify character cell attributes. The exact " "constants available are system dependent." msgstr "" -#: library/curses.rst:1375 +#: library/curses.rst:1372 msgid "Attribute" msgstr "" -#: library/curses.rst:1420 library/curses.rst:1758 +#: library/curses.rst:1417 library/curses.rst:1755 msgid "Meaning" msgstr "" -#: library/curses.rst:1377 +#: library/curses.rst:1374 msgid "Alternate character set mode" msgstr "" -#: library/curses.rst:1379 +#: library/curses.rst:1376 msgid "Blink mode" msgstr "" -#: library/curses.rst:1381 +#: library/curses.rst:1378 msgid "Bold mode" msgstr "" -#: library/curses.rst:1383 +#: library/curses.rst:1380 msgid "Dim mode" msgstr "" -#: library/curses.rst:1385 +#: library/curses.rst:1382 msgid "Invisible or blank mode" msgstr "" -#: library/curses.rst:1387 +#: library/curses.rst:1384 msgid "Italic mode" msgstr "" -#: library/curses.rst:1389 +#: library/curses.rst:1386 msgid "Normal attribute" msgstr "" -#: library/curses.rst:1391 +#: library/curses.rst:1388 msgid "Protected mode" msgstr "" -#: library/curses.rst:1393 +#: library/curses.rst:1390 msgid "Reverse background and foreground colors" msgstr "" -#: library/curses.rst:1396 +#: library/curses.rst:1393 msgid "Standout mode" msgstr "" -#: library/curses.rst:1398 +#: library/curses.rst:1395 msgid "Underline mode" msgstr "" -#: library/curses.rst:1400 +#: library/curses.rst:1397 msgid "Horizontal highlight" msgstr "" -#: library/curses.rst:1402 +#: library/curses.rst:1399 msgid "Left highlight" msgstr "" -#: library/curses.rst:1404 +#: library/curses.rst:1401 msgid "Low highlight" msgstr "" -#: library/curses.rst:1406 +#: library/curses.rst:1403 msgid "Right highlight" msgstr "" -#: library/curses.rst:1408 +#: library/curses.rst:1405 msgid "Top highlight" msgstr "" -#: library/curses.rst:1410 +#: library/curses.rst:1407 msgid "Vertical highlight" msgstr "" -#: library/curses.rst:1413 +#: library/curses.rst:1410 msgid "``A_ITALIC`` was added." msgstr "" -#: library/curses.rst:1416 +#: library/curses.rst:1413 msgid "" "Several constants are available to extract corresponding attributes returned " "by some methods." msgstr "" -#: library/curses.rst:1420 +#: library/curses.rst:1417 msgid "Bit-mask" msgstr "" -#: library/curses.rst:1422 +#: library/curses.rst:1419 msgid "Bit-mask to extract attributes" msgstr "" -#: library/curses.rst:1425 +#: library/curses.rst:1422 msgid "Bit-mask to extract a character" msgstr "" -#: library/curses.rst:1428 +#: library/curses.rst:1425 msgid "Bit-mask to extract color-pair field information" msgstr "" -#: library/curses.rst:1432 +#: library/curses.rst:1429 msgid "" "Keys are referred to by integer constants with names starting with " "``KEY_``. The exact keycaps available are system dependent." msgstr "" -#: library/curses.rst:1438 +#: library/curses.rst:1435 msgid "Key constant" msgstr "" -#: library/curses.rst:1438 +#: library/curses.rst:1435 msgid "Key" msgstr "" -#: library/curses.rst:1440 +#: library/curses.rst:1437 msgid "Minimum key value" msgstr "" -#: library/curses.rst:1442 +#: library/curses.rst:1439 msgid "Break key (unreliable)" msgstr "" -#: library/curses.rst:1444 +#: library/curses.rst:1441 msgid "Down-arrow" msgstr "" -#: library/curses.rst:1446 +#: library/curses.rst:1443 msgid "Up-arrow" msgstr "" -#: library/curses.rst:1448 +#: library/curses.rst:1445 msgid "Left-arrow" msgstr "" -#: library/curses.rst:1450 +#: library/curses.rst:1447 msgid "Right-arrow" msgstr "" -#: library/curses.rst:1452 +#: library/curses.rst:1449 msgid "Home key (upward+left arrow)" msgstr "" -#: library/curses.rst:1454 +#: library/curses.rst:1451 msgid "Backspace (unreliable)" msgstr "" -#: library/curses.rst:1456 +#: library/curses.rst:1453 msgid "Function keys. Up to 64 function keys are supported." msgstr "" -#: library/curses.rst:1459 +#: library/curses.rst:1456 msgid "Value of function key *n*" msgstr "" -#: library/curses.rst:1461 +#: library/curses.rst:1458 msgid "Delete line" msgstr "" -#: library/curses.rst:1463 +#: library/curses.rst:1460 msgid "Insert line" msgstr "" -#: library/curses.rst:1465 +#: library/curses.rst:1462 msgid "Delete character" msgstr "" -#: library/curses.rst:1467 +#: library/curses.rst:1464 msgid "Insert char or enter insert mode" msgstr "" -#: library/curses.rst:1469 +#: library/curses.rst:1466 msgid "Exit insert char mode" msgstr "" -#: library/curses.rst:1471 +#: library/curses.rst:1468 msgid "Clear screen" msgstr "" -#: library/curses.rst:1473 +#: library/curses.rst:1470 msgid "Clear to end of screen" msgstr "" -#: library/curses.rst:1475 +#: library/curses.rst:1472 msgid "Clear to end of line" msgstr "" -#: library/curses.rst:1477 +#: library/curses.rst:1474 msgid "Scroll 1 line forward" msgstr "" -#: library/curses.rst:1479 +#: library/curses.rst:1476 msgid "Scroll 1 line backward (reverse)" msgstr "" -#: library/curses.rst:1481 +#: library/curses.rst:1478 msgid "Next page" msgstr "" -#: library/curses.rst:1483 +#: library/curses.rst:1480 msgid "Previous page" msgstr "" -#: library/curses.rst:1485 +#: library/curses.rst:1482 msgid "Set tab" msgstr "" -#: library/curses.rst:1487 +#: library/curses.rst:1484 msgid "Clear tab" msgstr "" -#: library/curses.rst:1489 +#: library/curses.rst:1486 msgid "Clear all tabs" msgstr "" -#: library/curses.rst:1491 +#: library/curses.rst:1488 msgid "Enter or send (unreliable)" msgstr "" -#: library/curses.rst:1493 +#: library/curses.rst:1490 msgid "Soft (partial) reset (unreliable)" msgstr "" -#: library/curses.rst:1495 +#: library/curses.rst:1492 msgid "Reset or hard reset (unreliable)" msgstr "" -#: library/curses.rst:1497 +#: library/curses.rst:1494 msgid "Print" msgstr "" -#: library/curses.rst:1499 +#: library/curses.rst:1496 msgid "Home down or bottom (lower left)" msgstr "" -#: library/curses.rst:1501 +#: library/curses.rst:1498 msgid "Upper left of keypad" msgstr "" -#: library/curses.rst:1503 +#: library/curses.rst:1500 msgid "Upper right of keypad" msgstr "" -#: library/curses.rst:1505 +#: library/curses.rst:1502 msgid "Center of keypad" msgstr "" -#: library/curses.rst:1507 +#: library/curses.rst:1504 msgid "Lower left of keypad" msgstr "" -#: library/curses.rst:1509 +#: library/curses.rst:1506 msgid "Lower right of keypad" msgstr "" -#: library/curses.rst:1511 +#: library/curses.rst:1508 msgid "Back tab" msgstr "" -#: library/curses.rst:1513 +#: library/curses.rst:1510 msgid "Beg (beginning)" msgstr "" -#: library/curses.rst:1515 +#: library/curses.rst:1512 msgid "Cancel" msgstr "" -#: library/curses.rst:1517 +#: library/curses.rst:1514 msgid "Close" msgstr "" -#: library/curses.rst:1519 +#: library/curses.rst:1516 msgid "Cmd (command)" msgstr "" -#: library/curses.rst:1521 +#: library/curses.rst:1518 msgid "Copy" msgstr "" -#: library/curses.rst:1523 +#: library/curses.rst:1520 msgid "Create" msgstr "" -#: library/curses.rst:1525 +#: library/curses.rst:1522 msgid "End" msgstr "" -#: library/curses.rst:1527 +#: library/curses.rst:1524 msgid "Exit" msgstr "" -#: library/curses.rst:1529 +#: library/curses.rst:1526 msgid "Find" msgstr "" -#: library/curses.rst:1531 +#: library/curses.rst:1528 msgid "Help" msgstr "" -#: library/curses.rst:1533 +#: library/curses.rst:1530 msgid "Mark" msgstr "" -#: library/curses.rst:1535 +#: library/curses.rst:1532 msgid "Message" msgstr "" -#: library/curses.rst:1537 +#: library/curses.rst:1534 msgid "Move" msgstr "" -#: library/curses.rst:1539 +#: library/curses.rst:1536 msgid "Next" msgstr "" -#: library/curses.rst:1541 +#: library/curses.rst:1538 msgid "Open" msgstr "" -#: library/curses.rst:1543 +#: library/curses.rst:1540 msgid "Options" msgstr "" -#: library/curses.rst:1545 +#: library/curses.rst:1542 msgid "Prev (previous)" msgstr "" -#: library/curses.rst:1547 +#: library/curses.rst:1544 msgid "Redo" msgstr "" -#: library/curses.rst:1549 +#: library/curses.rst:1546 msgid "Ref (reference)" msgstr "" -#: library/curses.rst:1551 +#: library/curses.rst:1548 msgid "Refresh" msgstr "" -#: library/curses.rst:1553 +#: library/curses.rst:1550 msgid "Replace" msgstr "" -#: library/curses.rst:1555 +#: library/curses.rst:1552 msgid "Restart" msgstr "" -#: library/curses.rst:1557 +#: library/curses.rst:1554 msgid "Resume" msgstr "" -#: library/curses.rst:1559 +#: library/curses.rst:1556 msgid "Save" msgstr "" -#: library/curses.rst:1561 +#: library/curses.rst:1558 msgid "Shifted Beg (beginning)" msgstr "" -#: library/curses.rst:1563 +#: library/curses.rst:1560 msgid "Shifted Cancel" msgstr "" -#: library/curses.rst:1565 +#: library/curses.rst:1562 msgid "Shifted Command" msgstr "" -#: library/curses.rst:1567 +#: library/curses.rst:1564 msgid "Shifted Copy" msgstr "" -#: library/curses.rst:1569 +#: library/curses.rst:1566 msgid "Shifted Create" msgstr "" -#: library/curses.rst:1571 +#: library/curses.rst:1568 msgid "Shifted Delete char" msgstr "" -#: library/curses.rst:1573 +#: library/curses.rst:1570 msgid "Shifted Delete line" msgstr "" -#: library/curses.rst:1575 +#: library/curses.rst:1572 msgid "Select" msgstr "" -#: library/curses.rst:1577 +#: library/curses.rst:1574 msgid "Shifted End" msgstr "" -#: library/curses.rst:1579 +#: library/curses.rst:1576 msgid "Shifted Clear line" msgstr "" -#: library/curses.rst:1581 +#: library/curses.rst:1578 msgid "Shifted Exit" msgstr "" -#: library/curses.rst:1583 +#: library/curses.rst:1580 msgid "Shifted Find" msgstr "" -#: library/curses.rst:1585 +#: library/curses.rst:1582 msgid "Shifted Help" msgstr "" -#: library/curses.rst:1587 +#: library/curses.rst:1584 msgid "Shifted Home" msgstr "" -#: library/curses.rst:1589 +#: library/curses.rst:1586 msgid "Shifted Input" msgstr "" -#: library/curses.rst:1591 +#: library/curses.rst:1588 msgid "Shifted Left arrow" msgstr "" -#: library/curses.rst:1593 +#: library/curses.rst:1590 msgid "Shifted Message" msgstr "" -#: library/curses.rst:1595 +#: library/curses.rst:1592 msgid "Shifted Move" msgstr "" -#: library/curses.rst:1597 +#: library/curses.rst:1594 msgid "Shifted Next" msgstr "" -#: library/curses.rst:1599 +#: library/curses.rst:1596 msgid "Shifted Options" msgstr "" -#: library/curses.rst:1601 +#: library/curses.rst:1598 msgid "Shifted Prev" msgstr "" -#: library/curses.rst:1603 +#: library/curses.rst:1600 msgid "Shifted Print" msgstr "" -#: library/curses.rst:1605 +#: library/curses.rst:1602 msgid "Shifted Redo" msgstr "" -#: library/curses.rst:1607 +#: library/curses.rst:1604 msgid "Shifted Replace" msgstr "" -#: library/curses.rst:1609 +#: library/curses.rst:1606 msgid "Shifted Right arrow" msgstr "" -#: library/curses.rst:1611 +#: library/curses.rst:1608 msgid "Shifted Resume" msgstr "" -#: library/curses.rst:1613 +#: library/curses.rst:1610 msgid "Shifted Save" msgstr "" -#: library/curses.rst:1615 +#: library/curses.rst:1612 msgid "Shifted Suspend" msgstr "" -#: library/curses.rst:1617 +#: library/curses.rst:1614 msgid "Shifted Undo" msgstr "" -#: library/curses.rst:1619 +#: library/curses.rst:1616 msgid "Suspend" msgstr "" -#: library/curses.rst:1621 +#: library/curses.rst:1618 msgid "Undo" msgstr "" -#: library/curses.rst:1623 +#: library/curses.rst:1620 msgid "Mouse event has occurred" msgstr "" -#: library/curses.rst:1625 +#: library/curses.rst:1622 msgid "Terminal resize event" msgstr "" -#: library/curses.rst:1627 +#: library/curses.rst:1624 msgid "Maximum key value" msgstr "" -#: library/curses.rst:1630 +#: library/curses.rst:1627 msgid "" "On VT100s and their software emulations, such as X terminal emulators, there " "are normally at least four function keys (:const:`KEY_F1 `, :const:" @@ -2027,63 +2020,63 @@ msgid "" "keypad mappings are standard:" msgstr "" -#: library/curses.rst:1639 +#: library/curses.rst:1636 msgid "Keycap" msgstr "" -#: library/curses.rst:1784 library/curses.rst:1908 +#: library/curses.rst:1781 library/curses.rst:1905 msgid "Constant" msgstr "" -#: library/curses.rst:1641 +#: library/curses.rst:1638 msgid ":kbd:`Insert`" msgstr "" -#: library/curses.rst:1641 +#: library/curses.rst:1638 msgid "KEY_IC" msgstr "" -#: library/curses.rst:1643 +#: library/curses.rst:1640 msgid ":kbd:`Delete`" msgstr "" -#: library/curses.rst:1643 +#: library/curses.rst:1640 msgid "KEY_DC" msgstr "" -#: library/curses.rst:1645 +#: library/curses.rst:1642 msgid ":kbd:`Home`" msgstr "" -#: library/curses.rst:1645 +#: library/curses.rst:1642 msgid "KEY_HOME" msgstr "" -#: library/curses.rst:1647 +#: library/curses.rst:1644 msgid ":kbd:`End`" msgstr "" -#: library/curses.rst:1647 +#: library/curses.rst:1644 msgid "KEY_END" msgstr "" -#: library/curses.rst:1649 +#: library/curses.rst:1646 msgid ":kbd:`Page Up`" msgstr "" -#: library/curses.rst:1649 +#: library/curses.rst:1646 msgid "KEY_PPAGE" msgstr "" -#: library/curses.rst:1651 +#: library/curses.rst:1648 msgid ":kbd:`Page Down`" msgstr "" -#: library/curses.rst:1651 +#: library/curses.rst:1648 msgid "KEY_NPAGE" msgstr "" -#: library/curses.rst:1656 +#: library/curses.rst:1653 msgid "" "The following table lists characters from the alternate character set. These " "are inherited from the VT100 terminal, and will generally be available on " @@ -2091,268 +2084,268 @@ msgid "" "available, curses falls back on a crude printable ASCII approximation." msgstr "" -#: library/curses.rst:1663 +#: library/curses.rst:1660 msgid "These are available only after :func:`initscr` has been called." msgstr "" -#: library/curses.rst:1666 +#: library/curses.rst:1663 msgid "ACS code" msgstr "" -#: library/curses.rst:1668 +#: library/curses.rst:1665 msgid "alternate name for upper right corner" msgstr "" -#: library/curses.rst:1670 +#: library/curses.rst:1667 msgid "solid square block" msgstr "" -#: library/curses.rst:1672 +#: library/curses.rst:1669 msgid "board of squares" msgstr "" -#: library/curses.rst:1674 +#: library/curses.rst:1671 msgid "alternate name for horizontal line" msgstr "" -#: library/curses.rst:1676 +#: library/curses.rst:1673 msgid "alternate name for upper left corner" msgstr "" -#: library/curses.rst:1678 +#: library/curses.rst:1675 msgid "alternate name for top tee" msgstr "" -#: library/curses.rst:1680 +#: library/curses.rst:1677 msgid "bottom tee" msgstr "" -#: library/curses.rst:1682 +#: library/curses.rst:1679 msgid "bullet" msgstr "" -#: library/curses.rst:1684 +#: library/curses.rst:1681 msgid "checker board (stipple)" msgstr "" -#: library/curses.rst:1686 +#: library/curses.rst:1683 msgid "arrow pointing down" msgstr "" -#: library/curses.rst:1688 +#: library/curses.rst:1685 msgid "degree symbol" msgstr "" -#: library/curses.rst:1690 +#: library/curses.rst:1687 msgid "diamond" msgstr "" -#: library/curses.rst:1692 +#: library/curses.rst:1689 msgid "greater-than-or-equal-to" msgstr "" -#: library/curses.rst:1694 +#: library/curses.rst:1691 msgid "horizontal line" msgstr "" -#: library/curses.rst:1696 +#: library/curses.rst:1693 msgid "lantern symbol" msgstr "" -#: library/curses.rst:1698 +#: library/curses.rst:1695 msgid "left arrow" msgstr "" -#: library/curses.rst:1700 +#: library/curses.rst:1697 msgid "less-than-or-equal-to" msgstr "" -#: library/curses.rst:1702 +#: library/curses.rst:1699 msgid "lower left-hand corner" msgstr "" -#: library/curses.rst:1704 +#: library/curses.rst:1701 msgid "lower right-hand corner" msgstr "" -#: library/curses.rst:1706 +#: library/curses.rst:1703 msgid "left tee" msgstr "" -#: library/curses.rst:1708 +#: library/curses.rst:1705 msgid "not-equal sign" msgstr "" -#: library/curses.rst:1710 +#: library/curses.rst:1707 msgid "letter pi" msgstr "" -#: library/curses.rst:1712 +#: library/curses.rst:1709 msgid "plus-or-minus sign" msgstr "" -#: library/curses.rst:1714 +#: library/curses.rst:1711 msgid "big plus sign" msgstr "" -#: library/curses.rst:1716 +#: library/curses.rst:1713 msgid "right arrow" msgstr "" -#: library/curses.rst:1718 +#: library/curses.rst:1715 msgid "right tee" msgstr "" -#: library/curses.rst:1720 +#: library/curses.rst:1717 msgid "scan line 1" msgstr "" -#: library/curses.rst:1722 +#: library/curses.rst:1719 msgid "scan line 3" msgstr "" -#: library/curses.rst:1724 +#: library/curses.rst:1721 msgid "scan line 7" msgstr "" -#: library/curses.rst:1726 +#: library/curses.rst:1723 msgid "scan line 9" msgstr "" -#: library/curses.rst:1728 +#: library/curses.rst:1725 msgid "alternate name for lower right corner" msgstr "" -#: library/curses.rst:1730 +#: library/curses.rst:1727 msgid "alternate name for vertical line" msgstr "" -#: library/curses.rst:1732 +#: library/curses.rst:1729 msgid "alternate name for right tee" msgstr "" -#: library/curses.rst:1734 +#: library/curses.rst:1731 msgid "alternate name for lower left corner" msgstr "" -#: library/curses.rst:1736 +#: library/curses.rst:1733 msgid "alternate name for bottom tee" msgstr "" -#: library/curses.rst:1738 +#: library/curses.rst:1735 msgid "alternate name for left tee" msgstr "" -#: library/curses.rst:1740 +#: library/curses.rst:1737 msgid "alternate name for crossover or big plus" msgstr "" -#: library/curses.rst:1742 +#: library/curses.rst:1739 msgid "pound sterling" msgstr "" -#: library/curses.rst:1744 +#: library/curses.rst:1741 msgid "top tee" msgstr "" -#: library/curses.rst:1746 +#: library/curses.rst:1743 msgid "up arrow" msgstr "" -#: library/curses.rst:1748 +#: library/curses.rst:1745 msgid "upper left corner" msgstr "" -#: library/curses.rst:1750 +#: library/curses.rst:1747 msgid "upper right corner" msgstr "" -#: library/curses.rst:1752 +#: library/curses.rst:1749 msgid "vertical line" msgstr "" -#: library/curses.rst:1755 +#: library/curses.rst:1752 msgid "" "The following table lists mouse button constants used by :meth:`getmouse`:" msgstr "" -#: library/curses.rst:1758 +#: library/curses.rst:1755 msgid "Mouse button constant" msgstr "" -#: library/curses.rst:1760 +#: library/curses.rst:1757 msgid "Mouse button *n* pressed" msgstr "" -#: library/curses.rst:1762 +#: library/curses.rst:1759 msgid "Mouse button *n* released" msgstr "" -#: library/curses.rst:1764 +#: library/curses.rst:1761 msgid "Mouse button *n* clicked" msgstr "" -#: library/curses.rst:1766 +#: library/curses.rst:1763 msgid "Mouse button *n* double clicked" msgstr "" -#: library/curses.rst:1768 +#: library/curses.rst:1765 msgid "Mouse button *n* triple clicked" msgstr "" -#: library/curses.rst:1770 +#: library/curses.rst:1767 msgid "Shift was down during button state change" msgstr "" -#: library/curses.rst:1774 +#: library/curses.rst:1771 msgid "Control was down during button state change" msgstr "" -#: library/curses.rst:1781 +#: library/curses.rst:1778 msgid "The following table lists the predefined colors:" msgstr "" -#: library/curses.rst:1784 +#: library/curses.rst:1781 msgid "Color" msgstr "" -#: library/curses.rst:1786 +#: library/curses.rst:1783 msgid "Black" msgstr "" -#: library/curses.rst:1788 +#: library/curses.rst:1785 msgid "Blue" msgstr "" -#: library/curses.rst:1790 +#: library/curses.rst:1787 msgid "Cyan (light greenish blue)" msgstr "" -#: library/curses.rst:1792 +#: library/curses.rst:1789 msgid "Green" msgstr "" -#: library/curses.rst:1794 +#: library/curses.rst:1791 msgid "Magenta (purplish red)" msgstr "" -#: library/curses.rst:1796 +#: library/curses.rst:1793 msgid "Red" msgstr "" -#: library/curses.rst:1798 +#: library/curses.rst:1795 msgid "White" msgstr "" -#: library/curses.rst:1800 +#: library/curses.rst:1797 msgid "Yellow" msgstr "" -#: library/curses.rst:1805 +#: library/curses.rst:1802 msgid ":mod:`curses.textpad` --- Text input widget for curses programs" msgstr "" -#: library/curses.rst:1813 +#: library/curses.rst:1810 msgid "" "The :mod:`curses.textpad` module provides a :class:`Textbox` class that " "handles elementary text editing in a curses window, supporting a set of " @@ -2362,11 +2355,11 @@ msgid "" "purposes." msgstr "" -#: library/curses.rst:1819 +#: library/curses.rst:1816 msgid "The module :mod:`curses.textpad` defines the following function:" msgstr "" -#: library/curses.rst:1824 +#: library/curses.rst:1821 msgid "" "Draw a rectangle. The first argument must be a window object; the remaining " "arguments are coordinates relative to that window. The second and third " @@ -2378,15 +2371,15 @@ msgid "" "will be drawn with ASCII dashes, vertical bars, and plus signs." msgstr "" -#: library/curses.rst:1837 +#: library/curses.rst:1834 msgid "Textbox objects" msgstr "" -#: library/curses.rst:1839 +#: library/curses.rst:1836 msgid "You can instantiate a :class:`Textbox` object as follows:" msgstr "" -#: library/curses.rst:1844 +#: library/curses.rst:1841 msgid "" "Return a textbox widget object. The *win* argument should be a curses :ref:" "`window ` object in which the textbox is to be " @@ -2395,11 +2388,11 @@ msgid "" "instance's :attr:`stripspaces` flag is initially on." msgstr "" -#: library/curses.rst:1850 +#: library/curses.rst:1847 msgid ":class:`Textbox` objects have the following methods:" msgstr "" -#: library/curses.rst:1855 +#: library/curses.rst:1852 msgid "" "This is the entry point you will normally use. It accepts editing " "keystrokes until one of the termination keystrokes is entered. If " @@ -2410,167 +2403,167 @@ msgid "" "`stripspaces` attribute." msgstr "" -#: library/curses.rst:1866 +#: library/curses.rst:1863 msgid "" "Process a single command keystroke. Here are the supported special " "keystrokes:" msgstr "" -#: library/curses.rst:1908 +#: library/curses.rst:1905 msgid "Keystroke" msgstr "" -#: library/curses.rst:1870 +#: library/curses.rst:1867 msgid "Action" msgstr "" -#: library/curses.rst:1872 +#: library/curses.rst:1869 msgid ":kbd:`Control-A`" msgstr "" -#: library/curses.rst:1872 +#: library/curses.rst:1869 msgid "Go to left edge of window." msgstr "" -#: library/curses.rst:1910 +#: library/curses.rst:1907 msgid ":kbd:`Control-B`" msgstr "" -#: library/curses.rst:1874 +#: library/curses.rst:1871 msgid "Cursor left, wrapping to previous line if appropriate." msgstr "" -#: library/curses.rst:1877 +#: library/curses.rst:1874 msgid ":kbd:`Control-D`" msgstr "" -#: library/curses.rst:1877 +#: library/curses.rst:1874 msgid "Delete character under cursor." msgstr "" -#: library/curses.rst:1879 +#: library/curses.rst:1876 msgid ":kbd:`Control-E`" msgstr "" -#: library/curses.rst:1879 +#: library/curses.rst:1876 msgid "Go to right edge (stripspaces off) or end of line (stripspaces on)." msgstr "" -#: library/curses.rst:1912 +#: library/curses.rst:1909 msgid ":kbd:`Control-F`" msgstr "" -#: library/curses.rst:1882 +#: library/curses.rst:1879 msgid "Cursor right, wrapping to next line when appropriate." msgstr "" -#: library/curses.rst:1885 +#: library/curses.rst:1882 msgid ":kbd:`Control-G`" msgstr "" -#: library/curses.rst:1885 +#: library/curses.rst:1882 msgid "Terminate, returning the window contents." msgstr "" -#: library/curses.rst:1887 +#: library/curses.rst:1884 msgid ":kbd:`Control-H`" msgstr "" -#: library/curses.rst:1887 +#: library/curses.rst:1884 msgid "Delete character backward." msgstr "" -#: library/curses.rst:1889 +#: library/curses.rst:1886 msgid ":kbd:`Control-J`" msgstr "" -#: library/curses.rst:1889 +#: library/curses.rst:1886 msgid "Terminate if the window is 1 line, otherwise insert newline." msgstr "" -#: library/curses.rst:1892 +#: library/curses.rst:1889 msgid ":kbd:`Control-K`" msgstr "" -#: library/curses.rst:1892 +#: library/curses.rst:1889 msgid "If line is blank, delete it, otherwise clear to end of line." msgstr "" -#: library/curses.rst:1895 +#: library/curses.rst:1892 msgid ":kbd:`Control-L`" msgstr "" -#: library/curses.rst:1895 +#: library/curses.rst:1892 msgid "Refresh screen." msgstr "" -#: library/curses.rst:1916 +#: library/curses.rst:1913 msgid ":kbd:`Control-N`" msgstr "" -#: library/curses.rst:1897 +#: library/curses.rst:1894 msgid "Cursor down; move down one line." msgstr "" -#: library/curses.rst:1899 +#: library/curses.rst:1896 msgid ":kbd:`Control-O`" msgstr "" -#: library/curses.rst:1899 +#: library/curses.rst:1896 msgid "Insert a blank line at cursor location." msgstr "" -#: library/curses.rst:1914 +#: library/curses.rst:1911 msgid ":kbd:`Control-P`" msgstr "" -#: library/curses.rst:1901 +#: library/curses.rst:1898 msgid "Cursor up; move up one line." msgstr "" -#: library/curses.rst:1904 +#: library/curses.rst:1901 msgid "" "Move operations do nothing if the cursor is at an edge where the movement is " "not possible. The following synonyms are supported where possible:" msgstr "" -#: library/curses.rst:1910 +#: library/curses.rst:1907 msgid ":const:`~curses.KEY_LEFT`" msgstr "" -#: library/curses.rst:1912 +#: library/curses.rst:1909 msgid ":const:`~curses.KEY_RIGHT`" msgstr "" -#: library/curses.rst:1914 +#: library/curses.rst:1911 msgid ":const:`~curses.KEY_UP`" msgstr "" -#: library/curses.rst:1916 +#: library/curses.rst:1913 msgid ":const:`~curses.KEY_DOWN`" msgstr "" -#: library/curses.rst:1918 +#: library/curses.rst:1915 msgid ":const:`~curses.KEY_BACKSPACE`" msgstr "" -#: library/curses.rst:1918 +#: library/curses.rst:1915 msgid ":kbd:`Control-h`" msgstr "" -#: library/curses.rst:1921 +#: library/curses.rst:1918 msgid "" "All other keystrokes are treated as a command to insert the given character " "and move right (with line wrapping)." msgstr "" -#: library/curses.rst:1927 +#: library/curses.rst:1924 msgid "" "Return the window contents as a string; whether blanks in the window are " "included is affected by the :attr:`stripspaces` member." msgstr "" -#: library/curses.rst:1933 +#: library/curses.rst:1930 msgid "" "This attribute is a flag which controls the interpretation of blanks in the " "window. When it is on, trailing blanks on each line are ignored; any cursor " diff --git a/library/dataclasses.po b/library/dataclasses.po index 202990aa4..9b6e5e583 100644 --- a/library/dataclasses.po +++ b/library/dataclasses.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -481,17 +481,23 @@ msgstr "" #: library/dataclasses.rst:404 msgid "" +"If ``module`` is defined, the ``__module__`` attribute of the dataclass is " +"set to that value. By default, it is set to the module name of the caller." +msgstr "" + +#: library/dataclasses.rst:408 +msgid "" "This function is not strictly required, because any Python mechanism for " "creating a new class with ``__annotations__`` can then apply the :func:" "`dataclass` function to convert that class to a dataclass. This function is " "provided as a convenience. For example::" msgstr "" -#: library/dataclasses.rst:416 +#: library/dataclasses.rst:420 msgid "Is equivalent to::" msgstr "" -#: library/dataclasses.rst:429 +#: library/dataclasses.rst:433 msgid "" "Creates a new object of the same type as ``obj``, replacing fields with " "values from ``changes``. If ``obj`` is not a Data Class, raises :exc:" @@ -499,55 +505,55 @@ msgid "" "`TypeError`." msgstr "" -#: library/dataclasses.rst:434 +#: library/dataclasses.rst:438 msgid "" "The newly returned object is created by calling the :meth:`~object.__init__` " -"method of the dataclass. This ensures that :ref:`__post_init__ `, if present, is also called." +"method of the dataclass. This ensures that :meth:`__post_init__`, if " +"present, is also called." msgstr "" -#: library/dataclasses.rst:438 +#: library/dataclasses.rst:442 msgid "" "Init-only variables without default values, if any exist, must be specified " "on the call to :func:`replace` so that they can be passed to :meth:`~object." -"__init__` and :ref:`__post_init__ `." +"__init__` and :meth:`__post_init__`." msgstr "" -#: library/dataclasses.rst:442 +#: library/dataclasses.rst:446 msgid "" "It is an error for ``changes`` to contain any fields that are defined as " "having ``init=False``. A :exc:`ValueError` will be raised in this case." msgstr "" -#: library/dataclasses.rst:446 +#: library/dataclasses.rst:450 msgid "" "Be forewarned about how ``init=False`` fields work during a call to :func:" "`replace`. They are not copied from the source object, but rather are " -"initialized in :ref:`__post_init__ `, if they're " -"initialized at all. It is expected that ``init=False`` fields will be " -"rarely and judiciously used. If they are used, it might be wise to have " -"alternate class constructors, or perhaps a custom ``replace()`` (or " -"similarly named) method which handles instance copying." +"initialized in :meth:`__post_init__`, if they're initialized at all. It is " +"expected that ``init=False`` fields will be rarely and judiciously used. If " +"they are used, it might be wise to have alternate class constructors, or " +"perhaps a custom ``replace()`` (or similarly named) method which handles " +"instance copying." msgstr "" -#: library/dataclasses.rst:457 +#: library/dataclasses.rst:461 msgid "" "Return ``True`` if its parameter is a dataclass or an instance of one, " "otherwise return ``False``." msgstr "" -#: library/dataclasses.rst:460 +#: library/dataclasses.rst:464 msgid "" "If you need to know if a class is an instance of a dataclass (and not a " "dataclass itself), then add a further check for ``not isinstance(obj, " "type)``::" msgstr "" -#: library/dataclasses.rst:469 +#: library/dataclasses.rst:473 msgid "A sentinel value signifying a missing default or default_factory." msgstr "" -#: library/dataclasses.rst:473 +#: library/dataclasses.rst:477 msgid "" "A sentinel value used as a type annotation. Any fields after a pseudo-field " "with the type of :const:`KW_ONLY` are marked as keyword-only fields. Note " @@ -558,55 +564,53 @@ msgid "" "the class is instantiated." msgstr "" -#: library/dataclasses.rst:482 +#: library/dataclasses.rst:486 msgid "" "In this example, the fields ``y`` and ``z`` will be marked as keyword-only " "fields::" msgstr "" -#: library/dataclasses.rst:493 +#: library/dataclasses.rst:497 msgid "" "In a single dataclass, it is an error to specify more than one field whose " "type is :const:`KW_ONLY`." msgstr "" -#: library/dataclasses.rst:500 +#: library/dataclasses.rst:504 msgid "" "Raised when an implicitly defined :meth:`~object.__setattr__` or :meth:" "`~object.__delattr__` is called on a dataclass which was defined with " "``frozen=True``. It is a subclass of :exc:`AttributeError`." msgstr "" -#: library/dataclasses.rst:507 +#: library/dataclasses.rst:511 msgid "Post-init processing" msgstr "" -#: library/dataclasses.rst:509 +#: library/dataclasses.rst:515 msgid "" -"The generated :meth:`~object.__init__` code will call a method named :meth:`!" -"__post_init__`, if :meth:`!__post_init__` is defined on the class. It will " -"normally be called as ``self.__post_init__()``. However, if any ``InitVar`` " -"fields are defined, they will also be passed to :meth:`!__post_init__` in " -"the order they were defined in the class. If no :meth:`~object.__init__` " -"method is generated, then :meth:`!__post_init__` will not automatically be " -"called." +"When defined on the class, it will be called by the generated :meth:`~object." +"__init__`, normally as ``self.__post_init__()``. However, if any ``InitVar`` " +"fields are defined, they will also be passed to :meth:`__post_init__` in the " +"order they were defined in the class. If no :meth:`~object.__init__` method " +"is generated, then :meth:`__post_init__` will not automatically be called." msgstr "" -#: library/dataclasses.rst:517 +#: library/dataclasses.rst:522 msgid "" "Among other uses, this allows for initializing field values that depend on " "one or more other fields. For example::" msgstr "" -#: library/dataclasses.rst:529 +#: library/dataclasses.rst:534 msgid "" "The :meth:`~object.__init__` method generated by :func:`dataclass` does not " "call base class :meth:`~object.__init__` methods. If the base class has an :" "meth:`~object.__init__` method that has to be called, it is common to call " -"this method in a :meth:`!__post_init__` method::" +"this method in a :meth:`__post_init__` method::" msgstr "" -#: library/dataclasses.rst:546 +#: library/dataclasses.rst:551 msgid "" "Note, however, that in general the dataclass-generated :meth:`~object." "__init__` methods don't need to be called, since the derived dataclass will " @@ -614,18 +618,18 @@ msgid "" "itself." msgstr "" -#: library/dataclasses.rst:550 +#: library/dataclasses.rst:555 msgid "" "See the section below on init-only variables for ways to pass parameters to :" -"meth:`!__post_init__`. Also see the warning about how :func:`replace` " +"meth:`__post_init__`. Also see the warning about how :func:`replace` " "handles ``init=False`` fields." msgstr "" -#: library/dataclasses.rst:555 +#: library/dataclasses.rst:560 msgid "Class variables" msgstr "" -#: library/dataclasses.rst:557 +#: library/dataclasses.rst:562 msgid "" "One of the few places where :func:`dataclass` actually inspects the type of " "a field is to determine if a field is a class variable as defined in :pep:" @@ -635,11 +639,11 @@ msgid "" "pseudo-fields are not returned by the module-level :func:`fields` function." msgstr "" -#: library/dataclasses.rst:566 +#: library/dataclasses.rst:571 msgid "Init-only variables" msgstr "" -#: library/dataclasses.rst:568 +#: library/dataclasses.rst:573 msgid "" "Another place where :func:`dataclass` inspects a type annotation is to " "determine if a field is an init-only variable. It does this by seeing if " @@ -648,27 +652,26 @@ msgid "" "it is not a true field, it is not returned by the module-level :func:" "`fields` function. Init-only fields are added as parameters to the " "generated :meth:`~object.__init__` method, and are passed to the optional :" -"ref:`__post_init__ ` method. They are not otherwise " -"used by dataclasses." +"meth:`__post_init__` method. They are not otherwise used by dataclasses." msgstr "" -#: library/dataclasses.rst:578 +#: library/dataclasses.rst:583 msgid "" "For example, suppose a field will be initialized from a database, if a value " "is not provided when creating the class::" msgstr "" -#: library/dataclasses.rst:593 +#: library/dataclasses.rst:598 msgid "" "In this case, :func:`fields` will return :class:`Field` objects for ``i`` " "and ``j``, but not for ``database``." msgstr "" -#: library/dataclasses.rst:597 +#: library/dataclasses.rst:602 msgid "Frozen instances" msgstr "" -#: library/dataclasses.rst:599 +#: library/dataclasses.rst:604 msgid "" "It is not possible to create truly immutable Python objects. However, by " "passing ``frozen=True`` to the :meth:`dataclass` decorator you can emulate " @@ -677,18 +680,18 @@ msgid "" "methods will raise a :exc:`FrozenInstanceError` when invoked." msgstr "" -#: library/dataclasses.rst:605 +#: library/dataclasses.rst:610 msgid "" "There is a tiny performance penalty when using ``frozen=True``: :meth:" "`~object.__init__` cannot use simple assignment to initialize fields, and " "must use :meth:`!object.__setattr__`." msgstr "" -#: library/dataclasses.rst:610 +#: library/dataclasses.rst:615 msgid "Inheritance" msgstr "" -#: library/dataclasses.rst:612 +#: library/dataclasses.rst:617 msgid "" "When the dataclass is being created by the :meth:`dataclass` decorator, it " "looks through all of the class's base classes in reverse MRO (that is, " @@ -700,22 +703,22 @@ msgid "" "derived classes override base classes. An example::" msgstr "" -#: library/dataclasses.rst:632 +#: library/dataclasses.rst:637 msgid "" "The final list of fields is, in order, ``x``, ``y``, ``z``. The final type " "of ``x`` is ``int``, as specified in class ``C``." msgstr "" -#: library/dataclasses.rst:635 +#: library/dataclasses.rst:640 msgid "" "The generated :meth:`~object.__init__` method for ``C`` will look like::" msgstr "" -#: library/dataclasses.rst:640 +#: library/dataclasses.rst:645 msgid "Re-ordering of keyword-only parameters in :meth:`~object.__init__`" msgstr "" -#: library/dataclasses.rst:642 +#: library/dataclasses.rst:647 msgid "" "After the parameters needed for :meth:`~object.__init__` are computed, any " "keyword-only parameters are moved to come after all regular (non-keyword-" @@ -723,42 +726,42 @@ msgid "" "implemented in Python: they must come after non-keyword-only parameters." msgstr "" -#: library/dataclasses.rst:648 +#: library/dataclasses.rst:653 msgid "" "In this example, ``Base.y``, ``Base.w``, and ``D.t`` are keyword-only " "fields, and ``Base.x`` and ``D.z`` are regular fields::" msgstr "" -#: library/dataclasses.rst:663 +#: library/dataclasses.rst:668 msgid "" "The generated :meth:`~object.__init__` method for ``D`` will look like::" msgstr "" -#: library/dataclasses.rst:667 +#: library/dataclasses.rst:672 msgid "" "Note that the parameters have been re-ordered from how they appear in the " "list of fields: parameters derived from regular fields are followed by " "parameters derived from keyword-only fields." msgstr "" -#: library/dataclasses.rst:671 +#: library/dataclasses.rst:676 msgid "" "The relative ordering of keyword-only parameters is maintained in the re-" "ordered :meth:`~object.__init__` parameter list." msgstr "" -#: library/dataclasses.rst:676 +#: library/dataclasses.rst:681 msgid "Default factory functions" msgstr "" -#: library/dataclasses.rst:678 +#: library/dataclasses.rst:683 msgid "" "If a :func:`field` specifies a ``default_factory``, it is called with zero " "arguments when a default value for the field is needed. For example, to " "create a new instance of a list, use::" msgstr "" -#: library/dataclasses.rst:684 +#: library/dataclasses.rst:689 msgid "" "If a field is excluded from :meth:`~object.__init__` (using ``init=False``) " "and the field also specifies ``default_factory``, then the default factory " @@ -767,31 +770,31 @@ msgid "" "initial value." msgstr "" -#: library/dataclasses.rst:691 +#: library/dataclasses.rst:696 msgid "Mutable default values" msgstr "" -#: library/dataclasses.rst:693 +#: library/dataclasses.rst:698 msgid "" "Python stores default member variable values in class attributes. Consider " "this example, not using dataclasses::" msgstr "" -#: library/dataclasses.rst:708 +#: library/dataclasses.rst:713 msgid "" "Note that the two instances of class ``C`` share the same class variable " "``x``, as expected." msgstr "" -#: library/dataclasses.rst:711 +#: library/dataclasses.rst:716 msgid "Using dataclasses, *if* this code was valid::" msgstr "" -#: library/dataclasses.rst:719 +#: library/dataclasses.rst:724 msgid "it would generate code similar to::" msgstr "" -#: library/dataclasses.rst:730 +#: library/dataclasses.rst:735 msgid "" "This has the same issue as the original example using class ``C``. That is, " "two instances of class ``D`` that do not specify a value for ``x`` when " @@ -804,44 +807,44 @@ msgid "" "solution, but it does protect against many common errors." msgstr "" -#: library/dataclasses.rst:741 +#: library/dataclasses.rst:746 msgid "" "Using default factory functions is a way to create new instances of mutable " "types as default values for fields::" msgstr "" -#: library/dataclasses.rst:750 +#: library/dataclasses.rst:755 msgid "" "Instead of looking for and disallowing objects of type ``list``, ``dict``, " "or ``set``, unhashable objects are now not allowed as default values. " "Unhashability is used to approximate mutability." msgstr "" -#: library/dataclasses.rst:757 +#: library/dataclasses.rst:762 msgid "Descriptor-typed fields" msgstr "" -#: library/dataclasses.rst:759 +#: library/dataclasses.rst:764 msgid "" "Fields that are assigned :ref:`descriptor objects ` as their " "default value have the following special behaviors:" msgstr "" -#: library/dataclasses.rst:762 +#: library/dataclasses.rst:767 msgid "" "The value for the field passed to the dataclass's ``__init__`` method is " "passed to the descriptor's ``__set__`` method rather than overwriting the " "descriptor object." msgstr "" -#: library/dataclasses.rst:765 +#: library/dataclasses.rst:770 msgid "" "Similarly, when getting or setting the field, the descriptor's ``__get__`` " "or ``__set__`` method is called rather than returning or overwriting the " "descriptor object." msgstr "" -#: library/dataclasses.rst:768 +#: library/dataclasses.rst:773 msgid "" "To determine whether a field contains a default value, ``dataclasses`` will " "call the descriptor's ``__get__`` method using its class access form (i.e. " @@ -851,7 +854,7 @@ msgid "" "default value will be provided for the field." msgstr "" -#: library/dataclasses.rst:803 +#: library/dataclasses.rst:808 msgid "" "Note that if a field is annotated with a descriptor type, but is not " "assigned a descriptor object as its default value, the field will act like a " diff --git a/library/datetime.po b/library/datetime.po index a8ae413c8..c683f156d 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -367,7 +367,7 @@ msgid "" "example::" msgstr "" -#: library/datetime.rst:560 library/datetime.rst:1684 library/datetime.rst:2286 +#: library/datetime.rst:560 library/datetime.rst:1692 library/datetime.rst:2294 msgid "Class attributes:" msgstr "" @@ -393,7 +393,7 @@ msgid "" "``-timedelta.max`` is not representable as a :class:`timedelta` object." msgstr "" -#: library/datetime.rst:578 library/datetime.rst:1704 +#: library/datetime.rst:578 library/datetime.rst:1712 msgid "Instance attributes (read-only):" msgstr "" @@ -429,15 +429,15 @@ msgstr "" msgid "Between 0 and 999999 inclusive" msgstr "" -#: library/datetime.rst:595 library/datetime.rst:1138 +#: library/datetime.rst:595 library/datetime.rst:1146 msgid "Supported operations:" msgstr "" -#: library/datetime.rst:598 library/datetime.rst:1141 +#: library/datetime.rst:598 library/datetime.rst:1149 msgid "Operation" msgstr "" -#: library/datetime.rst:598 library/datetime.rst:1141 +#: library/datetime.rst:598 library/datetime.rst:1149 msgid "Result" msgstr "" @@ -581,7 +581,7 @@ msgid "" "constructor call with canonical attribute values." msgstr "" -#: library/datetime.rst:612 library/datetime.rst:2509 +#: library/datetime.rst:612 library/datetime.rst:2525 msgid "Notes:" msgstr "" @@ -654,7 +654,7 @@ msgid "" "and only if it isn't equal to ``timedelta(0)``." msgstr "" -#: library/datetime.rst:641 library/datetime.rst:1812 +#: library/datetime.rst:641 library/datetime.rst:1820 msgid "Instance methods:" msgstr "" @@ -718,12 +718,12 @@ msgstr "" msgid "``1 <= day <= number of days in the given month and year``" msgstr "" -#: library/datetime.rst:855 +#: library/datetime.rst:856 msgid "" "If an argument outside those ranges is given, :exc:`ValueError` is raised." msgstr "" -#: library/datetime.rst:860 +#: library/datetime.rst:861 msgid "Other constructors, all class methods:" msgstr "" @@ -802,15 +802,15 @@ msgid "" "``timedelta(days=1)``." msgstr "" -#: library/datetime.rst:1089 +#: library/datetime.rst:1097 msgid "Between :const:`MINYEAR` and :const:`MAXYEAR` inclusive." msgstr "" -#: library/datetime.rst:1094 +#: library/datetime.rst:1102 msgid "Between 1 and 12 inclusive." msgstr "" -#: library/datetime.rst:1099 +#: library/datetime.rst:1107 msgid "Between 1 and the number of days in the given month of the given year." msgstr "" @@ -834,7 +834,7 @@ msgstr "" msgid "``timedelta = date1 - date2``" msgstr "" -#: library/datetime.rst:1147 +#: library/datetime.rst:1155 msgid "\\(3)" msgstr "" @@ -891,11 +891,11 @@ msgid "" "values by whichever keyword arguments are specified." msgstr "" -#: library/datetime.rst:1855 +#: library/datetime.rst:1863 msgid "Example::" msgstr "" -#: library/datetime.rst:1325 +#: library/datetime.rst:1333 msgid "" "Return a :class:`time.struct_time` such as returned by :func:`time." "localtime`." @@ -905,7 +905,7 @@ msgstr "" msgid "The hours, minutes and seconds are 0, and the DST flag is -1." msgstr "" -#: library/datetime.rst:1327 +#: library/datetime.rst:1335 msgid "``d.timetuple()`` is equivalent to::" msgstr "" @@ -979,7 +979,7 @@ msgstr "" msgid "Return a string representing the date::" msgstr "" -#: library/datetime.rst:1511 +#: library/datetime.rst:1519 msgid "``d.ctime()`` is equivalent to::" msgstr "" @@ -1014,21 +1014,21 @@ msgstr "" msgid "Example of counting days to an event::" msgstr "" -#: library/datetime.rst:780 +#: library/datetime.rst:781 msgid "More examples of working with :class:`date`:" msgstr "" -#: library/datetime.rst:829 +#: library/datetime.rst:830 msgid ":class:`.datetime` Objects" msgstr "" -#: library/datetime.rst:831 +#: library/datetime.rst:832 msgid "" "A :class:`.datetime` object is a single object containing all the " "information from a :class:`date` object and a :class:`.time` object." msgstr "" -#: library/datetime.rst:834 +#: library/datetime.rst:835 msgid "" "Like a :class:`date` object, :class:`.datetime` assumes the current " "Gregorian calendar extended in both directions; like a :class:`.time` " @@ -1036,76 +1036,76 @@ msgid "" "every day." msgstr "" -#: library/datetime.rst:838 +#: library/datetime.rst:839 msgid "Constructor:" msgstr "" -#: library/datetime.rst:842 +#: library/datetime.rst:843 msgid "" "The *year*, *month* and *day* arguments are required. *tzinfo* may be " "``None``, or an instance of a :class:`tzinfo` subclass. The remaining " "arguments must be integers in the following ranges:" msgstr "" -#: library/datetime.rst:846 +#: library/datetime.rst:847 msgid "``MINYEAR <= year <= MAXYEAR``," msgstr "" -#: library/datetime.rst:847 +#: library/datetime.rst:848 msgid "``1 <= month <= 12``," msgstr "" -#: library/datetime.rst:848 +#: library/datetime.rst:849 msgid "``1 <= day <= number of days in the given month and year``," msgstr "" -#: library/datetime.rst:1675 +#: library/datetime.rst:1683 msgid "``0 <= hour < 24``," msgstr "" -#: library/datetime.rst:1676 +#: library/datetime.rst:1684 msgid "``0 <= minute < 60``," msgstr "" -#: library/datetime.rst:1677 +#: library/datetime.rst:1685 msgid "``0 <= second < 60``," msgstr "" -#: library/datetime.rst:1678 +#: library/datetime.rst:1686 msgid "``0 <= microsecond < 1000000``," msgstr "" -#: library/datetime.rst:1679 +#: library/datetime.rst:1687 msgid "``fold in [0, 1]``." msgstr "" -#: library/datetime.rst:1246 library/datetime.rst:1822 +#: library/datetime.rst:1254 library/datetime.rst:1830 msgid "Added the ``fold`` argument." msgstr "" -#: library/datetime.rst:864 +#: library/datetime.rst:865 msgid "Return the current local datetime, with :attr:`.tzinfo` ``None``." msgstr "" -#: library/datetime.rst:866 +#: library/datetime.rst:867 msgid "Equivalent to::" msgstr "" -#: library/datetime.rst:870 +#: library/datetime.rst:871 msgid "See also :meth:`now`, :meth:`fromtimestamp`." msgstr "" -#: library/datetime.rst:872 +#: library/datetime.rst:873 msgid "" "This method is functionally equivalent to :meth:`now`, but without a ``tz`` " "parameter." msgstr "" -#: library/datetime.rst:877 +#: library/datetime.rst:878 msgid "Return the current local date and time." msgstr "" -#: library/datetime.rst:879 +#: library/datetime.rst:880 msgid "" "If optional argument *tz* is ``None`` or not specified, this is like :meth:" "`today`, but, if possible, supplies more precision than can be gotten from " @@ -1113,28 +1113,28 @@ msgid "" "possible on platforms supplying the C :c:func:`gettimeofday` function)." msgstr "" -#: library/datetime.rst:885 +#: library/datetime.rst:886 msgid "" "If *tz* is not ``None``, it must be an instance of a :class:`tzinfo` " "subclass, and the current date and time are converted to *tz*’s time zone." msgstr "" -#: library/datetime.rst:888 +#: library/datetime.rst:889 msgid "This function is preferred over :meth:`today` and :meth:`utcnow`." msgstr "" -#: library/datetime.rst:893 +#: library/datetime.rst:894 msgid "Return the current UTC date and time, with :attr:`.tzinfo` ``None``." msgstr "" -#: library/datetime.rst:895 +#: library/datetime.rst:896 msgid "" "This is like :meth:`now`, but returns the current UTC date and time, as a " "naive :class:`.datetime` object. An aware current UTC datetime can be " "obtained by calling ``datetime.now(timezone.utc)``. See also :meth:`now`." msgstr "" -#: library/datetime.rst:901 +#: library/datetime.rst:902 msgid "" "Because naive ``datetime`` objects are treated by many ``datetime`` methods " "as local times, it is preferred to use aware datetimes to represent times in " @@ -1143,6 +1143,10 @@ msgid "" msgstr "" #: library/datetime.rst:909 +msgid "Use :meth:`datetime.now` with :attr:`UTC` instead." +msgstr "" + +#: library/datetime.rst:914 msgid "" "Return the local date and time corresponding to the POSIX timestamp, such as " "is returned by :func:`time.time`. If optional argument *tz* is ``None`` or " @@ -1150,13 +1154,13 @@ msgid "" "time, and the returned :class:`.datetime` object is naive." msgstr "" -#: library/datetime.rst:914 +#: library/datetime.rst:919 msgid "" "If *tz* is not ``None``, it must be an instance of a :class:`tzinfo` " "subclass, and the timestamp is converted to *tz*’s time zone." msgstr "" -#: library/datetime.rst:917 +#: library/datetime.rst:922 msgid "" ":meth:`fromtimestamp` may raise :exc:`OverflowError`, if the timestamp is " "out of the range of values supported by the platform C :c:func:`localtime` " @@ -1169,7 +1173,7 @@ msgid "" "preferred over :meth:`utcfromtimestamp`." msgstr "" -#: library/datetime.rst:928 +#: library/datetime.rst:933 msgid "" "Raise :exc:`OverflowError` instead of :exc:`ValueError` if the timestamp is " "out of the range of values supported by the platform C :c:func:`localtime` " @@ -1177,17 +1181,17 @@ msgid "" "`ValueError` on :c:func:`localtime` or :c:func:`gmtime` failure." msgstr "" -#: library/datetime.rst:935 +#: library/datetime.rst:940 msgid ":meth:`fromtimestamp` may return instances with :attr:`.fold` set to 1." msgstr "" -#: library/datetime.rst:940 +#: library/datetime.rst:945 msgid "" "Return the UTC :class:`.datetime` corresponding to the POSIX timestamp, " "with :attr:`.tzinfo` ``None``. (The resulting object is naive.)" msgstr "" -#: library/datetime.rst:943 +#: library/datetime.rst:948 msgid "" "This may raise :exc:`OverflowError`, if the timestamp is out of the range of " "values supported by the platform C :c:func:`gmtime` function, and :exc:" @@ -1195,23 +1199,23 @@ msgid "" "to years in 1970 through 2038." msgstr "" -#: library/datetime.rst:948 +#: library/datetime.rst:953 msgid "To get an aware :class:`.datetime` object, call :meth:`fromtimestamp`::" msgstr "" -#: library/datetime.rst:952 +#: library/datetime.rst:957 msgid "" "On the POSIX compliant platforms, it is equivalent to the following " "expression::" msgstr "" -#: library/datetime.rst:957 +#: library/datetime.rst:962 msgid "" "except the latter formula always supports the full years range: between :" "const:`MINYEAR` and :const:`MAXYEAR` inclusive." msgstr "" -#: library/datetime.rst:962 +#: library/datetime.rst:967 msgid "" "Because naive ``datetime`` objects are treated by many ``datetime`` methods " "as local times, it is preferred to use aware datetimes to represent times in " @@ -1220,7 +1224,7 @@ msgid "" "tz=timezone.utc)``." msgstr "" -#: library/datetime.rst:968 +#: library/datetime.rst:973 msgid "" "Raise :exc:`OverflowError` instead of :exc:`ValueError` if the timestamp is " "out of the range of values supported by the platform C :c:func:`gmtime` " @@ -1228,7 +1232,11 @@ msgid "" "`gmtime` failure." msgstr "" -#: library/datetime.rst:977 +#: library/datetime.rst:981 +msgid "Use :meth:`datetime.fromtimestamp` with :attr:`UTC` instead." +msgstr "" + +#: library/datetime.rst:986 msgid "" "Return the :class:`.datetime` corresponding to the proleptic Gregorian " "ordinal, where January 1 of year 1 has ordinal 1. :exc:`ValueError` is " @@ -1237,59 +1245,60 @@ msgid "" "is ``None``." msgstr "" -#: library/datetime.rst:985 +#: library/datetime.rst:994 msgid "" "Return a new :class:`.datetime` object whose date components are equal to " "the given :class:`date` object's, and whose time components are equal to the " "given :class:`.time` object's. If the *tzinfo* argument is provided, its " "value is used to set the :attr:`.tzinfo` attribute of the result, otherwise " -"the :attr:`~.time.tzinfo` attribute of the *time* argument is used." +"the :attr:`~.time.tzinfo` attribute of the *time* argument is used. If the " +"*date* argument is a :class:`.datetime` object, its time components and :" +"attr:`.tzinfo` attributes are ignored." msgstr "" -#: library/datetime.rst:992 +#: library/datetime.rst:1002 msgid "" "For any :class:`.datetime` object *d*, ``d == datetime.combine(d.date(), d." -"time(), d.tzinfo)``. If date is a :class:`.datetime` object, its time " -"components and :attr:`.tzinfo` attributes are ignored." +"time(), d.tzinfo)``." msgstr "" -#: library/datetime.rst:997 +#: library/datetime.rst:1005 msgid "Added the *tzinfo* argument." msgstr "" -#: library/datetime.rst:1003 +#: library/datetime.rst:1011 msgid "" "Return a :class:`.datetime` corresponding to a *date_string* in any valid " "ISO 8601 format, with the following exceptions:" msgstr "" -#: library/datetime.rst:1778 +#: library/datetime.rst:1786 msgid "Time zone offsets may have fractional seconds." msgstr "" -#: library/datetime.rst:1007 +#: library/datetime.rst:1015 msgid "The ``T`` separator may be replaced by any single unicode character." msgstr "" -#: library/datetime.rst:1008 +#: library/datetime.rst:1016 msgid "Ordinal dates are not currently supported." msgstr "" -#: library/datetime.rst:1783 +#: library/datetime.rst:1791 msgid "Fractional hours and minutes are not supported." msgstr "" -#: library/datetime.rst:1440 library/datetime.rst:1785 +#: library/datetime.rst:1448 library/datetime.rst:1793 msgid "Examples::" msgstr "" -#: library/datetime.rst:1035 +#: library/datetime.rst:1043 msgid "" "Previously, this method only supported formats that could be emitted by :" "meth:`date.isoformat()` or :meth:`datetime.isoformat()`." msgstr "" -#: library/datetime.rst:1042 +#: library/datetime.rst:1050 msgid "" "Return a :class:`.datetime` corresponding to the ISO calendar date specified " "by year, week and day. The non-date components of the datetime are populated " @@ -1297,19 +1306,19 @@ msgid "" "`datetime.isocalendar`." msgstr "" -#: library/datetime.rst:1051 +#: library/datetime.rst:1059 msgid "" "Return a :class:`.datetime` corresponding to *date_string*, parsed according " "to *format*." msgstr "" -#: library/datetime.rst:1054 +#: library/datetime.rst:1062 msgid "" "If *format* does not contain microseconds or timezone information, this is " "equivalent to::" msgstr "" -#: library/datetime.rst:1058 +#: library/datetime.rst:1066 msgid "" ":exc:`ValueError` is raised if the date_string and format can't be parsed " "by :func:`time.strptime` or if it returns a value which isn't a time tuple. " @@ -1317,43 +1326,43 @@ msgid "" "fromisoformat`." msgstr "" -#: library/datetime.rst:1069 +#: library/datetime.rst:1077 msgid "" "The earliest representable :class:`.datetime`, ``datetime(MINYEAR, 1, 1, " "tzinfo=None)``." msgstr "" -#: library/datetime.rst:1075 +#: library/datetime.rst:1083 msgid "" "The latest representable :class:`.datetime`, ``datetime(MAXYEAR, 12, 31, 23, " "59, 59, 999999, tzinfo=None)``." msgstr "" -#: library/datetime.rst:1081 +#: library/datetime.rst:1089 msgid "" "The smallest possible difference between non-equal :class:`.datetime` " "objects, ``timedelta(microseconds=1)``." msgstr "" -#: library/datetime.rst:1708 +#: library/datetime.rst:1716 msgid "In ``range(24)``." msgstr "" -#: library/datetime.rst:1114 library/datetime.rst:1718 +#: library/datetime.rst:1122 library/datetime.rst:1726 msgid "In ``range(60)``." msgstr "" -#: library/datetime.rst:1723 +#: library/datetime.rst:1731 msgid "In ``range(1000000)``." msgstr "" -#: library/datetime.rst:1124 +#: library/datetime.rst:1132 msgid "" "The object passed as the *tzinfo* argument to the :class:`.datetime` " "constructor, or ``None`` if none was passed." msgstr "" -#: library/datetime.rst:1734 +#: library/datetime.rst:1742 msgid "" "In ``[0, 1]``. Used to disambiguate wall times during a repeated interval. " "(A repeated interval occurs when clocks are rolled back at the end of " @@ -1362,36 +1371,36 @@ msgid "" "(later) of the two moments with the same wall time representation." msgstr "" -#: library/datetime.rst:1143 +#: library/datetime.rst:1151 msgid "``datetime2 = datetime1 + timedelta``" msgstr "" -#: library/datetime.rst:2344 library/datetime.rst:2361 -#: library/datetime.rst:2426 library/datetime.rst:2435 +#: library/datetime.rst:2352 library/datetime.rst:2369 +#: library/datetime.rst:2434 library/datetime.rst:2443 msgid "\\(1)" msgstr "" -#: library/datetime.rst:1145 +#: library/datetime.rst:1153 msgid "``datetime2 = datetime1 - timedelta``" msgstr "" -#: library/datetime.rst:2377 +#: library/datetime.rst:2385 msgid "\\(2)" msgstr "" -#: library/datetime.rst:1147 +#: library/datetime.rst:1155 msgid "``timedelta = datetime1 - datetime2``" msgstr "" -#: library/datetime.rst:1149 +#: library/datetime.rst:1157 msgid "``datetime1 < datetime2``" msgstr "" -#: library/datetime.rst:1149 +#: library/datetime.rst:1157 msgid "Compares :class:`.datetime` to :class:`.datetime`. (4)" msgstr "" -#: library/datetime.rst:1154 +#: library/datetime.rst:1162 msgid "" "datetime2 is a duration of timedelta removed from datetime1, moving forward " "in time if ``timedelta.days`` > 0, or backward if ``timedelta.days`` < 0. " @@ -1402,7 +1411,7 @@ msgid "" "the input is an aware object." msgstr "" -#: library/datetime.rst:1163 +#: library/datetime.rst:1171 msgid "" "Computes the datetime2 such that datetime2 + timedelta == datetime1. As for " "addition, the result has the same :attr:`~.datetime.tzinfo` attribute as the " @@ -1410,14 +1419,14 @@ msgid "" "aware." msgstr "" -#: library/datetime.rst:1168 +#: library/datetime.rst:1176 msgid "" "Subtraction of a :class:`.datetime` from a :class:`.datetime` is defined " "only if both operands are naive, or if both are aware. If one is aware and " "the other is naive, :exc:`TypeError` is raised." msgstr "" -#: library/datetime.rst:1172 +#: library/datetime.rst:1180 msgid "" "If both are naive, or both are aware and have the same :attr:`~.datetime." "tzinfo` attribute, the :attr:`~.datetime.tzinfo` attributes are ignored, and " @@ -1425,7 +1434,7 @@ msgid "" "datetime1``. No time zone adjustments are done in this case." msgstr "" -#: library/datetime.rst:1177 +#: library/datetime.rst:1185 msgid "" "If both are aware and have different :attr:`~.datetime.tzinfo` attributes, " "``a-b`` acts as if *a* and *b* were first converted to naive UTC datetimes " @@ -1434,20 +1443,20 @@ msgid "" "overflows." msgstr "" -#: library/datetime.rst:1183 +#: library/datetime.rst:1191 msgid "" "*datetime1* is considered less than *datetime2* when *datetime1* precedes " "*datetime2* in time." msgstr "" -#: library/datetime.rst:1186 +#: library/datetime.rst:1194 msgid "" "If one comparand is naive and the other is aware, :exc:`TypeError` is raised " "if an order comparison is attempted. For equality comparisons, naive " "instances are never equal to aware instances." msgstr "" -#: library/datetime.rst:1190 +#: library/datetime.rst:1198 msgid "" "If both comparands are aware, and have the same :attr:`~.datetime.tzinfo` " "attribute, the common :attr:`~.datetime.tzinfo` attribute is ignored and the " @@ -1457,13 +1466,13 @@ msgid "" "utcoffset()``)." msgstr "" -#: library/datetime.rst:1196 +#: library/datetime.rst:1204 msgid "" "Equality comparisons between aware and naive :class:`.datetime` instances " "don't raise :exc:`TypeError`." msgstr "" -#: library/datetime.rst:1202 +#: library/datetime.rst:1210 msgid "" "In order to stop comparison from falling back to the default scheme of " "comparing object addresses, datetime comparison normally raises :exc:" @@ -1476,27 +1485,27 @@ msgid "" "cases return :const:`False` or :const:`True`, respectively." msgstr "" -#: library/datetime.rst:1216 +#: library/datetime.rst:1224 msgid "Return :class:`date` object with same year, month and day." msgstr "" -#: library/datetime.rst:1221 +#: library/datetime.rst:1229 msgid "" "Return :class:`.time` object with same hour, minute, second, microsecond and " "fold. :attr:`.tzinfo` is ``None``. See also method :meth:`timetz`." msgstr "" -#: library/datetime.rst:1233 +#: library/datetime.rst:1241 msgid "The fold value is copied to the returned :class:`.time` object." msgstr "" -#: library/datetime.rst:1230 +#: library/datetime.rst:1238 msgid "" "Return :class:`.time` object with same hour, minute, second, microsecond, " "fold, and tzinfo attributes. See also method :meth:`time`." msgstr "" -#: library/datetime.rst:1241 +#: library/datetime.rst:1249 msgid "" "Return a datetime with the same attributes, except for those attributes " "given new values by whichever keyword arguments are specified. Note that " @@ -1504,21 +1513,21 @@ msgid "" "datetime with no conversion of date and time data." msgstr "" -#: library/datetime.rst:1252 +#: library/datetime.rst:1260 msgid "" "Return a :class:`.datetime` object with new :attr:`.tzinfo` attribute *tz*, " "adjusting the date and time data so the result is the same UTC time as " "*self*, but in *tz*'s local time." msgstr "" -#: library/datetime.rst:1256 +#: library/datetime.rst:1264 msgid "" "If provided, *tz* must be an instance of a :class:`tzinfo` subclass, and " "its :meth:`utcoffset` and :meth:`dst` methods must not return ``None``. If " "*self* is naive, it is presumed to represent time in the system timezone." msgstr "" -#: library/datetime.rst:1260 +#: library/datetime.rst:1268 msgid "" "If called without arguments (or with ``tz=None``) the system local timezone " "is assumed for the target timezone. The ``.tzinfo`` attribute of the " @@ -1526,7 +1535,7 @@ msgid "" "with the zone name and offset obtained from the OS." msgstr "" -#: library/datetime.rst:1265 +#: library/datetime.rst:1273 msgid "" "If ``self.tzinfo`` is *tz*, ``self.astimezone(tz)`` is equal to *self*: no " "adjustment of date or time data is performed. Else the result is local time " @@ -1535,7 +1544,7 @@ msgid "" "date and time data as ``dt - dt.utcoffset()``." msgstr "" -#: library/datetime.rst:1271 +#: library/datetime.rst:1279 msgid "" "If you merely want to attach a time zone object *tz* to a datetime *dt* " "without adjustment of date and time data, use ``dt.replace(tzinfo=tz)``. If " @@ -1543,54 +1552,54 @@ msgid "" "without conversion of date and time data, use ``dt.replace(tzinfo=None)``." msgstr "" -#: library/datetime.rst:1276 +#: library/datetime.rst:1284 msgid "" "Note that the default :meth:`tzinfo.fromutc` method can be overridden in a :" "class:`tzinfo` subclass to affect the result returned by :meth:`astimezone`. " "Ignoring error cases, :meth:`astimezone` acts like::" msgstr "" -#: library/datetime.rst:1288 +#: library/datetime.rst:1296 msgid "*tz* now can be omitted." msgstr "" -#: library/datetime.rst:1291 +#: library/datetime.rst:1299 msgid "" "The :meth:`astimezone` method can now be called on naive instances that are " "presumed to represent system local time." msgstr "" -#: library/datetime.rst:1298 +#: library/datetime.rst:1306 msgid "" "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo." "utcoffset(self)``, and raises an exception if the latter doesn't return " "``None`` or a :class:`timedelta` object with magnitude less than one day." msgstr "" -#: library/datetime.rst:1895 library/datetime.rst:2246 -#: library/datetime.rst:2562 +#: library/datetime.rst:1903 library/datetime.rst:2254 +#: library/datetime.rst:2578 msgid "The UTC offset is not restricted to a whole number of minutes." msgstr "" -#: library/datetime.rst:1308 +#: library/datetime.rst:1316 msgid "" "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo." "dst(self)``, and raises an exception if the latter doesn't return ``None`` " "or a :class:`timedelta` object with magnitude less than one day." msgstr "" -#: library/datetime.rst:1905 library/datetime.rst:2055 +#: library/datetime.rst:1913 library/datetime.rst:2063 msgid "The DST offset is not restricted to a whole number of minutes." msgstr "" -#: library/datetime.rst:1318 +#: library/datetime.rst:1326 msgid "" "If :attr:`.tzinfo` is ``None``, returns ``None``, else returns ``self.tzinfo." "tzname(self)``, raises an exception if the latter doesn't return ``None`` or " "a string object," msgstr "" -#: library/datetime.rst:1333 +#: library/datetime.rst:1341 msgid "" "where ``yday = d.toordinal() - date(d.year, 1, 1).toordinal() + 1`` is the " "day number within the current year starting with ``1`` for January 1st. The :" @@ -1600,14 +1609,14 @@ msgid "" "attr:`tm_isdst` is set to ``1``; else :attr:`tm_isdst` is set to ``0``." msgstr "" -#: library/datetime.rst:1344 +#: library/datetime.rst:1352 msgid "" "If :class:`.datetime` instance *d* is naive, this is the same as ``d." "timetuple()`` except that :attr:`tm_isdst` is forced to 0 regardless of what " "``d.dst()`` returns. DST is never in effect for a UTC time." msgstr "" -#: library/datetime.rst:1348 +#: library/datetime.rst:1356 msgid "" "If *d* is aware, *d* is normalized to UTC time, by subtracting ``d." "utcoffset()``, and a :class:`time.struct_time` for the normalized time is " @@ -1616,7 +1625,7 @@ msgid "" "spills over a year boundary." msgstr "" -#: library/datetime.rst:1357 +#: library/datetime.rst:1365 msgid "" "Because naive ``datetime`` objects are treated by many ``datetime`` methods " "as local times, it is preferred to use aware datetimes to represent times in " @@ -1626,40 +1635,41 @@ msgid "" "meth:`.datetime.timetuple`." msgstr "" -#: library/datetime.rst:1366 +#: library/datetime.rst:1374 msgid "" "Return the proleptic Gregorian ordinal of the date. The same as ``self." "date().toordinal()``." msgstr "" -#: library/datetime.rst:1371 +#: library/datetime.rst:1379 msgid "" "Return POSIX timestamp corresponding to the :class:`.datetime` instance. The " "return value is a :class:`float` similar to that returned by :func:`time." "time`." msgstr "" -#: library/datetime.rst:1375 +#: library/datetime.rst:1383 msgid "" "Naive :class:`.datetime` instances are assumed to represent local time and " "this method relies on the platform C :c:func:`mktime` function to perform " "the conversion. Since :class:`.datetime` supports wider range of values " "than :c:func:`mktime` on many platforms, this method may raise :exc:" -"`OverflowError` for times far in the past or far in the future." +"`OverflowError` or :exc:`OSError` for times far in the past or far in the " +"future." msgstr "" -#: library/datetime.rst:1382 +#: library/datetime.rst:1390 msgid "" "For aware :class:`.datetime` instances, the return value is computed as::" msgstr "" -#: library/datetime.rst:1389 +#: library/datetime.rst:1397 msgid "" "The :meth:`timestamp` method uses the :attr:`.fold` attribute to " "disambiguate the times during a repeated interval." msgstr "" -#: library/datetime.rst:1395 +#: library/datetime.rst:1403 msgid "" "There is no method to obtain the POSIX timestamp directly from a naive :" "class:`.datetime` instance representing UTC time. If your application uses " @@ -1667,145 +1677,145 @@ msgid "" "the POSIX timestamp by supplying ``tzinfo=timezone.utc``::" msgstr "" -#: library/datetime.rst:1403 +#: library/datetime.rst:1411 msgid "or by calculating the timestamp directly::" msgstr "" -#: library/datetime.rst:1409 +#: library/datetime.rst:1417 msgid "" "Return the day of the week as an integer, where Monday is 0 and Sunday is 6. " "The same as ``self.date().weekday()``. See also :meth:`isoweekday`." msgstr "" -#: library/datetime.rst:1415 +#: library/datetime.rst:1423 msgid "" "Return the day of the week as an integer, where Monday is 1 and Sunday is 7. " "The same as ``self.date().isoweekday()``. See also :meth:`weekday`, :meth:" "`isocalendar`." msgstr "" -#: library/datetime.rst:1422 +#: library/datetime.rst:1430 msgid "" "Return a :term:`named tuple` with three components: ``year``, ``week`` and " "``weekday``. The same as ``self.date().isocalendar()``." msgstr "" -#: library/datetime.rst:1428 +#: library/datetime.rst:1436 msgid "Return a string representing the date and time in ISO 8601 format:" msgstr "" -#: library/datetime.rst:1430 +#: library/datetime.rst:1438 msgid "``YYYY-MM-DDTHH:MM:SS.ffffff``, if :attr:`microsecond` is not 0" msgstr "" -#: library/datetime.rst:1431 +#: library/datetime.rst:1439 msgid "``YYYY-MM-DDTHH:MM:SS``, if :attr:`microsecond` is 0" msgstr "" -#: library/datetime.rst:1433 +#: library/datetime.rst:1441 msgid "" "If :meth:`utcoffset` does not return ``None``, a string is appended, giving " "the UTC offset:" msgstr "" -#: library/datetime.rst:1436 +#: library/datetime.rst:1444 msgid "" "``YYYY-MM-DDTHH:MM:SS.ffffff+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` " "is not 0" msgstr "" -#: library/datetime.rst:1438 +#: library/datetime.rst:1446 msgid "" "``YYYY-MM-DDTHH:MM:SS+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` is 0" msgstr "" -#: library/datetime.rst:1448 +#: library/datetime.rst:1456 msgid "" "The optional argument *sep* (default ``'T'``) is a one-character separator, " "placed between the date and time portions of the result. For example::" msgstr "" -#: library/datetime.rst:1835 +#: library/datetime.rst:1843 msgid "" "The optional argument *timespec* specifies the number of additional " "components of the time to include (the default is ``'auto'``). It can be one " "of the following:" msgstr "" -#: library/datetime.rst:1839 +#: library/datetime.rst:1847 msgid "" "``'auto'``: Same as ``'seconds'`` if :attr:`microsecond` is 0, same as " "``'microseconds'`` otherwise." msgstr "" -#: library/datetime.rst:1841 +#: library/datetime.rst:1849 msgid "``'hours'``: Include the :attr:`hour` in the two-digit ``HH`` format." msgstr "" -#: library/datetime.rst:1842 +#: library/datetime.rst:1850 msgid "" "``'minutes'``: Include :attr:`hour` and :attr:`minute` in ``HH:MM`` format." msgstr "" -#: library/datetime.rst:1843 +#: library/datetime.rst:1851 msgid "" "``'seconds'``: Include :attr:`hour`, :attr:`minute`, and :attr:`second` in " "``HH:MM:SS`` format." msgstr "" -#: library/datetime.rst:1845 +#: library/datetime.rst:1853 msgid "" "``'milliseconds'``: Include full time, but truncate fractional second part " "to milliseconds. ``HH:MM:SS.sss`` format." msgstr "" -#: library/datetime.rst:1847 +#: library/datetime.rst:1855 msgid "``'microseconds'``: Include full time in ``HH:MM:SS.ffffff`` format." msgstr "" -#: library/datetime.rst:1851 +#: library/datetime.rst:1859 msgid "Excluded time components are truncated, not rounded." msgstr "" -#: library/datetime.rst:1480 +#: library/datetime.rst:1488 msgid ":exc:`ValueError` will be raised on an invalid *timespec* argument::" msgstr "" -#: library/datetime.rst:1866 +#: library/datetime.rst:1874 msgid "Added the *timespec* argument." msgstr "" -#: library/datetime.rst:1496 +#: library/datetime.rst:1504 msgid "" "For a :class:`.datetime` instance *d*, ``str(d)`` is equivalent to ``d." "isoformat(' ')``." msgstr "" -#: library/datetime.rst:1502 +#: library/datetime.rst:1510 msgid "Return a string representing the date and time::" msgstr "" -#: library/datetime.rst:1508 +#: library/datetime.rst:1516 msgid "" "The output string will *not* include time zone information, regardless of " "whether the input is aware or naive." msgstr "" -#: library/datetime.rst:1515 +#: library/datetime.rst:1523 msgid "" "on platforms where the native C :c:func:`ctime` function (which :func:`time." "ctime` invokes, but which :meth:`datetime.ctime` does not invoke) conforms " "to the C standard." msgstr "" -#: library/datetime.rst:1522 +#: library/datetime.rst:1530 msgid "" "Return a string representing the date and time, controlled by an explicit " "format string. See also :ref:`strftime-strptime-behavior` and :meth:" "`datetime.isoformat`." msgstr "" -#: library/datetime.rst:1529 +#: library/datetime.rst:1537 msgid "" "Same as :meth:`.datetime.strftime`. This makes it possible to specify a " "format string for a :class:`.datetime` object in :ref:`formatted string " @@ -1813,70 +1823,70 @@ msgid "" "`strftime-strptime-behavior` and :meth:`datetime.isoformat`." msgstr "" -#: library/datetime.rst:1536 +#: library/datetime.rst:1544 msgid "Examples of Usage: :class:`.datetime`" msgstr "" -#: library/datetime.rst:1538 +#: library/datetime.rst:1546 msgid "Examples of working with :class:`~datetime.datetime` objects:" msgstr "" -#: library/datetime.rst:1591 +#: library/datetime.rst:1599 msgid "" "The example below defines a :class:`tzinfo` subclass capturing time zone " "information for Kabul, Afghanistan, which used +4 UTC until 1945 and then " "+4:30 UTC thereafter::" msgstr "" -#: library/datetime.rst:1638 +#: library/datetime.rst:1646 msgid "Usage of ``KabulTz`` from above::" msgstr "" -#: library/datetime.rst:1664 +#: library/datetime.rst:1672 msgid ":class:`.time` Objects" msgstr "" -#: library/datetime.rst:1666 +#: library/datetime.rst:1674 msgid "" "A :class:`time` object represents a (local) time of day, independent of any " "particular day, and subject to adjustment via a :class:`tzinfo` object." msgstr "" -#: library/datetime.rst:1671 +#: library/datetime.rst:1679 msgid "" "All arguments are optional. *tzinfo* may be ``None``, or an instance of a :" "class:`tzinfo` subclass. The remaining arguments must be integers in the " "following ranges:" msgstr "" -#: library/datetime.rst:1681 +#: library/datetime.rst:1689 msgid "" "If an argument outside those ranges is given, :exc:`ValueError` is raised. " "All default to ``0`` except *tzinfo*, which defaults to :const:`None`." msgstr "" -#: library/datetime.rst:1689 +#: library/datetime.rst:1697 msgid "The earliest representable :class:`.time`, ``time(0, 0, 0, 0)``." msgstr "" -#: library/datetime.rst:1694 +#: library/datetime.rst:1702 msgid "The latest representable :class:`.time`, ``time(23, 59, 59, 999999)``." msgstr "" -#: library/datetime.rst:1699 +#: library/datetime.rst:1707 msgid "" "The smallest possible difference between non-equal :class:`.time` objects, " "``timedelta(microseconds=1)``, although note that arithmetic on :class:`." "time` objects is not supported." msgstr "" -#: library/datetime.rst:1728 +#: library/datetime.rst:1736 msgid "" "The object passed as the tzinfo argument to the :class:`.time` constructor, " "or ``None`` if none was passed." msgstr "" -#: library/datetime.rst:1742 +#: library/datetime.rst:1750 msgid "" ":class:`.time` objects support comparison of :class:`.time` to :class:`." "time`, where *a* is considered less than *b* when *a* precedes *b* in time. " @@ -1885,7 +1895,7 @@ msgid "" "instances are never equal to aware instances." msgstr "" -#: library/datetime.rst:1748 +#: library/datetime.rst:1756 msgid "" "If both comparands are aware, and have the same :attr:`~time.tzinfo` " "attribute, the common :attr:`~time.tzinfo` attribute is ignored and the base " @@ -1899,18 +1909,18 @@ msgid "" "respectively." msgstr "" -#: library/datetime.rst:1758 +#: library/datetime.rst:1766 msgid "" "Equality comparisons between aware and naive :class:`~datetime.time` " "instances don't raise :exc:`TypeError`." msgstr "" -#: library/datetime.rst:1762 +#: library/datetime.rst:1770 msgid "" "In Boolean contexts, a :class:`.time` object is always considered to be true." msgstr "" -#: library/datetime.rst:1764 +#: library/datetime.rst:1772 msgid "" "Before Python 3.5, a :class:`.time` object was considered to be false if it " "represented midnight in UTC. This behavior was considered obscure and error-" @@ -1918,35 +1928,35 @@ msgid "" "details." msgstr "" -#: library/datetime.rst:1771 +#: library/datetime.rst:1779 msgid "Other constructor:" msgstr "" -#: library/datetime.rst:1775 +#: library/datetime.rst:1783 msgid "" "Return a :class:`.time` corresponding to a *time_string* in any valid ISO " "8601 format, with the following exceptions:" msgstr "" -#: library/datetime.rst:1779 +#: library/datetime.rst:1787 msgid "" "The leading ``T``, normally required in cases where there may be ambiguity " "between a date and a time, is not required." msgstr "" -#: library/datetime.rst:1781 +#: library/datetime.rst:1789 msgid "" "Fractional seconds may have any number of digits (anything beyond 6 will be " "truncated)." msgstr "" -#: library/datetime.rst:1807 +#: library/datetime.rst:1815 msgid "" "Previously, this method only supported formats that could be emitted by :" "meth:`time.isoformat()`." msgstr "" -#: library/datetime.rst:1817 +#: library/datetime.rst:1825 msgid "" "Return a :class:`.time` with the same value, except for those attributes " "given new values by whichever keyword arguments are specified. Note that " @@ -1954,46 +1964,46 @@ msgid "" "aware :class:`.time`, without conversion of the time data." msgstr "" -#: library/datetime.rst:1828 +#: library/datetime.rst:1836 msgid "Return a string representing the time in ISO 8601 format, one of:" msgstr "" -#: library/datetime.rst:1830 +#: library/datetime.rst:1838 msgid "``HH:MM:SS.ffffff``, if :attr:`microsecond` is not 0" msgstr "" -#: library/datetime.rst:1831 +#: library/datetime.rst:1839 msgid "``HH:MM:SS``, if :attr:`microsecond` is 0" msgstr "" -#: library/datetime.rst:1832 +#: library/datetime.rst:1840 msgid "" "``HH:MM:SS.ffffff+HH:MM[:SS[.ffffff]]``, if :meth:`utcoffset` does not " "return ``None``" msgstr "" -#: library/datetime.rst:1833 +#: library/datetime.rst:1841 msgid "" "``HH:MM:SS+HH:MM[:SS[.ffffff]]``, if :attr:`microsecond` is 0 and :meth:" "`utcoffset` does not return ``None``" msgstr "" -#: library/datetime.rst:1853 +#: library/datetime.rst:1861 msgid ":exc:`ValueError` will be raised on an invalid *timespec* argument." msgstr "" -#: library/datetime.rst:1872 +#: library/datetime.rst:1880 msgid "For a time *t*, ``str(t)`` is equivalent to ``t.isoformat()``." msgstr "" -#: library/datetime.rst:1877 +#: library/datetime.rst:1885 msgid "" "Return a string representing the time, controlled by an explicit format " "string. See also :ref:`strftime-strptime-behavior` and :meth:`time." "isoformat`." msgstr "" -#: library/datetime.rst:1883 +#: library/datetime.rst:1891 msgid "" "Same as :meth:`.time.strftime`. This makes it possible to specify a format " "string for a :class:`.time` object in :ref:`formatted string literals ` file there are some examples of :class:`tzinfo` classes:" msgstr "" -#: library/datetime.rst:2138 +#: library/datetime.rst:2146 msgid "" "Note that there are unavoidable subtleties twice per year in a :class:" "`tzinfo` subclass accounting for both standard and daylight time, at the DST " @@ -2260,7 +2270,7 @@ msgid "" "ends the minute after 1:59 (EDT) on the first Sunday in November::" msgstr "" -#: library/datetime.rst:2152 +#: library/datetime.rst:2160 msgid "" "When DST starts (the \"start\" line), the local wall clock leaps from 1:59 " "to 3:00. A wall time of the form 2:MM doesn't really make sense on that day, " @@ -2269,7 +2279,7 @@ msgid "" "get::" msgstr "" -#: library/datetime.rst:2171 +#: library/datetime.rst:2179 msgid "" "When DST ends (the \"end\" line), there's a potentially worse problem: " "there's an hour that can't be spelled unambiguously in local wall time: the " @@ -2284,13 +2294,13 @@ msgid "" "transition of 2016, we get::" msgstr "" -#: library/datetime.rst:2193 +#: library/datetime.rst:2201 msgid "" "Note that the :class:`.datetime` instances that differ only by the value of " "the :attr:`~datetime.fold` attribute are considered equal in comparisons." msgstr "" -#: library/datetime.rst:2196 +#: library/datetime.rst:2204 msgid "" "Applications that can't bear wall-time ambiguities should explicitly check " "the value of the :attr:`~datetime.fold` attribute or avoid using hybrid :" @@ -2300,28 +2310,28 @@ msgid "" "offset -4 hours))." msgstr "" -#: library/datetime.rst:2210 +#: library/datetime.rst:2218 msgid ":mod:`zoneinfo`" msgstr "" -#: library/datetime.rst:2205 +#: library/datetime.rst:2213 msgid "" "The :mod:`datetime` module has a basic :class:`timezone` class (for handling " "arbitrary fixed offsets from UTC) and its :attr:`timezone.utc` attribute (a " "UTC timezone instance)." msgstr "" -#: library/datetime.rst:2209 +#: library/datetime.rst:2217 msgid "" "``zoneinfo`` brings the *IANA timezone database* (also known as the Olson " "database) to Python, and its usage is recommended." msgstr "" -#: library/datetime.rst:2216 +#: library/datetime.rst:2224 msgid "`IANA timezone database `_" msgstr "" -#: library/datetime.rst:2213 +#: library/datetime.rst:2221 msgid "" "The Time Zone Database (often called tz, tzdata or zoneinfo) contains code " "and data that represent the history of local time for many representative " @@ -2330,24 +2340,24 @@ msgid "" "saving rules." msgstr "" -#: library/datetime.rst:2223 +#: library/datetime.rst:2231 msgid ":class:`timezone` Objects" msgstr "" -#: library/datetime.rst:2225 +#: library/datetime.rst:2233 msgid "" "The :class:`timezone` class is a subclass of :class:`tzinfo`, each instance " "of which represents a timezone defined by a fixed offset from UTC." msgstr "" -#: library/datetime.rst:2229 +#: library/datetime.rst:2237 msgid "" "Objects of this class cannot be used to represent timezone information in " "the locations where different offsets are used in different days of the year " "or where historical changes have been made to civil time." msgstr "" -#: library/datetime.rst:2236 +#: library/datetime.rst:2244 msgid "" "The *offset* argument must be specified as a :class:`timedelta` object " "representing the difference between the local time and UTC. It must be " @@ -2355,25 +2365,25 @@ msgid "" "otherwise :exc:`ValueError` is raised." msgstr "" -#: library/datetime.rst:2241 +#: library/datetime.rst:2249 msgid "" "The *name* argument is optional. If specified it must be a string that will " "be used as the value returned by the :meth:`datetime.tzname` method." msgstr "" -#: library/datetime.rst:2263 +#: library/datetime.rst:2271 msgid "" "Return the fixed value specified when the :class:`timezone` instance is " "constructed." msgstr "" -#: library/datetime.rst:2255 +#: library/datetime.rst:2263 msgid "" "The *dt* argument is ignored. The return value is a :class:`timedelta` " "instance equal to the difference between the local time and UTC." msgstr "" -#: library/datetime.rst:2266 +#: library/datetime.rst:2274 msgid "" "If *name* is not provided in the constructor, the name returned by " "``tzname(dt)`` is generated from the value of the ``offset`` as follows. If " @@ -2382,144 +2392,144 @@ msgid "" "are two digits of ``offset.hours`` and ``offset.minutes`` respectively." msgstr "" -#: library/datetime.rst:2272 +#: library/datetime.rst:2280 msgid "" "Name generated from ``offset=timedelta(0)`` is now plain ``'UTC'``, not " "``'UTC+00:00'``." msgstr "" -#: library/datetime.rst:2279 +#: library/datetime.rst:2287 msgid "Always returns ``None``." msgstr "" -#: library/datetime.rst:2283 +#: library/datetime.rst:2291 msgid "" "Return ``dt + offset``. The *dt* argument must be an aware :class:`." "datetime` instance, with ``tzinfo`` set to ``self``." msgstr "" -#: library/datetime.rst:2290 +#: library/datetime.rst:2298 msgid "The UTC timezone, ``timezone(timedelta(0))``." msgstr "" -#: library/datetime.rst:2299 +#: library/datetime.rst:2307 msgid ":meth:`strftime` and :meth:`strptime` Behavior" msgstr "" -#: library/datetime.rst:2301 +#: library/datetime.rst:2309 msgid "" ":class:`date`, :class:`.datetime`, and :class:`.time` objects all support a " "``strftime(format)`` method, to create a string representing the time under " "the control of an explicit format string." msgstr "" -#: library/datetime.rst:2305 +#: library/datetime.rst:2313 msgid "" "Conversely, the :meth:`datetime.strptime` class method creates a :class:`." "datetime` object from a string representing a date and time and a " "corresponding format string." msgstr "" -#: library/datetime.rst:2309 +#: library/datetime.rst:2317 msgid "" "The table below provides a high-level comparison of :meth:`strftime` versus :" "meth:`strptime`:" msgstr "" -#: library/datetime.rst:2313 +#: library/datetime.rst:2321 msgid "``strftime``" msgstr "" -#: library/datetime.rst:2313 +#: library/datetime.rst:2321 msgid "``strptime``" msgstr "" -#: library/datetime.rst:2315 +#: library/datetime.rst:2323 msgid "Usage" msgstr "" -#: library/datetime.rst:2315 +#: library/datetime.rst:2323 msgid "Convert object to a string according to a given format" msgstr "" -#: library/datetime.rst:2315 +#: library/datetime.rst:2323 msgid "" "Parse a string into a :class:`.datetime` object given a corresponding format" msgstr "" -#: library/datetime.rst:2317 +#: library/datetime.rst:2325 msgid "Type of method" msgstr "" -#: library/datetime.rst:2317 +#: library/datetime.rst:2325 msgid "Instance method" msgstr "" -#: library/datetime.rst:2317 +#: library/datetime.rst:2325 msgid "Class method" msgstr "" -#: library/datetime.rst:2319 +#: library/datetime.rst:2327 msgid "Method of" msgstr "" -#: library/datetime.rst:2319 +#: library/datetime.rst:2327 msgid ":class:`date`; :class:`.datetime`; :class:`.time`" msgstr "" -#: library/datetime.rst:2319 +#: library/datetime.rst:2327 msgid ":class:`.datetime`" msgstr "" -#: library/datetime.rst:2321 +#: library/datetime.rst:2329 msgid "Signature" msgstr "" -#: library/datetime.rst:2321 +#: library/datetime.rst:2329 msgid "``strftime(format)``" msgstr "" -#: library/datetime.rst:2321 +#: library/datetime.rst:2329 msgid "``strptime(date_string, format)``" msgstr "" -#: library/datetime.rst:2328 +#: library/datetime.rst:2336 msgid ":meth:`strftime` and :meth:`strptime` Format Codes" msgstr "" -#: library/datetime.rst:2330 +#: library/datetime.rst:2338 msgid "" "These methods accept format codes that can be used to parse and format " "dates::" msgstr "" -#: library/datetime.rst:2338 +#: library/datetime.rst:2346 msgid "" "The following is a list of all the format codes that the 1989 C standard " "requires, and these work on all platforms with a standard C implementation." msgstr "" -#: library/datetime.rst:2445 +#: library/datetime.rst:2453 msgid "Directive" msgstr "" -#: library/datetime.rst:2445 +#: library/datetime.rst:2453 msgid "Meaning" msgstr "" -#: library/datetime.rst:2445 +#: library/datetime.rst:2453 msgid "Example" msgstr "" -#: library/datetime.rst:2445 +#: library/datetime.rst:2453 msgid "Notes" msgstr "" -#: library/datetime.rst:2344 +#: library/datetime.rst:2352 msgid "``%a``" msgstr "" -#: library/datetime.rst:2344 +#: library/datetime.rst:2352 msgid "Weekday as locale's abbreviated name." msgstr "" @@ -2531,11 +2541,11 @@ msgstr "" msgid "So, Mo, ..., Sa (de_DE)" msgstr "" -#: library/datetime.rst:2349 +#: library/datetime.rst:2357 msgid "``%A``" msgstr "" -#: library/datetime.rst:2349 +#: library/datetime.rst:2357 msgid "Weekday as locale's full name." msgstr "" @@ -2547,40 +2557,40 @@ msgstr "" msgid "Sonntag, Montag, ..., Samstag (de_DE)" msgstr "" -#: library/datetime.rst:2354 +#: library/datetime.rst:2362 msgid "``%w``" msgstr "" -#: library/datetime.rst:2354 +#: library/datetime.rst:2362 msgid "Weekday as a decimal number, where 0 is Sunday and 6 is Saturday." msgstr "" -#: library/datetime.rst:2354 +#: library/datetime.rst:2362 msgid "0, 1, ..., 6" msgstr "" -#: library/datetime.rst:2358 +#: library/datetime.rst:2366 msgid "``%d``" msgstr "" -#: library/datetime.rst:2358 +#: library/datetime.rst:2366 msgid "Day of the month as a zero-padded decimal number." msgstr "" -#: library/datetime.rst:2358 +#: library/datetime.rst:2366 msgid "01, 02, ..., 31" msgstr "" -#: library/datetime.rst:2371 library/datetime.rst:2380 -#: library/datetime.rst:2389 library/datetime.rst:2407 +#: library/datetime.rst:2379 library/datetime.rst:2388 +#: library/datetime.rst:2397 library/datetime.rst:2415 msgid "\\(9)" msgstr "" -#: library/datetime.rst:2361 +#: library/datetime.rst:2369 msgid "``%b``" msgstr "" -#: library/datetime.rst:2361 +#: library/datetime.rst:2369 msgid "Month as locale's abbreviated name." msgstr "" @@ -2592,11 +2602,11 @@ msgstr "" msgid "Jan, Feb, ..., Dez (de_DE)" msgstr "" -#: library/datetime.rst:2366 +#: library/datetime.rst:2374 msgid "``%B``" msgstr "" -#: library/datetime.rst:2366 +#: library/datetime.rst:2374 msgid "Month as locale's full name." msgstr "" @@ -2608,67 +2618,67 @@ msgstr "" msgid "Januar, Februar, ..., Dezember (de_DE)" msgstr "" -#: library/datetime.rst:2371 +#: library/datetime.rst:2379 msgid "``%m``" msgstr "" -#: library/datetime.rst:2371 +#: library/datetime.rst:2379 msgid "Month as a zero-padded decimal number." msgstr "" -#: library/datetime.rst:2383 +#: library/datetime.rst:2391 msgid "01, 02, ..., 12" msgstr "" -#: library/datetime.rst:2374 +#: library/datetime.rst:2382 msgid "``%y``" msgstr "" -#: library/datetime.rst:2374 +#: library/datetime.rst:2382 msgid "Year without century as a zero-padded decimal number." msgstr "" -#: library/datetime.rst:2374 +#: library/datetime.rst:2382 msgid "00, 01, ..., 99" msgstr "" -#: library/datetime.rst:2377 +#: library/datetime.rst:2385 msgid "``%Y``" msgstr "" -#: library/datetime.rst:2377 +#: library/datetime.rst:2385 msgid "Year with century as a decimal number." msgstr "" -#: library/datetime.rst:2447 +#: library/datetime.rst:2455 msgid "0001, 0002, ..., 2013, 2014, ..., 9998, 9999" msgstr "" -#: library/datetime.rst:2380 +#: library/datetime.rst:2388 msgid "``%H``" msgstr "" -#: library/datetime.rst:2380 +#: library/datetime.rst:2388 msgid "Hour (24-hour clock) as a zero-padded decimal number." msgstr "" -#: library/datetime.rst:2380 +#: library/datetime.rst:2388 msgid "00, 01, ..., 23" msgstr "" -#: library/datetime.rst:2383 +#: library/datetime.rst:2391 msgid "``%I``" msgstr "" -#: library/datetime.rst:2383 +#: library/datetime.rst:2391 msgid "Hour (12-hour clock) as a zero-padded decimal number." msgstr "" -#: library/datetime.rst:2386 +#: library/datetime.rst:2394 msgid "``%p``" msgstr "" -#: library/datetime.rst:2386 +#: library/datetime.rst:2394 msgid "Locale's equivalent of either AM or PM." msgstr "" @@ -2680,127 +2690,127 @@ msgstr "" msgid "am, pm (de_DE)" msgstr "" -#: library/datetime.rst:2386 +#: library/datetime.rst:2394 msgid "\\(1), \\(3)" msgstr "" -#: library/datetime.rst:2389 +#: library/datetime.rst:2397 msgid "``%M``" msgstr "" -#: library/datetime.rst:2389 +#: library/datetime.rst:2397 msgid "Minute as a zero-padded decimal number." msgstr "" -#: library/datetime.rst:2392 +#: library/datetime.rst:2400 msgid "00, 01, ..., 59" msgstr "" -#: library/datetime.rst:2392 +#: library/datetime.rst:2400 msgid "``%S``" msgstr "" -#: library/datetime.rst:2392 +#: library/datetime.rst:2400 msgid "Second as a zero-padded decimal number." msgstr "" -#: library/datetime.rst:2392 +#: library/datetime.rst:2400 msgid "\\(4), \\(9)" msgstr "" -#: library/datetime.rst:2395 +#: library/datetime.rst:2403 msgid "``%f``" msgstr "" -#: library/datetime.rst:2395 +#: library/datetime.rst:2403 msgid "Microsecond as a decimal number, zero-padded to 6 digits." msgstr "" -#: library/datetime.rst:2395 +#: library/datetime.rst:2403 msgid "000000, 000001, ..., 999999" msgstr "" -#: library/datetime.rst:2395 +#: library/datetime.rst:2403 msgid "\\(5)" msgstr "" -#: library/datetime.rst:2560 +#: library/datetime.rst:2576 msgid "``%z``" msgstr "" -#: library/datetime.rst:2399 +#: library/datetime.rst:2407 msgid "" "UTC offset in the form ``±HHMM[SS[.ffffff]]`` (empty string if the object is " "naive)." msgstr "" -#: library/datetime.rst:2399 +#: library/datetime.rst:2407 msgid "(empty), +0000, -0400, +1030, +063415, -030712.345216" msgstr "" -#: library/datetime.rst:2404 +#: library/datetime.rst:2412 library/datetime.rst:2469 msgid "\\(6)" msgstr "" -#: library/datetime.rst:2584 +#: library/datetime.rst:2604 msgid "``%Z``" msgstr "" -#: library/datetime.rst:2404 +#: library/datetime.rst:2412 msgid "Time zone name (empty string if the object is naive)." msgstr "" -#: library/datetime.rst:2404 +#: library/datetime.rst:2412 msgid "(empty), UTC, GMT" msgstr "" -#: library/datetime.rst:2407 +#: library/datetime.rst:2415 msgid "``%j``" msgstr "" -#: library/datetime.rst:2407 +#: library/datetime.rst:2415 msgid "Day of the year as a zero-padded decimal number." msgstr "" -#: library/datetime.rst:2407 +#: library/datetime.rst:2415 msgid "001, 002, ..., 366" msgstr "" -#: library/datetime.rst:2410 +#: library/datetime.rst:2418 msgid "``%U``" msgstr "" -#: library/datetime.rst:2410 +#: library/datetime.rst:2418 msgid "" "Week number of the year (Sunday as the first day of the week) as a zero-" "padded decimal number. All days in a new year preceding the first Sunday are " "considered to be in week 0." msgstr "" -#: library/datetime.rst:2418 +#: library/datetime.rst:2426 msgid "00, 01, ..., 53" msgstr "" -#: library/datetime.rst:2418 +#: library/datetime.rst:2426 msgid "\\(7), \\(9)" msgstr "" -#: library/datetime.rst:2418 +#: library/datetime.rst:2426 msgid "``%W``" msgstr "" -#: library/datetime.rst:2418 +#: library/datetime.rst:2426 msgid "" "Week number of the year (Monday as the first day of the week) as a zero-" "padded decimal number. All days in a new year preceding the first Monday are " "considered to be in week 0." msgstr "" -#: library/datetime.rst:2426 +#: library/datetime.rst:2434 msgid "``%c``" msgstr "" -#: library/datetime.rst:2426 +#: library/datetime.rst:2434 msgid "Locale's appropriate date and time representation." msgstr "" @@ -2812,11 +2822,11 @@ msgstr "" msgid "Di 16 Aug 21:30:00 1988 (de_DE)" msgstr "" -#: library/datetime.rst:2431 +#: library/datetime.rst:2439 msgid "``%x``" msgstr "" -#: library/datetime.rst:2431 +#: library/datetime.rst:2439 msgid "Locale's appropriate date representation." msgstr "" @@ -2832,11 +2842,11 @@ msgstr "" msgid "16.08.1988 (de_DE)" msgstr "" -#: library/datetime.rst:2435 +#: library/datetime.rst:2443 msgid "``%X``" msgstr "" -#: library/datetime.rst:2435 +#: library/datetime.rst:2443 msgid "Locale's appropriate time representation." msgstr "" @@ -2848,69 +2858,83 @@ msgstr "" msgid "21:30:00 (de_DE)" msgstr "" -#: library/datetime.rst:2438 +#: library/datetime.rst:2446 msgid "``%%``" msgstr "" -#: library/datetime.rst:2438 +#: library/datetime.rst:2446 msgid "A literal ``'%'`` character." msgstr "" -#: library/datetime.rst:2438 +#: library/datetime.rst:2446 msgid "%" msgstr "" -#: library/datetime.rst:2441 +#: library/datetime.rst:2449 msgid "" "Several additional directives not required by the C89 standard are included " "for convenience. These parameters all correspond to ISO 8601 date values." msgstr "" -#: library/datetime.rst:2447 +#: library/datetime.rst:2455 msgid "``%G``" msgstr "" -#: library/datetime.rst:2447 +#: library/datetime.rst:2455 msgid "" "ISO 8601 year with century representing the year that contains the greater " "part of the ISO week (``%V``)." msgstr "" -#: library/datetime.rst:2447 +#: library/datetime.rst:2455 msgid "\\(8)" msgstr "" -#: library/datetime.rst:2452 +#: library/datetime.rst:2460 msgid "``%u``" msgstr "" -#: library/datetime.rst:2452 +#: library/datetime.rst:2460 msgid "ISO 8601 weekday as a decimal number where 1 is Monday." msgstr "" -#: library/datetime.rst:2452 +#: library/datetime.rst:2460 msgid "1, 2, ..., 7" msgstr "" -#: library/datetime.rst:2455 +#: library/datetime.rst:2463 msgid "``%V``" msgstr "" -#: library/datetime.rst:2455 +#: library/datetime.rst:2463 msgid "" "ISO 8601 week as a decimal number with Monday as the first day of the week. " "Week 01 is the week containing Jan 4." msgstr "" -#: library/datetime.rst:2455 +#: library/datetime.rst:2463 msgid "01, 02, ..., 53" msgstr "" -#: library/datetime.rst:2455 +#: library/datetime.rst:2463 msgid "\\(8), \\(9)" msgstr "" -#: library/datetime.rst:2462 +#: library/datetime.rst:2590 +msgid "``%:z``" +msgstr "" + +#: library/datetime.rst:2469 +msgid "" +"UTC offset in the form ``±HH:MM[:SS[.ffffff]]`` (empty string if the object " +"is naive)." +msgstr "" + +#: library/datetime.rst:2469 +msgid "(empty), +00:00, -04:00, +10:30, +06:34:15, -03:07:12.345216" +msgstr "" + +#: library/datetime.rst:2475 msgid "" "These may not be available on all platforms when used with the :meth:" "`strftime` method. The ISO 8601 year and ISO 8601 week directives are not " @@ -2919,7 +2943,7 @@ msgid "" "a :exc:`ValueError`." msgstr "" -#: library/datetime.rst:2467 +#: library/datetime.rst:2480 msgid "" "The full set of format codes supported varies across platforms, because " "Python calls the platform C library's :func:`strftime` function, and " @@ -2929,40 +2953,44 @@ msgid "" "unsupported format specifiers." msgstr "" -#: library/datetime.rst:2473 +#: library/datetime.rst:2486 msgid "``%G``, ``%u`` and ``%V`` were added." msgstr "" -#: library/datetime.rst:2477 +#: library/datetime.rst:2489 +msgid "``%:z`` was added." +msgstr "" + +#: library/datetime.rst:2493 msgid "Technical Detail" msgstr "" -#: library/datetime.rst:2479 +#: library/datetime.rst:2495 msgid "" "Broadly speaking, ``d.strftime(fmt)`` acts like the :mod:`time` module's " "``time.strftime(fmt, d.timetuple())`` although not all objects support a :" "meth:`timetuple` method." msgstr "" -#: library/datetime.rst:2483 +#: library/datetime.rst:2499 msgid "" "For the :meth:`datetime.strptime` class method, the default value is " "``1900-01-01T00:00:00.000``: any components not specified in the format " "string will be pulled from the default value. [#]_" msgstr "" -#: library/datetime.rst:2487 +#: library/datetime.rst:2503 msgid "Using ``datetime.strptime(date_string, format)`` is equivalent to::" msgstr "" -#: library/datetime.rst:2491 +#: library/datetime.rst:2507 msgid "" "except when the format includes sub-second components or timezone offset " "information, which are supported in ``datetime.strptime`` but are discarded " "by ``time.strptime``." msgstr "" -#: library/datetime.rst:2495 +#: library/datetime.rst:2511 msgid "" "For :class:`.time` objects, the format codes for year, month, and day should " "not be used, as :class:`time` objects have no such values. If they're used " @@ -2970,14 +2998,14 @@ msgid "" "day." msgstr "" -#: library/datetime.rst:2499 +#: library/datetime.rst:2515 msgid "" "For :class:`date` objects, the format codes for hours, minutes, seconds, and " "microseconds should not be used, as :class:`date` objects have no such " "values. If they're used anyway, ``0`` is substituted for them." msgstr "" -#: library/datetime.rst:2503 +#: library/datetime.rst:2519 msgid "" "For the same reason, handling of format strings containing Unicode code " "points that can't be represented in the charset of the current locale is " @@ -2986,7 +3014,7 @@ msgid "" "`UnicodeError` or return an empty string instead." msgstr "" -#: library/datetime.rst:2512 +#: library/datetime.rst:2528 msgid "" "Because the format depends on the current locale, care should be taken when " "making assumptions about the output value. Field orderings will vary (for " @@ -2994,37 +3022,37 @@ msgid "" "contain non-ASCII characters." msgstr "" -#: library/datetime.rst:2518 +#: library/datetime.rst:2534 msgid "" "The :meth:`strptime` method can parse years in the full [1, 9999] range, but " "years < 1000 must be zero-filled to 4-digit width." msgstr "" -#: library/datetime.rst:2521 +#: library/datetime.rst:2537 msgid "" "In previous versions, :meth:`strftime` method was restricted to years >= " "1900." msgstr "" -#: library/datetime.rst:2525 +#: library/datetime.rst:2541 msgid "" "In version 3.2, :meth:`strftime` method was restricted to years >= 1000." msgstr "" -#: library/datetime.rst:2530 +#: library/datetime.rst:2546 msgid "" "When used with the :meth:`strptime` method, the ``%p`` directive only " "affects the output hour field if the ``%I`` directive is used to parse the " "hour." msgstr "" -#: library/datetime.rst:2534 +#: library/datetime.rst:2550 msgid "" "Unlike the :mod:`time` module, the :mod:`datetime` module does not support " "leap seconds." msgstr "" -#: library/datetime.rst:2538 +#: library/datetime.rst:2554 msgid "" "When used with the :meth:`strptime` method, the ``%f`` directive accepts " "from one to six digits and zero pads on the right. ``%f`` is an extension to " @@ -3032,17 +3060,17 @@ msgid "" "in datetime objects, and therefore always available)." msgstr "" -#: library/datetime.rst:2545 +#: library/datetime.rst:2561 msgid "" -"For a naive object, the ``%z`` and ``%Z`` format codes are replaced by empty " -"strings." +"For a naive object, the ``%z``, ``%:z`` and ``%Z`` format codes are replaced " +"by empty strings." msgstr "" -#: library/datetime.rst:2548 +#: library/datetime.rst:2564 msgid "For an aware object:" msgstr "" -#: library/datetime.rst:2551 +#: library/datetime.rst:2567 msgid "" ":meth:`utcoffset` is transformed into a string of the form ``±HHMM[SS[." "ffffff]]``, where ``HH`` is a 2-digit string giving the number of UTC offset " @@ -3056,7 +3084,7 @@ msgid "" "``'-0330'``." msgstr "" -#: library/datetime.rst:2565 +#: library/datetime.rst:2581 msgid "" "When the ``%z`` directive is provided to the :meth:`strptime` method, the " "UTC offsets can have a colon as a separator between hours, minutes and " @@ -3064,47 +3092,53 @@ msgid "" "hour. In addition, providing ``'Z'`` is identical to ``'+00:00'``." msgstr "" -#: library/datetime.rst:2573 +#: library/datetime.rst:2589 +msgid "" +"Behaves exactly as ``%z``, but has a colon separator added between hours, " +"minutes and seconds." +msgstr "" + +#: library/datetime.rst:2593 msgid "" "In :meth:`strftime`, ``%Z`` is replaced by an empty string if :meth:`tzname` " "returns ``None``; otherwise ``%Z`` is replaced by the returned value, which " "must be a string." msgstr "" -#: library/datetime.rst:2577 +#: library/datetime.rst:2597 msgid ":meth:`strptime` only accepts certain values for ``%Z``:" msgstr "" -#: library/datetime.rst:2579 +#: library/datetime.rst:2599 msgid "any value in ``time.tzname`` for your machine's locale" msgstr "" -#: library/datetime.rst:2580 +#: library/datetime.rst:2600 msgid "the hard-coded values ``UTC`` and ``GMT``" msgstr "" -#: library/datetime.rst:2582 +#: library/datetime.rst:2602 msgid "" "So someone living in Japan may have ``JST``, ``UTC``, and ``GMT`` as valid " "values, but probably not ``EST``. It will raise ``ValueError`` for invalid " "values." msgstr "" -#: library/datetime.rst:2586 +#: library/datetime.rst:2606 msgid "" "When the ``%z`` directive is provided to the :meth:`strptime` method, an " "aware :class:`.datetime` object will be produced. The ``tzinfo`` of the " "result will be set to a :class:`timezone` instance." msgstr "" -#: library/datetime.rst:2592 +#: library/datetime.rst:2612 msgid "" "When used with the :meth:`strptime` method, ``%U`` and ``%W`` are only used " "in calculations when the day of the week and the calendar year (``%Y``) are " "specified." msgstr "" -#: library/datetime.rst:2597 +#: library/datetime.rst:2617 msgid "" "Similar to ``%U`` and ``%W``, ``%V`` is only used in calculations when the " "day of the week and the ISO year (``%G``) are specified in a :meth:" @@ -3112,22 +3146,22 @@ msgid "" "interchangeable." msgstr "" -#: library/datetime.rst:2603 +#: library/datetime.rst:2623 msgid "" "When used with the :meth:`strptime` method, the leading zero is optional " "for formats ``%d``, ``%m``, ``%H``, ``%I``, ``%M``, ``%S``, ``%j``, ``%U``, " "``%W``, and ``%V``. Format ``%y`` does require a leading zero." msgstr "" -#: library/datetime.rst:2608 +#: library/datetime.rst:2628 msgid "Footnotes" msgstr "" -#: library/datetime.rst:2609 +#: library/datetime.rst:2629 msgid "If, that is, we ignore the effects of Relativity" msgstr "" -#: library/datetime.rst:2611 +#: library/datetime.rst:2631 msgid "" "This matches the definition of the \"proleptic Gregorian\" calendar in " "Dershowitz and Reingold's book *Calendrical Calculations*, where it's the " @@ -3136,23 +3170,23 @@ msgid "" "systems." msgstr "" -#: library/datetime.rst:2617 +#: library/datetime.rst:2637 msgid "" "See R. H. van Gent's `guide to the mathematics of the ISO 8601 calendar " "`_ for a good explanation." msgstr "" -#: library/datetime.rst:2621 +#: library/datetime.rst:2641 msgid "" "Passing ``datetime.strptime('Feb 29', '%b %d')`` will fail since ``1900`` is " "not a leap year." msgstr "" -#: library/datetime.rst:2293 +#: library/datetime.rst:2301 msgid "% (percent)" msgstr "" -#: library/datetime.rst:2293 +#: library/datetime.rst:2301 msgid "datetime format" msgstr "" diff --git a/library/decimal.po b/library/decimal.po index a3605a79d..873b5ee72 100644 --- a/library/decimal.po +++ b/library/decimal.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1917,7 +1917,7 @@ msgid "" "to handle the :meth:`~Decimal.quantize` step:" msgstr "" -#: library/decimal.rst:2079 +#: library/decimal.rst:2080 msgid "" "Q. There are many ways to express the same value. The numbers ``200``, " "``200.000``, ``2E2``, and ``.02E+4`` all have the same value at various " @@ -1925,17 +1925,17 @@ msgid "" "canonical value?" msgstr "" -#: library/decimal.rst:2084 +#: library/decimal.rst:2085 msgid "" "A. The :meth:`~Decimal.normalize` method maps all equivalent values to a " "single representative:" msgstr "" -#: library/decimal.rst:2091 +#: library/decimal.rst:2092 msgid "Q. When does rounding occur in a computation?" msgstr "" -#: library/decimal.rst:2093 +#: library/decimal.rst:2094 msgid "" "A. It occurs *after* the computation. The philosophy of the decimal " "specification is that numbers are considered exact and are created " @@ -1945,13 +1945,13 @@ msgid "" "computation::" msgstr "" -#: library/decimal.rst:2111 +#: library/decimal.rst:2112 msgid "" "Q. Some decimal values always print with exponential notation. Is there a " "way to get a non-exponential representation?" msgstr "" -#: library/decimal.rst:2114 +#: library/decimal.rst:2115 msgid "" "A. For some values, exponential notation is the only way to express the " "number of significant places in the coefficient. For example, expressing " @@ -1959,31 +1959,31 @@ msgid "" "original's two-place significance." msgstr "" -#: library/decimal.rst:2119 +#: library/decimal.rst:2120 msgid "" "If an application does not care about tracking significance, it is easy to " "remove the exponent and trailing zeroes, losing significance, but keeping " "the value unchanged:" msgstr "" -#: library/decimal.rst:2129 +#: library/decimal.rst:2130 msgid "Q. Is there a way to convert a regular float to a :class:`Decimal`?" msgstr "" -#: library/decimal.rst:2131 +#: library/decimal.rst:2132 msgid "" "A. Yes, any binary floating point number can be exactly expressed as a " "Decimal though an exact conversion may take more precision than intuition " "would suggest:" msgstr "" -#: library/decimal.rst:2140 +#: library/decimal.rst:2141 msgid "" "Q. Within a complex calculation, how can I make sure that I haven't gotten a " "spurious result because of insufficient precision or rounding anomalies." msgstr "" -#: library/decimal.rst:2143 +#: library/decimal.rst:2144 msgid "" "A. The decimal module makes it easy to test results. A best practice is to " "re-run calculations using greater precision and with various rounding modes. " @@ -1991,14 +1991,14 @@ msgid "" "issues, ill-conditioned inputs, or a numerically unstable algorithm." msgstr "" -#: library/decimal.rst:2148 +#: library/decimal.rst:2149 msgid "" "Q. I noticed that context precision is applied to the results of operations " "but not to the inputs. Is there anything to watch out for when mixing " "values of different precisions?" msgstr "" -#: library/decimal.rst:2152 +#: library/decimal.rst:2153 msgid "" "A. Yes. The principle is that all values are considered to be exact and so " "is the arithmetic on those values. Only the results are rounded. The " @@ -2007,23 +2007,23 @@ msgid "" "haven't been rounded:" msgstr "" -#: library/decimal.rst:2165 +#: library/decimal.rst:2166 msgid "" "The solution is either to increase precision or to force rounding of inputs " "using the unary plus operation:" msgstr "" -#: library/decimal.rst:2174 +#: library/decimal.rst:2175 msgid "" "Alternatively, inputs can be rounded upon creation using the :meth:`Context." "create_decimal` method:" msgstr "" -#: library/decimal.rst:2180 +#: library/decimal.rst:2181 msgid "Q. Is the CPython implementation fast for large numbers?" msgstr "" -#: library/decimal.rst:2182 +#: library/decimal.rst:2183 msgid "" "A. Yes. In the CPython and PyPy3 implementations, the C/CFFI versions of " "the decimal module integrate the high speed `libmpdec \n" @@ -70,7 +70,7 @@ msgid "" "``False`` when creating the :class:`SequenceMatcher`." msgstr "" -#: library/difflib.rst:388 +#: library/difflib.rst:384 msgid "The *autojunk* parameter." msgstr "" @@ -90,7 +90,7 @@ msgstr "" msgid "Code" msgstr "" -#: library/difflib.rst:498 +#: library/difflib.rst:494 msgid "Meaning" msgstr "" @@ -130,7 +130,8 @@ msgstr "" msgid "" "Lines beginning with '``?``' attempt to guide the eye to intraline " "differences, and were not present in either input sequence. These lines can " -"be confusing if the sequences contain tab characters." +"be confusing if the sequences contain whitespace characters, such as spaces, " +"tabs or line breaks." msgstr "" #: library/difflib.rst:87 @@ -224,26 +225,20 @@ msgid "" "`make_file` method." msgstr "" -#: library/difflib.rst:148 -msgid "" -":file:`Tools/scripts/diff.py` is a command-line front-end to this class and " -"contains a good example of its use." -msgstr "" - -#: library/difflib.rst:154 +#: library/difflib.rst:152 msgid "" "Compare *a* and *b* (lists of strings); return a delta (a :term:`generator` " "generating the delta lines) in context diff format." msgstr "" -#: library/difflib.rst:157 +#: library/difflib.rst:155 msgid "" "Context diffs are a compact way of showing just the lines that have changed " "plus a few lines of context. The changes are shown in a before/after " "style. The number of context lines is set by *n* which defaults to three." msgstr "" -#: library/difflib.rst:161 +#: library/difflib.rst:159 msgid "" "By default, the diff control lines (those with ``***`` or ``---``) are " "created with a trailing newline. This is helpful so that inputs created " @@ -252,13 +247,13 @@ msgid "" "trailing newlines." msgstr "" -#: library/difflib.rst:298 +#: library/difflib.rst:294 msgid "" "For inputs that do not have trailing newlines, set the *lineterm* argument " "to ``\"\"`` so that the output will be uniformly newline free." msgstr "" -#: library/difflib.rst:301 +#: library/difflib.rst:297 msgid "" "The context diff format normally has a header for filenames and modification " "times. Any or all of these may be specified using strings for *fromfile*, " @@ -267,11 +262,11 @@ msgid "" "default to blanks." msgstr "" -#: library/difflib.rst:322 +#: library/difflib.rst:318 msgid "See :ref:`difflib-interface` for a more detailed example." msgstr "" -#: library/difflib.rst:198 +#: library/difflib.rst:196 msgid "" "Return a list of the best \"good enough\" matches. *word* is a sequence for " "which close matches are desired (typically a string), and *possibilities* is " @@ -279,37 +274,37 @@ msgid "" "strings)." msgstr "" -#: library/difflib.rst:202 +#: library/difflib.rst:200 msgid "" "Optional argument *n* (default ``3``) is the maximum number of close matches " "to return; *n* must be greater than ``0``." msgstr "" -#: library/difflib.rst:205 +#: library/difflib.rst:203 msgid "" "Optional argument *cutoff* (default ``0.6``) is a float in the range [0, 1]. " "Possibilities that don't score at least that similar to *word* are ignored." msgstr "" -#: library/difflib.rst:208 +#: library/difflib.rst:206 msgid "" "The best (no more than *n*) matches among the possibilities are returned in " "a list, sorted by similarity score, most similar first." msgstr "" -#: library/difflib.rst:224 +#: library/difflib.rst:222 msgid "" "Compare *a* and *b* (lists of strings); return a :class:`Differ`\\ -style " "delta (a :term:`generator` generating the delta lines)." msgstr "" -#: library/difflib.rst:227 +#: library/difflib.rst:225 msgid "" "Optional keyword parameters *linejunk* and *charjunk* are filtering " "functions (or ``None``):" msgstr "" -#: library/difflib.rst:230 +#: library/difflib.rst:228 msgid "" "*linejunk*: A function that accepts a single string argument, and returns " "true if the string is junk, or false if not. The default is ``None``. There " @@ -320,7 +315,7 @@ msgid "" "this usually works better than using this function." msgstr "" -#: library/difflib.rst:238 +#: library/difflib.rst:236 msgid "" "*charjunk*: A function that accepts a character (a string of length 1), and " "returns if the character is junk, or false if not. The default is module-" @@ -328,33 +323,28 @@ msgid "" "characters (a blank or tab; it's a bad idea to include newline in this!)." msgstr "" -#: library/difflib.rst:243 -msgid "" -":file:`Tools/scripts/ndiff.py` is a command-line front-end to this function." -msgstr "" - -#: library/difflib.rst:261 +#: library/difflib.rst:257 msgid "Return one of the two sequences that generated a delta." msgstr "" -#: library/difflib.rst:263 +#: library/difflib.rst:259 msgid "" "Given a *sequence* produced by :meth:`Differ.compare` or :func:`ndiff`, " "extract lines originating from file 1 or 2 (parameter *which*), stripping " "off line prefixes." msgstr "" -#: library/difflib.rst:267 +#: library/difflib.rst:263 msgid "Example:" msgstr "" -#: library/difflib.rst:284 +#: library/difflib.rst:280 msgid "" "Compare *a* and *b* (lists of strings); return a delta (a :term:`generator` " "generating the delta lines) in unified diff format." msgstr "" -#: library/difflib.rst:287 +#: library/difflib.rst:283 msgid "" "Unified diffs are a compact way of showing just the lines that have changed " "plus a few lines of context. The changes are shown in an inline style " @@ -362,7 +352,7 @@ msgid "" "set by *n* which defaults to three." msgstr "" -#: library/difflib.rst:292 +#: library/difflib.rst:288 msgid "" "By default, the diff control lines (those with ``---``, ``+++``, or ``@@``) " "are created with a trailing newline. This is helpful so that inputs created " @@ -371,14 +361,14 @@ msgid "" "trailing newlines." msgstr "" -#: library/difflib.rst:326 +#: library/difflib.rst:322 msgid "" "Compare *a* and *b* (lists of bytes objects) using *dfunc*; yield a sequence " "of delta lines (also bytes) in the format returned by *dfunc*. *dfunc* must " "be a callable, typically either :func:`unified_diff` or :func:`context_diff`." msgstr "" -#: library/difflib.rst:331 +#: library/difflib.rst:327 msgid "" "Allows you to compare data with unknown or inconsistent encoding. All inputs " "except *n* must be bytes objects, not str. Works by losslessly converting " @@ -388,42 +378,42 @@ msgid "" "unknown/inconsistent encodings as *a* and *b*." msgstr "" -#: library/difflib.rst:342 +#: library/difflib.rst:338 msgid "" "Return ``True`` for ignorable lines. The line *line* is ignorable if *line* " "is blank or contains a single ``'#'``, otherwise it is not ignorable. Used " "as a default for parameter *linejunk* in :func:`ndiff` in older versions." msgstr "" -#: library/difflib.rst:349 +#: library/difflib.rst:345 msgid "" "Return ``True`` for ignorable characters. The character *ch* is ignorable " "if *ch* is a space or tab, otherwise it is not ignorable. Used as a default " "for parameter *charjunk* in :func:`ndiff`." msgstr "" -#: library/difflib.rst:357 +#: library/difflib.rst:353 msgid "" "`Pattern Matching: The Gestalt Approach `_" msgstr "" -#: library/difflib.rst:357 +#: library/difflib.rst:353 msgid "" "Discussion of a similar algorithm by John W. Ratcliff and D. E. Metzener. " "This was published in `Dr. Dobb's Journal `_ in " "July, 1988." msgstr "" -#: library/difflib.rst:364 +#: library/difflib.rst:360 msgid "SequenceMatcher Objects" msgstr "" -#: library/difflib.rst:366 +#: library/difflib.rst:362 msgid "The :class:`SequenceMatcher` class has this constructor:" msgstr "" -#: library/difflib.rst:371 +#: library/difflib.rst:367 msgid "" "Optional argument *isjunk* must be ``None`` (the default) or a one-argument " "function that takes a sequence element and returns true if and only if the " @@ -432,26 +422,26 @@ msgid "" "ignored. For example, pass::" msgstr "" -#: library/difflib.rst:379 +#: library/difflib.rst:375 msgid "" "if you're comparing lines as sequences of characters, and don't want to " "synch up on blanks or hard tabs." msgstr "" -#: library/difflib.rst:382 +#: library/difflib.rst:378 msgid "" "The optional arguments *a* and *b* are sequences to be compared; both " "default to empty strings. The elements of both sequences must be :term:" "`hashable`." msgstr "" -#: library/difflib.rst:385 +#: library/difflib.rst:381 msgid "" "The optional argument *autojunk* can be used to disable the automatic junk " "heuristic." msgstr "" -#: library/difflib.rst:391 +#: library/difflib.rst:387 msgid "" "SequenceMatcher objects get three data attributes: *bjunk* is the set of " "elements of *b* for which *isjunk* is ``True``; *bpopular* is the set of non-" @@ -461,19 +451,19 @@ msgid "" "`set_seqs` or :meth:`set_seq2`." msgstr "" -#: library/difflib.rst:398 +#: library/difflib.rst:394 msgid "The *bjunk* and *bpopular* attributes." msgstr "" -#: library/difflib.rst:401 +#: library/difflib.rst:397 msgid ":class:`SequenceMatcher` objects have the following methods:" msgstr "" -#: library/difflib.rst:405 +#: library/difflib.rst:401 msgid "Set the two sequences to be compared." msgstr "" -#: library/difflib.rst:407 +#: library/difflib.rst:403 msgid "" ":class:`SequenceMatcher` computes and caches detailed information about the " "second sequence, so if you want to compare one sequence against many " @@ -481,23 +471,23 @@ msgid "" "call :meth:`set_seq1` repeatedly, once for each of the other sequences." msgstr "" -#: library/difflib.rst:415 +#: library/difflib.rst:411 msgid "" "Set the first sequence to be compared. The second sequence to be compared " "is not changed." msgstr "" -#: library/difflib.rst:421 +#: library/difflib.rst:417 msgid "" "Set the second sequence to be compared. The first sequence to be compared " "is not changed." msgstr "" -#: library/difflib.rst:427 +#: library/difflib.rst:423 msgid "Find longest matching block in ``a[alo:ahi]`` and ``b[blo:bhi]``." msgstr "" -#: library/difflib.rst:429 +#: library/difflib.rst:425 msgid "" "If *isjunk* was omitted or ``None``, :meth:`find_longest_match` returns " "``(i, j, k)`` such that ``a[i:i+k]`` is equal to ``b[j:j+k]``, where ``alo " @@ -509,7 +499,7 @@ msgid "" "that starts earliest in *b*." msgstr "" -#: library/difflib.rst:442 +#: library/difflib.rst:438 msgid "" "If *isjunk* was provided, first the longest matching block is determined as " "above, but with the additional restriction that no junk element appears in " @@ -518,7 +508,7 @@ msgid "" "junk except as identical junk happens to be adjacent to an interesting match." msgstr "" -#: library/difflib.rst:449 +#: library/difflib.rst:445 msgid "" "Here's the same example as before, but considering blanks to be junk. That " "prevents ``' abcd'`` from matching the ``' abcd'`` at the tail end of the " @@ -526,26 +516,26 @@ msgid "" "matches the leftmost ``'abcd'`` in the second sequence:" msgstr "" -#: library/difflib.rst:458 +#: library/difflib.rst:454 msgid "If no blocks match, this returns ``(alo, blo, 0)``." msgstr "" -#: library/difflib.rst:460 +#: library/difflib.rst:456 msgid "This method returns a :term:`named tuple` ``Match(a, b, size)``." msgstr "" -#: library/difflib.rst:462 +#: library/difflib.rst:458 msgid "Added default arguments." msgstr "" -#: library/difflib.rst:468 +#: library/difflib.rst:464 msgid "" "Return list of triples describing non-overlapping matching subsequences. " "Each triple is of the form ``(i, j, n)``, and means that ``a[i:i+n] == b[j:" "j+n]``. The triples are monotonically increasing in *i* and *j*." msgstr "" -#: library/difflib.rst:473 +#: library/difflib.rst:469 msgid "" "The last triple is a dummy, and has the value ``(len(a), len(b), 0)``. It " "is the only triple with ``n == 0``. If ``(i, j, n)`` and ``(i', j', n')`` " @@ -554,7 +544,7 @@ msgid "" "triples always describe non-adjacent equal blocks." msgstr "" -#: library/difflib.rst:490 +#: library/difflib.rst:486 msgid "" "Return list of 5-tuples describing how to turn *a* into *b*. Each tuple is " "of the form ``(tag, i1, i2, j1, j2)``. The first tuple has ``i1 == j1 == " @@ -562,101 +552,101 @@ msgid "" "tuple, and, likewise, *j1* equal to the previous *j2*." msgstr "" -#: library/difflib.rst:495 +#: library/difflib.rst:491 msgid "The *tag* values are strings, with these meanings:" msgstr "" -#: library/difflib.rst:498 +#: library/difflib.rst:494 msgid "Value" msgstr "" -#: library/difflib.rst:500 +#: library/difflib.rst:496 msgid "``'replace'``" msgstr "" -#: library/difflib.rst:500 +#: library/difflib.rst:496 msgid "``a[i1:i2]`` should be replaced by ``b[j1:j2]``." msgstr "" -#: library/difflib.rst:503 +#: library/difflib.rst:499 msgid "``'delete'``" msgstr "" -#: library/difflib.rst:503 +#: library/difflib.rst:499 msgid "``a[i1:i2]`` should be deleted. Note that ``j1 == j2`` in this case." msgstr "" -#: library/difflib.rst:506 +#: library/difflib.rst:502 msgid "``'insert'``" msgstr "" -#: library/difflib.rst:506 +#: library/difflib.rst:502 msgid "" "``b[j1:j2]`` should be inserted at ``a[i1:i1]``. Note that ``i1 == i2`` in " "this case." msgstr "" -#: library/difflib.rst:510 +#: library/difflib.rst:506 msgid "``'equal'``" msgstr "" -#: library/difflib.rst:510 +#: library/difflib.rst:506 msgid "``a[i1:i2] == b[j1:j2]`` (the sub-sequences are equal)." msgstr "" -#: library/difflib.rst:514 +#: library/difflib.rst:510 msgid "For example::" msgstr "" -#: library/difflib.rst:531 +#: library/difflib.rst:527 msgid "Return a :term:`generator` of groups with up to *n* lines of context." msgstr "" -#: library/difflib.rst:533 +#: library/difflib.rst:529 msgid "" "Starting with the groups returned by :meth:`get_opcodes`, this method splits " "out smaller change clusters and eliminates intervening ranges which have no " "changes." msgstr "" -#: library/difflib.rst:537 +#: library/difflib.rst:533 msgid "The groups are returned in the same format as :meth:`get_opcodes`." msgstr "" -#: library/difflib.rst:542 +#: library/difflib.rst:538 msgid "" "Return a measure of the sequences' similarity as a float in the range [0, 1]." msgstr "" -#: library/difflib.rst:545 +#: library/difflib.rst:541 msgid "" "Where T is the total number of elements in both sequences, and M is the " "number of matches, this is 2.0\\*M / T. Note that this is ``1.0`` if the " "sequences are identical, and ``0.0`` if they have nothing in common." msgstr "" -#: library/difflib.rst:549 +#: library/difflib.rst:545 msgid "" "This is expensive to compute if :meth:`get_matching_blocks` or :meth:" "`get_opcodes` hasn't already been called, in which case you may want to try :" "meth:`quick_ratio` or :meth:`real_quick_ratio` first to get an upper bound." msgstr "" -#: library/difflib.rst:556 +#: library/difflib.rst:552 msgid "" "Caution: The result of a :meth:`ratio` call may depend on the order of the " "arguments. For instance::" msgstr "" -#: library/difflib.rst:567 +#: library/difflib.rst:563 msgid "Return an upper bound on :meth:`ratio` relatively quickly." msgstr "" -#: library/difflib.rst:572 +#: library/difflib.rst:568 msgid "Return an upper bound on :meth:`ratio` very quickly." msgstr "" -#: library/difflib.rst:575 +#: library/difflib.rst:571 msgid "" "The three methods that return the ratio of matching to total characters can " "give different results due to differing levels of approximation, although :" @@ -664,57 +654,57 @@ msgid "" "as :meth:`ratio`:" msgstr "" -#: library/difflib.rst:592 +#: library/difflib.rst:588 msgid "SequenceMatcher Examples" msgstr "" -#: library/difflib.rst:594 +#: library/difflib.rst:590 msgid "This example compares two strings, considering blanks to be \"junk\":" msgstr "" -#: library/difflib.rst:600 +#: library/difflib.rst:596 msgid "" ":meth:`ratio` returns a float in [0, 1], measuring the similarity of the " "sequences. As a rule of thumb, a :meth:`ratio` value over 0.6 means the " "sequences are close matches:" msgstr "" -#: library/difflib.rst:607 +#: library/difflib.rst:603 msgid "" "If you're only interested in where the sequences match, :meth:" "`get_matching_blocks` is handy:" msgstr "" -#: library/difflib.rst:616 +#: library/difflib.rst:612 msgid "" "Note that the last tuple returned by :meth:`get_matching_blocks` is always a " "dummy, ``(len(a), len(b), 0)``, and this is the only case in which the last " "tuple element (number of elements matched) is ``0``." msgstr "" -#: library/difflib.rst:620 +#: library/difflib.rst:616 msgid "" "If you want to know how to change the first sequence into the second, use :" "meth:`get_opcodes`:" msgstr "" -#: library/difflib.rst:631 +#: library/difflib.rst:627 msgid "" "The :func:`get_close_matches` function in this module which shows how simple " "code building on :class:`SequenceMatcher` can be used to do useful work." msgstr "" -#: library/difflib.rst:635 +#: library/difflib.rst:631 msgid "" "`Simple version control recipe `_ for a small application built with :class:`SequenceMatcher`." msgstr "" -#: library/difflib.rst:643 +#: library/difflib.rst:639 msgid "Differ Objects" msgstr "" -#: library/difflib.rst:645 +#: library/difflib.rst:641 msgid "" "Note that :class:`Differ`\\ -generated deltas make no claim to be " "**minimal** diffs. To the contrary, minimal diffs are often counter-" @@ -724,31 +714,31 @@ msgid "" "longer diff." msgstr "" -#: library/difflib.rst:651 +#: library/difflib.rst:647 msgid "The :class:`Differ` class has this constructor:" msgstr "" -#: library/difflib.rst:657 +#: library/difflib.rst:653 msgid "" "Optional keyword parameters *linejunk* and *charjunk* are for filter " "functions (or ``None``):" msgstr "" -#: library/difflib.rst:660 +#: library/difflib.rst:656 msgid "" "*linejunk*: A function that accepts a single string argument, and returns " "true if the string is junk. The default is ``None``, meaning that no line " "is considered junk." msgstr "" -#: library/difflib.rst:664 +#: library/difflib.rst:660 msgid "" "*charjunk*: A function that accepts a single character argument (a string of " "length 1), and returns true if the character is junk. The default is " "``None``, meaning that no character is considered junk." msgstr "" -#: library/difflib.rst:668 +#: library/difflib.rst:664 msgid "" "These junk-filtering functions speed up matching to find differences and do " "not cause any differing lines or characters to be ignored. Read the " @@ -756,17 +746,17 @@ msgid "" "*isjunk* parameter for an explanation." msgstr "" -#: library/difflib.rst:674 +#: library/difflib.rst:670 msgid "" ":class:`Differ` objects are used (deltas generated) via a single method:" msgstr "" -#: library/difflib.rst:679 +#: library/difflib.rst:675 msgid "" "Compare two sequences of lines, and generate the delta (a sequence of lines)." msgstr "" -#: library/difflib.rst:681 +#: library/difflib.rst:677 msgid "" "Each sequence must contain individual single-line strings ending with " "newlines. Such sequences can be obtained from the :meth:`~io.IOBase." @@ -775,11 +765,11 @@ msgid "" "IOBase.writelines` method of a file-like object." msgstr "" -#: library/difflib.rst:692 +#: library/difflib.rst:688 msgid "Differ Example" msgstr "" -#: library/difflib.rst:694 +#: library/difflib.rst:690 msgid "" "This example compares two texts. First we set up the texts, sequences of " "individual single-line strings ending with newlines (such sequences can also " @@ -787,36 +777,42 @@ msgid "" "objects):" msgstr "" -#: library/difflib.rst:713 +#: library/difflib.rst:709 msgid "Next we instantiate a Differ object:" msgstr "" -#: library/difflib.rst:717 +#: library/difflib.rst:713 msgid "" "Note that when instantiating a :class:`Differ` object we may pass functions " "to filter out line and character \"junk.\" See the :meth:`Differ` " "constructor for details." msgstr "" -#: library/difflib.rst:721 +#: library/difflib.rst:717 msgid "Finally, we compare the two:" msgstr "" -#: library/difflib.rst:725 +#: library/difflib.rst:721 msgid "``result`` is a list of strings, so let's pretty-print it:" msgstr "" -#: library/difflib.rst:740 +#: library/difflib.rst:736 msgid "As a single multi-line string it looks like this:" msgstr "" -#: library/difflib.rst:759 +#: library/difflib.rst:755 msgid "A command-line interface to difflib" msgstr "" -#: library/difflib.rst:761 +#: library/difflib.rst:757 msgid "" -"This example shows how to use difflib to create a ``diff``-like utility. It " -"is also contained in the Python source distribution, as :file:`Tools/scripts/" -"diff.py`." +"This example shows how to use difflib to create a ``diff``-like utility." +msgstr "" + +#: library/difflib.rst:762 +msgid "ndiff example" +msgstr "" + +#: library/difflib.rst:764 +msgid "This example shows how to use :func:`difflib.ndiff`." msgstr "" diff --git a/library/dis.po b/library/dis.po index 37cd62281..f017795c8 100644 --- a/library/dis.po +++ b/library/dis.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -63,45 +63,45 @@ msgid "" msgstr "" #: library/dis.rst:46 -msgid "Example: Given the function :func:`myfunc`::" +msgid "Example: Given the function :func:`!myfunc`::" msgstr "" #: library/dis.rst:51 msgid "" -"the following command can be used to display the disassembly of :func:" -"`myfunc`:" +"the following command can be used to display the disassembly of :func:`!" +"myfunc`:" msgstr "" -#: library/dis.rst:65 +#: library/dis.rst:64 msgid "(The \"2\" is a line number)." msgstr "" -#: library/dis.rst:68 +#: library/dis.rst:67 msgid "Bytecode analysis" msgstr "" -#: library/dis.rst:72 +#: library/dis.rst:71 msgid "" "The bytecode analysis API allows pieces of Python code to be wrapped in a :" "class:`Bytecode` object that provides easy access to details of the compiled " "code." msgstr "" -#: library/dis.rst:79 +#: library/dis.rst:78 msgid "" "Analyse the bytecode corresponding to a function, generator, asynchronous " "generator, coroutine, method, string of source code, or a code object (as " "returned by :func:`compile`)." msgstr "" -#: library/dis.rst:83 +#: library/dis.rst:82 msgid "" "This is a convenience wrapper around many of the functions listed below, " "most notably :func:`get_instructions`, as iterating over a :class:`Bytecode` " "instance yields the bytecode operations as :class:`Instruction` instances." msgstr "" -#: library/dis.rst:276 +#: library/dis.rst:274 msgid "" "If *first_line* is not ``None``, it indicates the line number that should be " "reported for the first source line in the disassembled code. Otherwise, the " @@ -109,68 +109,68 @@ msgid "" "code object." msgstr "" -#: library/dis.rst:92 +#: library/dis.rst:91 msgid "" "If *current_offset* is not ``None``, it refers to an instruction offset in " "the disassembled code. Setting this means :meth:`.dis` will display a " "\"current instruction\" marker against the specified opcode." msgstr "" -#: library/dis.rst:96 +#: library/dis.rst:95 msgid "" "If *show_caches* is ``True``, :meth:`.dis` will display inline cache entries " "used by the interpreter to specialize the bytecode." msgstr "" -#: library/dis.rst:99 +#: library/dis.rst:98 msgid "" "If *adaptive* is ``True``, :meth:`.dis` will display specialized bytecode " "that may be different from the original bytecode." msgstr "" -#: library/dis.rst:104 +#: library/dis.rst:103 msgid "" "Construct a :class:`Bytecode` instance from the given traceback, setting " "*current_offset* to the instruction responsible for the exception." msgstr "" -#: library/dis.rst:109 +#: library/dis.rst:108 msgid "The compiled code object." msgstr "" -#: library/dis.rst:113 +#: library/dis.rst:112 msgid "The first source line of the code object (if available)" msgstr "" -#: library/dis.rst:117 +#: library/dis.rst:116 msgid "" "Return a formatted view of the bytecode operations (the same as printed by :" "func:`dis.dis`, but returned as a multi-line string)." msgstr "" -#: library/dis.rst:122 +#: library/dis.rst:121 msgid "" "Return a formatted multi-line string with detailed information about the " "code object, like :func:`code_info`." msgstr "" -#: library/dis.rst:166 library/dis.rst:218 +#: library/dis.rst:164 library/dis.rst:216 msgid "This can now handle coroutine and asynchronous generator objects." msgstr "" -#: library/dis.rst:221 library/dis.rst:264 library/dis.rst:285 +#: library/dis.rst:219 library/dis.rst:262 library/dis.rst:283 msgid "Added the *show_caches* and *adaptive* parameters." msgstr "" -#: library/dis.rst:131 +#: library/dis.rst:130 msgid "Example:" msgstr "" -#: library/dis.rst:148 +#: library/dis.rst:146 msgid "Analysis functions" msgstr "" -#: library/dis.rst:150 +#: library/dis.rst:148 msgid "" "The :mod:`dis` module also defines the following analysis functions that " "convert the input directly to the desired output. They can be useful if only " @@ -178,38 +178,38 @@ msgid "" "isn't useful:" msgstr "" -#: library/dis.rst:156 +#: library/dis.rst:154 msgid "" "Return a formatted multi-line string with detailed code object information " "for the supplied function, generator, asynchronous generator, coroutine, " "method, source code string or code object." msgstr "" -#: library/dis.rst:160 +#: library/dis.rst:158 msgid "" "Note that the exact contents of code info strings are highly implementation " "dependent and they may change arbitrarily across Python VMs or Python " "releases." msgstr "" -#: library/dis.rst:172 +#: library/dis.rst:170 msgid "" "Print detailed code object information for the supplied function, method, " "source code string or code object to *file* (or ``sys.stdout`` if *file* is " "not specified)." msgstr "" -#: library/dis.rst:176 +#: library/dis.rst:174 msgid "" "This is a convenient shorthand for ``print(code_info(x), file=file)``, " "intended for interactive exploration at the interpreter prompt." msgstr "" -#: library/dis.rst:212 library/dis.rst:261 +#: library/dis.rst:210 library/dis.rst:259 msgid "Added *file* parameter." msgstr "" -#: library/dis.rst:187 +#: library/dis.rst:185 msgid "" "Disassemble the *x* object. *x* can denote either a module, a class, a " "method, a function, a generator, an asynchronous generator, a coroutine, a " @@ -217,133 +217,134 @@ msgid "" "a module, it disassembles all functions. For a class, it disassembles all " "methods (including class and static methods). For a code object or sequence " "of raw bytecode, it prints one line per bytecode instruction. It also " -"recursively disassembles nested code objects (the code of comprehensions, " -"generator expressions and nested functions, and the code used for building " -"nested classes). Strings are first compiled to code objects with the :func:" -"`compile` built-in function before being disassembled. If no object is " -"provided, this function disassembles the last traceback." +"recursively disassembles nested code objects. These can include generator " +"expressions, nested functions, the bodies of nested classes, and the code " +"objects used for :ref:`annotation scopes `. Strings are " +"first compiled to code objects with the :func:`compile` built-in function " +"before being disassembled. If no object is provided, this function " +"disassembles the last traceback." msgstr "" -#: library/dis.rst:231 library/dis.rst:258 +#: library/dis.rst:229 library/dis.rst:256 msgid "" "The disassembly is written as text to the supplied *file* argument if " "provided and to ``sys.stdout`` otherwise." msgstr "" -#: library/dis.rst:203 +#: library/dis.rst:201 msgid "" "The maximal depth of recursion is limited by *depth* unless it is ``None``. " "``depth=0`` means no recursion." msgstr "" -#: library/dis.rst:206 +#: library/dis.rst:204 msgid "" "If *show_caches* is ``True``, this function will display inline cache " "entries used by the interpreter to specialize the bytecode." msgstr "" -#: library/dis.rst:209 +#: library/dis.rst:207 msgid "" "If *adaptive* is ``True``, this function will display specialized bytecode " "that may be different from the original bytecode." msgstr "" -#: library/dis.rst:215 +#: library/dis.rst:213 msgid "Implemented recursive disassembling and added *depth* parameter." msgstr "" -#: library/dis.rst:227 +#: library/dis.rst:225 msgid "" "Disassemble the top-of-stack function of a traceback, using the last " "traceback if none was passed. The instruction causing the exception is " "indicated." msgstr "" -#: library/dis.rst:244 +#: library/dis.rst:242 msgid "" "Disassemble a code object, indicating the last instruction if *lasti* was " "provided. The output is divided in the following columns:" msgstr "" -#: library/dis.rst:247 +#: library/dis.rst:245 msgid "the line number, for the first instruction of each line" msgstr "" -#: library/dis.rst:248 +#: library/dis.rst:246 msgid "the current instruction, indicated as ``-->``," msgstr "" -#: library/dis.rst:249 +#: library/dis.rst:247 msgid "a labelled instruction, indicated with ``>>``," msgstr "" -#: library/dis.rst:250 +#: library/dis.rst:248 msgid "the address of the instruction," msgstr "" -#: library/dis.rst:251 +#: library/dis.rst:249 msgid "the operation code name," msgstr "" -#: library/dis.rst:252 +#: library/dis.rst:250 msgid "operation parameters, and" msgstr "" -#: library/dis.rst:253 +#: library/dis.rst:251 msgid "interpretation of the parameters in parentheses." msgstr "" -#: library/dis.rst:255 +#: library/dis.rst:253 msgid "" "The parameter interpretation recognizes local and global variable names, " "constant values, branch targets, and compare operators." msgstr "" -#: library/dis.rst:270 +#: library/dis.rst:268 msgid "" "Return an iterator over the instructions in the supplied function, method, " "source code string or code object." msgstr "" -#: library/dis.rst:273 +#: library/dis.rst:271 msgid "" "The iterator generates a series of :class:`Instruction` named tuples giving " "the details of each operation in the supplied code." msgstr "" -#: library/dis.rst:281 +#: library/dis.rst:279 msgid "" "The *show_caches* and *adaptive* parameters work as they do in :func:`dis`." msgstr "" -#: library/dis.rst:291 +#: library/dis.rst:289 msgid "" "This generator function uses the ``co_lines`` method of the code object " "*code* to find the offsets which are starts of lines in the source code. " "They are generated as ``(offset, lineno)`` pairs." msgstr "" -#: library/dis.rst:295 +#: library/dis.rst:293 msgid "Line numbers can be decreasing. Before, they were always increasing." msgstr "" -#: library/dis.rst:298 +#: library/dis.rst:296 msgid "" "The :pep:`626` ``co_lines`` method is used instead of the ``co_firstlineno`` " "and ``co_lnotab`` attributes of the code object." msgstr "" -#: library/dis.rst:305 +#: library/dis.rst:303 msgid "" "Detect all offsets in the raw compiled bytecode string *code* which are jump " "targets, and return a list of these offsets." msgstr "" -#: library/dis.rst:311 +#: library/dis.rst:309 msgid "Compute the stack effect of *opcode* with argument *oparg*." msgstr "" -#: library/dis.rst:313 +#: library/dis.rst:311 msgid "" "If the code has a jump target and *jump* is ``True``, :func:`~stack_effect` " "will return the stack effect of jumping. If *jump* is ``False``, it will " @@ -351,105 +352,118 @@ msgid "" "it will return the maximal stack effect of both cases." msgstr "" -#: library/dis.rst:320 +#: library/dis.rst:318 msgid "Added *jump* parameter." msgstr "" -#: library/dis.rst:327 +#: library/dis.rst:325 msgid "Python Bytecode Instructions" msgstr "" -#: library/dis.rst:329 +#: library/dis.rst:327 msgid "" "The :func:`get_instructions` function and :class:`Bytecode` class provide " "details of bytecode instructions as :class:`Instruction` instances:" msgstr "" -#: library/dis.rst:334 +#: library/dis.rst:332 msgid "Details for a bytecode operation" msgstr "" -#: library/dis.rst:338 +#: library/dis.rst:336 msgid "" "numeric code for operation, corresponding to the opcode values listed below " "and the bytecode values in the :ref:`opcode_collections`." msgstr "" -#: library/dis.rst:344 +#: library/dis.rst:342 msgid "human readable name for operation" msgstr "" -#: library/dis.rst:349 +#: library/dis.rst:347 msgid "numeric argument to operation (if any), otherwise ``None``" msgstr "" -#: library/dis.rst:354 +#: library/dis.rst:352 msgid "resolved arg value (if any), otherwise ``None``" msgstr "" -#: library/dis.rst:359 +#: library/dis.rst:357 msgid "" "human readable description of operation argument (if any), otherwise an " "empty string." msgstr "" -#: library/dis.rst:365 +#: library/dis.rst:363 msgid "start index of operation within bytecode sequence" msgstr "" -#: library/dis.rst:370 +#: library/dis.rst:368 msgid "line started by this opcode (if any), otherwise ``None``" msgstr "" -#: library/dis.rst:375 +#: library/dis.rst:373 msgid "``True`` if other code jumps to here, otherwise ``False``" msgstr "" -#: library/dis.rst:380 +#: library/dis.rst:378 msgid "" ":class:`dis.Positions` object holding the start and end locations that are " "covered by this instruction." msgstr "" -#: library/dis.rst:387 +#: library/dis.rst:385 msgid "Field ``positions`` is added." msgstr "" -#: library/dis.rst:392 +#: library/dis.rst:390 msgid "" "In case the information is not available, some fields might be ``None``." msgstr "" -#: library/dis.rst:402 +#: library/dis.rst:400 msgid "" "The Python compiler currently generates the following bytecode instructions." msgstr "" -#: library/dis.rst:405 +#: library/dis.rst:403 msgid "**General instructions**" msgstr "" -#: library/dis.rst:409 +#: library/dis.rst:405 +msgid "" +"In the following, We will refer to the interpreter stack as ``STACK`` and " +"describe operations on it as if it was a Python list. The top of the stack " +"corresponds to ``STACK[-1]`` in this language." +msgstr "" + +#: library/dis.rst:411 msgid "" "Do nothing code. Used as a placeholder by the bytecode optimizer, and to " "generate line tracing events." msgstr "" -#: library/dis.rst:415 -msgid "Removes the top-of-stack (TOS) item." +#: library/dis.rst:417 +msgid "Removes the top-of-stack item::" msgstr "" -#: library/dis.rst:420 +#: library/dis.rst:424 msgid "" -"Push the *i*-th item to the top of the stack. The item is not removed from " -"its original location." +"Removes the top two values from the stack. Equivalent to ``POP_TOP``; " +"``POP_TOP``. Used to clean up at the end of loops, hence the name." msgstr "" -#: library/dis.rst:428 -msgid "Swap TOS with the item at position *i*." +#: library/dis.rst:433 +msgid "" +"Push the i-th item to the top of the stack without removing it from its " +"original location::" +msgstr "" + +#: library/dis.rst:444 +msgid "Swap the top of the stack with the i-th element::" msgstr "" -#: library/dis.rst:435 +#: library/dis.rst:453 msgid "" "Rather than being an actual instruction, this opcode is used to mark extra " "space for the interpreter to cache useful data directly in the bytecode " @@ -457,187 +471,176 @@ msgid "" "viewed with ``show_caches=True``." msgstr "" -#: library/dis.rst:440 +#: library/dis.rst:458 msgid "" "Logically, this space is part of the preceding instruction. Many opcodes " "expect to be followed by an exact number of caches, and will instruct the " "interpreter to skip over them at runtime." msgstr "" -#: library/dis.rst:444 +#: library/dis.rst:462 msgid "" "Populated caches can look like arbitrary instructions, so great care should " "be taken when reading or modifying raw, adaptive bytecode containing " "quickened data." msgstr "" -#: library/dis.rst:451 +#: library/dis.rst:469 msgid "**Unary operations**" msgstr "" -#: library/dis.rst:453 +#: library/dis.rst:471 msgid "" "Unary operations take the top of the stack, apply the operation, and push " "the result back on the stack." msgstr "" -#: library/dis.rst:458 -msgid "Implements ``TOS = +TOS``." +#: library/dis.rst:477 +msgid "Implements ``STACK[-1] = -STACK[-1]``." msgstr "" -#: library/dis.rst:463 -msgid "Implements ``TOS = -TOS``." +#: library/dis.rst:482 +msgid "Implements ``STACK[-1] = not STACK[-1]``." msgstr "" -#: library/dis.rst:468 -msgid "Implements ``TOS = not TOS``." +#: library/dis.rst:487 +msgid "Implements ``STACK[-1] = ~STACK[-1]``." msgstr "" -#: library/dis.rst:473 -msgid "Implements ``TOS = ~TOS``." +#: library/dis.rst:492 +msgid "Implements ``STACK[-1] = iter(STACK[-1])``." msgstr "" -#: library/dis.rst:478 -msgid "Implements ``TOS = iter(TOS)``." -msgstr "" - -#: library/dis.rst:483 +#: library/dis.rst:497 msgid "" -"If ``TOS`` is a :term:`generator iterator` or :term:`coroutine` object it is " -"left as is. Otherwise, implements ``TOS = iter(TOS)``." +"If ``STACK[-1]`` is a :term:`generator iterator` or :term:`coroutine` object " +"it is left as is. Otherwise, implements ``STACK[-1] = iter(STACK[-1])``." msgstr "" -#: library/dis.rst:489 +#: library/dis.rst:503 msgid "**Binary and in-place operations**" msgstr "" -#: library/dis.rst:491 +#: library/dis.rst:505 msgid "" -"Binary operations remove the top of the stack (TOS) and the second top-most " -"stack item (TOS1) from the stack. They perform the operation, and put the " -"result back on the stack." +"Binary operations remove the top two items from the stack (``STACK[-1]`` and " +"``STACK[-2]``). They perform the operation, then put the result back on the " +"stack." msgstr "" -#: library/dis.rst:495 +#: library/dis.rst:508 msgid "" -"In-place operations are like binary operations, in that they remove TOS and " -"TOS1, and push the result back on the stack, but the operation is done in-" -"place when TOS1 supports it, and the resulting TOS may be (but does not have " -"to be) the original TOS1." +"In-place operations are like binary operations, but the operation is done in-" +"place when ``STACK[-2]`` supports it, and the resulting ``STACK[-1]`` may be " +"(but does not have to be) the original ``STACK[-2]``." msgstr "" -#: library/dis.rst:503 +#: library/dis.rst:515 msgid "" "Implements the binary and in-place operators (depending on the value of " -"*op*)." +"*op*)::" msgstr "" -#: library/dis.rst:511 -msgid "Implements ``TOS = TOS1[TOS]``." +#: library/dis.rst:536 library/dis.rst:554 library/dis.rst:654 +#: library/dis.rst:674 library/dis.rst:905 library/dis.rst:1017 +#: library/dis.rst:1029 +msgid "Implements::" msgstr "" -#: library/dis.rst:516 -msgid "Implements ``TOS1[TOS] = TOS2``." -msgstr "" - -#: library/dis.rst:521 -msgid "Implements ``del TOS1[TOS]``." -msgstr "" - -#: library/dis.rst:524 +#: library/dis.rst:577 msgid "**Coroutine opcodes**" msgstr "" -#: library/dis.rst:528 +#: library/dis.rst:581 msgid "" -"Implements ``TOS = get_awaitable(TOS)``, where ``get_awaitable(o)`` returns " -"``o`` if ``o`` is a coroutine object or a generator object with the " -"CO_ITERABLE_COROUTINE flag, or resolves ``o.__await__``." +"Implements ``STACK[-1] = get_awaitable(STACK[-1])``, where " +"``get_awaitable(o)`` returns ``o`` if ``o`` is a coroutine object or a " +"generator object with the :data:`~inspect.CO_ITERABLE_COROUTINE` flag, or " +"resolves ``o.__await__``." msgstr "" -#: library/dis.rst:533 +#: library/dis.rst:586 msgid "" "If the ``where`` operand is nonzero, it indicates where the instruction " "occurs:" msgstr "" -#: library/dis.rst:536 -msgid "``1`` After a call to ``__aenter__``" +#: library/dis.rst:589 +msgid "``1``: After a call to ``__aenter__``" msgstr "" -#: library/dis.rst:537 -msgid "``2`` After a call to ``__aexit__``" +#: library/dis.rst:590 +msgid "``2``: After a call to ``__aexit__``" msgstr "" -#: library/dis.rst:541 +#: library/dis.rst:594 msgid "Previously, this instruction did not have an oparg." msgstr "" -#: library/dis.rst:547 -msgid "Implements ``TOS = TOS.__aiter__()``." +#: library/dis.rst:600 +msgid "Implements ``STACK[-1] = STACK[-1].__aiter__()``." msgstr "" -#: library/dis.rst:550 +#: library/dis.rst:603 msgid "Returning awaitable objects from ``__aiter__`` is no longer supported." msgstr "" -#: library/dis.rst:557 +#: library/dis.rst:610 msgid "" -"Pushes ``get_awaitable(TOS.__anext__())`` to the stack. See " -"``GET_AWAITABLE`` for details about ``get_awaitable``." +"Implement ``STACK.append(get_awaitable(STACK[-1].__anext__()))`` to the " +"stack. See ``GET_AWAITABLE`` for details about ``get_awaitable``." msgstr "" -#: library/dis.rst:565 +#: library/dis.rst:618 msgid "" "Terminates an :keyword:`async for` loop. Handles an exception raised when " -"awaiting a next item. The stack contains the async iterable in TOS1 and the " -"raised exception in TOS. Both are popped. If the exception is not :exc:" -"`StopAsyncIteration`, it is re-raised." +"awaiting a next item. The stack contains the async iterable in ``STACK[-2]`` " +"and the raised exception in ``STACK[-1]``. Both are popped. If the exception " +"is not :exc:`StopAsyncIteration`, it is re-raised." msgstr "" -#: library/dis.rst:650 library/dis.rst:661 +#: library/dis.rst:730 library/dis.rst:741 msgid "" "Exception representation on the stack now consist of one, not three, items." msgstr "" -#: library/dis.rst:577 +#: library/dis.rst:631 msgid "" -"Resolves ``__aenter__`` and ``__aexit__`` from the object on top of the " -"stack. Pushes ``__aexit__`` and result of ``__aenter__()`` to the stack." +"Handles an exception raised during a :meth:`~generator.throw` or :meth:" +"`~generator.close` call through the current frame. If ``STACK[-1]`` is an " +"instance of :exc:`StopIteration`, pop three values from the stack and push " +"its ``value`` member. Otherwise, re-raise ``STACK[-1]``." msgstr "" -#: library/dis.rst:584 -msgid "**Miscellaneous opcodes**" +#: library/dis.rst:641 +msgid "" +"Resolves ``__aenter__`` and ``__aexit__`` from ``STACK[-1]``. Pushes " +"``__aexit__`` and result of ``__aenter__()`` to the stack::" msgstr "" -#: library/dis.rst:588 -msgid "" -"Implements the expression statement for the interactive mode. TOS is " -"removed from the stack and printed. In non-interactive mode, an expression " -"statement is terminated with :opcode:`POP_TOP`." +#: library/dis.rst:650 +msgid "**Miscellaneous opcodes**" msgstr "" -#: library/dis.rst:595 -msgid "" -"Calls ``set.add(TOS1[-i], TOS)``. Used to implement set comprehensions." +#: library/dis.rst:659 +msgid "Used to implement set comprehensions." msgstr "" -#: library/dis.rst:600 -msgid "" -"Calls ``list.append(TOS1[-i], TOS)``. Used to implement list comprehensions." +#: library/dis.rst:669 +msgid "Used to implement list comprehensions." msgstr "" -#: library/dis.rst:605 -msgid "" -"Calls ``dict.__setitem__(TOS1[-i], TOS1, TOS)``. Used to implement dict " -"comprehensions." +#: library/dis.rst:680 +msgid "Used to implement dict comprehensions." msgstr "" -#: library/dis.rst:609 -msgid "Map value is TOS and map key is TOS1. Before, those were reversed." +#: library/dis.rst:683 +msgid "" +"Map value is ``STACK[-1]`` and map key is ``STACK[-2]``. Before, those were " +"reversed." msgstr "" -#: library/dis.rst:612 +#: library/dis.rst:687 msgid "" "For all of the :opcode:`SET_ADD`, :opcode:`LIST_APPEND` and :opcode:" "`MAP_ADD` instructions, while the added value or key/value pair is popped " @@ -645,15 +648,29 @@ msgid "" "further iterations of the loop." msgstr "" -#: library/dis.rst:620 -msgid "Returns with TOS to the caller of the function." +#: library/dis.rst:695 +msgid "Returns with ``STACK[-1]`` to the caller of the function." msgstr "" -#: library/dis.rst:625 -msgid "Pops TOS and yields it from a :term:`generator`." +#: library/dis.rst:700 +msgid "Returns with ``co_consts[consti]`` to the caller of the function." msgstr "" -#: library/dis.rst:631 +#: library/dis.rst:707 +msgid "Yields ``STACK.pop()`` from a :term:`generator`." +msgstr "" + +#: library/dis.rst:709 +msgid "oparg set to be the stack depth." +msgstr "" + +#: library/dis.rst:712 +msgid "" +"oparg set to be the exception block depth, for efficient closing of " +"generators." +msgstr "" + +#: library/dis.rst:718 msgid "" "Checks whether ``__annotations__`` is defined in ``locals()``, if not it is " "set up to an empty ``dict``. This opcode is only emitted if a class or " @@ -661,45 +678,39 @@ msgid "" "statically." msgstr "" -#: library/dis.rst:641 -msgid "" -"Loads all symbols not starting with ``'_'`` directly from the module TOS to " -"the local namespace. The module is popped after loading all names. This " -"opcode implements ``from module import *``." -msgstr "" - -#: library/dis.rst:648 +#: library/dis.rst:728 msgid "" "Pops a value from the stack, which is used to restore the exception state." msgstr "" -#: library/dis.rst:655 +#: library/dis.rst:735 msgid "" "Re-raises the exception currently on top of the stack. If oparg is non-zero, " "pops an additional value from the stack which is used to set ``f_lasti`` of " "the current frame." msgstr "" -#: library/dis.rst:666 +#: library/dis.rst:746 msgid "" "Pops a value from the stack. Pushes the current exception to the top of the " "stack. Pushes the value originally popped back to the stack. Used in " "exception handlers." msgstr "" -#: library/dis.rst:674 +#: library/dis.rst:754 msgid "" -"Performs exception matching for ``except``. Tests whether the TOS1 is an " -"exception matching TOS. Pops TOS and pushes the boolean result of the test." +"Performs exception matching for ``except``. Tests whether the ``STACK[-2]`` " +"is an exception matching ``STACK[-1]``. Pops ``STACK[-1]`` and pushes the " +"boolean result of the test." msgstr "" -#: library/dis.rst:681 +#: library/dis.rst:762 msgid "" -"Performs exception matching for ``except*``. Applies ``split(TOS)`` on the " -"exception group representing TOS1." +"Performs exception matching for ``except*``. Applies ``split(STACK[-1])`` on " +"the exception group representing ``STACK[-2]``." msgstr "" -#: library/dis.rst:684 +#: library/dis.rst:765 msgid "" "In case of a match, pops two items from the stack and pushes the non-" "matching subgroup (``None`` in case of full match) followed by the matching " @@ -707,16 +718,7 @@ msgid "" "``None``." msgstr "" -#: library/dis.rst:693 -msgid "" -"Combines the raised and reraised exceptions list from TOS, into an exception " -"group to propagate from a try-except* block. Uses the original exception " -"group from TOS1 to reconstruct the structure of reraised exceptions. Pops " -"two items from the stack and pushes the exception to reraise or ``None`` if " -"there isn't one." -msgstr "" - -#: library/dis.rst:703 +#: library/dis.rst:774 msgid "" "Calls the function in position 4 on the stack with arguments (type, val, tb) " "representing the exception at the top of the stack. Used to implement the " @@ -724,25 +726,25 @@ msgid "" "occurred in a :keyword:`with` statement." msgstr "" -#: library/dis.rst:710 +#: library/dis.rst:781 msgid "" "The ``__exit__`` function is in position 4 of the stack rather than 7. " "Exception representation on the stack now consist of one, not three, items." msgstr "" -#: library/dis.rst:717 +#: library/dis.rst:788 msgid "" "Pushes :exc:`AssertionError` onto the stack. Used by the :keyword:`assert` " "statement." msgstr "" -#: library/dis.rst:725 +#: library/dis.rst:796 msgid "" -"Pushes :func:`builtins.__build_class__` onto the stack. It is later called " +"Pushes :func:`!builtins.__build_class__` onto the stack. It is later called " "to construct a class." msgstr "" -#: library/dis.rst:731 +#: library/dis.rst:802 msgid "" "This opcode performs several operations before a with block starts. First, " "it loads :meth:`~object.__exit__` from the context manager and pushes it " @@ -751,420 +753,498 @@ msgid "" "``__enter__()`` method is pushed onto the stack." msgstr "" -#: library/dis.rst:742 -msgid "Push ``len(TOS)`` onto the stack." +#: library/dis.rst:813 +msgid "Perform ``STACK.append(len(STACK[-1]))``." msgstr "" -#: library/dis.rst:749 +#: library/dis.rst:820 msgid "" -"If TOS is an instance of :class:`collections.abc.Mapping` (or, more " -"technically: if it has the :c:macro:`Py_TPFLAGS_MAPPING` flag set in its :c:" -"member:`~PyTypeObject.tp_flags`), push ``True`` onto the stack. Otherwise, " -"push ``False``." +"If ``STACK[-1]`` is an instance of :class:`collections.abc.Mapping` (or, " +"more technically: if it has the :c:macro:`Py_TPFLAGS_MAPPING` flag set in " +"its :c:member:`~PyTypeObject.tp_flags`), push ``True`` onto the stack. " +"Otherwise, push ``False``." msgstr "" -#: library/dis.rst:759 +#: library/dis.rst:830 msgid "" -"If TOS is an instance of :class:`collections.abc.Sequence` and is *not* an " -"instance of :class:`str`/:class:`bytes`/:class:`bytearray` (or, more " -"technically: if it has the :c:macro:`Py_TPFLAGS_SEQUENCE` flag set in its :c:" -"member:`~PyTypeObject.tp_flags`), push ``True`` onto the stack. Otherwise, " -"push ``False``." +"If ``STACK[-1]`` is an instance of :class:`collections.abc.Sequence` and is " +"*not* an instance of :class:`str`/:class:`bytes`/:class:`bytearray` (or, " +"more technically: if it has the :c:macro:`Py_TPFLAGS_SEQUENCE` flag set in " +"its :c:member:`~PyTypeObject.tp_flags`), push ``True`` onto the stack. " +"Otherwise, push ``False``." msgstr "" -#: library/dis.rst:769 +#: library/dis.rst:840 msgid "" -"TOS is a tuple of mapping keys, and TOS1 is the match subject. If TOS1 " -"contains all of the keys in TOS, push a :class:`tuple` containing the " -"corresponding values. Otherwise, push ``None``." +"``STACK[-1]`` is a tuple of mapping keys, and ``STACK[-2]`` is the match " +"subject. If ``STACK[-2]`` contains all of the keys in ``STACK[-1]``, push a :" +"class:`tuple` containing the corresponding values. Otherwise, push ``None``." msgstr "" -#: library/dis.rst:1323 +#: library/dis.rst:1467 msgid "" "Previously, this instruction also pushed a boolean value indicating success " "(``True``) or failure (``False``)." msgstr "" -#: library/dis.rst:782 +#: library/dis.rst:853 msgid "" -"Implements ``name = TOS``. *namei* is the index of *name* in the attribute :" -"attr:`co_names` of the code object. The compiler tries to use :opcode:" -"`STORE_FAST` or :opcode:`STORE_GLOBAL` if possible." +"Implements ``name = STACK.pop()``. *namei* is the index of *name* in the " +"attribute :attr:`!co_names` of the :ref:`code object `. The " +"compiler tries to use :opcode:`STORE_FAST` or :opcode:`STORE_GLOBAL` if " +"possible." msgstr "" -#: library/dis.rst:789 +#: library/dis.rst:860 msgid "" -"Implements ``del name``, where *namei* is the index into :attr:`co_names` " -"attribute of the code object." +"Implements ``del name``, where *namei* is the index into :attr:`!co_names` " +"attribute of the :ref:`code object `." msgstr "" -#: library/dis.rst:795 +#: library/dis.rst:866 msgid "" -"Unpacks TOS into *count* individual values, which are put onto the stack " -"right-to-left." +"Unpacks ``STACK[-1]`` into *count* individual values, which are put onto the " +"stack right-to-left. Require there to be exactly *count* values.::" msgstr "" -#: library/dis.rst:801 +#: library/dis.rst:875 msgid "" -"Implements assignment with a starred target: Unpacks an iterable in TOS into " -"individual values, where the total number of values can be smaller than the " -"number of items in the iterable: one of the new values will be a list of all " -"leftover items." +"Implements assignment with a starred target: Unpacks an iterable in " +"``STACK[-1]`` into individual values, where the total number of values can " +"be smaller than the number of items in the iterable: one of the new values " +"will be a list of all leftover items." msgstr "" -#: library/dis.rst:806 +#: library/dis.rst:880 +msgid "The number of values before and after the list value is limited to 255." +msgstr "" + +#: library/dis.rst:882 msgid "" -"The low byte of *counts* is the number of values before the list value, the " -"high byte of *counts* the number of values after it. The resulting values " -"are put onto the stack right-to-left." +"The number of values before the list value is encoded in the argument of the " +"opcode. The number of values after the list if any is encoded using an " +"``EXTENDED_ARG``. As a consequence, the argument can be seen as a two bytes " +"values where the low byte of *counts* is the number of values before the " +"list value, the high byte of *counts* the number of values after it." msgstr "" -#: library/dis.rst:813 +#: library/dis.rst:888 msgid "" -"Implements ``TOS.name = TOS1``, where *namei* is the index of name in :attr:" -"`co_names`." +"The extracted values are put onto the stack right-to-left, i.e. ``a, *b, c = " +"d`` will be stored after execution as ``STACK.extend((a, b, c))``." msgstr "" -#: library/dis.rst:819 +#: library/dis.rst:900 msgid "" -"Implements ``del TOS.name``, using *namei* as index into :attr:`co_names`." +"where *namei* is the index of name in :attr:`!co_names` of the :ref:`code " +"object `." msgstr "" -#: library/dis.rst:824 +#: library/dis.rst:910 +msgid "" +"where *namei* is the index of name into :attr:`!co_names` of the :ref:`code " +"object `." +msgstr "" + +#: library/dis.rst:916 msgid "Works as :opcode:`STORE_NAME`, but stores the name as a global." msgstr "" -#: library/dis.rst:829 +#: library/dis.rst:921 msgid "Works as :opcode:`DELETE_NAME`, but deletes a global name." msgstr "" -#: library/dis.rst:834 +#: library/dis.rst:926 msgid "Pushes ``co_consts[consti]`` onto the stack." msgstr "" -#: library/dis.rst:839 -msgid "Pushes the value associated with ``co_names[namei]`` onto the stack." +#: library/dis.rst:931 +msgid "" +"Pushes the value associated with ``co_names[namei]`` onto the stack. The " +"name is looked up within the locals, then the globals, then the builtins." msgstr "" -#: library/dis.rst:844 +#: library/dis.rst:937 +msgid "" +"Pushes a reference to the locals dictionary onto the stack. This is used to " +"prepare namespace dictionaries for :opcode:`LOAD_FROM_DICT_OR_DEREF` and :" +"opcode:`LOAD_FROM_DICT_OR_GLOBALS`." +msgstr "" + +#: library/dis.rst:946 +msgid "" +"Pops a mapping off the stack and looks up the value for ``co_names[namei]``. " +"If the name is not found there, looks it up in the globals and then the " +"builtins, similar to :opcode:`LOAD_GLOBAL`. This is used for loading global " +"variables in :ref:`annotation scopes ` within class " +"bodies." +msgstr "" + +#: library/dis.rst:957 msgid "" "Creates a tuple consuming *count* items from the stack, and pushes the " -"resulting tuple onto the stack." +"resulting tuple onto the stack.::" msgstr "" -#: library/dis.rst:850 +#: library/dis.rst:967 msgid "Works as :opcode:`BUILD_TUPLE`, but creates a list." msgstr "" -#: library/dis.rst:855 +#: library/dis.rst:972 msgid "Works as :opcode:`BUILD_TUPLE`, but creates a set." msgstr "" -#: library/dis.rst:860 +#: library/dis.rst:977 msgid "" "Pushes a new dictionary object onto the stack. Pops ``2 * count`` items so " -"that the dictionary holds *count* entries: ``{..., TOS3: TOS2, TOS1: TOS}``." +"that the dictionary holds *count* entries: ``{..., STACK[-4]: STACK[-3], " +"STACK[-2]: STACK[-1]}``." msgstr "" -#: library/dis.rst:864 +#: library/dis.rst:981 msgid "" "The dictionary is created from stack items instead of creating an empty " "dictionary pre-sized to hold *count* items." msgstr "" -#: library/dis.rst:871 +#: library/dis.rst:988 msgid "" "The version of :opcode:`BUILD_MAP` specialized for constant keys. Pops the " "top element on the stack which contains a tuple of keys, then starting from " -"``TOS1``, pops *count* values to form values in the built dictionary." +"``STACK[-2]``, pops *count* values to form values in the built dictionary." msgstr "" -#: library/dis.rst:880 +#: library/dis.rst:997 msgid "" "Concatenates *count* strings from the stack and pushes the resulting string " "onto the stack." msgstr "" -#: library/dis.rst:888 +#: library/dis.rst:1010 +msgid "Used to build lists." +msgstr "" + +#: library/dis.rst:1022 +msgid "Used to build sets." +msgstr "" + +#: library/dis.rst:1034 +msgid "Used to build dicts." +msgstr "" + +#: library/dis.rst:1041 +msgid "Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys." +msgstr "" + +#: library/dis.rst:1048 msgid "" -"Pops a list from the stack and pushes a tuple containing the same values." +"If the low bit of ``namei`` is not set, this replaces ``STACK[-1]`` with " +"``getattr(STACK[-1], co_names[namei>>1])``." msgstr "" -#: library/dis.rst:895 -msgid "Calls ``list.extend(TOS1[-i], TOS)``. Used to build lists." +#: library/dis.rst:1051 +msgid "" +"If the low bit of ``namei`` is set, this will attempt to load a method named " +"``co_names[namei>>1]`` from the ``STACK[-1]`` object. ``STACK[-1]`` is " +"popped. This bytecode distinguishes two cases: if ``STACK[-1]`` has a method " +"with the correct name, the bytecode pushes the unbound method and " +"``STACK[-1]``. ``STACK[-1]`` will be used as the first argument (``self``) " +"by :opcode:`CALL` when calling the unbound method. Otherwise, ``NULL`` and " +"the object returned by the attribute lookup are pushed." msgstr "" -#: library/dis.rst:902 -msgid "Calls ``set.update(TOS1[-i], TOS)``. Used to build sets." +#: library/dis.rst:1059 +msgid "" +"If the low bit of ``namei`` is set, then a ``NULL`` or ``self`` is pushed to " +"the stack before the attribute or unbound method respectively." msgstr "" -#: library/dis.rst:909 -msgid "Calls ``dict.update(TOS1[-i], TOS)``. Used to build dicts." +#: library/dis.rst:1066 +msgid "" +"This opcode implements :func:`super` (e.g. ``super().method()`` and " +"``super().attr``). It works the same as :opcode:`LOAD_ATTR`, except that " +"``namei`` is shifted left by 2 bits instead of 1, and instead of expecting a " +"single receiver on the stack, it expects three objects (from top of stack " +"down): ``self`` (the first argument to the current method), ``cls`` (the " +"class within which the current method was defined), and the global ``super``." msgstr "" -#: library/dis.rst:916 -msgid "Like :opcode:`DICT_UPDATE` but raises an exception for duplicate keys." +#: library/dis.rst:1073 +msgid "" +"The low bit of ``namei`` signals to attempt a method load, as with :opcode:" +"`LOAD_ATTR`." msgstr "" -#: library/dis.rst:923 -msgid "Replaces TOS with ``getattr(TOS, co_names[namei])``." +#: library/dis.rst:1076 +msgid "" +"The second-low bit of ``namei``, if set, means that this was a two-argument " +"call to :func:`super` (unset means zero-argument)." msgstr "" -#: library/dis.rst:928 +#: library/dis.rst:1084 msgid "" "Performs a Boolean operation. The operation name can be found in " "``cmp_op[opname]``." msgstr "" -#: library/dis.rst:934 +#: library/dis.rst:1090 msgid "Performs ``is`` comparison, or ``is not`` if ``invert`` is 1." msgstr "" -#: library/dis.rst:941 +#: library/dis.rst:1097 msgid "Performs ``in`` comparison, or ``not in`` if ``invert`` is 1." msgstr "" -#: library/dis.rst:948 +#: library/dis.rst:1104 msgid "" -"Imports the module ``co_names[namei]``. TOS and TOS1 are popped and provide " -"the *fromlist* and *level* arguments of :func:`__import__`. The module " -"object is pushed onto the stack. The current namespace is not affected: for " -"a proper import statement, a subsequent :opcode:`STORE_FAST` instruction " -"modifies the namespace." +"Imports the module ``co_names[namei]``. ``STACK[-1]`` and ``STACK[-2]`` are " +"popped and provide the *fromlist* and *level* arguments of :func:" +"`__import__`. The module object is pushed onto the stack. The current " +"namespace is not affected: for a proper import statement, a subsequent :" +"opcode:`STORE_FAST` instruction modifies the namespace." msgstr "" -#: library/dis.rst:957 +#: library/dis.rst:1112 msgid "" -"Loads the attribute ``co_names[namei]`` from the module found in TOS. The " -"resulting object is pushed onto the stack, to be subsequently stored by a :" -"opcode:`STORE_FAST` instruction." +"Loads the attribute ``co_names[namei]`` from the module found in " +"``STACK[-1]``. The resulting object is pushed onto the stack, to be " +"subsequently stored by a :opcode:`STORE_FAST` instruction." msgstr "" -#: library/dis.rst:964 +#: library/dis.rst:1119 msgid "Increments bytecode counter by *delta*." msgstr "" -#: library/dis.rst:969 +#: library/dis.rst:1124 msgid "Decrements bytecode counter by *delta*. Checks for interrupts." msgstr "" -#: library/dis.rst:976 +#: library/dis.rst:1131 msgid "Decrements bytecode counter by *delta*. Does not check for interrupts." msgstr "" -#: library/dis.rst:983 +#: library/dis.rst:1138 msgid "" -"If TOS is true, increments the bytecode counter by *delta*. TOS is popped." +"If ``STACK[-1]`` is true, increments the bytecode counter by *delta*. " +"``STACK[-1]`` is popped." msgstr "" -#: library/dis.rst:990 +#: library/dis.rst:1154 msgid "" -"If TOS is true, decrements the bytecode counter by *delta*. TOS is popped." +"The oparg is now a relative delta rather than an absolute target. This " +"opcode is a pseudo-instruction, replaced in final bytecode by the directed " +"versions (forward/backward)." msgstr "" -#: library/dis.rst:997 -msgid "" -"If TOS is false, increments the bytecode counter by *delta*. TOS is popped." +#: library/dis.rst:1159 library/dis.rst:1186 +msgid "This is no longer a pseudo-instruction." msgstr "" -#: library/dis.rst:1004 +#: library/dis.rst:1151 msgid "" -"If TOS is false, decrements the bytecode counter by *delta*. TOS is popped." +"If ``STACK[-1]`` is false, increments the bytecode counter by *delta*. " +"``STACK[-1]`` is popped." msgstr "" -#: library/dis.rst:1011 +#: library/dis.rst:1164 msgid "" -"If TOS is not ``None``, increments the bytecode counter by *delta*. TOS is " -"popped." +"If ``STACK[-1]`` is not ``None``, increments the bytecode counter by " +"*delta*. ``STACK[-1]`` is popped." msgstr "" -#: library/dis.rst:1018 +#: library/dis.rst:1181 msgid "" -"If TOS is not ``None``, decrements the bytecode counter by *delta*. TOS is " -"popped." +"This opcode is a pseudo-instruction, replaced in final bytecode by the " +"directed versions (forward/backward)." msgstr "" -#: library/dis.rst:1025 +#: library/dis.rst:1178 msgid "" -"If TOS is ``None``, increments the bytecode counter by *delta*. TOS is " -"popped." +"If ``STACK[-1]`` is ``None``, increments the bytecode counter by *delta*. " +"``STACK[-1]`` is popped." msgstr "" -#: library/dis.rst:1032 +#: library/dis.rst:1191 msgid "" -"If TOS is ``None``, decrements the bytecode counter by *delta*. TOS is " -"popped." +"``STACK[-1]`` is an :term:`iterator`. Call its :meth:`~iterator.__next__` " +"method. If this yields a new value, push it on the stack (leaving the " +"iterator below it). If the iterator indicates it is exhausted then the byte " +"code counter is incremented by *delta*." msgstr "" -#: library/dis.rst:1039 -msgid "" -"If TOS is true, increments the bytecode counter by *delta* and leaves TOS on " -"the stack. Otherwise (TOS is false), TOS is popped." +#: library/dis.rst:1196 +msgid "Up until 3.11 the iterator was popped when it was exhausted." msgstr "" -#: library/dis.rst:1054 -msgid "The oparg is now a relative delta rather than an absolute target." +#: library/dis.rst:1201 +msgid "Loads the global named ``co_names[namei>>1]`` onto the stack." msgstr "" -#: library/dis.rst:1049 +#: library/dis.rst:1203 msgid "" -"If TOS is false, increments the bytecode counter by *delta* and leaves TOS " -"on the stack. Otherwise (TOS is true), TOS is popped." +"If the low bit of ``namei`` is set, then a ``NULL`` is pushed to the stack " +"before the global variable." msgstr "" -#: library/dis.rst:1060 +#: library/dis.rst:1209 msgid "" -"TOS is an :term:`iterator`. Call its :meth:`~iterator.__next__` method. If " -"this yields a new value, push it on the stack (leaving the iterator below " -"it). If the iterator indicates it is exhausted, TOS is popped, and the byte " -"code counter is incremented by *delta*." +"Pushes a reference to the local ``co_varnames[var_num]`` onto the stack." msgstr "" -#: library/dis.rst:1068 -msgid "Loads the global named ``co_names[namei>>1]`` onto the stack." +#: library/dis.rst:1211 +msgid "" +"This opcode is now only used in situations where the local variable is " +"guaranteed to be initialized. It cannot raise :exc:`UnboundLocalError`." msgstr "" -#: library/dis.rst:1070 +#: library/dis.rst:1217 msgid "" -"If the low bit of ``namei`` is set, then a ``NULL`` is pushed to the stack " -"before the global variable." +"Pushes a reference to the local ``co_varnames[var_num]`` onto the stack, " +"raising an :exc:`UnboundLocalError` if the local variable has not been " +"initialized." msgstr "" -#: library/dis.rst:1076 +#: library/dis.rst:1225 msgid "" -"Pushes a reference to the local ``co_varnames[var_num]`` onto the stack." +"Pushes a reference to the local ``co_varnames[var_num]`` onto the stack (or " +"pushes ``NULL`` onto the stack if the local variable has not been " +"initialized) and sets ``co_varnames[var_num]`` to ``NULL``." msgstr "" -#: library/dis.rst:1081 -msgid "Stores TOS into the local ``co_varnames[var_num]``." +#: library/dis.rst:1233 +msgid "Stores ``STACK.pop()`` into the local ``co_varnames[var_num]``." msgstr "" -#: library/dis.rst:1086 +#: library/dis.rst:1238 msgid "Deletes local ``co_varnames[var_num]``." msgstr "" -#: library/dis.rst:1091 +#: library/dis.rst:1243 msgid "" "Creates a new cell in slot ``i``. If that slot is nonempty then that value " "is stored into the new cell." msgstr "" -#: library/dis.rst:1099 +#: library/dis.rst:1251 msgid "" "Pushes a reference to the cell contained in slot ``i`` of the \"fast " "locals\" storage. The name of the variable is ``co_fastlocalnames[i]``." msgstr "" -#: library/dis.rst:1102 +#: library/dis.rst:1254 msgid "" "Note that ``LOAD_CLOSURE`` is effectively an alias for ``LOAD_FAST``. It " "exists to keep bytecode a little more readable." msgstr "" -#: library/dis.rst:1114 library/dis.rst:1135 library/dis.rst:1146 +#: library/dis.rst:1266 library/dis.rst:1299 msgid "``i`` is no longer offset by the length of ``co_varnames``." msgstr "" -#: library/dis.rst:1111 +#: library/dis.rst:1263 msgid "" "Loads the cell contained in slot ``i`` of the \"fast locals\" storage. " "Pushes a reference to the object the cell contains on the stack." msgstr "" -#: library/dis.rst:1120 +#: library/dis.rst:1272 msgid "" -"Much like :opcode:`LOAD_DEREF` but first checks the locals dictionary before " -"consulting the cell. This is used for loading free variables in class " -"bodies." +"Pops a mapping off the stack and looks up the name associated with slot " +"``i`` of the \"fast locals\" storage in this mapping. If the name is not " +"found there, loads it from the cell contained in slot ``i``, similar to :" +"opcode:`LOAD_DEREF`. This is used for loading free variables in class bodies " +"(which previously used :opcode:`!LOAD_CLASSDEREF`) and in :ref:`annotation " +"scopes ` within class bodies." msgstr "" -#: library/dis.rst:1132 +#: library/dis.rst:1285 msgid "" -"Stores TOS into the cell contained in slot ``i`` of the \"fast locals\" " -"storage." +"Stores ``STACK.pop()`` into the cell contained in slot ``i`` of the \"fast " +"locals\" storage." msgstr "" -#: library/dis.rst:1141 +#: library/dis.rst:1294 msgid "" "Empties the cell contained in slot ``i`` of the \"fast locals\" storage. " "Used by the :keyword:`del` statement." msgstr "" -#: library/dis.rst:1152 +#: library/dis.rst:1305 msgid "" "Copies the ``n`` free variables from the closure into the frame. Removes the " "need for special code on the caller's side when calling closures." msgstr "" -#: library/dis.rst:1161 +#: library/dis.rst:1314 msgid "" "Raises an exception using one of the 3 forms of the ``raise`` statement, " "depending on the value of *argc*:" msgstr "" -#: library/dis.rst:1164 +#: library/dis.rst:1317 msgid "0: ``raise`` (re-raise previous exception)" msgstr "" -#: library/dis.rst:1165 -msgid "1: ``raise TOS`` (raise exception instance or type at ``TOS``)" +#: library/dis.rst:1318 +msgid "" +"1: ``raise STACK[-1]`` (raise exception instance or type at ``STACK[-1]``)" msgstr "" -#: library/dis.rst:1166 +#: library/dis.rst:1319 msgid "" -"2: ``raise TOS1 from TOS`` (raise exception instance or type at ``TOS1`` " -"with ``__cause__`` set to ``TOS``)" +"2: ``raise STACK[-2] from STACK[-1]`` (raise exception instance or type at " +"``STACK[-2]`` with ``__cause__`` set to ``STACK[-1]``)" msgstr "" -#: library/dis.rst:1172 +#: library/dis.rst:1325 msgid "" "Calls a callable object with the number of arguments specified by ``argc``, " "including the named arguments specified by the preceding :opcode:`KW_NAMES`, " "if any. On the stack are (in ascending order), either:" msgstr "" -#: library/dis.rst:1177 +#: library/dis.rst:1330 msgid "NULL" msgstr "" -#: library/dis.rst:1184 +#: library/dis.rst:1337 msgid "The callable" msgstr "" -#: library/dis.rst:1179 +#: library/dis.rst:1332 msgid "The positional arguments" msgstr "" -#: library/dis.rst:1187 +#: library/dis.rst:1340 msgid "The named arguments" msgstr "" -#: library/dis.rst:1182 +#: library/dis.rst:1335 msgid "or:" msgstr "" -#: library/dis.rst:1185 +#: library/dis.rst:1338 msgid "``self``" msgstr "" -#: library/dis.rst:1186 +#: library/dis.rst:1339 msgid "The remaining positional arguments" msgstr "" -#: library/dis.rst:1189 +#: library/dis.rst:1342 msgid "" "``argc`` is the total of the positional and named arguments, excluding " "``self`` when a ``NULL`` is not present." msgstr "" -#: library/dis.rst:1192 +#: library/dis.rst:1345 msgid "" "``CALL`` pops all arguments and the callable object off the stack, calls the " "callable object with those arguments, and pushes the return value returned " "by the callable object." msgstr "" -#: library/dis.rst:1201 +#: library/dis.rst:1354 msgid "" "Calls a callable object with variable set of positional and keyword " "arguments. If the lowest bit of *flags* is set, the top of the stack " @@ -1176,80 +1256,70 @@ msgid "" "arguments, and pushes the return value returned by the callable object." msgstr "" -#: library/dis.rst:1216 -msgid "" -"Loads a method named ``co_names[namei]`` from the TOS object. TOS is popped. " -"This bytecode distinguishes two cases: if TOS has a method with the correct " -"name, the bytecode pushes the unbound method and TOS. TOS will be used as " -"the first argument (``self``) by :opcode:`CALL` when calling the unbound " -"method. Otherwise, ``NULL`` and the object return by the attribute lookup " -"are pushed." -msgstr "" - -#: library/dis.rst:1228 -msgid "" -"Prefixes :opcode:`CALL`. Logically this is a no op. It exists to enable " -"effective specialization of calls. ``argc`` is the number of arguments as " -"described in :opcode:`CALL`." -msgstr "" - -#: library/dis.rst:1237 +#: library/dis.rst:1369 msgid "" "Pushes a ``NULL`` to the stack. Used in the call sequence to match the " "``NULL`` pushed by :opcode:`LOAD_METHOD` for non-method calls." msgstr "" -#: library/dis.rst:1246 +#: library/dis.rst:1378 msgid "" -"Prefixes :opcode:`PRECALL`. Stores a reference to ``co_consts[consti]`` into " -"an internal variable for use by :opcode:`CALL`. ``co_consts[consti]`` must " -"be a tuple of strings." +"Prefixes :opcode:`CALL`. Stores a reference to ``co_consts[consti]`` into an " +"internal variable for use by :opcode:`CALL`. ``co_consts[consti]`` must be a " +"tuple of strings." msgstr "" -#: library/dis.rst:1255 +#: library/dis.rst:1387 msgid "" "Pushes a new function object on the stack. From bottom to top, the consumed " "stack must consist of values if the argument carries a specified flag value" msgstr "" -#: library/dis.rst:1258 +#: library/dis.rst:1390 msgid "" "``0x01`` a tuple of default values for positional-only and positional-or-" "keyword parameters in positional order" msgstr "" -#: library/dis.rst:1260 +#: library/dis.rst:1392 msgid "``0x02`` a dictionary of keyword-only parameters' default values" msgstr "" -#: library/dis.rst:1261 +#: library/dis.rst:1393 msgid "``0x04`` a tuple of strings containing parameters' annotations" msgstr "" -#: library/dis.rst:1262 +#: library/dis.rst:1394 msgid "``0x08`` a tuple containing cells for free variables, making a closure" msgstr "" -#: library/dis.rst:1263 -msgid "the code associated with the function (at TOS)" +#: library/dis.rst:1395 +msgid "the code associated with the function (at ``STACK[-1]``)" msgstr "" -#: library/dis.rst:1265 +#: library/dis.rst:1397 msgid "Flag value ``0x04`` is a tuple of strings instead of dictionary" msgstr "" -#: library/dis.rst:1268 -msgid "Qualified name at TOS was removed." +#: library/dis.rst:1400 +msgid "Qualified name at ``STACK[-1]`` was removed." msgstr "" -#: library/dis.rst:1276 +#: library/dis.rst:1408 msgid "" "Pushes a slice object on the stack. *argc* must be 2 or 3. If it is 2, " -"``slice(TOS1, TOS)`` is pushed; if it is 3, ``slice(TOS2, TOS1, TOS)`` is " -"pushed. See the :func:`slice` built-in function for more information." +"implements::" +msgstr "" + +#: library/dis.rst:1414 +msgid "if it is 3, implements::" +msgstr "" + +#: library/dis.rst:1421 +msgid "See the :func:`slice` built-in function for more information." msgstr "" -#: library/dis.rst:1283 +#: library/dis.rst:1426 msgid "" "Prefixes any opcode which has an argument too big to fit into the default " "one byte. *ext* holds an additional byte which act as higher bits in the " @@ -1257,173 +1327,425 @@ msgid "" "allowed, forming an argument from two-byte to four-byte." msgstr "" -#: library/dis.rst:1291 +#: library/dis.rst:1434 msgid "" "Used for implementing formatted literal strings (f-strings). Pops an " "optional *fmt_spec* from the stack, then a required *value*. *flags* is " "interpreted as follows:" msgstr "" -#: library/dis.rst:1295 +#: library/dis.rst:1438 msgid "``(flags & 0x03) == 0x00``: *value* is formatted as-is." msgstr "" -#: library/dis.rst:1296 +#: library/dis.rst:1439 msgid "" "``(flags & 0x03) == 0x01``: call :func:`str` on *value* before formatting it." msgstr "" -#: library/dis.rst:1298 +#: library/dis.rst:1441 msgid "" "``(flags & 0x03) == 0x02``: call :func:`repr` on *value* before formatting " "it." msgstr "" -#: library/dis.rst:1300 +#: library/dis.rst:1443 msgid "" "``(flags & 0x03) == 0x03``: call :func:`ascii` on *value* before formatting " "it." msgstr "" -#: library/dis.rst:1302 +#: library/dis.rst:1445 msgid "" "``(flags & 0x04) == 0x04``: pop *fmt_spec* from the stack and use it, else " "use an empty *fmt_spec*." msgstr "" -#: library/dis.rst:1305 +#: library/dis.rst:1448 msgid "" "Formatting is performed using :c:func:`PyObject_Format`. The result is " "pushed on the stack." msgstr "" -#: library/dis.rst:1313 +#: library/dis.rst:1456 msgid "" -"TOS is a tuple of keyword attribute names, TOS1 is the class being matched " -"against, and TOS2 is the match subject. *count* is the number of positional " -"sub-patterns." +"``STACK[-1]`` is a tuple of keyword attribute names, ``STACK[-2]`` is the " +"class being matched against, and ``STACK[-3]`` is the match subject. " +"*count* is the number of positional sub-patterns." msgstr "" -#: library/dis.rst:1317 +#: library/dis.rst:1460 msgid "" -"Pop TOS, TOS1, and TOS2. If TOS2 is an instance of TOS1 and has the " -"positional and keyword attributes required by *count* and TOS, push a tuple " -"of extracted attributes. Otherwise, push ``None``." +"Pop ``STACK[-1]``, ``STACK[-2]``, and ``STACK[-3]``. If ``STACK[-3]`` is an " +"instance of ``STACK[-2]`` and has the positional and keyword attributes " +"required by *count* and ``STACK[-1]``, push a tuple of extracted attributes. " +"Otherwise, push ``None``." msgstr "" -#: library/dis.rst:1330 +#: library/dis.rst:1474 msgid "A no-op. Performs internal tracing, debugging and optimization checks." msgstr "" -#: library/dis.rst:1332 +#: library/dis.rst:1476 msgid "The ``where`` operand marks where the ``RESUME`` occurs:" msgstr "" -#: library/dis.rst:1334 -msgid "``0`` The start of a function" +#: library/dis.rst:1478 +msgid "" +"``0`` The start of a function, which is neither a generator, coroutine nor " +"an async generator" msgstr "" -#: library/dis.rst:1335 +#: library/dis.rst:1480 msgid "``1`` After a ``yield`` expression" msgstr "" -#: library/dis.rst:1336 +#: library/dis.rst:1481 msgid "``2`` After a ``yield from`` expression" msgstr "" -#: library/dis.rst:1337 +#: library/dis.rst:1482 msgid "``3`` After an ``await`` expression" msgstr "" -#: library/dis.rst:1344 +#: library/dis.rst:1489 msgid "" "Create a generator, coroutine, or async generator from the current frame. " +"Used as first opcode of in code object for the above mentioned callables. " "Clear the current frame and return the newly created generator." msgstr "" -#: library/dis.rst:1352 +#: library/dis.rst:1498 msgid "" -"Sends ``None`` to the sub-generator of this generator. Used in ``yield " +"Equivalent to ``STACK[-1] = STACK[-2].send(STACK[-1])``. Used in ``yield " "from`` and ``await`` statements." msgstr "" -#: library/dis.rst:1360 +#: library/dis.rst:1501 msgid "" -"Wraps the value on top of the stack in an ``async_generator_wrapped_value``. " -"Used to yield in async generators." +"If the call raises :exc:`StopIteration`, pop both items, push the " +"exception's ``value`` attribute, and increment the bytecode counter by " +"*delta*." msgstr "" -#: library/dis.rst:1368 +#: library/dis.rst:1510 msgid "" "This is not really an opcode. It identifies the dividing line between " -"opcodes which don't use their argument and those that do (``< " -"HAVE_ARGUMENT`` and ``>= HAVE_ARGUMENT``, respectively)." +"opcodes in the range [0,255] which don't use their argument and those that " +"do (``< HAVE_ARGUMENT`` and ``>= HAVE_ARGUMENT``, respectively)." msgstr "" -#: library/dis.rst:1372 +#: library/dis.rst:1514 +msgid "" +"If your application uses pseudo instructions, use the :data:`hasarg` " +"collection instead." +msgstr "" + +#: library/dis.rst:1517 msgid "" "Now every instruction has an argument, but opcodes ``< HAVE_ARGUMENT`` " "ignore it. Before, only opcodes ``>= HAVE_ARGUMENT`` had an argument." msgstr "" -#: library/dis.rst:1380 +#: library/dis.rst:1521 +msgid "" +"Pseudo instructions were added to the :mod:`dis` module, and for them it is " +"not true that comparison with ``HAVE_ARGUMENT`` indicates whether they use " +"their arg." +msgstr "" + +#: library/dis.rst:1529 +msgid "" +"Calls an intrinsic function with one argument. Passes ``STACK[-1]`` as the " +"argument and sets ``STACK[-1]`` to the result. Used to implement " +"functionality that is necessary but not performance critical." +msgstr "" + +#: library/dis.rst:1583 +msgid "The operand determines which intrinsic function is called:" +msgstr "" + +#: library/dis.rst:1586 +msgid "Operand" +msgstr "" + +#: library/dis.rst:1586 +msgid "Description" +msgstr "" + +#: library/dis.rst:1538 +msgid "``INTRINSIC_1_INVALID``" +msgstr "" + +#: library/dis.rst:1588 +msgid "Not valid" +msgstr "" + +#: library/dis.rst:1540 +msgid "``INTRINSIC_PRINT``" +msgstr "" + +#: library/dis.rst:1540 +msgid "Prints the argument to standard out. Used in the REPL." +msgstr "" + +#: library/dis.rst:1543 +msgid "``INTRINSIC_IMPORT_STAR``" +msgstr "" + +#: library/dis.rst:1543 +msgid "Performs ``import *`` for the named module." +msgstr "" + +#: library/dis.rst:1546 +msgid "``INTRINSIC_STOPITERATION_ERROR``" +msgstr "" + +#: library/dis.rst:1546 +msgid "Extracts the return value from a ``StopIteration`` exception." +msgstr "" + +#: library/dis.rst:1549 +msgid "``INTRINSIC_ASYNC_GEN_WRAP``" +msgstr "" + +#: library/dis.rst:1549 +msgid "Wraps an aync generator value" +msgstr "" + +#: library/dis.rst:1551 +msgid "``INTRINSIC_UNARY_POSITIVE``" +msgstr "" + +#: library/dis.rst:1551 +msgid "Performs the unary ``+`` operation" +msgstr "" + +#: library/dis.rst:1554 +msgid "``INTRINSIC_LIST_TO_TUPLE``" +msgstr "" + +#: library/dis.rst:1554 +msgid "Converts a list to a tuple" +msgstr "" + +#: library/dis.rst:1556 +msgid "``INTRINSIC_TYPEVAR``" +msgstr "" + +#: library/dis.rst:1556 +msgid "Creates a :class:`typing.TypeVar`" +msgstr "" + +#: library/dis.rst:1558 +msgid "``INTRINSIC_PARAMSPEC``" +msgstr "" + +#: library/dis.rst:1558 +msgid "Creates a :class:`typing.ParamSpec`" +msgstr "" + +#: library/dis.rst:1561 +msgid "``INTRINSIC_TYPEVARTUPLE``" +msgstr "" + +#: library/dis.rst:1561 +msgid "Creates a :class:`typing.TypeVarTuple`" +msgstr "" + +#: library/dis.rst:1564 +msgid "``INTRINSIC_SUBSCRIPT_GENERIC``" +msgstr "" + +#: library/dis.rst:1564 +msgid "Returns :class:`typing.Generic` subscripted with the argument" +msgstr "" + +#: library/dis.rst:1567 +msgid "``INTRINSIC_TYPEALIAS``" +msgstr "" + +#: library/dis.rst:1567 +msgid "" +"Creates a :class:`typing.TypeAliasType`; used in the :keyword:`type` " +"statement. The argument is a tuple of the type alias's name, type " +"parameters, and value." +msgstr "" + +#: library/dis.rst:1579 +msgid "" +"Calls an intrinsic function with two arguments. Passes ``STACK[-2]``, " +"``STACK[-1]`` as the arguments and sets ``STACK[-1]`` to the result. Used to " +"implement functionality that is necessary but not performance critical." +msgstr "" + +#: library/dis.rst:1588 +msgid "``INTRINSIC_2_INVALID``" +msgstr "" + +#: library/dis.rst:1590 +msgid "``INTRINSIC_PREP_RERAISE_STAR``" +msgstr "" + +#: library/dis.rst:1590 +msgid "Calculates the :exc:`ExceptionGroup` to raise from a ``try-except*``." +msgstr "" + +#: library/dis.rst:1594 +msgid "``INTRINSIC_TYPEVAR_WITH_BOUND``" +msgstr "" + +#: library/dis.rst:1594 +msgid "Creates a :class:`typing.TypeVar` with a bound." +msgstr "" + +#: library/dis.rst:1597 +msgid "``INTRINSIC_TYPEVAR_WITH_CONSTRAINTS``" +msgstr "" + +#: library/dis.rst:1597 +msgid "Creates a :class:`typing.TypeVar` with constraints." +msgstr "" + +#: library/dis.rst:1601 +msgid "``INTRINSIC_SET_FUNCTION_TYPE_PARAMS``" +msgstr "" + +#: library/dis.rst:1601 +msgid "Sets the ``__type_params__`` attribute of a function." +msgstr "" + +#: library/dis.rst:1608 +msgid "**Pseudo-instructions**" +msgstr "" + +#: library/dis.rst:1610 +msgid "" +"These opcodes do not appear in Python bytecode. They are used by the " +"compiler but are replaced by real opcodes or removed before bytecode is " +"generated." +msgstr "" + +#: library/dis.rst:1615 +msgid "" +"Set up an exception handler for the following code block. If an exception " +"occurs, the value stack level is restored to its current state and control " +"is transferred to the exception handler at ``target``." +msgstr "" + +#: library/dis.rst:1622 +msgid "" +"Like ``SETUP_FINALLY``, but in case of an exception also pushes the last " +"instruction (``lasti``) to the stack so that ``RERAISE`` can restore it. If " +"an exception occurs, the value stack level and the last instruction on the " +"frame are restored to their current state, and control is transferred to the " +"exception handler at ``target``." +msgstr "" + +#: library/dis.rst:1631 +msgid "" +"Like ``SETUP_CLEANUP``, but in case of an exception one more item is popped " +"from the stack before control is transferred to the exception handler at " +"``target``." +msgstr "" + +#: library/dis.rst:1635 +msgid "" +"This variant is used in :keyword:`with` and :keyword:`async with` " +"constructs, which push the return value of the context manager's :meth:" +"`~object.__enter__` or :meth:`~object.__aenter__` to the stack." +msgstr "" + +#: library/dis.rst:1642 +msgid "" +"Marks the end of the code block associated with the last ``SETUP_FINALLY``, " +"``SETUP_CLEANUP`` or ``SETUP_WITH``." +msgstr "" + +#: library/dis.rst:1648 +msgid "" +"Undirected relative jump instructions which are replaced by their directed " +"(forward/backward) counterparts by the assembler." +msgstr "" + +#: library/dis.rst:1653 +msgid "" +"Optimized unbound method lookup. Emitted as a ``LOAD_ATTR`` opcode with a " +"flag set in the arg." +msgstr "" + +#: library/dis.rst:1660 msgid "Opcode collections" msgstr "" -#: library/dis.rst:1382 +#: library/dis.rst:1662 msgid "" "These collections are provided for automatic introspection of bytecode " "instructions:" msgstr "" -#: library/dis.rst:1387 +#: library/dis.rst:1665 +msgid "" +"The collections now contain pseudo instructions as well. These are opcodes " +"with values ``>= MIN_PSEUDO_OPCODE``." +msgstr "" + +#: library/dis.rst:1671 msgid "Sequence of operation names, indexable using the bytecode." msgstr "" -#: library/dis.rst:1392 +#: library/dis.rst:1676 msgid "Dictionary mapping operation names to bytecodes." msgstr "" -#: library/dis.rst:1397 +#: library/dis.rst:1681 msgid "Sequence of all compare operation names." msgstr "" -#: library/dis.rst:1402 +#: library/dis.rst:1686 +msgid "Sequence of bytecodes that use their argument." +msgstr "" + +#: library/dis.rst:1693 msgid "Sequence of bytecodes that access a constant." msgstr "" -#: library/dis.rst:1407 +#: library/dis.rst:1698 msgid "" -"Sequence of bytecodes that access a free variable (note that 'free' in this " -"context refers to names in the current scope that are referenced by inner " -"scopes or names in outer scopes that are referenced from this scope. It " -"does *not* include references to global or builtin scopes)." +"Sequence of bytecodes that access a free variable. 'free' in this context " +"refers to names in the current scope that are referenced by inner scopes or " +"names in outer scopes that are referenced from this scope. It does *not* " +"include references to global or builtin scopes." msgstr "" -#: library/dis.rst:1415 +#: library/dis.rst:1706 msgid "Sequence of bytecodes that access an attribute by name." msgstr "" -#: library/dis.rst:1420 +#: library/dis.rst:1711 msgid "Sequence of bytecodes that have a relative jump target." msgstr "" -#: library/dis.rst:1425 +#: library/dis.rst:1716 msgid "Sequence of bytecodes that have an absolute jump target." msgstr "" -#: library/dis.rst:1430 +#: library/dis.rst:1721 msgid "Sequence of bytecodes that access a local variable." msgstr "" -#: library/dis.rst:1435 +#: library/dis.rst:1726 msgid "Sequence of bytecodes of Boolean operations." msgstr "" -#: library/dis.rst:1274 +#: library/dis.rst:1730 +msgid "Sequence of bytecodes that set an exception handler." +msgstr "" + +#: library/dis.rst:1406 msgid "built-in function" msgstr "" -#: library/dis.rst:1274 +#: library/dis.rst:1406 msgid "slice" msgstr "" diff --git a/library/distutils.po b/library/distutils.po deleted file mode 100644 index db27e9eed..000000000 --- a/library/distutils.po +++ /dev/null @@ -1,94 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-17 01:28+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: library/distutils.rst:2 -msgid ":mod:`distutils` --- Building and installing Python modules" -msgstr "" - -#: library/distutils.rst:12 -msgid "" -":mod:`distutils` is deprecated with removal planned for Python 3.12. See " -"the :ref:`What's New ` entry for more information." -msgstr "" - -#: library/distutils.rst:17 -msgid "" -"The :mod:`distutils` package provides support for building and installing " -"additional modules into a Python installation. The new modules may be " -"either 100%-pure Python, or may be extension modules written in C, or may be " -"collections of Python packages which include modules coded in both Python " -"and C." -msgstr "" - -#: library/distutils.rst:22 -msgid "" -"Most Python users will *not* want to use this module directly, but instead " -"use the cross-version tools maintained by the Python Packaging Authority. In " -"particular, `setuptools `__ is " -"an enhanced alternative to :mod:`distutils` that provides:" -msgstr "" - -#: library/distutils.rst:28 -msgid "support for declaring project dependencies" -msgstr "" - -#: library/distutils.rst:29 -msgid "" -"additional mechanisms for configuring which files to include in source " -"releases (including plugins for integration with version control systems)" -msgstr "" - -#: library/distutils.rst:31 -msgid "" -"the ability to declare project \"entry points\", which can be used as the " -"basis for application plugin systems" -msgstr "" - -#: library/distutils.rst:33 -msgid "" -"the ability to automatically generate Windows command line executables at " -"installation time rather than needing to prebuild them" -msgstr "" - -#: library/distutils.rst:35 -msgid "consistent behaviour across all supported Python versions" -msgstr "" - -#: library/distutils.rst:37 -msgid "" -"The recommended `pip `__ installer runs all ``setup." -"py`` scripts with ``setuptools``, even if the script itself only imports " -"``distutils``. Refer to the `Python Packaging User Guide `_ for more information." -msgstr "" - -#: library/distutils.rst:43 -msgid "" -"For the benefits of packaging tool authors and users seeking a deeper " -"understanding of the details of the current packaging and distribution " -"system, the legacy :mod:`distutils` based user documentation and API " -"reference remain available:" -msgstr "" - -#: library/distutils.rst:48 -msgid ":ref:`install-index`" -msgstr "" - -#: library/distutils.rst:49 -msgid ":ref:`distutils-index`" -msgstr "" diff --git a/library/doctest.po b/library/doctest.po index e6fddb1f7..abecce8cb 100644 --- a/library/doctest.po +++ b/library/doctest.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -309,7 +309,7 @@ msgid "" "preserve your backslashes exactly as you type them::" msgstr "" -#: library/doctest.rst:357 +#: library/doctest.rst:358 msgid "" "Otherwise, the backslash will be interpreted as part of the string. For " "example, the ``\\n`` above would be interpreted as a newline character. " @@ -317,21 +317,21 @@ msgid "" "use a raw string)::" msgstr "" -#: library/doctest.rst:366 +#: library/doctest.rst:368 msgid "The starting column doesn't matter::" msgstr "" -#: library/doctest.rst:373 +#: library/doctest.rst:375 msgid "" "and as many leading whitespace characters are stripped from the expected " "output as appeared in the initial ``'>>> '`` line that started the example." msgstr "" -#: library/doctest.rst:380 +#: library/doctest.rst:382 msgid "What's the Execution Context?" msgstr "" -#: library/doctest.rst:382 +#: library/doctest.rst:384 msgid "" "By default, each time :mod:`doctest` finds a docstring to test, it uses a " "*shallow copy* of :mod:`M`'s globals, so that running tests doesn't change " @@ -342,17 +342,17 @@ msgid "" "defined in other docstrings." msgstr "" -#: library/doctest.rst:390 +#: library/doctest.rst:392 msgid "" "You can force use of your own dict as the execution context by passing " "``globs=your_dict`` to :func:`testmod` or :func:`testfile` instead." msgstr "" -#: library/doctest.rst:397 +#: library/doctest.rst:399 msgid "What About Exceptions?" msgstr "" -#: library/doctest.rst:399 +#: library/doctest.rst:401 msgid "" "No problem, provided that the traceback is the only output produced by the " "example: just paste in the traceback. [#]_ Since tracebacks contain details " @@ -361,31 +361,31 @@ msgid "" "it accepts." msgstr "" -#: library/doctest.rst:405 +#: library/doctest.rst:407 msgid "Simple example::" msgstr "" -#: library/doctest.rst:412 +#: library/doctest.rst:414 msgid "" "That doctest succeeds if :exc:`ValueError` is raised, with the ``list." "remove(x): x not in list`` detail as shown." msgstr "" -#: library/doctest.rst:415 +#: library/doctest.rst:417 msgid "" "The expected output for an exception must start with a traceback header, " "which may be either of the following two lines, indented the same as the " "first line of the example::" msgstr "" -#: library/doctest.rst:422 +#: library/doctest.rst:424 msgid "" "The traceback header is followed by an optional traceback stack, whose " "contents are ignored by doctest. The traceback stack is typically omitted, " "or copied verbatim from an interactive session." msgstr "" -#: library/doctest.rst:426 +#: library/doctest.rst:428 msgid "" "The traceback stack is followed by the most interesting part: the line(s) " "containing the exception type and detail. This is usually the last line of " @@ -393,20 +393,20 @@ msgid "" "multi-line detail::" msgstr "" -#: library/doctest.rst:438 +#: library/doctest.rst:440 msgid "" "The last three lines (starting with :exc:`ValueError`) are compared against " "the exception's type and detail, and the rest are ignored." msgstr "" -#: library/doctest.rst:441 +#: library/doctest.rst:443 msgid "" "Best practice is to omit the traceback stack, unless it adds significant " "documentation value to the example. So the last example is probably better " "as::" msgstr "" -#: library/doctest.rst:451 +#: library/doctest.rst:453 msgid "" "Note that tracebacks are treated very specially. In particular, in the " "rewritten example, the use of ``...`` is independent of doctest's :const:" @@ -415,11 +415,11 @@ msgid "" "transcript of a Monty Python skit." msgstr "" -#: library/doctest.rst:457 +#: library/doctest.rst:459 msgid "Some details you should read once, but won't need to remember:" msgstr "" -#: library/doctest.rst:459 +#: library/doctest.rst:461 msgid "" "Doctest can't guess whether your expected output came from an exception " "traceback or from ordinary printing. So, e.g., an example that expects " @@ -429,7 +429,7 @@ msgid "" "create real problems." msgstr "" -#: library/doctest.rst:466 +#: library/doctest.rst:468 msgid "" "Each line of the traceback stack (if present) must be indented further than " "the first line of the example, *or* start with a non-alphanumeric character. " @@ -438,14 +438,14 @@ msgid "" "course this does the right thing for genuine tracebacks." msgstr "" -#: library/doctest.rst:472 +#: library/doctest.rst:474 msgid "" "When the :const:`IGNORE_EXCEPTION_DETAIL` doctest option is specified, " "everything following the leftmost colon and any module information in the " "exception name is ignored." msgstr "" -#: library/doctest.rst:476 +#: library/doctest.rst:478 msgid "" "The interactive shell omits the traceback header line for some :exc:" "`SyntaxError`\\ s. But doctest uses the traceback header line to " @@ -454,13 +454,13 @@ msgid "" "need to manually add the traceback header line to your test example." msgstr "" -#: library/doctest.rst:484 +#: library/doctest.rst:486 msgid "" "For some exceptions, Python displays the position of the error using ``^`` " "markers and tildes::" msgstr "" -#: library/doctest.rst:493 +#: library/doctest.rst:495 msgid "" "Since the lines showing the position of the error come before the exception " "type and detail, they are not checked by doctest. For example, the " @@ -468,11 +468,11 @@ msgid "" "location::" msgstr "" -#: library/doctest.rst:508 +#: library/doctest.rst:510 msgid "Option Flags" msgstr "" -#: library/doctest.rst:510 +#: library/doctest.rst:512 msgid "" "A number of option flags control various aspects of doctest's behavior. " "Symbolic names for the flags are supplied as module constants, which can be :" @@ -482,17 +482,17 @@ msgid "" "option." msgstr "" -#: library/doctest.rst:516 +#: library/doctest.rst:518 msgid "The ``-o`` command line option." msgstr "" -#: library/doctest.rst:519 +#: library/doctest.rst:521 msgid "" "The first group of options define test semantics, controlling aspects of how " "doctest decides whether actual output matches an example's expected output:" msgstr "" -#: library/doctest.rst:525 +#: library/doctest.rst:527 msgid "" "By default, if an expected output block contains just ``1``, an actual " "output block containing just ``1`` or just ``True`` is considered to be a " @@ -504,7 +504,7 @@ msgid "" "not for several years." msgstr "" -#: library/doctest.rst:537 +#: library/doctest.rst:539 msgid "" "By default, if an expected output block contains a line containing only the " "string ````, then that line will match a blank line in the actual " @@ -513,7 +513,7 @@ msgid "" "`DONT_ACCEPT_BLANKLINE` is specified, this substitution is not allowed." msgstr "" -#: library/doctest.rst:546 +#: library/doctest.rst:548 msgid "" "When specified, all sequences of whitespace (blanks and newlines) are " "treated as equal. Any sequence of whitespace within the expected output " @@ -523,7 +523,7 @@ msgid "" "across multiple lines in your source." msgstr "" -#: library/doctest.rst:557 +#: library/doctest.rst:559 msgid "" "When specified, an ellipsis marker (``...``) in the expected output can " "match any substring in the actual output. This includes substrings that " @@ -532,14 +532,14 @@ msgid "" "matched too much!\" surprises that ``.*`` is prone to in regular expressions." msgstr "" -#: library/doctest.rst:566 +#: library/doctest.rst:568 msgid "" "When specified, doctests expecting exceptions pass so long as an exception " "of the expected type is raised, even if the details (message and fully " "qualified exception name) don't match." msgstr "" -#: library/doctest.rst:570 +#: library/doctest.rst:572 msgid "" "For example, an example expecting ``ValueError: 42`` will pass if the actual " "exception raised is ``ValueError: 3*14``, but will fail if, say, a :exc:" @@ -549,20 +549,20 @@ msgid "" "these variations will work with the flag specified:" msgstr "" -#: library/doctest.rst:592 +#: library/doctest.rst:594 msgid "" "Note that :const:`ELLIPSIS` can also be used to ignore the details of the " "exception message, but such a test may still fail based on whether the " "module name is present or matches exactly." msgstr "" -#: library/doctest.rst:596 +#: library/doctest.rst:598 msgid "" ":const:`IGNORE_EXCEPTION_DETAIL` now also ignores any information relating " "to the module containing the exception under test." msgstr "" -#: library/doctest.rst:603 +#: library/doctest.rst:605 msgid "" "When specified, do not run the example at all. This can be useful in " "contexts where doctest examples serve as both documentation and test cases, " @@ -571,32 +571,32 @@ msgid "" "might depend on resources which would be unavailable to the test driver." msgstr "" -#: library/doctest.rst:609 +#: library/doctest.rst:611 msgid "" "The SKIP flag can also be used for temporarily \"commenting out\" examples." msgstr "" -#: library/doctest.rst:614 +#: library/doctest.rst:616 msgid "A bitmask or'ing together all the comparison flags above." msgstr "" -#: library/doctest.rst:616 +#: library/doctest.rst:618 msgid "The second group of options controls how test failures are reported:" msgstr "" -#: library/doctest.rst:621 +#: library/doctest.rst:623 msgid "" "When specified, failures that involve multi-line expected and actual outputs " "are displayed using a unified diff." msgstr "" -#: library/doctest.rst:627 +#: library/doctest.rst:629 msgid "" "When specified, failures that involve multi-line expected and actual outputs " "will be displayed using a context diff." msgstr "" -#: library/doctest.rst:633 +#: library/doctest.rst:635 msgid "" "When specified, differences are computed by ``difflib.Differ``, using the " "same algorithm as the popular :file:`ndiff.py` utility. This is the only " @@ -606,7 +606,7 @@ msgid "" "mismatching column positions." msgstr "" -#: library/doctest.rst:642 +#: library/doctest.rst:644 msgid "" "When specified, display the first failing example in each doctest, but " "suppress output for all remaining examples. This will prevent doctest from " @@ -617,7 +617,7 @@ msgid "" "of failures reported; only the output is suppressed." msgstr "" -#: library/doctest.rst:653 +#: library/doctest.rst:655 msgid "" "When specified, exit after the first failing example and don't attempt to " "run the remaining examples. Thus, the number of failures reported will be at " @@ -625,23 +625,23 @@ msgid "" "first failure won't even produce debugging output." msgstr "" -#: library/doctest.rst:658 +#: library/doctest.rst:660 msgid "" "The doctest command line accepts the option ``-f`` as a shorthand for ``-o " "FAIL_FAST``." msgstr "" -#: library/doctest.rst:666 +#: library/doctest.rst:668 msgid "A bitmask or'ing together all the reporting flags above." msgstr "" -#: library/doctest.rst:669 +#: library/doctest.rst:671 msgid "" "There is also a way to register new option flag names, though this isn't " "useful unless you intend to extend :mod:`doctest` internals via subclassing:" msgstr "" -#: library/doctest.rst:675 +#: library/doctest.rst:677 msgid "" "Create a new option flag with a given name, and return the new flag's " "integer value. :func:`register_optionflag` can be used when subclassing :" @@ -650,35 +650,35 @@ msgid "" "be called using the following idiom::" msgstr "" -#: library/doctest.rst:691 +#: library/doctest.rst:693 msgid "Directives" msgstr "" -#: library/doctest.rst:693 +#: library/doctest.rst:695 msgid "" "Doctest directives may be used to modify the :ref:`option flags ` for an individual example. Doctest directives are special Python " "comments following an example's source code:" msgstr "" -#: library/doctest.rst:704 +#: library/doctest.rst:706 msgid "" "Whitespace is not allowed between the ``+`` or ``-`` and the directive " "option name. The directive option name can be any of the option flag names " "explained above." msgstr "" -#: library/doctest.rst:708 +#: library/doctest.rst:710 msgid "" "An example's doctest directives modify doctest's behavior for that single " "example. Use ``+`` to enable the named behavior, or ``-`` to disable it." msgstr "" -#: library/doctest.rst:711 +#: library/doctest.rst:713 msgid "For example, this test passes:" msgstr "" -#: library/doctest.rst:720 +#: library/doctest.rst:722 msgid "" "Without the directive it would fail, both because the actual output doesn't " "have two blanks before the single-digit list elements, and because the " @@ -686,26 +686,26 @@ msgid "" "a directive to do so:" msgstr "" -#: library/doctest.rst:731 +#: library/doctest.rst:733 msgid "" "Multiple directives can be used on a single physical line, separated by " "commas:" msgstr "" -#: library/doctest.rst:740 +#: library/doctest.rst:742 msgid "" "If multiple directive comments are used for a single example, then they are " "combined:" msgstr "" -#: library/doctest.rst:750 +#: library/doctest.rst:752 msgid "" "As the previous example shows, you can add ``...`` lines to your example " "containing only directives. This can be useful when an example is too long " "for a directive to comfortably fit on the same line:" msgstr "" -#: library/doctest.rst:761 +#: library/doctest.rst:763 msgid "" "Note that since all options are disabled by default, and directives apply " "only to the example they appear in, enabling options (via ``+`` in a " @@ -715,11 +715,11 @@ msgid "" "be useful." msgstr "" -#: library/doctest.rst:771 +#: library/doctest.rst:773 msgid "Warnings" msgstr "" -#: library/doctest.rst:773 +#: library/doctest.rst:775 msgid "" ":mod:`doctest` is serious about requiring exact matches in expected output. " "If even a single character doesn't match, the test fails. This will " @@ -729,51 +729,51 @@ msgid "" "test like ::" msgstr "" -#: library/doctest.rst:782 +#: library/doctest.rst:784 msgid "is vulnerable! One workaround is to do ::" msgstr "" -#: library/doctest.rst:787 +#: library/doctest.rst:789 msgid "instead. Another is to do ::" msgstr "" -#: library/doctest.rst:793 +#: library/doctest.rst:795 msgid "There are others, but you get the idea." msgstr "" -#: library/doctest.rst:795 +#: library/doctest.rst:797 msgid "Another bad idea is to print things that embed an object address, like" msgstr "" -#: library/doctest.rst:805 +#: library/doctest.rst:807 msgid "" "The :const:`ELLIPSIS` directive gives a nice approach for the last example:" msgstr "" -#: library/doctest.rst:813 +#: library/doctest.rst:815 msgid "" "Floating-point numbers are also subject to small output variations across " "platforms, because Python defers to the platform C library for float " "formatting, and C libraries vary widely in quality here. ::" msgstr "" -#: library/doctest.rst:824 +#: library/doctest.rst:826 msgid "" "Numbers of the form ``I/2.**J`` are safe across all platforms, and I often " "contrive doctest examples to produce numbers of that form::" msgstr "" -#: library/doctest.rst:830 +#: library/doctest.rst:832 msgid "" "Simple fractions are also easier for people to understand, and that makes " "for better documentation." msgstr "" -#: library/doctest.rst:837 +#: library/doctest.rst:839 msgid "Basic API" msgstr "" -#: library/doctest.rst:839 +#: library/doctest.rst:841 msgid "" "The functions :func:`testmod` and :func:`testfile` provide a simple " "interface to doctest that should be sufficient for most basic uses. For a " @@ -781,25 +781,25 @@ msgid "" "simple-testmod` and :ref:`doctest-simple-testfile`." msgstr "" -#: library/doctest.rst:847 +#: library/doctest.rst:849 msgid "" "All arguments except *filename* are optional, and should be specified in " "keyword form." msgstr "" -#: library/doctest.rst:850 +#: library/doctest.rst:852 msgid "" "Test examples in the file named *filename*. Return ``(failure_count, " "test_count)``." msgstr "" -#: library/doctest.rst:853 +#: library/doctest.rst:855 msgid "" "Optional argument *module_relative* specifies how the filename should be " "interpreted:" msgstr "" -#: library/doctest.rst:856 +#: library/doctest.rst:858 msgid "" "If *module_relative* is ``True`` (the default), then *filename* specifies an " "OS-independent module-relative path. By default, this path is relative to " @@ -809,20 +809,20 @@ msgid "" "absolute path (i.e., it may not begin with ``/``)." msgstr "" -#: library/doctest.rst:863 +#: library/doctest.rst:865 msgid "" "If *module_relative* is ``False``, then *filename* specifies an OS-specific " "path. The path may be absolute or relative; relative paths are resolved " "with respect to the current working directory." msgstr "" -#: library/doctest.rst:867 +#: library/doctest.rst:869 msgid "" "Optional argument *name* gives the name of the test; by default, or if " "``None``, ``os.path.basename(filename)`` is used." msgstr "" -#: library/doctest.rst:870 +#: library/doctest.rst:872 msgid "" "Optional argument *package* is a Python package or the name of a Python " "package whose directory should be used as the base directory for a module-" @@ -831,7 +831,7 @@ msgid "" "is an error to specify *package* if *module_relative* is ``False``." msgstr "" -#: library/doctest.rst:876 +#: library/doctest.rst:878 msgid "" "Optional argument *globs* gives a dict to be used as the globals when " "executing examples. A new shallow copy of this dict is created for the " @@ -839,7 +839,7 @@ msgid "" "``None``, a new empty dict is used." msgstr "" -#: library/doctest.rst:881 +#: library/doctest.rst:883 msgid "" "Optional argument *extraglobs* gives a dict merged into the globals used to " "execute examples. This works like :meth:`dict.update`: if *globs* and " @@ -852,27 +852,27 @@ msgid "" "tested." msgstr "" -#: library/doctest.rst:890 +#: library/doctest.rst:892 msgid "" "Optional argument *verbose* prints lots of stuff if true, and prints only " "failures if false; by default, or if ``None``, it's true if and only if ``'-" "v'`` is in ``sys.argv``." msgstr "" -#: library/doctest.rst:894 +#: library/doctest.rst:896 msgid "" "Optional argument *report* prints a summary at the end when true, else " "prints nothing at the end. In verbose mode, the summary is detailed, else " "the summary is very brief (in fact, empty if all tests passed)." msgstr "" -#: library/doctest.rst:898 +#: library/doctest.rst:900 msgid "" "Optional argument *optionflags* (default value 0) takes the :ref:`bitwise OR " "` of option flags. See section :ref:`doctest-options`." msgstr "" -#: library/doctest.rst:902 +#: library/doctest.rst:904 msgid "" "Optional argument *raise_on_error* defaults to false. If true, an exception " "is raised upon the first failure or unexpected exception in an example. " @@ -880,33 +880,33 @@ msgid "" "continue running examples." msgstr "" -#: library/doctest.rst:1047 +#: library/doctest.rst:1049 msgid "" "Optional argument *parser* specifies a :class:`DocTestParser` (or subclass) " "that should be used to extract tests from the files. It defaults to a " "normal parser (i.e., ``DocTestParser()``)." msgstr "" -#: library/doctest.rst:1051 +#: library/doctest.rst:1053 msgid "" "Optional argument *encoding* specifies an encoding that should be used to " "convert the file to unicode." msgstr "" -#: library/doctest.rst:917 +#: library/doctest.rst:919 msgid "" "All arguments are optional, and all except for *m* should be specified in " "keyword form." msgstr "" -#: library/doctest.rst:920 +#: library/doctest.rst:922 msgid "" "Test examples in docstrings in functions and classes reachable from module " "*m* (or module :mod:`__main__` if *m* is not supplied or is ``None``), " "starting with ``m.__doc__``." msgstr "" -#: library/doctest.rst:924 +#: library/doctest.rst:926 msgid "" "Also test examples reachable from dict ``m.__test__``, if it exists and is " "not ``None``. ``m.__test__`` maps names (strings) to functions, classes and " @@ -914,22 +914,22 @@ msgid "" "are searched directly, as if they were docstrings." msgstr "" -#: library/doctest.rst:929 +#: library/doctest.rst:931 msgid "" "Only docstrings attached to objects belonging to module *m* are searched." msgstr "" -#: library/doctest.rst:931 +#: library/doctest.rst:933 msgid "Return ``(failure_count, test_count)``." msgstr "" -#: library/doctest.rst:933 +#: library/doctest.rst:935 msgid "" "Optional argument *name* gives the name of the module; by default, or if " "``None``, ``m.__name__`` is used." msgstr "" -#: library/doctest.rst:936 +#: library/doctest.rst:938 msgid "" "Optional argument *exclude_empty* defaults to false. If true, objects for " "which no doctests are found are excluded from consideration. The default is " @@ -939,39 +939,39 @@ msgid "" "class:`DocTestFinder` constructor defaults to true." msgstr "" -#: library/doctest.rst:943 +#: library/doctest.rst:945 msgid "" "Optional arguments *extraglobs*, *verbose*, *report*, *optionflags*, " "*raise_on_error*, and *globs* are the same as for function :func:`testfile` " "above, except that *globs* defaults to ``m.__dict__``." msgstr "" -#: library/doctest.rst:950 +#: library/doctest.rst:952 msgid "" "Test examples associated with object *f*; for example, *f* may be a string, " "a module, a function, or a class object." msgstr "" -#: library/doctest.rst:953 +#: library/doctest.rst:955 msgid "" "A shallow copy of dictionary argument *globs* is used for the execution " "context." msgstr "" -#: library/doctest.rst:955 +#: library/doctest.rst:957 msgid "" "Optional argument *name* is used in failure messages, and defaults to " "``\"NoName\"``." msgstr "" -#: library/doctest.rst:958 +#: library/doctest.rst:960 msgid "" "If optional argument *verbose* is true, output is generated even if there " "are no failures. By default, output is generated only in case of an example " "failure." msgstr "" -#: library/doctest.rst:961 +#: library/doctest.rst:963 msgid "" "Optional argument *compileflags* gives the set of flags that should be used " "by the Python compiler when running the examples. By default, or if " @@ -979,16 +979,16 @@ msgid "" "found in *globs*." msgstr "" -#: library/doctest.rst:965 +#: library/doctest.rst:967 msgid "" "Optional argument *optionflags* works as for function :func:`testfile` above." msgstr "" -#: library/doctest.rst:971 +#: library/doctest.rst:973 msgid "Unittest API" msgstr "" -#: library/doctest.rst:973 +#: library/doctest.rst:975 msgid "" "As your collection of doctest'ed modules grows, you'll want a way to run all " "their doctests systematically. :mod:`doctest` provides two functions that " @@ -997,19 +997,19 @@ msgid "" "discovery, include a :func:`load_tests` function in your test module::" msgstr "" -#: library/doctest.rst:987 +#: library/doctest.rst:989 msgid "" "There are two main functions for creating :class:`unittest.TestSuite` " "instances from text files and modules with doctests:" msgstr "" -#: library/doctest.rst:993 +#: library/doctest.rst:995 msgid "" "Convert doctest tests from one or more text files to a :class:`unittest." "TestSuite`." msgstr "" -#: library/doctest.rst:996 +#: library/doctest.rst:998 msgid "" "The returned :class:`unittest.TestSuite` is to be run by the unittest " "framework and runs the interactive examples in each file. If an example in " @@ -1018,21 +1018,21 @@ msgid "" "containing the test and a (sometimes approximate) line number." msgstr "" -#: library/doctest.rst:1002 +#: library/doctest.rst:1004 msgid "Pass one or more paths (as strings) to text files to be examined." msgstr "" -#: library/doctest.rst:1004 +#: library/doctest.rst:1006 msgid "Options may be provided as keyword arguments:" msgstr "" -#: library/doctest.rst:1006 +#: library/doctest.rst:1008 msgid "" "Optional argument *module_relative* specifies how the filenames in *paths* " "should be interpreted:" msgstr "" -#: library/doctest.rst:1009 +#: library/doctest.rst:1011 msgid "" "If *module_relative* is ``True`` (the default), then each filename in " "*paths* specifies an OS-independent module-relative path. By default, this " @@ -1043,14 +1043,14 @@ msgid "" "``)." msgstr "" -#: library/doctest.rst:1017 +#: library/doctest.rst:1019 msgid "" "If *module_relative* is ``False``, then each filename in *paths* specifies " "an OS-specific path. The path may be absolute or relative; relative paths " "are resolved with respect to the current working directory." msgstr "" -#: library/doctest.rst:1021 +#: library/doctest.rst:1023 msgid "" "Optional argument *package* is a Python package or the name of a Python " "package whose directory should be used as the base directory for module-" @@ -1060,7 +1060,7 @@ msgid "" "``False``." msgstr "" -#: library/doctest.rst:1028 +#: library/doctest.rst:1030 msgid "" "Optional argument *setUp* specifies a set-up function for the test suite. " "This is called before running the tests in each file. The *setUp* function " @@ -1068,7 +1068,7 @@ msgid "" "test globals as the *globs* attribute of the test passed." msgstr "" -#: library/doctest.rst:1033 +#: library/doctest.rst:1035 msgid "" "Optional argument *tearDown* specifies a tear-down function for the test " "suite. This is called after running the tests in each file. The *tearDown* " @@ -1076,14 +1076,14 @@ msgid "" "access the test globals as the *globs* attribute of the test passed." msgstr "" -#: library/doctest.rst:1072 +#: library/doctest.rst:1074 msgid "" "Optional argument *globs* is a dictionary containing the initial global " "variables for the tests. A new copy of this dictionary is created for each " "test. By default, *globs* is a new empty dictionary." msgstr "" -#: library/doctest.rst:1042 +#: library/doctest.rst:1044 msgid "" "Optional argument *optionflags* specifies the default doctest options for " "the tests, created by or-ing together individual option flags. See section :" @@ -1091,17 +1091,17 @@ msgid "" "for a better way to set reporting options." msgstr "" -#: library/doctest.rst:1054 +#: library/doctest.rst:1056 msgid "" "The global ``__file__`` is added to the globals provided to doctests loaded " "from a text file using :func:`DocFileSuite`." msgstr "" -#: library/doctest.rst:1060 +#: library/doctest.rst:1062 msgid "Convert doctest tests for a module to a :class:`unittest.TestSuite`." msgstr "" -#: library/doctest.rst:1062 +#: library/doctest.rst:1064 msgid "" "The returned :class:`unittest.TestSuite` is to be run by the unittest " "framework and runs each doctest in the module. If any of the doctests fail, " @@ -1110,42 +1110,42 @@ msgid "" "(sometimes approximate) line number." msgstr "" -#: library/doctest.rst:1068 +#: library/doctest.rst:1070 msgid "" "Optional argument *module* provides the module to be tested. It can be a " "module object or a (possibly dotted) module name. If not specified, the " "module calling this function is used." msgstr "" -#: library/doctest.rst:1076 +#: library/doctest.rst:1078 msgid "" "Optional argument *extraglobs* specifies an extra set of global variables, " "which is merged into *globs*. By default, no extra globals are used." msgstr "" -#: library/doctest.rst:1079 +#: library/doctest.rst:1081 msgid "" "Optional argument *test_finder* is the :class:`DocTestFinder` object (or a " "drop-in replacement) that is used to extract doctests from the module." msgstr "" -#: library/doctest.rst:1082 +#: library/doctest.rst:1084 msgid "" "Optional arguments *setUp*, *tearDown*, and *optionflags* are the same as " "for function :func:`DocFileSuite` above." msgstr "" -#: library/doctest.rst:1085 +#: library/doctest.rst:1087 msgid "This function uses the same search technique as :func:`testmod`." msgstr "" -#: library/doctest.rst:1087 +#: library/doctest.rst:1089 msgid "" ":func:`DocTestSuite` returns an empty :class:`unittest.TestSuite` if " "*module* contains no docstrings instead of raising :exc:`ValueError`." msgstr "" -#: library/doctest.rst:1092 +#: library/doctest.rst:1094 msgid "" "Under the covers, :func:`DocTestSuite` creates a :class:`unittest.TestSuite` " "out of :class:`doctest.DocTestCase` instances, and :class:`DocTestCase` is a " @@ -1154,14 +1154,14 @@ msgid "" "questions about the exact details of :mod:`unittest` integration." msgstr "" -#: library/doctest.rst:1098 +#: library/doctest.rst:1100 msgid "" "Similarly, :func:`DocFileSuite` creates a :class:`unittest.TestSuite` out " "of :class:`doctest.DocFileCase` instances, and :class:`DocFileCase` is a " "subclass of :class:`DocTestCase`." msgstr "" -#: library/doctest.rst:1102 +#: library/doctest.rst:1104 msgid "" "So both ways of creating a :class:`unittest.TestSuite` run instances of :" "class:`DocTestCase`. This is important for a subtle reason: when you run :" @@ -1174,23 +1174,23 @@ msgid "" "through :mod:`unittest` to :mod:`doctest` test runners." msgstr "" -#: library/doctest.rst:1112 +#: library/doctest.rst:1114 msgid "" "For this reason, :mod:`doctest` also supports a notion of :mod:`doctest` " "reporting flags specific to :mod:`unittest` support, via this function:" msgstr "" -#: library/doctest.rst:1118 +#: library/doctest.rst:1120 msgid "Set the :mod:`doctest` reporting flags to use." msgstr "" -#: library/doctest.rst:1120 +#: library/doctest.rst:1122 msgid "" "Argument *flags* takes the :ref:`bitwise OR ` of option flags. See " "section :ref:`doctest-options`. Only \"reporting flags\" can be used." msgstr "" -#: library/doctest.rst:1123 +#: library/doctest.rst:1125 msgid "" "This is a module-global setting, and affects all future doctests run by " "module :mod:`unittest`: the :meth:`runTest` method of :class:`DocTestCase` " @@ -1204,17 +1204,17 @@ msgid "" "`doctest`'s :mod:`unittest` reporting flags are ignored." msgstr "" -#: library/doctest.rst:1134 +#: library/doctest.rst:1136 msgid "" "The value of the :mod:`unittest` reporting flags in effect before the " "function was called is returned by the function." msgstr "" -#: library/doctest.rst:1141 +#: library/doctest.rst:1143 msgid "Advanced API" msgstr "" -#: library/doctest.rst:1143 +#: library/doctest.rst:1145 msgid "" "The basic API is a simple wrapper that's intended to make doctest easy to " "use. It is fairly flexible, and should meet most users' needs; however, if " @@ -1222,85 +1222,85 @@ msgid "" "doctest's capabilities, then you should use the advanced API." msgstr "" -#: library/doctest.rst:1148 +#: library/doctest.rst:1150 msgid "" "The advanced API revolves around two container classes, which are used to " "store the interactive examples extracted from doctest cases:" msgstr "" -#: library/doctest.rst:1151 +#: library/doctest.rst:1153 msgid "" ":class:`Example`: A single Python :term:`statement`, paired with its " "expected output." msgstr "" -#: library/doctest.rst:1154 +#: library/doctest.rst:1156 msgid "" ":class:`DocTest`: A collection of :class:`Example`\\ s, typically extracted " "from a single docstring or text file." msgstr "" -#: library/doctest.rst:1157 +#: library/doctest.rst:1159 msgid "" "Additional processing classes are defined to find, parse, and run, and check " "doctest examples:" msgstr "" -#: library/doctest.rst:1160 +#: library/doctest.rst:1162 msgid "" ":class:`DocTestFinder`: Finds all docstrings in a given module, and uses a :" "class:`DocTestParser` to create a :class:`DocTest` from every docstring that " "contains interactive examples." msgstr "" -#: library/doctest.rst:1164 +#: library/doctest.rst:1166 msgid "" ":class:`DocTestParser`: Creates a :class:`DocTest` object from a string " "(such as an object's docstring)." msgstr "" -#: library/doctest.rst:1167 +#: library/doctest.rst:1169 msgid "" ":class:`DocTestRunner`: Executes the examples in a :class:`DocTest`, and " "uses an :class:`OutputChecker` to verify their output." msgstr "" -#: library/doctest.rst:1170 +#: library/doctest.rst:1172 msgid "" ":class:`OutputChecker`: Compares the actual output from a doctest example " "with the expected output, and decides whether they match." msgstr "" -#: library/doctest.rst:1173 +#: library/doctest.rst:1175 msgid "" "The relationships among these processing classes are summarized in the " "following diagram::" msgstr "" -#: library/doctest.rst:1189 +#: library/doctest.rst:1191 msgid "DocTest Objects" msgstr "" -#: library/doctest.rst:1194 +#: library/doctest.rst:1196 msgid "" "A collection of doctest examples that should be run in a single namespace. " "The constructor arguments are used to initialize the attributes of the same " "names." msgstr "" -#: library/doctest.rst:1198 +#: library/doctest.rst:1200 msgid "" ":class:`DocTest` defines the following attributes. They are initialized by " "the constructor, and should not be modified directly." msgstr "" -#: library/doctest.rst:1204 +#: library/doctest.rst:1206 msgid "" "A list of :class:`Example` objects encoding the individual interactive " "Python examples that should be run by this test." msgstr "" -#: library/doctest.rst:1210 +#: library/doctest.rst:1212 msgid "" "The namespace (aka globals) that the examples should be run in. This is a " "dictionary mapping names to values. Any changes to the namespace made by " @@ -1308,57 +1308,57 @@ msgid "" "`globs` after the test is run." msgstr "" -#: library/doctest.rst:1218 +#: library/doctest.rst:1220 msgid "" "A string name identifying the :class:`DocTest`. Typically, this is the name " "of the object or file that the test was extracted from." msgstr "" -#: library/doctest.rst:1224 +#: library/doctest.rst:1226 msgid "" "The name of the file that this :class:`DocTest` was extracted from; or " "``None`` if the filename is unknown, or if the :class:`DocTest` was not " "extracted from a file." msgstr "" -#: library/doctest.rst:1231 +#: library/doctest.rst:1233 msgid "" "The line number within :attr:`filename` where this :class:`DocTest` begins, " "or ``None`` if the line number is unavailable. This line number is zero-" "based with respect to the beginning of the file." msgstr "" -#: library/doctest.rst:1238 +#: library/doctest.rst:1240 msgid "" "The string that the test was extracted from, or ``None`` if the string is " "unavailable, or if the test was not extracted from a string." msgstr "" -#: library/doctest.rst:1245 +#: library/doctest.rst:1247 msgid "Example Objects" msgstr "" -#: library/doctest.rst:1250 +#: library/doctest.rst:1252 msgid "" "A single interactive example, consisting of a Python statement and its " "expected output. The constructor arguments are used to initialize the " "attributes of the same names." msgstr "" -#: library/doctest.rst:1255 +#: library/doctest.rst:1257 msgid "" ":class:`Example` defines the following attributes. They are initialized by " "the constructor, and should not be modified directly." msgstr "" -#: library/doctest.rst:1261 +#: library/doctest.rst:1263 msgid "" "A string containing the example's source code. This source code consists of " "a single Python statement, and always ends with a newline; the constructor " "adds a newline when necessary." msgstr "" -#: library/doctest.rst:1268 +#: library/doctest.rst:1270 msgid "" "The expected output from running the example's source code (either from " "stdout, or a traceback in case of exception). :attr:`want` ends with a " @@ -1366,7 +1366,7 @@ msgid "" "The constructor adds a newline when necessary." msgstr "" -#: library/doctest.rst:1276 +#: library/doctest.rst:1278 msgid "" "The exception message generated by the example, if the example is expected " "to generate an exception; or ``None`` if it is not expected to generate an " @@ -1375,20 +1375,20 @@ msgid "" "unless it's ``None``. The constructor adds a newline if needed." msgstr "" -#: library/doctest.rst:1285 +#: library/doctest.rst:1287 msgid "" "The line number within the string containing this example where the example " "begins. This line number is zero-based with respect to the beginning of the " "containing string." msgstr "" -#: library/doctest.rst:1292 +#: library/doctest.rst:1294 msgid "" "The example's indentation in the containing string, i.e., the number of " "space characters that precede the example's first prompt." msgstr "" -#: library/doctest.rst:1298 +#: library/doctest.rst:1300 msgid "" "A dictionary mapping from option flags to ``True`` or ``False``, which is " "used to override default options for this example. Any option flags not " @@ -1397,11 +1397,11 @@ msgid "" "are set." msgstr "" -#: library/doctest.rst:1307 +#: library/doctest.rst:1309 msgid "DocTestFinder objects" msgstr "" -#: library/doctest.rst:1312 +#: library/doctest.rst:1314 msgid "" "A processing class used to extract the :class:`DocTest`\\ s that are " "relevant to a given object, from its docstring and the docstrings of its " @@ -1409,48 +1409,48 @@ msgid "" "classes, functions, methods, staticmethods, classmethods, and properties." msgstr "" -#: library/doctest.rst:1317 +#: library/doctest.rst:1319 msgid "" "The optional argument *verbose* can be used to display the objects searched " "by the finder. It defaults to ``False`` (no output)." msgstr "" -#: library/doctest.rst:1320 +#: library/doctest.rst:1322 msgid "" "The optional argument *parser* specifies the :class:`DocTestParser` object " "(or a drop-in replacement) that is used to extract doctests from docstrings." msgstr "" -#: library/doctest.rst:1323 +#: library/doctest.rst:1325 msgid "" "If the optional argument *recurse* is false, then :meth:`DocTestFinder.find` " "will only examine the given object, and not any contained objects." msgstr "" -#: library/doctest.rst:1326 +#: library/doctest.rst:1328 msgid "" "If the optional argument *exclude_empty* is false, then :meth:`DocTestFinder." "find` will include tests for objects with empty docstrings." msgstr "" -#: library/doctest.rst:1330 +#: library/doctest.rst:1332 msgid ":class:`DocTestFinder` defines the following method:" msgstr "" -#: library/doctest.rst:1335 +#: library/doctest.rst:1337 msgid "" "Return a list of the :class:`DocTest`\\ s that are defined by *obj*'s " "docstring, or by any of its contained objects' docstrings." msgstr "" -#: library/doctest.rst:1338 +#: library/doctest.rst:1340 msgid "" "The optional argument *name* specifies the object's name; this name will be " "used to construct names for the returned :class:`DocTest`\\ s. If *name* is " "not specified, then ``obj.__name__`` is used." msgstr "" -#: library/doctest.rst:1342 +#: library/doctest.rst:1344 msgid "" "The optional parameter *module* is the module that contains the given " "object. If the module is not specified or is ``None``, then the test finder " @@ -1458,26 +1458,26 @@ msgid "" "module is used:" msgstr "" -#: library/doctest.rst:1346 +#: library/doctest.rst:1348 msgid "As a default namespace, if *globs* is not specified." msgstr "" -#: library/doctest.rst:1348 +#: library/doctest.rst:1350 msgid "" "To prevent the DocTestFinder from extracting DocTests from objects that are " "imported from other modules. (Contained objects with modules other than " "*module* are ignored.)" msgstr "" -#: library/doctest.rst:1352 +#: library/doctest.rst:1354 msgid "To find the name of the file containing the object." msgstr "" -#: library/doctest.rst:1354 +#: library/doctest.rst:1356 msgid "To help find the line number of the object within its file." msgstr "" -#: library/doctest.rst:1356 +#: library/doctest.rst:1358 msgid "" "If *module* is ``False``, no attempt to find the module will be made. This " "is obscure, of use mostly in testing doctest itself: if *module* is " @@ -1486,7 +1486,7 @@ msgid "" "contained objects will (recursively) be searched for doctests." msgstr "" -#: library/doctest.rst:1362 +#: library/doctest.rst:1364 msgid "" "The globals for each :class:`DocTest` is formed by combining *globs* and " "*extraglobs* (bindings in *extraglobs* override bindings in *globs*). A new " @@ -1496,34 +1496,34 @@ msgid "" "defaults to ``{}``." msgstr "" -#: library/doctest.rst:1373 +#: library/doctest.rst:1375 msgid "DocTestParser objects" msgstr "" -#: library/doctest.rst:1378 +#: library/doctest.rst:1380 msgid "" "A processing class used to extract interactive examples from a string, and " "use them to create a :class:`DocTest` object." msgstr "" -#: library/doctest.rst:1450 +#: library/doctest.rst:1452 msgid ":class:`DocTestParser` defines the following methods:" msgstr "" -#: library/doctest.rst:1387 +#: library/doctest.rst:1389 msgid "" "Extract all doctest examples from the given string, and collect them into a :" "class:`DocTest` object." msgstr "" -#: library/doctest.rst:1390 +#: library/doctest.rst:1392 msgid "" "*globs*, *name*, *filename*, and *lineno* are attributes for the new :class:" "`DocTest` object. See the documentation for :class:`DocTest` for more " "information." msgstr "" -#: library/doctest.rst:1397 +#: library/doctest.rst:1399 msgid "" "Extract all doctest examples from the given string, and return them as a " "list of :class:`Example` objects. Line numbers are 0-based. The optional " @@ -1531,7 +1531,7 @@ msgid "" "error messages." msgstr "" -#: library/doctest.rst:1404 +#: library/doctest.rst:1406 msgid "" "Divide the given string into examples and intervening text, and return them " "as a list of alternating :class:`Example`\\ s and strings. Line numbers for " @@ -1539,17 +1539,17 @@ msgid "" "name identifying this string, and is only used for error messages." msgstr "" -#: library/doctest.rst:1413 +#: library/doctest.rst:1415 msgid "DocTestRunner objects" msgstr "" -#: library/doctest.rst:1418 +#: library/doctest.rst:1420 msgid "" "A processing class used to execute and verify the interactive examples in a :" "class:`DocTest`." msgstr "" -#: library/doctest.rst:1421 +#: library/doctest.rst:1423 msgid "" "The comparison between expected outputs and actual outputs is done by an :" "class:`OutputChecker`. This comparison may be customized with a number of " @@ -1559,7 +1559,7 @@ msgid "" "constructor." msgstr "" -#: library/doctest.rst:1427 +#: library/doctest.rst:1429 msgid "" "The test runner's display output can be controlled in two ways. First, an " "output function can be passed to :meth:`TestRunner.run`; this function will " @@ -1570,14 +1570,14 @@ msgid "" "`report_unexpected_exception`, and :meth:`report_failure`." msgstr "" -#: library/doctest.rst:1435 +#: library/doctest.rst:1437 msgid "" "The optional keyword argument *checker* specifies the :class:`OutputChecker` " "object (or drop-in replacement) that should be used to compare the expected " "outputs to the actual outputs of doctest examples." msgstr "" -#: library/doctest.rst:1439 +#: library/doctest.rst:1441 msgid "" "The optional keyword argument *verbose* controls the :class:" "`DocTestRunner`'s verbosity. If *verbose* is ``True``, then information is " @@ -1586,56 +1586,56 @@ msgid "" "verbose output is used iff the command-line switch ``-v`` is used." msgstr "" -#: library/doctest.rst:1445 +#: library/doctest.rst:1447 msgid "" "The optional keyword argument *optionflags* can be used to control how the " "test runner compares expected output to actual output, and how it displays " "failures. For more information, see section :ref:`doctest-options`." msgstr "" -#: library/doctest.rst:1455 +#: library/doctest.rst:1457 msgid "" "Report that the test runner is about to process the given example. This " "method is provided to allow subclasses of :class:`DocTestRunner` to " "customize their output; it should not be called directly." msgstr "" -#: library/doctest.rst:1459 +#: library/doctest.rst:1461 msgid "" "*example* is the example about to be processed. *test* is the test " "*containing example*. *out* is the output function that was passed to :meth:" "`DocTestRunner.run`." msgstr "" -#: library/doctest.rst:1466 +#: library/doctest.rst:1468 msgid "" "Report that the given example ran successfully. This method is provided to " "allow subclasses of :class:`DocTestRunner` to customize their output; it " "should not be called directly." msgstr "" -#: library/doctest.rst:1481 +#: library/doctest.rst:1483 msgid "" "*example* is the example about to be processed. *got* is the actual output " "from the example. *test* is the test containing *example*. *out* is the " "output function that was passed to :meth:`DocTestRunner.run`." msgstr "" -#: library/doctest.rst:1477 +#: library/doctest.rst:1479 msgid "" "Report that the given example failed. This method is provided to allow " "subclasses of :class:`DocTestRunner` to customize their output; it should " "not be called directly." msgstr "" -#: library/doctest.rst:1488 +#: library/doctest.rst:1490 msgid "" "Report that the given example raised an unexpected exception. This method is " "provided to allow subclasses of :class:`DocTestRunner` to customize their " "output; it should not be called directly." msgstr "" -#: library/doctest.rst:1492 +#: library/doctest.rst:1494 msgid "" "*example* is the example about to be processed. *exc_info* is a tuple " "containing information about the unexpected exception (as returned by :func:" @@ -1643,13 +1643,13 @@ msgid "" "output function that was passed to :meth:`DocTestRunner.run`." msgstr "" -#: library/doctest.rst:1500 +#: library/doctest.rst:1502 msgid "" "Run the examples in *test* (a :class:`DocTest` object), and display the " "results using the writer function *out*." msgstr "" -#: library/doctest.rst:1503 +#: library/doctest.rst:1505 msgid "" "The examples are run in the namespace ``test.globs``. If *clear_globs* is " "true (the default), then this namespace will be cleared after the test runs, " @@ -1657,39 +1657,39 @@ msgid "" "after the test completes, then use *clear_globs=False*." msgstr "" -#: library/doctest.rst:1508 +#: library/doctest.rst:1510 msgid "" "*compileflags* gives the set of flags that should be used by the Python " "compiler when running the examples. If not specified, then it will default " "to the set of future-import flags that apply to *globs*." msgstr "" -#: library/doctest.rst:1512 +#: library/doctest.rst:1514 msgid "" "The output of each example is checked using the :class:`DocTestRunner`'s " "output checker, and the results are formatted by the :meth:`DocTestRunner." "report_\\*` methods." msgstr "" -#: library/doctest.rst:1519 +#: library/doctest.rst:1521 msgid "" "Print a summary of all the test cases that have been run by this " "DocTestRunner, and return a :term:`named tuple` ``TestResults(failed, " "attempted)``." msgstr "" -#: library/doctest.rst:1522 +#: library/doctest.rst:1524 msgid "" "The optional *verbose* argument controls how detailed the summary is. If " "the verbosity is not specified, then the :class:`DocTestRunner`'s verbosity " "is used." msgstr "" -#: library/doctest.rst:1529 +#: library/doctest.rst:1531 msgid "OutputChecker objects" msgstr "" -#: library/doctest.rst:1534 +#: library/doctest.rst:1536 msgid "" "A class used to check the whether the actual output from a doctest example " "matches the expected output. :class:`OutputChecker` defines two methods: :" @@ -1698,11 +1698,11 @@ msgid "" "string describing the differences between two outputs." msgstr "" -#: library/doctest.rst:1541 +#: library/doctest.rst:1543 msgid ":class:`OutputChecker` defines the following methods:" msgstr "" -#: library/doctest.rst:1545 +#: library/doctest.rst:1547 msgid "" "Return ``True`` iff the actual output from an example (*got*) matches the " "expected output (*want*). These strings are always considered to match if " @@ -1711,28 +1711,28 @@ msgid "" "`doctest-options` for more information about option flags." msgstr "" -#: library/doctest.rst:1554 +#: library/doctest.rst:1556 msgid "" "Return a string describing the differences between the expected output for a " "given example (*example*) and the actual output (*got*). *optionflags* is " "the set of option flags used to compare *want* and *got*." msgstr "" -#: library/doctest.rst:1562 +#: library/doctest.rst:1564 msgid "Debugging" msgstr "" -#: library/doctest.rst:1564 +#: library/doctest.rst:1566 msgid "Doctest provides several mechanisms for debugging doctest examples:" msgstr "" -#: library/doctest.rst:1566 +#: library/doctest.rst:1568 msgid "" "Several functions convert doctests to executable Python programs, which can " "be run under the Python debugger, :mod:`pdb`." msgstr "" -#: library/doctest.rst:1569 +#: library/doctest.rst:1571 msgid "" "The :class:`DebugRunner` class is a subclass of :class:`DocTestRunner` that " "raises an exception for the first failing example, containing information " @@ -1740,13 +1740,13 @@ msgid "" "debugging on the example." msgstr "" -#: library/doctest.rst:1574 +#: library/doctest.rst:1576 msgid "" "The :mod:`unittest` cases generated by :func:`DocTestSuite` support the :" "meth:`debug` method defined by :class:`unittest.TestCase`." msgstr "" -#: library/doctest.rst:1577 +#: library/doctest.rst:1579 msgid "" "You can add a call to :func:`pdb.set_trace` in a doctest example, and you'll " "drop into the Python debugger when that line is executed. Then you can " @@ -1754,21 +1754,21 @@ msgid "" "`a.py` contains just this module docstring::" msgstr "" -#: library/doctest.rst:1592 +#: library/doctest.rst:1594 msgid "Then an interactive Python session may look like this::" msgstr "" -#: library/doctest.rst:1625 +#: library/doctest.rst:1627 msgid "" "Functions that convert doctests to Python code, and possibly run the " "synthesized code under the debugger:" msgstr "" -#: library/doctest.rst:1631 +#: library/doctest.rst:1633 msgid "Convert text with examples to a script." msgstr "" -#: library/doctest.rst:1633 +#: library/doctest.rst:1635 msgid "" "Argument *s* is a string containing doctest examples. The string is " "converted to a Python script, where doctest examples in *s* are converted to " @@ -1776,22 +1776,22 @@ msgid "" "generated script is returned as a string. For example, ::" msgstr "" -#: library/doctest.rst:1648 +#: library/doctest.rst:1650 msgid "displays::" msgstr "" -#: library/doctest.rst:1658 +#: library/doctest.rst:1660 msgid "" "This function is used internally by other functions (see below), but can " "also be useful when you want to transform an interactive Python session into " "a Python script." msgstr "" -#: library/doctest.rst:1665 +#: library/doctest.rst:1667 msgid "Convert the doctest for an object to a script." msgstr "" -#: library/doctest.rst:1667 +#: library/doctest.rst:1669 msgid "" "Argument *module* is a module object, or dotted name of a module, containing " "the object whose doctests are of interest. Argument *name* is the name " @@ -1801,17 +1801,17 @@ msgid "" "module :file:`a.py` contains a top-level function :func:`f`, then ::" msgstr "" -#: library/doctest.rst:1677 +#: library/doctest.rst:1679 msgid "" "prints a script version of function :func:`f`'s docstring, with doctests " "converted to code, and the rest placed in comments." msgstr "" -#: library/doctest.rst:1683 +#: library/doctest.rst:1685 msgid "Debug the doctests for an object." msgstr "" -#: library/doctest.rst:1685 +#: library/doctest.rst:1687 msgid "" "The *module* and *name* arguments are the same as for function :func:" "`testsource` above. The synthesized Python script for the named object's " @@ -1819,13 +1819,13 @@ msgid "" "the control of the Python debugger, :mod:`pdb`." msgstr "" -#: library/doctest.rst:1690 +#: library/doctest.rst:1692 msgid "" "A shallow copy of ``module.__dict__`` is used for both local and global " "execution context." msgstr "" -#: library/doctest.rst:1693 +#: library/doctest.rst:1695 msgid "" "Optional argument *pm* controls whether post-mortem debugging is used. If " "*pm* has a true value, the script file is run directly, and the debugger " @@ -1837,30 +1837,30 @@ msgid "" "to :func:`pdb.run`." msgstr "" -#: library/doctest.rst:1704 +#: library/doctest.rst:1706 msgid "Debug the doctests in a string." msgstr "" -#: library/doctest.rst:1706 +#: library/doctest.rst:1708 msgid "" "This is like function :func:`debug` above, except that a string containing " "doctest examples is specified directly, via the *src* argument." msgstr "" -#: library/doctest.rst:1709 +#: library/doctest.rst:1711 msgid "" "Optional argument *pm* has the same meaning as in function :func:`debug` " "above." msgstr "" -#: library/doctest.rst:1711 +#: library/doctest.rst:1713 msgid "" "Optional argument *globs* gives a dictionary to use as both local and global " "execution context. If not specified, or ``None``, an empty dictionary is " "used. If specified, a shallow copy of the dictionary is used." msgstr "" -#: library/doctest.rst:1716 +#: library/doctest.rst:1718 msgid "" "The :class:`DebugRunner` class, and the special exceptions it may raise, are " "of most interest to testing framework authors, and will only be sketched " @@ -1868,7 +1868,7 @@ msgid "" "(which is a doctest!) for more details:" msgstr "" -#: library/doctest.rst:1724 +#: library/doctest.rst:1726 msgid "" "A subclass of :class:`DocTestRunner` that raises an exception as soon as a " "failure is encountered. If an unexpected exception occurs, an :exc:" @@ -1878,89 +1878,89 @@ msgid "" "the actual output." msgstr "" -#: library/doctest.rst:1731 +#: library/doctest.rst:1733 msgid "" "For information about the constructor parameters and methods, see the " "documentation for :class:`DocTestRunner` in section :ref:`doctest-advanced-" "api`." msgstr "" -#: library/doctest.rst:1734 +#: library/doctest.rst:1736 msgid "" "There are two exceptions that may be raised by :class:`DebugRunner` " "instances:" msgstr "" -#: library/doctest.rst:1739 +#: library/doctest.rst:1741 msgid "" "An exception raised by :class:`DocTestRunner` to signal that a doctest " "example's actual output did not match its expected output. The constructor " "arguments are used to initialize the attributes of the same names." msgstr "" -#: library/doctest.rst:1743 +#: library/doctest.rst:1745 msgid ":exc:`DocTestFailure` defines the following attributes:" msgstr "" -#: library/doctest.rst:1772 +#: library/doctest.rst:1774 msgid "The :class:`DocTest` object that was being run when the example failed." msgstr "" -#: library/doctest.rst:1777 +#: library/doctest.rst:1779 msgid "The :class:`Example` that failed." msgstr "" -#: library/doctest.rst:1758 +#: library/doctest.rst:1760 msgid "The example's actual output." msgstr "" -#: library/doctest.rst:1763 +#: library/doctest.rst:1765 msgid "" "An exception raised by :class:`DocTestRunner` to signal that a doctest " "example raised an unexpected exception. The constructor arguments are used " "to initialize the attributes of the same names." msgstr "" -#: library/doctest.rst:1767 +#: library/doctest.rst:1769 msgid ":exc:`UnexpectedException` defines the following attributes:" msgstr "" -#: library/doctest.rst:1782 +#: library/doctest.rst:1784 msgid "" "A tuple containing information about the unexpected exception, as returned " "by :func:`sys.exc_info`." msgstr "" -#: library/doctest.rst:1789 +#: library/doctest.rst:1791 msgid "Soapbox" msgstr "" -#: library/doctest.rst:1791 +#: library/doctest.rst:1793 msgid "" "As mentioned in the introduction, :mod:`doctest` has grown to have three " "primary uses:" msgstr "" -#: library/doctest.rst:1794 +#: library/doctest.rst:1796 msgid "Checking examples in docstrings." msgstr "" -#: library/doctest.rst:1796 +#: library/doctest.rst:1798 msgid "Regression testing." msgstr "" -#: library/doctest.rst:1798 +#: library/doctest.rst:1800 msgid "Executable documentation / literate testing." msgstr "" -#: library/doctest.rst:1800 +#: library/doctest.rst:1802 msgid "" "These uses have different requirements, and it is important to distinguish " "them. In particular, filling your docstrings with obscure test cases makes " "for bad documentation." msgstr "" -#: library/doctest.rst:1804 +#: library/doctest.rst:1806 msgid "" "When writing a docstring, choose docstring examples with care. There's an " "art to this that needs to be learned---it may not be natural at first. " @@ -1972,7 +1972,7 @@ msgid "" "\"harmless\" change." msgstr "" -#: library/doctest.rst:1812 +#: library/doctest.rst:1814 msgid "" "Doctest also makes an excellent tool for regression testing, especially if " "you don't skimp on explanatory text. By interleaving prose and examples, it " @@ -1993,13 +1993,13 @@ msgid "" "different results, blurring the distinction between testing and explaining." msgstr "" -#: library/doctest.rst:1830 +#: library/doctest.rst:1832 msgid "" "Regression testing is best confined to dedicated objects or files. There " "are several options for organizing tests:" msgstr "" -#: library/doctest.rst:1833 +#: library/doctest.rst:1835 msgid "" "Write text files containing test cases as interactive examples, and test the " "files using :func:`testfile` or :func:`DocFileSuite`. This is recommended, " @@ -2007,7 +2007,7 @@ msgid "" "doctest." msgstr "" -#: library/doctest.rst:1838 +#: library/doctest.rst:1840 msgid "" "Define functions named ``_regrtest_topic`` that consist of single " "docstrings, containing test cases for the named topics. These functions can " @@ -2015,13 +2015,13 @@ msgid "" "test file." msgstr "" -#: library/doctest.rst:1842 +#: library/doctest.rst:1844 msgid "" "Define a ``__test__`` dictionary mapping from regression test topics to " "docstrings containing test cases." msgstr "" -#: library/doctest.rst:1845 +#: library/doctest.rst:1847 msgid "" "When you have placed your tests in a module, the module can itself be the " "test runner. When a test fails, you can arrange for your test runner to re-" @@ -2029,11 +2029,11 @@ msgid "" "example of such a test runner::" msgstr "" -#: library/doctest.rst:1867 +#: library/doctest.rst:1869 msgid "Footnotes" msgstr "" -#: library/doctest.rst:1868 +#: library/doctest.rst:1870 msgid "" "Examples containing both expected output and an exception are not supported. " "Trying to guess where one ends and the other begins is too error-prone, and " @@ -2048,34 +2048,34 @@ msgstr "" msgid "interpreter prompt" msgstr "" -#: library/doctest.rst:554 +#: library/doctest.rst:556 msgid "..." msgstr "" -#: library/doctest.rst:482 +#: library/doctest.rst:484 msgid "^ (caret)" msgstr "" -#: library/doctest.rst:482 +#: library/doctest.rst:484 msgid "marker" msgstr "" -#: library/doctest.rst:534 +#: library/doctest.rst:536 msgid "" msgstr "" -#: library/doctest.rst:684 +#: library/doctest.rst:686 msgid "in doctests" msgstr "" -#: library/doctest.rst:684 +#: library/doctest.rst:686 msgid "# (hash)" msgstr "" -#: library/doctest.rst:684 +#: library/doctest.rst:686 msgid "+ (plus)" msgstr "" -#: library/doctest.rst:684 +#: library/doctest.rst:686 msgid "- (minus)" msgstr "" diff --git a/library/email.charset.po b/library/email.charset.po index 7805d60c7..2c788311c 100644 --- a/library/email.charset.po +++ b/library/email.charset.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -96,15 +96,15 @@ msgstr "" #: library/email.charset.rst:60 msgid "" "If the character set must be encoded before it can be used in an email " -"header, this attribute will be set to ``Charset.QP`` (for quoted-printable), " -"``Charset.BASE64`` (for base64 encoding), or ``Charset.SHORTEST`` for the " +"header, this attribute will be set to ``charset.QP`` (for quoted-printable), " +"``charset.BASE64`` (for base64 encoding), or ``charset.SHORTEST`` for the " "shortest of QP or BASE64 encoding. Otherwise, it will be ``None``." msgstr "" #: library/email.charset.rst:69 msgid "" "Same as *header_encoding*, but describes the encoding for the mail message's " -"body, which indeed may be different than the header encoding. ``Charset." +"body, which indeed may be different than the header encoding. ``charset." "SHORTEST`` is not allowed for *body_encoding*." msgstr "" @@ -238,8 +238,8 @@ msgstr "" #: library/email.charset.rst:178 msgid "" -"Optional *header_enc* and *body_enc* is either ``Charset.QP`` for quoted-" -"printable, ``Charset.BASE64`` for base64 encoding, ``Charset.SHORTEST`` for " +"Optional *header_enc* and *body_enc* is either ``charset.QP`` for quoted-" +"printable, ``charset.BASE64`` for base64 encoding, ``charset.SHORTEST`` for " "the shortest of quoted-printable or base64 encoding, or ``None`` for no " "encoding. ``SHORTEST`` is only valid for *header_enc*. The default is " "``None`` for no encoding." diff --git a/library/email.po b/library/email.po index a5d2d0610..35d82a99a 100644 --- a/library/email.po +++ b/library/email.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -186,7 +186,7 @@ msgstr "" msgid "NNTP (Net News Transport Protocol) client" msgstr "" -#: library/email.rst:149 +#: library/email.rst:148 msgid "Module :mod:`mailbox`" msgstr "" @@ -195,11 +195,3 @@ msgid "" "Tools for creating, reading, and managing collections of messages on disk " "using a variety standard formats." msgstr "" - -#: library/email.rst:151 -msgid "Module :mod:`smtpd`" -msgstr "" - -#: library/email.rst:152 -msgid "SMTP server framework (primarily useful for testing)" -msgstr "" diff --git a/library/email.policy.po b/library/email.policy.po index 31e113c88..e1aec1c9e 100644 --- a/library/email.policy.po +++ b/library/email.policy.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -120,7 +120,7 @@ msgid "" "system:" msgstr "" -#: library/email.policy.rst:113 +#: library/email.policy.rst:114 msgid "" "Here we are telling :class:`~email.generator.BytesGenerator` to use the RFC " "correct line separator characters when creating the binary string to feed " @@ -128,7 +128,7 @@ msgid "" "line separators." msgstr "" -#: library/email.policy.rst:118 +#: library/email.policy.rst:119 msgid "" "Some email package methods accept a *policy* keyword argument, allowing the " "policy to be overridden for that method. For example, the following code " @@ -137,20 +137,20 @@ msgid "" "line separators for the platform on which it is running::" msgstr "" -#: library/email.policy.rst:129 +#: library/email.policy.rst:130 msgid "" "Policy objects can also be combined using the addition operator, producing a " "policy object whose settings are a combination of the non-default values of " "the summed objects::" msgstr "" -#: library/email.policy.rst:137 +#: library/email.policy.rst:138 msgid "" "This operation is not commutative; that is, the order in which the objects " "are added matters. To illustrate::" msgstr "" -#: library/email.policy.rst:152 +#: library/email.policy.rst:153 msgid "" "This is the :term:`abstract base class` for all policy classes. It provides " "default implementations for a couple of trivial methods, as well as the " @@ -158,7 +158,7 @@ msgid "" "the constructor semantics." msgstr "" -#: library/email.policy.rst:157 +#: library/email.policy.rst:158 msgid "" "The constructor of a policy class can be passed various keyword arguments. " "The arguments that may be specified are any non-method properties on this " @@ -167,48 +167,48 @@ msgid "" "corresponding attribute." msgstr "" -#: library/email.policy.rst:163 +#: library/email.policy.rst:164 msgid "" "This class defines the following properties, and thus values for the " "following may be passed in the constructor of any policy class:" msgstr "" -#: library/email.policy.rst:169 +#: library/email.policy.rst:170 msgid "" "The maximum length of any line in the serialized output, not counting the " "end of line character(s). Default is 78, per :rfc:`5322`. A value of ``0`` " "or :const:`None` indicates that no line wrapping should be done at all." msgstr "" -#: library/email.policy.rst:177 +#: library/email.policy.rst:178 msgid "" "The string to be used to terminate lines in serialized output. The default " "is ``\\n`` because that's the internal end-of-line discipline used by " "Python, though ``\\r\\n`` is required by the RFCs." msgstr "" -#: library/email.policy.rst:184 +#: library/email.policy.rst:185 msgid "" "Controls the type of Content Transfer Encodings that may be or are required " "to be used. The possible values are:" msgstr "" -#: library/email.policy.rst:190 +#: library/email.policy.rst:191 msgid "``7bit``" msgstr "" -#: library/email.policy.rst:190 +#: library/email.policy.rst:191 msgid "" "all data must be \"7 bit clean\" (ASCII-only). This means that where " "necessary data will be encoded using either quoted-printable or base64 " "encoding." msgstr "" -#: library/email.policy.rst:194 +#: library/email.policy.rst:195 msgid "``8bit``" msgstr "" -#: library/email.policy.rst:194 +#: library/email.policy.rst:195 msgid "" "data is not constrained to be 7 bit clean. Data in headers is still " "required to be ASCII-only and so will be encoded (see :meth:`fold_binary` " @@ -216,7 +216,7 @@ msgid "" "the ``8bit`` CTE." msgstr "" -#: library/email.policy.rst:200 +#: library/email.policy.rst:201 msgid "" "A ``cte_type`` value of ``8bit`` only works with ``BytesGenerator``, not " "``Generator``, because strings cannot contain binary data. If a " @@ -224,71 +224,71 @@ msgid "" "it will act as if ``cte_type`` is ``7bit``." msgstr "" -#: library/email.policy.rst:208 +#: library/email.policy.rst:209 msgid "" "If :const:`True`, any defects encountered will be raised as errors. If :" "const:`False` (the default), defects will be passed to the :meth:" "`register_defect` method." msgstr "" -#: library/email.policy.rst:215 +#: library/email.policy.rst:216 msgid "" "If :const:`True`, lines starting with *\"From \"* in the body are escaped by " "putting a ``>`` in front of them. This parameter is used when the message is " "being serialized by a generator. Default: :const:`False`." msgstr "" -#: library/email.policy.rst:220 +#: library/email.policy.rst:221 msgid "The *mangle_from_* parameter." msgstr "" -#: library/email.policy.rst:226 +#: library/email.policy.rst:227 msgid "" "A factory function for constructing a new empty message object. Used by the " "parser when building messages. Defaults to ``None``, in which case :class:" "`~email.message.Message` is used." msgstr "" -#: library/email.policy.rst:232 +#: library/email.policy.rst:233 msgid "" "The following :class:`Policy` method is intended to be called by code using " "the email library to create policy instances with custom settings:" msgstr "" -#: library/email.policy.rst:238 +#: library/email.policy.rst:239 msgid "" "Return a new :class:`Policy` instance whose attributes have the same values " "as the current instance, except where those attributes are given new values " "by the keyword arguments." msgstr "" -#: library/email.policy.rst:243 +#: library/email.policy.rst:244 msgid "" "The remaining :class:`Policy` methods are called by the email package code, " "and are not intended to be called by an application using the email package. " "A custom policy must implement all of these methods." msgstr "" -#: library/email.policy.rst:250 +#: library/email.policy.rst:251 msgid "" "Handle a *defect* found on *obj*. When the email package calls this method, " "*defect* will always be a subclass of :class:`~email.errors.Defect`." msgstr "" -#: library/email.policy.rst:254 +#: library/email.policy.rst:255 msgid "" "The default implementation checks the :attr:`raise_on_defect` flag. If it " "is ``True``, *defect* is raised as an exception. If it is ``False`` (the " "default), *obj* and *defect* are passed to :meth:`register_defect`." msgstr "" -#: library/email.policy.rst:261 +#: library/email.policy.rst:262 msgid "" "Register a *defect* on *obj*. In the email package, *defect* will always be " "a subclass of :class:`~email.errors.Defect`." msgstr "" -#: library/email.policy.rst:264 +#: library/email.policy.rst:265 msgid "" "The default implementation calls the ``append`` method of the ``defects`` " "attribute of *obj*. When the email package calls :attr:`handle_defect`, " @@ -298,11 +298,11 @@ msgid "" "defects in parsed messages will raise unexpected errors." msgstr "" -#: library/email.policy.rst:274 +#: library/email.policy.rst:275 msgid "Return the maximum allowed number of headers named *name*." msgstr "" -#: library/email.policy.rst:276 +#: library/email.policy.rst:277 msgid "" "Called when a header is added to an :class:`~email.message.EmailMessage` or :" "class:`~email.message.Message` object. If the returned value is not ``0`` " @@ -310,7 +310,7 @@ msgid "" "greater than or equal to the value returned, a :exc:`ValueError` is raised." msgstr "" -#: library/email.policy.rst:282 +#: library/email.policy.rst:283 msgid "" "Because the default behavior of ``Message.__setitem__`` is to append the " "value to the list of headers, it is easy to create duplicate headers without " @@ -320,11 +320,11 @@ msgid "" "faithfully produce as many headers as exist in the message being parsed.)" msgstr "" -#: library/email.policy.rst:290 +#: library/email.policy.rst:291 msgid "The default implementation returns ``None`` for all header names." msgstr "" -#: library/email.policy.rst:295 +#: library/email.policy.rst:296 msgid "" "The email package calls this method with a list of strings, each string " "ending with the line separation characters found in the source being " @@ -334,7 +334,7 @@ msgid "" "the parsed header." msgstr "" -#: library/email.policy.rst:302 +#: library/email.policy.rst:303 msgid "" "If an implementation wishes to retain compatibility with the existing email " "package policies, *name* should be the case preserved name (all characters " @@ -343,15 +343,15 @@ msgid "" "stripped of leading whitespace." msgstr "" -#: library/email.policy.rst:308 +#: library/email.policy.rst:309 msgid "*sourcelines* may contain surrogateescaped binary data." msgstr "" -#: library/email.policy.rst:326 library/email.policy.rst:342 +#: library/email.policy.rst:327 library/email.policy.rst:343 msgid "There is no default implementation" msgstr "" -#: library/email.policy.rst:315 +#: library/email.policy.rst:316 msgid "" "The email package calls this method with the name and value provided by the " "application program when the application program is modifying a ``Message`` " @@ -360,14 +360,14 @@ msgid "" "``Message`` to represent the header." msgstr "" -#: library/email.policy.rst:321 +#: library/email.policy.rst:322 msgid "" "If an implementation wishes to retain compatibility with the existing email " "package policies, the *name* and *value* should be strings or string " "subclasses that do not change the content of the passed in arguments." msgstr "" -#: library/email.policy.rst:331 +#: library/email.policy.rst:332 msgid "" "The email package calls this method with the *name* and *value* currently " "stored in the ``Message`` when that header is requested by the application " @@ -378,13 +378,13 @@ msgid "" "returned to the application." msgstr "" -#: library/email.policy.rst:339 +#: library/email.policy.rst:340 msgid "" "*value* may contain surrogateescaped binary data. There should be no " "surrogateescaped binary data in the value returned by the method." msgstr "" -#: library/email.policy.rst:347 +#: library/email.policy.rst:348 msgid "" "The email package calls this method with the *name* and *value* currently " "stored in the ``Message`` for a given header. The method should return a " @@ -394,32 +394,32 @@ msgid "" "discussion of the rules for folding email headers." msgstr "" -#: library/email.policy.rst:354 +#: library/email.policy.rst:355 msgid "" "*value* may contain surrogateescaped binary data. There should be no " "surrogateescaped binary data in the string returned by the method." msgstr "" -#: library/email.policy.rst:360 +#: library/email.policy.rst:361 msgid "" "The same as :meth:`fold`, except that the returned value should be a bytes " "object rather than a string." msgstr "" -#: library/email.policy.rst:363 +#: library/email.policy.rst:364 msgid "" "*value* may contain surrogateescaped binary data. These could be converted " "back into binary data in the returned bytes object." msgstr "" -#: library/email.policy.rst:370 +#: library/email.policy.rst:371 msgid "" "This concrete :class:`Policy` provides behavior that is intended to be fully " "compliant with the current email RFCs. These include (but are not limited " "to) :rfc:`5322`, :rfc:`2047`, and the current MIME RFCs." msgstr "" -#: library/email.policy.rst:374 +#: library/email.policy.rst:375 msgid "" "This policy adds new header parsing and folding algorithms. Instead of " "simple strings, headers are ``str`` subclasses with attributes that depend " @@ -427,23 +427,23 @@ msgid "" "implement :rfc:`2047` and :rfc:`5322`." msgstr "" -#: library/email.policy.rst:379 +#: library/email.policy.rst:380 msgid "" "The default value for the :attr:`~email.policy.Policy.message_factory` " "attribute is :class:`~email.message.EmailMessage`." msgstr "" -#: library/email.policy.rst:382 +#: library/email.policy.rst:383 msgid "" "In addition to the settable attributes listed above that apply to all " "policies, this policy adds the following additional attributes:" msgstr "" -#: library/email.policy.rst:385 +#: library/email.policy.rst:386 msgid "[1]_" msgstr "" -#: library/email.policy.rst:390 +#: library/email.policy.rst:391 msgid "" "If ``False``, follow :rfc:`5322`, supporting non-ASCII characters in headers " "by encoding them as \"encoded words\". If ``True``, follow :rfc:`6532` and " @@ -451,7 +451,7 @@ msgid "" "passed to SMTP servers that support the ``SMTPUTF8`` extension (:rfc:`6531`)." msgstr "" -#: library/email.policy.rst:399 +#: library/email.policy.rst:400 msgid "" "If the value for a header in the ``Message`` object originated from a :mod:" "`~email.parser` (as opposed to being set by a program), this attribute " @@ -459,37 +459,37 @@ msgid "" "transforming the message back into serialized form. The possible values are:" msgstr "" -#: library/email.policy.rst:406 +#: library/email.policy.rst:407 msgid "``none``" msgstr "" -#: library/email.policy.rst:406 +#: library/email.policy.rst:407 msgid "all source values use original folding" msgstr "" -#: library/email.policy.rst:408 +#: library/email.policy.rst:409 msgid "``long``" msgstr "" -#: library/email.policy.rst:408 +#: library/email.policy.rst:409 msgid "" "source values that have any line that is longer than ``max_line_length`` " "will be refolded" msgstr "" -#: library/email.policy.rst:411 +#: library/email.policy.rst:412 msgid "``all``" msgstr "" -#: library/email.policy.rst:411 +#: library/email.policy.rst:412 msgid "all values are refolded." msgstr "" -#: library/email.policy.rst:414 +#: library/email.policy.rst:415 msgid "The default is ``long``." msgstr "" -#: library/email.policy.rst:419 +#: library/email.policy.rst:420 msgid "" "A callable that takes two arguments, ``name`` and ``value``, where ``name`` " "is a header field name and ``value`` is an unfolded header field value, and " @@ -500,7 +500,7 @@ msgid "" "custom parsing will be added in the future." msgstr "" -#: library/email.policy.rst:430 +#: library/email.policy.rst:431 msgid "" "An object with at least two methods: get_content and set_content. When the :" "meth:`~email.message.EmailMessage.get_content` or :meth:`~email.message." @@ -511,20 +511,20 @@ msgid "" "``content_manager`` is set to :data:`~email.contentmanager.raw_data_manager`." msgstr "" -#: library/email.policy.rst:600 +#: library/email.policy.rst:601 msgid "" "The class provides the following concrete implementations of the abstract " "methods of :class:`Policy`:" msgstr "" -#: library/email.policy.rst:448 +#: library/email.policy.rst:449 msgid "" "Returns the value of the :attr:`~email.headerregistry.BaseHeader.max_count` " "attribute of the specialized class used to represent the header with the " "given name." msgstr "" -#: library/email.policy.rst:606 +#: library/email.policy.rst:607 msgid "" "The name is parsed as everything up to the '``:``' and returned unmodified. " "The value is determined by stripping leading whitespace off the remainder of " @@ -532,7 +532,7 @@ msgid "" "trailing carriage return or linefeed characters." msgstr "" -#: library/email.policy.rst:464 +#: library/email.policy.rst:465 msgid "" "The name is returned unchanged. If the input value has a ``name`` attribute " "and it matches *name* ignoring case, the value is returned unchanged. " @@ -541,7 +541,7 @@ msgid "" "``ValueError`` is raised if the input value contains CR or LF characters." msgstr "" -#: library/email.policy.rst:474 +#: library/email.policy.rst:475 msgid "" "If the value has a ``name`` attribute, it is returned to unmodified. " "Otherwise the *name*, and the *value* with any CR or LF characters removed, " @@ -550,7 +550,7 @@ msgid "" "character glyph." msgstr "" -#: library/email.policy.rst:483 +#: library/email.policy.rst:484 msgid "" "Header folding is controlled by the :attr:`refold_source` policy setting. A " "value is considered to be a 'source value' if and only if it does not have a " @@ -562,7 +562,7 @@ msgid "" "current policy." msgstr "" -#: library/email.policy.rst:492 +#: library/email.policy.rst:493 msgid "" "Source values are split into lines using :meth:`~str.splitlines`. If the " "value is not to be refolded, the lines are rejoined using the ``linesep`` " @@ -572,13 +572,13 @@ msgid "" "using the ``unknown-8bit`` charset." msgstr "" -#: library/email.policy.rst:502 +#: library/email.policy.rst:503 msgid "" "The same as :meth:`fold` if :attr:`~Policy.cte_type` is ``7bit``, except " "that the returned value is bytes." msgstr "" -#: library/email.policy.rst:505 +#: library/email.policy.rst:506 msgid "" "If :attr:`~Policy.cte_type` is ``8bit``, non-ASCII binary data is converted " "back into bytes. Headers with binary data are not refolded, regardless of " @@ -586,7 +586,7 @@ msgid "" "binary data consists of single byte characters or multibyte characters." msgstr "" -#: library/email.policy.rst:512 +#: library/email.policy.rst:513 msgid "" "The following instances of :class:`EmailPolicy` provide defaults suitable " "for specific application domains. Note that in the future the behavior of " @@ -594,20 +594,20 @@ msgid "" "conform even more closely to the RFCs relevant to their domains." msgstr "" -#: library/email.policy.rst:520 +#: library/email.policy.rst:521 msgid "" "An instance of ``EmailPolicy`` with all defaults unchanged. This policy " "uses the standard Python ``\\n`` line endings rather than the RFC-correct " "``\\r\\n``." msgstr "" -#: library/email.policy.rst:527 +#: library/email.policy.rst:528 msgid "" "Suitable for serializing messages in conformance with the email RFCs. Like " "``default``, but with ``linesep`` set to ``\\r\\n``, which is RFC compliant." msgstr "" -#: library/email.policy.rst:534 +#: library/email.policy.rst:535 msgid "" "The same as ``SMTP`` except that :attr:`~EmailPolicy.utf8` is ``True``. " "Useful for serializing messages to a message store without using encoded " @@ -616,46 +616,46 @@ msgid "" "SMTP.send_message` method handles this automatically)." msgstr "" -#: library/email.policy.rst:543 +#: library/email.policy.rst:544 msgid "" "Suitable for serializing headers with for use in HTTP traffic. Like " "``SMTP`` except that ``max_line_length`` is set to ``None`` (unlimited)." msgstr "" -#: library/email.policy.rst:549 +#: library/email.policy.rst:550 msgid "" "Convenience instance. The same as ``default`` except that " "``raise_on_defect`` is set to ``True``. This allows any policy to be made " "strict by writing::" msgstr "" -#: library/email.policy.rst:556 +#: library/email.policy.rst:557 msgid "" "With all of these :class:`EmailPolicies <.EmailPolicy>`, the effective API " "of the email package is changed from the Python 3.2 API in the following " "ways:" msgstr "" -#: library/email.policy.rst:559 +#: library/email.policy.rst:560 msgid "" "Setting a header on a :class:`~email.message.Message` results in that header " "being parsed and a header object created." msgstr "" -#: library/email.policy.rst:562 +#: library/email.policy.rst:563 msgid "" "Fetching a header value from a :class:`~email.message.Message` results in " "that header being parsed and a header object created and returned." msgstr "" -#: library/email.policy.rst:566 +#: library/email.policy.rst:567 msgid "" "Any header object, or any header that is refolded due to the policy " "settings, is folded using an algorithm that fully implements the RFC folding " "algorithms, including knowing where encoded words are required and allowed." msgstr "" -#: library/email.policy.rst:571 +#: library/email.policy.rst:572 msgid "" "From the application view, this means that any header obtained through the :" "class:`~email.message.EmailMessage` is a header object with extra " @@ -665,13 +665,13 @@ msgid "" "the unicode string into the correct RFC encoded form." msgstr "" -#: library/email.policy.rst:578 +#: library/email.policy.rst:579 msgid "" "The header objects and their attributes are described in :mod:`~email." "headerregistry`." msgstr "" -#: library/email.policy.rst:585 +#: library/email.policy.rst:586 msgid "" "This concrete :class:`Policy` is the backward compatibility policy. It " "replicates the behavior of the email package in Python 3.2. The :mod:" @@ -680,28 +680,28 @@ msgid "" "of the email package is to maintain compatibility with Python 3.2." msgstr "" -#: library/email.policy.rst:591 +#: library/email.policy.rst:592 msgid "" "The following attributes have values that are different from the :class:" "`Policy` default:" msgstr "" -#: library/email.policy.rst:597 +#: library/email.policy.rst:598 msgid "The default is ``True``." msgstr "" -#: library/email.policy.rst:614 +#: library/email.policy.rst:615 msgid "The name and value are returned unmodified." msgstr "" -#: library/email.policy.rst:619 +#: library/email.policy.rst:620 msgid "" "If the value contains binary data, it is converted into a :class:`~email." "header.Header` object using the ``unknown-8bit`` charset. Otherwise it is " "returned unmodified." msgstr "" -#: library/email.policy.rst:626 +#: library/email.policy.rst:627 msgid "" "Headers are folded using the :class:`~email.header.Header` folding " "algorithm, which preserves existing line breaks in the value, and wraps each " @@ -709,7 +709,7 @@ msgid "" "encoded using the ``unknown-8bit`` charset." msgstr "" -#: library/email.policy.rst:634 +#: library/email.policy.rst:635 msgid "" "Headers are folded using the :class:`~email.header.Header` folding " "algorithm, which preserves existing line breaks in the value, and wraps each " @@ -719,17 +719,17 @@ msgid "" "and any (RFC invalid) binary data it may contain." msgstr "" -#: library/email.policy.rst:644 +#: library/email.policy.rst:645 msgid "" "An instance of :class:`Compat32`, providing backward compatibility with the " "behavior of the email package in Python 3.2." msgstr "" -#: library/email.policy.rst:649 +#: library/email.policy.rst:650 msgid "Footnotes" msgstr "" -#: library/email.policy.rst:650 +#: library/email.policy.rst:651 msgid "" "Originally added in 3.3 as a :term:`provisional feature `." diff --git a/library/email.utils.po b/library/email.utils.po index 3e2b012f3..dbdb2df0d 100644 --- a/library/email.utils.po +++ b/library/email.utils.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -36,15 +36,15 @@ msgid "" "return current time. Otherwise *dt* argument should be a :class:`~datetime." "datetime` instance, and it is converted to the local time zone according to " "the system time zone database. If *dt* is naive (that is, ``dt.tzinfo`` is " -"``None``), it is assumed to be in local time. In this case, a positive or " -"zero value for *isdst* causes ``localtime`` to presume initially that summer " -"time (for example, Daylight Saving Time) is or is not (respectively) in " -"effect for the specified time. A negative value for *isdst* causes the " -"``localtime`` to attempt to divine whether summer time is in effect for the " -"specified time." +"``None``), it is assumed to be in local time. The *isdst* parameter is " +"ignored." msgstr "" -#: library/email.utils.rst:32 +#: library/email.utils.rst:26 +msgid "The *isdst* parameter." +msgstr "" + +#: library/email.utils.rst:30 msgid "" "Returns a string suitable for an :rfc:`2822`\\ -compliant :mailheader:" "`Message-ID` header. Optional *idstring* if given, is a string used to " @@ -55,11 +55,11 @@ msgid "" "consistent domain name across multiple hosts." msgstr "" -#: library/email.utils.rst:40 +#: library/email.utils.rst:38 msgid "Added the *domain* keyword." msgstr "" -#: library/email.utils.rst:44 +#: library/email.utils.rst:42 msgid "" "The remaining functions are part of the legacy (``Compat32``) email API. " "There is no need to directly use these with the new API, since the parsing " @@ -67,20 +67,20 @@ msgid "" "machinery of the new API." msgstr "" -#: library/email.utils.rst:52 +#: library/email.utils.rst:50 msgid "" "Return a new string with backslashes in *str* replaced by two backslashes, " "and double quotes replaced by backslash-double quote." msgstr "" -#: library/email.utils.rst:58 +#: library/email.utils.rst:56 msgid "" "Return a new string which is an *unquoted* version of *str*. If *str* ends " "and begins with double quotes, they are stripped off. Likewise if *str* " "ends and begins with angle brackets, they are stripped off." msgstr "" -#: library/email.utils.rst:65 +#: library/email.utils.rst:63 msgid "" "Parse address -- which should be the value of some address-containing field " "such as :mailheader:`To` or :mailheader:`Cc` -- into its constituent " @@ -88,7 +88,7 @@ msgid "" "unless the parse fails, in which case a 2-tuple of ``('', '')`` is returned." msgstr "" -#: library/email.utils.rst:73 +#: library/email.utils.rst:71 msgid "" "The inverse of :meth:`parseaddr`, this takes a 2-tuple of the form " "``(realname, email_address)`` and returns the string value suitable for a :" @@ -96,7 +96,7 @@ msgid "" "is false, then the second element is returned unmodified." msgstr "" -#: library/email.utils.rst:78 +#: library/email.utils.rst:76 msgid "" "Optional *charset* is the character set that will be used in the :rfc:`2047` " "encoding of the ``realname`` if the ``realname`` contains non-ASCII " @@ -104,11 +104,11 @@ msgid "" "Charset`. Defaults to ``utf-8``." msgstr "" -#: library/email.utils.rst:83 +#: library/email.utils.rst:81 msgid "Added the *charset* option." msgstr "" -#: library/email.utils.rst:89 +#: library/email.utils.rst:87 msgid "" "This method returns a list of 2-tuples of the form returned by " "``parseaddr()``. *fieldvalues* is a sequence of header field values as might " @@ -116,7 +116,7 @@ msgid "" "Here's a simple example that gets all the recipients of a message::" msgstr "" -#: library/email.utils.rst:105 +#: library/email.utils.rst:103 msgid "" "Attempts to parse a date according to the rules in :rfc:`2822`. however, " "some mailers don't follow that format as specified, so :func:`parsedate` " @@ -127,7 +127,7 @@ msgid "" "returned. Note that indexes 6, 7, and 8 of the result tuple are not usable." msgstr "" -#: library/email.utils.rst:116 +#: library/email.utils.rst:114 msgid "" "Performs the same function as :func:`parsedate`, but returns either ``None`` " "or a 10-tuple; the first 9 elements make up a tuple that can be passed " @@ -138,7 +138,7 @@ msgid "" "the result tuple are not usable." msgstr "" -#: library/email.utils.rst:126 +#: library/email.utils.rst:124 msgid "" "The inverse of :func:`format_datetime`. Performs the same function as :func:" "`parsedate`, but on success returns a :mod:`~datetime.datetime`; otherwise " @@ -152,25 +152,25 @@ msgid "" "corresponding a :class:`~datetime.timezone` :class:`~datetime.tzinfo`." msgstr "" -#: library/email.utils.rst:142 +#: library/email.utils.rst:140 msgid "" "Turn a 10-tuple as returned by :func:`parsedate_tz` into a UTC timestamp " "(seconds since the Epoch). If the timezone item in the tuple is ``None``, " "assume local time." msgstr "" -#: library/email.utils.rst:149 +#: library/email.utils.rst:147 msgid "Returns a date string as per :rfc:`2822`, e.g.::" msgstr "" -#: library/email.utils.rst:153 +#: library/email.utils.rst:151 msgid "" "Optional *timeval* if given is a floating point time value as accepted by :" "func:`time.gmtime` and :func:`time.localtime`, otherwise the current time is " "used." msgstr "" -#: library/email.utils.rst:157 +#: library/email.utils.rst:155 msgid "" "Optional *localtime* is a flag that when ``True``, interprets *timeval*, and " "returns a date relative to the local timezone instead of UTC, properly " @@ -178,7 +178,7 @@ msgid "" "UTC is used." msgstr "" -#: library/email.utils.rst:162 +#: library/email.utils.rst:160 msgid "" "Optional *usegmt* is a flag that when ``True``, outputs a date string with " "the timezone as an ascii string ``GMT``, rather than a numeric ``-0000``. " @@ -186,7 +186,7 @@ msgid "" "*localtime* is ``False``. The default is ``False``." msgstr "" -#: library/email.utils.rst:170 +#: library/email.utils.rst:168 msgid "" "Like ``formatdate``, but the input is a :mod:`datetime` instance. If it is " "a naive datetime, it is assumed to be \"UTC with no information about the " @@ -198,11 +198,11 @@ msgid "" "date headers." msgstr "" -#: library/email.utils.rst:184 +#: library/email.utils.rst:182 msgid "Decode the string *s* according to :rfc:`2231`." msgstr "" -#: library/email.utils.rst:189 +#: library/email.utils.rst:187 msgid "" "Encode the string *s* according to :rfc:`2231`. Optional *charset* and " "*language*, if given is the character set name and language name to use. If " @@ -211,7 +211,7 @@ msgid "" "*language*." msgstr "" -#: library/email.utils.rst:197 +#: library/email.utils.rst:195 msgid "" "When a header parameter is encoded in :rfc:`2231` format, :meth:`Message." "get_param ` may return a 3-tuple containing " @@ -223,23 +223,23 @@ msgid "" "defaults to ``'us-ascii'``." msgstr "" -#: library/email.utils.rst:206 +#: library/email.utils.rst:204 msgid "" "For convenience, if the *value* passed to :func:`collapse_rfc2231_value` is " "not a tuple, it should be a string and it is returned unquoted." msgstr "" -#: library/email.utils.rst:212 +#: library/email.utils.rst:210 msgid "" "Decode parameters list according to :rfc:`2231`. *params* is a sequence of " "2-tuples containing elements of the form ``(content-type, string-value)``." msgstr "" -#: library/email.utils.rst:217 +#: library/email.utils.rst:215 msgid "Footnotes" msgstr "" -#: library/email.utils.rst:218 +#: library/email.utils.rst:216 msgid "" "Note that the sign of the timezone offset is the opposite of the sign of the " "``time.timezone`` variable for the same timezone; the latter variable " diff --git a/library/enum.po b/library/enum.po index 50b39b583..dd8b195b1 100644 --- a/library/enum.po +++ b/library/enum.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -208,85 +208,86 @@ msgstr "" #: library/enum.rst:121 msgid "" "Allows :class:`Enum` members to have attributes without conflicting with " -"member names." +"member names. The ``value`` and ``name`` attributes are implemented this " +"way." msgstr "" -#: library/enum.rst:124 +#: library/enum.rst:125 msgid ":func:`unique`" msgstr "" -#: library/enum.rst:126 +#: library/enum.rst:127 msgid "" "Enum class decorator that ensures only one name is bound to any one value." msgstr "" -#: library/enum.rst:128 +#: library/enum.rst:129 msgid ":func:`verify`" msgstr "" -#: library/enum.rst:130 +#: library/enum.rst:131 msgid "" "Enum class decorator that checks user-selectable constraints on an " "enumeration." msgstr "" -#: library/enum.rst:133 +#: library/enum.rst:134 msgid ":func:`member`" msgstr "" -#: library/enum.rst:135 +#: library/enum.rst:136 msgid "Make ``obj`` a member. Can be used as a decorator." msgstr "" -#: library/enum.rst:137 +#: library/enum.rst:138 msgid ":func:`nonmember`" msgstr "" -#: library/enum.rst:139 +#: library/enum.rst:140 msgid "Do not make ``obj`` a member. Can be used as a decorator." msgstr "" -#: library/enum.rst:141 +#: library/enum.rst:142 msgid ":func:`global_enum`" msgstr "" -#: library/enum.rst:143 +#: library/enum.rst:144 msgid "" "Modify the :class:`str() ` and :func:`repr` of an enum to show its " "members as belonging to the module instead of its class, and export the enum " "members to the global namespace." msgstr "" -#: library/enum.rst:147 +#: library/enum.rst:148 msgid ":func:`show_flag_values`" msgstr "" -#: library/enum.rst:149 +#: library/enum.rst:150 msgid "Return a list of all power-of-two integers contained in a flag." msgstr "" -#: library/enum.rst:152 +#: library/enum.rst:153 msgid "``Flag``, ``IntFlag``, ``auto``" msgstr "" -#: library/enum.rst:153 +#: library/enum.rst:154 msgid "" "``StrEnum``, ``EnumCheck``, ``ReprEnum``, ``FlagBoundary``, ``property``, " "``member``, ``nonmember``, ``global_enum``, ``show_flag_values``" msgstr "" -#: library/enum.rst:158 +#: library/enum.rst:159 msgid "Data Types" msgstr "" -#: library/enum.rst:163 +#: library/enum.rst:164 msgid "" "*EnumType* is the :term:`metaclass` for *enum* enumerations. It is possible " "to subclass *EnumType* -- see :ref:`Subclassing EnumType ` for details." msgstr "" -#: library/enum.rst:167 +#: library/enum.rst:168 msgid "" "*EnumType* is responsible for setting the correct :meth:`!__repr__`, :meth:`!" "__str__`, :meth:`!__format__`, and :meth:`!__reduce__` methods on the final " @@ -294,11 +295,11 @@ msgid "" "providing iteration over the enum class, etc." msgstr "" -#: library/enum.rst:174 +#: library/enum.rst:175 msgid "This method is called in two different ways:" msgstr "" -#: library/enum.rst:176 +#: library/enum.rst:177 msgid "to look up an existing member:" msgstr "" @@ -306,7 +307,7 @@ msgstr "" msgid "cls" msgstr "" -#: library/enum.rst:184 +#: library/enum.rst:185 msgid "The enum class being called." msgstr "" @@ -314,17 +315,17 @@ msgstr "" msgid "value" msgstr "" -#: library/enum.rst:179 +#: library/enum.rst:180 msgid "The value to lookup." msgstr "" -#: library/enum.rst:181 +#: library/enum.rst:182 msgid "" "to use the ``cls`` enum to create a new enum (only if the existing enum does " "not have any members):" msgstr "" -#: library/enum.rst:185 +#: library/enum.rst:186 msgid "The name of the new Enum to create." msgstr "" @@ -332,7 +333,7 @@ msgstr "" msgid "names" msgstr "" -#: library/enum.rst:186 +#: library/enum.rst:187 msgid "The names/values of the members for the new Enum." msgstr "" @@ -340,7 +341,7 @@ msgstr "" msgid "module" msgstr "" -#: library/enum.rst:187 +#: library/enum.rst:188 msgid "The name of the module the new Enum is created in." msgstr "" @@ -348,7 +349,7 @@ msgstr "" msgid "qualname" msgstr "" -#: library/enum.rst:188 +#: library/enum.rst:189 msgid "The actual location in the module where this Enum can be found." msgstr "" @@ -356,7 +357,7 @@ msgstr "" msgid "type" msgstr "" -#: library/enum.rst:189 +#: library/enum.rst:190 msgid "A mix-in type for the new Enum." msgstr "" @@ -364,7 +365,7 @@ msgstr "" msgid "start" msgstr "" -#: library/enum.rst:190 +#: library/enum.rst:191 msgid "The first integer value for the Enum (used by :class:`auto`)." msgstr "" @@ -372,93 +373,87 @@ msgstr "" msgid "boundary" msgstr "" -#: library/enum.rst:191 +#: library/enum.rst:192 msgid "" "How to handle out-of-range values from bit operations (:class:`Flag` only)." msgstr "" -#: library/enum.rst:195 +#: library/enum.rst:196 msgid "Returns ``True`` if member belongs to the ``cls``::" msgstr "" -#: library/enum.rst:203 +#: library/enum.rst:204 msgid "" "In Python 3.12 it will be possible to check for member values and not just " "members; until then, a ``TypeError`` will be raised if a non-Enum-member is " "used in a containment check." msgstr "" -#: library/enum.rst:209 +#: library/enum.rst:210 msgid "" "Returns ``['__class__', '__doc__', '__members__', '__module__']`` and the " "names of the members in *cls*::" msgstr "" -#: library/enum.rst:217 -msgid "" -"Returns the Enum member in *cls* matching *name*, or raises an :exc:" -"`AttributeError`::" -msgstr "" - -#: library/enum.rst:224 +#: library/enum.rst:218 msgid "" "Returns the Enum member in *cls* matching *name*, or raises a :exc:" "`KeyError`::" msgstr "" -#: library/enum.rst:231 +#: library/enum.rst:225 msgid "Returns each member in *cls* in definition order::" msgstr "" -#: library/enum.rst:238 +#: library/enum.rst:232 msgid "Returns the number of member in *cls*::" msgstr "" -#: library/enum.rst:245 +#: library/enum.rst:239 msgid "Returns each member in *cls* in reverse definition order::" msgstr "" -#: library/enum.rst:252 +#: library/enum.rst:246 msgid "Before 3.11 ``enum`` used ``EnumMeta`` type, which is kept as an alias." msgstr "" -#: library/enum.rst:257 +#: library/enum.rst:251 msgid "*Enum* is the base class for all *enum* enumerations." msgstr "" -#: library/enum.rst:261 +#: library/enum.rst:255 msgid "The name used to define the ``Enum`` member::" msgstr "" -#: library/enum.rst:268 +#: library/enum.rst:262 msgid "The value given to the ``Enum`` member::" msgstr "" -#: library/enum.rst:273 +#: library/enum.rst:267 msgid "Enum member values" msgstr "" -#: library/enum.rst:275 +#: library/enum.rst:269 msgid "" "Member values can be anything: :class:`int`, :class:`str`, etc. If the " "exact value is unimportant you may use :class:`auto` instances and an " "appropriate value will be chosen for you. See :class:`auto` for the details." msgstr "" -#: library/enum.rst:282 +#: library/enum.rst:276 msgid "" "``_ignore_`` is only used during creation and is removed from the " "enumeration once creation is complete." msgstr "" -#: library/enum.rst:285 +#: library/enum.rst:279 msgid "" "``_ignore_`` is a list of names that will not become members, and whose " "names will also be removed from the completed enumeration. See :ref:" "`TimePeriod ` for an example." msgstr "" -#: library/enum.rst:291 +#: library/enum.rst:285 msgid "" "Returns ``['__class__', '__doc__', '__module__', 'name', 'value']`` and any " "public methods defined on *self.__class__*::" @@ -468,11 +463,11 @@ msgstr "" msgid "name" msgstr "" -#: library/enum.rst:311 +#: library/enum.rst:306 msgid "The name of the member being defined (e.g. 'RED')." msgstr "" -#: library/enum.rst:312 +#: library/enum.rst:307 msgid "The start value for the Enum; the default is 1." msgstr "" @@ -480,7 +475,7 @@ msgstr "" msgid "count" msgstr "" -#: library/enum.rst:313 +#: library/enum.rst:308 msgid "The number of members currently defined, not including this one." msgstr "" @@ -488,41 +483,41 @@ msgstr "" msgid "last_values" msgstr "" -#: library/enum.rst:314 +#: library/enum.rst:309 msgid "A list of the previous values." msgstr "" -#: library/enum.rst:316 +#: library/enum.rst:311 msgid "" "A *staticmethod* that is used to determine the next value returned by :class:" "`auto`::" msgstr "" -#: library/enum.rst:331 +#: library/enum.rst:327 msgid "" "A *classmethod* that is used to further configure subsequent subclasses. By " "default, does nothing." msgstr "" -#: library/enum.rst:336 +#: library/enum.rst:332 msgid "" "A *classmethod* for looking up values not found in *cls*. By default it " "does nothing, but can be overridden to implement custom search behavior::" msgstr "" -#: library/enum.rst:357 +#: library/enum.rst:354 msgid "" "Returns the string used for *repr()* calls. By default, returns the *Enum* " "name, member name, and value, but can be overridden::" msgstr "" -#: library/enum.rst:372 +#: library/enum.rst:370 msgid "" "Returns the string used for *str()* calls. By default, returns the *Enum* " "name and member name, but can be overridden::" msgstr "" -#: library/enum.rst:386 +#: library/enum.rst:385 msgid "" "Returns the string used for *format()* and *f-string* calls. By default, " "returns :meth:`__str__` return value, but can be overridden::" @@ -534,7 +529,11 @@ msgid "" "value, starting with ``1``." msgstr "" -#: library/enum.rst:406 +#: library/enum.rst:403 +msgid "Added :ref:`enum-dataclass-support`" +msgstr "" + +#: library/enum.rst:408 msgid "" "*IntEnum* is the same as *Enum*, but its members are also integers and can " "be used anywhere that an integer can be used. If any integer operation is " @@ -542,20 +541,20 @@ msgid "" "enumeration status." msgstr "" -#: library/enum.rst:427 +#: library/enum.rst:429 msgid "" "Using :class:`auto` with :class:`IntEnum` results in integers of increasing " "value, starting with ``1``." msgstr "" -#: library/enum.rst:430 +#: library/enum.rst:432 msgid "" ":meth:`~object.__str__` is now :meth:`!int.__str__` to better support the " "*replacement of existing constants* use-case. :meth:`~object.__format__` was " "already :meth:`!int.__format__` for that same reason." msgstr "" -#: library/enum.rst:437 +#: library/enum.rst:439 msgid "" "*StrEnum* is the same as *Enum*, but its members are also strings and can be " "used in most of the same places that a string can be used. The result of " @@ -563,7 +562,7 @@ msgid "" "the enumeration." msgstr "" -#: library/enum.rst:443 +#: library/enum.rst:445 msgid "" "There are places in the stdlib that check for an exact :class:`str` instead " "of a :class:`str` subclass (i.e. ``type(unknown) == str`` instead of " @@ -571,285 +570,285 @@ msgid "" "``str(StrEnum.member)``." msgstr "" -#: library/enum.rst:450 +#: library/enum.rst:452 msgid "" "Using :class:`auto` with :class:`StrEnum` results in the lower-cased member " "name as the value." msgstr "" -#: library/enum.rst:455 +#: library/enum.rst:457 msgid "" ":meth:`~object.__str__` is :meth:`!str.__str__` to better support the " "*replacement of existing constants* use-case. :meth:`~object.__format__` is " "likewise :meth:`!str.__format__` for that same reason." msgstr "" -#: library/enum.rst:463 +#: library/enum.rst:465 msgid "" "*Flag* members support the bitwise operators ``&`` (*AND*), ``|`` (*OR*), " "``^`` (*XOR*), and ``~`` (*INVERT*); the results of those operators are " "members of the enumeration." msgstr "" -#: library/enum.rst:469 +#: library/enum.rst:471 msgid "Returns *True* if value is in self::" msgstr "" -#: library/enum.rst:489 +#: library/enum.rst:492 msgid "Returns all contained non-alias members::" msgstr "" -#: library/enum.rst:498 +#: library/enum.rst:501 msgid "Aliases are no longer returned during iteration." msgstr "" -#: library/enum.rst:502 +#: library/enum.rst:505 msgid "Returns number of members in flag::" msgstr "" -#: library/enum.rst:511 +#: library/enum.rst:514 msgid "Returns *True* if any members in flag, *False* otherwise::" msgstr "" -#: library/enum.rst:523 +#: library/enum.rst:526 msgid "Returns current flag binary or'ed with other::" msgstr "" -#: library/enum.rst:530 +#: library/enum.rst:533 msgid "Returns current flag binary and'ed with other::" msgstr "" -#: library/enum.rst:539 +#: library/enum.rst:542 msgid "Returns current flag binary xor'ed with other::" msgstr "" -#: library/enum.rst:548 +#: library/enum.rst:551 msgid "Returns all the flags in *type(self)* that are not in self::" msgstr "" -#: library/enum.rst:559 +#: library/enum.rst:562 msgid "" "Function used to format any remaining unnamed numeric values. Default is " "the value's repr; common choices are :func:`hex` and :func:`oct`." msgstr "" -#: library/enum.rst:564 +#: library/enum.rst:567 msgid "" "Using :class:`auto` with :class:`Flag` results in integers that are powers " "of two, starting with ``1``." msgstr "" -#: library/enum.rst:567 +#: library/enum.rst:570 msgid "The *repr()* of zero-valued flags has changed. It is now::" msgstr "" -#: library/enum.rst:575 +#: library/enum.rst:578 msgid "" "*IntFlag* is the same as *Flag*, but its members are also integers and can " "be used anywhere that an integer can be used." msgstr "" -#: library/enum.rst:588 +#: library/enum.rst:592 msgid "" "If any integer operation is performed with an *IntFlag* member, the result " "is not an *IntFlag*::" msgstr "" -#: library/enum.rst:594 +#: library/enum.rst:598 msgid "If a *Flag* operation is performed with an *IntFlag* member and:" msgstr "" -#: library/enum.rst:596 +#: library/enum.rst:600 msgid "the result is a valid *IntFlag*: an *IntFlag* is returned" msgstr "" -#: library/enum.rst:597 +#: library/enum.rst:601 msgid "" "the result is not a valid *IntFlag*: the result depends on the " "*FlagBoundary* setting" msgstr "" -#: library/enum.rst:599 +#: library/enum.rst:603 msgid "The *repr()* of unnamed zero-valued flags has changed. It is now:" msgstr "" -#: library/enum.rst:606 +#: library/enum.rst:610 msgid "" "Using :class:`auto` with :class:`IntFlag` results in integers that are " "powers of two, starting with ``1``." msgstr "" -#: library/enum.rst:611 +#: library/enum.rst:615 msgid "" ":meth:`~object.__str__` is now :meth:`!int.__str__` to better support the " "*replacement of existing constants* use-case. :meth:`~object.__format__` " "was already :meth:`!int.__format__` for that same reason." msgstr "" -#: library/enum.rst:615 +#: library/enum.rst:619 msgid "" "Inversion of an :class:`!IntFlag` now returns a positive value that is the " "union of all flags not in the given flag, rather than a negative value. This " "matches the existing :class:`Flag` behavior." msgstr "" -#: library/enum.rst:621 +#: library/enum.rst:625 msgid "" ":class:`!ReprEnum` uses the :meth:`repr() ` of :class:`Enum`, " "but the :class:`str() ` of the mixed-in data type:" msgstr "" -#: library/enum.rst:624 +#: library/enum.rst:628 msgid ":meth:`!int.__str__` for :class:`IntEnum` and :class:`IntFlag`" msgstr "" -#: library/enum.rst:625 +#: library/enum.rst:629 msgid ":meth:`!str.__str__` for :class:`StrEnum`" msgstr "" -#: library/enum.rst:627 +#: library/enum.rst:631 msgid "" "Inherit from :class:`!ReprEnum` to keep the :class:`str() ` / :func:" "`format` of the mixed-in data type instead of using the :class:`Enum`-" "default :meth:`str() `." msgstr "" -#: library/enum.rst:636 +#: library/enum.rst:640 msgid "" "*EnumCheck* contains the options used by the :func:`verify` decorator to " "ensure various constraints; failed constraints result in a :exc:`ValueError`." msgstr "" -#: library/enum.rst:641 +#: library/enum.rst:645 msgid "Ensure that each value has only one name::" msgstr "" -#: library/enum.rst:657 +#: library/enum.rst:661 msgid "" "Ensure that there are no missing values between the lowest-valued member and " "the highest-valued member::" msgstr "" -#: library/enum.rst:672 +#: library/enum.rst:676 msgid "" "Ensure that any flag groups/masks contain only named flags -- useful when " "values are specified instead of being generated by :func:`auto`::" msgstr "" -#: library/enum.rst:689 +#: library/enum.rst:693 msgid "" "CONTINUOUS and NAMED_FLAGS are designed to work with integer-valued members." msgstr "" -#: library/enum.rst:695 +#: library/enum.rst:699 msgid "" "*FlagBoundary* controls how out-of-range values are handled in *Flag* and " "its subclasses." msgstr "" -#: library/enum.rst:700 +#: library/enum.rst:704 msgid "" "Out-of-range values cause a :exc:`ValueError` to be raised. This is the " "default for :class:`Flag`::" msgstr "" -#: library/enum.rst:717 +#: library/enum.rst:722 msgid "" "Out-of-range values have invalid values removed, leaving a valid *Flag* " "value::" msgstr "" -#: library/enum.rst:730 +#: library/enum.rst:736 msgid "" "Out-of-range values lose their *Flag* membership and revert to :class:`int`." msgstr "" -#: library/enum.rst:742 +#: library/enum.rst:749 msgid "" "Out-of-range values are kept, and the *Flag* membership is kept. This is the " "default for :class:`IntFlag`::" msgstr "" -#: library/enum.rst:758 +#: library/enum.rst:766 msgid "Supported ``__dunder__`` names" msgstr "" -#: library/enum.rst:760 +#: library/enum.rst:768 msgid "" ":attr:`~EnumType.__members__` is a read-only ordered mapping of " "``member_name``:``member`` items. It is only available on the class." msgstr "" -#: library/enum.rst:763 +#: library/enum.rst:771 msgid "" ":meth:`~object.__new__`, if specified, must create and return the enum " "members; it is also a very good idea to set the member's :attr:`!_value_` " "appropriately. Once all the members are created it is no longer used." msgstr "" -#: library/enum.rst:769 +#: library/enum.rst:777 msgid "Supported ``_sunder_`` names" msgstr "" -#: library/enum.rst:771 +#: library/enum.rst:779 msgid "``_name_`` -- name of the member" msgstr "" -#: library/enum.rst:772 +#: library/enum.rst:780 msgid "" "``_value_`` -- value of the member; can be set / modified in ``__new__``" msgstr "" -#: library/enum.rst:774 +#: library/enum.rst:782 msgid "" "``_missing_`` -- a lookup function used when a value is not found; may be " "overridden" msgstr "" -#: library/enum.rst:776 +#: library/enum.rst:784 msgid "" "``_ignore_`` -- a list of names, either as a :class:`list` or a :class:" "`str`, that will not be transformed into members, and will be removed from " "the final class" msgstr "" -#: library/enum.rst:779 +#: library/enum.rst:787 msgid "" "``_order_`` -- used in Python 2/3 code to ensure member order is consistent " "(class attribute, removed during class creation)" msgstr "" -#: library/enum.rst:781 +#: library/enum.rst:789 msgid "" "``_generate_next_value_`` -- used to get an appropriate value for an enum " "member; may be overridden" msgstr "" -#: library/enum.rst:786 +#: library/enum.rst:794 msgid "" "For standard :class:`Enum` classes the next value chosen is the last value " "seen incremented by one." msgstr "" -#: library/enum.rst:789 +#: library/enum.rst:797 msgid "" "For :class:`Flag` classes the next value chosen will be the next highest " "power-of-two, regardless of the last value seen." msgstr "" -#: library/enum.rst:792 +#: library/enum.rst:800 msgid "``_missing_``, ``_order_``, ``_generate_next_value_``" msgstr "" -#: library/enum.rst:793 +#: library/enum.rst:801 msgid "``_ignore_``" msgstr "" -#: library/enum.rst:798 +#: library/enum.rst:806 msgid "Utilities and Decorators" msgstr "" -#: library/enum.rst:802 +#: library/enum.rst:810 msgid "" "*auto* can be used in place of a value. If used, the *Enum* machinery will " "call an *Enum*'s :meth:`~Enum._generate_next_value_` to get an appropriate " @@ -860,58 +859,58 @@ msgid "" "manually specified values." msgstr "" -#: library/enum.rst:810 +#: library/enum.rst:818 msgid "" "*auto* instances are only resolved when at the top level of an assignment:" msgstr "" -#: library/enum.rst:812 +#: library/enum.rst:820 msgid "``FIRST = auto()`` will work (auto() is replaced with ``1``);" msgstr "" -#: library/enum.rst:813 +#: library/enum.rst:821 msgid "" "``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` " "is" msgstr "" -#: library/enum.rst:814 +#: library/enum.rst:822 msgid "used to create the ``SECOND`` enum member;" msgstr "" -#: library/enum.rst:815 +#: library/enum.rst:823 msgid "" "``THREE = [auto(), -3]`` will *not* work (``, -3`` is used to " "create the ``THREE`` enum member)" msgstr "" -#: library/enum.rst:820 +#: library/enum.rst:828 msgid "" "In prior versions, ``auto()`` had to be the only thing on the assignment " "line to work properly." msgstr "" -#: library/enum.rst:823 +#: library/enum.rst:831 msgid "" "``_generate_next_value_`` can be overridden to customize the values used by " "*auto*." msgstr "" -#: library/enum.rst:826 +#: library/enum.rst:834 msgid "" "in 3.13 the default ``_generate_next_value_`` will always return the highest " "member value incremented by 1, and will fail if any member is an " "incompatible type." msgstr "" -#: library/enum.rst:832 +#: library/enum.rst:840 msgid "" "A decorator similar to the built-in *property*, but specifically for " "enumerations. It allows member attributes to have the same names as members " "themselves." msgstr "" -#: library/enum.rst:836 +#: library/enum.rst:844 msgid "" "the *property* and the member must be defined in separate classes; for " "example, the *value* and *name* attributes are defined in the *Enum* class, " @@ -919,29 +918,29 @@ msgid "" "``name``." msgstr "" -#: library/enum.rst:845 +#: library/enum.rst:853 msgid "" "A :keyword:`class` decorator specifically for enumerations. It searches an " "enumeration's :attr:`~EnumType.__members__`, gathering any aliases it finds; " "if any are found :exc:`ValueError` is raised with the details::" msgstr "" -#: library/enum.rst:863 +#: library/enum.rst:871 msgid "" "A :keyword:`class` decorator specifically for enumerations. Members from :" "class:`EnumCheck` are used to specify which constraints should be checked on " "the decorated enumeration." msgstr "" -#: library/enum.rst:871 +#: library/enum.rst:879 msgid "A decorator for use in enums: its target will become a member." msgstr "" -#: library/enum.rst:877 +#: library/enum.rst:885 msgid "A decorator for use in enums: its target will not become a member." msgstr "" -#: library/enum.rst:883 +#: library/enum.rst:891 msgid "" "A decorator to change the :class:`str() ` and :func:`repr` of an enum " "to show its members as belonging to the module instead of its class. Should " @@ -949,40 +948,40 @@ msgid "" "namespace (see :class:`re.RegexFlag` for an example)." msgstr "" -#: library/enum.rst:893 +#: library/enum.rst:901 msgid "Return a list of all power-of-two integers contained in a flag *value*." msgstr "" -#: library/enum.rst:900 +#: library/enum.rst:908 msgid "Notes" msgstr "" -#: library/enum.rst:902 +#: library/enum.rst:910 msgid ":class:`IntEnum`, :class:`StrEnum`, and :class:`IntFlag`" msgstr "" -#: library/enum.rst:904 +#: library/enum.rst:912 msgid "" "These three enum types are designed to be drop-in replacements for existing " "integer- and string-based values; as such, they have extra limitations:" msgstr "" -#: library/enum.rst:907 +#: library/enum.rst:915 msgid "``__str__`` uses the value and not the name of the enum member" msgstr "" -#: library/enum.rst:909 +#: library/enum.rst:917 msgid "" "``__format__``, because it uses ``__str__``, will also use the value of the " "enum member instead of its name" msgstr "" -#: library/enum.rst:912 +#: library/enum.rst:920 msgid "" "If you do not need/want those limitations, you can either create your own " "base class by mixing in the ``int`` or ``str`` type yourself::" msgstr "" -#: library/enum.rst:919 +#: library/enum.rst:927 msgid "or you can reassign the appropriate :meth:`str`, etc., in your enum::" msgstr "" diff --git a/library/fcntl.po b/library/fcntl.po index 8fb83a319..3d48d8445 100644 --- a/library/fcntl.po +++ b/library/fcntl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -84,10 +84,18 @@ msgid "" msgstr "" #: library/fcntl.rst:55 +msgid "" +"On Linux >= 4.5, the :mod:`fcntl` module exposes the ``FICLONE`` and " +"``FICLONERANGE`` constants, which allow to share some data of one file with " +"another file by reflinking on some filesystems (e.g., btrfs, OCFS2, and " +"XFS). This behavior is commonly referred to as \"copy-on-write\"." +msgstr "" + +#: library/fcntl.rst:61 msgid "The module defines the following functions:" msgstr "" -#: library/fcntl.rst:60 +#: library/fcntl.rst:66 msgid "" "Perform the operation *cmd* on file descriptor *fd* (file objects providing " "a :meth:`~io.IOBase.fileno` method are accepted as well). The values used " @@ -106,23 +114,23 @@ msgid "" "result in a segmentation violation or a more subtle data corruption." msgstr "" -#: library/fcntl.rst:77 +#: library/fcntl.rst:83 msgid "If the :c:func:`fcntl` fails, an :exc:`OSError` is raised." msgstr "" -#: library/fcntl.rst:90 +#: library/fcntl.rst:96 msgid "" "Raises an :ref:`auditing event ` ``fcntl.fcntl`` with arguments " "``fd``, ``cmd``, ``arg``." msgstr "" -#: library/fcntl.rst:84 +#: library/fcntl.rst:90 msgid "" "This function is identical to the :func:`~fcntl.fcntl` function, except that " "the argument handling is even more complicated." msgstr "" -#: library/fcntl.rst:87 +#: library/fcntl.rst:93 msgid "" "The *request* parameter is limited to values that can fit in 32-bits. " "Additional constants of interest for use as the *request* argument can be " @@ -130,26 +138,26 @@ msgid "" "relevant C header files." msgstr "" -#: library/fcntl.rst:92 +#: library/fcntl.rst:98 msgid "" "The parameter *arg* can be one of an integer, an object supporting the read-" "only buffer interface (like :class:`bytes`) or an object supporting the read-" "write buffer interface (like :class:`bytearray`)." msgstr "" -#: library/fcntl.rst:96 +#: library/fcntl.rst:102 msgid "" "In all but the last case, behaviour is as for the :func:`~fcntl.fcntl` " "function." msgstr "" -#: library/fcntl.rst:99 +#: library/fcntl.rst:105 msgid "" "If a mutable buffer is passed, then the behaviour is determined by the value " "of the *mutate_flag* parameter." msgstr "" -#: library/fcntl.rst:102 +#: library/fcntl.rst:108 msgid "" "If it is false, the buffer's mutability is ignored and behaviour is as for a " "read-only buffer, except that the 1024 byte limit mentioned above is avoided " @@ -157,7 +165,7 @@ msgid "" "system wants to put there, things should work." msgstr "" -#: library/fcntl.rst:107 +#: library/fcntl.rst:113 msgid "" "If *mutate_flag* is true (the default), then the buffer is (in effect) " "passed to the underlying :func:`ioctl` system call, the latter's return code " @@ -168,21 +176,21 @@ msgid "" "copied back into the supplied buffer." msgstr "" -#: library/fcntl.rst:115 +#: library/fcntl.rst:121 msgid "If the :c:func:`ioctl` fails, an :exc:`OSError` exception is raised." msgstr "" -#: library/fcntl.rst:117 +#: library/fcntl.rst:123 msgid "An example::" msgstr "" -#: library/fcntl.rst:141 +#: library/fcntl.rst:147 msgid "" "Raises an :ref:`auditing event ` ``fcntl.ioctl`` with arguments " "``fd``, ``request``, ``arg``." msgstr "" -#: library/fcntl.rst:135 +#: library/fcntl.rst:141 msgid "" "Perform the lock operation *operation* on file descriptor *fd* (file objects " "providing a :meth:`~io.IOBase.fileno` method are accepted as well). See the " @@ -190,17 +198,17 @@ msgid "" "function is emulated using :c:func:`fcntl`.)" msgstr "" -#: library/fcntl.rst:140 +#: library/fcntl.rst:146 msgid "If the :c:func:`flock` fails, an :exc:`OSError` exception is raised." msgstr "" -#: library/fcntl.rst:153 +#: library/fcntl.rst:159 msgid "" "Raises an :ref:`auditing event ` ``fcntl.flock`` with arguments " "``fd``, ``operation``." msgstr "" -#: library/fcntl.rst:147 +#: library/fcntl.rst:153 msgid "" "This is essentially a wrapper around the :func:`~fcntl.fcntl` locking calls. " "*fd* is the file descriptor (file objects providing a :meth:`~io.IOBase." @@ -208,19 +216,19 @@ msgid "" "*cmd* is one of the following values:" msgstr "" -#: library/fcntl.rst:152 +#: library/fcntl.rst:158 msgid ":const:`LOCK_UN` -- unlock" msgstr "" -#: library/fcntl.rst:153 +#: library/fcntl.rst:159 msgid ":const:`LOCK_SH` -- acquire a shared lock" msgstr "" -#: library/fcntl.rst:154 +#: library/fcntl.rst:160 msgid ":const:`LOCK_EX` -- acquire an exclusive lock" msgstr "" -#: library/fcntl.rst:156 +#: library/fcntl.rst:162 msgid "" "When *cmd* is :const:`LOCK_SH` or :const:`LOCK_EX`, it can also be bitwise " "ORed with :const:`LOCK_NB` to avoid blocking on lock acquisition. If :const:" @@ -232,43 +240,43 @@ msgid "" "for writing." msgstr "" -#: library/fcntl.rst:165 +#: library/fcntl.rst:171 msgid "" "*len* is the number of bytes to lock, *start* is the byte offset at which " "the lock starts, relative to *whence*, and *whence* is as with :func:`io." "IOBase.seek`, specifically:" msgstr "" -#: library/fcntl.rst:169 +#: library/fcntl.rst:175 msgid "``0`` -- relative to the start of the file (:const:`os.SEEK_SET`)" msgstr "" -#: library/fcntl.rst:170 +#: library/fcntl.rst:176 msgid "``1`` -- relative to the current buffer position (:const:`os.SEEK_CUR`)" msgstr "" -#: library/fcntl.rst:171 +#: library/fcntl.rst:177 msgid "``2`` -- relative to the end of the file (:const:`os.SEEK_END`)" msgstr "" -#: library/fcntl.rst:173 +#: library/fcntl.rst:179 msgid "" "The default for *start* is 0, which means to start at the beginning of the " "file. The default for *len* is 0 which means to lock to the end of the " "file. The default for *whence* is also 0." msgstr "" -#: library/fcntl.rst:188 +#: library/fcntl.rst:194 msgid "" "Raises an :ref:`auditing event ` ``fcntl.lockf`` with arguments " "``fd``, ``cmd``, ``len``, ``start``, ``whence``." msgstr "" -#: library/fcntl.rst:179 +#: library/fcntl.rst:185 msgid "Examples (all on a SVR4 compliant system)::" msgstr "" -#: library/fcntl.rst:189 +#: library/fcntl.rst:195 msgid "" "Note that in the first example the return value variable *rv* will hold an " "integer value; in the second example it will hold a :class:`bytes` object. " @@ -276,11 +284,11 @@ msgid "" "therefore using the :func:`flock` call may be better." msgstr "" -#: library/fcntl.rst:200 +#: library/fcntl.rst:206 msgid "Module :mod:`os`" msgstr "" -#: library/fcntl.rst:198 +#: library/fcntl.rst:204 msgid "" "If the locking flags :const:`~os.O_SHLOCK` and :const:`~os.O_EXLOCK` are " "present in the :mod:`os` module (on BSD only), the :func:`os.open` function " diff --git a/library/fractions.po b/library/fractions.po index 191add63b..fdde3faad 100644 --- a/library/fractions.po +++ b/library/fractions.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -98,69 +98,85 @@ msgid "" "SupportsInt`` instance checks." msgstr "" -#: library/fractions.rst:103 +#: library/fractions.rst:101 +msgid "" +"Space is allowed around the slash for string inputs: ``Fraction('2 / 3')``." +msgstr "" + +#: library/fractions.rst:104 +msgid "" +":class:`Fraction` instances now support float-style formatting, with " +"presentation types ``\"e\"``, ``\"E\"``, ``\"f\"``, ``\"F\"``, ``\"g\"``, " +"``\"G\"`` and ``\"%\"\"``." +msgstr "" + +#: library/fractions.rst:111 msgid "Numerator of the Fraction in lowest term." msgstr "" -#: library/fractions.rst:107 +#: library/fractions.rst:115 msgid "Denominator of the Fraction in lowest term." msgstr "" -#: library/fractions.rst:112 +#: library/fractions.rst:120 msgid "" -"Return a tuple of two integers, whose ratio is equal to the Fraction and " -"with a positive denominator." +"Return a tuple of two integers, whose ratio is equal to the original " +"Fraction. The ratio is in lowest terms and has a positive denominator." +msgstr "" + +#: library/fractions.rst:128 +msgid "Return ``True`` if the Fraction is an integer." msgstr "" -#: library/fractions.rst:119 +#: library/fractions.rst:134 msgid "" "Alternative constructor which only accepts instances of :class:`float` or :" "class:`numbers.Integral`. Beware that ``Fraction.from_float(0.3)`` is not " "the same value as ``Fraction(3, 10)``." msgstr "" -#: library/fractions.rst:125 +#: library/fractions.rst:140 msgid "" "From Python 3.2 onwards, you can also construct a :class:`Fraction` instance " "directly from a :class:`float`." msgstr "" -#: library/fractions.rst:131 +#: library/fractions.rst:146 msgid "" "Alternative constructor which only accepts instances of :class:`decimal." "Decimal` or :class:`numbers.Integral`." msgstr "" -#: library/fractions.rst:136 +#: library/fractions.rst:151 msgid "" "From Python 3.2 onwards, you can also construct a :class:`Fraction` instance " "directly from a :class:`decimal.Decimal` instance." msgstr "" -#: library/fractions.rst:143 +#: library/fractions.rst:158 msgid "" "Finds and returns the closest :class:`Fraction` to ``self`` that has " "denominator at most max_denominator. This method is useful for finding " "rational approximations to a given floating-point number:" msgstr "" -#: library/fractions.rst:151 +#: library/fractions.rst:166 msgid "or for recovering a rational number that's represented as a float:" msgstr "" -#: library/fractions.rst:164 +#: library/fractions.rst:179 msgid "" "Returns the greatest :class:`int` ``<= self``. This method can also be " "accessed through the :func:`math.floor` function:" msgstr "" -#: library/fractions.rst:174 +#: library/fractions.rst:189 msgid "" "Returns the least :class:`int` ``>= self``. This method can also be " "accessed through the :func:`math.ceil` function." msgstr "" -#: library/fractions.rst:181 +#: library/fractions.rst:196 msgid "" "The first version returns the nearest :class:`int` to ``self``, rounding " "half to even. The second version rounds ``self`` to the nearest multiple of " @@ -169,10 +185,25 @@ msgid "" "func:`round` function." msgstr "" -#: library/fractions.rst:190 +#: library/fractions.rst:204 +msgid "" +"Provides support for float-style formatting of :class:`Fraction` instances " +"via the :meth:`str.format` method, the :func:`format` built-in function, or :" +"ref:`Formatted string literals `. The presentation types " +"``\"e\"``, ``\"E\"``, ``\"f\"``, ``\"F\"``, ``\"g\"``, ``\"G\"`` and ``\"%" +"\"`` are supported. For these presentation types, formatting for a :class:" +"`Fraction` object ``x`` follows the rules outlined for the :class:`float` " +"type in the :ref:`formatspec` section." +msgstr "" + +#: library/fractions.rst:212 +msgid "Here are some examples::" +msgstr "" + +#: library/fractions.rst:228 msgid "Module :mod:`numbers`" msgstr "" -#: library/fractions.rst:191 +#: library/fractions.rst:229 msgid "The abstract base classes making up the numeric tower." msgstr "" diff --git a/library/ftplib.po b/library/ftplib.po index 3d616ce43..7cba0eb80 100644 --- a/library/ftplib.po +++ b/library/ftplib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -78,11 +78,11 @@ msgstr "" msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: library/ftplib.rst:105 library/ftplib.rst:214 +#: library/ftplib.rst:102 library/ftplib.rst:207 msgid "*source_address* parameter was added." msgstr "" -#: library/ftplib.rst:120 +#: library/ftplib.rst:110 msgid "" "If the *timeout* parameter is set to be zero, it will raise a :class:" "`ValueError` to prevent the creation of a non-blocking socket. The " @@ -90,7 +90,7 @@ msgid "" "UTF-8 to follow :rfc:`2640`." msgstr "" -#: library/ftplib.rst:90 +#: library/ftplib.rst:91 msgid "" "A :class:`FTP` subclass which adds TLS support to FTP as described in :rfc:" "`4217`. Connect as usual to port 21 implicitly securing the FTP control " @@ -102,54 +102,44 @@ msgid "" "best practices." msgstr "" -#: library/ftplib.rst:99 -msgid "" -"*keyfile* and *certfile* are a legacy alternative to *context* -- they can " -"point to PEM-formatted private key and certificate chain files " -"(respectively) for the SSL connection." -msgstr "" - -#: library/ftplib.rst:108 +#: library/ftplib.rst:105 msgid "" "The class now supports hostname check with :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: library/ftplib.rst:115 -msgid "" -"*keyfile* and *certfile* are deprecated in favor of *context*. Please use :" -"meth:`ssl.SSLContext.load_cert_chain` instead, or let :func:`ssl." -"create_default_context` select the system's trusted CA certificates for you." +#: library/ftplib.rst:116 +msgid "The deprecated *keyfile* and *certfile* parameters have been removed." msgstr "" -#: library/ftplib.rst:126 +#: library/ftplib.rst:119 msgid "Here's a sample session using the :class:`FTP_TLS` class::" msgstr "" -#: library/ftplib.rst:139 +#: library/ftplib.rst:132 msgid "Exception raised when an unexpected reply is received from the server." msgstr "" -#: library/ftplib.rst:144 +#: library/ftplib.rst:137 msgid "" "Exception raised when an error code signifying a temporary error (response " "codes in the range 400--499) is received." msgstr "" -#: library/ftplib.rst:150 +#: library/ftplib.rst:143 msgid "" "Exception raised when an error code signifying a permanent error (response " "codes in the range 500--599) is received." msgstr "" -#: library/ftplib.rst:156 +#: library/ftplib.rst:149 msgid "" "Exception raised when a reply is received from the server that does not fit " "the response specifications of the File Transfer Protocol, i.e. begin with a " "digit in the range 1--5." msgstr "" -#: library/ftplib.rst:163 +#: library/ftplib.rst:156 msgid "" "The set of all exceptions (as a tuple) that methods of :class:`FTP` " "instances may raise as a result of problems with the FTP connection (as " @@ -157,22 +147,22 @@ msgid "" "four exceptions listed above as well as :exc:`OSError` and :exc:`EOFError`." msgstr "" -#: library/ftplib.rst:173 +#: library/ftplib.rst:166 msgid "Module :mod:`netrc`" msgstr "" -#: library/ftplib.rst:172 +#: library/ftplib.rst:165 msgid "" "Parser for the :file:`.netrc` file format. The file :file:`.netrc` is " "typically used by FTP clients to load user authentication information before " "prompting the user." msgstr "" -#: library/ftplib.rst:180 +#: library/ftplib.rst:173 msgid "FTP Objects" msgstr "" -#: library/ftplib.rst:182 +#: library/ftplib.rst:175 msgid "" "Several methods are available in two flavors: one for handling text files " "and another for binary files. These are named for the command which is used " @@ -180,11 +170,11 @@ msgid "" "version." msgstr "" -#: library/ftplib.rst:186 +#: library/ftplib.rst:179 msgid ":class:`FTP` instances have the following methods:" msgstr "" -#: library/ftplib.rst:191 +#: library/ftplib.rst:184 msgid "" "Set the instance's debugging level. This controls the amount of debugging " "output printed. The default, ``0``, produces no debugging output. A value " @@ -194,7 +184,7 @@ msgid "" "connection." msgstr "" -#: library/ftplib.rst:200 +#: library/ftplib.rst:193 msgid "" "Connect to the given host and port. The default port number is ``21``, as " "specified by the FTP protocol specification. It is rarely needed to specify " @@ -207,20 +197,20 @@ msgid "" "port)`` for the socket to bind to as its source address before connecting." msgstr "" -#: library/ftplib.rst:223 +#: library/ftplib.rst:216 msgid "" "Raises an :ref:`auditing event ` ``ftplib.connect`` with arguments " "``self``, ``host``, ``port``." msgstr "" -#: library/ftplib.rst:220 +#: library/ftplib.rst:213 msgid "" "Return the welcome message sent by the server in reply to the initial " "connection. (This message sometimes contains disclaimers or help " "information that may be relevant to the user.)" msgstr "" -#: library/ftplib.rst:227 +#: library/ftplib.rst:220 msgid "" "Log in as the given *user*. The *passwd* and *acct* parameters are optional " "and default to the empty string. If no *user* is specified, it defaults to " @@ -232,31 +222,31 @@ msgid "" "parameter supplies \"accounting information\"; few systems implement this." msgstr "" -#: library/ftplib.rst:239 +#: library/ftplib.rst:232 msgid "" "Abort a file transfer that is in progress. Using this does not always work, " "but it's worth a try." msgstr "" -#: library/ftplib.rst:245 +#: library/ftplib.rst:238 msgid "" "Send a simple command string to the server and return the response string." msgstr "" -#: library/ftplib.rst:267 +#: library/ftplib.rst:260 msgid "" "Raises an :ref:`auditing event ` ``ftplib.sendcmd`` with arguments " "``self``, ``cmd``." msgstr "" -#: library/ftplib.rst:252 +#: library/ftplib.rst:245 msgid "" "Send a simple command string to the server and handle the response. Return " "nothing if a response code corresponding to success (codes in the range " "200--299) is received. Raise :exc:`error_reply` otherwise." msgstr "" -#: library/ftplib.rst:261 +#: library/ftplib.rst:254 msgid "" "Retrieve a file in binary transfer mode. *cmd* should be an appropriate " "``RETR`` command: ``'RETR filename'``. The *callback* function is called for " @@ -268,7 +258,7 @@ msgid "" "`transfercmd` method." msgstr "" -#: library/ftplib.rst:273 +#: library/ftplib.rst:266 msgid "" "Retrieve a file or directory listing in the encoding specified by the " "*encoding* parameter at initialization. *cmd* should be an appropriate " @@ -280,13 +270,13 @@ msgid "" "*callback* prints the line to ``sys.stdout``." msgstr "" -#: library/ftplib.rst:286 +#: library/ftplib.rst:279 msgid "" "Enable \"passive\" mode if *val* is true, otherwise disable passive mode. " "Passive mode is on by default." msgstr "" -#: library/ftplib.rst:292 +#: library/ftplib.rst:285 msgid "" "Store a file in binary transfer mode. *cmd* should be an appropriate " "``STOR`` command: ``\"STOR filename\"``. *fp* is a :term:`file object` " @@ -297,11 +287,11 @@ msgid "" "*rest* means the same thing as in the :meth:`transfercmd` method." msgstr "" -#: library/ftplib.rst:300 +#: library/ftplib.rst:293 msgid "*rest* parameter added." msgstr "" -#: library/ftplib.rst:306 +#: library/ftplib.rst:299 msgid "" "Store a file in line mode. *cmd* should be an appropriate ``STOR`` command " "(see :meth:`storbinary`). Lines are read until EOF from the :term:`file " @@ -310,7 +300,7 @@ msgid "" "parameter callable that is called on each line after it is sent." msgstr "" -#: library/ftplib.rst:315 +#: library/ftplib.rst:308 msgid "" "Initiate a transfer over the data connection. If the transfer is active, " "send an ``EPRT`` or ``PORT`` command and the transfer command specified by " @@ -319,7 +309,7 @@ msgid "" "command. Either way, return the socket for the connection." msgstr "" -#: library/ftplib.rst:321 +#: library/ftplib.rst:314 msgid "" "If optional *rest* is given, a ``REST`` command is sent to the server, " "passing *rest* as an argument. *rest* is usually a byte offset into the " @@ -332,7 +322,7 @@ msgid "" "simply call :meth:`transfercmd` without a *rest* argument." msgstr "" -#: library/ftplib.rst:334 +#: library/ftplib.rst:327 msgid "" "Like :meth:`transfercmd`, but returns a tuple of the data connection and the " "expected size of the data. If the expected size could not be computed, " @@ -340,7 +330,7 @@ msgid "" "same thing as in :meth:`transfercmd`." msgstr "" -#: library/ftplib.rst:342 +#: library/ftplib.rst:335 msgid "" "List a directory in a standardized format by using ``MLSD`` command (:rfc:" "`3659`). If *path* is omitted the current directory is assumed. *facts* is " @@ -352,7 +342,7 @@ msgid "" "but server is not guaranteed to return all requested facts." msgstr "" -#: library/ftplib.rst:356 +#: library/ftplib.rst:349 msgid "" "Return a list of file names as returned by the ``NLST`` command. The " "optional *argument* is a directory to list (default is the current server " @@ -360,11 +350,11 @@ msgid "" "the ``NLST`` command." msgstr "" -#: library/ftplib.rst:373 +#: library/ftplib.rst:366 msgid "If your server supports the command, :meth:`mlsd` offers a better API." msgstr "" -#: library/ftplib.rst:366 +#: library/ftplib.rst:359 msgid "" "Produce a directory listing as returned by the ``LIST`` command, printing it " "to standard output. The optional *argument* is a directory to list (default " @@ -374,34 +364,34 @@ msgid "" "default prints to ``sys.stdout``. This method returns ``None``." msgstr "" -#: library/ftplib.rst:378 +#: library/ftplib.rst:371 msgid "Rename file *fromname* on the server to *toname*." msgstr "" -#: library/ftplib.rst:383 +#: library/ftplib.rst:376 msgid "" "Remove the file named *filename* from the server. If successful, returns " "the text of the response, otherwise raises :exc:`error_perm` on permission " "errors or :exc:`error_reply` on other errors." msgstr "" -#: library/ftplib.rst:390 +#: library/ftplib.rst:383 msgid "Set the current directory on the server." msgstr "" -#: library/ftplib.rst:395 +#: library/ftplib.rst:388 msgid "Create a new directory on the server." msgstr "" -#: library/ftplib.rst:400 +#: library/ftplib.rst:393 msgid "Return the pathname of the current directory on the server." msgstr "" -#: library/ftplib.rst:405 +#: library/ftplib.rst:398 msgid "Remove the directory named *dirname* on the server." msgstr "" -#: library/ftplib.rst:410 +#: library/ftplib.rst:403 msgid "" "Request the size of the file named *filename* on the server. On success, " "the size of the file is returned as an integer, otherwise ``None`` is " @@ -409,7 +399,7 @@ msgid "" "supported by many common server implementations." msgstr "" -#: library/ftplib.rst:418 +#: library/ftplib.rst:411 msgid "" "Send a ``QUIT`` command to the server and close the connection. This is the " "\"polite\" way to close a connection, but it may raise an exception if the " @@ -418,7 +408,7 @@ msgid "" "for subsequent calls (see below)." msgstr "" -#: library/ftplib.rst:427 +#: library/ftplib.rst:420 msgid "" "Close the connection unilaterally. This should not be applied to an already " "closed connection such as after a successful call to :meth:`~FTP.quit`. " @@ -427,44 +417,44 @@ msgid "" "connection by issuing another :meth:`login` method)." msgstr "" -#: library/ftplib.rst:435 +#: library/ftplib.rst:428 msgid "FTP_TLS Objects" msgstr "" -#: library/ftplib.rst:437 +#: library/ftplib.rst:430 msgid "" ":class:`FTP_TLS` class inherits from :class:`FTP`, defining these additional " "objects:" msgstr "" -#: library/ftplib.rst:441 +#: library/ftplib.rst:434 msgid "The SSL version to use (defaults to :data:`ssl.PROTOCOL_SSLv23`)." msgstr "" -#: library/ftplib.rst:445 +#: library/ftplib.rst:438 msgid "" "Set up a secure control connection by using TLS or SSL, depending on what is " "specified in the :attr:`ssl_version` attribute." msgstr "" -#: library/ftplib.rst:448 +#: library/ftplib.rst:441 msgid "" "The method now supports hostname check with :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: library/ftplib.rst:455 +#: library/ftplib.rst:448 msgid "" "Revert control channel back to plaintext. This can be useful to take " "advantage of firewalls that know how to handle NAT with non-secure FTP " "without opening fixed ports." msgstr "" -#: library/ftplib.rst:463 +#: library/ftplib.rst:456 msgid "Set up secure data connection." msgstr "" -#: library/ftplib.rst:467 +#: library/ftplib.rst:460 msgid "Set up clear text data connection." msgstr "" diff --git a/library/functions.po b/library/functions.po index 9af8eac59..31dc2caa4 100644 --- a/library/functions.po +++ b/library/functions.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2023-03-08 10:13-0500\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -495,18 +495,19 @@ msgstr "" "Eğer ön ek olarak \"0b\" isteniyorsa veya istenmiyorsa, aşağıdaki gibi iki " "şekilde de kullanabilirsiniz." -#: library/functions.rst:841 library/functions.rst:1158 +#: library/functions.rst:842 library/functions.rst:1159 msgid "See also :func:`format` for more information." msgstr "Ayrıca daha fazla bilgi için :func:`format` 'a bakabilirsiniz." #: library/functions.rst:145 +#, fuzzy msgid "" "Return a Boolean value, i.e. one of ``True`` or ``False``. *x* is converted " "using the standard :ref:`truth testing procedure `. If *x* is false " "or omitted, this returns ``False``; otherwise, it returns ``True``. The :" "class:`bool` class is a subclass of :class:`int` (see :ref:`typesnumeric`). " "It cannot be subclassed further. Its only instances are ``False`` and " -"``True`` (see :ref:`bltin-boolean-values`)." +"``True`` (see :ref:`typebool`)." msgstr "" "``True`` ya da ``False`` değeri döndürür. *x*, standart :ref:`truth testing " "procedure ` kullanılarak boolean veri tipine dönüştürülür. *x* " @@ -515,7 +516,7 @@ msgstr "" "sınıfıdır (bkz. :ref:`typesnumeric`). Daha fazla alt sınıfa ayrılamaz. Bunun " "tek örnekleri ``False`` ve ``True`` 'dur (bkz. :ref:`bltin-boolean-values`)." -#: library/functions.rst:706 library/functions.rst:930 +#: library/functions.rst:707 library/functions.rst:931 msgid "*x* is now a positional-only parameter." msgstr "*x* artık yalnızca konumsal bir parametredir." @@ -986,7 +987,7 @@ msgstr "" msgid "The complex type is described in :ref:`typesnumeric`." msgstr "Karmaşık tür, :ref:`typesnumeric` kısmında açıklanmıştır." -#: library/functions.rst:703 library/functions.rst:927 +#: library/functions.rst:704 library/functions.rst:928 msgid "Grouping digits with underscores as in code literals is allowed." msgstr "" "Rakamların, kod sabitlerinde olduğu gibi alt çizgi ile gruplandırılmasına " @@ -1107,7 +1108,7 @@ msgstr "" msgid "The resulting list is sorted alphabetically. For example:" msgstr "Sonuç listesi alfabetik olarak sıralanmıştır. Örnek olarak:" -#: library/functions.rst:478 +#: library/functions.rst:479 msgid "" "Because :func:`dir` is supplied primarily as a convenience for use at an " "interactive prompt, it tries to supply an interesting set of names more than " @@ -1121,7 +1122,7 @@ msgstr "" "arasında değişikliğe uğrayabilir. Örnek olarak, argüman sınıf ise metasınıf " "özellikleri sonuç listesinde yer almaz." -#: library/functions.rst:488 +#: library/functions.rst:489 msgid "" "Take two (non-complex) numbers as arguments and return a pair of numbers " "consisting of their quotient and remainder when using integer division. " @@ -1141,7 +1142,7 @@ msgstr "" "yakındır. Eğer ``a % b`` sıfır değilse, *b* ile aynı işarete sahiptir ve ``0 " "<= abs(a % b) < abs(b)``." -#: library/functions.rst:500 +#: library/functions.rst:501 msgid "" "Return an enumerate object. *iterable* must be a sequence, an :term:" "`iterator`, or some other object which supports iteration. The :meth:" @@ -1155,11 +1156,11 @@ msgstr "" "sayıyı (varsayılan olarak 0 olan *start* 'dan) ve *iterable* üzerinde " "yinelemeden elde edilen değerleri içeren bir demet döndürür." -#: library/functions.rst:512 +#: library/functions.rst:513 msgid "Equivalent to::" msgstr "Şuna eşittir::" -#: library/functions.rst:524 +#: library/functions.rst:525 msgid "" "The arguments are a string and optional globals and locals. If provided, " "*globals* must be a dictionary. If provided, *locals* can be any mapping " @@ -1169,7 +1170,7 @@ msgstr "" "Sağlanırsa, *globals* bir sözlük olmalıdır. Sağlanırsa, *locals* herhangi " "bir haritalama nesnesi olabilir." -#: library/functions.rst:528 +#: library/functions.rst:529 msgid "" "The *expression* argument is parsed and evaluated as a Python expression " "(technically speaking, a condition list) using the *globals* and *locals* " @@ -1199,7 +1200,7 @@ msgstr "" "kapsama ortamında :term:`iç içe kapsamlar ` (yerel olmayan) " "erişimi yoktur." -#: library/functions.rst:543 +#: library/functions.rst:544 msgid "" "The return value is the result of the evaluated expression. Syntax errors " "are reported as exceptions. Example:" @@ -1207,7 +1208,7 @@ msgstr "" "Dönen değer değerlendirilmiş ifadenin sonucudur. Söz dizimi hataları, " "istisnalar olarak rapor edilir. Örnek:" -#: library/functions.rst:550 +#: library/functions.rst:551 msgid "" "This function can also be used to execute arbitrary code objects (such as " "those created by :func:`compile`). In this case, pass a code object instead " @@ -1220,7 +1221,7 @@ msgstr "" "``'exec'`` ile derlendiyse, :func:`eval` 'in döndürdüğü değer ``None`` " "olacaktır." -#: library/functions.rst:555 +#: library/functions.rst:556 msgid "" "Hints: dynamic execution of statements is supported by the :func:`exec` " "function. The :func:`globals` and :func:`locals` functions return the " @@ -1232,7 +1233,7 @@ msgstr "" "mevcut global ve yerel sözlüğü döndürür. :func:`eval` veya :func:`exec` " "tarafından kullanım için dolaşmak yararlı olabilir." -#: library/functions.rst:560 +#: library/functions.rst:561 msgid "" "If the given source is a string, then leading and trailing spaces and tabs " "are stripped." @@ -1240,7 +1241,7 @@ msgstr "" "Eğer verilen kaynak dize ise, baştaki ve sondaki boşluklar ve tab'lar " "çıkarılır." -#: library/functions.rst:563 +#: library/functions.rst:564 msgid "" "See :func:`ast.literal_eval` for a function that can safely evaluate strings " "with expressions containing only literals." @@ -1249,7 +1250,7 @@ msgstr "" "değerlendirebilen bir fonksiyon arıyorsanız, :func:`ast.literal_eval` 'a " "bakınız." -#: library/functions.rst:607 +#: library/functions.rst:608 msgid "" "Raises an :ref:`auditing event ` ``exec`` with argument " "``code_object``." @@ -1257,7 +1258,7 @@ msgstr "" "``code_object`` argümanıyla bir :ref:`denetleme olayı ` ``exec`` " "hatası ortaya çıkarır." -#: library/functions.rst:609 +#: library/functions.rst:610 msgid "" "Raises an :ref:`auditing event ` ``exec`` with the code object as " "the argument. Code compilation events may also be raised." @@ -1266,7 +1267,7 @@ msgstr "" "``exec`` hatası ortaya çıkartır. Kodun derlendiği sırada çıkan hatalar da " "yükseltilir." -#: library/functions.rst:575 +#: library/functions.rst:576 msgid "" "This function supports dynamic execution of Python code. *object* must be " "either a string or a code object. If it is a string, the string is parsed " @@ -1288,7 +1289,7 @@ msgstr "" "geçirilen kod kaynağında bile fonksiyonlar dışında kullanılamayacağını " "unutmayınız. Döndürülen değer ``None`` 'dır." -#: library/functions.rst:586 +#: library/functions.rst:587 msgid "" "In all cases, if the optional parts are omitted, the code is executed in the " "current scope. If only *globals* is provided, it must be a dictionary (and " @@ -1309,7 +1310,7 @@ msgstr "" "sözlükte bulunduğunu unutmayın. Eğer exec *globals* ve *locals* olarak iki " "ayrı nesne alırsa, kod bir sınıf tanımına gömülmüş gibi çalıştırılacaktır." -#: library/functions.rst:596 +#: library/functions.rst:597 msgid "" "If the *globals* dictionary does not contain a value for the key " "``__builtins__``, a reference to the dictionary of the built-in module :mod:" @@ -1323,7 +1324,7 @@ msgstr "" "`exec` 'e geçirmeden önce *globals* içine ekleyerek yürütülen kod için hangi " "yerleşiklerin mevcut olduğunu kontrol edebilirsiniz." -#: library/functions.rst:602 +#: library/functions.rst:603 msgid "" "The *closure* argument specifies a closure--a tuple of cellvars. It's only " "valid when the *object* is a code object containing free variables. The " @@ -1335,7 +1336,7 @@ msgstr "" "olduğunda geçerlidir. Demetin uzunluğu, kod nesnesi tarafından başvurulan " "serbest değişkenlerin sayısıyla tam olarak eşleşmelidir." -#: library/functions.rst:614 +#: library/functions.rst:615 msgid "" "The built-in functions :func:`globals` and :func:`locals` return the current " "global and local dictionary, respectively, which may be useful to pass " @@ -1345,7 +1346,7 @@ msgstr "" "yerel sözlüğü sırasıyla döndürür. Bu, :func:`exec` 'e ikinci ve üçüncü " "argüman olarak kullanılmak üzere geçirmek için yararlı olabilir." -#: library/functions.rst:620 +#: library/functions.rst:621 msgid "" "The default *locals* act as described for function :func:`locals` below: " "modifications to the default *locals* dictionary should not be attempted. " @@ -1358,11 +1359,11 @@ msgstr "" "*locals* üzerindeki etkilerini görmeniz gerekiyorsa, açık bir *local* " "sözlüğü geçirin." -#: library/functions.rst:625 +#: library/functions.rst:626 msgid "Added the *closure* parameter." msgstr "*closure* parametresi eklendi." -#: library/functions.rst:631 +#: library/functions.rst:632 msgid "" "Construct an iterator from those elements of *iterable* for which *function* " "is true. *iterable* may be either a sequence, a container which supports " @@ -1374,7 +1375,7 @@ msgstr "" "yineleyici olabilir. *fonksiyon* ``None`` ise, kimlik işlevi varsayılır, " "yani *iterable* öğesinin yanlış olan tüm öğeleri kaldırılır." -#: library/functions.rst:637 +#: library/functions.rst:638 msgid "" "Note that ``filter(function, iterable)`` is equivalent to the generator " "expression ``(item for item in iterable if function(item))`` if function is " @@ -1386,7 +1387,7 @@ msgstr "" "ifadesine ``(item for item in iterable if function(item))`` eşit olduğunu " "unutmayın." -#: library/functions.rst:642 +#: library/functions.rst:643 msgid "" "See :func:`itertools.filterfalse` for the complementary function that " "returns elements of *iterable* for which *function* is false." @@ -1394,11 +1395,11 @@ msgstr "" "*fonksiyon*'un yanlış olduğu *iterable* öğelerini döndüren tamamlayıcı " "fonksiyon için :func:`itertools.filterfalse` konusuna bakın." -#: library/functions.rst:652 +#: library/functions.rst:653 msgid "Return a floating point number constructed from a number or string *x*." msgstr "Bir numara veya string *x* 'ten oluşturulan bir reel sayı döndürür." -#: library/functions.rst:654 +#: library/functions.rst:655 msgid "" "If the argument is a string, it should contain a decimal number, optionally " "preceded by a sign, and optionally embedded in whitespace. The optional " @@ -1416,7 +1417,7 @@ msgstr "" "baştaki ve sondaki boşluk karakterleri kaldırıldıktan sonra veri girişi " "aşağıdaki dilbilgisindeki ``floatvalue`` üretim kuralına uygun olmalıdır:" -#: library/functions.rst:672 +#: library/functions.rst:673 msgid "" "Here ``digit`` is a Unicode decimal digit (character in the Unicode general " "category ``Nd``). Case is not significant, so, for example, \"inf\", " @@ -1428,7 +1429,7 @@ msgstr "" "örneğin, \"inf\", \"Inf\", \"INFINITY\" ve \"iNfINity\" pozitif sonsuzluk " "için kabul edilebilir yazımlardır." -#: library/functions.rst:677 +#: library/functions.rst:678 msgid "" "Otherwise, if the argument is an integer or a floating point number, a " "floating point number with the same value (within Python's floating point " @@ -1439,7 +1440,7 @@ msgstr "" "sayı döndürülür. Eğer argüman Python reel sayı aralığının dışındaysa, :exc:" "`OverflowError` hatası ortaya çıkar." -#: library/functions.rst:682 +#: library/functions.rst:683 #, fuzzy msgid "" "For a general Python object ``x``, ``float(x)`` delegates to ``x." @@ -1450,19 +1451,19 @@ msgstr "" "fonksiyonuna delege eder. Eğer ``__float__()`` tanımlanmamışsa, :meth:" "`__index__` 'e geri döner." -#: library/functions.rst:686 +#: library/functions.rst:687 msgid "If no argument is given, ``0.0`` is returned." msgstr "Argüman verilmediyse, ``0.0`` döndürülür." -#: library/functions.rst:688 +#: library/functions.rst:689 msgid "Examples::" msgstr "Örnekler::" -#: library/functions.rst:701 +#: library/functions.rst:702 msgid "The float type is described in :ref:`typesnumeric`." msgstr "Float tipi :ref:`typesnumeric` kısmında açıklandı." -#: library/functions.rst:709 +#: library/functions.rst:710 #, fuzzy msgid "" "Falls back to :meth:`~object.__index__` if :meth:`~object.__float__` is not " @@ -1470,7 +1471,7 @@ msgid "" msgstr "" ":meth:`__float__` tanımlanmadıysa, :meth:`__index__` konumuna geri döner." -#: library/functions.rst:719 +#: library/functions.rst:720 msgid "" "Convert a *value* to a \"formatted\" representation, as controlled by " "*format_spec*. The interpretation of *format_spec* will depend on the type " @@ -1483,7 +1484,7 @@ msgstr "" "tiplerde kullanılan :ref:`formatspec` adında bir standart biçimlendirme " "sözdizimi var." -#: library/functions.rst:724 +#: library/functions.rst:725 msgid "" "The default *format_spec* is an empty string which usually gives the same " "effect as calling :func:`str(value) `." @@ -1491,7 +1492,7 @@ msgstr "" "Varsayılan *format_spec*, :func:`str(value) ` fonksiyonunu çağırmakla " "aynı etkiyi gösteren boş bir dizedir." -#: library/functions.rst:727 +#: library/functions.rst:728 msgid "" "A call to ``format(value, format_spec)`` is translated to ``type(value)." "__format__(value, format_spec)`` which bypasses the instance dictionary when " @@ -1506,7 +1507,7 @@ msgstr "" "*format_spec* boş değilse, veya *format_spec* veya döndürülen değer dize " "değilse, :exc:`TypeError` hatası ortaya çıkar." -#: library/functions.rst:734 +#: library/functions.rst:735 msgid "" "``object().__format__(format_spec)`` raises :exc:`TypeError` if " "*format_spec* is not an empty string." @@ -1514,7 +1515,7 @@ msgstr "" "*format_spec* boş bir dize değilse, ``object().__format__(format_spec)``, :" "exc:`TypeError` hatasını ortaya çıkartır." -#: library/functions.rst:743 +#: library/functions.rst:744 msgid "" "Return a new :class:`frozenset` object, optionally with elements taken from " "*iterable*. ``frozenset`` is a built-in class. See :class:`frozenset` and :" @@ -1525,7 +1526,7 @@ msgstr "" "hakkında dokümantasyona ulaşmak için :class:`frozenset` ve :ref:`types-set` " "'e bakınız." -#: library/functions.rst:747 +#: library/functions.rst:748 msgid "" "For other containers see the built-in :class:`set`, :class:`list`, :class:" "`tuple`, and :class:`dict` classes, as well as the :mod:`collections` module." @@ -1534,7 +1535,7 @@ msgstr "" "`tuple`, ve :class:`dict` sınıflarına, ayrıca :mod:`collections` modülüne " "bakabilirsiniz." -#: library/functions.rst:755 +#: library/functions.rst:756 msgid "" "Return the value of the named attribute of *object*. *name* must be a " "string. If the string is the name of one of the object's attributes, the " @@ -1551,7 +1552,7 @@ msgstr "" "ortaya çıkar. *name* bir Python tanımlayıcısı olmak zorunda değildir (:func:" "`setattr` bkz)." -#: library/functions.rst:764 +#: library/functions.rst:765 msgid "" "Since :ref:`private name mangling ` happens at " "compilation time, one must manually mangle a private attribute's (attributes " @@ -1562,7 +1563,7 @@ msgstr "" "gerçekleştiğinden dolayı, :func:`getattr` ile almak için özel bir niteliğin " "(baştaki iki alt çizgili nitelikler) adını manuel olarak değiştirmek gerekir." -#: library/functions.rst:772 +#: library/functions.rst:773 msgid "" "Return the dictionary implementing the current module namespace. For code " "within functions, this is set when the function is defined and remains the " @@ -1572,7 +1573,7 @@ msgstr "" "için, bu fonksiyon tanımlandığında ayarlanır ve fonksiyonun çağrıldığı " "yerden bağımsız olarak aynı kalır." -#: library/functions.rst:779 +#: library/functions.rst:780 msgid "" "The arguments are an object and a string. The result is ``True`` if the " "string is the name of one of the object's attributes, ``False`` if not. " @@ -1584,7 +1585,7 @@ msgstr "" "'i çağırarak uygulanır ve :exc:`AttributeError` hatası oluşup oluşmayacağı " "görülür.)" -#: library/functions.rst:787 +#: library/functions.rst:788 msgid "" "Return the hash value of the object (if it has one). Hash values are " "integers. They are used to quickly compare dictionary keys during a " @@ -1597,7 +1598,7 @@ msgstr "" "değerler aynı karma değere sahiptir (1 ve 1.0 durumunda olduğu gibi farklı " "veri tiplerinde olsalar bile)." -#: library/functions.rst:794 +#: library/functions.rst:795 #, fuzzy msgid "" "For objects with custom :meth:`__hash__` methods, note that :func:`hash` " @@ -1608,7 +1609,7 @@ msgstr "" "makinenin bit genişliğine göre döndürdüğü değeri kestiğini unutmayın. " "Detaylar için :meth:`__hash__` 'e bakınız." -#: library/functions.rst:801 +#: library/functions.rst:802 msgid "" "Invoke the built-in help system. (This function is intended for interactive " "use.) If no argument is given, the interactive help system starts on the " @@ -1624,7 +1625,7 @@ msgstr "" "dizeye bakılır ve bir yardım sayfası konsola bastırılır. Eğer argüman başka " "tipte bir nesne ise, nesne üzerinde bir yardım sayfası oluşturulur." -#: library/functions.rst:808 +#: library/functions.rst:809 msgid "" "Note that if a slash(/) appears in the parameter list of a function when " "invoking :func:`help`, it means that the parameters prior to the slash are " @@ -1637,13 +1638,13 @@ msgstr "" "konumsalparametrelerle ilgili SSS girişi ` " "'ne bakınız." -#: library/functions.rst:813 +#: library/functions.rst:814 msgid "" "This function is added to the built-in namespace by the :mod:`site` module." msgstr "" "Bu fonksiyon :mod:`site` modülü tarafından yerleşik ad alanına eklenir." -#: library/functions.rst:815 +#: library/functions.rst:816 msgid "" "Changes to :mod:`pydoc` and :mod:`inspect` mean that the reported signatures " "for callables are now more comprehensive and consistent." @@ -1652,7 +1653,7 @@ msgstr "" "için rapor edilen damgaların artık daha kapsamlı ve tutarlı olduğunu ifade " "eder." -#: library/functions.rst:822 +#: library/functions.rst:823 #, fuzzy msgid "" "Convert an integer number to a lowercase hexadecimal string prefixed with " @@ -1663,7 +1664,7 @@ msgstr "" "dizeye dönüştürür. Eğer *x* Python :class:`int` nesnesi değilse, tam sayı " "döndüren bir :meth:`__index__` metoduna sahip olmalidir. Bazı örnekler:" -#: library/functions.rst:831 +#: library/functions.rst:832 msgid "" "If you want to convert an integer number to an uppercase or lower " "hexadecimal string with prefix or not, you can use either of the following " @@ -1672,7 +1673,7 @@ msgstr "" "Eğer bir tam sayıyı büyük harf-küçük harf, önekli-öneksiz bir onaltılık " "sayıya dönüştürmek istiyorsanız, aşağıdaki yolları kullanabilirsiniz:" -#: library/functions.rst:843 +#: library/functions.rst:844 msgid "" "See also :func:`int` for converting a hexadecimal string to an integer using " "a base of 16." @@ -1680,7 +1681,7 @@ msgstr "" "Ayrıca onaltılık bir dizgiyi 16 tabanını kullanarak bir tam sayıya " "dönüştürmek için :func:`int` 'e bakınız." -#: library/functions.rst:848 +#: library/functions.rst:849 msgid "" "To obtain a hexadecimal string representation for a float, use the :meth:" "`float.hex` method." @@ -1688,7 +1689,7 @@ msgstr "" "Bir gerçel sayıdan onaltılık bir dize gösterimi elde etmek için :meth:`float." "hex` metodunu kullanın." -#: library/functions.rst:854 +#: library/functions.rst:855 msgid "" "Return the \"identity\" of an object. This is an integer which is " "guaranteed to be unique and constant for this object during its lifetime. " @@ -1699,11 +1700,11 @@ msgstr "" "sabit olduğu garanti edilen bir tam sayıdır. Ömürleri örtüşmeyen iki nesne " "aynı :func:`id` değerine sahip olabilir." -#: library/functions.rst:859 +#: library/functions.rst:860 msgid "This is the address of the object in memory." msgstr "Bu, bellekteki nesnenin adresidir." -#: library/functions.rst:861 +#: library/functions.rst:862 msgid "" "Raises an :ref:`auditing event ` ``builtins.id`` with argument " "``id``." @@ -1711,7 +1712,7 @@ msgstr "" "``id`` argümanıyla beraber bir :ref:`denetleme olayı ` ``builtins." "id`` ortaya çıkartır." -#: library/functions.rst:867 +#: library/functions.rst:868 msgid "" "If the *prompt* argument is present, it is written to standard output " "without a trailing newline. The function then reads a line from input, " @@ -1723,7 +1724,7 @@ msgstr "" "bir dizeye çevirip (sondaki yeni satırı çıkartır) döndürür. EOF " "okunduğunda, :exc:`EOFError` istisnası ortaya çıkar. Örnek::" -#: library/functions.rst:877 +#: library/functions.rst:878 msgid "" "If the :mod:`readline` module was loaded, then :func:`input` will use it to " "provide elaborate line editing and history features." @@ -1731,7 +1732,7 @@ msgstr "" "Eğer :mod:`readline` modülü yüklendiyse, :func:`input` ayrıntılı satır " "düzenleme ve geçmiş özellikleri sağlamak için onu kullanacaktır." -#: library/functions.rst:880 +#: library/functions.rst:881 msgid "" "Raises an :ref:`auditing event ` ``builtins.input`` with argument " "``prompt``." @@ -1739,7 +1740,7 @@ msgstr "" "``prompt`` argümanıyla birlikte bir :ref:`denetleme olayı ` " "``builtins.input`` ortaya çıkartır." -#: library/functions.rst:882 +#: library/functions.rst:883 msgid "" "Raises an :ref:`auditing event ` ``builtins.input`` with argument " "``prompt`` before reading input" @@ -1747,7 +1748,7 @@ msgstr "" "Girişi okumadan önce, ``prompt`` argümanıyla birlikte bir :ref:`denetleme " "olayı ` ``builtins.input`` ortaya çıkartır" -#: library/functions.rst:885 +#: library/functions.rst:886 msgid "" "Raises an :ref:`auditing event ` ``builtins.input/result`` with " "argument ``result``." @@ -1755,7 +1756,7 @@ msgstr "" "``result`` argümanıyla birlikte bir :ref:`denetleme olayı ` " "``builtins.input/result`` ortaya çıkartır." -#: library/functions.rst:887 +#: library/functions.rst:888 msgid "" "Raises an :ref:`auditing event ` ``builtins.input/result`` with " "the result after successfully reading input." @@ -1763,7 +1764,7 @@ msgstr "" "Girişi başarıyla okuduktan sonra sonuçla birlikte bir :ref:`auditing event " "` ``builtins.input/result`` denetleme olayı ortaya çıkarır." -#: library/functions.rst:894 +#: library/functions.rst:895 #, fuzzy msgid "" "Return an integer object constructed from a number or string *x*, or return " @@ -1779,7 +1780,7 @@ msgstr "" "__index__()`` 'i döndürür. *x* :meth:`__trunc__` 'ı içeriyorsa, ``x." "__trunc__()`` 'ı döndürür. Gerçel sayılar için, sayı tam sayıya çevrilir." -#: library/functions.rst:901 +#: library/functions.rst:902 msgid "" "If *x* is not a number or if *base* is given, then *x* must be a string, :" "class:`bytes`, or :class:`bytearray` instance representing an integer in " @@ -1794,7 +1795,7 @@ msgstr "" "çevrelenebilir ve rakamlar arasına serpiştirilmiş tek alt çizgilere sahip " "olabilir." -#: library/functions.rst:907 +#: library/functions.rst:908 msgid "" "A base-n integer string contains digits, each representing a value from 0 to " "n-1. The values 0--9 can be represented by any Unicode decimal digit. The " @@ -1819,11 +1820,11 @@ msgstr "" "baştaki sıfırlara da izin vermez: ``int('010', 0)`` yasal değilken, " "``int('010')`` ve ``int('010', 8)`` yasaldır." -#: library/functions.rst:918 +#: library/functions.rst:919 msgid "The integer type is described in :ref:`typesnumeric`." msgstr "Tam sayı tipi :ref:`typesnumeric` kısmında açıklandı." -#: library/functions.rst:920 +#: library/functions.rst:921 msgid "" "If *base* is not an instance of :class:`int` and the *base* object has a :" "meth:`base.__index__ ` method, that method is called to " @@ -1835,19 +1836,19 @@ msgstr "" "tamsayı elde etmek için çağrılır. Önceki sürümler :meth:`base.__index__ " "` yerine :meth:`base.__int__ ` 'i kullandı." -#: library/functions.rst:933 +#: library/functions.rst:934 #, fuzzy msgid "" "Falls back to :meth:`~object.__index__` if :meth:`~object.__int__` is not " "defined." msgstr ":meth:`__int__` tanımlı değilse :meth:`__index__` konumuna geri döner." -#: library/functions.rst:936 +#: library/functions.rst:937 #, fuzzy msgid "The delegation to :meth:`~object.__trunc__` is deprecated." msgstr ":meth:`__trunc__` yetkisi kullanımdan kaldırıldı." -#: library/functions.rst:939 +#: library/functions.rst:940 msgid "" ":class:`int` string inputs and string representations can be limited to help " "avoid denial of service attacks. A :exc:`ValueError` is raised when the " @@ -1863,7 +1864,7 @@ msgstr "" "ortaya çıkar. :ref:`tam sayı dönüştürme uzunluk sınırlaması " "` dokümanına bakın." -#: library/functions.rst:949 +#: library/functions.rst:950 msgid "" "Return ``True`` if the *object* argument is an instance of the *classinfo* " "argument, or of a (direct, indirect, or :term:`virtual `) of *classinfo*. A class is considered a " @@ -1907,7 +1908,7 @@ msgstr "" "birinin alt sınıfıysa ``True`` döndürülür. Diğer her durumda, :exc:" "`TypeError` hatası ortaya çıkar." -#: library/functions.rst:981 +#: library/functions.rst:982 msgid "" "Return an :term:`iterator` object. The first argument is interpreted very " "differently depending on the presence of the second argument. Without a " @@ -1933,11 +1934,11 @@ msgstr "" "döndürülen değer *sentinel* 'e eşitse, :exc:`StopIteration` hatası ortaya " "çıkar, aksi takdirde değer döndürülür." -#: library/functions.rst:994 +#: library/functions.rst:995 msgid "See also :ref:`typeiter`." msgstr "Ayrıca :ref:`typeiter` bkz." -#: library/functions.rst:996 +#: library/functions.rst:997 msgid "" "One useful application of the second form of :func:`iter` is to build a " "block-reader. For example, reading fixed-width blocks from a binary database " @@ -1947,7 +1948,7 @@ msgstr "" "okuyucu inşaa etmektir. Örnek olarak, dosyanın sonuna ulaşılana kadar ikili " "bir veritabanı dosyasından sabit genişlikte bloklar okunurken::" -#: library/functions.rst:1008 +#: library/functions.rst:1009 msgid "" "Return the length (the number of items) of an object. The argument may be a " "sequence (such as a string, bytes, tuple, list, or range) or a collection " @@ -1957,7 +1958,7 @@ msgstr "" "(örneğin dize, bytes, demet, liste veya aralık) veya bir koleksiyon (örneğin " "sözlük, küme veya dondurulmuş küme) olabilir." -#: library/functions.rst:1014 +#: library/functions.rst:1015 msgid "" "``len`` raises :exc:`OverflowError` on lengths larger than :data:`sys." "maxsize`, such as :class:`range(2 ** 100) `." @@ -1965,7 +1966,7 @@ msgstr "" "``len``, :class:`range(2 ** 100) ` gibi :data:`sys.maxsize` 'dan daha " "geniş uzunluklar için :exc:`OverflowError` hatası ortaya çıkartır." -#: library/functions.rst:1023 +#: library/functions.rst:1024 msgid "" "Rather than being a function, :class:`list` is actually a mutable sequence " "type, as documented in :ref:`typesseq-list` and :ref:`typesseq`." @@ -1973,7 +1974,7 @@ msgstr "" "Bir fonksiyon görevi görmektense, :ref:`typesseq-list` ve :ref:`typesseq` de " "anlatıldığı gibi :class:`list` bir değiştirebilir dizi çeşididir." -#: library/functions.rst:1029 +#: library/functions.rst:1030 msgid "" "Update and return a dictionary representing the current local symbol table. " "Free variables are returned by :func:`locals` when it is called in function " @@ -1986,7 +1987,7 @@ msgstr "" "Unutmayın ki modül seviyesinde, :func:`locals` ve :func:`globals` aynı " "sözlüklerdir." -#: library/functions.rst:1035 +#: library/functions.rst:1036 msgid "" "The contents of this dictionary should not be modified; changes may not " "affect the values of local and free variables used by the interpreter." @@ -1995,7 +1996,7 @@ msgstr "" "tarafından kullanılan yerel ve serbest değişkenlerin değerlerini " "etkilemeyebilir." -#: library/functions.rst:1040 +#: library/functions.rst:1041 msgid "" "Return an iterator that applies *function* to every item of *iterable*, " "yielding the results. If additional *iterables* arguments are passed, " @@ -2012,7 +2013,7 @@ msgstr "" "girdilerinin zaten demetler halinde verildiği durumlar için, :func:" "`itertools.starmap`\\ 'a bakın." -#: library/functions.rst:1052 +#: library/functions.rst:1053 msgid "" "Return the largest item in an iterable or the largest of two or more " "arguments." @@ -2020,7 +2021,7 @@ msgstr "" "Bir yineleyicinin veya birden fazla parametrenin en büyük elementini " "döndürür." -#: library/functions.rst:1055 +#: library/functions.rst:1056 msgid "" "If one positional argument is provided, it should be an :term:`iterable`. " "The largest item in the iterable is returned. If two or more positional " @@ -2031,7 +2032,7 @@ msgstr "" "pozisyonel parametre sağlandıysa, pozisyonel parametrelerin en büyüğü " "döndürülür." -#: library/functions.rst:1098 +#: library/functions.rst:1099 msgid "" "There are two optional keyword-only arguments. The *key* argument specifies " "a one-argument ordering function like that used for :meth:`list.sort`. The " @@ -2045,7 +2046,7 @@ msgstr "" "döndürülecek nesneyi belirtir. Eğer yineleyici boş ve *varsayılan* " "verilmemiş ise, :exc:`ValueError` hatası ortaya çıkar." -#: library/functions.rst:1066 +#: library/functions.rst:1067 msgid "" "If multiple items are maximal, the function returns the first one " "encountered. This is consistent with other sort-stability preserving tools " @@ -2057,15 +2058,15 @@ msgstr "" "iterable, key=keyfunc)`` gibi sıralama kararlılığı muhafaza eden araçlar ile " "uygundur." -#: library/functions.rst:1109 +#: library/functions.rst:1110 msgid "The *default* keyword-only argument." msgstr "*varsayılan* yalnızca anahtar kelime parametresi." -#: library/functions.rst:1112 +#: library/functions.rst:1113 msgid "The *key* can be ``None``." msgstr "*key* ``None`` olabilir." -#: library/functions.rst:1082 +#: library/functions.rst:1083 msgid "" "Return a \"memory view\" object created from the given argument. See :ref:" "`typememoryview` for more information." @@ -2073,7 +2074,7 @@ msgstr "" "Verilen argümandan oluşturulan bir \"memory view\" objesi döndürür. Daha " "fazla bilgi için :ref:`typememoryview` bkz." -#: library/functions.rst:1090 +#: library/functions.rst:1091 msgid "" "Return the smallest item in an iterable or the smallest of two or more " "arguments." @@ -2081,7 +2082,7 @@ msgstr "" "Bir yineleyicideki en küçük elementi veya birden fazla argümandan en " "küçüğünü döndürür." -#: library/functions.rst:1093 +#: library/functions.rst:1094 msgid "" "If one positional argument is provided, it should be an :term:`iterable`. " "The smallest item in the iterable is returned. If two or more positional " @@ -2091,7 +2092,7 @@ msgstr "" "Yineleyicinin en küçük elementi döndürülür. Eğer birden fazla argüman " "sağlandıysa, argümanların en küçüğü döndürülür." -#: library/functions.rst:1104 +#: library/functions.rst:1105 msgid "" "If multiple items are minimal, the function returns the first one " "encountered. This is consistent with other sort-stability preserving tools " @@ -2103,7 +2104,7 @@ msgstr "" "key=keyfunc)`` gibi diğer sıralama kararlılığını koruma araçlarıyla tutarlı " "çalışır." -#: library/functions.rst:1119 +#: library/functions.rst:1120 msgid "" "Retrieve the next item from the :term:`iterator` by calling its :meth:" "`~iterator.__next__` method. If *default* is given, it is returned if the " @@ -2113,7 +2114,7 @@ msgstr "" "elementi getirir. Eğer *default* verildiyse ve yineleyici tükenmiş ise " "*default* döndürülür, aksi takdirde :exc:`StopIteration` hatası ortaya çıkar." -#: library/functions.rst:1126 +#: library/functions.rst:1127 msgid "" "Return a new featureless object. :class:`object` is a base for all classes. " "It has methods that are common to all instances of Python classes. This " @@ -2123,7 +2124,7 @@ msgstr "" "temeldir. Tüm Python sınıflarında bulunan genel metotları içerir. Bu " "fonksiyon hiçbir argüman kabul etmez." -#: library/functions.rst:1132 +#: library/functions.rst:1133 msgid "" ":class:`object` does *not* have a :attr:`~object.__dict__`, so you can't " "assign arbitrary attributes to an instance of the :class:`object` class." @@ -2131,7 +2132,7 @@ msgstr "" ":class:`object`, :attr:`~object.__dict__` özelliğine sahip *değildir*, yani " "bir :class:`object` örneğine keyfi özellikler atayamazsınız." -#: library/functions.rst:1138 +#: library/functions.rst:1139 #, fuzzy msgid "" "Convert an integer number to an octal string prefixed with \"0o\". The " @@ -2143,7 +2144,7 @@ msgstr "" "Python ifadesidir. Eğer *x* bir Python :class:`int` nesnesi değilse, tamsayı " "döndüren bir :meth:`__index__` metoduna sahip olmalıdır. Örnek olarak:" -#: library/functions.rst:1148 +#: library/functions.rst:1149 msgid "" "If you want to convert an integer number to an octal string either with the " "prefix \"0o\" or not, you can use either of the following ways." @@ -2151,7 +2152,7 @@ msgstr "" "Eğer bir tamsayıyı \"0o\" ön ekiyle veya ön eksiz oktal bir dizeye " "dönüştürmek istiyorsanız, aşağıdaki yolları kullanabilirsiniz." -#: library/functions.rst:1165 +#: library/functions.rst:1166 msgid "" "Open *file* and return a corresponding :term:`file object`. If the file " "cannot be opened, an :exc:`OSError` is raised. See :ref:`tut-files` for more " @@ -2161,7 +2162,7 @@ msgstr "" "dosya açılamazsa, :exc:`OSError` hatası ortaya çıkar. Bu fonksiyonun nasıl " "kullanıldığına dair daha fazla örnek için :ref:`tut-files` bkz." -#: library/functions.rst:1169 +#: library/functions.rst:1170 msgid "" "*file* is a :term:`path-like object` giving the pathname (absolute or " "relative to the current working directory) of the file to be opened or an " @@ -2175,7 +2176,7 @@ msgstr "" "açıklayıcısı veirldiyse, *closefd*, ``False`` 'a ayarlanmadığı sürece I/O " "nesnesi kapatıldığında kapatılır." -#: library/functions.rst:1175 +#: library/functions.rst:1176 msgid "" "*mode* is an optional string that specifies the mode in which the file is " "opened. It defaults to ``'r'`` which means open for reading in text mode. " @@ -2199,71 +2200,71 @@ msgstr "" "(İşlenmemiş baytlar okumak veya yazmak için ikili modu kullanın ve " "*encoding* 'i boş bırakın. Geçerli modlar:" -#: library/functions.rst:1192 +#: library/functions.rst:1193 msgid "Character" msgstr "Karakter" -#: library/functions.rst:1192 +#: library/functions.rst:1193 msgid "Meaning" msgstr "Anlam" -#: library/functions.rst:1194 +#: library/functions.rst:1195 msgid "``'r'``" msgstr "``'r'``" -#: library/functions.rst:1194 +#: library/functions.rst:1195 msgid "open for reading (default)" msgstr "okumaya açık (varsayılan)" -#: library/functions.rst:1195 +#: library/functions.rst:1196 msgid "``'w'``" msgstr "``'w'``" -#: library/functions.rst:1195 +#: library/functions.rst:1196 msgid "open for writing, truncating the file first" msgstr "yazmaya açık, önce dosyayı keser" -#: library/functions.rst:1196 +#: library/functions.rst:1197 msgid "``'x'``" msgstr "``'x'``" -#: library/functions.rst:1196 +#: library/functions.rst:1197 msgid "open for exclusive creation, failing if the file already exists" msgstr "ayrıcalıklı oluşturma için açık, dosya varsa hata verir" -#: library/functions.rst:1197 +#: library/functions.rst:1198 msgid "``'a'``" msgstr "``'a'``" -#: library/functions.rst:1197 +#: library/functions.rst:1198 msgid "open for writing, appending to the end of file if it exists" msgstr "yazmaya açık, eğer dosya bulunuyorsa dosyaya ekleme yapar" -#: library/functions.rst:1198 +#: library/functions.rst:1199 msgid "``'b'``" msgstr "``'b'``" -#: library/functions.rst:1342 +#: library/functions.rst:1343 msgid "binary mode" msgstr "ikili mod" -#: library/functions.rst:1199 +#: library/functions.rst:1200 msgid "``'t'``" msgstr "``'t'``" -#: library/functions.rst:1199 +#: library/functions.rst:1200 msgid "text mode (default)" msgstr "metin modu (varsayılan)" -#: library/functions.rst:1200 +#: library/functions.rst:1201 msgid "``'+'``" msgstr "``'+'``" -#: library/functions.rst:1200 +#: library/functions.rst:1201 msgid "open for updating (reading and writing)" msgstr "güncellemeye açık (okuma ve yazma)" -#: library/functions.rst:1203 +#: library/functions.rst:1204 msgid "" "The default mode is ``'r'`` (open for reading text, a synonym of ``'rt'``). " "Modes ``'w+'`` and ``'w+b'`` open and truncate the file. Modes ``'r+'`` and " @@ -2273,7 +2274,7 @@ msgstr "" "``'w+'`` ve ``'w+b'`` modları dosyayı açar ve temizlerler. ``'r+'`` ve " "``'r+b'`` modları dosyayı temizlemeden açarlar." -#: library/functions.rst:1207 +#: library/functions.rst:1208 msgid "" "As mentioned in the :ref:`io-overview`, Python distinguishes between binary " "and text I/O. Files opened in binary mode (including ``'b'`` in the *mode* " @@ -2291,7 +2292,7 @@ msgstr "" "platforma bağlı bir kodlayıcı veya belirtilen *encoding* 'i kullanarak " "deşifre edilir." -#: library/functions.rst:1217 +#: library/functions.rst:1218 msgid "" "Python doesn't depend on the underlying operating system's notion of text " "files; all the processing is done by Python itself, and is therefore " @@ -2301,7 +2302,7 @@ msgstr "" "değildir. Tüm işlemler Python'un kendisi tarafından yapılır ve bu yüzden de " "platformdan bağımsızdır." -#: library/functions.rst:1221 +#: library/functions.rst:1222 msgid "" "*buffering* is an optional integer used to set the buffering policy. Pass 0 " "to switch buffering off (only allowed in binary mode), 1 to select line " @@ -2325,7 +2326,7 @@ msgstr "" "bayrağını kullanmayı düşünün. *arabelleğe alma* bağımsız değişkeni " "verilmediğinde, varsayılan arabelleğe alma ilkesi şu şekilde çalışır:" -#: library/functions.rst:1231 +#: library/functions.rst:1232 #, fuzzy msgid "" "Binary files are buffered in fixed-size chunks; the size of the buffer is " @@ -2338,7 +2339,7 @@ msgstr "" "kullanılarak seçilir ve :attr:`io.DEFAULT_BUFFER_SIZE` değerine düşer. Çoğu " "sistemde, arabellek 4096 veya 8192 bayt uzunluğunda olacaktır." -#: library/functions.rst:1236 +#: library/functions.rst:1237 msgid "" "\"Interactive\" text files (files for which :meth:`~io.IOBase.isatty` " "returns ``True``) use line buffering. Other text files use the policy " @@ -2348,7 +2349,7 @@ msgstr "" "döndürdüğü dosyalar) satır arabelleğe almayı kullanır. Diğer metin dosyaları " "yukarıda ikili dosyalar için açıklanan poliçeyi kullanırlar." -#: library/functions.rst:1240 +#: library/functions.rst:1241 msgid "" "*encoding* is the name of the encoding used to decode or encode the file. " "This should only be used in text mode. The default encoding is platform " @@ -2363,7 +2364,7 @@ msgstr "" "kullanılabilir. Desteklenen kodlayıcıların listesi için :mod:`codecs` " "modülüne bkz." -#: library/functions.rst:1246 +#: library/functions.rst:1247 msgid "" "*errors* is an optional string that specifies how encoding and decoding " "errors are to be handled—this cannot be used in binary mode. A variety of " @@ -2377,7 +2378,7 @@ msgstr "" "`codecs.register_error` ile kaydedilen herhangi bir hata işleyici ismi de " "geçerlidir. Standart isimler bunları içerir:" -#: library/functions.rst:1254 +#: library/functions.rst:1255 msgid "" "``'strict'`` to raise a :exc:`ValueError` exception if there is an encoding " "error. The default value of ``None`` has the same effect." @@ -2386,7 +2387,7 @@ msgstr "" "yükseltmek için kullanılır. Varsayılan değer ``None`` ile aynı etkiyi " "gösterir." -#: library/functions.rst:1258 +#: library/functions.rst:1259 msgid "" "``'ignore'`` ignores errors. Note that ignoring encoding errors can lead to " "data loss." @@ -2394,7 +2395,7 @@ msgstr "" "``'ignore'`` hataları görmezden gelir. Kodlayıcı hatalarını görmezden " "gelmenin veri kaybı ile sonuçlanabileceğini unutmayın." -#: library/functions.rst:1261 +#: library/functions.rst:1262 msgid "" "``'replace'`` causes a replacement marker (such as ``'?'``) to be inserted " "where there is malformed data." @@ -2403,7 +2404,7 @@ msgstr "" "(``'?'`` gibi) 'nin hatalı biçimlendirilmiş verinin yerine geçmesine neden " "olur." -#: library/functions.rst:1264 +#: library/functions.rst:1265 msgid "" "``'surrogateescape'`` will represent any incorrect bytes as low surrogate " "code units ranging from U+DC80 to U+DCFF. These surrogate code units will " @@ -2417,7 +2418,7 @@ msgstr "" "baytlara geri döndürülecektir. Bu dosyaları bilinmeyen bir kodlayıcıyla " "işlerken kullanışlıdır." -#: library/functions.rst:1271 +#: library/functions.rst:1272 msgid "" "``'xmlcharrefreplace'`` is only supported when writing to a file. Characters " "not supported by the encoding are replaced with the appropriate XML " @@ -2427,7 +2428,7 @@ msgstr "" "Kodlayıcı tarafından desteklenmeyen karakterler uygun XML karakter örneği " "ile değiştirilir." -#: library/functions.rst:1275 +#: library/functions.rst:1276 msgid "" "``'backslashreplace'`` replaces malformed data by Python's backslashed " "escape sequences." @@ -2435,7 +2436,7 @@ msgstr "" "``'backslashreplace'`` Python'un ters slash kaçış karakterleri yüzünden " "oluşan hatalı veriyi değiştirir." -#: library/functions.rst:1278 +#: library/functions.rst:1279 msgid "" "``'namereplace'`` (also only supported when writing) replaces unsupported " "characters with ``\\N{...}`` escape sequences." @@ -2443,7 +2444,7 @@ msgstr "" "``'namereplace'`` (sadece yazarken desteklenir) desteklenmeyen karakterleri " "``\\N{...}`` kaçış karakterleriyle değiştirir." -#: library/functions.rst:1286 +#: library/functions.rst:1287 msgid "" "*newline* determines how to parse newline characters from the stream. It can " "be ``None``, ``''``, ``'\\n'``, ``'\\r'``, and ``'\\r\\n'``. It works as " @@ -2453,7 +2454,7 @@ msgstr "" "belirler. ``None``, ``''``, ``'\\n'``, ``'\\r'`` ve ``'\\r\\n'`` olabilir. " "Aşağıdaki gibi çalışır:" -#: library/functions.rst:1290 +#: library/functions.rst:1291 msgid "" "When reading input from the stream, if *newline* is ``None``, universal " "newlines mode is enabled. Lines in the input can end in ``'\\n'``, " @@ -2471,7 +2472,7 @@ msgstr "" "değer verildiyse, girdi satırları sadece verilen dize ile sonlanır ve satır " "sonu çağrıcıya çevrilmeden döndürülür." -#: library/functions.rst:1298 +#: library/functions.rst:1299 msgid "" "When writing output to the stream, if *newline* is ``None``, any ``'\\n'`` " "characters written are translated to the system default line separator, :" @@ -2485,7 +2486,7 @@ msgstr "" "yapılmaz. Eğer *newline* diğer uygun değerlerden biri ise, tüm ``'\\n'`` " "karakterleri verilen dizeye dönüştürülür." -#: library/functions.rst:1304 +#: library/functions.rst:1305 msgid "" "If *closefd* is ``False`` and a file descriptor rather than a filename was " "given, the underlying file descriptor will be kept open when the file is " @@ -2497,7 +2498,7 @@ msgstr "" "Eğer bir dosya adı verildiyse, *closefd* ``True`` olmalıdır (varsayılan); " "aksi takdirde, bir hata ortaya çıkar." -#: library/functions.rst:1309 +#: library/functions.rst:1310 msgid "" "A custom opener can be used by passing a callable as *opener*. The " "underlying file descriptor for the file object is then obtained by calling " @@ -2511,11 +2512,11 @@ msgstr "" "dosya tanımlayıcısı döndürmelidir (*opener* yerine :mod:`os.open` göndermek " "fonksiyonel olarak ``None`` göndermek ile benzer sonuçlanır)." -#: library/functions.rst:1315 +#: library/functions.rst:1316 msgid "The newly created file is :ref:`non-inheritable `." msgstr "Yeni oluşturulan dosya :ref:`non-inheritable ` 'dir." -#: library/functions.rst:1317 +#: library/functions.rst:1318 msgid "" "The following example uses the :ref:`dir_fd ` parameter of the :func:" "`os.open` function to open a file relative to a given directory::" @@ -2523,7 +2524,7 @@ msgstr "" "Aşağıdaki örnek verilen bir dizine ait bir dosyayı açmak için :func:`os." "open` fonksiyonunun :ref:`dir_fd ` parametresini kullanır:" -#: library/functions.rst:1330 +#: library/functions.rst:1331 msgid "" "The type of :term:`file object` returned by the :func:`open` function " "depends on the mode. When :func:`open` is used to open a file in a text " @@ -2549,7 +2550,7 @@ msgstr "" "olduğunda, ham akış, :class:`io.RawIOBase` 'in alt sınıfı, :class:`io." "FileIO` döndürülür." -#: library/functions.rst:1351 +#: library/functions.rst:1352 msgid "" "See also the file handling modules, such as :mod:`fileinput`, :mod:`io` " "(where :func:`open` is declared), :mod:`os`, :mod:`os.path`, :mod:" @@ -2559,7 +2560,7 @@ msgstr "" "`os`, :mod:`os.path`, :mod:`tempfile`, ve :mod:`shutil` gibi dosya işleme " "modüllerine de bkz." -#: library/functions.rst:1355 +#: library/functions.rst:1356 msgid "" "Raises an :ref:`auditing event ` ``open`` with arguments ``file``, " "``mode``, ``flags``." @@ -2567,7 +2568,7 @@ msgstr "" "``file``, ``mode``, ``flags`` parametreleriyle bir :ref:`audition event " "` ``open`` ortaya çıkartır." -#: library/functions.rst:1357 +#: library/functions.rst:1358 msgid "" "The ``mode`` and ``flags`` arguments may have been modified or inferred from " "the original call." @@ -2575,21 +2576,21 @@ msgstr "" "``mode`` ve ``flags`` parametreleri orijinal çağrı tarafından modifiye " "edilmiş veya çıkartılmış olabilir." -#: library/functions.rst:1362 +#: library/functions.rst:1363 msgid "The *opener* parameter was added." msgstr "*opener* parametresi eklendi." -#: library/functions.rst:1363 +#: library/functions.rst:1364 msgid "The ``'x'`` mode was added." msgstr "``'x'`` modu eklendi." -#: library/functions.rst:1364 +#: library/functions.rst:1365 msgid ":exc:`IOError` used to be raised, it is now an alias of :exc:`OSError`." msgstr "" "Eskiden :exc:`IOError` hatası ortaya çıkardı, şimdi :exc:`OSError` 'un takma " "adıdır." -#: library/functions.rst:1365 +#: library/functions.rst:1366 msgid "" ":exc:`FileExistsError` is now raised if the file opened in exclusive " "creation mode (``'x'``) already exists." @@ -2597,11 +2598,11 @@ msgstr "" "Artık eğer özel oluşturma modunda (``'x'``) açılmış dosyalar zaten " "bulunuyorsa :exc:`FileExistsError` hatası ortaya çıkar." -#: library/functions.rst:1370 +#: library/functions.rst:1371 msgid "The file is now non-inheritable." msgstr "Dosya artık miras alınamaz." -#: library/functions.rst:1374 +#: library/functions.rst:1375 msgid "" "If the system call is interrupted and the signal handler does not raise an " "exception, the function now retries the system call instead of raising an :" @@ -2611,15 +2612,15 @@ msgstr "" "çıkartmazsa, artık fonksiyon :exc:`InterruptedError` hatası ortaya çıkartmak " "yerine sistem çağrısını yeniden dener (açıklama için :pep:`475` bkz)." -#: library/functions.rst:1377 +#: library/functions.rst:1378 msgid "The ``'namereplace'`` error handler was added." msgstr "``'namereplace'`` hata işleyicisi eklendi." -#: library/functions.rst:1381 +#: library/functions.rst:1382 msgid "Support added to accept objects implementing :class:`os.PathLike`." msgstr ":class:`os.PathLike` uygulayan nesneleri kabul etme desteği eklendi." -#: library/functions.rst:1382 +#: library/functions.rst:1383 msgid "" "On Windows, opening a console buffer may return a subclass of :class:`io." "RawIOBase` other than :class:`io.FileIO`." @@ -2627,11 +2628,11 @@ msgstr "" "Windows'da, bir konsol arabelleğinin açılması :class:`io.FileIO` dışında " "bir :class:`io.RawIOBase` alt sınıfını döndürebilir." -#: library/functions.rst:1385 +#: library/functions.rst:1386 msgid "The ``'U'`` mode has been removed." msgstr "``'U'`` modu kaldırıldı." -#: library/functions.rst:1390 +#: library/functions.rst:1391 msgid "" "Given a string representing one Unicode character, return an integer " "representing the Unicode code point of that character. For example, " @@ -2643,7 +2644,7 @@ msgstr "" "tamsayısını döndürür ve ``ord('€')`` (Euro simgesi) ``8364`` tamsayısını " "döndürür. Bu :func:`chr` 'nin tersidir." -#: library/functions.rst:1398 +#: library/functions.rst:1399 msgid "" "Return *base* to the power *exp*; if *mod* is present, return *base* to the " "power *exp*, modulo *mod* (computed more efficiently than ``pow(base, exp) % " @@ -2655,7 +2656,7 @@ msgstr "" "parametreli formu ``pow(base, exp)``, üs operatörü ``base**exp`` kullanmaya " "eş değerdir." -#: library/functions.rst:1403 +#: library/functions.rst:1404 msgid "" "The arguments must have numeric types. With mixed operand types, the " "coercion rules for binary arithmetic operators apply. For :class:`int` " @@ -2677,7 +2678,7 @@ msgstr "" "`float` tipinin negatif tabanı için, karmaşık bir sayı çıktı verilir. " "Örneğin, ``pow(-9, 0.5)``, ``3j`` 'ye yakın bir değer döndürür." -#: library/functions.rst:1413 +#: library/functions.rst:1414 msgid "" "For :class:`int` operands *base* and *exp*, if *mod* is present, *mod* must " "also be of integer type and *mod* must be nonzero. If *mod* is present and " @@ -2691,11 +2692,11 @@ msgstr "" "``pow(inv_base,-exp,mod)`` döndürülüri *inv_base, *base* mod *mod* 'un " "tersidir." -#: library/functions.rst:1419 +#: library/functions.rst:1420 msgid "Here's an example of computing an inverse for ``38`` modulo ``97``::" msgstr "Burada ``38`` mod ``97`` 'nin tersini işlemek için bir örnek var::" -#: library/functions.rst:1426 +#: library/functions.rst:1427 msgid "" "For :class:`int` operands, the three-argument form of ``pow`` now allows the " "second argument to be negative, permitting computation of modular inverses." @@ -2703,14 +2704,14 @@ msgstr "" ":class:`int` işlenenleri için, ``pow`` 'un üç parametreli formu artık ikinci " "parametrenin negatif olmasına, modüler terslerin hesaplanmasına izin verir." -#: library/functions.rst:1431 +#: library/functions.rst:1432 msgid "" "Allow keyword arguments. Formerly, only positional arguments were supported." msgstr "" "Anahtar kelime parametrelerine izin ver, önceden sadece pozisyonel " "parametreler desteklenirdi." -#: library/functions.rst:1438 +#: library/functions.rst:1439 msgid "" "Print *objects* to the text stream *file*, separated by *sep* and followed " "by *end*. *sep*, *end*, *file*, and *flush*, if present, must be given as " @@ -2720,7 +2721,7 @@ msgstr "" "şekilde *objects* 'i yazdırır. *sep*, *end, *file*, ve *flush* sunulursa " "anahtar kelime parametreleri olarak verilmelidir." -#: library/functions.rst:1442 +#: library/functions.rst:1443 msgid "" "All non-keyword arguments are converted to strings like :func:`str` does and " "written to the stream, separated by *sep* and followed by *end*. Both *sep* " @@ -2734,7 +2735,7 @@ msgstr "" "varsayılan değerler kullanılır. Eğer *objects* verilmediyse, :func:`print` " "sadece *end* 'i yazdırır." -#: library/functions.rst:1448 +#: library/functions.rst:1449 msgid "" "The *file* argument must be an object with a ``write(string)`` method; if it " "is not present or ``None``, :data:`sys.stdout` will be used. Since printed " @@ -2746,7 +2747,7 @@ msgstr "" "argümanlar metin dizelerine çevrildiğinden, :func:`print` ikili dosya " "nesneleri ile kullanılamaz. Bunlar için, ``file.write(...)`` 'ı kullanın." -#: library/functions.rst:1453 +#: library/functions.rst:1454 #, fuzzy msgid "" "Output buffering is usually determined by *file*. However, if *flush* is " @@ -2755,15 +2756,15 @@ msgstr "" "Çıktının arabelleğe alınıp alınmadığı genellikle *file* tarafından " "belirlenir, ama *flush* argümanı doğru ise, akış zorla boşaltılır." -#: library/functions.rst:1457 +#: library/functions.rst:1458 msgid "Added the *flush* keyword argument." msgstr "*flush* anahtar kelimesi argümanı eklendi." -#: library/functions.rst:1463 +#: library/functions.rst:1464 msgid "Return a property attribute." msgstr "Bir özellik özelliği döndürür." -#: library/functions.rst:1465 +#: library/functions.rst:1466 msgid "" "*fget* is a function for getting an attribute value. *fset* is a function " "for setting an attribute value. *fdel* is a function for deleting an " @@ -2774,11 +2775,11 @@ msgstr "" "bir özelliğin değerini silmek için kullanılan bir fonksiyondur, ve *doc* " "özellik için bir belge dizisi oluşturur." -#: library/functions.rst:1469 +#: library/functions.rst:1470 msgid "A typical use is to define a managed attribute ``x``::" msgstr "Yönetilen bir ``x`` özelliği tanımlamak için tipik bir yöntem::" -#: library/functions.rst:1486 +#: library/functions.rst:1487 msgid "" "If *c* is an instance of *C*, ``c.x`` will invoke the getter, ``c.x = " "value`` will invoke the setter, and ``del c.x`` the deleter." @@ -2786,7 +2787,7 @@ msgstr "" "Eğer *c*, *C* 'nin bir örneğiyse, ``c.x``, alıcı fonksiyonu çağıracaktır. " "``c.x = value`` ayarlayıcı fonksiyonu, ``del c.x`` ise siliciyi çağıracaktır." -#: library/functions.rst:1489 +#: library/functions.rst:1490 msgid "" "If given, *doc* will be the docstring of the property attribute. Otherwise, " "the property will copy *fget*'s docstring (if it exists). This makes it " @@ -2798,7 +2799,7 @@ msgstr "" "kopyalayacaktır. Bu :func:`property` 'i :term:`decorator` olarak kullanarak " "kolayca salt-okunur özellikler oluşturmayı mümkün kılar::" -#: library/functions.rst:1502 +#: library/functions.rst:1503 msgid "" "The ``@property`` decorator turns the :meth:`voltage` method into a " "\"getter\" for a read-only attribute with the same name, and it sets the " @@ -2808,7 +2809,7 @@ msgstr "" "bir özellik için \"getter\" metoduna dönüştürür ve *voltage* için doküman " "dizisini \"Get the current voltage.\" olarak ayarlar." -#: library/functions.rst:1506 +#: library/functions.rst:1507 msgid "" "A property object has :attr:`~property.getter`, :attr:`~property.setter`, " "and :attr:`~property.deleter` methods usable as decorators that create a " @@ -2821,7 +2822,7 @@ msgstr "" "`~property.deleter` metotlarını içerir. Bu en iyi şekilde bir örnekle " "açıklanabilir::" -#: library/functions.rst:1528 +#: library/functions.rst:1529 msgid "" "This code is exactly equivalent to the first example. Be sure to give the " "additional functions the same name as the original property (``x`` in this " @@ -2830,7 +2831,7 @@ msgstr "" "Bu kod birinci örneğin tamamen eş değeridir. Orijinal özellikte olduğu gibi " "ekstra fonksiyonlara aynı ismi verdiğinizden emin olun (bu durumda ``x``)." -#: library/functions.rst:1532 +#: library/functions.rst:1533 msgid "" "The returned property object also has the attributes ``fget``, ``fset``, and " "``fdel`` corresponding to the constructor arguments." @@ -2838,11 +2839,11 @@ msgstr "" "Döndürülen property nesnesi yapıcı metotta verilen ``fget``, ``fset``, ve " "``fdel`` özelliklerine sahiptir." -#: library/functions.rst:1535 +#: library/functions.rst:1536 msgid "The docstrings of property objects are now writeable." msgstr "Property nesnelerinin doküman dizeleri artık yazılabilir." -#: library/functions.rst:1544 +#: library/functions.rst:1545 msgid "" "Rather than being a function, :class:`range` is actually an immutable " "sequence type, as documented in :ref:`typesseq-range` and :ref:`typesseq`." @@ -2851,7 +2852,7 @@ msgstr "" "tipidir. Daha fazla bilgi için :ref:`typesseq-range` ve :ref:`typesseq` 'e " "bakınız." -#: library/functions.rst:1550 +#: library/functions.rst:1551 msgid "" "Return a string containing a printable representation of an object. For " "many types, this function makes an attempt to return a string that would " @@ -2872,7 +2873,7 @@ msgstr "" "ne döndürdüğünü kontrol edebilir. :func:`sys.displayhook` erişilebilir " "değilse, bu fonksiyon :exc:`RuntimeError` değerini yükseltir." -#: library/functions.rst:1563 +#: library/functions.rst:1564 msgid "" "Return a reverse :term:`iterator`. *seq* must be an object which has a :" "meth:`__reversed__` method or supports the sequence protocol (the :meth:" @@ -2884,7 +2885,7 @@ msgstr "" "tam sayı argümanları alan bir :meth:`__getitem__` metodu) destekleyen bir " "nesne olmalıdır." -#: library/functions.rst:1571 +#: library/functions.rst:1572 msgid "" "Return *number* rounded to *ndigits* precision after the decimal point. If " "*ndigits* is omitted or is ``None``, it returns the nearest integer to its " @@ -2894,7 +2895,7 @@ msgstr "" "*ndigits* verilmediyse veya ``None`` ise, *number* 'a en yakın tam sayı " "döndürülür." -#: library/functions.rst:1575 +#: library/functions.rst:1576 msgid "" "For the built-in types supporting :func:`round`, values are rounded to the " "closest multiple of 10 to the power minus *ndigits*; if two multiples are " @@ -2912,7 +2913,7 @@ msgstr "" "*ndigits* verilmediyse veya ``None`` ise döndürülen değer bir tam sayıdır. " "Aksi takdirde, döndürülen değerin tipi *number* 'ınkiyle aynıdır." -#: library/functions.rst:1584 +#: library/functions.rst:1585 msgid "" "For a general Python object ``number``, ``round`` delegates to ``number." "__round__``." @@ -2920,7 +2921,7 @@ msgstr "" "Genel bir Python nesnesi için ``number``, ``round`` ``number.__round__`` 'u " "temsil eder." -#: library/functions.rst:1589 +#: library/functions.rst:1590 msgid "" "The behavior of :func:`round` for floats can be surprising: for example, " "``round(2.675, 2)`` gives ``2.67`` instead of the expected ``2.68``. This is " @@ -2934,7 +2935,7 @@ msgstr "" "gösterilemeyeceğinden bu sonucu alıyoruz. Daha fazla bilgi için :ref:`tut-fp-" "issues` 'e bkz." -#: library/functions.rst:1601 +#: library/functions.rst:1602 msgid "" "Return a new :class:`set` object, optionally with elements taken from " "*iterable*. ``set`` is a built-in class. See :class:`set` and :ref:`types-" @@ -2944,7 +2945,7 @@ msgstr "" "nesnesi döndürür. ``set`` yerleşik bir sınıftır. Bu sınıf hakkında " "dokümantasyon için :class:`set` ve :ref:`types-set` 'e bakınız." -#: library/functions.rst:1605 +#: library/functions.rst:1606 msgid "" "For other containers see the built-in :class:`frozenset`, :class:`list`, :" "class:`tuple`, and :class:`dict` classes, as well as the :mod:`collections` " @@ -2954,7 +2955,7 @@ msgstr "" "`tuple` ve :class:`dict` sınıflarını; aynı zamanda :mod:`collections` " "modülüne bakınız." -#: library/functions.rst:1612 +#: library/functions.rst:1613 msgid "" "This is the counterpart of :func:`getattr`. The arguments are an object, a " "string, and an arbitrary value. The string may name an existing attribute " @@ -2967,7 +2968,7 @@ msgstr "" "Fonksiyon, nesnenin izin vermesi koşuluyla, değeri özelliğe atar. Örneğin " "``setattr(x, 'foobar', 123)`` ve ``x.foobar = 123`` eş değerdir." -#: library/functions.rst:1618 +#: library/functions.rst:1619 msgid "" "*name* need not be a Python identifier as defined in :ref:`identifiers` " "unless the object chooses to enforce that, for example in a custom :meth:" @@ -2981,7 +2982,7 @@ msgstr "" "zorunda değildir. Adı tanımlayıcı olmayan bir özelliğe nokta kullanılarak " "erişilemez, ancak :func:`getattr` vb. aracılığıyla erişilebilir." -#: library/functions.rst:1626 +#: library/functions.rst:1627 msgid "" "Since :ref:`private name mangling ` happens at " "compilation time, one must manually mangle a private attribute's (attributes " @@ -2991,7 +2992,7 @@ msgstr "" "olacağından, :func:`setattr` ile ayarlamak için özel bir niteliğin (iki alt " "çizgi ile başlayan nitelikler) adını manuel olarak değiştirmek gerekir." -#: library/functions.rst:1635 +#: library/functions.rst:1636 msgid "" "Return a :term:`slice` object representing the set of indices specified by " "``range(start, stop, step)``. The *start* and *step* arguments default to " @@ -3014,17 +3015,23 @@ msgstr "" "veya ``a[start:stop, i]``. Yineleyici döndüren alternatif bir versiyon için :" "func:`itertools.islice` 'e bakınız." -#: library/functions.rst:1648 +#: library/functions.rst:1646 +msgid "" +"Slice objects are now :term:`hashable` (provided :attr:`~slice.start`, :attr:" +"`~slice.stop`, and :attr:`~slice.step` are hashable)." +msgstr "" + +#: library/functions.rst:1652 msgid "Return a new sorted list from the items in *iterable*." msgstr "" "*iterable* 'ın içindeki elementlerden oluşan sıralı bir liste döndürür." -#: library/functions.rst:1650 +#: library/functions.rst:1654 msgid "" "Has two optional arguments which must be specified as keyword arguments." msgstr "İsimle belirtilmesi gereken 2 opsiyonel parametresi vardır." -#: library/functions.rst:1652 +#: library/functions.rst:1656 msgid "" "*key* specifies a function of one argument that is used to extract a " "comparison key from each element in *iterable* (for example, ``key=str." @@ -3034,7 +3041,7 @@ msgstr "" "için kullanılan bir argümanın fonksiyonunu belirtir (örneğin, ``key=str." "lower``). Varsayılan değer ``None`` 'dır (elementleri direkt karşılaştırır)." -#: library/functions.rst:1656 +#: library/functions.rst:1660 msgid "" "*reverse* is a boolean value. If set to ``True``, then the list elements " "are sorted as if each comparison were reversed." @@ -3042,7 +3049,7 @@ msgstr "" "*reverse* bir boolean değerdir. Eğer ``True`` ise, liste elementleri tüm " "karşılaştırmalar tersine çevrilmiş şekilde sıralanır." -#: library/functions.rst:1659 +#: library/functions.rst:1663 msgid "" "Use :func:`functools.cmp_to_key` to convert an old-style *cmp* function to a " "*key* function." @@ -3050,7 +3057,7 @@ msgstr "" "Eski stil *cmp* fonksiyonunu bir *key* fonksiyonuna dönüştürmek için :func:" "`functools.cmp_to_key` 'yi kullanın." -#: library/functions.rst:1662 +#: library/functions.rst:1666 msgid "" "The built-in :func:`sorted` function is guaranteed to be stable. A sort is " "stable if it guarantees not to change the relative order of elements that " @@ -3062,7 +3069,7 @@ msgstr "" "garantiliyorsa stabildir --- bu çoklu geçişlerle sıralama (örneğin önce " "departman, ardından maaş sıralama) için yardımcıdır." -#: library/functions.rst:1667 +#: library/functions.rst:1671 msgid "" "The sort algorithm uses only ``<`` comparisons between items. While " "defining an :meth:`~object.__lt__` method will suffice for sorting, :PEP:`8` " @@ -3082,18 +3089,18 @@ msgstr "" "uygulamak ayrıca yansıtılan :meth:`~object.__gt__` metodunu çağırabilen " "karmaşık tür karşılaştırmaları için karışıklığı da önler." -#: library/functions.rst:1676 +#: library/functions.rst:1680 msgid "" "For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." msgstr "" "Sıralama örnekleri ve kısa sıralama öğreticisi için :ref:`sortinghowto` 'ya " "bakınız." -#: library/functions.rst:1680 +#: library/functions.rst:1684 msgid "Transform a method into a static method." msgstr "Bir metodu statik metoda dönüştürür." -#: library/functions.rst:1682 +#: library/functions.rst:1686 msgid "" "A static method does not receive an implicit first argument. To declare a " "static method, use this idiom::" @@ -3101,7 +3108,7 @@ msgstr "" "Statik bir metot üstü kapalı şekilde bir ilk argüman almaz. Statik metot " "tanımlamak için bu ifadeyi kullanabilirsiniz::" -#: library/functions.rst:1689 +#: library/functions.rst:1693 msgid "" "The ``@staticmethod`` form is a function :term:`decorator` -- see :ref:" "`function` for details." @@ -3109,7 +3116,7 @@ msgstr "" "``@staticmethod`` ifadesi bir :term:`decorator` fonksiyonudur. -- detaylar " "için :ref:`function` bkz." -#: library/functions.rst:1692 +#: library/functions.rst:1696 msgid "" "A static method can be called either on the class (such as ``C.f()``) or on " "an instance (such as ``C().f()``). Moreover, they can be called as regular " @@ -3119,7 +3126,7 @@ msgstr "" "(``C().f()`` gibi) çağırılabilir. Hatta normal fonksiyonlar gibi (``f()``) " "de çağırılabilirler." -#: library/functions.rst:1696 +#: library/functions.rst:1700 msgid "" "Static methods in Python are similar to those found in Java or C++. Also, " "see :func:`classmethod` for a variant that is useful for creating alternate " @@ -3129,7 +3136,7 @@ msgstr "" "için alternatif bir yapıcı metot oluşturmak isterseniz :func:`classmethod` " "bkz." -#: library/functions.rst:1700 +#: library/functions.rst:1704 msgid "" "Like all decorators, it is also possible to call ``staticmethod`` as a " "regular function and do something with its result. This is needed in some " @@ -3143,11 +3150,11 @@ msgstr "" "dönüşümü engellemek istediğinizde işinize yarayabilir. Böyle durumlar için, " "bu ifadeyi kullanabilirsiniz::" -#: library/functions.rst:1712 +#: library/functions.rst:1716 msgid "For more information on static methods, see :ref:`types`." msgstr "Statik metotlar hakkında daha fazla bilgi için, :ref:`types` bkz." -#: library/functions.rst:1714 +#: library/functions.rst:1718 msgid "" "Static methods now inherit the method attributes (``__module__``, " "``__name__``, ``__qualname__``, ``__doc__`` and ``__annotations__``), have a " @@ -3158,14 +3165,14 @@ msgstr "" "``__wrapped__`` özellikleri var ve artık normal fonksiyonlar gibi " "çağırılabilirler." -#: library/functions.rst:1729 +#: library/functions.rst:1733 msgid "" "Return a :class:`str` version of *object*. See :func:`str` for details." msgstr "" "*object* 'in :class:`str` versiyonunu döndürür. Detaylar için :func:`str` " "bkz." -#: library/functions.rst:1731 +#: library/functions.rst:1735 msgid "" "``str`` is the built-in string :term:`class`. For general information about " "strings, see :ref:`textseq`." @@ -3173,7 +3180,7 @@ msgstr "" "``str`` yerleşik dize :term:`class` 'ıdır. Dizeler hakkında genel bilgi " "için, :ref:`textseq` bkz." -#: library/functions.rst:1737 +#: library/functions.rst:1741 msgid "" "Sums *start* and the items of an *iterable* from left to right and returns " "the total. The *iterable*'s items are normally numbers, and the start value " @@ -3183,7 +3190,7 @@ msgstr "" "döndürür. *iterable* 'ın elemanları normal olarak numaralardır ve başlangıç " "değeri bir dize olamaz." -#: library/functions.rst:1741 +#: library/functions.rst:1745 msgid "" "For some use cases, there are good alternatives to :func:`sum`. The " "preferred, fast way to concatenate a sequence of strings is by calling ``''." @@ -3198,11 +3205,17 @@ msgstr "" "nesnelerden oluşan bir diziyi birleştirmek istiyorsanız, :func:`itertools." "chain` fonksiyonunu kullanmayı göz önünde bulundurun." -#: library/functions.rst:1747 +#: library/functions.rst:1751 msgid "The *start* parameter can be specified as a keyword argument." msgstr "*start* parametresi bir anahtar kelime argümanı olarak belirtilebilir." -#: library/functions.rst:1753 +#: library/functions.rst:1754 +msgid "" +"Summation of floats switched to an algorithm that gives higher accuracy on " +"most builds." +msgstr "" + +#: library/functions.rst:1761 msgid "" "Return a proxy object that delegates method calls to a parent or sibling " "class of *type*. This is useful for accessing inherited methods that have " @@ -3212,7 +3225,7 @@ msgstr "" "eden bir proxy objesi döndürür. Bu bir sınıfta üzerine yazılmış kalıtılan " "metotlara erişmek için kullanışlıdır." -#: library/functions.rst:1757 +#: library/functions.rst:1765 msgid "" "The *object_or_type* determines the :term:`method resolution order` to be " "searched. The search starts from the class right after the *type*." @@ -3220,7 +3233,7 @@ msgstr "" "*object_or_type* aranacak :term:`method resolution order` 'nı belirler. " "Arama *type* 'dan sonraki ilk sınıftan başlar." -#: library/functions.rst:1761 +#: library/functions.rst:1769 msgid "" "For example, if :attr:`~class.__mro__` of *object_or_type* is ``D -> B -> C -" "> A -> object`` and the value of *type* is ``B``, then :func:`super` " @@ -3230,7 +3243,7 @@ msgstr "" "> B -> C -> A -> object`` ise ve *type* değeri ``B`` ise, :func:`super` ``C -" "> A -> object`` 'i arar." -#: library/functions.rst:1765 +#: library/functions.rst:1773 msgid "" "The :attr:`~class.__mro__` attribute of the *object_or_type* lists the " "method resolution search order used by both :func:`getattr` and :func:" @@ -3242,7 +3255,7 @@ msgstr "" "listeler. Özellik dinamiktir ve kalıtım hiyerarşisi her güncellendiğinde " "değişebilir." -#: library/functions.rst:1770 +#: library/functions.rst:1778 msgid "" "If the second argument is omitted, the super object returned is unbound. If " "the second argument is an object, ``isinstance(obj, type)`` must be true. " @@ -3254,7 +3267,7 @@ msgstr "" "zorundadır. Eğer ikinci parametre bir tür ise, ``issubclass(type2, type)`` " "doğru olmak zorundadır (bu sınıf metotları için kullanışlıdır)." -#: library/functions.rst:1775 +#: library/functions.rst:1783 msgid "" "There are two typical use cases for *super*. In a class hierarchy with " "single inheritance, *super* can be used to refer to parent classes without " @@ -3265,7 +3278,7 @@ msgstr "" "hiyerarşisinde *super* üst sınıfları açıkça adlandırmadan onlara başvurmak " "için kullanılabilir. böylece kodu daha sürdürülebilir hale getirir." -#: library/functions.rst:1780 +#: library/functions.rst:1788 msgid "" "The second use case is to support cooperative multiple inheritance in a " "dynamic execution environment. This use case is unique to Python and is not " @@ -3286,12 +3299,12 @@ msgstr "" "sıra sınıf hiyerarşisindeki değişikliklere uyarlanır ve çalışma zamanından " "önce bilinmeyen kardeş sınıfları içerebilir) dikte eder." -#: library/functions.rst:1790 +#: library/functions.rst:1798 msgid "For both use cases, a typical superclass call looks like this::" msgstr "" "İki kullanım durumu için de, tipik bir üst sınıf çağrısı bu şekildedir::" -#: library/functions.rst:1797 +#: library/functions.rst:1805 msgid "" "In addition to method lookups, :func:`super` also works for attribute " "lookups. One possible use case for this is calling :term:`descriptors " @@ -3301,7 +3314,7 @@ msgstr "" "çalışır. Bunun kullanım şekli ebeveyn veya kardeş bir sınıfta :term:" "`tanımlayıcılar ` 'i çağırmaktır." -#: library/functions.rst:1801 +#: library/functions.rst:1809 msgid "" "Note that :func:`super` is implemented as part of the binding process for " "explicit dotted attribute lookups such as ``super().__getitem__(name)``. It " @@ -3317,7 +3330,7 @@ msgstr "" "`super`, ifadeler veya ``super()[name]`` gibi operatörler kullanarak kesin " "aramalar için tanımsızdır." -#: library/functions.rst:1808 +#: library/functions.rst:1816 msgid "" "Also note that, aside from the zero argument form, :func:`super` is not " "limited to use inside methods. The two argument form specifies the " @@ -3332,7 +3345,7 @@ msgstr "" "tanımının içinde çalışır, derleyici tanımlanan sınıfı doğru şekilde almak ve " "sıradan yöntemlere geçerli örnekten erişmek için gerekli detayları doldurur." -#: library/functions.rst:1815 +#: library/functions.rst:1823 msgid "" "For practical suggestions on how to design cooperative classes using :func:" "`super`, see `guide to using super() `_ bkz." -#: library/functions.rst:1825 +#: library/functions.rst:1833 msgid "" "Rather than being a function, :class:`tuple` is actually an immutable " "sequence type, as documented in :ref:`typesseq-tuple` and :ref:`typesseq`." @@ -3350,7 +3363,7 @@ msgstr "" "Bir fonksiyon olmaktansa, :class:`tuple` :ref:`typesseq-tuple` ve :ref:" "`typesseq` 'de gösterildiği gibi düzenlenemez bir dizi türüdür." -#: library/functions.rst:1834 +#: library/functions.rst:1842 msgid "" "With one argument, return the type of an *object*. The return value is a " "type object and generally the same object as returned by :attr:`object." @@ -3360,7 +3373,7 @@ msgstr "" "türüdür ve genellikle :attr:`object.__class__ ` " "tarafından döndürülen obje ile aynıdır." -#: library/functions.rst:1838 +#: library/functions.rst:1846 msgid "" "The :func:`isinstance` built-in function is recommended for testing the type " "of an object, because it takes subclasses into account." @@ -3368,7 +3381,7 @@ msgstr "" ":func:`isinstance` yerleşik fonksiyonu bir objenin türünü test etmek için " "önerilir. Çünkü altsınıfları hesaba katar." -#: library/functions.rst:1842 +#: library/functions.rst:1850 msgid "" "With three arguments, return a new type object. This is essentially a " "dynamic form of the :keyword:`class` statement. The *name* string is the " @@ -3389,11 +3402,11 @@ msgstr "" "özelliği yerine geçmeden önce kopyalanabilir veya sarılabilir. Aşağıdaki iki " "ifade birebir aynı :class:`type` nesneleri oluşturur:" -#: library/functions.rst:1857 +#: library/functions.rst:1865 msgid "See also :ref:`bltin-type-objects`." msgstr ":ref:`bltin-type-objects` 'e de bkz." -#: library/functions.rst:1859 +#: library/functions.rst:1867 msgid "" "Keyword arguments provided to the three argument form are passed to the " "appropriate metaclass machinery (usually :meth:`~object.__init_subclass__`) " @@ -3405,11 +3418,11 @@ msgstr "" "tanımındaki anahtar sözcüklerin (*metaclass* dışında) yapacağı şekilde " "iletilir." -#: library/functions.rst:1864 +#: library/functions.rst:1872 msgid "See also :ref:`class-customization`." msgstr ":ref:`class-customization` 'a da bkz." -#: library/functions.rst:1866 +#: library/functions.rst:1874 msgid "" "Subclasses of :class:`type` which don't override ``type.__new__`` may no " "longer use the one-argument form to get the type of an object." @@ -3417,7 +3430,7 @@ msgstr "" "``type.__new__`` 'in üzerine yazmayan :class:`type` altsınıfları artık bir " "objenin türünü almak için tek argümanlı formu kullanamaz." -#: library/functions.rst:1873 +#: library/functions.rst:1881 msgid "" "Return the :attr:`~object.__dict__` attribute for a module, class, instance, " "or any other object with a :attr:`~object.__dict__` attribute." @@ -3425,7 +3438,7 @@ msgstr "" "Bir modül, sınıf, örnek veya :attr:`~object.__dict__` özelliği bulunan " "herhangi bir obje için, :attr:`~object.__dict__` özelliğini döndürür." -#: library/functions.rst:1876 +#: library/functions.rst:1884 msgid "" "Objects such as modules and instances have an updateable :attr:`~object." "__dict__` attribute; however, other objects may have write restrictions on " @@ -3438,7 +3451,7 @@ msgstr "" "sınıflar doğrudan sözlük güncellemelerini önlemek için :class:`types." "MappingProxyType` sınıfını kullanırlar)." -#: library/functions.rst:1881 +#: library/functions.rst:1889 msgid "" "Without an argument, :func:`vars` acts like :func:`locals`. Note, the " "locals dictionary is only useful for reads since updates to the locals " @@ -3448,7 +3461,7 @@ msgstr "" "ona yapılan güncellemeler görmezden gelindiğinden ötürü, sadece okuma işlemi " "için kullanışlıdır." -#: library/functions.rst:1885 +#: library/functions.rst:1893 msgid "" "A :exc:`TypeError` exception is raised if an object is specified but it " "doesn't have a :attr:`~object.__dict__` attribute (for example, if its class " @@ -3458,7 +3471,7 @@ msgstr "" "(örneğin, :attr:`~object.__slots__` özelliğini tanımlayan bir sınıf ise), :" "exc:`TypeError` hatası ortaya çıkar." -#: library/functions.rst:1891 +#: library/functions.rst:1899 msgid "" "Iterate over several iterables in parallel, producing tuples with an item " "from each one." @@ -3466,11 +3479,11 @@ msgstr "" "Paralel olarak birkaç yinelenebilir nesneyi yineler ve hepsinden bir element " "alarak bir demet üretir." -#: library/functions.rst:1894 +#: library/functions.rst:1902 msgid "Example::" msgstr "Örnek::" -#: library/functions.rst:1903 +#: library/functions.rst:1911 msgid "" "More formally: :func:`zip` returns an iterator of tuples, where the *i*-th " "tuple contains the *i*-th element from each of the argument iterables." @@ -3479,7 +3492,7 @@ msgstr "" "parametre yineleyicisinden *i* 'inci elementi içerdiği bir yineleyici " "döndürür." -#: library/functions.rst:1906 +#: library/functions.rst:1914 msgid "" "Another way to think of :func:`zip` is that it turns rows into columns, and " "columns into rows. This is similar to `transposing a matrix `_ 'a benzer." -#: library/functions.rst:1910 +#: library/functions.rst:1918 msgid "" ":func:`zip` is lazy: The elements won't be processed until the iterable is " "iterated on, e.g. by a :keyword:`!for` loop or by wrapping in a :class:" @@ -3499,7 +3512,7 @@ msgstr "" "döngüsü veya :class:`list` tarafından sarılarak yinelenmediği sürece " "elementler işlenmez." -#: library/functions.rst:1914 +#: library/functions.rst:1922 msgid "" "One thing to consider is that the iterables passed to :func:`zip` could have " "different lengths; sometimes by design, and sometimes because of a bug in " @@ -3511,7 +3524,7 @@ msgstr "" "kodda oluşan bir hatadan dolayı farklı uzunluklarda olabilirler. Python " "bununla başa çıkmak için üç farklı yaklaşım sunar:" -#: library/functions.rst:1919 +#: library/functions.rst:1927 msgid "" "By default, :func:`zip` stops when the shortest iterable is exhausted. It " "will ignore the remaining items in the longer iterables, cutting off the " @@ -3521,7 +3534,7 @@ msgstr "" "durur. Daha uzun yinelebilirlerde kalan elementleri görmezden gelecektir ve " "sonucu en kısa yineleyicinin uzunluğuna eşitleyecektir::" -#: library/functions.rst:1926 +#: library/functions.rst:1934 msgid "" ":func:`zip` is often used in cases where the iterables are assumed to be of " "equal length. In such cases, it's recommended to use the ``strict=True`` " @@ -3531,7 +3544,7 @@ msgstr "" "kullanılır. Bu gibi durumlarda, ``strict=True`` opsiyonunu kullanmak " "önerilir. Çıktısı sıradan :func:`zip` ile aynıdır::" -#: library/functions.rst:1933 +#: library/functions.rst:1941 msgid "" "Unlike the default behavior, it raises a :exc:`ValueError` if one iterable " "is exhausted before the others:" @@ -3539,7 +3552,7 @@ msgstr "" "Varsayılan davranışın aksine, bir yinelenebilir diğerlerinden önce tükenirse " "bir :exc:`ValueError` ortaya çıkar:" -#: library/functions.rst:1951 +#: library/functions.rst:1959 msgid "" "Without the ``strict=True`` argument, any bug that results in iterables of " "different lengths will be silenced, possibly manifesting as a hard-to-find " @@ -3549,7 +3562,7 @@ msgstr "" "sonuçlanan hatalar susturulacaktır. Mümkün olduğunca programın başka bir " "bölümünde bulunması zor bir hata olarak tezahür ediyor." -#: library/functions.rst:1955 +#: library/functions.rst:1963 msgid "" "Shorter iterables can be padded with a constant value to make all the " "iterables have the same length. This is done by :func:`itertools." @@ -3559,7 +3572,7 @@ msgstr "" "uzunlukta olması için sabit bir değerle doldurulabilirler. Bu :func:" "`itertools.zip_longest` tarafından yapılır." -#: library/functions.rst:1959 +#: library/functions.rst:1967 msgid "" "Edge cases: With a single iterable argument, :func:`zip` returns an iterator " "of 1-tuples. With no arguments, it returns an empty iterator." @@ -3568,11 +3581,11 @@ msgstr "" "bir demetin yineleyicisini döndürür. Argüman verilmezse, boş bir yineleyici " "döndürür." -#: library/functions.rst:1962 +#: library/functions.rst:1970 msgid "Tips and tricks:" msgstr "İpucu ve hileler:" -#: library/functions.rst:1964 +#: library/functions.rst:1972 msgid "" "The left-to-right evaluation order of the iterables is guaranteed. This " "makes possible an idiom for clustering a data series into n-length groups " @@ -3587,7 +3600,7 @@ msgstr "" "sayıda çağrı yapmış olur. Bu, girdiyi n-uzunluklu parçalara bölme etkisine " "sahiptir." -#: library/functions.rst:1970 +#: library/functions.rst:1978 msgid "" ":func:`zip` in conjunction with the ``*`` operator can be used to unzip a " "list::" @@ -3595,11 +3608,11 @@ msgstr "" ":func:`zip`, bir listeyi açmak için ``*`` operatörüyle birlikte " "kullanılabilir::" -#: library/functions.rst:1981 +#: library/functions.rst:1989 msgid "Added the ``strict`` argument." msgstr "``strict`` argümanı eklendi." -#: library/functions.rst:1993 +#: library/functions.rst:2001 msgid "" "This is an advanced function that is not needed in everyday Python " "programming, unlike :func:`importlib.import_module`." @@ -3607,7 +3620,7 @@ msgstr "" "Bu :func:`importlib.import_module` 'un aksine günlük Python programlamasında " "genel olarak kullanılmayan gelişmiş bir fonksiyondur." -#: library/functions.rst:1996 +#: library/functions.rst:2004 msgid "" "This function is invoked by the :keyword:`import` statement. It can be " "replaced (by importing the :mod:`builtins` module and assigning to " @@ -3626,7 +3639,7 @@ msgstr "" "neden olmayacağından tavsiye **edilmez**. :func:`__import__` 'un doğrudan " "kullanımı da :func:`importlib.import_module` 'ın lehine tavsiye edilmez." -#: library/functions.rst:2005 +#: library/functions.rst:2013 msgid "" "The function imports the module *name*, potentially using the given " "*globals* and *locals* to determine how to interpret the name in a package " @@ -3642,7 +3655,7 @@ msgstr "" "*locals* argümanını kullanmaya teşebbüs etmez ve *globals* 'i :keyword:" "`import` ifadesinin paket bağlamını belirlemek için kullanır." -#: library/functions.rst:2012 +#: library/functions.rst:2020 msgid "" "*level* specifies whether to use absolute or relative imports. ``0`` (the " "default) means only perform absolute imports. Positive values for *level* " @@ -3656,7 +3669,7 @@ msgstr "" "dizinine göre aranacak üst dizinlerin sayısını gösterir (detaylar için :pep:" "`328` 'e bakınız)." -#: library/functions.rst:2018 +#: library/functions.rst:2026 msgid "" "When the *name* variable is of the form ``package.module``, normally, the " "top-level package (the name up till the first dot) is returned, *not* the " @@ -3667,7 +3680,7 @@ msgstr "" "((ilk noktaya kadar olan isim) döndürülür, *name* isimli modül *değil*. Boş " "olmayan bir *fromlist* argümanı verildiğinde, *name* isimli modül döndürülür." -#: library/functions.rst:2023 +#: library/functions.rst:2031 msgid "" "For example, the statement ``import spam`` results in bytecode resembling " "the following code::" @@ -3675,11 +3688,11 @@ msgstr "" "Örnek olarak, ``import spam`` ifadesi aşağıdaki koda benzeyen bayt koduyla " "sonuçlanır::" -#: library/functions.rst:2028 +#: library/functions.rst:2036 msgid "The statement ``import spam.ham`` results in this call::" msgstr "``import spam.ham`` ifadesi şu çağrıyla sonuçlanır::" -#: library/functions.rst:2032 +#: library/functions.rst:2040 msgid "" "Note how :func:`__import__` returns the toplevel module here because this is " "the object that is bound to a name by the :keyword:`import` statement." @@ -3688,7 +3701,7 @@ msgstr "" "dikkat edin, çünkü bu, :keyword:`import` ifadesiyle bir ada bağlanan " "nesnedir." -#: library/functions.rst:2035 +#: library/functions.rst:2043 msgid "" "On the other hand, the statement ``from spam.ham import eggs, sausage as " "saus`` results in ::" @@ -3696,7 +3709,7 @@ msgstr "" "Diğer yandan, ``from spam.ham import eggs, sausage as saus`` ifadesi şöyle " "sonuçlanır::" -#: library/functions.rst:2042 +#: library/functions.rst:2050 msgid "" "Here, the ``spam.ham`` module is returned from :func:`__import__`. From " "this object, the names to import are retrieved and assigned to their " @@ -3705,7 +3718,7 @@ msgstr "" "Burada, ``spam.ham`` modülü :func:`__import__` 'dan döndürülür. Bu objeden, " "içeri aktarılacak isimler alınır ve sırasıyla adlarına atanır." -#: library/functions.rst:2046 +#: library/functions.rst:2054 msgid "" "If you simply want to import a module (potentially within a package) by " "name, use :func:`importlib.import_module`." @@ -3713,7 +3726,7 @@ msgstr "" "Eğer ismiyle bir modülü (potansiyel olarak bir paket içinde) içe aktarmak " "istiyorsanız, :func:`importlib.import_module` 'i kullanın." -#: library/functions.rst:2049 +#: library/functions.rst:2057 msgid "" "Negative values for *level* are no longer supported (which also changes the " "default value to 0)." @@ -3721,7 +3734,7 @@ msgstr "" "*level* için negatif değerler artık desteklenmiyor (bu, varsayılan değeri 0 " "olarak da değiştirir)." -#: library/functions.rst:2053 +#: library/functions.rst:2061 msgid "" "When the command line options :option:`-E` or :option:`-I` are being used, " "the environment variable :envvar:`PYTHONCASEOK` is now ignored." @@ -3729,11 +3742,11 @@ msgstr "" "Komut satırı opsiyonlarından :option:`-E` veya :option:`-I` kullanıldığında, " "ortam değişkeni :envvar:`PYTHONCASEOK` görmezden gelinir." -#: library/functions.rst:2058 +#: library/functions.rst:2066 msgid "Footnotes" msgstr "Dipnotlar" -#: library/functions.rst:2059 +#: library/functions.rst:2067 msgid "" "Note that the parser only accepts the Unix-style end of line convention. If " "you are reading the code from a file, make sure to use newline conversion " @@ -3748,113 +3761,113 @@ msgstr "" msgid "Boolean" msgstr "" -#: library/functions.rst:1832 +#: library/functions.rst:1840 msgid "type" msgstr "" -#: library/functions.rst:571 +#: library/functions.rst:572 #, fuzzy msgid "built-in function" msgstr "Gömülü Fonksiyonlar" -#: library/functions.rst:571 +#: library/functions.rst:572 msgid "exec" msgstr "" -#: library/functions.rst:648 +#: library/functions.rst:649 msgid "NaN" msgstr "" -#: library/functions.rst:648 +#: library/functions.rst:649 msgid "Infinity" msgstr "" -#: library/functions.rst:713 +#: library/functions.rst:714 msgid "__format__" msgstr "" -#: library/functions.rst:1721 +#: library/functions.rst:1725 msgid "string" msgstr "" -#: library/functions.rst:713 +#: library/functions.rst:714 #, fuzzy msgid "format() (built-in function)" msgstr "Gömülü Fonksiyonlar" -#: library/functions.rst:1160 +#: library/functions.rst:1161 msgid "file object" msgstr "" -#: library/functions.rst:1281 +#: library/functions.rst:1282 #, fuzzy msgid "open() built-in function" msgstr "Gömülü Fonksiyonlar" -#: library/functions.rst:1188 +#: library/functions.rst:1189 msgid "file" msgstr "" -#: library/functions.rst:1188 +#: library/functions.rst:1189 msgid "modes" msgstr "" -#: library/functions.rst:1281 +#: library/functions.rst:1282 msgid "universal newlines" msgstr "" -#: library/functions.rst:1342 +#: library/functions.rst:1343 msgid "line-buffered I/O" msgstr "" -#: library/functions.rst:1342 +#: library/functions.rst:1343 msgid "unbuffered I/O" msgstr "" -#: library/functions.rst:1342 +#: library/functions.rst:1343 msgid "buffer size, I/O" msgstr "" -#: library/functions.rst:1342 +#: library/functions.rst:1343 msgid "I/O control" msgstr "" -#: library/functions.rst:1342 +#: library/functions.rst:1343 msgid "buffering" msgstr "" -#: library/functions.rst:1342 +#: library/functions.rst:1343 #, fuzzy msgid "text mode" msgstr "metin modu (varsayılan)" -#: library/functions.rst:1987 +#: library/functions.rst:1995 msgid "module" msgstr "" -#: library/functions.rst:1342 +#: library/functions.rst:1343 msgid "sys" msgstr "" -#: library/functions.rst:1721 +#: library/functions.rst:1725 #, fuzzy msgid "str() (built-in function)" msgstr "Gömülü Fonksiyonlar" -#: library/functions.rst:1832 +#: library/functions.rst:1840 #, fuzzy msgid "object" msgstr ":func:`object`" -#: library/functions.rst:1987 +#: library/functions.rst:1995 msgid "statement" msgstr "" -#: library/functions.rst:1987 +#: library/functions.rst:1995 msgid "import" msgstr "" -#: library/functions.rst:1987 +#: library/functions.rst:1995 msgid "builtins" msgstr "" diff --git a/library/functools.po b/library/functools.po index 54eeb6f6e..ba0497ffa 100644 --- a/library/functools.po +++ b/library/functools.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -51,18 +51,18 @@ msgid "" "`lru_cache()` with a size limit." msgstr "" -#: library/functools.rst:276 +#: library/functools.rst:291 msgid "For example::" msgstr "" -#: library/functools.rst:143 +#: library/functools.rst:158 msgid "" "The cache is threadsafe so that the wrapped function can be used in multiple " "threads. This means that the underlying data structure will remain coherent " "during concurrent updates." msgstr "" -#: library/functools.rst:147 +#: library/functools.rst:162 msgid "" "It is possible for the wrapped function to be called more than once if " "another thread makes an additional call before the initial call has been " @@ -77,7 +77,7 @@ msgid "" "computed properties of instances that are otherwise effectively immutable." msgstr "" -#: library/functools.rst:127 library/functools.rst:368 +#: library/functools.rst:142 library/functools.rst:383 msgid "Example::" msgstr "" @@ -105,12 +105,23 @@ msgstr "" #: library/functools.rst:94 msgid "" +"The *cached_property* does not prevent a possible race condition in multi-" +"threaded usage. The getter function could run more than once on the same " +"instance, with the latest run setting the cached value. If the cached " +"property is idempotent or otherwise not harmful to run more than once on an " +"instance, this is fine. If synchronization is needed, implement the " +"necessary locking inside the decorated getter function or around the cached " +"property access." +msgstr "" + +#: library/functools.rst:102 +msgid "" "Note, this decorator interferes with the operation of :pep:`412` key-sharing " "dictionaries. This means that instance dictionaries can take more space " "than usual." msgstr "" -#: library/functools.rst:98 +#: library/functools.rst:106 msgid "" "Also, this decorator requires that the ``__dict__`` attribute on each " "instance be a mutable mapping. This means it will not work with some types, " @@ -120,7 +131,7 @@ msgid "" "such classes don't provide a ``__dict__`` attribute at all)." msgstr "" -#: library/functools.rst:105 +#: library/functools.rst:113 msgid "" "If a mutable mapping is not available or if space-efficient key sharing is " "desired, an effect similar to :func:`cached_property` can also be achieved " @@ -129,7 +140,16 @@ msgid "" "`cached_property`." msgstr "" -#: library/functools.rst:115 +#: library/functools.rst:120 +msgid "" +"Prior to Python 3.12, ``cached_property`` included an undocumented lock to " +"ensure that in multi-threaded usage the getter function was guaranteed to " +"run only once per instance. However, the lock was per-property, not per-" +"instance, which could result in unacceptably high lock contention. In Python " +"3.12+ this locking is removed." +msgstr "" + +#: library/functools.rst:130 msgid "" "Transform an old-style comparison function to a :term:`key function`. Used " "with tools that accept key functions (such as :func:`sorted`, :func:`min`, :" @@ -139,7 +159,7 @@ msgid "" "comparison functions." msgstr "" -#: library/functools.rst:122 +#: library/functools.rst:137 msgid "" "A comparison function is any callable that accepts two arguments, compares " "them, and returns a negative number for less-than, zero for equality, or a " @@ -147,25 +167,25 @@ msgid "" "one argument and returns another value to be used as the sort key." msgstr "" -#: library/functools.rst:131 +#: library/functools.rst:146 msgid "" "For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." msgstr "" -#: library/functools.rst:139 +#: library/functools.rst:154 msgid "" "Decorator to wrap a function with a memoizing callable that saves up to the " "*maxsize* most recent calls. It can save time when an expensive or I/O " "bound function is periodically called with the same arguments." msgstr "" -#: library/functools.rst:151 +#: library/functools.rst:166 msgid "" "Since a dictionary is used to cache results, the positional and keyword " "arguments to the function must be :term:`hashable`." msgstr "" -#: library/functools.rst:154 +#: library/functools.rst:169 msgid "" "Distinct argument patterns may be considered to be distinct calls with " "separate cache entries. For example, ``f(a=1, b=2)`` and ``f(b=2, a=1)`` " @@ -173,20 +193,20 @@ msgid "" "entries." msgstr "" -#: library/functools.rst:159 +#: library/functools.rst:174 msgid "" "If *user_function* is specified, it must be a callable. This allows the " "*lru_cache* decorator to be applied directly to a user function, leaving the " "*maxsize* at its default value of 128::" msgstr "" -#: library/functools.rst:167 +#: library/functools.rst:182 msgid "" "If *maxsize* is set to ``None``, the LRU feature is disabled and the cache " "can grow without bound." msgstr "" -#: library/functools.rst:170 +#: library/functools.rst:185 msgid "" "If *typed* is set to true, function arguments of different types will be " "cached separately. If *typed* is false, the implementation will usually " @@ -194,7 +214,7 @@ msgid "" "such as *str* and *int* may be cached separately even when *typed* is false.)" msgstr "" -#: library/functools.rst:176 +#: library/functools.rst:191 msgid "" "Note, type specificity applies only to the function's immediate arguments " "rather than their contents. The scalar arguments, ``Decimal(42)`` and " @@ -203,7 +223,7 @@ msgid "" "Fraction(42))`` are treated as equivalent." msgstr "" -#: library/functools.rst:182 +#: library/functools.rst:197 msgid "" "The wrapped function is instrumented with a :func:`cache_parameters` " "function that returns a new :class:`dict` showing the values for *maxsize* " @@ -211,7 +231,7 @@ msgid "" "has no effect." msgstr "" -#: library/functools.rst:187 +#: library/functools.rst:202 msgid "" "To help measure the effectiveness of the cache and tune the *maxsize* " "parameter, the wrapped function is instrumented with a :func:`cache_info` " @@ -219,32 +239,32 @@ msgid "" "*maxsize* and *currsize*." msgstr "" -#: library/functools.rst:192 +#: library/functools.rst:207 msgid "" "The decorator also provides a :func:`cache_clear` function for clearing or " "invalidating the cache." msgstr "" -#: library/functools.rst:195 +#: library/functools.rst:210 msgid "" "The original underlying function is accessible through the :attr:" "`__wrapped__` attribute. This is useful for introspection, for bypassing " "the cache, or for rewrapping the function with a different cache." msgstr "" -#: library/functools.rst:199 +#: library/functools.rst:214 msgid "" "The cache keeps references to the arguments and return values until they age " "out of the cache or until the cache is cleared." msgstr "" -#: library/functools.rst:202 +#: library/functools.rst:217 msgid "" "If a method is cached, the ``self`` instance argument is included in the " "cache. See :ref:`faq-cache-method-calls`" msgstr "" -#: library/functools.rst:205 +#: library/functools.rst:220 msgid "" "An `LRU (least recently used) cache `_ works best when the " @@ -254,7 +274,7 @@ msgid "" "long-running processes such as web servers." msgstr "" -#: library/functools.rst:212 +#: library/functools.rst:227 msgid "" "In general, the LRU cache should only be used when you want to reuse " "previously computed values. Accordingly, it doesn't make sense to cache " @@ -263,44 +283,44 @@ msgid "" "functions such as time() or random()." msgstr "" -#: library/functools.rst:218 +#: library/functools.rst:233 msgid "Example of an LRU cache for static web content::" msgstr "" -#: library/functools.rst:237 +#: library/functools.rst:252 msgid "" "Example of efficiently computing `Fibonacci numbers `_ using a cache to implement a `dynamic " "programming `_ technique::" msgstr "" -#: library/functools.rst:257 +#: library/functools.rst:272 msgid "Added the *typed* option." msgstr "" -#: library/functools.rst:260 +#: library/functools.rst:275 msgid "Added the *user_function* option." msgstr "" -#: library/functools.rst:263 +#: library/functools.rst:278 msgid "Added the function :func:`cache_parameters`" msgstr "" -#: library/functools.rst:268 +#: library/functools.rst:283 msgid "" "Given a class defining one or more rich comparison ordering methods, this " "class decorator supplies the rest. This simplifies the effort involved in " "specifying all of the possible rich comparison operations:" msgstr "" -#: library/functools.rst:272 +#: library/functools.rst:287 msgid "" "The class must define one of :meth:`__lt__`, :meth:`__le__`, :meth:`__gt__`, " "or :meth:`__ge__`. In addition, the class should supply an :meth:`__eq__` " "method." msgstr "" -#: library/functools.rst:296 +#: library/functools.rst:311 msgid "" "While this decorator makes it easy to create well behaved totally ordered " "types, it *does* come at the cost of slower execution and more complex stack " @@ -309,7 +329,7 @@ msgid "" "rich comparison methods instead is likely to provide an easy speed boost." msgstr "" -#: library/functools.rst:305 +#: library/functools.rst:320 msgid "" "This decorator makes no attempt to override methods that have been declared " "in the class *or its superclasses*. Meaning that if a superclass defines a " @@ -317,13 +337,13 @@ msgid "" "the original method is abstract." msgstr "" -#: library/functools.rst:312 +#: library/functools.rst:327 msgid "" "Returning NotImplemented from the underlying comparison function for " "unrecognised types is now supported." msgstr "" -#: library/functools.rst:318 +#: library/functools.rst:333 msgid "" "Return a new :ref:`partial object` which when called will " "behave like *func* called with the positional arguments *args* and keyword " @@ -332,7 +352,7 @@ msgid "" "extend and override *keywords*. Roughly equivalent to::" msgstr "" -#: library/functools.rst:334 +#: library/functools.rst:349 msgid "" "The :func:`partial` is used for partial function application which " "\"freezes\" some portion of a function's arguments and/or keywords resulting " @@ -341,20 +361,20 @@ msgid "" "where the *base* argument defaults to two:" msgstr "" -#: library/functools.rst:349 +#: library/functools.rst:364 msgid "" "Return a new :class:`partialmethod` descriptor which behaves like :class:" "`partial` except that it is designed to be used as a method definition " "rather than being directly callable." msgstr "" -#: library/functools.rst:353 +#: library/functools.rst:368 msgid "" "*func* must be a :term:`descriptor` or a callable (objects which are both, " "like normal functions, are handled as descriptors)." msgstr "" -#: library/functools.rst:356 +#: library/functools.rst:371 msgid "" "When *func* is a descriptor (such as a normal Python function, :func:" "`classmethod`, :func:`staticmethod`, :func:`abstractmethod` or another " @@ -363,7 +383,7 @@ msgid "" "objects>` returned as the result." msgstr "" -#: library/functools.rst:362 +#: library/functools.rst:377 msgid "" "When *func* is a non-descriptor callable, an appropriate bound method is " "created dynamically. This behaves like a normal Python function when used as " @@ -372,7 +392,7 @@ msgid "" "`partialmethod` constructor." msgstr "" -#: library/functools.rst:393 +#: library/functools.rst:408 msgid "" "Apply *function* of two arguments cumulatively to the items of *iterable*, " "from left to right, so as to reduce the iterable to a single value. For " @@ -385,30 +405,30 @@ msgid "" "the first item is returned." msgstr "" -#: library/functools.rst:402 +#: library/functools.rst:417 msgid "Roughly equivalent to::" msgstr "" -#: library/functools.rst:414 +#: library/functools.rst:429 msgid "" "See :func:`itertools.accumulate` for an iterator that yields all " "intermediate values." msgstr "" -#: library/functools.rst:419 +#: library/functools.rst:434 msgid "" "Transform a function into a :term:`single-dispatch ` :term:" "`generic function`." msgstr "" -#: library/functools.rst:422 +#: library/functools.rst:437 msgid "" "To define a generic function, decorate it with the ``@singledispatch`` " "decorator. When defining a function using ``@singledispatch``, note that the " "dispatch happens on the type of the first argument::" msgstr "" -#: library/functools.rst:433 +#: library/functools.rst:448 msgid "" "To add overloaded implementations to the function, use the :func:`register` " "attribute of the generic function, which can be used as a decorator. For " @@ -416,36 +436,36 @@ msgid "" "first argument automatically::" msgstr "" -#: library/functools.rst:451 +#: library/functools.rst:466 msgid ":data:`types.UnionType` and :data:`typing.Union` can also be used::" msgstr "" -#: library/functools.rst:468 +#: library/functools.rst:483 msgid "" "For code which doesn't use type annotations, the appropriate type argument " "can be passed explicitly to the decorator itself::" msgstr "" -#: library/functools.rst:479 +#: library/functools.rst:494 msgid "" "To enable registering :term:`lambdas` and pre-existing functions, " "the :func:`register` attribute can also be used in a functional form::" msgstr "" -#: library/functools.rst:487 +#: library/functools.rst:502 msgid "" "The :func:`register` attribute returns the undecorated function. This " "enables decorator stacking, :mod:`pickling`, and the creation of " "unit tests for each variant independently::" msgstr "" -#: library/functools.rst:501 +#: library/functools.rst:516 msgid "" "When called, the generic function dispatches on the type of the first " "argument::" msgstr "" -#: library/functools.rst:521 +#: library/functools.rst:536 msgid "" "Where there is no registered implementation for a specific type, its method " "resolution order is used to find a more generic implementation. The original " @@ -454,42 +474,42 @@ msgid "" "found." msgstr "" -#: library/functools.rst:527 +#: library/functools.rst:542 msgid "" "If an implementation is registered to an :term:`abstract base class`, " "virtual subclasses of the base class will be dispatched to that " "implementation::" msgstr "" -#: library/functools.rst:542 +#: library/functools.rst:557 msgid "" "To check which implementation the generic function will choose for a given " "type, use the ``dispatch()`` attribute::" msgstr "" -#: library/functools.rst:550 +#: library/functools.rst:565 msgid "" "To access all registered implementations, use the read-only ``registry`` " "attribute::" msgstr "" -#: library/functools.rst:564 +#: library/functools.rst:579 msgid "The :func:`register` attribute now supports using type annotations." msgstr "" -#: library/functools.rst:567 +#: library/functools.rst:582 msgid "" "The :func:`register` attribute now supports :data:`types.UnionType` and :" "data:`typing.Union` as type annotations." msgstr "" -#: library/functools.rst:574 +#: library/functools.rst:589 msgid "" "Transform a method into a :term:`single-dispatch ` :term:" "`generic function`." msgstr "" -#: library/functools.rst:577 +#: library/functools.rst:592 msgid "" "To define a generic method, decorate it with the ``@singledispatchmethod`` " "decorator. When defining a function using ``@singledispatchmethod``, note " @@ -497,7 +517,7 @@ msgid "" "argument::" msgstr "" -#: library/functools.rst:595 +#: library/functools.rst:610 msgid "" "``@singledispatchmethod`` supports nesting with other decorators such as :" "func:`@classmethod`. Note that to allow for ``dispatcher." @@ -506,14 +526,14 @@ msgid "" "rather than an instance of the class::" msgstr "" -#: library/functools.rst:617 +#: library/functools.rst:632 msgid "" "The same pattern can be used for other similar decorators: :func:" "`@staticmethod`, :func:`@abstractmethod`, " "and others." msgstr "" -#: library/functools.rst:626 +#: library/functools.rst:641 msgid "" "Update a *wrapper* function to look like the *wrapped* function. The " "optional arguments are tuples to specify which attributes of the original " @@ -527,7 +547,7 @@ msgid "" "``__dict__``, i.e. the instance dictionary)." msgstr "" -#: library/functools.rst:636 +#: library/functools.rst:651 msgid "" "To allow access to the original function for introspection and other " "purposes (e.g. bypassing a caching decorator such as :func:`lru_cache`), " @@ -535,7 +555,7 @@ msgid "" "that refers to the function being wrapped." msgstr "" -#: library/functools.rst:641 +#: library/functools.rst:656 msgid "" "The main intended use for this function is in :term:`decorator` functions " "which wrap the decorated function and return the wrapper. If the wrapper " @@ -544,7 +564,7 @@ msgid "" "is typically less than helpful." msgstr "" -#: library/functools.rst:647 +#: library/functools.rst:662 msgid "" ":func:`update_wrapper` may be used with callables other than functions. Any " "attributes named in *assigned* or *updated* that are missing from the object " @@ -553,26 +573,26 @@ msgid "" "wrapper function itself is missing any attributes named in *updated*." msgstr "" -#: library/functools.rst:653 +#: library/functools.rst:668 msgid "Automatic addition of the ``__wrapped__`` attribute." msgstr "" -#: library/functools.rst:656 +#: library/functools.rst:671 msgid "Copying of the ``__annotations__`` attribute by default." msgstr "" -#: library/functools.rst:659 +#: library/functools.rst:674 msgid "Missing attributes no longer trigger an :exc:`AttributeError`." msgstr "" -#: library/functools.rst:662 +#: library/functools.rst:677 msgid "" "The ``__wrapped__`` attribute now always refers to the wrapped function, " "even if that function defined a ``__wrapped__`` attribute. (see :issue:" "`17482`)" msgstr "" -#: library/functools.rst:670 +#: library/functools.rst:685 msgid "" "This is a convenience function for invoking :func:`update_wrapper` as a " "function decorator when defining a wrapper function. It is equivalent to " @@ -580,42 +600,42 @@ msgid "" "updated=updated)``. For example::" msgstr "" -#: library/functools.rst:696 +#: library/functools.rst:711 msgid "" "Without the use of this decorator factory, the name of the example function " "would have been ``'wrapper'``, and the docstring of the original :func:" "`example` would have been lost." msgstr "" -#: library/functools.rst:704 +#: library/functools.rst:719 msgid ":class:`partial` Objects" msgstr "" -#: library/functools.rst:706 +#: library/functools.rst:721 msgid "" ":class:`partial` objects are callable objects created by :func:`partial`. " "They have three read-only attributes:" msgstr "" -#: library/functools.rst:712 +#: library/functools.rst:727 msgid "" "A callable object or function. Calls to the :class:`partial` object will be " "forwarded to :attr:`func` with new arguments and keywords." msgstr "" -#: library/functools.rst:718 +#: library/functools.rst:733 msgid "" "The leftmost positional arguments that will be prepended to the positional " "arguments provided to a :class:`partial` object call." msgstr "" -#: library/functools.rst:724 +#: library/functools.rst:739 msgid "" "The keyword arguments that will be supplied when the :class:`partial` object " "is called." msgstr "" -#: library/functools.rst:727 +#: library/functools.rst:742 msgid "" ":class:`partial` objects are like :class:`function` objects in that they are " "callable, weak referencable, and can have attributes. There are some " diff --git a/library/gc.po b/library/gc.po index 13579b09a..e26488430 100644 --- a/library/gc.po +++ b/library/gc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -283,8 +283,8 @@ msgstr "" #: library/gc.rst:261 msgid "" -"Following :pep:`442`, objects with a :meth:`__del__` method don't end up in :" -"data:`gc.garbage` anymore." +"Following :pep:`442`, objects with a :meth:`~object.__del__` method don't " +"end up in :data:`gc.garbage` anymore." msgstr "" #: library/gc.rst:267 diff --git a/library/glob.po b/library/glob.po index 486b91e48..6d8007383 100644 --- a/library/glob.po +++ b/library/glob.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -61,7 +61,7 @@ msgid "" "symlinks are included in the results (as in the shell). Whether or not the " "results are sorted depends on the file system. If a file that satisfies " "conditions is removed or added during the call of this function, whether a " -"path name for that file be included is unspecified." +"path name for that file will be included is unspecified." msgstr "" #: library/glob.rst:54 diff --git a/library/gzip.po b/library/gzip.po index afc62c911..d7d63019b 100644 --- a/library/gzip.po +++ b/library/gzip.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -256,11 +256,17 @@ msgstr "" #: library/gzip.rst:174 msgid "" +"Remove the ``filename`` attribute, use the :attr:`~GzipFile.name` attribute " +"instead." +msgstr "" + +#: library/gzip.rst:178 +msgid "" "Opening :class:`GzipFile` for writing without specifying the *mode* argument " "is deprecated." msgstr "" -#: library/gzip.rst:181 +#: library/gzip.rst:185 msgid "" "Compress the *data*, returning a :class:`bytes` object containing the " "compressed data. *compresslevel* and *mtime* have the same meaning as in " @@ -269,18 +275,18 @@ msgid "" "The zlib function is faster." msgstr "" -#: library/gzip.rst:188 +#: library/gzip.rst:192 msgid "Added the *mtime* parameter for reproducible output." msgstr "" -#: library/gzip.rst:190 +#: library/gzip.rst:194 msgid "" "Speed is improved by compressing all data at once instead of in a streamed " "fashion. Calls with *mtime* set to ``0`` are delegated to :func:`zlib." "compress` for better speed." msgstr "" -#: library/gzip.rst:197 +#: library/gzip.rst:201 msgid "" "Decompress the *data*, returning a :class:`bytes` object containing the " "uncompressed data. This function is capable of decompressing multi-member " @@ -289,82 +295,82 @@ msgid "" "*wbits* set to 31 is faster." msgstr "" -#: library/gzip.rst:204 +#: library/gzip.rst:208 msgid "" "Speed is improved by decompressing members at once in memory instead of in a " "streamed fashion." msgstr "" -#: library/gzip.rst:211 +#: library/gzip.rst:215 msgid "Examples of usage" msgstr "" -#: library/gzip.rst:213 +#: library/gzip.rst:217 msgid "Example of how to read a compressed file::" msgstr "" -#: library/gzip.rst:219 +#: library/gzip.rst:223 msgid "Example of how to create a compressed GZIP file::" msgstr "" -#: library/gzip.rst:226 +#: library/gzip.rst:230 msgid "Example of how to GZIP compress an existing file::" msgstr "" -#: library/gzip.rst:234 +#: library/gzip.rst:238 msgid "Example of how to GZIP compress a binary string::" msgstr "" -#: library/gzip.rst:243 +#: library/gzip.rst:247 msgid "Module :mod:`zlib`" msgstr "" -#: library/gzip.rst:243 +#: library/gzip.rst:247 msgid "" "The basic data compression module needed to support the :program:`gzip` file " "format." msgstr "" -#: library/gzip.rst:250 +#: library/gzip.rst:254 msgid "Command Line Interface" msgstr "" -#: library/gzip.rst:252 +#: library/gzip.rst:256 msgid "" "The :mod:`gzip` module provides a simple command line interface to compress " "or decompress files." msgstr "" -#: library/gzip.rst:255 +#: library/gzip.rst:259 msgid "Once executed the :mod:`gzip` module keeps the input file(s)." msgstr "" -#: library/gzip.rst:259 +#: library/gzip.rst:263 msgid "" "Add a new command line interface with a usage. By default, when you will " "execute the CLI, the default compression level is 6." msgstr "" -#: library/gzip.rst:263 +#: library/gzip.rst:267 msgid "Command line options" msgstr "" -#: library/gzip.rst:267 +#: library/gzip.rst:271 msgid "If *file* is not specified, read from :data:`sys.stdin`." msgstr "" -#: library/gzip.rst:271 +#: library/gzip.rst:275 msgid "Indicates the fastest compression method (less compression)." msgstr "" -#: library/gzip.rst:275 +#: library/gzip.rst:279 msgid "Indicates the slowest compression method (best compression)." msgstr "" -#: library/gzip.rst:279 +#: library/gzip.rst:283 msgid "Decompress the given file." msgstr "" -#: library/gzip.rst:283 +#: library/gzip.rst:287 msgid "Show the help message." msgstr "" diff --git a/library/hashlib.po b/library/hashlib.po index 0776959fc..5a7ef2fb8 100644 --- a/library/hashlib.po +++ b/library/hashlib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -114,25 +114,32 @@ msgstr "" msgid "Hashlib now uses SHA3 and SHAKE from OpenSSL if it provides it." msgstr "" -#: library/hashlib.rst:97 +#: library/hashlib.rst:96 +msgid "" +"For any of the MD5, SHA1, SHA2, or SHA3 algorithms that the linked OpenSSL " +"does not provide we fall back to a verified implementation from the `HACL\\* " +"project`_." +msgstr "" + +#: library/hashlib.rst:102 msgid "Usage" msgstr "" -#: library/hashlib.rst:99 +#: library/hashlib.rst:104 msgid "" "To obtain the digest of the byte string ``b\"Nobody inspects the spammish " "repetition\"``::" msgstr "" -#: library/hashlib.rst:111 +#: library/hashlib.rst:116 msgid "More condensed:" msgstr "" -#: library/hashlib.rst:117 +#: library/hashlib.rst:122 msgid "Constructors" msgstr "" -#: library/hashlib.rst:121 +#: library/hashlib.rst:126 msgid "" "Is a generic constructor that takes the string *name* of the desired " "algorithm as its first parameter. It also exists to allow access to the " @@ -140,25 +147,25 @@ msgid "" "library may offer." msgstr "" -#: library/hashlib.rst:126 +#: library/hashlib.rst:131 msgid "Using :func:`new` with an algorithm name:" msgstr "" -#: library/hashlib.rst:145 +#: library/hashlib.rst:150 msgid "" "Named constructors such as these are faster than passing an algorithm name " "to :func:`new`." msgstr "" -#: library/hashlib.rst:149 +#: library/hashlib.rst:154 msgid "Attributes" msgstr "" -#: library/hashlib.rst:151 +#: library/hashlib.rst:156 msgid "Hashlib provides the following constant module attributes:" msgstr "" -#: library/hashlib.rst:155 +#: library/hashlib.rst:160 msgid "" "A set containing the names of the hash algorithms guaranteed to be supported " "by this module on all platforms. Note that 'md5' is in this list despite " @@ -166,7 +173,7 @@ msgid "" "excludes it." msgstr "" -#: library/hashlib.rst:164 +#: library/hashlib.rst:169 msgid "" "A set containing the names of the hash algorithms that are available in the " "running Python interpreter. These names will be recognized when passed to :" @@ -175,59 +182,52 @@ msgid "" "(thanks to OpenSSL)." msgstr "" -#: library/hashlib.rst:173 +#: library/hashlib.rst:178 msgid "Hash Objects" msgstr "" -#: library/hashlib.rst:175 +#: library/hashlib.rst:180 msgid "" "The following values are provided as constant attributes of the hash objects " "returned by the constructors:" msgstr "" -#: library/hashlib.rst:180 +#: library/hashlib.rst:185 msgid "The size of the resulting hash in bytes." msgstr "" -#: library/hashlib.rst:184 +#: library/hashlib.rst:189 msgid "The internal block size of the hash algorithm in bytes." msgstr "" -#: library/hashlib.rst:186 +#: library/hashlib.rst:191 msgid "A hash object has the following attributes:" msgstr "" -#: library/hashlib.rst:190 +#: library/hashlib.rst:195 msgid "" "The canonical name of this hash, always lowercase and always suitable as a " "parameter to :func:`new` to create another hash of this type." msgstr "" -#: library/hashlib.rst:193 +#: library/hashlib.rst:198 msgid "" "The name attribute has been present in CPython since its inception, but " "until Python 3.4 was not formally specified, so may not exist on some " "platforms." msgstr "" -#: library/hashlib.rst:198 +#: library/hashlib.rst:203 msgid "A hash object has the following methods:" msgstr "" -#: library/hashlib.rst:203 +#: library/hashlib.rst:208 msgid "" "Update the hash object with the :term:`bytes-like object`. Repeated calls " "are equivalent to a single call with the concatenation of all the arguments: " "``m.update(a); m.update(b)`` is equivalent to ``m.update(a+b)``." msgstr "" -#: library/hashlib.rst:208 -msgid "" -"The Python GIL is released to allow other threads to run while hash updates " -"on data larger than 2047 bytes is taking place when using hash algorithms " -"supplied by OpenSSL." -msgstr "" - #: library/hashlib.rst:216 msgid "" "Return the digest of the data passed to the :meth:`update` method so far. " @@ -357,26 +357,23 @@ msgid "" "digest size of the hash algorithm *hash_name* is used, e.g. 64 for SHA-512." msgstr "" -#: library/hashlib.rst:346 -msgid "" -"A fast implementation of *pbkdf2_hmac* is available with OpenSSL. The " -"Python implementation uses an inline version of :mod:`hmac`. It is about " -"three times slower and doesn't release the GIL." +#: library/hashlib.rst:342 +msgid "Function only available when Python is compiled with OpenSSL." msgstr "" -#: library/hashlib.rst:352 +#: library/hashlib.rst:346 msgid "" -"Slow Python implementation of *pbkdf2_hmac* is deprecated. In the future the " -"function will only be available when Python is compiled with OpenSSL." +"Function now only available when Python is built with OpenSSL. The slow pure " +"Python implementation has been removed." msgstr "" -#: library/hashlib.rst:358 +#: library/hashlib.rst:352 msgid "" "The function provides scrypt password-based key derivation function as " "defined in :rfc:`7914`." msgstr "" -#: library/hashlib.rst:361 +#: library/hashlib.rst:355 msgid "" "*password* and *salt* must be :term:`bytes-like objects `. Applications and libraries should limit *password* to a sensible " @@ -384,138 +381,138 @@ msgid "" "source, e.g. :func:`os.urandom`." msgstr "" -#: library/hashlib.rst:366 +#: library/hashlib.rst:360 msgid "" "*n* is the CPU/Memory cost factor, *r* the block size, *p* parallelization " "factor and *maxmem* limits memory (OpenSSL 1.1.0 defaults to 32 MiB). " "*dklen* is the length of the derived key." msgstr "" -#: library/hashlib.rst:374 +#: library/hashlib.rst:368 msgid "BLAKE2" msgstr "" -#: library/hashlib.rst:381 +#: library/hashlib.rst:375 msgid "" "BLAKE2_ is a cryptographic hash function defined in :rfc:`7693` that comes " "in two flavors:" msgstr "" -#: library/hashlib.rst:384 +#: library/hashlib.rst:378 msgid "" "**BLAKE2b**, optimized for 64-bit platforms and produces digests of any size " "between 1 and 64 bytes," msgstr "" -#: library/hashlib.rst:387 +#: library/hashlib.rst:381 msgid "" "**BLAKE2s**, optimized for 8- to 32-bit platforms and produces digests of " "any size between 1 and 32 bytes." msgstr "" -#: library/hashlib.rst:390 +#: library/hashlib.rst:384 msgid "" "BLAKE2 supports **keyed mode** (a faster and simpler replacement for HMAC_), " "**salted hashing**, **personalization**, and **tree hashing**." msgstr "" -#: library/hashlib.rst:393 +#: library/hashlib.rst:387 msgid "" "Hash objects from this module follow the API of standard library's :mod:" "`hashlib` objects." msgstr "" -#: library/hashlib.rst:398 +#: library/hashlib.rst:392 msgid "Creating hash objects" msgstr "" -#: library/hashlib.rst:400 +#: library/hashlib.rst:394 msgid "New hash objects are created by calling constructor functions:" msgstr "" -#: library/hashlib.rst:414 +#: library/hashlib.rst:408 msgid "" "These functions return the corresponding hash objects for calculating " "BLAKE2b or BLAKE2s. They optionally take these general parameters:" msgstr "" -#: library/hashlib.rst:417 +#: library/hashlib.rst:411 msgid "" "*data*: initial chunk of data to hash, which must be :term:`bytes-like " "object`. It can be passed only as positional argument." msgstr "" -#: library/hashlib.rst:420 +#: library/hashlib.rst:414 msgid "*digest_size*: size of output digest in bytes." msgstr "" -#: library/hashlib.rst:422 +#: library/hashlib.rst:416 msgid "" "*key*: key for keyed hashing (up to 64 bytes for BLAKE2b, up to 32 bytes for " "BLAKE2s)." msgstr "" -#: library/hashlib.rst:425 +#: library/hashlib.rst:419 msgid "" "*salt*: salt for randomized hashing (up to 16 bytes for BLAKE2b, up to 8 " "bytes for BLAKE2s)." msgstr "" -#: library/hashlib.rst:428 +#: library/hashlib.rst:422 msgid "" "*person*: personalization string (up to 16 bytes for BLAKE2b, up to 8 bytes " "for BLAKE2s)." msgstr "" -#: library/hashlib.rst:431 +#: library/hashlib.rst:425 msgid "The following table shows limits for general parameters (in bytes):" msgstr "" -#: library/hashlib.rst:434 +#: library/hashlib.rst:428 msgid "Hash" msgstr "" -#: library/hashlib.rst:434 +#: library/hashlib.rst:428 msgid "digest_size" msgstr "" -#: library/hashlib.rst:434 +#: library/hashlib.rst:428 msgid "len(key)" msgstr "" -#: library/hashlib.rst:434 +#: library/hashlib.rst:428 msgid "len(salt)" msgstr "" -#: library/hashlib.rst:434 +#: library/hashlib.rst:428 msgid "len(person)" msgstr "" -#: library/hashlib.rst:436 +#: library/hashlib.rst:430 msgid "BLAKE2b" msgstr "" -#: library/hashlib.rst:436 +#: library/hashlib.rst:430 msgid "64" msgstr "" -#: library/hashlib.rst:436 +#: library/hashlib.rst:430 msgid "16" msgstr "" -#: library/hashlib.rst:437 +#: library/hashlib.rst:431 msgid "BLAKE2s" msgstr "" -#: library/hashlib.rst:437 +#: library/hashlib.rst:431 msgid "32" msgstr "" -#: library/hashlib.rst:437 +#: library/hashlib.rst:431 msgid "8" msgstr "" -#: library/hashlib.rst:442 +#: library/hashlib.rst:436 msgid "" "BLAKE2 specification defines constant lengths for salt and personalization " "parameters, however, for convenience, this implementation accepts byte " @@ -525,49 +522,49 @@ msgid "" "the case for *key*.)" msgstr "" -#: library/hashlib.rst:449 +#: library/hashlib.rst:443 msgid "These sizes are available as module `constants`_ described below." msgstr "" -#: library/hashlib.rst:451 +#: library/hashlib.rst:445 msgid "" "Constructor functions also accept the following tree hashing parameters:" msgstr "" -#: library/hashlib.rst:453 +#: library/hashlib.rst:447 msgid "*fanout*: fanout (0 to 255, 0 if unlimited, 1 in sequential mode)." msgstr "" -#: library/hashlib.rst:455 +#: library/hashlib.rst:449 msgid "" "*depth*: maximal depth of tree (1 to 255, 255 if unlimited, 1 in sequential " "mode)." msgstr "" -#: library/hashlib.rst:458 +#: library/hashlib.rst:452 msgid "" "*leaf_size*: maximal byte length of leaf (0 to ``2**32-1``, 0 if unlimited " "or in sequential mode)." msgstr "" -#: library/hashlib.rst:461 +#: library/hashlib.rst:455 msgid "" "*node_offset*: node offset (0 to ``2**64-1`` for BLAKE2b, 0 to ``2**48-1`` " "for BLAKE2s, 0 for the first, leftmost, leaf, or in sequential mode)." msgstr "" -#: library/hashlib.rst:464 +#: library/hashlib.rst:458 msgid "" "*node_depth*: node depth (0 to 255, 0 for leaves, or in sequential mode)." msgstr "" -#: library/hashlib.rst:466 +#: library/hashlib.rst:460 msgid "" "*inner_size*: inner digest size (0 to 64 for BLAKE2b, 0 to 32 for BLAKE2s, 0 " "in sequential mode)." msgstr "" -#: library/hashlib.rst:469 +#: library/hashlib.rst:463 msgid "" "*last_node*: boolean indicating whether the processed node is the last one " "(``False`` for sequential mode)." @@ -577,42 +574,42 @@ msgstr "" msgid "Explanation of tree mode parameters." msgstr "" -#: library/hashlib.rst:476 +#: library/hashlib.rst:470 msgid "" "See section 2.10 in `BLAKE2 specification `_ for comprehensive review of tree hashing." msgstr "" -#: library/hashlib.rst:482 +#: library/hashlib.rst:476 msgid "Constants" msgstr "" -#: library/hashlib.rst:487 +#: library/hashlib.rst:481 msgid "Salt length (maximum length accepted by constructors)." msgstr "" -#: library/hashlib.rst:493 +#: library/hashlib.rst:487 msgid "" "Personalization string length (maximum length accepted by constructors)." msgstr "" -#: library/hashlib.rst:499 +#: library/hashlib.rst:493 msgid "Maximum key size." msgstr "" -#: library/hashlib.rst:505 +#: library/hashlib.rst:499 msgid "Maximum digest size that the hash function can output." msgstr "" -#: library/hashlib.rst:509 +#: library/hashlib.rst:503 msgid "Examples" msgstr "" -#: library/hashlib.rst:512 +#: library/hashlib.rst:506 msgid "Simple hashing" msgstr "" -#: library/hashlib.rst:514 +#: library/hashlib.rst:508 msgid "" "To calculate hash of some data, you should first construct a hash object by " "calling the appropriate constructor function (:func:`blake2b` or :func:" @@ -621,41 +618,41 @@ msgid "" "`~hash.digest` (or :meth:`~hash.hexdigest` for hex-encoded string)." msgstr "" -#: library/hashlib.rst:527 +#: library/hashlib.rst:521 msgid "" "As a shortcut, you can pass the first chunk of data to update directly to " "the constructor as the positional argument:" msgstr "" -#: library/hashlib.rst:534 +#: library/hashlib.rst:528 msgid "" "You can call :meth:`hash.update` as many times as you need to iteratively " "update the hash:" msgstr "" -#: library/hashlib.rst:547 +#: library/hashlib.rst:542 msgid "Using different digest sizes" msgstr "" -#: library/hashlib.rst:549 +#: library/hashlib.rst:544 msgid "" "BLAKE2 has configurable size of digests up to 64 bytes for BLAKE2b and up to " "32 bytes for BLAKE2s. For example, to replace SHA-1 with BLAKE2b without " "changing the size of output, we can tell BLAKE2b to produce 20-byte digests:" msgstr "" -#: library/hashlib.rst:563 +#: library/hashlib.rst:558 msgid "" "Hash objects with different digest sizes have completely different outputs " "(shorter hashes are *not* prefixes of longer hashes); BLAKE2b and BLAKE2s " "produce different outputs even if the output length is the same:" msgstr "" -#: library/hashlib.rst:579 +#: library/hashlib.rst:574 msgid "Keyed hashing" msgstr "" -#: library/hashlib.rst:581 +#: library/hashlib.rst:576 msgid "" "Keyed hashing can be used for authentication as a faster and simpler " "replacement for `Hash-based message authentication code `_)" msgstr "" -#: library/hashlib.rst:665 +#: library/hashlib.rst:660 msgid "" "In BLAKE2 the salt is processed as a one-time input to the hash function " "during initialization, rather than as an input to each compression function." msgstr "" -#: library/hashlib.rst:670 +#: library/hashlib.rst:665 msgid "" "*Salted hashing* (or just hashing) with BLAKE2 or any other general-purpose " "cryptographic hash function, such as SHA-256, is not suitable for hashing " @@ -733,18 +730,18 @@ msgid "" "information." msgstr "" -#: library/hashlib.rst:693 +#: library/hashlib.rst:688 msgid "Personalization" msgstr "" -#: library/hashlib.rst:695 +#: library/hashlib.rst:690 msgid "" "Sometimes it is useful to force hash function to produce different digests " "for the same input for different purposes. Quoting the authors of the Skein " "hash function:" msgstr "" -#: library/hashlib.rst:699 +#: library/hashlib.rst:694 msgid "" "We recommend that all application designers seriously consider doing this; " "we have seen many protocols where a hash that is computed in one part of the " @@ -754,41 +751,41 @@ msgid "" "hash function used in the protocol summarily stops this type of attack." msgstr "" -#: library/hashlib.rst:706 +#: library/hashlib.rst:701 msgid "" "(`The Skein Hash Function Family `_, p. 21)" msgstr "" -#: library/hashlib.rst:710 +#: library/hashlib.rst:705 msgid "BLAKE2 can be personalized by passing bytes to the *person* argument::" msgstr "" -#: library/hashlib.rst:724 +#: library/hashlib.rst:719 msgid "" "Personalization together with the keyed mode can also be used to derive " "different keys from a single one." msgstr "" -#: library/hashlib.rst:738 +#: library/hashlib.rst:733 msgid "Tree mode" msgstr "" -#: library/hashlib.rst:740 +#: library/hashlib.rst:735 msgid "Here's an example of hashing a minimal tree with two leaf nodes::" msgstr "" -#: library/hashlib.rst:746 +#: library/hashlib.rst:741 msgid "" "This example uses 64-byte internal digests, and returns the 32-byte final " "digest::" msgstr "" -#: library/hashlib.rst:776 +#: library/hashlib.rst:771 msgid "Credits" msgstr "" -#: library/hashlib.rst:778 +#: library/hashlib.rst:773 msgid "" "BLAKE2_ was designed by *Jean-Philippe Aumasson*, *Samuel Neves*, *Zooko " "Wilcox-O'Hearn*, and *Christian Winnerlein* based on SHA-3_ finalist BLAKE_ " @@ -796,118 +793,118 @@ msgid "" "*Raphael C.-W. Phan*." msgstr "" -#: library/hashlib.rst:783 +#: library/hashlib.rst:778 msgid "" "It uses core algorithm from ChaCha_ cipher designed by *Daniel J. " "Bernstein*." msgstr "" -#: library/hashlib.rst:785 +#: library/hashlib.rst:780 msgid "" "The stdlib implementation is based on pyblake2_ module. It was written by " "*Dmitry Chestnykh* based on C implementation written by *Samuel Neves*. The " "documentation was copied from pyblake2_ and written by *Dmitry Chestnykh*." msgstr "" -#: library/hashlib.rst:789 +#: library/hashlib.rst:784 msgid "The C code was partly rewritten for Python by *Christian Heimes*." msgstr "" -#: library/hashlib.rst:791 +#: library/hashlib.rst:786 msgid "" "The following public domain dedication applies for both C hash function " "implementation, extension code, and this documentation:" msgstr "" -#: library/hashlib.rst:794 +#: library/hashlib.rst:789 msgid "" "To the extent possible under law, the author(s) have dedicated all copyright " "and related and neighboring rights to this software to the public domain " "worldwide. This software is distributed without any warranty." msgstr "" -#: library/hashlib.rst:798 +#: library/hashlib.rst:793 msgid "" "You should have received a copy of the CC0 Public Domain Dedication along " "with this software. If not, see https://creativecommons.org/publicdomain/" "zero/1.0/." msgstr "" -#: library/hashlib.rst:802 +#: library/hashlib.rst:797 msgid "" "The following people have helped with development or contributed their " "changes to the project and the public domain according to the Creative " "Commons Public Domain Dedication 1.0 Universal:" msgstr "" -#: library/hashlib.rst:806 +#: library/hashlib.rst:801 msgid "*Alexandr Sokolovskiy*" msgstr "" -#: library/hashlib.rst:826 +#: library/hashlib.rst:822 msgid "Module :mod:`hmac`" msgstr "" -#: library/hashlib.rst:826 +#: library/hashlib.rst:822 msgid "A module to generate message authentication codes using hashes." msgstr "" -#: library/hashlib.rst:829 +#: library/hashlib.rst:825 msgid "Module :mod:`base64`" msgstr "" -#: library/hashlib.rst:829 +#: library/hashlib.rst:825 msgid "Another way to encode binary hashes for non-binary environments." msgstr "" -#: library/hashlib.rst:832 +#: library/hashlib.rst:828 msgid "https://nvlpubs.nist.gov/nistpubs/fips/nist.fips.180-4.pdf" msgstr "" -#: library/hashlib.rst:832 +#: library/hashlib.rst:828 msgid "The FIPS 180-4 publication on Secure Hash Algorithms." msgstr "" -#: library/hashlib.rst:835 +#: library/hashlib.rst:831 msgid "https://csrc.nist.gov/publications/detail/fips/202/final" msgstr "" -#: library/hashlib.rst:835 +#: library/hashlib.rst:831 msgid "The FIPS 202 publication on the SHA-3 Standard." msgstr "" -#: library/hashlib.rst:838 +#: library/hashlib.rst:834 msgid "https://www.blake2.net/" msgstr "" -#: library/hashlib.rst:838 +#: library/hashlib.rst:834 msgid "Official BLAKE2 website." msgstr "" -#: library/hashlib.rst:842 +#: library/hashlib.rst:838 msgid "https://en.wikipedia.org/wiki/Cryptographic_hash_function" msgstr "" -#: library/hashlib.rst:841 +#: library/hashlib.rst:837 msgid "" "Wikipedia article with information on which algorithms have known issues and " "what that means regarding their use." msgstr "" -#: library/hashlib.rst:845 +#: library/hashlib.rst:841 msgid "https://www.ietf.org/rfc/rfc8018.txt" msgstr "" -#: library/hashlib.rst:845 +#: library/hashlib.rst:841 msgid "PKCS #5: Password-Based Cryptography Specification Version 2.1" msgstr "" -#: library/hashlib.rst:847 +#: library/hashlib.rst:843 msgid "" "https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf" msgstr "" -#: library/hashlib.rst:848 +#: library/hashlib.rst:844 msgid "NIST Recommendation for Password-Based Key Derivation." msgstr "" @@ -929,6 +926,6 @@ msgstr "" msgid "(use in module hashlib)" msgstr "" -#: library/hashlib.rst:378 +#: library/hashlib.rst:372 msgid "blake2b, blake2s" msgstr "" diff --git a/library/html.entities.po b/library/html.entities.po index d29f106ae..7bd0493fe 100644 --- a/library/html.entities.po +++ b/library/html.entities.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -47,11 +47,11 @@ msgid "" msgstr "" #: library/html.entities.rst:37 -msgid "A dictionary that maps HTML entity names to the Unicode code points." +msgid "A dictionary that maps HTML4 entity names to the Unicode code points." msgstr "" #: library/html.entities.rst:42 -msgid "A dictionary that maps Unicode code points to HTML entity names." +msgid "A dictionary that maps Unicode code points to HTML4 entity names." msgstr "" #: library/html.entities.rst:46 diff --git a/library/http.client.po b/library/http.client.po index 4c476a127..28f6a904d 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -33,7 +33,7 @@ msgstr "" #: library/http.client.rst:23 msgid "" -"The `Requests package `_ is " +"The `Requests package `_ is " "recommended for a higher-level HTTP client interface." msgstr "" @@ -92,7 +92,7 @@ msgstr "" msgid "*blocksize* parameter was added." msgstr "" -#: library/http.client.rst:75 +#: library/http.client.rst:74 msgid "" "A subclass of :class:`HTTPConnection` that uses SSL for communication with " "secure servers. Default port is ``443``. If *context* is specified, it " @@ -100,84 +100,77 @@ msgid "" "options." msgstr "" -#: library/http.client.rst:80 +#: library/http.client.rst:79 msgid "Please read :ref:`ssl-security` for more information on best practices." msgstr "" -#: library/http.client.rst:82 +#: library/http.client.rst:81 msgid "*source_address*, *context* and *check_hostname* were added." msgstr "" -#: library/http.client.rst:85 +#: library/http.client.rst:84 msgid "" "This class now supports HTTPS virtual hosts if possible (that is, if :const:" "`ssl.HAS_SNI` is true)." msgstr "" -#: library/http.client.rst:89 +#: library/http.client.rst:88 msgid "" "The *strict* parameter was removed. HTTP 0.9-style \"Simple Responses\" are " "no longer supported." msgstr "" -#: library/http.client.rst:93 +#: library/http.client.rst:92 msgid "" "This class now performs all the necessary certificate and hostname checks by " "default. To revert to the previous, unverified, behavior :func:`ssl." "_create_unverified_context` can be passed to the *context* parameter." msgstr "" -#: library/http.client.rst:99 +#: library/http.client.rst:98 msgid "" "This class now enables TLS 1.3 :attr:`ssl.SSLContext.post_handshake_auth` " "for the default *context* or when *cert_file* is passed with a custom " "*context*." msgstr "" -#: library/http.client.rst:104 +#: library/http.client.rst:103 msgid "" "This class now sends an ALPN extension with protocol indicator ``http/1.1`` " "when no *context* is given. Custom *context* should set ALPN protocols with :" "meth:`~ssl.SSLContext.set_alpn_protocol`." msgstr "" -#: library/http.client.rst:111 +#: library/http.client.rst:108 msgid "" -"*key_file* and *cert_file* are deprecated in favor of *context*. Please use :" -"meth:`ssl.SSLContext.load_cert_chain` instead, or let :func:`ssl." -"create_default_context` select the system's trusted CA certificates for you." +"The deprecated *key_file*, *cert_file* and *check_hostname* parameters have " +"been removed." msgstr "" -#: library/http.client.rst:116 -msgid "" -"The *check_hostname* parameter is also deprecated; the :attr:`ssl.SSLContext." -"check_hostname` attribute of *context* should be used instead." -msgstr "" - -#: library/http.client.rst:123 +#: library/http.client.rst:115 msgid "" "Class whose instances are returned upon successful connection. Not " "instantiated directly by user." msgstr "" -#: library/http.client.rst:126 +#: library/http.client.rst:118 msgid "" "The *strict* parameter was removed. HTTP 0.9 style \"Simple Responses\" are " "no longer supported." msgstr "" -#: library/http.client.rst:130 +#: library/http.client.rst:122 msgid "This module provides the following function:" msgstr "" -#: library/http.client.rst:134 +#: library/http.client.rst:126 msgid "" "Parse the headers from a file pointer *fp* representing a HTTP request/" "response. The file has to be a :class:`BufferedIOBase` reader (i.e. not " "text) and must provide a valid :rfc:`2822` style header." msgstr "" -#: library/http.client.rst:138 +#: library/http.client.rst:130 msgid "" "This function returns an instance of :class:`http.client.HTTPMessage` that " "holds the header fields, but no payload (the same as :attr:`HTTPResponse." @@ -185,7 +178,7 @@ msgid "" "returning, the file pointer *fp* is ready to read the HTTP body." msgstr "" -#: library/http.client.rst:145 +#: library/http.client.rst:137 msgid "" ":meth:`parse_headers` does not parse the start-line of a HTTP message; it " "only parses the ``Name: value`` lines. The file has to be ready to read " @@ -193,44 +186,44 @@ msgid "" "calling the function." msgstr "" -#: library/http.client.rst:150 +#: library/http.client.rst:142 msgid "The following exceptions are raised as appropriate:" msgstr "" -#: library/http.client.rst:155 +#: library/http.client.rst:147 msgid "" "The base class of the other exceptions in this module. It is a subclass of :" "exc:`Exception`." msgstr "" -#: library/http.client.rst:172 library/http.client.rst:182 -#: library/http.client.rst:192 +#: library/http.client.rst:164 library/http.client.rst:174 +#: library/http.client.rst:184 msgid "A subclass of :exc:`HTTPException`." msgstr "" -#: library/http.client.rst:166 +#: library/http.client.rst:158 msgid "" "A subclass of :exc:`HTTPException`, raised if a port is given and is either " "non-numeric or empty." msgstr "" -#: library/http.client.rst:202 library/http.client.rst:207 +#: library/http.client.rst:194 library/http.client.rst:199 msgid "A subclass of :exc:`ImproperConnectionState`." msgstr "" -#: library/http.client.rst:212 +#: library/http.client.rst:204 msgid "" "A subclass of :exc:`HTTPException`. Raised if a server responds with a HTTP " "status code that we don't understand." msgstr "" -#: library/http.client.rst:218 +#: library/http.client.rst:210 msgid "" "A subclass of :exc:`HTTPException`. Raised if an excessively long line is " "received in the HTTP protocol from the server." msgstr "" -#: library/http.client.rst:224 +#: library/http.client.rst:216 msgid "" "A subclass of :exc:`ConnectionResetError` and :exc:`BadStatusLine`. Raised " "by :meth:`HTTPConnection.getresponse` when the attempt to read the response " @@ -238,46 +231,46 @@ msgid "" "has closed the connection." msgstr "" -#: library/http.client.rst:229 +#: library/http.client.rst:221 msgid "Previously, :exc:`BadStatusLine`\\ ``('')`` was raised." msgstr "" -#: library/http.client.rst:233 +#: library/http.client.rst:225 msgid "The constants defined in this module are:" msgstr "" -#: library/http.client.rst:237 +#: library/http.client.rst:229 msgid "The default port for the HTTP protocol (always ``80``)." msgstr "" -#: library/http.client.rst:241 +#: library/http.client.rst:233 msgid "The default port for the HTTPS protocol (always ``443``)." msgstr "" -#: library/http.client.rst:245 +#: library/http.client.rst:237 msgid "This dictionary maps the HTTP 1.1 status codes to the W3C names." msgstr "" -#: library/http.client.rst:247 +#: library/http.client.rst:239 msgid "" "Example: ``http.client.responses[http.client.NOT_FOUND]`` is ``'Not Found'``." msgstr "" -#: library/http.client.rst:249 +#: library/http.client.rst:241 msgid "" "See :ref:`http-status-codes` for a list of HTTP status codes that are " "available in this module as constants." msgstr "" -#: library/http.client.rst:256 +#: library/http.client.rst:248 msgid "HTTPConnection Objects" msgstr "" -#: library/http.client.rst:258 +#: library/http.client.rst:250 msgid ":class:`HTTPConnection` instances have the following methods:" msgstr "" -#: library/http.client.rst:264 +#: library/http.client.rst:256 msgid "" "This will send a request to the server using the HTTP request method " "*method* and the request URI *url*. The provided *url* must be an absolute " @@ -286,7 +279,7 @@ msgid "" "methods)." msgstr "" -#: library/http.client.rst:270 +#: library/http.client.rst:262 msgid "" "If *body* is specified, the specified data is sent after the headers are " "finished. It may be a :class:`str`, a :term:`bytes-like object`, an open :" @@ -301,7 +294,7 @@ msgid "" "iterable is exhausted." msgstr "" -#: library/http.client.rst:282 +#: library/http.client.rst:274 msgid "" "The *headers* argument should be a mapping of extra HTTP headers to send " "with the request. A :rfc:`Host header <2616#section-14.23>` must be provided " @@ -310,7 +303,7 @@ msgid "" "methods)." msgstr "" -#: library/http.client.rst:288 +#: library/http.client.rst:280 msgid "" "If *headers* contains neither Content-Length nor Transfer-Encoding, but " "there is a request body, one of those header fields will be added " @@ -323,7 +316,7 @@ msgid "" "Length." msgstr "" -#: library/http.client.rst:300 +#: library/http.client.rst:292 msgid "" "The *encode_chunked* argument is only relevant if Transfer-Encoding is " "specified in *headers*. If *encode_chunked* is ``False``, the " @@ -331,12 +324,12 @@ msgid "" "code. If it is ``True``, the body will be chunk-encoded." msgstr "" -#: library/http.client.rst:305 +#: library/http.client.rst:297 msgid "" "For example, to perform a ``GET`` request to ``https://docs.python.org/3/``::" msgstr "" -#: library/http.client.rst:316 +#: library/http.client.rst:308 msgid "" "Chunked transfer encoding has been added to the HTTP protocol version 1.1. " "Unless the HTTP server is known to handle HTTP 1.1, the caller must either " @@ -344,11 +337,11 @@ msgid "" "that is not also a file as the body representation." msgstr "" -#: library/http.client.rst:322 +#: library/http.client.rst:314 msgid "*body* can now be an iterable." msgstr "" -#: library/http.client.rst:325 +#: library/http.client.rst:317 msgid "" "If neither Content-Length nor Transfer-Encoding are set in *headers*, file " "and iterable *body* objects are now chunk-encoded. The *encode_chunked* " @@ -356,26 +349,26 @@ msgid "" "file objects." msgstr "" -#: library/http.client.rst:334 +#: library/http.client.rst:326 msgid "" "Should be called after a request is sent to get the response from the " "server. Returns an :class:`HTTPResponse` instance." msgstr "" -#: library/http.client.rst:339 +#: library/http.client.rst:331 msgid "" "Note that you must have read the whole response before you can send a new " "request to the server." msgstr "" -#: library/http.client.rst:342 +#: library/http.client.rst:334 msgid "" "If a :exc:`ConnectionError` or subclass is raised, the :class:" "`HTTPConnection` object will be ready to reconnect when a new request is " "sent." msgstr "" -#: library/http.client.rst:350 +#: library/http.client.rst:342 msgid "" "Set the debugging level. The default debug level is ``0``, meaning no " "debugging output is printed. Any value greater than ``0`` will cause all " @@ -383,26 +376,36 @@ msgid "" "is passed to any new :class:`HTTPResponse` objects that are created." msgstr "" -#: library/http.client.rst:360 +#: library/http.client.rst:352 msgid "" "Set the host and the port for HTTP Connect Tunnelling. This allows running " "the connection through a proxy server." msgstr "" -#: library/http.client.rst:363 +#: library/http.client.rst:355 msgid "" -"The host and port arguments specify the endpoint of the tunneled connection " -"(i.e. the address included in the CONNECT request, *not* the address of the " -"proxy server)." +"The *host* and *port* arguments specify the endpoint of the tunneled " +"connection (i.e. the address included in the CONNECT request, *not* the " +"address of the proxy server)." msgstr "" -#: library/http.client.rst:367 +#: library/http.client.rst:359 msgid "" -"The headers argument should be a mapping of extra HTTP headers to send with " -"the CONNECT request." +"The *headers* argument should be a mapping of extra HTTP headers to send " +"with the CONNECT request." msgstr "" -#: library/http.client.rst:370 +#: library/http.client.rst:362 +msgid "" +"As HTTP/1.1 is used for HTTP CONNECT tunnelling request, `as per the RFC " +"`_, a HTTP " +"``Host:`` header must be provided, matching the authority-form of the " +"request target provided as the destination for the CONNECT request. If a " +"HTTP ``Host:`` header is not provided via the headers argument, one is " +"generated and transmitted automatically." +msgstr "" + +#: library/http.client.rst:369 msgid "" "For example, to tunnel through a HTTPS proxy server running locally on port " "8080, we would pass the address of the proxy to the :class:`HTTPSConnection` " @@ -410,34 +413,52 @@ msgid "" "the :meth:`~HTTPConnection.set_tunnel` method::" msgstr "" -#: library/http.client.rst:385 +#: library/http.client.rst:381 +msgid "" +"HTTP CONNECT tunnelling requests use protocol HTTP/1.1, upgraded from " +"protocol HTTP/1.0. ``Host:`` HTTP headers are mandatory for HTTP/1.1, so one " +"will be automatically generated and transmitted if not provided in the " +"headers argument." +msgstr "" + +#: library/http.client.rst:390 +msgid "" +"Returns a dictionary with the headers of the response received from the " +"proxy server to the CONNECT request." +msgstr "" + +#: library/http.client.rst:393 +msgid "If the CONNECT request was not sent, the method returns ``None``." +msgstr "" + +#: library/http.client.rst:400 msgid "" "Connect to the server specified when the object was created. By default, " "this is called automatically when making a request if the client does not " "already have a connection." msgstr "" -#: library/http.client.rst:400 +#: library/http.client.rst:415 msgid "" "Raises an :ref:`auditing event ` ``http.client.connect`` with " "arguments ``self``, ``host``, ``port``." msgstr "" -#: library/http.client.rst:394 +#: library/http.client.rst:409 msgid "Close the connection to the server." msgstr "" -#: library/http.client.rst:399 +#: library/http.client.rst:414 msgid "Buffer size in bytes for sending a file-like message body." msgstr "" -#: library/http.client.rst:404 +#: library/http.client.rst:419 msgid "" "As an alternative to using the :meth:`request` method described above, you " "can also send your request step by step, by using the four functions below." msgstr "" -#: library/http.client.rst:411 +#: library/http.client.rst:426 msgid "" "This should be the first call after the connection to the server has been " "made. It sends a line to the server consisting of the *method* string, the " @@ -447,7 +468,7 @@ msgid "" "with non-False values." msgstr "" -#: library/http.client.rst:421 +#: library/http.client.rst:436 msgid "" "Send an :rfc:`822`\\ -style header to the server. It sends a line to the " "server consisting of the header, a colon and a space, and the first " @@ -455,14 +476,14 @@ msgid "" "consisting of a tab and an argument." msgstr "" -#: library/http.client.rst:429 +#: library/http.client.rst:444 msgid "" "Send a blank line to the server, signalling the end of the headers. The " "optional *message_body* argument can be used to pass a message body " "associated with the request." msgstr "" -#: library/http.client.rst:433 +#: library/http.client.rst:448 msgid "" "If *encode_chunked* is ``True``, the result of each iteration of " "*message_body* will be chunk-encoded as specified in :rfc:`7230`, Section " @@ -475,7 +496,7 @@ msgid "" "the chunk-encoded data immediately after *message_body*." msgstr "" -#: library/http.client.rst:444 +#: library/http.client.rst:459 msgid "" "Due to the chunked encoding specification, empty chunks yielded by an " "iterator body will be ignored by the chunk-encoder. This is to avoid " @@ -483,50 +504,50 @@ msgid "" "malformed encoding." msgstr "" -#: library/http.client.rst:449 +#: library/http.client.rst:464 msgid "Chunked encoding support. The *encode_chunked* parameter was added." msgstr "" -#: library/http.client.rst:456 +#: library/http.client.rst:471 msgid "" "Send data to the server. This should be used directly only after the :meth:" "`endheaders` method has been called and before :meth:`getresponse` is called." msgstr "" -#: library/http.client.rst:471 +#: library/http.client.rst:486 msgid "" "Raises an :ref:`auditing event ` ``http.client.send`` with " "arguments ``self``, ``data``." msgstr "" -#: library/http.client.rst:466 +#: library/http.client.rst:481 msgid "HTTPResponse Objects" msgstr "" -#: library/http.client.rst:468 +#: library/http.client.rst:483 msgid "" "An :class:`HTTPResponse` instance wraps the HTTP response from the server. " "It provides access to the request headers and the entity body. The response " "is an iterable object and can be used in a with statement." msgstr "" -#: library/http.client.rst:473 +#: library/http.client.rst:488 msgid "" "The :class:`io.BufferedIOBase` interface is now implemented and all of its " "reader operations are supported." msgstr "" -#: library/http.client.rst:480 +#: library/http.client.rst:495 msgid "Reads and returns the response body, or up to the next *amt* bytes." msgstr "" -#: library/http.client.rst:484 +#: library/http.client.rst:499 msgid "" "Reads up to the next len(b) bytes of the response body into the buffer *b*. " "Returns the number of bytes read." msgstr "" -#: library/http.client.rst:491 +#: library/http.client.rst:506 msgid "" "Return the value of the header *name*, or *default* if there is no header " "matching *name*. If there is more than one header with the name *name*, " @@ -534,87 +555,87 @@ msgid "" "than a single string, its elements are similarly returned joined by commas." msgstr "" -#: library/http.client.rst:498 +#: library/http.client.rst:513 msgid "Return a list of (header, value) tuples." msgstr "" -#: library/http.client.rst:502 +#: library/http.client.rst:517 msgid "Return the ``fileno`` of the underlying socket." msgstr "" -#: library/http.client.rst:506 +#: library/http.client.rst:521 msgid "" "A :class:`http.client.HTTPMessage` instance containing the response " "headers. :class:`http.client.HTTPMessage` is a subclass of :class:`email." "message.Message`." msgstr "" -#: library/http.client.rst:512 +#: library/http.client.rst:527 msgid "" "HTTP protocol version used by server. 10 for HTTP/1.0, 11 for HTTP/1.1." msgstr "" -#: library/http.client.rst:516 +#: library/http.client.rst:531 msgid "" "URL of the resource retrieved, commonly used to determine if a redirect was " "followed." msgstr "" -#: library/http.client.rst:520 +#: library/http.client.rst:535 msgid "" "Headers of the response in the form of an :class:`email.message." "EmailMessage` instance." msgstr "" -#: library/http.client.rst:524 +#: library/http.client.rst:539 msgid "Status code returned by server." msgstr "" -#: library/http.client.rst:528 +#: library/http.client.rst:543 msgid "Reason phrase returned by server." msgstr "" -#: library/http.client.rst:532 +#: library/http.client.rst:547 msgid "" "A debugging hook. If :attr:`debuglevel` is greater than zero, messages will " "be printed to stdout as the response is read and parsed." msgstr "" -#: library/http.client.rst:537 +#: library/http.client.rst:552 msgid "Is ``True`` if the stream is closed." msgstr "" -#: library/http.client.rst:541 +#: library/http.client.rst:556 msgid "Deprecated in favor of :attr:`~HTTPResponse.url`." msgstr "" -#: library/http.client.rst:546 +#: library/http.client.rst:561 msgid "Deprecated in favor of :attr:`~HTTPResponse.headers`." msgstr "" -#: library/http.client.rst:551 +#: library/http.client.rst:566 msgid "Deprecated in favor of :attr:`~HTTPResponse.status`." msgstr "" -#: library/http.client.rst:555 +#: library/http.client.rst:570 msgid "Examples" msgstr "" -#: library/http.client.rst:557 +#: library/http.client.rst:572 msgid "Here is an example session that uses the ``GET`` method::" msgstr "" -#: library/http.client.rst:582 +#: library/http.client.rst:597 msgid "" "Here is an example session that uses the ``HEAD`` method. Note that the " "``HEAD`` method never returns any data. ::" msgstr "" -#: library/http.client.rst:597 +#: library/http.client.rst:612 msgid "Here is an example session that uses the ``POST`` method::" msgstr "" -#: library/http.client.rst:613 +#: library/http.client.rst:628 msgid "" "Client side HTTP ``PUT`` requests are very similar to ``POST`` requests. The " "difference lies only on the server side where HTTP servers will allow " @@ -624,11 +645,11 @@ msgid "" "``PUT`` method::" msgstr "" -#: library/http.client.rst:634 +#: library/http.client.rst:649 msgid "HTTPMessage Objects" msgstr "" -#: library/http.client.rst:636 +#: library/http.client.rst:651 msgid "" "An :class:`http.client.HTTPMessage` instance holds the headers from an HTTP " "response. It is implemented using the :class:`email.message.Message` class." diff --git a/library/http.po b/library/http.po index a12f991d8..f51c19f00 100644 --- a/library/http.po +++ b/library/http.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -64,7 +64,7 @@ msgid "" "reason phrases and long descriptions written in English." msgstr "" -#: library/http.rst:146 +#: library/http.rst:157 library/http.rst:171 msgid "Usage::" msgstr "" @@ -83,11 +83,11 @@ msgstr "" msgid "Code" msgstr "" -#: library/http.rst:179 +#: library/http.rst:204 msgid "Enum Name" msgstr "" -#: library/http.rst:179 +#: library/http.rst:148 library/http.rst:204 msgid "Details" msgstr "" @@ -851,95 +851,156 @@ msgid "" "codes." msgstr "" -#: library/http.rst:144 +#: library/http.rst:141 +msgid "HTTP status category" +msgstr "" + +#: library/http.rst:145 +msgid "" +"The enum values have several properties to indicate the HTTP status category:" +msgstr "" + +#: library/http.rst:148 +msgid "Property" +msgstr "" + +#: library/http.rst:148 +msgid "Indicates that" +msgstr "" + +#: library/http.rst:150 +msgid "``is_informational``" +msgstr "" + +#: library/http.rst:150 +msgid "``100 <= status <= 199``" +msgstr "" + +#: library/http.rst:151 library/http.rst:153 library/http.rst:154 +msgid "HTTP/1.1 :rfc:`7231`, Section 6" +msgstr "" + +#: library/http.rst:151 +msgid "``is_success``" +msgstr "" + +#: library/http.rst:151 +msgid "``200 <= status <= 299``" +msgstr "" + +#: library/http.rst:152 +msgid "``is_redirection``" +msgstr "" + +#: library/http.rst:152 +msgid "``300 <= status <= 399``" +msgstr "" + +#: library/http.rst:153 +msgid "``is_client_error``" +msgstr "" + +#: library/http.rst:153 +msgid "``400 <= status <= 499``" +msgstr "" + +#: library/http.rst:154 +msgid "``is_server_error``" +msgstr "" + +#: library/http.rst:154 +msgid "``500 <= status <= 599``" +msgstr "" + +#: library/http.rst:169 msgid "" "A subclass of :class:`enum.StrEnum` that defines a set of HTTP methods and " "descriptions written in English." msgstr "" -#: library/http.rst:172 +#: library/http.rst:197 msgid "HTTP methods" msgstr "" -#: library/http.rst:174 +#: library/http.rst:199 msgid "" "Supported, `IANA-registered methods `_ available in :class:`http.HTTPMethod` are:" msgstr "" -#: library/http.rst:179 +#: library/http.rst:204 msgid "Method" msgstr "" -#: library/http.rst:181 +#: library/http.rst:206 msgid "``GET``" msgstr "" -#: library/http.rst:181 +#: library/http.rst:206 msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.1" msgstr "" -#: library/http.rst:182 +#: library/http.rst:207 msgid "``HEAD``" msgstr "" -#: library/http.rst:182 +#: library/http.rst:207 msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.2" msgstr "" -#: library/http.rst:183 +#: library/http.rst:208 msgid "``POST``" msgstr "" -#: library/http.rst:183 +#: library/http.rst:208 msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.3" msgstr "" -#: library/http.rst:184 +#: library/http.rst:209 msgid "``PUT``" msgstr "" -#: library/http.rst:184 +#: library/http.rst:209 msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.4" msgstr "" -#: library/http.rst:185 +#: library/http.rst:210 msgid "``DELETE``" msgstr "" -#: library/http.rst:185 +#: library/http.rst:210 msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.5" msgstr "" -#: library/http.rst:186 +#: library/http.rst:211 msgid "``CONNECT``" msgstr "" -#: library/http.rst:186 +#: library/http.rst:211 msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.6" msgstr "" -#: library/http.rst:187 +#: library/http.rst:212 msgid "``OPTIONS``" msgstr "" -#: library/http.rst:187 +#: library/http.rst:212 msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.7" msgstr "" -#: library/http.rst:188 +#: library/http.rst:213 msgid "``TRACE``" msgstr "" -#: library/http.rst:188 +#: library/http.rst:213 msgid "HTTP/1.1 :rfc:`7231`, Section 4.3.8" msgstr "" -#: library/http.rst:189 +#: library/http.rst:214 msgid "``PATCH``" msgstr "" -#: library/http.rst:189 +#: library/http.rst:214 msgid "HTTP/1.1 :rfc:`5789`" msgstr "" diff --git a/library/http.server.po b/library/http.server.po index 2cef98fda..8afd5c66c 100644 --- a/library/http.server.po +++ b/library/http.server.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -496,20 +496,27 @@ msgid "" "the current directory::" msgstr "" -#: library/http.server.rst:418 +#: library/http.server.rst:417 +msgid "" +":class:`SimpleHTTPRequestHandler` can also be subclassed to enhance " +"behavior, such as using different index file names by overriding the class " +"attribute :attr:`index_pages`." +msgstr "" + +#: library/http.server.rst:423 msgid "" ":mod:`http.server` can also be invoked directly using the :option:`-m` " "switch of the interpreter. Similar to the previous example, this serves " "files relative to the current directory::" msgstr "" -#: library/http.server.rst:424 +#: library/http.server.rst:429 msgid "" "The server listens to port 8000 by default. The default can be overridden by " "passing the desired port number as an argument::" msgstr "" -#: library/http.server.rst:429 +#: library/http.server.rst:434 msgid "" "By default, the server binds itself to all interfaces. The option ``-b/--" "bind`` specifies a specific address to which it should bind. Both IPv4 and " @@ -517,51 +524,51 @@ msgid "" "server to bind to localhost only::" msgstr "" -#: library/http.server.rst:436 +#: library/http.server.rst:441 msgid "``--bind`` argument was introduced." msgstr "" -#: library/http.server.rst:439 +#: library/http.server.rst:444 msgid "``--bind`` argument enhanced to support IPv6" msgstr "" -#: library/http.server.rst:442 +#: library/http.server.rst:447 msgid "" "By default, the server uses the current directory. The option ``-d/--" "directory`` specifies a directory to which it should serve the files. For " "example, the following command uses a specific directory::" msgstr "" -#: library/http.server.rst:448 +#: library/http.server.rst:453 msgid "``--directory`` argument was introduced." msgstr "" -#: library/http.server.rst:451 +#: library/http.server.rst:456 msgid "" "By default, the server is conformant to HTTP/1.0. The option ``-p/--" "protocol`` specifies the HTTP version to which the server is conformant. For " "example, the following command runs an HTTP/1.1 conformant server::" msgstr "" -#: library/http.server.rst:457 +#: library/http.server.rst:462 msgid "``--protocol`` argument was introduced." msgstr "" -#: library/http.server.rst:462 +#: library/http.server.rst:467 msgid "" "This class is used to serve either files or output of CGI scripts from the " "current directory and below. Note that mapping HTTP hierarchic structure to " "local directory structure is exactly as in :class:`SimpleHTTPRequestHandler`." msgstr "" -#: library/http.server.rst:468 +#: library/http.server.rst:473 msgid "" "CGI scripts run by the :class:`CGIHTTPRequestHandler` class cannot execute " "redirects (HTTP code 302), because code 200 (script output follows) is sent " "prior to execution of the CGI script. This pre-empts the status code." msgstr "" -#: library/http.server.rst:473 +#: library/http.server.rst:478 msgid "" "The class will however, run the CGI script, instead of serving it as a file, " "if it guesses it to be a CGI script. Only directory-based CGI are used --- " @@ -569,58 +576,58 @@ msgid "" "denoting CGI scripts." msgstr "" -#: library/http.server.rst:478 +#: library/http.server.rst:483 msgid "" "The :func:`do_GET` and :func:`do_HEAD` functions are modified to run CGI " "scripts and serve the output, instead of serving files, if the request leads " "to somewhere below the ``cgi_directories`` path." msgstr "" -#: library/http.server.rst:482 +#: library/http.server.rst:487 msgid "The :class:`CGIHTTPRequestHandler` defines the following data member:" msgstr "" -#: library/http.server.rst:486 +#: library/http.server.rst:491 msgid "" "This defaults to ``['/cgi-bin', '/htbin']`` and describes directories to " "treat as containing CGI scripts." msgstr "" -#: library/http.server.rst:489 +#: library/http.server.rst:494 msgid "The :class:`CGIHTTPRequestHandler` defines the following method:" msgstr "" -#: library/http.server.rst:493 +#: library/http.server.rst:498 msgid "" "This method serves the ``'POST'`` request type, only allowed for CGI " "scripts. Error 501, \"Can only POST to CGI scripts\", is output when trying " "to POST to a non-CGI url." msgstr "" -#: library/http.server.rst:497 +#: library/http.server.rst:502 msgid "" "Note that CGI scripts will be run with UID of user nobody, for security " "reasons. Problems with the CGI script will be translated to error 403." msgstr "" -#: library/http.server.rst:500 +#: library/http.server.rst:505 msgid "" ":class:`CGIHTTPRequestHandler` can be enabled in the command line by passing " "the ``--cgi`` option::" msgstr "" -#: library/http.server.rst:508 +#: library/http.server.rst:513 msgid "Security Considerations" msgstr "" -#: library/http.server.rst:512 +#: library/http.server.rst:517 msgid "" ":class:`SimpleHTTPRequestHandler` will follow symbolic links when handling " "requests, this makes it possible for files outside of the specified " "directory to be served." msgstr "" -#: library/http.server.rst:516 +#: library/http.server.rst:521 msgid "" "Earlier versions of Python did not scrub control characters from the log " "messages emitted to stderr from ``python -m http.server`` or the default :" @@ -629,7 +636,7 @@ msgid "" "codes to your terminal." msgstr "" -#: library/http.server.rst:522 +#: library/http.server.rst:527 msgid "Control characters are scrubbed in stderr logs." msgstr "" @@ -657,10 +664,10 @@ msgstr "" msgid "httpd" msgstr "" -#: library/http.server.rst:510 +#: library/http.server.rst:515 msgid "http.server" msgstr "" -#: library/http.server.rst:510 +#: library/http.server.rst:515 msgid "security" msgstr "" diff --git a/library/imaplib.po b/library/imaplib.po index 3884b8359..02b5a27ee 100644 --- a/library/imaplib.po +++ b/library/imaplib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -72,7 +72,7 @@ msgstr "" msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: library/imaplib.rst:124 +#: library/imaplib.rst:111 msgid "The optional *timeout* parameter was added." msgstr "" @@ -119,70 +119,58 @@ msgstr "" #: library/imaplib.rst:99 msgid "" -"*keyfile* and *certfile* are a legacy alternative to *ssl_context* - they " -"can point to PEM-formatted private key and certificate chain files for the " -"SSL connection. Note that the *keyfile*/*certfile* parameters are mutually " -"exclusive with *ssl_context*, a :class:`ValueError` is raised if *keyfile*/" -"*certfile* is provided along with *ssl_context*." -msgstr "" - -#: library/imaplib.rst:105 -msgid "" "The optional *timeout* parameter specifies a timeout in seconds for the " "connection attempt. If timeout is not given or is None, the global default " "socket timeout is used." msgstr "" -#: library/imaplib.rst:109 +#: library/imaplib.rst:103 msgid "*ssl_context* parameter was added." msgstr "" -#: library/imaplib.rst:112 +#: library/imaplib.rst:106 msgid "" "The class now supports hostname check with :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: library/imaplib.rst:119 -msgid "" -"*keyfile* and *certfile* are deprecated in favor of *ssl_context*. Please " -"use :meth:`ssl.SSLContext.load_cert_chain` instead, or let :func:`ssl." -"create_default_context` select the system's trusted CA certificates for you." +#: library/imaplib.rst:114 +msgid "The deprecated *keyfile* and *certfile* parameters have been removed." msgstr "" -#: library/imaplib.rst:127 +#: library/imaplib.rst:117 msgid "The second subclass allows for connections created by a child process:" msgstr "" -#: library/imaplib.rst:132 +#: library/imaplib.rst:122 msgid "" "This is a subclass derived from :class:`IMAP4` that connects to the ``stdin/" "stdout`` file descriptors created by passing *command* to ``subprocess." "Popen()``." msgstr "" -#: library/imaplib.rst:137 +#: library/imaplib.rst:127 msgid "The following utility functions are defined:" msgstr "" -#: library/imaplib.rst:142 +#: library/imaplib.rst:132 msgid "" "Parse an IMAP4 ``INTERNALDATE`` string and return corresponding local time. " "The return value is a :class:`time.struct_time` tuple or ``None`` if the " "string has wrong format." msgstr "" -#: library/imaplib.rst:148 +#: library/imaplib.rst:138 msgid "" "Converts an integer into a bytes representation using characters from the " "set [``A`` .. ``P``]." msgstr "" -#: library/imaplib.rst:154 +#: library/imaplib.rst:144 msgid "Converts an IMAP4 ``FLAGS`` response to a tuple of individual flags." msgstr "" -#: library/imaplib.rst:159 +#: library/imaplib.rst:149 msgid "" "Convert *date_time* to an IMAP4 ``INTERNALDATE`` representation. The return " "value is a string in the form: ``\"DD-Mmm-YYYY HH:MM:SS +HHMM\"`` (including " @@ -194,7 +182,7 @@ msgid "" "already be in the correct format." msgstr "" -#: library/imaplib.rst:169 +#: library/imaplib.rst:159 msgid "" "Note that IMAP4 message numbers change as the mailbox changes; in " "particular, after an ``EXPUNGE`` command performs deletions the remaining " @@ -202,30 +190,30 @@ msgid "" "the UID command." msgstr "" -#: library/imaplib.rst:173 +#: library/imaplib.rst:163 msgid "" "At the end of the module, there is a test section that contains a more " "extensive example of usage." msgstr "" -#: library/imaplib.rst:179 +#: library/imaplib.rst:169 msgid "" "Documents describing the protocol, sources for servers implementing it, by " "the University of Washington's IMAP Information Center can all be found at " "(**Source Code**) https://github.com/uw-imap/imap (**Not Maintained**)." msgstr "" -#: library/imaplib.rst:187 +#: library/imaplib.rst:177 msgid "IMAP4 Objects" msgstr "" -#: library/imaplib.rst:189 +#: library/imaplib.rst:179 msgid "" "All IMAP4rev1 commands are represented by methods of the same name, either " -"upper-case or lower-case." +"uppercase or lowercase." msgstr "" -#: library/imaplib.rst:192 +#: library/imaplib.rst:182 msgid "" "All arguments to commands are converted to strings, except for " "``AUTHENTICATE``, and the last argument to ``APPEND`` which is passed as an " @@ -237,7 +225,7 @@ msgid "" "(eg: ``r'(\\Deleted)'``)." msgstr "" -#: library/imaplib.rst:200 +#: library/imaplib.rst:190 msgid "" "Each command returns a tuple: ``(type, [data, ...])`` where *type* is " "usually ``'OK'`` or ``'NO'``, and *data* is either the text from the command " @@ -246,7 +234,7 @@ msgid "" "response, and the second part contains the data (ie: 'literal' value)." msgstr "" -#: library/imaplib.rst:206 +#: library/imaplib.rst:196 msgid "" "The *message_set* options to commands below is a string specifying one or " "more messages to be acted upon. It may be a simple message number " @@ -255,30 +243,30 @@ msgid "" "an asterisk to indicate an infinite upper bound (``'3:*'``)." msgstr "" -#: library/imaplib.rst:212 +#: library/imaplib.rst:202 msgid "An :class:`IMAP4` instance has the following methods:" msgstr "" -#: library/imaplib.rst:217 +#: library/imaplib.rst:207 msgid "Append *message* to named mailbox." msgstr "" -#: library/imaplib.rst:222 +#: library/imaplib.rst:212 msgid "Authenticate command --- requires response processing." msgstr "" -#: library/imaplib.rst:224 +#: library/imaplib.rst:214 msgid "" "*mechanism* specifies which authentication mechanism is to be used - it " "should appear in the instance variable ``capabilities`` in the form " "``AUTH=mechanism``." msgstr "" -#: library/imaplib.rst:227 +#: library/imaplib.rst:217 msgid "*authobject* must be a callable object::" msgstr "" -#: library/imaplib.rst:231 +#: library/imaplib.rst:221 msgid "" "It will be called to process server continuation responses; the *response* " "argument it is passed will be ``bytes``. It should return ``bytes`` *data* " @@ -286,135 +274,135 @@ msgid "" "``None`` if the client abort response ``*`` should be sent instead." msgstr "" -#: library/imaplib.rst:236 +#: library/imaplib.rst:226 msgid "" "string usernames and passwords are now encoded to ``utf-8`` instead of being " "limited to ASCII." msgstr "" -#: library/imaplib.rst:243 +#: library/imaplib.rst:233 msgid "Checkpoint mailbox on server." msgstr "" -#: library/imaplib.rst:248 +#: library/imaplib.rst:238 msgid "" "Close currently selected mailbox. Deleted messages are removed from writable " "mailbox. This is the recommended command before ``LOGOUT``." msgstr "" -#: library/imaplib.rst:254 +#: library/imaplib.rst:244 msgid "Copy *message_set* messages onto end of *new_mailbox*." msgstr "" -#: library/imaplib.rst:259 +#: library/imaplib.rst:249 msgid "Create new mailbox named *mailbox*." msgstr "" -#: library/imaplib.rst:264 +#: library/imaplib.rst:254 msgid "Delete old mailbox named *mailbox*." msgstr "" -#: library/imaplib.rst:269 +#: library/imaplib.rst:259 msgid "Delete the ACLs (remove any rights) set for who on mailbox." msgstr "" -#: library/imaplib.rst:274 +#: library/imaplib.rst:264 msgid "" "Enable *capability* (see :rfc:`5161`). Most capabilities do not need to be " "enabled. Currently only the ``UTF8=ACCEPT`` capability is supported (see :" "RFC:`6855`)." msgstr "" -#: library/imaplib.rst:278 +#: library/imaplib.rst:268 msgid "The :meth:`enable` method itself, and :RFC:`6855` support." msgstr "" -#: library/imaplib.rst:284 +#: library/imaplib.rst:274 msgid "" "Permanently remove deleted items from selected mailbox. Generates an " "``EXPUNGE`` response for each deleted message. Returned data contains a list " "of ``EXPUNGE`` message numbers in order received." msgstr "" -#: library/imaplib.rst:291 +#: library/imaplib.rst:281 msgid "" "Fetch (parts of) messages. *message_parts* should be a string of message " "part names enclosed within parentheses, eg: ``\"(UID BODY[TEXT])\"``. " "Returned data are tuples of message part envelope and data." msgstr "" -#: library/imaplib.rst:298 +#: library/imaplib.rst:288 msgid "" "Get the ``ACL``\\ s for *mailbox*. The method is non-standard, but is " "supported by the ``Cyrus`` server." msgstr "" -#: library/imaplib.rst:304 +#: library/imaplib.rst:294 msgid "" "Retrieve the specified ``ANNOTATION``\\ s for *mailbox*. The method is non-" "standard, but is supported by the ``Cyrus`` server." msgstr "" -#: library/imaplib.rst:310 +#: library/imaplib.rst:300 msgid "" "Get the ``quota`` *root*'s resource usage and limits. This method is part of " "the IMAP4 QUOTA extension defined in rfc2087." msgstr "" -#: library/imaplib.rst:316 +#: library/imaplib.rst:306 msgid "" "Get the list of ``quota`` ``roots`` for the named *mailbox*. This method is " "part of the IMAP4 QUOTA extension defined in rfc2087." msgstr "" -#: library/imaplib.rst:322 +#: library/imaplib.rst:312 msgid "" "List mailbox names in *directory* matching *pattern*. *directory* defaults " "to the top-level mail folder, and *pattern* defaults to match anything. " "Returned data contains a list of ``LIST`` responses." msgstr "" -#: library/imaplib.rst:329 +#: library/imaplib.rst:319 msgid "" "Identify the client using a plaintext password. The *password* will be " "quoted." msgstr "" -#: library/imaplib.rst:334 +#: library/imaplib.rst:324 msgid "" "Force use of ``CRAM-MD5`` authentication when identifying the client to " "protect the password. Will only work if the server ``CAPABILITY`` response " "includes the phrase ``AUTH=CRAM-MD5``." msgstr "" -#: library/imaplib.rst:341 +#: library/imaplib.rst:331 msgid "Shutdown connection to server. Returns server ``BYE`` response." msgstr "" -#: library/imaplib.rst:343 +#: library/imaplib.rst:333 msgid "The method no longer ignores silently arbitrary exceptions." msgstr "" -#: library/imaplib.rst:349 +#: library/imaplib.rst:339 msgid "" "List subscribed mailbox names in directory matching pattern. *directory* " "defaults to the top level directory and *pattern* defaults to match any " "mailbox. Returned data are tuples of message part envelope and data." msgstr "" -#: library/imaplib.rst:356 +#: library/imaplib.rst:346 msgid "Show my ACLs for a mailbox (i.e. the rights that I have on mailbox)." msgstr "" -#: library/imaplib.rst:361 +#: library/imaplib.rst:351 msgid "Returns IMAP namespaces as defined in :rfc:`2342`." msgstr "" -#: library/imaplib.rst:366 +#: library/imaplib.rst:356 msgid "Send ``NOOP`` to server." msgstr "" -#: library/imaplib.rst:371 +#: library/imaplib.rst:361 msgid "" "Opens socket to *port* at *host*. The optional *timeout* parameter specifies " "a timeout in seconds for the connection attempt. If timeout is not given or " @@ -427,54 +415,54 @@ msgid "" "method." msgstr "" -#: library/imaplib.rst:392 +#: library/imaplib.rst:382 msgid "" "Raises an :ref:`auditing event ` ``imaplib.open`` with arguments " "``self``, ``host``, ``port``." msgstr "" -#: library/imaplib.rst:383 +#: library/imaplib.rst:373 msgid "The *timeout* parameter was added." msgstr "" -#: library/imaplib.rst:388 +#: library/imaplib.rst:378 msgid "" "Fetch truncated part of a message. Returned data is a tuple of message part " "envelope and data." msgstr "" -#: library/imaplib.rst:394 +#: library/imaplib.rst:384 msgid "" "Assume authentication as *user*. Allows an authorised administrator to proxy " "into any user's mailbox." msgstr "" -#: library/imaplib.rst:400 +#: library/imaplib.rst:390 msgid "" "Reads *size* bytes from the remote server. You may override this method." msgstr "" -#: library/imaplib.rst:405 +#: library/imaplib.rst:395 msgid "Reads one line from the remote server. You may override this method." msgstr "" -#: library/imaplib.rst:410 +#: library/imaplib.rst:400 msgid "" "Prompt server for an update. Returned data is ``None`` if no new messages, " "else value of ``RECENT`` response." msgstr "" -#: library/imaplib.rst:416 +#: library/imaplib.rst:406 msgid "Rename mailbox named *oldmailbox* to *newmailbox*." msgstr "" -#: library/imaplib.rst:421 +#: library/imaplib.rst:411 msgid "" "Return data for response *code* if received, or ``None``. Returns the given " "code, instead of the usual type." msgstr "" -#: library/imaplib.rst:427 +#: library/imaplib.rst:417 msgid "" "Search mailbox for matching messages. *charset* may be ``None``, in which " "case no ``CHARSET`` will be specified in the request to the server. The " @@ -484,63 +472,63 @@ msgid "" "`enable` command." msgstr "" -#: library/imaplib.rst:434 +#: library/imaplib.rst:424 msgid "Example::" msgstr "" -#: library/imaplib.rst:445 +#: library/imaplib.rst:435 msgid "" "Select a mailbox. Returned data is the count of messages in *mailbox* " "(``EXISTS`` response). The default *mailbox* is ``'INBOX'``. If the " "*readonly* flag is set, modifications to the mailbox are not allowed." msgstr "" -#: library/imaplib.rst:452 +#: library/imaplib.rst:442 msgid "Sends ``data`` to the remote server. You may override this method." msgstr "" -#: library/imaplib.rst:465 +#: library/imaplib.rst:455 msgid "" "Raises an :ref:`auditing event ` ``imaplib.send`` with arguments " "``self``, ``data``." msgstr "" -#: library/imaplib.rst:459 +#: library/imaplib.rst:449 msgid "" "Set an ``ACL`` for *mailbox*. The method is non-standard, but is supported " "by the ``Cyrus`` server." msgstr "" -#: library/imaplib.rst:465 +#: library/imaplib.rst:455 msgid "" "Set ``ANNOTATION``\\ s for *mailbox*. The method is non-standard, but is " "supported by the ``Cyrus`` server." msgstr "" -#: library/imaplib.rst:471 +#: library/imaplib.rst:461 msgid "" "Set the ``quota`` *root*'s resource *limits*. This method is part of the " "IMAP4 QUOTA extension defined in rfc2087." msgstr "" -#: library/imaplib.rst:477 +#: library/imaplib.rst:467 msgid "" "Close connection established in ``open``. This method is implicitly called " "by :meth:`IMAP4.logout`. You may override this method." msgstr "" -#: library/imaplib.rst:483 +#: library/imaplib.rst:473 msgid "Returns socket instance used to connect to server." msgstr "" -#: library/imaplib.rst:488 +#: library/imaplib.rst:478 msgid "" "The ``sort`` command is a variant of ``search`` with sorting semantics for " "the results. Returned data contains a space separated list of matching " "message numbers." msgstr "" -#: library/imaplib.rst:492 +#: library/imaplib.rst:482 msgid "" "Sort has two arguments before the *search_criterion* argument(s); a " "parenthesized list of *sort_criteria*, and the searching *charset*. Note " @@ -552,39 +540,39 @@ msgid "" "searching criteria. It then returns the numbers of matching messages." msgstr "" -#: library/imaplib.rst:572 +#: library/imaplib.rst:562 msgid "This is an ``IMAP4rev1`` extension command." msgstr "" -#: library/imaplib.rst:506 +#: library/imaplib.rst:496 msgid "" "Send a ``STARTTLS`` command. The *ssl_context* argument is optional and " "should be a :class:`ssl.SSLContext` object. This will enable encryption on " "the IMAP connection. Please read :ref:`ssl-security` for best practices." msgstr "" -#: library/imaplib.rst:513 +#: library/imaplib.rst:503 msgid "" "The method now supports hostname check with :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: library/imaplib.rst:521 +#: library/imaplib.rst:511 msgid "Request named status conditions for *mailbox*." msgstr "" -#: library/imaplib.rst:526 +#: library/imaplib.rst:516 msgid "" "Alters flag dispositions for messages in mailbox. *command* is specified by " "section 6.4.6 of :rfc:`2060` as being one of \"FLAGS\", \"+FLAGS\", or \"-" "FLAGS\", optionally with a suffix of \".SILENT\"." msgstr "" -#: library/imaplib.rst:530 +#: library/imaplib.rst:520 msgid "For example, to set the delete flag on all messages::" msgstr "" -#: library/imaplib.rst:539 +#: library/imaplib.rst:529 msgid "" "Creating flags containing ']' (for example: \"[test]\") violates :rfc:`3501` " "(the IMAP protocol). However, imaplib has historically allowed creation of " @@ -596,24 +584,24 @@ msgid "" "are sent from the server, since this improves real-world compatibility." msgstr "" -#: library/imaplib.rst:551 +#: library/imaplib.rst:541 msgid "Subscribe to new mailbox." msgstr "" -#: library/imaplib.rst:556 +#: library/imaplib.rst:546 msgid "" "The ``thread`` command is a variant of ``search`` with threading semantics " "for the results. Returned data contains a space separated list of thread " "members." msgstr "" -#: library/imaplib.rst:559 +#: library/imaplib.rst:549 msgid "" "Thread members consist of zero or more messages numbers, delimited by " "spaces, indicating successive parent and child." msgstr "" -#: library/imaplib.rst:562 +#: library/imaplib.rst:552 msgid "" "Thread has two arguments before the *search_criterion* argument(s); a " "*threading_algorithm*, and the searching *charset*. Note that unlike " @@ -621,12 +609,12 @@ msgid "" "``uid thread`` command which corresponds to ``thread`` the way that ``uid " "search`` corresponds to ``search``. The ``thread`` command first searches " "the mailbox for messages that match the given searching criteria using the " -"charset argument for the interpretation of strings in the searching " +"*charset* argument for the interpretation of strings in the searching " "criteria. It then returns the matching messages threaded according to the " "specified threading algorithm." msgstr "" -#: library/imaplib.rst:577 +#: library/imaplib.rst:567 msgid "" "Execute command args with messages identified by UID, rather than message " "number. Returns response appropriate to command. At least one argument " @@ -634,11 +622,11 @@ msgid "" "an exception will be raised." msgstr "" -#: library/imaplib.rst:585 +#: library/imaplib.rst:575 msgid "Unsubscribe from old mailbox." msgstr "" -#: library/imaplib.rst:589 +#: library/imaplib.rst:579 msgid "" ":meth:`imaplib.IMAP4.unselect` frees server's resources associated with the " "selected mailbox and returns the server to the authenticated state. This " @@ -646,40 +634,40 @@ msgid "" "that no messages are permanently removed from the currently selected mailbox." msgstr "" -#: library/imaplib.rst:599 +#: library/imaplib.rst:589 msgid "" "Allow simple extension commands notified by server in ``CAPABILITY`` " "response." msgstr "" -#: library/imaplib.rst:602 +#: library/imaplib.rst:592 msgid "The following attributes are defined on instances of :class:`IMAP4`:" msgstr "" -#: library/imaplib.rst:606 +#: library/imaplib.rst:596 msgid "" "The most recent supported protocol in the ``CAPABILITY`` response from the " "server." msgstr "" -#: library/imaplib.rst:612 +#: library/imaplib.rst:602 msgid "" "Integer value to control debugging output. The initialize value is taken " "from the module variable ``Debug``. Values greater than three trace each " "command." msgstr "" -#: library/imaplib.rst:618 +#: library/imaplib.rst:608 msgid "" "Boolean value that is normally ``False``, but is set to ``True`` if an :meth:" "`enable` command is successfully issued for the ``UTF8=ACCEPT`` capability." msgstr "" -#: library/imaplib.rst:628 +#: library/imaplib.rst:618 msgid "IMAP4 Example" msgstr "" -#: library/imaplib.rst:630 +#: library/imaplib.rst:620 msgid "" "Here is a minimal example (without error checking) that opens a mailbox and " "retrieves and prints all messages::" diff --git a/library/imghdr.po b/library/imghdr.po index 60e075ba4..774eca113 100644 --- a/library/imghdr.po +++ b/library/imghdr.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -42,9 +42,9 @@ msgstr "" #: library/imghdr.rst:24 msgid "" -"Tests the image data contained in the file named by *file*, and returns a " -"string describing the image type. If optional *h* is provided, the *file* " -"argument is ignored and *h* is assumed to contain the byte stream to test." +"Test the image data contained in the file named *file* and return a string " +"describing the image type. If *h* is provided, the *file* argument is " +"ignored and *h* is assumed to contain the byte stream to test." msgstr "" #: library/imghdr.rst:28 diff --git a/library/imp.po b/library/imp.po deleted file mode 100644 index f16bdcbb1..000000000 --- a/library/imp.po +++ /dev/null @@ -1,474 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: library/imp.rst:2 -msgid ":mod:`imp` --- Access the :ref:`import ` internals" -msgstr "" - -#: library/imp.rst:8 -msgid "**Source code:** :source:`Lib/imp.py`" -msgstr "" - -#: library/imp.rst:12 -msgid "The :mod:`imp` module is deprecated in favor of :mod:`importlib`." -msgstr "" - -#: library/imp.rst:17 -msgid "" -"This module provides an interface to the mechanisms used to implement the :" -"keyword:`import` statement. It defines the following constants and " -"functions:" -msgstr "" - -#: library/imp.rst:25 -msgid "" -"Return the magic string value used to recognize byte-compiled code files (:" -"file:`.pyc` files). (This value may be different for each Python version.)" -msgstr "" - -#: library/imp.rst:28 -msgid "Use :attr:`importlib.util.MAGIC_NUMBER` instead." -msgstr "" - -#: library/imp.rst:34 -msgid "" -"Return a list of 3-element tuples, each describing a particular type of " -"module. Each triple has the form ``(suffix, mode, type)``, where *suffix* is " -"a string to be appended to the module name to form the filename to search " -"for, *mode* is the mode string to pass to the built-in :func:`open` function " -"to open the file (this can be ``'r'`` for text files or ``'rb'`` for binary " -"files), and *type* is the file type, which has one of the values :const:" -"`PY_SOURCE`, :const:`PY_COMPILED`, or :const:`C_EXTENSION`, described below." -msgstr "" - -#: library/imp.rst:43 -msgid "Use the constants defined on :mod:`importlib.machinery` instead." -msgstr "" - -#: library/imp.rst:49 -msgid "" -"Try to find the module *name*. If *path* is omitted or ``None``, the list " -"of directory names given by ``sys.path`` is searched, but first a few " -"special places are searched: the function tries to find a built-in module " -"with the given name (:const:`C_BUILTIN`), then a frozen module (:const:" -"`PY_FROZEN`), and on some systems some other places are looked in as well " -"(on Windows, it looks in the registry which may point to a specific file)." -msgstr "" - -#: library/imp.rst:56 -msgid "" -"Otherwise, *path* must be a list of directory names; each directory is " -"searched for files with any of the suffixes returned by :func:`get_suffixes` " -"above. Invalid names in the list are silently ignored (but all list items " -"must be strings)." -msgstr "" - -#: library/imp.rst:61 -msgid "" -"If search is successful, the return value is a 3-element tuple ``(file, " -"pathname, description)``:" -msgstr "" - -#: library/imp.rst:64 -msgid "" -"*file* is an open :term:`file object` positioned at the beginning, " -"*pathname* is the pathname of the file found, and *description* is a 3-" -"element tuple as contained in the list returned by :func:`get_suffixes` " -"describing the kind of module found." -msgstr "" - -#: library/imp.rst:69 -msgid "" -"If the module is built-in or frozen then *file* and *pathname* are both " -"``None`` and the *description* tuple contains empty strings for its suffix " -"and mode; the module type is indicated as given in parentheses above. If " -"the search is unsuccessful, :exc:`ImportError` is raised. Other exceptions " -"indicate problems with the arguments or environment." -msgstr "" - -#: library/imp.rst:75 -msgid "" -"If the module is a package, *file* is ``None``, *pathname* is the package " -"path and the last item in the *description* tuple is :const:`PKG_DIRECTORY`." -msgstr "" - -#: library/imp.rst:78 -msgid "" -"This function does not handle hierarchical module names (names containing " -"dots). In order to find *P.M*, that is, submodule *M* of package *P*, use :" -"func:`find_module` and :func:`load_module` to find and load package *P*, and " -"then use :func:`find_module` with the *path* argument set to ``P.__path__``. " -"When *P* itself has a dotted name, apply this recipe recursively." -msgstr "" - -#: library/imp.rst:84 -msgid "" -"Use :func:`importlib.util.find_spec` instead unless Python 3.3 compatibility " -"is required, in which case use :func:`importlib.find_loader`. For example " -"usage of the former case, see the :ref:`importlib-examples` section of the :" -"mod:`importlib` documentation." -msgstr "" - -#: library/imp.rst:94 -msgid "" -"Load a module that was previously found by :func:`find_module` (or by an " -"otherwise conducted search yielding compatible results). This function does " -"more than importing the module: if the module was already imported, it will " -"reload the module! The *name* argument indicates the full module name " -"(including the package name, if this is a submodule of a package). The " -"*file* argument is an open file, and *pathname* is the corresponding file " -"name; these can be ``None`` and ``''``, respectively, when the module is a " -"package or not being loaded from a file. The *description* argument is a " -"tuple, as would be returned by :func:`get_suffixes`, describing what kind of " -"module must be loaded." -msgstr "" - -#: library/imp.rst:105 -msgid "" -"If the load is successful, the return value is the module object; otherwise, " -"an exception (usually :exc:`ImportError`) is raised." -msgstr "" - -#: library/imp.rst:108 -msgid "" -"**Important:** the caller is responsible for closing the *file* argument, if " -"it was not ``None``, even when an exception is raised. This is best done " -"using a :keyword:`try` ... :keyword:`finally` statement." -msgstr "" - -#: library/imp.rst:112 -msgid "" -"If previously used in conjunction with :func:`imp.find_module` then consider " -"using :func:`importlib.import_module`, otherwise use the loader returned by " -"the replacement you chose for :func:`imp.find_module`. If you called :func:" -"`imp.load_module` and related functions directly with file path arguments " -"then use a combination of :func:`importlib.util.spec_from_file_location` " -"and :func:`importlib.util.module_from_spec`. See the :ref:`importlib-" -"examples` section of the :mod:`importlib` documentation for details of the " -"various approaches." -msgstr "" - -#: library/imp.rst:126 -msgid "" -"Return a new empty module object called *name*. This object is *not* " -"inserted in ``sys.modules``." -msgstr "" - -#: library/imp.rst:129 -msgid "Use :func:`importlib.util.module_from_spec` instead." -msgstr "" - -#: library/imp.rst:135 -msgid "" -"Reload a previously imported *module*. The argument must be a module " -"object, so it must have been successfully imported before. This is useful " -"if you have edited the module source file using an external editor and want " -"to try out the new version without leaving the Python interpreter. The " -"return value is the module object (the same as the *module* argument)." -msgstr "" - -#: library/imp.rst:141 -msgid "When ``reload(module)`` is executed:" -msgstr "" - -#: library/imp.rst:143 -msgid "" -"Python modules' code is recompiled and the module-level code reexecuted, " -"defining a new set of objects which are bound to names in the module's " -"dictionary. The ``init`` function of extension modules is not called a " -"second time." -msgstr "" - -#: library/imp.rst:148 -msgid "" -"As with all other objects in Python the old objects are only reclaimed after " -"their reference counts drop to zero." -msgstr "" - -#: library/imp.rst:151 -msgid "" -"The names in the module namespace are updated to point to any new or changed " -"objects." -msgstr "" - -#: library/imp.rst:154 -msgid "" -"Other references to the old objects (such as names external to the module) " -"are not rebound to refer to the new objects and must be updated in each " -"namespace where they occur if that is desired." -msgstr "" - -#: library/imp.rst:158 -msgid "There are a number of other caveats:" -msgstr "" - -#: library/imp.rst:160 -msgid "" -"When a module is reloaded, its dictionary (containing the module's global " -"variables) is retained. Redefinitions of names will override the old " -"definitions, so this is generally not a problem. If the new version of a " -"module does not define a name that was defined by the old version, the old " -"definition remains. This feature can be used to the module's advantage if " -"it maintains a global table or cache of objects --- with a :keyword:`try` " -"statement it can test for the table's presence and skip its initialization " -"if desired::" -msgstr "" - -#: library/imp.rst:173 -msgid "" -"It is legal though generally not very useful to reload built-in or " -"dynamically loaded modules, except for :mod:`sys`, :mod:`__main__` and :mod:" -"`builtins`. In many cases, however, extension modules are not designed to be " -"initialized more than once, and may fail in arbitrary ways when reloaded." -msgstr "" - -#: library/imp.rst:178 -msgid "" -"If a module imports objects from another module using :keyword:`from` ... :" -"keyword:`import` ..., calling :func:`reload` for the other module does not " -"redefine the objects imported from it --- one way around this is to re-" -"execute the :keyword:`!from` statement, another is to use :keyword:`!import` " -"and qualified names (*module*.*name*) instead." -msgstr "" - -#: library/imp.rst:184 -msgid "" -"If a module instantiates instances of a class, reloading the module that " -"defines the class does not affect the method definitions of the instances " -"--- they continue to use the old class definition. The same is true for " -"derived classes." -msgstr "" - -#: library/imp.rst:188 -msgid "" -"Relies on both ``__name__`` and ``__loader__`` being defined on the module " -"being reloaded instead of just ``__name__``." -msgstr "" - -#: library/imp.rst:192 -msgid "Use :func:`importlib.reload` instead." -msgstr "" - -#: library/imp.rst:196 -msgid "" -"The following functions are conveniences for handling :pep:`3147` byte-" -"compiled file paths." -msgstr "" - -#: library/imp.rst:203 -msgid "" -"Return the :pep:`3147` path to the byte-compiled file associated with the " -"source *path*. For example, if *path* is ``/foo/bar/baz.py`` the return " -"value would be ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. " -"The ``cpython-32`` string comes from the current magic tag (see :func:" -"`get_tag`; if :attr:`sys.implementation.cache_tag` is not defined then :exc:" -"`NotImplementedError` will be raised). By passing in ``True`` or ``False`` " -"for *debug_override* you can override the system's value for ``__debug__``, " -"leading to optimized bytecode." -msgstr "" - -#: library/imp.rst:212 -msgid "*path* need not exist." -msgstr "" - -#: library/imp.rst:214 -msgid "" -"If :attr:`sys.implementation.cache_tag` is ``None``, then :exc:" -"`NotImplementedError` is raised." -msgstr "" - -#: library/imp.rst:218 -msgid "Use :func:`importlib.util.cache_from_source` instead." -msgstr "" - -#: library/imp.rst:221 -msgid "The *debug_override* parameter no longer creates a ``.pyo`` file." -msgstr "" - -#: library/imp.rst:227 -msgid "" -"Given the *path* to a :pep:`3147` file name, return the associated source " -"code file path. For example, if *path* is ``/foo/bar/__pycache__/baz." -"cpython-32.pyc`` the returned path would be ``/foo/bar/baz.py``. *path* " -"need not exist, however if it does not conform to :pep:`3147` format, a :exc:" -"`ValueError` is raised. If :attr:`sys.implementation.cache_tag` is not " -"defined, :exc:`NotImplementedError` is raised." -msgstr "" - -#: library/imp.rst:235 -msgid "" -"Raise :exc:`NotImplementedError` when :attr:`sys.implementation.cache_tag` " -"is not defined." -msgstr "" - -#: library/imp.rst:239 -msgid "Use :func:`importlib.util.source_from_cache` instead." -msgstr "" - -#: library/imp.rst:245 -msgid "" -"Return the :pep:`3147` magic tag string matching this version of Python's " -"magic number, as returned by :func:`get_magic`." -msgstr "" - -#: library/imp.rst:248 -msgid "" -"Use :attr:`sys.implementation.cache_tag` directly starting in Python 3.3." -msgstr "" - -#: library/imp.rst:253 -msgid "" -"The following functions help interact with the import system's internal " -"locking mechanism. Locking semantics of imports are an implementation " -"detail which may vary from release to release. However, Python ensures that " -"circular imports work without any deadlocks." -msgstr "" - -#: library/imp.rst:261 -msgid "" -"Return ``True`` if the global import lock is currently held, else ``False``. " -"On platforms without threads, always return ``False``." -msgstr "" - -#: library/imp.rst:264 -msgid "" -"On platforms with threads, a thread executing an import first holds a global " -"import lock, then sets up a per-module lock for the rest of the import. " -"This blocks other threads from importing the same module until the original " -"import completes, preventing other threads from seeing incomplete module " -"objects constructed by the original thread. An exception is made for " -"circular imports, which by construction have to expose an incomplete module " -"object at some point." -msgstr "" - -#: library/imp.rst:292 library/imp.rst:305 -msgid "" -"The locking scheme has changed to per-module locks for the most part. A " -"global import lock is kept for some critical tasks, such as initializing the " -"per-module locks." -msgstr "" - -#: library/imp.rst:282 -msgid "" -"Acquire the interpreter's global import lock for the current thread. This " -"lock should be used by import hooks to ensure thread-safety when importing " -"modules." -msgstr "" - -#: library/imp.rst:286 -msgid "" -"Once a thread has acquired the import lock, the same thread may acquire it " -"again without blocking; the thread must release it once for each time it has " -"acquired it." -msgstr "" - -#: library/imp.rst:290 -msgid "On platforms without threads, this function does nothing." -msgstr "" - -#: library/imp.rst:302 -msgid "" -"Release the interpreter's global import lock. On platforms without threads, " -"this function does nothing." -msgstr "" - -#: library/imp.rst:313 -msgid "" -"The following constants with integer values, defined in this module, are " -"used to indicate the search result of :func:`find_module`." -msgstr "" - -#: library/imp.rst:319 -msgid "The module was found as a source file." -msgstr "" - -#: library/imp.rst:326 -msgid "The module was found as a compiled code object file." -msgstr "" - -#: library/imp.rst:333 -msgid "The module was found as dynamically loadable shared library." -msgstr "" - -#: library/imp.rst:340 -msgid "The module was found as a package directory." -msgstr "" - -#: library/imp.rst:347 -msgid "The module was found as a built-in module." -msgstr "" - -#: library/imp.rst:354 -msgid "The module was found as a frozen module." -msgstr "" - -#: library/imp.rst:361 -msgid "" -"The :class:`NullImporter` type is a :pep:`302` import hook that handles non-" -"directory path strings by failing to find any modules. Calling this type " -"with an existing directory or empty string raises :exc:`ImportError`. " -"Otherwise, a :class:`NullImporter` instance is returned." -msgstr "" - -#: library/imp.rst:366 -msgid "Instances have only one method:" -msgstr "" - -#: library/imp.rst:370 -msgid "" -"This method always returns ``None``, indicating that the requested module " -"could not be found." -msgstr "" - -#: library/imp.rst:373 -msgid "" -"``None`` is inserted into ``sys.path_importer_cache`` instead of an instance " -"of :class:`NullImporter`." -msgstr "" - -#: library/imp.rst:377 -msgid "Insert ``None`` into ``sys.path_importer_cache`` instead." -msgstr "" - -#: library/imp.rst:384 -msgid "Examples" -msgstr "" - -#: library/imp.rst:386 -msgid "" -"The following function emulates what was the standard import statement up to " -"Python 1.4 (no hierarchical module names). (This *implementation* wouldn't " -"work in that version, since :func:`find_module` has been extended and :func:" -"`load_module` has been added in 1.4.) ::" -msgstr "" - -#: library/imp.rst:13 -msgid "statement" -msgstr "" - -#: library/imp.rst:13 -msgid "import" -msgstr "" - -#: library/imp.rst:23 -msgid "file" -msgstr "" - -#: library/imp.rst:23 -msgid "byte-code" -msgstr "" diff --git a/library/importlib.metadata.po b/library/importlib.metadata.po index 6eab93997..627d39dc3 100644 --- a/library/importlib.metadata.po +++ b/library/importlib.metadata.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -194,38 +194,37 @@ msgid "" "The \"selectable\" entry points were introduced in ``importlib_metadata`` " "3.6 and Python 3.10. Prior to those changes, ``entry_points`` accepted no " "parameters and always returned a dictionary of entry points, keyed by group. " -"For compatibility, if no parameters are passed to entry_points, a " -"``SelectableGroups`` object is returned, implementing that dict interface. " -"In the future, calling ``entry_points`` with no parameters will return an " -"``EntryPoints`` object. Users should rely on the selection interface to " -"retrieve entry points by group." +"With ``importlib_metadata`` 5.0 and Python 3.12, ``entry_points`` always " +"returns an ``EntryPoints`` object. See `backports.entry_points_selectable " +"`_ for " +"compatibility options." msgstr "" -#: library/importlib.metadata.rst:189 +#: library/importlib.metadata.rst:188 msgid "Distribution metadata" msgstr "" -#: library/importlib.metadata.rst:191 +#: library/importlib.metadata.rst:190 msgid "" "Every `Distribution Package `_ includes some metadata, which you can extract " "using the ``metadata()`` function::" msgstr "" -#: library/importlib.metadata.rst:197 +#: library/importlib.metadata.rst:196 msgid "" "The keys of the returned data structure, a ``PackageMetadata``, name the " "metadata keywords, and the values are returned unparsed from the " "distribution metadata::" msgstr "" -#: library/importlib.metadata.rst:204 +#: library/importlib.metadata.rst:203 msgid "" "``PackageMetadata`` also presents a ``json`` attribute that returns all the " "metadata in a JSON-compatible form per :PEP:`566`::" msgstr "" -#: library/importlib.metadata.rst:212 +#: library/importlib.metadata.rst:211 msgid "" "The actual type of the object returned by ``metadata()`` is an " "implementation detail and should be accessed only through the interface " @@ -233,32 +232,32 @@ msgid "" "readthedocs.io/en/latest/api.html#importlib_metadata.PackageMetadata>`_." msgstr "" -#: library/importlib.metadata.rst:217 +#: library/importlib.metadata.rst:216 msgid "" "The ``Description`` is now included in the metadata when presented through " "the payload. Line continuation characters have been removed." msgstr "" -#: library/importlib.metadata.rst:221 +#: library/importlib.metadata.rst:220 msgid "The ``json`` attribute was added." msgstr "" -#: library/importlib.metadata.rst:228 +#: library/importlib.metadata.rst:227 msgid "Distribution versions" msgstr "" -#: library/importlib.metadata.rst:230 +#: library/importlib.metadata.rst:229 msgid "" "The ``version()`` function is the quickest way to get a `Distribution " "Package `_'s version number, as a string::" msgstr "" -#: library/importlib.metadata.rst:241 +#: library/importlib.metadata.rst:240 msgid "Distribution files" msgstr "" -#: library/importlib.metadata.rst:243 +#: library/importlib.metadata.rst:242 msgid "" "You can also get the full set of files contained within a distribution. The " "``files()`` function takes a `Distribution Package `_, use " "the ``requires()`` function::" msgstr "" -#: library/importlib.metadata.rst:302 +#: library/importlib.metadata.rst:301 msgid "Mapping import to distribution packages" msgstr "" -#: library/importlib.metadata.rst:304 +#: library/importlib.metadata.rst:303 msgid "" "A convenience method to resolve the `Distribution Package `_ name (or names, " @@ -313,11 +312,18 @@ msgid "" "glossary/#term-Import-Package>`_::" msgstr "" -#: library/importlib.metadata.rst:317 +#: library/importlib.metadata.rst:311 +msgid "" +"Some editable installs, `do not supply top-level names `_, and thus this function is not " +"reliable with such installs." +msgstr "" + +#: library/importlib.metadata.rst:320 msgid "Distributions" msgstr "" -#: library/importlib.metadata.rst:319 +#: library/importlib.metadata.rst:322 msgid "" "While the above API is the most common and convenient usage, you can get all " "of that information from the ``Distribution`` class. A ``Distribution`` is " @@ -326,30 +332,30 @@ msgid "" "Package>`_. You can get the ``Distribution`` instance::" msgstr "" -#: library/importlib.metadata.rst:328 +#: library/importlib.metadata.rst:331 msgid "" "Thus, an alternative way to get the version number is through the " "``Distribution`` instance::" msgstr "" -#: library/importlib.metadata.rst:334 +#: library/importlib.metadata.rst:337 msgid "" "There are all kinds of additional metadata available on the ``Distribution`` " "instance::" msgstr "" -#: library/importlib.metadata.rst:342 +#: library/importlib.metadata.rst:345 msgid "" "The full set of available metadata is not described here. See the `Core " "metadata specifications `_ for additional details." msgstr "" -#: library/importlib.metadata.rst:347 +#: library/importlib.metadata.rst:350 msgid "Distribution Discovery" msgstr "" -#: library/importlib.metadata.rst:349 +#: library/importlib.metadata.rst:352 msgid "" "By default, this package provides built-in support for discovery of metadata " "for file system and zip file `Distribution Package `_ metadata is not available through :" "data:`sys.path` searches, or package loaders directly, the metadata for a " -"distribution is found through import system `finders`_. To find a " -"distribution package's metadata, ``importlib.metadata`` queries the list of :" -"term:`meta path finders ` on :data:`sys.meta_path`." +"distribution is found through import system :ref:`finders `. To find a distribution package's metadata, ``importlib." +"metadata`` queries the list of :term:`meta path finders ` " +"on :data:`sys.meta_path`." msgstr "" -#: library/importlib.metadata.rst:368 +#: library/importlib.metadata.rst:371 msgid "" "By default ``importlib.metadata`` installs a finder for distribution " "packages found on the file system. This finder doesn't actually find any " "*distributions*, but it can find their metadata." msgstr "" -#: library/importlib.metadata.rst:373 +#: library/importlib.metadata.rst:376 msgid "" "The abstract class :py:class:`importlib.abc.MetaPathFinder` defines the " "interface expected of finders by Python's import system. ``importlib." @@ -400,14 +407,14 @@ msgid "" "base class, which defines this abstract method::" msgstr "" -#: library/importlib.metadata.rst:387 +#: library/importlib.metadata.rst:390 msgid "" "The ``DistributionFinder.Context`` object provides ``.path`` and ``.name`` " "properties indicating the path to search and name to match and may supply " "other relevant context." msgstr "" -#: library/importlib.metadata.rst:391 +#: library/importlib.metadata.rst:394 msgid "" "What this means in practice is that to support finding distribution package " "metadata in locations other than the file system, subclass ``Distribution`` " diff --git a/library/importlib.po b/library/importlib.po index e76132d7b..cae93e090 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -248,33 +248,6 @@ msgstr "" #: library/importlib.rst:132 msgid "" -"Find the loader for a module, optionally within the specified *path*. If the " -"module is in :attr:`sys.modules`, then ``sys.modules[name].__loader__`` is " -"returned (unless the loader would be ``None`` or is not set, in which case :" -"exc:`ValueError` is raised). Otherwise a search using :attr:`sys.meta_path` " -"is done. ``None`` is returned if no loader is found." -msgstr "" - -#: library/importlib.rst:138 -msgid "" -"A dotted name does not have its parents implicitly imported as that requires " -"loading them and that may not be desired. To properly import a submodule you " -"will need to import all parent packages of the submodule and use the correct " -"argument to *path*." -msgstr "" - -#: library/importlib.rst:145 -msgid "" -"If ``__loader__`` is not set, raise :exc:`ValueError`, just like when the " -"attribute is set to ``None``." -msgstr "" - -#: library/importlib.rst:149 -msgid "Use :func:`importlib.util.find_spec` instead." -msgstr "" - -#: library/importlib.rst:154 -msgid "" "Invalidate the internal caches of finders stored at :data:`sys.meta_path`. " "If a finder implements ``invalidate_caches()`` then it will be called to " "perform the invalidation. This function should be called if any modules are " @@ -282,13 +255,13 @@ msgid "" "will notice the new module's existence." msgstr "" -#: library/importlib.rst:162 +#: library/importlib.rst:140 msgid "" "Namespace packages created/installed in a different :data:`sys.path` " "location after the same namespace was already imported are noticed." msgstr "" -#: library/importlib.rst:168 +#: library/importlib.rst:146 msgid "" "Reload a previously imported *module*. The argument must be a module " "object, so it must have been successfully imported before. This is useful " @@ -298,11 +271,11 @@ msgid "" "causes a different object to be placed in :data:`sys.modules`)." msgstr "" -#: library/importlib.rst:175 +#: library/importlib.rst:153 msgid "When :func:`reload` is executed:" msgstr "" -#: library/importlib.rst:177 +#: library/importlib.rst:155 msgid "" "Python module's code is recompiled and the module-level code re-executed, " "defining a new set of objects which are bound to names in the module's " @@ -311,30 +284,30 @@ msgid "" "time." msgstr "" -#: library/importlib.rst:183 +#: library/importlib.rst:161 msgid "" "As with all other objects in Python the old objects are only reclaimed after " "their reference counts drop to zero." msgstr "" -#: library/importlib.rst:186 +#: library/importlib.rst:164 msgid "" "The names in the module namespace are updated to point to any new or changed " "objects." msgstr "" -#: library/importlib.rst:189 +#: library/importlib.rst:167 msgid "" "Other references to the old objects (such as names external to the module) " "are not rebound to refer to the new objects and must be updated in each " "namespace where they occur if that is desired." msgstr "" -#: library/importlib.rst:193 +#: library/importlib.rst:171 msgid "There are a number of other caveats:" msgstr "" -#: library/importlib.rst:195 +#: library/importlib.rst:173 msgid "" "When a module is reloaded, its dictionary (containing the module's global " "variables) is retained. Redefinitions of names will override the old " @@ -346,7 +319,7 @@ msgid "" "if desired::" msgstr "" -#: library/importlib.rst:209 +#: library/importlib.rst:187 msgid "" "It is generally not very useful to reload built-in or dynamically loaded " "modules. Reloading :mod:`sys`, :mod:`__main__`, :mod:`builtins` and other " @@ -355,7 +328,7 @@ msgid "" "when reloaded." msgstr "" -#: library/importlib.rst:215 +#: library/importlib.rst:193 msgid "" "If a module imports objects from another module using :keyword:`from` ... :" "keyword:`import` ..., calling :func:`reload` for the other module does not " @@ -364,7 +337,7 @@ msgid "" "and qualified names (*module.name*) instead." msgstr "" -#: library/importlib.rst:221 +#: library/importlib.rst:199 msgid "" "If a module instantiates instances of a class, reloading the module that " "defines the class does not affect the method definitions of the instances " @@ -372,66 +345,40 @@ msgid "" "derived classes." msgstr "" -#: library/importlib.rst:227 +#: library/importlib.rst:205 msgid "" ":exc:`ModuleNotFoundError` is raised when the module being reloaded lacks a :" "class:`~importlib.machinery.ModuleSpec`." msgstr "" -#: library/importlib.rst:233 +#: library/importlib.rst:211 msgid ":mod:`importlib.abc` -- Abstract base classes related to import" msgstr "" -#: library/importlib.rst:238 +#: library/importlib.rst:216 msgid "**Source code:** :source:`Lib/importlib/abc.py`" msgstr "" -#: library/importlib.rst:243 +#: library/importlib.rst:221 msgid "" "The :mod:`importlib.abc` module contains all of the core abstract base " "classes used by :keyword:`import`. Some subclasses of the core abstract base " "classes are also provided to help in implementing the core ABCs." msgstr "" -#: library/importlib.rst:247 +#: library/importlib.rst:225 msgid "ABC hierarchy::" msgstr "" -#: library/importlib.rst:263 -msgid "An abstract base class representing a :term:`finder`." -msgstr "" - -#: library/importlib.rst:265 -msgid "Use :class:`MetaPathFinder` or :class:`PathEntryFinder` instead." -msgstr "" - -#: library/importlib.rst:270 -msgid "" -"An abstract method for finding a :term:`loader` for the specified module. " -"Originally specified in :pep:`302`, this method was meant for use in :data:" -"`sys.meta_path` and in the path-based import subsystem." -msgstr "" - -#: library/importlib.rst:274 -msgid "" -"Returns ``None`` when called instead of raising :exc:`NotImplementedError`." -msgstr "" - -#: library/importlib.rst:278 -msgid "" -"Implement :meth:`MetaPathFinder.find_spec` or :meth:`PathEntryFinder." -"find_spec` instead." -msgstr "" - -#: library/importlib.rst:285 +#: library/importlib.rst:240 msgid "An abstract base class representing a :term:`meta path finder`." msgstr "" -#: library/importlib.rst:344 -msgid "No longer a subclass of :class:`Finder`." +#: library/importlib.rst:280 +msgid "No longer a subclass of :class:`!Finder`." msgstr "" -#: library/importlib.rst:294 +#: library/importlib.rst:249 msgid "" "An abstract method for finding a :term:`spec ` for the " "specified module. If this is a top-level import, *path* will be ``None``. " @@ -443,44 +390,18 @@ msgid "" "implementing concrete ``MetaPathFinders``." msgstr "" -#: library/importlib.rst:308 -msgid "" -"A legacy method for finding a :term:`loader` for the specified module. If " -"this is a top-level import, *path* will be ``None``. Otherwise, this is a " -"search for a subpackage or module and *path* will be the value of :attr:" -"`__path__` from the parent package. If a loader cannot be found, ``None`` is " -"returned." -msgstr "" - -#: library/importlib.rst:314 -msgid "" -"If :meth:`find_spec` is defined, backwards-compatible functionality is " -"provided." -msgstr "" - -#: library/importlib.rst:317 -msgid "" -"Returns ``None`` when called instead of raising :exc:`NotImplementedError`. " -"Can use :meth:`find_spec` to provide functionality." -msgstr "" - -#: library/importlib.rst:378 library/importlib.rst:902 -#: library/importlib.rst:959 -msgid "Use :meth:`find_spec` instead." -msgstr "" - -#: library/importlib.rst:327 +#: library/importlib.rst:263 msgid "" "An optional method which, when called, should invalidate any internal cache " "used by the finder. Used by :func:`importlib.invalidate_caches` when " "invalidating the caches of all finders on :data:`sys.meta_path`." msgstr "" -#: library/importlib.rst:331 +#: library/importlib.rst:267 msgid "Returns ``None`` when called instead of ``NotImplemented``." msgstr "" -#: library/importlib.rst:337 +#: library/importlib.rst:273 msgid "" "An abstract base class representing a :term:`path entry finder`. Though it " "bears some similarities to :class:`MetaPathFinder`, ``PathEntryFinder`` is " @@ -488,7 +409,7 @@ msgid "" "`importlib.machinery.PathFinder`." msgstr "" -#: library/importlib.rst:349 +#: library/importlib.rst:285 msgid "" "An abstract method for finding a :term:`spec ` for the " "specified module. The finder will search for the module only within the :" @@ -499,73 +420,42 @@ msgid "" "concrete ``PathEntryFinders``." msgstr "" -#: library/importlib.rst:361 -msgid "" -"A legacy method for finding a :term:`loader` for the specified module. " -"Returns a 2-tuple of ``(loader, portion)`` where ``portion`` is a sequence " -"of file system locations contributing to part of a namespace package. The " -"loader may be ``None`` while specifying ``portion`` to signify the " -"contribution of the file system locations to a namespace package. An empty " -"list can be used for ``portion`` to signify the loader is not part of a " -"namespace package. If ``loader`` is ``None`` and ``portion`` is the empty " -"list then no loader or location for a namespace package were found (i.e. " -"failure to find anything for the module)." -msgstr "" - -#: library/importlib.rst:371 -msgid "" -"If :meth:`find_spec` is defined then backwards-compatible functionality is " -"provided." -msgstr "" - -#: library/importlib.rst:374 -msgid "" -"Returns ``(None, [])`` instead of raising :exc:`NotImplementedError`. Uses :" -"meth:`find_spec` when available to provide functionality." -msgstr "" - -#: library/importlib.rst:383 -msgid "" -"A concrete implementation of :meth:`Finder.find_module` which is equivalent " -"to ``self.find_loader(fullname)[0]``." -msgstr "" - -#: library/importlib.rst:391 +#: library/importlib.rst:297 msgid "" "An optional method which, when called, should invalidate any internal cache " "used by the finder. Used by :meth:`importlib.machinery.PathFinder." "invalidate_caches` when invalidating the caches of all cached finders." msgstr "" -#: library/importlib.rst:399 +#: library/importlib.rst:305 msgid "" "An abstract base class for a :term:`loader`. See :pep:`302` for the exact " "definition for a loader." msgstr "" -#: library/importlib.rst:402 +#: library/importlib.rst:308 msgid "" "Loaders that wish to support resource reading should implement a :meth:" "`get_resource_reader` method as specified by :class:`importlib.resources.abc." "ResourceReader`." msgstr "" -#: library/importlib.rst:406 +#: library/importlib.rst:312 msgid "Introduced the optional :meth:`get_resource_reader` method." msgstr "" -#: library/importlib.rst:411 +#: library/importlib.rst:317 msgid "" "A method that returns the module object to use when importing a module. " "This method may return ``None``, indicating that default module creation " "semantics should take place." msgstr "" -#: library/importlib.rst:417 +#: library/importlib.rst:323 msgid "This method is no longer optional when :meth:`exec_module` is defined." msgstr "" -#: library/importlib.rst:423 +#: library/importlib.rst:329 msgid "" "An abstract method that executes the module in its own namespace when a " "module is imported or reloaded. The module should already be initialized " @@ -573,17 +463,17 @@ msgid "" "`create_module` must be defined." msgstr "" -#: library/importlib.rst:430 +#: library/importlib.rst:336 msgid ":meth:`create_module` must also be defined." msgstr "" -#: library/importlib.rst:435 +#: library/importlib.rst:341 msgid "" "A legacy method for loading a module. If the module cannot be loaded, :exc:" "`ImportError` is raised, otherwise the loaded module is returned." msgstr "" -#: library/importlib.rst:439 +#: library/importlib.rst:345 msgid "" "If the requested module already exists in :data:`sys.modules`, that module " "should be used and reloaded. Otherwise the loader should create a new module " @@ -591,51 +481,51 @@ msgid "" "recursion from the import. If the loader inserted a module and the load " "fails, it must be removed by the loader from :data:`sys.modules`; modules " "already in :data:`sys.modules` before the loader began execution should be " -"left alone (see :func:`importlib.util.module_for_loader`)." +"left alone." msgstr "" -#: library/importlib.rst:448 +#: library/importlib.rst:354 msgid "" "The loader should set several attributes on the module (note that some of " "these attributes can change when a module is reloaded):" msgstr "" -#: library/importlib.rst:454 +#: library/importlib.rst:360 msgid ":attr:`__name__`" msgstr "" -#: library/importlib.rst:453 +#: library/importlib.rst:359 msgid "" "The module's fully qualified name. It is ``'__main__'`` for an executed " "module." msgstr "" -#: library/importlib.rst:459 +#: library/importlib.rst:365 msgid ":attr:`__file__`" msgstr "" -#: library/importlib.rst:457 +#: library/importlib.rst:363 msgid "" "The location the :term:`loader` used to load the module. For example, for " "modules loaded from a .py file this is the filename. It is not set on all " "modules (e.g. built-in modules)." msgstr "" -#: library/importlib.rst:463 +#: library/importlib.rst:369 msgid ":attr:`__cached__`" msgstr "" -#: library/importlib.rst:462 +#: library/importlib.rst:368 msgid "" "The filename of a compiled version of the module's code. It is not set on " "all modules (e.g. built-in modules)." msgstr "" -#: library/importlib.rst:471 +#: library/importlib.rst:377 msgid ":attr:`__path__`" msgstr "" -#: library/importlib.rst:466 +#: library/importlib.rst:372 msgid "" "The list of locations where the package's submodules will be found. Most of " "the time this is a single directory. The import system passes this attribute " @@ -644,38 +534,38 @@ msgid "" "as an indicator that the module is a package." msgstr "" -#: library/importlib.rst:476 +#: library/importlib.rst:382 msgid ":attr:`__package__`" msgstr "" -#: library/importlib.rst:474 +#: library/importlib.rst:380 msgid "" "The fully qualified name of the package the module is in (or the empty " "string for a top-level module). If the module is a package then this is the " "same as :attr:`__name__`." msgstr "" -#: library/importlib.rst:479 +#: library/importlib.rst:385 msgid ":attr:`__loader__`" msgstr "" -#: library/importlib.rst:479 +#: library/importlib.rst:385 msgid "The :term:`loader` used to load the module." msgstr "" -#: library/importlib.rst:481 +#: library/importlib.rst:387 msgid "" "When :meth:`exec_module` is available then backwards-compatible " "functionality is provided." msgstr "" -#: library/importlib.rst:484 +#: library/importlib.rst:390 msgid "" "Raise :exc:`ImportError` when called instead of :exc:`NotImplementedError`. " "Functionality provided when :meth:`exec_module` is available." msgstr "" -#: library/importlib.rst:489 +#: library/importlib.rst:395 msgid "" "The recommended API for loading a module is :meth:`exec_module` (and :meth:" "`create_module`). Loaders should implement it instead of :meth:" @@ -684,34 +574,19 @@ msgid "" "implemented." msgstr "" -#: library/importlib.rst:498 -msgid "" -"A legacy method which when implemented calculates and returns the given " -"module's representation, as a string. The module type's default :meth:" -"`__repr__` will use the result of this method as appropriate." -msgstr "" - -#: library/importlib.rst:504 -msgid "Made optional instead of an abstractmethod." -msgstr "" - -#: library/importlib.rst:507 -msgid "The import machinery now takes care of this automatically." -msgstr "" - -#: library/importlib.rst:513 +#: library/importlib.rst:405 msgid "" "An abstract base class for a :term:`loader` which implements the optional :" "pep:`302` protocol for loading arbitrary resources from the storage back-end." msgstr "" -#: library/importlib.rst:517 +#: library/importlib.rst:409 msgid "" "This ABC is deprecated in favour of supporting resource loading through :" "class:`importlib.resources.abc.ResourceReader`." msgstr "" -#: library/importlib.rst:523 +#: library/importlib.rst:415 msgid "" "An abstract method to return the bytes for the data located at *path*. " "Loaders that have a file-like storage back-end that allows storing arbitrary " @@ -721,34 +596,34 @@ msgid "" "attribute or an item from a package's :attr:`__path__`." msgstr "" -#: library/importlib.rst:531 +#: library/importlib.rst:423 msgid "Raises :exc:`OSError` instead of :exc:`NotImplementedError`." msgstr "" -#: library/importlib.rst:537 +#: library/importlib.rst:429 msgid "" "An abstract base class for a :term:`loader` which implements the optional :" "pep:`302` protocol for loaders that inspect modules." msgstr "" -#: library/importlib.rst:542 +#: library/importlib.rst:434 msgid "" "Return the code object for a module, or ``None`` if the module does not have " "a code object (as would be the case, for example, for a built-in module). " "Raise an :exc:`ImportError` if loader cannot find the requested module." msgstr "" -#: library/importlib.rst:548 +#: library/importlib.rst:440 msgid "" "While the method has a default implementation, it is suggested that it be " "overridden if possible for performance." msgstr "" -#: library/importlib.rst:554 +#: library/importlib.rst:446 msgid "No longer abstract and a concrete implementation is provided." msgstr "" -#: library/importlib.rst:559 +#: library/importlib.rst:451 msgid "" "An abstract method to return the source of a module. It is returned as a " "text string using :term:`universal newlines`, translating all recognized " @@ -757,22 +632,22 @@ msgid "" "cannot find the module specified." msgstr "" -#: library/importlib.rst:574 library/importlib.rst:624 +#: library/importlib.rst:466 library/importlib.rst:516 msgid "Raises :exc:`ImportError` instead of :exc:`NotImplementedError`." msgstr "" -#: library/importlib.rst:570 +#: library/importlib.rst:462 msgid "" "An optional method to return a true value if the module is a package, a " "false value otherwise. :exc:`ImportError` is raised if the :term:`loader` " "cannot find the module." msgstr "" -#: library/importlib.rst:579 +#: library/importlib.rst:471 msgid "Create a code object from Python source." msgstr "" -#: library/importlib.rst:581 +#: library/importlib.rst:473 msgid "" "The *data* argument can be whatever the :func:`compile` function supports (i." "e. string or bytes). The *path* argument should be the \"path\" to where the " @@ -780,106 +655,106 @@ msgid "" "in a zip file)." msgstr "" -#: library/importlib.rst:586 +#: library/importlib.rst:478 msgid "" "With the subsequent code object one can execute it in a module by running " "``exec(code, module.__dict__)``." msgstr "" -#: library/importlib.rst:591 +#: library/importlib.rst:483 msgid "Made the method static." msgstr "" -#: library/importlib.rst:596 +#: library/importlib.rst:488 msgid "Implementation of :meth:`Loader.exec_module`." msgstr "" -#: library/importlib.rst:602 +#: library/importlib.rst:494 msgid "Implementation of :meth:`Loader.load_module`." msgstr "" -#: library/importlib.rst:604 +#: library/importlib.rst:496 msgid "use :meth:`exec_module` instead." msgstr "" -#: library/importlib.rst:610 +#: library/importlib.rst:502 msgid "" "An abstract base class which inherits from :class:`InspectLoader` that, when " "implemented, helps a module to be executed as a script. The ABC represents " "an optional :pep:`302` protocol." msgstr "" -#: library/importlib.rst:616 +#: library/importlib.rst:508 msgid "" "An abstract method that is to return the value of :attr:`__file__` for the " "specified module. If no path is available, :exc:`ImportError` is raised." msgstr "" -#: library/importlib.rst:620 +#: library/importlib.rst:512 msgid "" "If source code is available, then the method should return the path to the " "source file, regardless of whether a bytecode was used to load the module." msgstr "" -#: library/importlib.rst:630 +#: library/importlib.rst:522 msgid "" "An abstract base class which inherits from :class:`ResourceLoader` and :" "class:`ExecutionLoader`, providing concrete implementations of :meth:" "`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`." msgstr "" -#: library/importlib.rst:634 +#: library/importlib.rst:526 msgid "" "The *fullname* argument is a fully resolved name of the module the loader is " "to handle. The *path* argument is the path to the file for the module." msgstr "" -#: library/importlib.rst:641 +#: library/importlib.rst:533 msgid "The name of the module the loader can handle." msgstr "" -#: library/importlib.rst:645 +#: library/importlib.rst:537 msgid "Path to the file of the module." msgstr "" -#: library/importlib.rst:649 +#: library/importlib.rst:541 msgid "Calls super's ``load_module()``." msgstr "" -#: library/importlib.rst:651 +#: library/importlib.rst:543 msgid "Use :meth:`Loader.exec_module` instead." msgstr "" -#: library/importlib.rst:1104 +#: library/importlib.rst:1143 msgid "Returns :attr:`path`." msgstr "" -#: library/importlib.rst:660 +#: library/importlib.rst:552 msgid "Reads *path* as a binary file and returns the bytes from it." msgstr "" -#: library/importlib.rst:665 +#: library/importlib.rst:557 msgid "" "An abstract base class for implementing source (and optionally bytecode) " "file loading. The class inherits from both :class:`ResourceLoader` and :" "class:`ExecutionLoader`, requiring the implementation of:" msgstr "" -#: library/importlib.rst:669 +#: library/importlib.rst:561 msgid ":meth:`ResourceLoader.get_data`" msgstr "" -#: library/importlib.rst:672 +#: library/importlib.rst:564 msgid ":meth:`ExecutionLoader.get_filename`" msgstr "" -#: library/importlib.rst:671 +#: library/importlib.rst:563 msgid "" "Should only return the path to the source file; sourceless loading is not " "supported." msgstr "" -#: library/importlib.rst:674 +#: library/importlib.rst:566 msgid "" "The abstract methods defined by this class are to add optional bytecode file " "support. Not implementing these optional methods (or causing them to raise :" @@ -891,83 +766,83 @@ msgid "" "bytecode-specific API is exposed." msgstr "" -#: library/importlib.rst:685 +#: library/importlib.rst:577 msgid "" "Optional abstract method which returns a :class:`dict` containing metadata " "about the specified path. Supported dictionary keys are:" msgstr "" -#: library/importlib.rst:688 +#: library/importlib.rst:580 msgid "" "``'mtime'`` (mandatory): an integer or floating-point number representing " "the modification time of the source code;" msgstr "" -#: library/importlib.rst:690 +#: library/importlib.rst:582 msgid "``'size'`` (optional): the size in bytes of the source code." msgstr "" -#: library/importlib.rst:692 +#: library/importlib.rst:584 msgid "" "Any other keys in the dictionary are ignored, to allow for future " "extensions. If the path cannot be handled, :exc:`OSError` is raised." msgstr "" -#: library/importlib.rst:710 +#: library/importlib.rst:602 msgid "Raise :exc:`OSError` instead of :exc:`NotImplementedError`." msgstr "" -#: library/importlib.rst:702 +#: library/importlib.rst:594 msgid "" "Optional abstract method which returns the modification time for the " "specified path." msgstr "" -#: library/importlib.rst:705 +#: library/importlib.rst:597 msgid "" "This method is deprecated in favour of :meth:`path_stats`. You don't have " "to implement it, but it is still available for compatibility purposes. " "Raise :exc:`OSError` if the path cannot be handled." msgstr "" -#: library/importlib.rst:715 +#: library/importlib.rst:607 msgid "" "Optional abstract method which writes the specified bytes to a file path. " "Any intermediate directories which do not exist are to be created " "automatically." msgstr "" -#: library/importlib.rst:719 +#: library/importlib.rst:611 msgid "" "When writing to the path fails because the path is read-only (:const:`errno." "EACCES`/:exc:`PermissionError`), do not propagate the exception." msgstr "" -#: library/importlib.rst:723 +#: library/importlib.rst:615 msgid "No longer raises :exc:`NotImplementedError` when called." msgstr "" -#: library/importlib.rst:728 +#: library/importlib.rst:620 msgid "Concrete implementation of :meth:`InspectLoader.get_code`." msgstr "" -#: library/importlib.rst:732 +#: library/importlib.rst:624 msgid "Concrete implementation of :meth:`Loader.exec_module`." msgstr "" -#: library/importlib.rst:738 +#: library/importlib.rst:630 msgid "Concrete implementation of :meth:`Loader.load_module`." msgstr "" -#: library/importlib.rst:740 +#: library/importlib.rst:632 msgid "Use :meth:`exec_module` instead." msgstr "" -#: library/importlib.rst:745 +#: library/importlib.rst:637 msgid "Concrete implementation of :meth:`InspectLoader.get_source`." msgstr "" -#: library/importlib.rst:749 +#: library/importlib.rst:641 msgid "" "Concrete implementation of :meth:`InspectLoader.is_package`. A module is " "determined to be a package if its file path (as provided by :meth:" @@ -976,59 +851,232 @@ msgid "" "``__init__``." msgstr "" -#: library/importlib.rst:758 +#: library/importlib.rst:650 +msgid "*Superseded by TraversableResources*" +msgstr "" + +#: library/importlib.rst:652 +msgid "" +"An :term:`abstract base class` to provide the ability to read *resources*." +msgstr "" + +#: library/importlib.rst:655 +msgid "" +"From the perspective of this ABC, a *resource* is a binary artifact that is " +"shipped within a package. Typically this is something like a data file that " +"lives next to the ``__init__.py`` file of the package. The purpose of this " +"class is to help abstract out the accessing of such data files so that it " +"does not matter if the package and its data file(s) are stored in a e.g. zip " +"file versus on the file system." +msgstr "" + +#: library/importlib.rst:663 +msgid "" +"For any of methods of this class, a *resource* argument is expected to be a :" +"term:`path-like object` which represents conceptually just a file name. This " +"means that no subdirectory paths should be included in the *resource* " +"argument. This is because the location of the package the reader is for, " +"acts as the \"directory\". Hence the metaphor for directories and file names " +"is packages and resources, respectively. This is also why instances of this " +"class are expected to directly correlate to a specific package (instead of " +"potentially representing multiple packages or a module)." +msgstr "" + +#: library/importlib.rst:674 +msgid "" +"Loaders that wish to support resource reading are expected to provide a " +"method called ``get_resource_reader(fullname)`` which returns an object " +"implementing this ABC's interface. If the module specified by fullname is " +"not a package, this method should return :const:`None`. An object compatible " +"with this ABC should only be returned when the specified module is a package." +msgstr "" + +#: library/importlib.rst:795 +msgid "Use :class:`importlib.resources.abc.TraversableResources` instead." +msgstr "" + +#: library/importlib.rst:688 +msgid "" +"Returns an opened, :term:`file-like object` for binary reading of the " +"*resource*." +msgstr "" + +#: library/importlib.rst:691 +msgid "If the resource cannot be found, :exc:`FileNotFoundError` is raised." +msgstr "" + +#: library/importlib.rst:696 +msgid "Returns the file system path to the *resource*." +msgstr "" + +#: library/importlib.rst:698 +msgid "" +"If the resource does not concretely exist on the file system, raise :exc:" +"`FileNotFoundError`." +msgstr "" + +#: library/importlib.rst:703 +msgid "" +"Returns ``True`` if the named *name* is considered a resource. :exc:" +"`FileNotFoundError` is raised if *name* does not exist." +msgstr "" + +#: library/importlib.rst:708 +msgid "" +"Returns an :term:`iterable` of strings over the contents of the package. Do " +"note that it is not required that all names returned by the iterator be " +"actual resources, e.g. it is acceptable to return names for which :meth:" +"`is_resource` would be false." +msgstr "" + +#: library/importlib.rst:714 +msgid "" +"Allowing non-resource names to be returned is to allow for situations where " +"how a package and its resources are stored are known a priori and the non-" +"resource names would be useful. For instance, returning subdirectory names " +"is allowed so that when it is known that the package and resources are " +"stored on the file system then those subdirectory names can be used directly." +msgstr "" + +#: library/importlib.rst:722 +msgid "The abstract method returns an iterable of no items." +msgstr "" + +#: library/importlib.rst:727 +msgid "" +"An object with a subset of :class:`pathlib.Path` methods suitable for " +"traversing directories and opening files." +msgstr "" + +#: library/importlib.rst:730 +msgid "" +"For a representation of the object on the file-system, use :meth:`importlib." +"resources.as_file`." +msgstr "" + +#: library/importlib.rst:737 +msgid "Use :class:`importlib.resources.abc.Traversable` instead." +msgstr "" + +#: library/importlib.rst:740 +msgid "Abstract. The base name of this object without any parent references." +msgstr "" + +#: library/importlib.rst:744 +msgid "Yield ``Traversable`` objects in ``self``." +msgstr "" + +#: library/importlib.rst:748 +msgid "Return ``True`` if ``self`` is a directory." +msgstr "" + +#: library/importlib.rst:752 +msgid "Return ``True`` if ``self`` is a file." +msgstr "" + +#: library/importlib.rst:756 +msgid "Return Traversable child in ``self``." +msgstr "" + +#: library/importlib.rst:760 +msgid "Return ``Traversable`` child in ``self``." +msgstr "" + +#: library/importlib.rst:764 +msgid "" +"*mode* may be 'r' or 'rb' to open as text or binary. Return a handle " +"suitable for reading (same as :attr:`pathlib.Path.open`)." +msgstr "" + +#: library/importlib.rst:767 +msgid "" +"When opening as text, accepts encoding parameters such as those accepted by :" +"attr:`io.TextIOWrapper`." +msgstr "" + +#: library/importlib.rst:772 +msgid "Read contents of ``self`` as bytes." +msgstr "" + +#: library/importlib.rst:776 +msgid "Read contents of ``self`` as text." +msgstr "" + +#: library/importlib.rst:781 +msgid "" +"An abstract base class for resource readers capable of serving the :meth:" +"`importlib.resources.files` interface. Subclasses :class:`importlib." +"resources.abc.ResourceReader` and provides concrete implementations of the :" +"class:`importlib.resources.abc.ResourceReader`'s abstract methods. " +"Therefore, any loader supplying :class:`importlib.abc.TraversableResources` " +"also supplies ResourceReader." +msgstr "" + +#: library/importlib.rst:788 +msgid "" +"Loaders that wish to support resource reading are expected to implement this " +"interface." +msgstr "" + +#: library/importlib.rst:798 +msgid "" +"Returns a :class:`importlib.resources.abc.Traversable` object for the loaded " +"package." +msgstr "" + +#: library/importlib.rst:804 msgid ":mod:`importlib.machinery` -- Importers and path hooks" msgstr "" -#: library/importlib.rst:763 +#: library/importlib.rst:809 msgid "**Source code:** :source:`Lib/importlib/machinery.py`" msgstr "" -#: library/importlib.rst:767 +#: library/importlib.rst:813 msgid "" "This module contains the various objects that help :keyword:`import` find " "and load modules." msgstr "" -#: library/importlib.rst:772 +#: library/importlib.rst:818 msgid "" "A list of strings representing the recognized file suffixes for source " "modules." msgstr "" -#: library/importlib.rst:779 +#: library/importlib.rst:825 msgid "" "A list of strings representing the file suffixes for non-optimized bytecode " "modules." msgstr "" -#: library/importlib.rst:794 +#: library/importlib.rst:840 msgid "Use :attr:`BYTECODE_SUFFIXES` instead." msgstr "" -#: library/importlib.rst:789 +#: library/importlib.rst:835 msgid "" "A list of strings representing the file suffixes for optimized bytecode " "modules." msgstr "" -#: library/importlib.rst:799 +#: library/importlib.rst:845 msgid "" "A list of strings representing the recognized file suffixes for bytecode " "modules (including the leading dot)." msgstr "" -#: library/importlib.rst:804 +#: library/importlib.rst:850 msgid "The value is no longer dependent on ``__debug__``." msgstr "" -#: library/importlib.rst:809 +#: library/importlib.rst:855 msgid "" "A list of strings representing the recognized file suffixes for extension " "modules." msgstr "" -#: library/importlib.rst:816 +#: library/importlib.rst:862 msgid "" "Returns a combined list of strings representing all file suffixes for " "modules recognized by the standard import machinery. This is a helper for " @@ -1037,56 +1085,56 @@ msgid "" "`inspect.getmodulename`)." msgstr "" -#: library/importlib.rst:827 +#: library/importlib.rst:873 msgid "" "An :term:`importer` for built-in modules. All known built-in modules are " "listed in :data:`sys.builtin_module_names`. This class implements the :class:" "`importlib.abc.MetaPathFinder` and :class:`importlib.abc.InspectLoader` ABCs." msgstr "" -#: library/importlib.rst:846 library/importlib.rst:874 +#: library/importlib.rst:892 library/importlib.rst:920 msgid "" "Only class methods are defined by this class to alleviate the need for " "instantiation." msgstr "" -#: library/importlib.rst:835 +#: library/importlib.rst:881 msgid "" "As part of :pep:`489`, the builtin importer now implements :meth:`Loader." "create_module` and :meth:`Loader.exec_module`" msgstr "" -#: library/importlib.rst:842 +#: library/importlib.rst:888 msgid "" "An :term:`importer` for frozen modules. This class implements the :class:" "`importlib.abc.MetaPathFinder` and :class:`importlib.abc.InspectLoader` ABCs." msgstr "" -#: library/importlib.rst:849 +#: library/importlib.rst:895 msgid "" "Gained :meth:`~Loader.create_module` and :meth:`~Loader.exec_module` methods." msgstr "" -#: library/importlib.rst:856 +#: library/importlib.rst:902 msgid "" ":term:`Finder ` for modules declared in the Windows registry. This " "class implements the :class:`importlib.abc.MetaPathFinder` ABC." msgstr "" -#: library/importlib.rst:864 +#: library/importlib.rst:910 msgid "" "Use :mod:`site` configuration instead. Future versions of Python may not " "enable this finder by default." msgstr "" -#: library/importlib.rst:871 +#: library/importlib.rst:917 msgid "" "A :term:`Finder ` for :data:`sys.path` and package ``__path__`` " "attributes. This class implements the :class:`importlib.abc.MetaPathFinder` " "ABC." msgstr "" -#: library/importlib.rst:879 +#: library/importlib.rst:925 msgid "" "Class method that attempts to find a :term:`spec ` for the " "module specified by *fullname* on :data:`sys.path` or, if defined, on " @@ -1100,47 +1148,43 @@ msgid "" "cache and returned." msgstr "" -#: library/importlib.rst:893 +#: library/importlib.rst:939 msgid "" "If the current working directory -- represented by an empty string -- is no " "longer valid then ``None`` is returned but no value is cached in :data:`sys." "path_importer_cache`." msgstr "" -#: library/importlib.rst:900 -msgid "A legacy wrapper around :meth:`find_spec`." -msgstr "" - -#: library/importlib.rst:907 +#: library/importlib.rst:946 msgid "" "Calls :meth:`importlib.abc.PathEntryFinder.invalidate_caches` on all finders " "stored in :data:`sys.path_importer_cache` that define the method. Otherwise " "entries in :data:`sys.path_importer_cache` set to ``None`` are deleted." msgstr "" -#: library/importlib.rst:912 +#: library/importlib.rst:951 msgid "Entries of ``None`` in :data:`sys.path_importer_cache` are deleted." msgstr "" -#: library/importlib.rst:915 +#: library/importlib.rst:954 msgid "" "Calls objects in :data:`sys.path_hooks` with the current working directory " "for ``''`` (i.e. the empty string)." msgstr "" -#: library/importlib.rst:922 +#: library/importlib.rst:961 msgid "" "A concrete implementation of :class:`importlib.abc.PathEntryFinder` which " "caches results from the file system." msgstr "" -#: library/importlib.rst:925 +#: library/importlib.rst:964 msgid "" "The *path* argument is the directory for which the finder is in charge of " "searching." msgstr "" -#: library/importlib.rst:928 +#: library/importlib.rst:967 msgid "" "The *loader_details* argument is a variable number of 2-item tuples each " "containing a loader and a sequence of file suffixes the loader recognizes. " @@ -1148,7 +1192,7 @@ msgid "" "module's name and the path to the file found." msgstr "" -#: library/importlib.rst:933 +#: library/importlib.rst:972 msgid "" "The finder will cache the directory contents as necessary, making stat calls " "for each module search to verify the cache is not outdated. Because cache " @@ -1161,159 +1205,166 @@ msgid "" "to call :func:`importlib.invalidate_caches`." msgstr "" -#: library/importlib.rst:947 +#: library/importlib.rst:986 msgid "The path the finder will search in." msgstr "" -#: library/importlib.rst:951 +#: library/importlib.rst:990 msgid "Attempt to find the spec to handle *fullname* within :attr:`path`." msgstr "" -#: library/importlib.rst:957 -msgid "Attempt to find the loader to handle *fullname* within :attr:`path`." -msgstr "" - -#: library/importlib.rst:964 +#: library/importlib.rst:996 msgid "Clear out the internal cache." msgstr "" -#: library/importlib.rst:968 +#: library/importlib.rst:1000 msgid "" "A class method which returns a closure for use on :data:`sys.path_hooks`. An " "instance of :class:`FileFinder` is returned by the closure using the path " "argument given to the closure directly and *loader_details* indirectly." msgstr "" -#: library/importlib.rst:973 +#: library/importlib.rst:1005 msgid "" "If the argument to the closure is not an existing directory, :exc:" "`ImportError` is raised." msgstr "" -#: library/importlib.rst:979 +#: library/importlib.rst:1011 msgid "" "A concrete implementation of :class:`importlib.abc.SourceLoader` by " "subclassing :class:`importlib.abc.FileLoader` and providing some concrete " "implementations of other methods." msgstr "" -#: library/importlib.rst:987 +#: library/importlib.rst:1019 msgid "The name of the module that this loader will handle." msgstr "" -#: library/importlib.rst:991 +#: library/importlib.rst:1023 msgid "The path to the source file." msgstr "" -#: library/importlib.rst:995 +#: library/importlib.rst:1027 msgid "Return ``True`` if :attr:`path` appears to be for a package." msgstr "" -#: library/importlib.rst:999 +#: library/importlib.rst:1031 msgid "" "Concrete implementation of :meth:`importlib.abc.SourceLoader.path_stats`." msgstr "" -#: library/importlib.rst:1003 +#: library/importlib.rst:1035 msgid "Concrete implementation of :meth:`importlib.abc.SourceLoader.set_data`." msgstr "" -#: library/importlib.rst:1050 +#: library/importlib.rst:1082 msgid "" "Concrete implementation of :meth:`importlib.abc.Loader.load_module` where " "specifying the name of the module to load is optional." msgstr "" -#: library/importlib.rst:1055 +#: library/importlib.rst:1087 msgid "Use :meth:`importlib.abc.Loader.exec_module` instead." msgstr "" -#: library/importlib.rst:1017 +#: library/importlib.rst:1049 msgid "" "A concrete implementation of :class:`importlib.abc.FileLoader` which can " "import bytecode files (i.e. no source code files exist)." msgstr "" -#: library/importlib.rst:1020 +#: library/importlib.rst:1052 msgid "" "Please note that direct use of bytecode files (and thus not source code " "files) inhibits your modules from being usable by all Python implementations " "or new versions of Python which change the bytecode format." msgstr "" -#: library/importlib.rst:1029 +#: library/importlib.rst:1061 msgid "The name of the module the loader will handle." msgstr "" -#: library/importlib.rst:1033 +#: library/importlib.rst:1065 msgid "The path to the bytecode file." msgstr "" -#: library/importlib.rst:1037 +#: library/importlib.rst:1069 msgid "Determines if the module is a package based on :attr:`path`." msgstr "" -#: library/importlib.rst:1041 +#: library/importlib.rst:1073 msgid "Returns the code object for :attr:`name` created from :attr:`path`." msgstr "" -#: library/importlib.rst:1045 +#: library/importlib.rst:1077 msgid "" "Returns ``None`` as bytecode files have no source when this loader is used." msgstr "" -#: library/importlib.rst:1060 +#: library/importlib.rst:1092 msgid "" "A concrete implementation of :class:`importlib.abc.ExecutionLoader` for " "extension modules." msgstr "" -#: library/importlib.rst:1063 +#: library/importlib.rst:1095 msgid "" "The *fullname* argument specifies the name of the module the loader is to " "support. The *path* argument is the path to the extension module's file." msgstr "" -#: library/importlib.rst:1070 +#: library/importlib.rst:1098 +msgid "" +"Note that, by default, importing an extension module will fail in " +"subinterpreters if it doesn't implement multi-phase init (see :pep:`489`), " +"even if it would otherwise import successfully." +msgstr "" + +#: library/importlib.rst:1104 +msgid "Multi-phase init is now required for use in subinterpreters." +msgstr "" + +#: library/importlib.rst:1109 msgid "Name of the module the loader supports." msgstr "" -#: library/importlib.rst:1074 +#: library/importlib.rst:1113 msgid "Path to the extension module." msgstr "" -#: library/importlib.rst:1078 +#: library/importlib.rst:1117 msgid "" "Creates the module object from the given specification in accordance with :" "pep:`489`." msgstr "" -#: library/importlib.rst:1085 +#: library/importlib.rst:1124 msgid "Initializes the given module object in accordance with :pep:`489`." msgstr "" -#: library/importlib.rst:1091 +#: library/importlib.rst:1130 msgid "" "Returns ``True`` if the file path points to a package's ``__init__`` module " "based on :attr:`EXTENSION_SUFFIXES`." msgstr "" -#: library/importlib.rst:1096 +#: library/importlib.rst:1135 msgid "Returns ``None`` as extension modules lack a code object." msgstr "" -#: library/importlib.rst:1100 +#: library/importlib.rst:1139 msgid "Returns ``None`` as extension modules do not have source code." msgstr "" -#: library/importlib.rst:1111 +#: library/importlib.rst:1150 msgid "" "A concrete implementation of :class:`importlib.abc.InspectLoader` for " "namespace packages. This is an alias for a private class and is only made " "public for introspecting the ``__loader__`` attribute on namespace packages::" msgstr "" -#: library/importlib.rst:1129 +#: library/importlib.rst:1168 msgid "" "A specification for a module's import-system-related state. This is " "typically exposed as the module's :attr:`__spec__` attribute. In the " @@ -1326,31 +1377,31 @@ msgid "" "reflected in the module's :attr:`__spec__.origin`, and vice versa." msgstr "" -#: library/importlib.rst:1143 +#: library/importlib.rst:1182 msgid "(:attr:`__name__`)" msgstr "" -#: library/importlib.rst:1145 +#: library/importlib.rst:1184 msgid "" "The module's fully qualified name. The :term:`finder` should always set this " "attribute to a non-empty string." msgstr "" -#: library/importlib.rst:1150 +#: library/importlib.rst:1189 msgid "(:attr:`__loader__`)" msgstr "" -#: library/importlib.rst:1152 +#: library/importlib.rst:1191 msgid "" "The :term:`loader` used to load the module. The :term:`finder` should always " "set this attribute." msgstr "" -#: library/importlib.rst:1157 +#: library/importlib.rst:1196 msgid "(:attr:`__file__`)" msgstr "" -#: library/importlib.rst:1159 +#: library/importlib.rst:1198 msgid "" "The location the :term:`loader` should use to load the module. For example, " "for modules loaded from a .py file this is the filename. The :term:`finder` " @@ -1359,11 +1410,11 @@ msgid "" "namespace packages), it should be set to ``None``." msgstr "" -#: library/importlib.rst:1167 +#: library/importlib.rst:1206 msgid "(:attr:`__path__`)" msgstr "" -#: library/importlib.rst:1169 +#: library/importlib.rst:1208 msgid "" "The list of locations where the package's submodules will be found. Most of " "the time this is a single directory. The :term:`finder` should set this " @@ -1373,66 +1424,66 @@ msgid "" "packages." msgstr "" -#: library/importlib.rst:1178 +#: library/importlib.rst:1217 msgid "" "The :term:`finder` may set this attribute to an object containing " "additional, module-specific data to use when loading the module. Otherwise " "it should be set to ``None``." msgstr "" -#: library/importlib.rst:1184 +#: library/importlib.rst:1223 msgid "(:attr:`__cached__`)" msgstr "" -#: library/importlib.rst:1186 +#: library/importlib.rst:1225 msgid "" "The filename of a compiled version of the module's code. The :term:`finder` " "should always set this attribute but it may be ``None`` for modules that do " "not need compiled code stored." msgstr "" -#: library/importlib.rst:1192 +#: library/importlib.rst:1231 msgid "(:attr:`__package__`)" msgstr "" -#: library/importlib.rst:1194 +#: library/importlib.rst:1233 msgid "" "(Read-only) The fully qualified name of the package the module is in (or the " "empty string for a top-level module). If the module is a package then this " "is the same as :attr:`name`." msgstr "" -#: library/importlib.rst:1201 +#: library/importlib.rst:1240 msgid "``True`` if the spec's :attr:`origin` refers to a loadable location," msgstr "" -#: library/importlib.rst:1201 +#: library/importlib.rst:1240 msgid "" "``False`` otherwise. This value impacts how :attr:`origin` is interpreted " "and how the module's :attr:`__file__` is populated." msgstr "" -#: library/importlib.rst:1206 +#: library/importlib.rst:1245 msgid ":mod:`importlib.util` -- Utility code for importers" msgstr "" -#: library/importlib.rst:1212 +#: library/importlib.rst:1251 msgid "**Source code:** :source:`Lib/importlib/util.py`" msgstr "" -#: library/importlib.rst:1216 +#: library/importlib.rst:1255 msgid "" "This module contains the various objects that help in the construction of " "an :term:`importer`." msgstr "" -#: library/importlib.rst:1221 +#: library/importlib.rst:1260 msgid "" "The bytes which represent the bytecode version number. If you need help with " "loading/writing bytecode then consider :class:`importlib.abc.SourceLoader`." msgstr "" -#: library/importlib.rst:1228 +#: library/importlib.rst:1267 msgid "" "Return the :pep:`3147`/:pep:`488` path to the byte-compiled file associated " "with the source *path*. For example, if *path* is ``/foo/bar/baz.py`` the " @@ -1442,7 +1493,7 @@ msgid "" "`NotImplementedError` will be raised)." msgstr "" -#: library/importlib.rst:1235 +#: library/importlib.rst:1274 msgid "" "The *optimization* parameter is used to specify the optimization level of " "the bytecode file. An empty string represents no optimization, so ``/foo/bar/" @@ -1455,7 +1506,7 @@ msgid "" "be alphanumeric, else :exc:`ValueError` is raised." msgstr "" -#: library/importlib.rst:1245 +#: library/importlib.rst:1284 msgid "" "The *debug_override* parameter is deprecated and can be used to override the " "system's value for ``__debug__``. A ``True`` value is the equivalent of " @@ -1464,17 +1515,17 @@ msgid "" "are not ``None`` then :exc:`TypeError` is raised." msgstr "" -#: library/importlib.rst:1253 +#: library/importlib.rst:1292 msgid "" "The *optimization* parameter was added and the *debug_override* parameter " "was deprecated." msgstr "" -#: library/importlib.rst:1273 library/importlib.rst:1423 +#: library/importlib.rst:1312 library/importlib.rst:1401 msgid "Accepts a :term:`path-like object`." msgstr "" -#: library/importlib.rst:1263 +#: library/importlib.rst:1302 msgid "" "Given the *path* to a :pep:`3147` file name, return the associated source " "code file path. For example, if *path* is ``/foo/bar/__pycache__/baz." @@ -1484,25 +1535,25 @@ msgid "" "cache_tag` is not defined, :exc:`NotImplementedError` is raised." msgstr "" -#: library/importlib.rst:1278 +#: library/importlib.rst:1317 msgid "" "Decode the given bytes representing source code and return it as a string " "with universal newlines (as required by :meth:`importlib.abc.InspectLoader." "get_source`)." msgstr "" -#: library/importlib.rst:1286 +#: library/importlib.rst:1325 msgid "Resolve a relative module name to an absolute one." msgstr "" -#: library/importlib.rst:1288 +#: library/importlib.rst:1327 msgid "" "If **name** has no leading dots, then **name** is simply returned. This " "allows for usage such as ``importlib.util.resolve_name('sys', __spec__." "parent)`` without doing a check to see if the **package** argument is needed." msgstr "" -#: library/importlib.rst:1293 +#: library/importlib.rst:1332 msgid "" ":exc:`ImportError` is raised if **name** is a relative module name but " "**package** is a false value (e.g. ``None`` or the empty string). :exc:" @@ -1510,13 +1561,13 @@ msgid "" "package (e.g. requesting ``..bacon`` from within the ``spam`` package)." msgstr "" -#: library/importlib.rst:1301 +#: library/importlib.rst:1340 msgid "" "To improve consistency with import statements, raise :exc:`ImportError` " "instead of :exc:`ValueError` for invalid relative import attempts." msgstr "" -#: library/importlib.rst:1308 +#: library/importlib.rst:1347 msgid "" "Find the :term:`spec ` for a module, optionally relative to the " "specified **package** name. If the module is in :data:`sys.modules`, then " @@ -1526,30 +1577,30 @@ msgid "" "if no spec is found." msgstr "" -#: library/importlib.rst:1315 +#: library/importlib.rst:1354 msgid "" "If **name** is for a submodule (contains a dot), the parent module is " "automatically imported." msgstr "" -#: library/importlib.rst:1318 +#: library/importlib.rst:1357 msgid "**name** and **package** work the same as for :func:`import_module`." msgstr "" -#: library/importlib.rst:1322 +#: library/importlib.rst:1361 msgid "" "Raises :exc:`ModuleNotFoundError` instead of :exc:`AttributeError` if " "**package** is in fact not a package (i.e. lacks a :attr:`__path__` " "attribute)." msgstr "" -#: library/importlib.rst:1329 +#: library/importlib.rst:1368 msgid "" "Create a new module based on **spec** and :meth:`spec.loader.create_module " "`." msgstr "" -#: library/importlib.rst:1332 +#: library/importlib.rst:1371 msgid "" "If :meth:`spec.loader.create_module ` " "does not return ``None``, then any pre-existing attributes will not be " @@ -1557,85 +1608,14 @@ msgid "" "accessing **spec** or setting an attribute on the module." msgstr "" -#: library/importlib.rst:1337 +#: library/importlib.rst:1376 msgid "" "This function is preferred over using :class:`types.ModuleType` to create a " "new module as **spec** is used to set as many import-controlled attributes " "on the module as possible." msgstr "" -#: library/importlib.rst:1345 -msgid "" -"A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` to handle " -"selecting the proper module object to load with. The decorated method is " -"expected to have a call signature taking two positional arguments (e.g. " -"``load_module(self, module)``) for which the second argument will be the " -"module **object** to be used by the loader. Note that the decorator will not " -"work on static methods because of the assumption of two arguments." -msgstr "" - -#: library/importlib.rst:1354 -msgid "" -"The decorated method will take in the **name** of the module to be loaded as " -"expected for a :term:`loader`. If the module is not found in :data:`sys." -"modules` then a new one is constructed. Regardless of where the module came " -"from, :attr:`__loader__` set to **self** and :attr:`__package__` is set " -"based on what :meth:`importlib.abc.InspectLoader.is_package` returns (if " -"available). These attributes are set unconditionally to support reloading." -msgstr "" - -#: library/importlib.rst:1362 -msgid "" -"If an exception is raised by the decorated method and a module was added to :" -"data:`sys.modules`, then the module will be removed to prevent a partially " -"initialized module from being in left in :data:`sys.modules`. If the module " -"was already in :data:`sys.modules` then it is left alone." -msgstr "" - -#: library/importlib.rst:1367 -msgid "" -":attr:`__loader__` and :attr:`__package__` are automatically set (when " -"possible)." -msgstr "" - -#: library/importlib.rst:1371 -msgid "" -"Set :attr:`__name__`, :attr:`__loader__` :attr:`__package__` unconditionally " -"to support reloading." -msgstr "" - -#: library/importlib.rst:1375 -msgid "" -"The import machinery now directly performs all the functionality provided by " -"this function." -msgstr "" - -#: library/importlib.rst:1381 -msgid "" -"A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` to set the :" -"attr:`__loader__` attribute on the returned module. If the attribute is " -"already set the decorator does nothing. It is assumed that the first " -"positional argument to the wrapped method (i.e. ``self``) is what :attr:" -"`__loader__` should be set to." -msgstr "" - -#: library/importlib.rst:1388 -msgid "" -"Set ``__loader__`` if set to ``None``, as if the attribute does not exist." -msgstr "" - -#: library/importlib.rst:1401 -msgid "The import machinery takes care of this automatically." -msgstr "" - -#: library/importlib.rst:1397 -msgid "" -"A :term:`decorator` for :meth:`importlib.abc.Loader.load_module` to set the :" -"attr:`__package__` attribute on the returned module. If :attr:`__package__` " -"is set and has a value other than ``None`` it will not be changed." -msgstr "" - -#: library/importlib.rst:1406 +#: library/importlib.rst:1384 msgid "" "A factory function for creating a :class:`~importlib.machinery.ModuleSpec` " "instance based on a loader. The parameters have the same meaning as they do " @@ -1644,7 +1624,7 @@ msgid "" "spec." msgstr "" -#: library/importlib.rst:1416 +#: library/importlib.rst:1394 msgid "" "A factory function for creating a :class:`~importlib.machinery.ModuleSpec` " "instance based on the path to a file. Missing information will be filled in " @@ -1652,20 +1632,49 @@ msgid "" "module will be file-based." msgstr "" -#: library/importlib.rst:1428 +#: library/importlib.rst:1406 msgid "" "Return the hash of *source_bytes* as bytes. A hash-based ``.pyc`` file " "embeds the :func:`source_hash` of the corresponding source file's contents " "in its header." msgstr "" -#: library/importlib.rst:1436 +#: library/importlib.rst:1414 +msgid "" +"A context manager that can temporarily skip the compatibility check for " +"extension modules. By default the check is enabled and will fail when a " +"single-phase init module is imported in a subinterpreter. It will also fail " +"for a multi-phase init module that doesn't explicitly support a per-" +"interpreter GIL, when imported in an interpreter with its own GIL." +msgstr "" + +#: library/importlib.rst:1421 +msgid "" +"Note that this function is meant to accommodate an unusual case; one which " +"is likely to eventually go away. There's is a pretty good chance this is " +"not what you were looking for." +msgstr "" + +#: library/importlib.rst:1425 +msgid "" +"You can get the same effect as this function by implementing the basic " +"interface of multi-phase init (:pep:`489`) and lying about support for " +"multiple interpreters (or per-interpreter GIL)." +msgstr "" + +#: library/importlib.rst:1430 +msgid "" +"Using this function to disable the check can lead to unexpected behavior and " +"even crashes. It should only be used during extension module development." +msgstr "" + +#: library/importlib.rst:1438 msgid "" "A class which postpones the execution of the loader of a module until the " "module has an attribute accessed." msgstr "" -#: library/importlib.rst:1439 +#: library/importlib.rst:1441 msgid "" "This class **only** works with loaders that define :meth:`~importlib.abc." "Loader.exec_module` as control over what module type is used for the module " @@ -1678,7 +1687,7 @@ msgid "" "raised if such a substitution is detected." msgstr "" -#: library/importlib.rst:1450 +#: library/importlib.rst:1452 msgid "" "For projects where startup time is critical, this class allows for " "potentially minimizing the cost of loading a module if it is never used. For " @@ -1687,70 +1696,70 @@ msgid "" "postponed and thus occurring out of context." msgstr "" -#: library/importlib.rst:1458 +#: library/importlib.rst:1460 msgid "" "Began calling :meth:`~importlib.abc.Loader.create_module`, removing the " "compatibility warning for :class:`importlib.machinery.BuiltinImporter` and :" "class:`importlib.machinery.ExtensionFileLoader`." msgstr "" -#: library/importlib.rst:1465 +#: library/importlib.rst:1467 msgid "" "A class method which returns a callable that creates a lazy loader. This is " "meant to be used in situations where the loader is passed by class instead " "of by instance. ::" msgstr "" -#: library/importlib.rst:1478 +#: library/importlib.rst:1480 msgid "Examples" msgstr "" -#: library/importlib.rst:1481 +#: library/importlib.rst:1483 msgid "Importing programmatically" msgstr "" -#: library/importlib.rst:1483 +#: library/importlib.rst:1485 msgid "" "To programmatically import a module, use :func:`importlib.import_module`. ::" msgstr "" -#: library/importlib.rst:1492 +#: library/importlib.rst:1494 msgid "Checking if a module can be imported" msgstr "" -#: library/importlib.rst:1494 +#: library/importlib.rst:1496 msgid "" "If you need to find out if a module can be imported without actually doing " "the import, then you should use :func:`importlib.util.find_spec`." msgstr "" -#: library/importlib.rst:1497 +#: library/importlib.rst:1499 msgid "" "Note that if ``name`` is a submodule (contains a dot), :func:`importlib.util." "find_spec` will import the parent module. ::" msgstr "" -#: library/importlib.rst:1520 +#: library/importlib.rst:1522 msgid "Importing a source file directly" msgstr "" -#: library/importlib.rst:1522 +#: library/importlib.rst:1524 msgid "To import a Python source file directly, use the following recipe::" msgstr "" -#: library/importlib.rst:1539 +#: library/importlib.rst:1541 msgid "Implementing lazy imports" msgstr "" -#: library/importlib.rst:1541 +#: library/importlib.rst:1543 msgid "The example below shows how to implement lazy imports::" msgstr "" -#: library/importlib.rst:1563 +#: library/importlib.rst:1565 msgid "Setting up an importer" msgstr "" -#: library/importlib.rst:1565 +#: library/importlib.rst:1567 msgid "" "For deep customizations of import, you typically want to implement an :term:" "`importer`. This means managing both the :term:`finder` and :term:`loader` " @@ -1764,11 +1773,11 @@ msgid "" "for the appropriate classes defined within this package)::" msgstr "" -#: library/importlib.rst:1597 +#: library/importlib.rst:1599 msgid "Approximating :func:`importlib.import_module`" msgstr "" -#: library/importlib.rst:1599 +#: library/importlib.rst:1601 msgid "" "Import itself is implemented in Python code, making it possible to expose " "most of the import machinery through importlib. The following helps " @@ -1776,10 +1785,10 @@ msgid "" "approximate implementation of :func:`importlib.import_module`::" msgstr "" -#: library/importlib.rst:551 +#: library/importlib.rst:443 msgid "universal newlines" msgstr "" -#: library/importlib.rst:551 +#: library/importlib.rst:443 msgid "importlib.abc.InspectLoader.get_source method" msgstr "" diff --git a/library/importlib.resources.abc.po b/library/importlib.resources.abc.po index a68625315..0b27eef53 100644 --- a/library/importlib.resources.abc.po +++ b/library/importlib.resources.abc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -64,33 +64,37 @@ msgid "" "with this ABC should only be returned when the specified module is a package." msgstr "" -#: library/importlib.resources.abc.rst:50 +#: library/importlib.resources.abc.rst:48 +msgid "Use :class:`importlib.resources.abc.TraversableResources` instead." +msgstr "" + +#: library/importlib.resources.abc.rst:51 msgid "" "Returns an opened, :term:`file-like object` for binary reading of the " "*resource*." msgstr "" -#: library/importlib.resources.abc.rst:53 +#: library/importlib.resources.abc.rst:54 msgid "If the resource cannot be found, :exc:`FileNotFoundError` is raised." msgstr "" -#: library/importlib.resources.abc.rst:58 +#: library/importlib.resources.abc.rst:59 msgid "Returns the file system path to the *resource*." msgstr "" -#: library/importlib.resources.abc.rst:60 +#: library/importlib.resources.abc.rst:61 msgid "" "If the resource does not concretely exist on the file system, raise :exc:" "`FileNotFoundError`." msgstr "" -#: library/importlib.resources.abc.rst:65 +#: library/importlib.resources.abc.rst:66 msgid "" "Returns ``True`` if the named *name* is considered a resource. :exc:" "`FileNotFoundError` is raised if *name* does not exist." msgstr "" -#: library/importlib.resources.abc.rst:70 +#: library/importlib.resources.abc.rst:71 msgid "" "Returns an :term:`iterable` of strings over the contents of the package. Do " "note that it is not required that all names returned by the iterator be " @@ -98,7 +102,7 @@ msgid "" "`is_resource` would be false." msgstr "" -#: library/importlib.resources.abc.rst:76 +#: library/importlib.resources.abc.rst:77 msgid "" "Allowing non-resource names to be returned is to allow for situations where " "how a package and its resources are stored are known a priori and the non-" @@ -107,64 +111,64 @@ msgid "" "stored on the file system then those subdirectory names can be used directly." msgstr "" -#: library/importlib.resources.abc.rst:84 +#: library/importlib.resources.abc.rst:85 msgid "The abstract method returns an iterable of no items." msgstr "" -#: library/importlib.resources.abc.rst:89 +#: library/importlib.resources.abc.rst:90 msgid "" "An object with a subset of :class:`pathlib.Path` methods suitable for " "traversing directories and opening files." msgstr "" -#: library/importlib.resources.abc.rst:92 +#: library/importlib.resources.abc.rst:93 msgid "" "For a representation of the object on the file-system, use :meth:`importlib." "resources.as_file`." msgstr "" -#: library/importlib.resources.abc.rst:99 +#: library/importlib.resources.abc.rst:98 msgid "Abstract. The base name of this object without any parent references." msgstr "" -#: library/importlib.resources.abc.rst:103 +#: library/importlib.resources.abc.rst:102 msgid "Yield Traversable objects in self." msgstr "" -#: library/importlib.resources.abc.rst:107 +#: library/importlib.resources.abc.rst:106 msgid "Return True if self is a directory." msgstr "" -#: library/importlib.resources.abc.rst:111 +#: library/importlib.resources.abc.rst:110 msgid "Return True if self is a file." msgstr "" -#: library/importlib.resources.abc.rst:115 -#: library/importlib.resources.abc.rst:119 +#: library/importlib.resources.abc.rst:114 +#: library/importlib.resources.abc.rst:118 msgid "Return Traversable child in self." msgstr "" -#: library/importlib.resources.abc.rst:123 +#: library/importlib.resources.abc.rst:122 msgid "" "*mode* may be 'r' or 'rb' to open as text or binary. Return a handle " "suitable for reading (same as :attr:`pathlib.Path.open`)." msgstr "" -#: library/importlib.resources.abc.rst:126 +#: library/importlib.resources.abc.rst:125 msgid "" "When opening as text, accepts encoding parameters such as those accepted by :" "class:`io.TextIOWrapper`." msgstr "" -#: library/importlib.resources.abc.rst:131 +#: library/importlib.resources.abc.rst:130 msgid "Read contents of self as bytes." msgstr "" -#: library/importlib.resources.abc.rst:135 +#: library/importlib.resources.abc.rst:134 msgid "Read contents of self as text." msgstr "" -#: library/importlib.resources.abc.rst:140 +#: library/importlib.resources.abc.rst:139 msgid "" "An abstract base class for resource readers capable of serving the :meth:" "`importlib.resources.files` interface. Subclasses :class:`ResourceReader` " @@ -173,13 +177,13 @@ msgid "" "TraversableResources` also supplies :class:`!ResourceReader`." msgstr "" -#: library/importlib.resources.abc.rst:147 +#: library/importlib.resources.abc.rst:146 msgid "" "Loaders that wish to support resource reading are expected to implement this " "interface." msgstr "" -#: library/importlib.resources.abc.rst:154 +#: library/importlib.resources.abc.rst:151 msgid "" "Returns a :class:`importlib.resources.abc.Traversable` object for the loaded " "package." diff --git a/library/importlib.resources.po b/library/importlib.resources.po index c44f19557..481613b41 100644 --- a/library/importlib.resources.po +++ b/library/importlib.resources.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -28,12 +28,26 @@ msgstr "" #: library/importlib.resources.rst:13 msgid "" "This module leverages Python's import system to provide access to " -"*resources* within *packages*. If you can import a package, you can access " -"resources within that package. Resources can be opened or read, in either " -"binary or text mode." +"*resources* within *packages*." msgstr "" -#: library/importlib.resources.rst:18 +#: library/importlib.resources.rst:16 +msgid "" +"\"Resources\" are file-like resources associated with a module or package in " +"Python. The resources may be contained directly in a package, within a " +"subdirectory contained in that package, or adjacent to modules outside a " +"package. Resources may be text or binary. As a result, Python module sources " +"(.py) of a package and compilation artifacts (pycache) are technically de-" +"facto resources of that package. In practice, however, resources are " +"primarily those non-Python artifacts exposed specifically by the package " +"author." +msgstr "" + +#: library/importlib.resources.rst:25 +msgid "Resources can be opened or read in either binary or text mode." +msgstr "" + +#: library/importlib.resources.rst:27 msgid "" "Resources are roughly akin to files inside directories, though it's " "important to keep in mind that this is just a metaphor. Resources and " @@ -42,7 +56,7 @@ msgid "" "zip file using :py:mod:`zipimport`." msgstr "" -#: library/importlib.resources.rst:26 +#: library/importlib.resources.rst:35 msgid "" "This module provides functionality similar to `pkg_resources `_ `Basic Resource " @@ -52,7 +66,7 @@ msgid "" "consistent semantics." msgstr "" -#: library/importlib.resources.rst:34 +#: library/importlib.resources.rst:43 msgid "" "The standalone backport of this module provides more information on `using " "importlib.resources `_." msgstr "" -#: library/importlib.resources.rst:40 +#: library/importlib.resources.rst:49 msgid "" ":class:`Loaders ` that wish to support resource " "reading should implement a ``get_resource_reader(fullname)`` method as " "specified by :class:`importlib.resources.abc.ResourceReader`." msgstr "" -#: library/importlib.resources.rst:46 +#: library/importlib.resources.rst:55 msgid "" -"Whenever a function accepts a ``Package`` argument, you can pass in either " -"a :class:`module object ` or a module name as a string. " -"You can only pass module objects whose ``__spec__." -"submodule_search_locations`` is not ``None``." +"Represents an anchor for resources, either a :class:`module object ` or a module name as a string. Defined as ``Union[str, " +"ModuleType]``." msgstr "" -#: library/importlib.resources.rst:51 -msgid "The ``Package`` type is defined as ``Union[str, ModuleType]``." +#: library/importlib.resources.rst:61 +msgid "" +"Returns a :class:`~importlib.resources.abc.Traversable` object representing " +"the resource container (think directory) and its resources (think files). A " +"Traversable may contain other containers (think subdirectories)." msgstr "" -#: library/importlib.resources.rst:55 +#: library/importlib.resources.rst:66 msgid "" -"Returns a :class:`~importlib.resources.abc.Traversable` object representing " -"the resource container for the package (think directory) and its resources " -"(think files). A Traversable may contain other containers (think " -"subdirectories)." +"*anchor* is an optional :data:`Anchor`. If the anchor is a package, " +"resources are resolved from that package. If a module, resources are " +"resolved adjacent to that module (in the same package or the package root). " +"If the anchor is omitted, the caller's module is used." msgstr "" -#: library/importlib.resources.rst:60 +#: library/importlib.resources.rst:74 msgid "" -"*package* is either a name or a module object which conforms to the :data:" -"`Package` requirements." +"\"package\" parameter was renamed to \"anchor\". \"anchor\" can now be a non-" +"package module and if omitted will default to the caller's module. " +"\"package\" is still accepted for compatibility but will raise a " +"DeprecationWarning. Consider passing the anchor positionally or using " +"``importlib_resources >= 5.10`` for a compatible interface on older Pythons." msgstr "" -#: library/importlib.resources.rst:67 +#: library/importlib.resources.rst:84 msgid "" "Given a :class:`~importlib.resources.abc.Traversable` object representing a " -"file, typically from :func:`importlib.resources.files`, return a context " -"manager for use in a :keyword:`with` statement. The context manager provides " -"a :class:`pathlib.Path` object." +"file or directory, typically from :func:`importlib.resources.files`, return " +"a context manager for use in a :keyword:`with` statement. The context " +"manager provides a :class:`pathlib.Path` object." msgstr "" -#: library/importlib.resources.rst:72 +#: library/importlib.resources.rst:89 msgid "" -"Exiting the context manager cleans up any temporary file created when the " -"resource was extracted from e.g. a zip file." +"Exiting the context manager cleans up any temporary file or directory " +"created when the resource was extracted from e.g. a zip file." msgstr "" -#: library/importlib.resources.rst:75 +#: library/importlib.resources.rst:92 msgid "" "Use ``as_file`` when the Traversable methods (``read_text``, etc) are " -"insufficient and an actual file on the file system is required." +"insufficient and an actual file or directory on the file system is required." +msgstr "" + +#: library/importlib.resources.rst:98 +msgid "Added support for ``traversable`` representing a directory." msgstr "" -#: library/importlib.resources.rst:82 +#: library/importlib.resources.rst:103 msgid "Deprecated functions" msgstr "" -#: library/importlib.resources.rst:84 +#: library/importlib.resources.rst:105 msgid "" "An older, deprecated set of functions is still available, but is scheduled " "for removal in a future version of Python. The main drawback of these " @@ -125,21 +148,33 @@ msgid "" "are located directly within a *package*." msgstr "" -#: library/importlib.resources.rst:91 +#: library/importlib.resources.rst:112 +msgid "" +"Whenever a function accepts a ``Package`` argument, you can pass in either " +"a :class:`module object ` or a module name as a string. " +"You can only pass module objects whose ``__spec__." +"submodule_search_locations`` is not ``None``." +msgstr "" + +#: library/importlib.resources.rst:117 +msgid "The ``Package`` type is defined as ``Union[str, ModuleType]``." +msgstr "" + +#: library/importlib.resources.rst:124 msgid "" "For *resource* arguments of the functions below, you can pass in the name of " "a resource as a string or a :class:`path-like object `." msgstr "" -#: library/importlib.resources.rst:95 +#: library/importlib.resources.rst:128 msgid "The ``Resource`` type is defined as ``Union[str, os.PathLike]``." msgstr "" -#: library/importlib.resources.rst:99 +#: library/importlib.resources.rst:133 msgid "Open for binary reading the *resource* within *package*." msgstr "" -#: library/importlib.resources.rst:101 +#: library/importlib.resources.rst:135 msgid "" "*package* is either a name or a module object which conforms to the " "``Package`` requirements. *resource* is the name of the resource to open " @@ -148,19 +183,19 @@ msgid "" "BinaryIO`` instance, a binary I/O stream open for reading." msgstr "" -#: library/importlib.resources.rst:109 library/importlib.resources.rst:130 -#: library/importlib.resources.rst:148 library/importlib.resources.rst:167 -#: library/importlib.resources.rst:203 library/importlib.resources.rst:219 +#: library/importlib.resources.rst:143 library/importlib.resources.rst:164 +#: library/importlib.resources.rst:182 library/importlib.resources.rst:201 +#: library/importlib.resources.rst:237 library/importlib.resources.rst:253 msgid "Calls to this function can be replaced by::" msgstr "" -#: library/importlib.resources.rst:116 +#: library/importlib.resources.rst:150 msgid "" "Open for text reading the *resource* within *package*. By default, the " "resource is opened for reading as UTF-8." msgstr "" -#: library/importlib.resources.rst:119 +#: library/importlib.resources.rst:153 msgid "" "*package* is either a name or a module object which conforms to the " "``Package`` requirements. *resource* is the name of the resource to open " @@ -169,18 +204,18 @@ msgid "" "same meaning as with built-in :func:`open`." msgstr "" -#: library/importlib.resources.rst:125 +#: library/importlib.resources.rst:159 msgid "" "This function returns a ``typing.TextIO`` instance, a text I/O stream open " "for reading." msgstr "" -#: library/importlib.resources.rst:137 +#: library/importlib.resources.rst:171 msgid "" "Read and return the contents of the *resource* within *package* as ``bytes``." msgstr "" -#: library/importlib.resources.rst:140 +#: library/importlib.resources.rst:174 msgid "" "*package* is either a name or a module object which conforms to the " "``Package`` requirements. *resource* is the name of the resource to open " @@ -189,13 +224,13 @@ msgid "" "contents of the resource as :class:`bytes`." msgstr "" -#: library/importlib.resources.rst:155 +#: library/importlib.resources.rst:189 msgid "" "Read and return the contents of *resource* within *package* as a ``str``. By " "default, the contents are read as strict UTF-8." msgstr "" -#: library/importlib.resources.rst:158 +#: library/importlib.resources.rst:192 msgid "" "*package* is either a name or a module object which conforms to the " "``Package`` requirements. *resource* is the name of the resource to open " @@ -205,20 +240,20 @@ msgid "" "contents of the resource as :class:`str`." msgstr "" -#: library/importlib.resources.rst:174 +#: library/importlib.resources.rst:208 msgid "" "Return the path to the *resource* as an actual file system path. This " "function returns a context manager for use in a :keyword:`with` statement. " "The context manager provides a :class:`pathlib.Path` object." msgstr "" -#: library/importlib.resources.rst:178 +#: library/importlib.resources.rst:212 msgid "" "Exiting the context manager cleans up any temporary file created when the " "resource needs to be extracted from e.g. a zip file." msgstr "" -#: library/importlib.resources.rst:181 +#: library/importlib.resources.rst:215 msgid "" "*package* is either a name or a module object which conforms to the " "``Package`` requirements. *resource* is the name of the resource to open " @@ -226,11 +261,11 @@ msgid "" "resources (i.e. it cannot be a directory)." msgstr "" -#: library/importlib.resources.rst:188 +#: library/importlib.resources.rst:222 msgid "Calls to this function can be replaced using :func:`as_file`::" msgstr "" -#: library/importlib.resources.rst:195 +#: library/importlib.resources.rst:229 msgid "" "Return ``True`` if there is a resource named *name* in the package, " "otherwise ``False``. This function does not consider directories to be " @@ -238,14 +273,14 @@ msgid "" "the ``Package`` requirements." msgstr "" -#: library/importlib.resources.rst:210 +#: library/importlib.resources.rst:244 msgid "" "Return an iterable over the named items within the package. The iterable " "returns :class:`str` resources (e.g. files) and non-resources (e.g. " "directories). The iterable does not recurse into subdirectories." msgstr "" -#: library/importlib.resources.rst:214 +#: library/importlib.resources.rst:248 msgid "" "*package* is either a name or a module object which conforms to the " "``Package`` requirements." diff --git a/library/inspect.po b/library/inspect.po index 95f5fef2b..dde29abae 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -619,97 +619,123 @@ msgstr "" #: library/inspect.rst:346 msgid "" "Return ``True`` if the object is a :term:`coroutine function` (a function " -"defined with an :keyword:`async def` syntax)." +"defined with an :keyword:`async def` syntax), a :func:`functools.partial` " +"wrapping a :term:`coroutine function`, or a sync function marked with :func:" +"`markcoroutinefunction`." msgstr "" -#: library/inspect.rst:351 +#: library/inspect.rst:353 msgid "" "Functions wrapped in :func:`functools.partial` now return ``True`` if the " "wrapped function is a :term:`coroutine function`." msgstr "" -#: library/inspect.rst:358 +#: library/inspect.rst:357 +msgid "" +"Sync functions marked with :func:`markcoroutinefunction` now return ``True``." +msgstr "" + +#: library/inspect.rst:364 +msgid "" +"Decorator to mark a callable as a :term:`coroutine function` if it would not " +"otherwise be detected by :func:`iscoroutinefunction`." +msgstr "" + +#: library/inspect.rst:367 +msgid "" +"This may be of use for sync functions that return a :term:`coroutine`, if " +"the function is passed to an API that requires :func:`iscoroutinefunction`." +msgstr "" + +#: library/inspect.rst:370 +msgid "" +"When possible, using an :keyword:`async def` function is preferred. Also " +"acceptable is calling the function and testing the return with :func:" +"`iscoroutine`." +msgstr "" + +#: library/inspect.rst:379 msgid "" "Return ``True`` if the object is a :term:`coroutine` created by an :keyword:" "`async def` function." msgstr "" -#: library/inspect.rst:366 +#: library/inspect.rst:387 msgid "" "Return ``True`` if the object can be used in :keyword:`await` expression." msgstr "" -#: library/inspect.rst:368 +#: library/inspect.rst:389 msgid "" "Can also be used to distinguish generator-based coroutines from regular " "generators::" msgstr "" -#: library/inspect.rst:385 +#: library/inspect.rst:406 msgid "" "Return ``True`` if the object is an :term:`asynchronous generator` function, " "for example::" msgstr "" -#: library/inspect.rst:396 +#: library/inspect.rst:417 msgid "" "Functions wrapped in :func:`functools.partial` now return ``True`` if the " "wrapped function is a :term:`asynchronous generator` function." msgstr "" -#: library/inspect.rst:403 +#: library/inspect.rst:424 msgid "" "Return ``True`` if the object is an :term:`asynchronous generator iterator` " "created by an :term:`asynchronous generator` function." msgstr "" -#: library/inspect.rst:410 +#: library/inspect.rst:431 msgid "Return ``True`` if the object is a traceback." msgstr "" -#: library/inspect.rst:415 +#: library/inspect.rst:436 msgid "Return ``True`` if the object is a frame." msgstr "" -#: library/inspect.rst:420 +#: library/inspect.rst:441 msgid "Return ``True`` if the object is a code." msgstr "" -#: library/inspect.rst:425 +#: library/inspect.rst:446 msgid "" "Return ``True`` if the object is a built-in function or a bound built-in " "method." msgstr "" -#: library/inspect.rst:430 +#: library/inspect.rst:451 msgid "" "Return ``True`` if the type of object is a :class:`~types.MethodWrapperType`." msgstr "" -#: library/inspect.rst:432 +#: library/inspect.rst:453 msgid "" "These are instances of :class:`~types.MethodWrapperType`, such as :meth:" "`~object.__str__`, :meth:`~object.__eq__` and :meth:`~object.__repr__`." msgstr "" -#: library/inspect.rst:440 +#: library/inspect.rst:461 msgid "" "Return ``True`` if the object is a user-defined or built-in function or " "method." msgstr "" -#: library/inspect.rst:445 +#: library/inspect.rst:466 msgid "Return ``True`` if the object is an abstract base class." msgstr "" -#: library/inspect.rst:450 +#: library/inspect.rst:471 msgid "" "Return ``True`` if the object is a method descriptor, but not if :func:" "`ismethod`, :func:`isclass`, :func:`isfunction` or :func:`isbuiltin` are " "true." msgstr "" -#: library/inspect.rst:454 +#: library/inspect.rst:475 msgid "" "This, for example, is true of ``int.__add__``. An object passing this test " "has a :meth:`~object.__get__` method but not a :meth:`~object.__set__` " @@ -717,7 +743,7 @@ msgid "" "__name__` attribute is usually sensible, and :attr:`__doc__` often is." msgstr "" -#: library/inspect.rst:460 +#: library/inspect.rst:481 msgid "" "Methods implemented via descriptors that also pass one of the other tests " "return ``False`` from the :func:`ismethoddescriptor` test, simply because " @@ -725,11 +751,11 @@ msgid "" "`__func__` attribute (etc) when an object passes :func:`ismethod`." msgstr "" -#: library/inspect.rst:468 +#: library/inspect.rst:489 msgid "Return ``True`` if the object is a data descriptor." msgstr "" -#: library/inspect.rst:470 +#: library/inspect.rst:491 msgid "" "Data descriptors have a :attr:`~object.__set__` or a :attr:`~object." "__delete__` method. Examples are properties (defined in Python), getsets, " @@ -740,33 +766,33 @@ msgid "" "and members have both of these attributes), but this is not guaranteed." msgstr "" -#: library/inspect.rst:481 +#: library/inspect.rst:502 msgid "Return ``True`` if the object is a getset descriptor." msgstr "" -#: library/inspect.rst:485 +#: library/inspect.rst:506 msgid "" "getsets are attributes defined in extension modules via :c:type:" "`PyGetSetDef` structures. For Python implementations without such types, " "this method will always return ``False``." msgstr "" -#: library/inspect.rst:492 +#: library/inspect.rst:513 msgid "Return ``True`` if the object is a member descriptor." msgstr "" -#: library/inspect.rst:496 +#: library/inspect.rst:517 msgid "" "Member descriptors are attributes defined in extension modules via :c:type:" "`PyMemberDef` structures. For Python implementations without such types, " "this method will always return ``False``." msgstr "" -#: library/inspect.rst:504 +#: library/inspect.rst:525 msgid "Retrieving source code" msgstr "" -#: library/inspect.rst:508 +#: library/inspect.rst:529 msgid "" "Get the documentation string for an object, cleaned up with :func:" "`cleandoc`. If the documentation string for an object is not provided and " @@ -775,11 +801,11 @@ msgid "" "documentation string is invalid or missing." msgstr "" -#: library/inspect.rst:514 +#: library/inspect.rst:535 msgid "Documentation strings are now inherited if not overridden." msgstr "" -#: library/inspect.rst:520 +#: library/inspect.rst:541 msgid "" "Return in a single string any lines of comments immediately preceding the " "object's source code (for a class, function, or method), or at the top of " @@ -788,27 +814,27 @@ msgid "" "been defined in C or the interactive shell." msgstr "" -#: library/inspect.rst:529 +#: library/inspect.rst:550 msgid "" "Return the name of the (text or binary) file in which an object was defined. " "This will fail with a :exc:`TypeError` if the object is a built-in module, " "class, or function." msgstr "" -#: library/inspect.rst:536 +#: library/inspect.rst:557 msgid "" "Try to guess which module an object was defined in. Return ``None`` if the " "module cannot be determined." msgstr "" -#: library/inspect.rst:542 +#: library/inspect.rst:563 msgid "" "Return the name of the Python source file in which an object was defined or " "``None`` if no way can be identified to get the source. This will fail with " "a :exc:`TypeError` if the object is a built-in module, class, or function." msgstr "" -#: library/inspect.rst:550 +#: library/inspect.rst:571 msgid "" "Return a list of source lines and starting line number for an object. The " "argument may be a module, class, method, function, traceback, frame, or code " @@ -819,13 +845,13 @@ msgid "" "built-in module, class, or function." msgstr "" -#: library/inspect.rst:573 +#: library/inspect.rst:594 msgid "" ":exc:`OSError` is raised instead of :exc:`IOError`, now an alias of the " "former." msgstr "" -#: library/inspect.rst:566 +#: library/inspect.rst:587 msgid "" "Return the text of the source code for an object. The argument may be a " "module, class, method, function, traceback, frame, or code object. The " @@ -834,13 +860,13 @@ msgid "" "object is a built-in module, class, or function." msgstr "" -#: library/inspect.rst:580 +#: library/inspect.rst:601 msgid "" "Clean up indentation from docstrings that are indented to line up with " "blocks of code." msgstr "" -#: library/inspect.rst:583 +#: library/inspect.rst:604 msgid "" "All leading whitespace is removed from the first line. Any leading " "whitespace that can be uniformly removed from the second line onwards is " @@ -848,28 +874,28 @@ msgid "" "Also, all tabs are expanded to spaces." msgstr "" -#: library/inspect.rst:592 +#: library/inspect.rst:613 msgid "Introspecting callables with the Signature object" msgstr "" -#: library/inspect.rst:596 +#: library/inspect.rst:617 msgid "" "The Signature object represents the call signature of a callable object and " "its return annotation. To retrieve a Signature object, use the :func:" "`signature` function." msgstr "" -#: library/inspect.rst:602 +#: library/inspect.rst:623 msgid "Return a :class:`Signature` object for the given ``callable``::" msgstr "" -#: library/inspect.rst:619 +#: library/inspect.rst:640 msgid "" "Accepts a wide range of Python callables, from plain functions and classes " "to :func:`functools.partial` objects." msgstr "" -#: library/inspect.rst:622 +#: library/inspect.rst:643 msgid "" "For objects defined in modules using stringized annotations (``from " "__future__ import annotations``), :func:`signature` will attempt to " @@ -880,7 +906,7 @@ msgid "" "instructions on how to use these parameters." msgstr "" -#: library/inspect.rst:631 +#: library/inspect.rst:652 msgid "" "Raises :exc:`ValueError` if no signature can be provided, and :exc:" "`TypeError` if that type of object is not supported. Also, if the " @@ -889,39 +915,39 @@ msgid "" "exception." msgstr "" -#: library/inspect.rst:637 +#: library/inspect.rst:658 msgid "" "A slash(/) in the signature of a function denotes that the parameters prior " "to it are positional-only. For more info, see :ref:`the FAQ entry on " "positional-only parameters `." msgstr "" -#: library/inspect.rst:641 +#: library/inspect.rst:662 msgid "" "``follow_wrapped`` parameter. Pass ``False`` to get a signature of " "``callable`` specifically (``callable.__wrapped__`` will not be used to " "unwrap decorated callables.)" msgstr "" -#: library/inspect.rst:646 +#: library/inspect.rst:667 msgid "``globals``, ``locals``, and ``eval_str`` parameters." msgstr "" -#: library/inspect.rst:651 +#: library/inspect.rst:672 msgid "" "Some callables may not be introspectable in certain implementations of " "Python. For example, in CPython, some built-in functions defined in C " "provide no metadata about their arguments." msgstr "" -#: library/inspect.rst:658 +#: library/inspect.rst:679 msgid "" "A Signature object represents the call signature of a function and its " "return annotation. For each parameter accepted by the function it stores a :" "class:`Parameter` object in its :attr:`parameters` collection." msgstr "" -#: library/inspect.rst:662 +#: library/inspect.rst:683 msgid "" "The optional *parameters* argument is a sequence of :class:`Parameter` " "objects, which is validated to check that there are no parameters with " @@ -930,54 +956,54 @@ msgid "" "defaults follow parameters without defaults." msgstr "" -#: library/inspect.rst:668 +#: library/inspect.rst:689 msgid "" "The optional *return_annotation* argument, can be an arbitrary Python " "object, is the \"return\" annotation of the callable." msgstr "" -#: library/inspect.rst:671 +#: library/inspect.rst:692 msgid "" "Signature objects are *immutable*. Use :meth:`Signature.replace` to make a " "modified copy." msgstr "" -#: library/inspect.rst:674 +#: library/inspect.rst:695 msgid "Signature objects are picklable and :term:`hashable`." msgstr "" -#: library/inspect.rst:679 +#: library/inspect.rst:700 msgid "A special class-level marker to specify absence of a return annotation." msgstr "" -#: library/inspect.rst:683 +#: library/inspect.rst:704 msgid "" "An ordered mapping of parameters' names to the corresponding :class:" "`Parameter` objects. Parameters appear in strict definition order, " "including keyword-only parameters." msgstr "" -#: library/inspect.rst:1012 +#: library/inspect.rst:1034 msgid "" "Python only explicitly guaranteed that it preserved the declaration order of " "keyword-only parameters as of version 3.7, although in practice this order " "had always been preserved in Python 3." msgstr "" -#: library/inspect.rst:694 +#: library/inspect.rst:715 msgid "" "The \"return\" annotation for the callable. If the callable has no " "\"return\" annotation, this attribute is set to :attr:`Signature.empty`." msgstr "" -#: library/inspect.rst:699 +#: library/inspect.rst:720 msgid "" "Create a mapping from positional and keyword arguments to parameters. " "Returns :class:`BoundArguments` if ``*args`` and ``**kwargs`` match the " "signature, or raises a :exc:`TypeError`." msgstr "" -#: library/inspect.rst:705 +#: library/inspect.rst:726 msgid "" "Works the same way as :meth:`Signature.bind`, but allows the omission of " "some required arguments (mimics :func:`functools.partial` behavior.) " @@ -985,7 +1011,7 @@ msgid "" "arguments do not match the signature." msgstr "" -#: library/inspect.rst:712 +#: library/inspect.rst:733 msgid "" "Create a new Signature instance based on the instance :meth:`replace` was " "invoked on. It is possible to pass different ``parameters`` and/or " @@ -994,7 +1020,7 @@ msgid "" "attr:`Signature.empty`." msgstr "" -#: library/inspect.rst:729 +#: library/inspect.rst:751 msgid "" "Return a :class:`Signature` (or its subclass) object for a given callable " "``obj``. Pass ``follow_wrapped=False`` to get a signature of ``obj`` " @@ -1002,139 +1028,139 @@ msgid "" "will be used as the namespaces when resolving annotations." msgstr "" -#: library/inspect.rst:734 +#: library/inspect.rst:756 msgid "This method simplifies subclassing of :class:`Signature`::" msgstr "" -#: library/inspect.rst:743 +#: library/inspect.rst:765 msgid "``globalns`` and ``localns`` parameters." msgstr "" -#: library/inspect.rst:749 +#: library/inspect.rst:771 msgid "" "Parameter objects are *immutable*. Instead of modifying a Parameter object, " "you can use :meth:`Parameter.replace` to create a modified copy." msgstr "" -#: library/inspect.rst:752 +#: library/inspect.rst:774 msgid "Parameter objects are picklable and :term:`hashable`." msgstr "" -#: library/inspect.rst:757 +#: library/inspect.rst:779 msgid "" "A special class-level marker to specify absence of default values and " "annotations." msgstr "" -#: library/inspect.rst:762 +#: library/inspect.rst:784 msgid "" "The name of the parameter as a string. The name must be a valid Python " "identifier." msgstr "" -#: library/inspect.rst:767 +#: library/inspect.rst:789 msgid "" "CPython generates implicit parameter names of the form ``.0`` on the code " "objects used to implement comprehensions and generator expressions." msgstr "" -#: library/inspect.rst:771 +#: library/inspect.rst:793 msgid "" "These parameter names are exposed by this module as names like ``implicit0``." msgstr "" -#: library/inspect.rst:777 +#: library/inspect.rst:799 msgid "" "The default value for the parameter. If the parameter has no default value, " "this attribute is set to :attr:`Parameter.empty`." msgstr "" -#: library/inspect.rst:782 +#: library/inspect.rst:804 msgid "" "The annotation for the parameter. If the parameter has no annotation, this " "attribute is set to :attr:`Parameter.empty`." msgstr "" -#: library/inspect.rst:787 +#: library/inspect.rst:809 msgid "" "Describes how argument values are bound to the parameter. The possible " "values are accessible via :class:`Parameter` (like ``Parameter." "KEYWORD_ONLY``), and support comparison and ordering, in the following order:" msgstr "" -#: library/inspect.rst:794 +#: library/inspect.rst:816 msgid "Name" msgstr "" -#: library/inspect.rst:794 +#: library/inspect.rst:816 msgid "Meaning" msgstr "" -#: library/inspect.rst:796 +#: library/inspect.rst:818 msgid "*POSITIONAL_ONLY*" msgstr "" -#: library/inspect.rst:796 +#: library/inspect.rst:818 msgid "" "Value must be supplied as a positional argument. Positional only parameters " "are those which appear before a ``/`` entry (if present) in a Python " "function definition." msgstr "" -#: library/inspect.rst:801 +#: library/inspect.rst:823 msgid "*POSITIONAL_OR_KEYWORD*" msgstr "" -#: library/inspect.rst:801 +#: library/inspect.rst:823 msgid "" "Value may be supplied as either a keyword or positional argument (this is " "the standard binding behaviour for functions implemented in Python.)" msgstr "" -#: library/inspect.rst:806 +#: library/inspect.rst:828 msgid "*VAR_POSITIONAL*" msgstr "" -#: library/inspect.rst:806 +#: library/inspect.rst:828 msgid "" "A tuple of positional arguments that aren't bound to any other parameter. " "This corresponds to a ``*args`` parameter in a Python function definition." msgstr "" -#: library/inspect.rst:811 +#: library/inspect.rst:833 msgid "*KEYWORD_ONLY*" msgstr "" -#: library/inspect.rst:811 +#: library/inspect.rst:833 msgid "" "Value must be supplied as a keyword argument. Keyword only parameters are " "those which appear after a ``*`` or ``*args`` entry in a Python function " "definition." msgstr "" -#: library/inspect.rst:816 +#: library/inspect.rst:838 msgid "*VAR_KEYWORD*" msgstr "" -#: library/inspect.rst:816 +#: library/inspect.rst:838 msgid "" "A dict of keyword arguments that aren't bound to any other parameter. This " "corresponds to a ``**kwargs`` parameter in a Python function definition." msgstr "" -#: library/inspect.rst:822 +#: library/inspect.rst:844 msgid "Example: print all keyword-only arguments without default values::" msgstr "" -#: library/inspect.rst:836 +#: library/inspect.rst:858 msgid "Describes a enum value of Parameter.kind." msgstr "" -#: library/inspect.rst:840 +#: library/inspect.rst:862 msgid "Example: print all descriptions of arguments::" msgstr "" -#: library/inspect.rst:855 +#: library/inspect.rst:877 msgid "" "Create a new Parameter instance based on the instance replaced was invoked " "on. To override a :class:`Parameter` attribute, pass the corresponding " @@ -1142,94 +1168,94 @@ msgid "" "pass :attr:`Parameter.empty`." msgstr "" -#: library/inspect.rst:873 +#: library/inspect.rst:895 msgid "" "In Python 3.3 Parameter objects were allowed to have ``name`` set to " "``None`` if their ``kind`` was set to ``POSITIONAL_ONLY``. This is no longer " "permitted." msgstr "" -#: library/inspect.rst:880 +#: library/inspect.rst:902 msgid "" "Result of a :meth:`Signature.bind` or :meth:`Signature.bind_partial` call. " "Holds the mapping of arguments to the function's parameters." msgstr "" -#: library/inspect.rst:885 +#: library/inspect.rst:907 msgid "" "A mutable mapping of parameters' names to arguments' values. Contains only " "explicitly bound arguments. Changes in :attr:`arguments` will reflect in :" "attr:`args` and :attr:`kwargs`." msgstr "" -#: library/inspect.rst:889 +#: library/inspect.rst:911 msgid "" "Should be used in conjunction with :attr:`Signature.parameters` for any " "argument processing purposes." msgstr "" -#: library/inspect.rst:894 +#: library/inspect.rst:916 msgid "" "Arguments for which :meth:`Signature.bind` or :meth:`Signature.bind_partial` " "relied on a default value are skipped. However, if needed, use :meth:" "`BoundArguments.apply_defaults` to add them." msgstr "" -#: library/inspect.rst:899 +#: library/inspect.rst:921 msgid "" ":attr:`arguments` is now of type :class:`dict`. Formerly, it was of type :" "class:`collections.OrderedDict`." msgstr "" -#: library/inspect.rst:905 +#: library/inspect.rst:927 msgid "" "A tuple of positional arguments values. Dynamically computed from the :attr:" "`arguments` attribute." msgstr "" -#: library/inspect.rst:910 +#: library/inspect.rst:932 msgid "" "A dict of keyword arguments values. Dynamically computed from the :attr:" "`arguments` attribute." msgstr "" -#: library/inspect.rst:915 +#: library/inspect.rst:937 msgid "A reference to the parent :class:`Signature` object." msgstr "" -#: library/inspect.rst:919 +#: library/inspect.rst:941 msgid "Set default values for missing arguments." msgstr "" -#: library/inspect.rst:921 +#: library/inspect.rst:943 msgid "" "For variable-positional arguments (``*args``) the default is an empty tuple." msgstr "" -#: library/inspect.rst:924 +#: library/inspect.rst:946 msgid "" "For variable-keyword arguments (``**kwargs``) the default is an empty dict." msgstr "" -#: library/inspect.rst:937 +#: library/inspect.rst:959 msgid "" "The :attr:`args` and :attr:`kwargs` properties can be used to invoke " "functions::" msgstr "" -#: library/inspect.rst:950 +#: library/inspect.rst:972 msgid ":pep:`362` - Function Signature Object." msgstr "" -#: library/inspect.rst:951 +#: library/inspect.rst:973 msgid "The detailed specification, implementation details and examples." msgstr "" -#: library/inspect.rst:957 +#: library/inspect.rst:979 msgid "Classes and functions" msgstr "" -#: library/inspect.rst:961 +#: library/inspect.rst:983 msgid "" "Arrange the given list of classes into a hierarchy of nested lists. Where a " "nested list appears, it contains classes derived from the class whose entry " @@ -1240,19 +1266,19 @@ msgid "" "will appear multiple times." msgstr "" -#: library/inspect.rst:972 +#: library/inspect.rst:994 msgid "" "Get the names and default values of a Python function's parameters. A :term:" "`named tuple` is returned:" msgstr "" -#: library/inspect.rst:975 +#: library/inspect.rst:997 msgid "" "``FullArgSpec(args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, " "annotations)``" msgstr "" -#: library/inspect.rst:978 +#: library/inspect.rst:1000 msgid "" "*args* is a list of the positional parameter names. *varargs* is the name of " "the ``*`` parameter or ``None`` if arbitrary positional arguments are not " @@ -1267,7 +1293,7 @@ msgid "" "report the function return value annotation (if any)." msgstr "" -#: library/inspect.rst:993 +#: library/inspect.rst:1015 msgid "" "Note that :func:`signature` and :ref:`Signature Object ` provide the recommended API for callable introspection, and support " @@ -1277,14 +1303,14 @@ msgid "" "``inspect`` module API." msgstr "" -#: library/inspect.rst:1000 +#: library/inspect.rst:1022 msgid "" "This function is now based on :func:`signature`, but still ignores " "``__wrapped__`` attributes and includes the already bound first parameter in " "the signature output for bound methods." msgstr "" -#: library/inspect.rst:1005 +#: library/inspect.rst:1027 msgid "" "This method was previously documented as deprecated in favour of :func:" "`signature` in Python 3.5, but that decision has been reversed in order to " @@ -1292,7 +1318,7 @@ msgid "" "code migrating away from the legacy :func:`getargspec` API." msgstr "" -#: library/inspect.rst:1020 +#: library/inspect.rst:1042 msgid "" "Get information about arguments passed into a particular frame. A :term:" "`named tuple` ``ArgInfo(args, varargs, keywords, locals)`` is returned. " @@ -1301,18 +1327,18 @@ msgid "" "dictionary of the given frame." msgstr "" -#: library/inspect.rst:1037 +#: library/inspect.rst:1059 msgid "This function was inadvertently marked as deprecated in Python 3.5." msgstr "" -#: library/inspect.rst:1032 +#: library/inspect.rst:1054 msgid "" "Format a pretty argument spec from the four values returned by :func:" "`getargvalues`. The format\\* arguments are the corresponding optional " "formatting functions that are called to turn names and values into strings." msgstr "" -#: library/inspect.rst:1042 +#: library/inspect.rst:1064 msgid "" "Return a tuple of class cls's base classes, including cls, in method " "resolution order. No class appears more than once in this tuple. Note that " @@ -1320,7 +1346,7 @@ msgid "" "user-defined metatype is in use, cls will be the first element of the tuple." msgstr "" -#: library/inspect.rst:1050 +#: library/inspect.rst:1072 msgid "" "Bind the *args* and *kwds* to the argument names of the Python function or " "method *func*, as if it was called with them. For bound methods, bind also " @@ -1333,11 +1359,11 @@ msgid "" "example::" msgstr "" -#: library/inspect.rst:1073 +#: library/inspect.rst:1096 msgid "Use :meth:`Signature.bind` and :meth:`Signature.bind_partial` instead." msgstr "" -#: library/inspect.rst:1079 +#: library/inspect.rst:1102 msgid "" "Get the mapping of external name references in a Python function or method " "*func* to their current values. A :term:`named tuple` " @@ -1349,18 +1375,18 @@ msgid "" "builtins." msgstr "" -#: library/inspect.rst:1088 +#: library/inspect.rst:1111 msgid "" ":exc:`TypeError` is raised if *func* is not a Python function or method." msgstr "" -#: library/inspect.rst:1095 +#: library/inspect.rst:1118 msgid "" "Get the object wrapped by *func*. It follows the chain of :attr:" "`__wrapped__` attributes returning the last object in the chain." msgstr "" -#: library/inspect.rst:1098 +#: library/inspect.rst:1121 msgid "" "*stop* is an optional callback accepting an object in the wrapper chain as " "its sole argument that allows the unwrapping to be terminated early if the " @@ -1370,68 +1396,68 @@ msgid "" "``__signature__`` attribute defined." msgstr "" -#: library/inspect.rst:1105 +#: library/inspect.rst:1128 msgid ":exc:`ValueError` is raised if a cycle is encountered." msgstr "" -#: library/inspect.rst:1112 +#: library/inspect.rst:1135 msgid "Compute the annotations dict for an object." msgstr "" -#: library/inspect.rst:1114 +#: library/inspect.rst:1137 msgid "" "``obj`` may be a callable, class, or module. Passing in an object of any " "other type raises :exc:`TypeError`." msgstr "" -#: library/inspect.rst:1117 +#: library/inspect.rst:1140 msgid "" "Returns a dict. ``get_annotations()`` returns a new dict every time it's " "called; calling it twice on the same object will return two different but " "equivalent dicts." msgstr "" -#: library/inspect.rst:1121 +#: library/inspect.rst:1144 msgid "This function handles several details for you:" msgstr "" -#: library/inspect.rst:1123 +#: library/inspect.rst:1146 msgid "" "If ``eval_str`` is true, values of type ``str`` will be un-stringized using :" "func:`eval()`. This is intended for use with stringized annotations (``from " "__future__ import annotations``)." msgstr "" -#: library/inspect.rst:1127 +#: library/inspect.rst:1150 msgid "" "If ``obj`` doesn't have an annotations dict, returns an empty dict. " "(Functions and methods always have an annotations dict; classes, modules, " "and other types of callables may not.)" msgstr "" -#: library/inspect.rst:1131 +#: library/inspect.rst:1154 msgid "" "Ignores inherited annotations on classes. If a class doesn't have its own " "annotations dict, returns an empty dict." msgstr "" -#: library/inspect.rst:1133 +#: library/inspect.rst:1156 msgid "" "All accesses to object members and dict values are done using ``getattr()`` " "and ``dict.get()`` for safety." msgstr "" -#: library/inspect.rst:1135 +#: library/inspect.rst:1158 msgid "Always, always, always returns a freshly created dict." msgstr "" -#: library/inspect.rst:1137 +#: library/inspect.rst:1160 msgid "" "``eval_str`` controls whether or not values of type ``str`` are replaced " "with the result of calling :func:`eval()` on those values:" msgstr "" -#: library/inspect.rst:1140 +#: library/inspect.rst:1163 msgid "" "If eval_str is true, :func:`eval()` is called on values of type ``str``. " "(Note that ``get_annotations`` doesn't catch exceptions; if :func:`eval()` " @@ -1439,12 +1465,12 @@ msgid "" "call.)" msgstr "" -#: library/inspect.rst:1144 +#: library/inspect.rst:1167 msgid "" "If eval_str is false (the default), values of type ``str`` are unchanged." msgstr "" -#: library/inspect.rst:1146 +#: library/inspect.rst:1169 msgid "" "``globals`` and ``locals`` are passed in to :func:`eval()`; see the " "documentation for :func:`eval()` for more information. If ``globals`` or " @@ -1452,35 +1478,35 @@ msgid "" "specific default, contingent on ``type(obj)``:" msgstr "" -#: library/inspect.rst:1151 +#: library/inspect.rst:1174 msgid "If ``obj`` is a module, ``globals`` defaults to ``obj.__dict__``." msgstr "" -#: library/inspect.rst:1152 +#: library/inspect.rst:1175 msgid "" "If ``obj`` is a class, ``globals`` defaults to ``sys.modules[obj.__module__]." "__dict__`` and ``locals`` defaults to the ``obj`` class namespace." msgstr "" -#: library/inspect.rst:1155 +#: library/inspect.rst:1178 msgid "" "If ``obj`` is a callable, ``globals`` defaults to ``obj.__globals__``, " "although if ``obj`` is a wrapped function (using ``functools." "update_wrapper()``) it is first unwrapped." msgstr "" -#: library/inspect.rst:1159 +#: library/inspect.rst:1182 msgid "" "Calling ``get_annotations`` is best practice for accessing the annotations " "dict of any object. See :ref:`annotations-howto` for more information on " "annotations best practices." msgstr "" -#: library/inspect.rst:1169 +#: library/inspect.rst:1192 msgid "The interpreter stack" msgstr "" -#: library/inspect.rst:1171 +#: library/inspect.rst:1194 msgid "" "Some of the following functions return :class:`FrameInfo` objects. For " "backwards compatibility these objects allow tuple-like operations on all " @@ -1488,95 +1514,95 @@ msgid "" "may be removed in the future." msgstr "" -#: library/inspect.rst:1180 +#: library/inspect.rst:1203 msgid "The :ref:`frame object ` that the record corresponds to." msgstr "" -#: library/inspect.rst:1184 +#: library/inspect.rst:1207 msgid "" "The file name associated with the code being executed by the frame this " "record corresponds to." msgstr "" -#: library/inspect.rst:1189 +#: library/inspect.rst:1212 msgid "" "The line number of the current line associated with the code being executed " "by the frame this record corresponds to." msgstr "" -#: library/inspect.rst:1194 +#: library/inspect.rst:1217 msgid "" "The function name that is being executed by the frame this record " "corresponds to." msgstr "" -#: library/inspect.rst:1198 +#: library/inspect.rst:1221 msgid "" "A list of lines of context from the source code that's being executed by the " "frame this record corresponds to." msgstr "" -#: library/inspect.rst:1242 +#: library/inspect.rst:1265 msgid "" "The index of the current line being executed in the :attr:`code_context` " "list." msgstr "" -#: library/inspect.rst:1207 +#: library/inspect.rst:1230 msgid "" "A :class:`dis.Positions` object containing the start line number, end line " "number, start column offset, and end column offset associated with the " "instruction being executed by the frame this record corresponds to." msgstr "" -#: library/inspect.rst:1211 +#: library/inspect.rst:1234 msgid "Return a :term:`named tuple` instead of a :class:`tuple`." msgstr "" -#: library/inspect.rst:1214 +#: library/inspect.rst:1237 msgid "" ":class:`!FrameInfo` is now a class instance (that is backwards compatible " "with the previous :term:`named tuple`)." msgstr "" -#: library/inspect.rst:1223 +#: library/inspect.rst:1246 msgid "" "The file name associated with the code being executed by the frame this " "traceback corresponds to." msgstr "" -#: library/inspect.rst:1228 +#: library/inspect.rst:1251 msgid "" "The line number of the current line associated with the code being executed " "by the frame this traceback corresponds to." msgstr "" -#: library/inspect.rst:1233 +#: library/inspect.rst:1256 msgid "" "The function name that is being executed by the frame this traceback " "corresponds to." msgstr "" -#: library/inspect.rst:1237 +#: library/inspect.rst:1260 msgid "" "A list of lines of context from the source code that's being executed by the " "frame this traceback corresponds to." msgstr "" -#: library/inspect.rst:1246 +#: library/inspect.rst:1269 msgid "" "A :class:`dis.Positions` object containing the start line number, end line " "number, start column offset, and end column offset associated with the " "instruction being executed by the frame this traceback corresponds to." msgstr "" -#: library/inspect.rst:1251 +#: library/inspect.rst:1274 msgid "" ":class:`!Traceback` is now a class instance (that is backwards compatible " "with the previous :term:`named tuple`)." msgstr "" -#: library/inspect.rst:1258 +#: library/inspect.rst:1281 msgid "" "Keeping references to frame objects, as found in the first element of the " "frame records these functions return, can cause your program to create " @@ -1588,7 +1614,7 @@ msgid "" "consumption which occurs." msgstr "" -#: library/inspect.rst:1266 +#: library/inspect.rst:1289 msgid "" "Though the cycle detector will catch these, destruction of the frames (and " "local variables) can be made deterministic by removing the cycle in a :" @@ -1596,31 +1622,31 @@ msgid "" "disabled when Python was compiled or using :func:`gc.disable`. For example::" msgstr "" -#: library/inspect.rst:1278 +#: library/inspect.rst:1301 msgid "" "If you want to keep the frame around (for example to print a traceback " "later), you can also break reference cycles by using the :meth:`frame.clear` " "method." msgstr "" -#: library/inspect.rst:1282 +#: library/inspect.rst:1305 msgid "" "The optional *context* argument supported by most of these functions " "specifies the number of lines of context to return, which are centered " "around the current line." msgstr "" -#: library/inspect.rst:1289 +#: library/inspect.rst:1312 msgid "" "Get information about a frame or traceback object. A :class:`Traceback` " "object is returned." msgstr "" -#: library/inspect.rst:1292 +#: library/inspect.rst:1315 msgid "A :class:`Traceback` object is returned instead of a named tuple." msgstr "" -#: library/inspect.rst:1297 +#: library/inspect.rst:1320 msgid "" "Get a list of :class:`FrameInfo` objects for a frame and all outer frames. " "These frames represent the calls that lead to the creation of *frame*. The " @@ -1628,17 +1654,17 @@ msgid "" "represents the outermost call on *frame*'s stack." msgstr "" -#: library/inspect.rst:1317 library/inspect.rst:1358 +#: library/inspect.rst:1340 library/inspect.rst:1381 msgid "" "A list of :term:`named tuples ` ``FrameInfo(frame, filename, " "lineno, function, code_context, index)`` is returned." msgstr "" -#: library/inspect.rst:1322 library/inspect.rst:1363 +#: library/inspect.rst:1345 library/inspect.rst:1386 msgid "A list of :class:`FrameInfo` objects is returned." msgstr "" -#: library/inspect.rst:1312 +#: library/inspect.rst:1335 msgid "" "Get a list of :class:`FrameInfo` objects for a traceback's frame and all " "inner frames. These frames represent calls made as a consequence of " @@ -1646,11 +1672,11 @@ msgid "" "represents where the exception was raised." msgstr "" -#: library/inspect.rst:1327 +#: library/inspect.rst:1350 msgid "Return the frame object for the caller's stack frame." msgstr "" -#: library/inspect.rst:1331 +#: library/inspect.rst:1354 msgid "" "This function relies on Python stack frame support in the interpreter, which " "isn't guaranteed to exist in all implementations of Python. If running in " @@ -1658,14 +1684,14 @@ msgid "" "``None``." msgstr "" -#: library/inspect.rst:1339 +#: library/inspect.rst:1362 msgid "" "Return a list of :class:`FrameInfo` objects for the caller's stack. The " "first entry in the returned list represents the caller; the last entry " "represents the outermost call on the stack." msgstr "" -#: library/inspect.rst:1353 +#: library/inspect.rst:1376 msgid "" "Return a list of :class:`FrameInfo` objects for the stack between the " "current frame and the frame in which an exception currently being handled " @@ -1673,11 +1699,11 @@ msgid "" "entry represents where the exception was raised." msgstr "" -#: library/inspect.rst:1367 +#: library/inspect.rst:1390 msgid "Fetching attributes statically" msgstr "" -#: library/inspect.rst:1369 +#: library/inspect.rst:1392 msgid "" "Both :func:`getattr` and :func:`hasattr` can trigger code execution when " "fetching or checking for the existence of attributes. Descriptors, like " @@ -1685,20 +1711,20 @@ msgid "" "`__getattribute__` may be called." msgstr "" -#: library/inspect.rst:1374 +#: library/inspect.rst:1397 msgid "" "For cases where you want passive introspection, like documentation tools, " "this can be inconvenient. :func:`getattr_static` has the same signature as :" "func:`getattr` but avoids executing code when it fetches attributes." msgstr "" -#: library/inspect.rst:1380 +#: library/inspect.rst:1403 msgid "" "Retrieve attributes without triggering dynamic lookup via the descriptor " "protocol, :meth:`__getattr__` or :meth:`__getattribute__`." msgstr "" -#: library/inspect.rst:1383 +#: library/inspect.rst:1406 msgid "" "Note: this function may not be able to retrieve all attributes that getattr " "can fetch (like dynamically created attributes) and may find attributes that " @@ -1706,31 +1732,31 @@ msgid "" "return descriptors objects instead of instance members." msgstr "" -#: library/inspect.rst:1389 +#: library/inspect.rst:1412 msgid "" "If the instance :attr:`~object.__dict__` is shadowed by another member (for " "example a property) then this function will be unable to find instance " "members." msgstr "" -#: library/inspect.rst:1395 +#: library/inspect.rst:1418 msgid "" ":func:`getattr_static` does not resolve descriptors, for example slot " "descriptors or getset descriptors on objects implemented in C. The " "descriptor object is returned instead of the underlying attribute." msgstr "" -#: library/inspect.rst:1399 +#: library/inspect.rst:1422 msgid "" "You can handle these with code like the following. Note that for arbitrary " "getset descriptors invoking these may trigger code execution::" msgstr "" -#: library/inspect.rst:1425 -msgid "Current State of Generators and Coroutines" +#: library/inspect.rst:1448 +msgid "Current State of Generators, Coroutines, and Asynchronous Generators" msgstr "" -#: library/inspect.rst:1427 +#: library/inspect.rst:1450 msgid "" "When implementing coroutine schedulers and for other advanced uses of " "generators, it is useful to determine whether a generator is currently " @@ -1739,31 +1765,31 @@ msgid "" "generator to be determined easily." msgstr "" -#: library/inspect.rst:1435 +#: library/inspect.rst:1458 msgid "Get current state of a generator-iterator." msgstr "" -#: library/inspect.rst:1456 +#: library/inspect.rst:1479 library/inspect.rst:1495 msgid "Possible states are:" msgstr "" -#: library/inspect.rst:1438 +#: library/inspect.rst:1461 msgid "GEN_CREATED: Waiting to start execution." msgstr "" -#: library/inspect.rst:1439 +#: library/inspect.rst:1462 msgid "GEN_RUNNING: Currently being executed by the interpreter." msgstr "" -#: library/inspect.rst:1440 +#: library/inspect.rst:1463 msgid "GEN_SUSPENDED: Currently suspended at a yield expression." msgstr "" -#: library/inspect.rst:1441 +#: library/inspect.rst:1464 msgid "GEN_CLOSED: Execution has completed." msgstr "" -#: library/inspect.rst:1447 +#: library/inspect.rst:1470 msgid "" "Get current state of a coroutine object. The function is intended to be " "used with coroutine objects created by :keyword:`async def` functions, but " @@ -1771,30 +1797,55 @@ msgid "" "``cr_frame`` attributes." msgstr "" -#: library/inspect.rst:1453 +#: library/inspect.rst:1476 msgid "CORO_CREATED: Waiting to start execution." msgstr "" -#: library/inspect.rst:1454 +#: library/inspect.rst:1477 msgid "CORO_RUNNING: Currently being executed by the interpreter." msgstr "" -#: library/inspect.rst:1455 +#: library/inspect.rst:1478 msgid "CORO_SUSPENDED: Currently suspended at an await expression." msgstr "" -#: library/inspect.rst:1456 +#: library/inspect.rst:1479 msgid "CORO_CLOSED: Execution has completed." msgstr "" -#: library/inspect.rst:1460 +#: library/inspect.rst:1485 +msgid "" +"Get current state of an asynchronous generator object. The function is " +"intended to be used with asynchronous iterator objects created by :keyword:" +"`async def` functions which use the :keyword:`yield` statement, but will " +"accept any asynchronous generator-like object that has ``ag_running`` and " +"``ag_frame`` attributes." +msgstr "" + +#: library/inspect.rst:1492 +msgid "AGEN_CREATED: Waiting to start execution." +msgstr "" + +#: library/inspect.rst:1493 +msgid "AGEN_RUNNING: Currently being executed by the interpreter." +msgstr "" + +#: library/inspect.rst:1494 +msgid "AGEN_SUSPENDED: Currently suspended at a yield expression." +msgstr "" + +#: library/inspect.rst:1495 +msgid "AGEN_CLOSED: Execution has completed." +msgstr "" + +#: library/inspect.rst:1499 msgid "" "The current internal state of the generator can also be queried. This is " "mostly useful for testing purposes, to ensure that internal state is being " "updated as expected:" msgstr "" -#: library/inspect.rst:1466 +#: library/inspect.rst:1505 msgid "" "Get the mapping of live local variables in *generator* to their current " "values. A dictionary is returned that maps from variable names to values. " @@ -1802,14 +1853,14 @@ msgid "" "generator, and all the same caveats apply." msgstr "" -#: library/inspect.rst:1471 +#: library/inspect.rst:1510 msgid "" "If *generator* is a :term:`generator` with no currently associated frame, " "then an empty dictionary is returned. :exc:`TypeError` is raised if " "*generator* is not a Python generator object." msgstr "" -#: library/inspect.rst:1477 +#: library/inspect.rst:1516 msgid "" "This function relies on the generator exposing a Python stack frame for " "introspection, which isn't guaranteed to be the case in all implementations " @@ -1817,72 +1868,79 @@ msgid "" "dictionary." msgstr "" -#: library/inspect.rst:1486 +#: library/inspect.rst:1525 msgid "" "This function is analogous to :func:`~inspect.getgeneratorlocals`, but works " "for coroutine objects created by :keyword:`async def` functions." msgstr "" -#: library/inspect.rst:1495 +#: library/inspect.rst:1532 +msgid "" +"This function is analogous to :func:`~inspect.getgeneratorlocals`, but works " +"for asynchronous generator objects created by :keyword:`async def` functions " +"which use the :keyword:`yield` statement." +msgstr "" + +#: library/inspect.rst:1542 msgid "Code Objects Bit Flags" msgstr "" -#: library/inspect.rst:1497 +#: library/inspect.rst:1544 msgid "" "Python code objects have a ``co_flags`` attribute, which is a bitmap of the " "following flags:" msgstr "" -#: library/inspect.rst:1502 +#: library/inspect.rst:1549 msgid "The code object is optimized, using fast locals." msgstr "" -#: library/inspect.rst:1506 +#: library/inspect.rst:1553 msgid "" "If set, a new dict will be created for the frame's ``f_locals`` when the " "code object is executed." msgstr "" -#: library/inspect.rst:1511 +#: library/inspect.rst:1558 msgid "The code object has a variable positional parameter (``*args``-like)." msgstr "" -#: library/inspect.rst:1515 +#: library/inspect.rst:1562 msgid "The code object has a variable keyword parameter (``**kwargs``-like)." msgstr "" -#: library/inspect.rst:1519 +#: library/inspect.rst:1566 msgid "The flag is set when the code object is a nested function." msgstr "" -#: library/inspect.rst:1523 +#: library/inspect.rst:1570 msgid "" "The flag is set when the code object is a generator function, i.e. a " "generator object is returned when the code object is executed." msgstr "" -#: library/inspect.rst:1528 +#: library/inspect.rst:1575 msgid "" "The flag is set when the code object is a coroutine function. When the code " "object is executed it returns a coroutine object. See :pep:`492` for more " "details." msgstr "" -#: library/inspect.rst:1536 +#: library/inspect.rst:1583 msgid "" "The flag is used to transform generators into generator-based coroutines. " "Generator objects with this flag can be used in ``await`` expression, and " "can ``yield from`` coroutine objects. See :pep:`492` for more details." msgstr "" -#: library/inspect.rst:1545 +#: library/inspect.rst:1592 msgid "" "The flag is set when the code object is an asynchronous generator function. " "When the code object is executed it returns an asynchronous generator " "object. See :pep:`525` for more details." msgstr "" -#: library/inspect.rst:1552 +#: library/inspect.rst:1599 msgid "" "The flags are specific to CPython, and may not be defined in other Python " "implementations. Furthermore, the flags are an implementation detail, and " @@ -1890,24 +1948,39 @@ msgid "" "use public APIs from the :mod:`inspect` module for any introspection needs." msgstr "" -#: library/inspect.rst:1562 +#: library/inspect.rst:1607 +msgid "Buffer flags" +msgstr "" + +#: library/inspect.rst:1611 +msgid "" +"This is an :class:`enum.IntFlag` that represents the flags that can be " +"passed to the :meth:`~object.__buffer__` method of objects implementing the :" +"ref:`buffer protocol `." +msgstr "" + +#: library/inspect.rst:1615 +msgid "The meaning of the flags is explained at :ref:`buffer-request-types`." +msgstr "" + +#: library/inspect.rst:1642 msgid "Command Line Interface" msgstr "" -#: library/inspect.rst:1564 +#: library/inspect.rst:1644 msgid "" "The :mod:`inspect` module also provides a basic introspection capability " "from the command line." msgstr "" -#: library/inspect.rst:1569 +#: library/inspect.rst:1649 msgid "" "By default, accepts the name of a module and prints the source of that " "module. A class or function within the module can be printed instead by " "appended a colon and the qualified name of the target object." msgstr "" -#: library/inspect.rst:1575 +#: library/inspect.rst:1655 msgid "" "Print information about the specified object rather than the source code" msgstr "" diff --git a/library/itertools.po b/library/itertools.po index 9c6062e8f..04e5c1a8d 100644 --- a/library/itertools.po +++ b/library/itertools.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -55,15 +55,15 @@ msgstr "" msgid "**Infinite iterators:**" msgstr "" -#: library/itertools.rst:52 library/itertools.rst:72 +#: library/itertools.rst:52 library/itertools.rst:73 msgid "Iterator" msgstr "" -#: library/itertools.rst:52 library/itertools.rst:72 +#: library/itertools.rst:52 library/itertools.rst:73 msgid "Arguments" msgstr "" -#: library/itertools.rst:52 library/itertools.rst:81 +#: library/itertools.rst:52 library/itertools.rst:82 msgid "Results" msgstr "" @@ -140,271 +140,287 @@ msgid "``accumulate([1,2,3,4,5]) --> 1 3 6 10 15``" msgstr "" #: library/itertools.rst:55 +msgid ":func:`batched`" +msgstr "" + +#: library/itertools.rst:55 +msgid "p, n" +msgstr "" + +#: library/itertools.rst:55 +msgid "(p0, p1, ..., p_n-1), ..." +msgstr "" + +#: library/itertools.rst:55 +msgid "``batched('ABCDEFG', n=3) --> ABC DEF G``" +msgstr "" + +#: library/itertools.rst:56 msgid ":func:`chain`" msgstr "" -#: library/itertools.rst:66 +#: library/itertools.rst:67 msgid "p, q, ..." msgstr "" -#: library/itertools.rst:56 +#: library/itertools.rst:57 msgid "p0, p1, ... plast, q0, q1, ..." msgstr "" -#: library/itertools.rst:55 +#: library/itertools.rst:56 msgid "``chain('ABC', 'DEF') --> A B C D E F``" msgstr "" -#: library/itertools.rst:56 +#: library/itertools.rst:57 msgid ":func:`chain.from_iterable`" msgstr "" -#: library/itertools.rst:62 +#: library/itertools.rst:63 msgid "iterable" msgstr "" -#: library/itertools.rst:56 +#: library/itertools.rst:57 msgid "``chain.from_iterable(['ABC', 'DEF']) --> A B C D E F``" msgstr "" -#: library/itertools.rst:57 +#: library/itertools.rst:58 msgid ":func:`compress`" msgstr "" -#: library/itertools.rst:57 +#: library/itertools.rst:58 msgid "data, selectors" msgstr "" -#: library/itertools.rst:57 +#: library/itertools.rst:58 msgid "(d[0] if s[0]), (d[1] if s[1]), ..." msgstr "" -#: library/itertools.rst:57 +#: library/itertools.rst:58 msgid "``compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F``" msgstr "" -#: library/itertools.rst:58 +#: library/itertools.rst:59 msgid ":func:`dropwhile`" msgstr "" -#: library/itertools.rst:59 library/itertools.rst:64 +#: library/itertools.rst:60 library/itertools.rst:65 msgid "pred, seq" msgstr "" -#: library/itertools.rst:58 +#: library/itertools.rst:59 msgid "seq[n], seq[n+1], starting when pred fails" msgstr "" -#: library/itertools.rst:58 +#: library/itertools.rst:59 msgid "``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1``" msgstr "" -#: library/itertools.rst:59 +#: library/itertools.rst:60 msgid ":func:`filterfalse`" msgstr "" -#: library/itertools.rst:59 +#: library/itertools.rst:60 msgid "elements of seq where pred(elem) is false" msgstr "" -#: library/itertools.rst:59 +#: library/itertools.rst:60 msgid "``filterfalse(lambda x: x%2, range(10)) --> 0 2 4 6 8``" msgstr "" -#: library/itertools.rst:60 +#: library/itertools.rst:61 msgid ":func:`groupby`" msgstr "" -#: library/itertools.rst:60 +#: library/itertools.rst:61 msgid "iterable[, key]" msgstr "" -#: library/itertools.rst:60 +#: library/itertools.rst:61 msgid "sub-iterators grouped by value of key(v)" msgstr "" -#: library/itertools.rst:61 +#: library/itertools.rst:62 msgid ":func:`islice`" msgstr "" -#: library/itertools.rst:61 +#: library/itertools.rst:62 msgid "seq, [start,] stop [, step]" msgstr "" -#: library/itertools.rst:61 +#: library/itertools.rst:62 msgid "elements from seq[start:stop:step]" msgstr "" -#: library/itertools.rst:61 +#: library/itertools.rst:62 msgid "``islice('ABCDEFG', 2, None) --> C D E F G``" msgstr "" -#: library/itertools.rst:62 +#: library/itertools.rst:63 msgid ":func:`pairwise`" msgstr "" -#: library/itertools.rst:62 +#: library/itertools.rst:63 msgid "(p[0], p[1]), (p[1], p[2])" msgstr "" -#: library/itertools.rst:62 +#: library/itertools.rst:63 msgid "``pairwise('ABCDEFG') --> AB BC CD DE EF FG``" msgstr "" -#: library/itertools.rst:63 +#: library/itertools.rst:64 msgid ":func:`starmap`" msgstr "" -#: library/itertools.rst:63 +#: library/itertools.rst:64 msgid "func, seq" msgstr "" -#: library/itertools.rst:63 +#: library/itertools.rst:64 msgid "func(\\*seq[0]), func(\\*seq[1]), ..." msgstr "" -#: library/itertools.rst:63 +#: library/itertools.rst:64 msgid "``starmap(pow, [(2,5), (3,2), (10,3)]) --> 32 9 1000``" msgstr "" -#: library/itertools.rst:64 +#: library/itertools.rst:65 msgid ":func:`takewhile`" msgstr "" -#: library/itertools.rst:64 +#: library/itertools.rst:65 msgid "seq[0], seq[1], until pred fails" msgstr "" -#: library/itertools.rst:64 +#: library/itertools.rst:65 msgid "``takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4``" msgstr "" -#: library/itertools.rst:65 +#: library/itertools.rst:66 msgid ":func:`tee`" msgstr "" -#: library/itertools.rst:65 +#: library/itertools.rst:66 msgid "it, n" msgstr "" -#: library/itertools.rst:65 +#: library/itertools.rst:66 msgid "it1, it2, ... itn splits one iterator into n" msgstr "" -#: library/itertools.rst:66 +#: library/itertools.rst:67 msgid ":func:`zip_longest`" msgstr "" -#: library/itertools.rst:66 +#: library/itertools.rst:67 msgid "(p[0], q[0]), (p[1], q[1]), ..." msgstr "" -#: library/itertools.rst:66 +#: library/itertools.rst:67 msgid "``zip_longest('ABCD', 'xy', fillvalue='-') --> Ax By C- D-``" msgstr "" -#: library/itertools.rst:69 +#: library/itertools.rst:70 msgid "**Combinatoric iterators:**" msgstr "" -#: library/itertools.rst:74 +#: library/itertools.rst:75 msgid ":func:`product`" msgstr "" -#: library/itertools.rst:74 +#: library/itertools.rst:75 msgid "p, q, ... [repeat=1]" msgstr "" -#: library/itertools.rst:74 +#: library/itertools.rst:75 msgid "cartesian product, equivalent to a nested for-loop" msgstr "" -#: library/itertools.rst:75 +#: library/itertools.rst:76 msgid ":func:`permutations`" msgstr "" -#: library/itertools.rst:75 +#: library/itertools.rst:76 msgid "p[, r]" msgstr "" -#: library/itertools.rst:75 +#: library/itertools.rst:76 msgid "r-length tuples, all possible orderings, no repeated elements" msgstr "" -#: library/itertools.rst:76 +#: library/itertools.rst:77 msgid ":func:`combinations`" msgstr "" -#: library/itertools.rst:77 +#: library/itertools.rst:78 msgid "p, r" msgstr "" -#: library/itertools.rst:76 +#: library/itertools.rst:77 msgid "r-length tuples, in sorted order, no repeated elements" msgstr "" -#: library/itertools.rst:77 +#: library/itertools.rst:78 msgid ":func:`combinations_with_replacement`" msgstr "" -#: library/itertools.rst:77 +#: library/itertools.rst:78 msgid "r-length tuples, in sorted order, with repeated elements" msgstr "" -#: library/itertools.rst:81 +#: library/itertools.rst:82 msgid "Examples" msgstr "" -#: library/itertools.rst:83 +#: library/itertools.rst:84 msgid "``product('ABCD', repeat=2)``" msgstr "" -#: library/itertools.rst:83 +#: library/itertools.rst:84 msgid "``AA AB AC AD BA BB BC BD CA CB CC CD DA DB DC DD``" msgstr "" -#: library/itertools.rst:84 +#: library/itertools.rst:85 msgid "``permutations('ABCD', 2)``" msgstr "" -#: library/itertools.rst:84 +#: library/itertools.rst:85 msgid "``AB AC AD BA BC BD CA CB CD DA DB DC``" msgstr "" -#: library/itertools.rst:85 +#: library/itertools.rst:86 msgid "``combinations('ABCD', 2)``" msgstr "" -#: library/itertools.rst:85 +#: library/itertools.rst:86 msgid "``AB AC AD BC BD CD``" msgstr "" -#: library/itertools.rst:86 +#: library/itertools.rst:87 msgid "``combinations_with_replacement('ABCD', 2)``" msgstr "" -#: library/itertools.rst:86 +#: library/itertools.rst:87 msgid "``AA AB AC AD BB BC BD CC CD DD``" msgstr "" -#: library/itertools.rst:93 +#: library/itertools.rst:94 msgid "Itertool functions" msgstr "" -#: library/itertools.rst:95 +#: library/itertools.rst:96 msgid "" "The following module functions all construct and return iterators. Some " "provide streams of infinite length, so they should only be accessed by " "functions or loops that truncate the stream." msgstr "" -#: library/itertools.rst:101 +#: library/itertools.rst:102 msgid "" "Make an iterator that returns accumulated sums, or accumulated results of " "other binary functions (specified via the optional *func* argument)." msgstr "" -#: library/itertools.rst:105 +#: library/itertools.rst:106 msgid "" "If *func* is supplied, it should be a function of two arguments. Elements of " "the input *iterable* may be any type that can be accepted as arguments to " @@ -413,7 +429,7 @@ msgid "" "`~fractions.Fraction`.)" msgstr "" -#: library/itertools.rst:112 +#: library/itertools.rst:113 msgid "" "Usually, the number of elements output matches the input iterable. However, " "if the keyword argument *initial* is provided, the accumulation leads off " @@ -421,12 +437,12 @@ msgid "" "input iterable." msgstr "" -#: library/itertools.rst:203 library/itertools.rst:452 -#: library/itertools.rst:515 library/itertools.rst:595 +#: library/itertools.rst:191 library/itertools.rst:291 +#: library/itertools.rst:527 library/itertools.rst:634 msgid "Roughly equivalent to::" msgstr "" -#: library/itertools.rst:136 +#: library/itertools.rst:137 msgid "" "There are a number of uses for the *func* argument. It can be set to :func:" "`min` for a running minimum, :func:`max` for a running maximum, or :func:" @@ -434,21 +450,35 @@ msgid "" "accumulating interest and applying payments:" msgstr "" -#: library/itertools.rst:154 +#: library/itertools.rst:155 msgid "" "See :func:`functools.reduce` for a similar function that returns only the " "final accumulated value." msgstr "" -#: library/itertools.rst:159 +#: library/itertools.rst:160 msgid "Added the optional *func* parameter." msgstr "" -#: library/itertools.rst:162 +#: library/itertools.rst:163 msgid "Added the optional *initial* parameter." msgstr "" -#: library/itertools.rst:167 +#: library/itertools.rst:169 +msgid "" +"Batch data from the *iterable* into tuples of length *n*. The last batch may " +"be shorter than *n*." +msgstr "" + +#: library/itertools.rst:172 +msgid "" +"Loops over the input iterable and accumulates data into tuples up to size " +"*n*. The input is consumed lazily, just enough to fill a batch. The result " +"is yielded as soon as the batch is full or when the input iterable is " +"exhausted:" +msgstr "" + +#: library/itertools.rst:206 msgid "" "Make an iterator that returns elements from the first iterable until it is " "exhausted, then proceeds to the next iterable, until all of the iterables " @@ -456,69 +486,69 @@ msgid "" "sequence. Roughly equivalent to::" msgstr "" -#: library/itertools.rst:181 +#: library/itertools.rst:220 msgid "" "Alternate constructor for :func:`chain`. Gets chained inputs from a single " "iterable argument that is evaluated lazily. Roughly equivalent to::" msgstr "" -#: library/itertools.rst:193 +#: library/itertools.rst:232 msgid "Return *r* length subsequences of elements from the input *iterable*." msgstr "" -#: library/itertools.rst:244 +#: library/itertools.rst:283 msgid "" "The combination tuples are emitted in lexicographic ordering according to " "the order of the input *iterable*. So, if the input *iterable* is sorted, " "the output tuples will be produced in sorted order." msgstr "" -#: library/itertools.rst:199 +#: library/itertools.rst:238 msgid "" "Elements are treated as unique based on their position, not on their value. " "So if the input elements are unique, there will be no repeated values in " "each combination." msgstr "" -#: library/itertools.rst:225 +#: library/itertools.rst:264 msgid "" "The code for :func:`combinations` can be also expressed as a subsequence of :" "func:`permutations` after filtering entries where the elements are not in " "sorted order (according to their position in the input pool)::" msgstr "" -#: library/itertools.rst:236 +#: library/itertools.rst:275 msgid "" "The number of items returned is ``n! / r! / (n-r)!`` when ``0 <= r <= n`` or " "zero when ``r > n``." msgstr "" -#: library/itertools.rst:241 +#: library/itertools.rst:280 msgid "" "Return *r* length subsequences of elements from the input *iterable* " "allowing individual elements to be repeated more than once." msgstr "" -#: library/itertools.rst:248 +#: library/itertools.rst:287 msgid "" "Elements are treated as unique based on their position, not on their value. " "So if the input elements are unique, the generated combinations will also be " "unique." msgstr "" -#: library/itertools.rst:271 +#: library/itertools.rst:310 msgid "" "The code for :func:`combinations_with_replacement` can be also expressed as " "a subsequence of :func:`product` after filtering entries where the elements " "are not in sorted order (according to their position in the input pool)::" msgstr "" -#: library/itertools.rst:282 +#: library/itertools.rst:321 msgid "" "The number of items returned is ``(n+r-1)! / r! / (n-1)!`` when ``n > 0``." msgstr "" -#: library/itertools.rst:289 +#: library/itertools.rst:328 msgid "" "Make an iterator that filters elements from *data* returning only those that " "have a corresponding element in *selectors* that evaluates to ``True``. " @@ -526,7 +556,7 @@ msgid "" "Roughly equivalent to::" msgstr "" -#: library/itertools.rst:303 +#: library/itertools.rst:342 msgid "" "Make an iterator that returns evenly spaced values starting with number " "*start*. Often used as an argument to :func:`map` to generate consecutive " @@ -534,31 +564,31 @@ msgid "" "equivalent to::" msgstr "" -#: library/itertools.rst:315 +#: library/itertools.rst:354 msgid "" "When counting with floating point numbers, better accuracy can sometimes be " "achieved by substituting multiplicative code such as: ``(start + step * i " "for i in count())``." msgstr "" -#: library/itertools.rst:319 +#: library/itertools.rst:358 msgid "Added *step* argument and allowed non-integer arguments." msgstr "" -#: library/itertools.rst:324 +#: library/itertools.rst:363 msgid "" "Make an iterator returning elements from the iterable and saving a copy of " "each. When the iterable is exhausted, return elements from the saved copy. " "Repeats indefinitely. Roughly equivalent to::" msgstr "" -#: library/itertools.rst:338 +#: library/itertools.rst:377 msgid "" "Note, this member of the toolkit may require significant auxiliary storage " "(depending on the length of the iterable)." msgstr "" -#: library/itertools.rst:344 +#: library/itertools.rst:383 msgid "" "Make an iterator that drops elements from the iterable as long as the " "predicate is true; afterwards, returns every element. Note, the iterator " @@ -566,14 +596,14 @@ msgid "" "may have a lengthy start-up time. Roughly equivalent to::" msgstr "" -#: library/itertools.rst:361 +#: library/itertools.rst:400 msgid "" "Make an iterator that filters elements from iterable returning only those " "for which the predicate is false. If *predicate* is ``None``, return the " "items that are false. Roughly equivalent to::" msgstr "" -#: library/itertools.rst:376 +#: library/itertools.rst:415 msgid "" "Make an iterator that returns consecutive keys and groups from the " "*iterable*. The *key* is a function computing a key value for each element. " @@ -582,7 +612,7 @@ msgid "" "sorted on the same key function." msgstr "" -#: library/itertools.rst:382 +#: library/itertools.rst:421 msgid "" "The operation of :func:`groupby` is similar to the ``uniq`` filter in Unix. " "It generates a break or new group every time the value of the key function " @@ -591,7 +621,7 @@ msgid "" "aggregates common elements regardless of their input order." msgstr "" -#: library/itertools.rst:388 +#: library/itertools.rst:427 msgid "" "The returned group is itself an iterator that shares the underlying iterable " "with :func:`groupby`. Because the source is shared, when the :func:" @@ -599,11 +629,11 @@ msgid "" "if that data is needed later, it should be stored as a list::" msgstr "" -#: library/itertools.rst:400 +#: library/itertools.rst:439 msgid ":func:`groupby` is roughly equivalent to::" msgstr "" -#: library/itertools.rst:437 +#: library/itertools.rst:476 msgid "" "Make an iterator that returns selected elements from the iterable. If " "*start* is non-zero, then elements from the iterable are skipped until start " @@ -613,13 +643,13 @@ msgid "" "all; otherwise, it stops at the specified position." msgstr "" -#: library/itertools.rst:444 +#: library/itertools.rst:483 msgid "" "If *start* is ``None``, then iteration starts at zero. If *step* is " "``None``, then the step defaults to one." msgstr "" -#: library/itertools.rst:447 +#: library/itertools.rst:486 msgid "" "Unlike regular slicing, :func:`islice` does not support negative values for " "*start*, *stop*, or *step*. Can be used to extract related fields from data " @@ -627,67 +657,67 @@ msgid "" "report may list a name field on every third line)." msgstr "" -#: library/itertools.rst:482 +#: library/itertools.rst:521 msgid "Return successive overlapping pairs taken from the input *iterable*." msgstr "" -#: library/itertools.rst:484 +#: library/itertools.rst:523 msgid "" "The number of 2-tuples in the output iterator will be one fewer than the " "number of inputs. It will be empty if the input iterable has fewer than two " "values." msgstr "" -#: library/itertools.rst:501 +#: library/itertools.rst:540 msgid "" "Return successive *r* length permutations of elements in the *iterable*." msgstr "" -#: library/itertools.rst:503 +#: library/itertools.rst:542 msgid "" "If *r* is not specified or is ``None``, then *r* defaults to the length of " "the *iterable* and all possible full-length permutations are generated." msgstr "" -#: library/itertools.rst:507 +#: library/itertools.rst:546 msgid "" "The permutation tuples are emitted in lexicographic order according to the " "order of the input *iterable*. So, if the input *iterable* is sorted, the " "output tuples will be produced in sorted order." msgstr "" -#: library/itertools.rst:511 +#: library/itertools.rst:550 msgid "" "Elements are treated as unique based on their position, not on their value. " "So if the input elements are unique, there will be no repeated values within " "a permutation." msgstr "" -#: library/itertools.rst:542 +#: library/itertools.rst:581 msgid "" "The code for :func:`permutations` can be also expressed as a subsequence of :" "func:`product`, filtered to exclude entries with repeated elements (those " "from the same position in the input pool)::" msgstr "" -#: library/itertools.rst:554 +#: library/itertools.rst:593 msgid "" "The number of items returned is ``n! / (n-r)!`` when ``0 <= r <= n`` or zero " "when ``r > n``." msgstr "" -#: library/itertools.rst:559 +#: library/itertools.rst:598 msgid "Cartesian product of input iterables." msgstr "" -#: library/itertools.rst:561 +#: library/itertools.rst:600 msgid "" "Roughly equivalent to nested for-loops in a generator expression. For " "example, ``product(A, B)`` returns the same as ``((x,y) for x in A for y in " "B)``." msgstr "" -#: library/itertools.rst:564 +#: library/itertools.rst:603 msgid "" "The nested loops cycle like an odometer with the rightmost element advancing " "on every iteration. This pattern creates a lexicographic ordering so that " @@ -695,39 +725,39 @@ msgid "" "sorted order." msgstr "" -#: library/itertools.rst:569 +#: library/itertools.rst:608 msgid "" "To compute the product of an iterable with itself, specify the number of " "repetitions with the optional *repeat* keyword argument. For example, " "``product(A, repeat=4)`` means the same as ``product(A, A, A, A)``." msgstr "" -#: library/itertools.rst:573 +#: library/itertools.rst:612 msgid "" "This function is roughly equivalent to the following code, except that the " "actual implementation does not build up intermediate results in memory::" msgstr "" -#: library/itertools.rst:586 +#: library/itertools.rst:625 msgid "" "Before :func:`product` runs, it completely consumes the input iterables, " "keeping pools of values in memory to generate the products. Accordingly, it " "is only useful with finite inputs." msgstr "" -#: library/itertools.rst:592 +#: library/itertools.rst:631 msgid "" "Make an iterator that returns *object* over and over again. Runs " "indefinitely unless the *times* argument is specified." msgstr "" -#: library/itertools.rst:606 +#: library/itertools.rst:645 msgid "" "A common use for *repeat* is to supply a stream of constant values to *map* " "or *zip*:" msgstr "" -#: library/itertools.rst:616 +#: library/itertools.rst:655 msgid "" "Make an iterator that computes the function using arguments obtained from " "the iterable. Used instead of :func:`map` when argument parameters are " @@ -735,45 +765,45 @@ msgid "" "\"pre-zipped\")." msgstr "" -#: library/itertools.rst:621 +#: library/itertools.rst:660 msgid "" "The difference between :func:`map` and :func:`starmap` parallels the " "distinction between ``function(a,b)`` and ``function(*c)``. Roughly " "equivalent to::" msgstr "" -#: library/itertools.rst:633 +#: library/itertools.rst:672 msgid "" "Make an iterator that returns elements from the iterable as long as the " "predicate is true. Roughly equivalent to::" msgstr "" -#: library/itertools.rst:647 +#: library/itertools.rst:686 msgid "Return *n* independent iterators from a single iterable." msgstr "" -#: library/itertools.rst:649 +#: library/itertools.rst:688 msgid "" "The following Python code helps explain what *tee* does (although the actual " "implementation is more complex and uses only a single underlying :abbr:`FIFO " "(first-in, first-out)` queue)::" msgstr "" -#: library/itertools.rst:668 +#: library/itertools.rst:707 msgid "" "Once a :func:`tee` has been created, the original *iterable* should not be " "used anywhere else; otherwise, the *iterable* could get advanced without the " "tee objects being informed." msgstr "" -#: library/itertools.rst:672 +#: library/itertools.rst:711 msgid "" "``tee`` iterators are not threadsafe. A :exc:`RuntimeError` may be raised " -"when using simultaneously iterators returned by the same :func:`tee` call, " +"when simultaneously using iterators returned by the same :func:`tee` call, " "even if the original *iterable* is threadsafe." msgstr "" -#: library/itertools.rst:676 +#: library/itertools.rst:715 msgid "" "This itertool may require significant auxiliary storage (depending on how " "much temporary data needs to be stored). In general, if one iterator uses " @@ -781,7 +811,7 @@ msgid "" "func:`list` instead of :func:`tee`." msgstr "" -#: library/itertools.rst:684 +#: library/itertools.rst:723 msgid "" "Make an iterator that aggregates elements from each of the iterables. If the " "iterables are of uneven length, missing values are filled-in with " @@ -789,7 +819,7 @@ msgid "" "Roughly equivalent to::" msgstr "" -#: library/itertools.rst:708 +#: library/itertools.rst:747 msgid "" "If one of the iterables is potentially infinite, then the :func:" "`zip_longest` function should be wrapped with something that limits the " @@ -797,17 +827,17 @@ msgid "" "specified, *fillvalue* defaults to ``None``." msgstr "" -#: library/itertools.rst:717 +#: library/itertools.rst:756 msgid "Itertools Recipes" msgstr "" -#: library/itertools.rst:719 +#: library/itertools.rst:758 msgid "" "This section shows recipes for creating an extended toolset using the " "existing itertools as building blocks." msgstr "" -#: library/itertools.rst:722 +#: library/itertools.rst:761 msgid "" "The primary purpose of the itertools recipes is educational. The recipes " "show various ways of thinking about individual tools — for example, that " @@ -819,22 +849,22 @@ msgid "" "``map()``, ``filter()``, ``reversed()``, and ``enumerate()``." msgstr "" -#: library/itertools.rst:731 +#: library/itertools.rst:770 msgid "" "A secondary purpose of the recipes is to serve as an incubator. The " "``accumulate()``, ``compress()``, and ``pairwise()`` itertools started out " -"as recipes. Currently, the ``iter_index()`` recipe is being tested to see " -"whether it proves its worth." +"as recipes. Currently, the ``sliding_window()`` and ``iter_index()`` " +"recipes are being tested to see whether they prove their worth." msgstr "" -#: library/itertools.rst:736 +#: library/itertools.rst:775 msgid "" "Substantially all of these recipes and many, many others can be installed " "from the `more-itertools project `_ found on the Python Package Index::" msgstr "" -#: library/itertools.rst:742 +#: library/itertools.rst:781 msgid "" "Many of the recipes offer the same high performance as the underlying " "toolset. Superior memory performance is kept by processing elements one at a " @@ -844,3 +874,7 @@ msgid "" "preferring \"vectorized\" building blocks over the use of for-loops and :" "term:`generator`\\s which incur interpreter overhead." msgstr "" + +#: library/itertools.rst:1022 +msgid "The following recipes have a more mathematical flavor:" +msgstr "" diff --git a/library/locale.po b/library/locale.po index 1514e8014..919e17ec9 100644 --- a/library/locale.po +++ b/library/locale.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -629,26 +629,11 @@ msgstr "" #: library/locale.rst:419 msgid "" -"Please note that this function works like :meth:`format_string` but will " -"only work for exactly one ``%char`` specifier. For example, ``'%f'`` and " -"``'%.0f'`` are both valid specifiers, but ``'%f KiB'`` is not." -msgstr "" - -#: library/locale.rst:423 -msgid "For whole format strings, use :func:`format_string`." -msgstr "" - -#: library/locale.rst:425 -msgid "Use :meth:`format_string` instead." -msgstr "" - -#: library/locale.rst:431 -msgid "" "Formats a number *val* according to the current :const:`LC_MONETARY` " "settings." msgstr "" -#: library/locale.rst:433 +#: library/locale.rst:421 msgid "" "The returned string includes the currency symbol if *symbol* is true, which " "is the default. If *grouping* is ``True`` (which is not the default), " @@ -656,68 +641,68 @@ msgid "" "not the default), the international currency symbol is used." msgstr "" -#: library/locale.rst:440 +#: library/locale.rst:428 msgid "" "This function will not work with the 'C' locale, so you have to set a locale " "via :func:`setlocale` first." msgstr "" -#: library/locale.rst:446 +#: library/locale.rst:434 msgid "" "Formats a floating point number using the same format as the built-in " "function ``str(float)``, but takes the decimal point into account." msgstr "" -#: library/locale.rst:452 +#: library/locale.rst:440 msgid "" "Converts a string into a normalized number string, following the :const:" "`LC_NUMERIC` settings." msgstr "" -#: library/locale.rst:460 +#: library/locale.rst:448 msgid "" "Converts a normalized number string into a formatted string following the :" "const:`LC_NUMERIC` settings." msgstr "" -#: library/locale.rst:468 +#: library/locale.rst:456 msgid "" "Converts a string to a number, following the :const:`LC_NUMERIC` settings, " "by calling *func* on the result of calling :func:`delocalize` on *string*." msgstr "" -#: library/locale.rst:474 +#: library/locale.rst:462 msgid "" "Converts a string to an integer, following the :const:`LC_NUMERIC` " "conventions." msgstr "" -#: library/locale.rst:481 +#: library/locale.rst:469 msgid "" "Locale category for the character type functions. Depending on the settings " "of this category, the functions of module :mod:`string` dealing with case " "change their behaviour." msgstr "" -#: library/locale.rst:488 +#: library/locale.rst:476 msgid "" "Locale category for sorting strings. The functions :func:`strcoll` and :" "func:`strxfrm` of the :mod:`locale` module are affected." msgstr "" -#: library/locale.rst:494 +#: library/locale.rst:482 msgid "" "Locale category for the formatting of time. The function :func:`time." "strftime` follows these conventions." msgstr "" -#: library/locale.rst:500 +#: library/locale.rst:488 msgid "" "Locale category for formatting of monetary values. The available options " "are available from the :func:`localeconv` function." msgstr "" -#: library/locale.rst:506 +#: library/locale.rst:494 msgid "" "Locale category for message display. Python currently does not support " "application specific locale-aware messages. Messages displayed by the " @@ -725,21 +710,21 @@ msgid "" "affected by this category." msgstr "" -#: library/locale.rst:511 +#: library/locale.rst:499 msgid "" "This value may not be available on operating systems not conforming to the " "POSIX standard, most notably Windows." msgstr "" -#: library/locale.rst:517 +#: library/locale.rst:505 msgid "" -"Locale category for formatting numbers. The functions :func:`.format`, :" -"func:`atoi`, :func:`atof` and :func:`.str` of the :mod:`locale` module are " -"affected by that category. All other numeric formatting operations are not " -"affected." +"Locale category for formatting numbers. The functions :func:" +"`format_string`, :func:`atoi`, :func:`atof` and :func:`.str` of the :mod:" +"`locale` module are affected by that category. All other numeric formatting " +"operations are not affected." msgstr "" -#: library/locale.rst:525 +#: library/locale.rst:513 msgid "" "Combination of all locale settings. If this flag is used when the locale is " "changed, setting the locale for all categories is attempted. If that fails " @@ -749,21 +734,21 @@ msgid "" "settings." msgstr "" -#: library/locale.rst:534 +#: library/locale.rst:522 msgid "" "This is a symbolic constant used for different values returned by :func:" "`localeconv`." msgstr "" -#: library/locale.rst:538 +#: library/locale.rst:526 msgid "Example::" msgstr "" -#: library/locale.rst:551 +#: library/locale.rst:539 msgid "Background, details, hints, tips and caveats" msgstr "" -#: library/locale.rst:553 +#: library/locale.rst:541 msgid "" "The C standard defines the locale as a program-wide property that may be " "relatively expensive to change. On top of that, some implementations are " @@ -771,7 +756,7 @@ msgid "" "This makes the locale somewhat painful to use correctly." msgstr "" -#: library/locale.rst:558 +#: library/locale.rst:546 msgid "" "Initially, when a program is started, the locale is the ``C`` locale, no " "matter what the user's preferred locale is. There is one exception: the :" @@ -781,7 +766,7 @@ msgid "" "categories by calling ``setlocale(LC_ALL, '')``." msgstr "" -#: library/locale.rst:565 +#: library/locale.rst:553 msgid "" "It is generally a bad idea to call :func:`setlocale` in some library " "routine, since as a side effect it affects the entire program. Saving and " @@ -789,7 +774,7 @@ msgid "" "that happen to run before the settings have been restored." msgstr "" -#: library/locale.rst:570 +#: library/locale.rst:558 msgid "" "If, when coding a module for general use, you need a locale independent " "version of an operation that is affected by the locale (such as certain " @@ -800,14 +785,14 @@ msgid "" "settings." msgstr "" -#: library/locale.rst:577 +#: library/locale.rst:565 msgid "" "The only way to perform numeric operations according to the locale is to use " "the special functions defined by this module: :func:`atof`, :func:`atoi`, :" -"func:`.format`, :func:`.str`." +"func:`format_string`, :func:`.str`." msgstr "" -#: library/locale.rst:581 +#: library/locale.rst:569 msgid "" "There is no way to perform case conversions and character classifications " "according to the locale. For (Unicode) text strings these are done " @@ -818,11 +803,11 @@ msgid "" "whitespace." msgstr "" -#: library/locale.rst:592 +#: library/locale.rst:580 msgid "For extension writers and programs that embed Python" msgstr "" -#: library/locale.rst:594 +#: library/locale.rst:582 msgid "" "Extension modules should never call :func:`setlocale`, except to find out " "what the current locale is. But since the return value can only be used " @@ -830,7 +815,7 @@ msgid "" "whether or not the locale is ``C``)." msgstr "" -#: library/locale.rst:599 +#: library/locale.rst:587 msgid "" "When Python code uses the :mod:`locale` module to change the locale, this " "also affects the embedding application. If the embedding application " @@ -840,11 +825,11 @@ msgid "" "accessible as a shared library." msgstr "" -#: library/locale.rst:610 +#: library/locale.rst:598 msgid "Access to message catalogs" msgstr "" -#: library/locale.rst:618 +#: library/locale.rst:606 msgid "" "The locale module exposes the C library's gettext interface on systems that " "provide this interface. It consists of the functions :func:`!gettext`, :" @@ -855,7 +840,7 @@ msgid "" "for locating message catalogs." msgstr "" -#: library/locale.rst:625 +#: library/locale.rst:613 msgid "" "Python applications should normally find no need to invoke these functions, " "and should use :mod:`gettext` instead. A known exception to this rule are " @@ -865,7 +850,7 @@ msgid "" "their message catalogs." msgstr "" -#: library/locale.rst:479 +#: library/locale.rst:467 msgid "module" msgstr "" @@ -873,6 +858,6 @@ msgstr "" msgid "_locale" msgstr "" -#: library/locale.rst:479 +#: library/locale.rst:467 msgid "string" msgstr "" diff --git a/library/logging.config.po b/library/logging.config.po index daa2527b7..d8cc41e70 100644 --- a/library/logging.config.po +++ b/library/logging.config.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -365,7 +365,11 @@ msgstr "" msgid "``validate`` (since version >=3.8)" msgstr "" -#: library/logging.config.rst:265 +#: library/logging.config.rst:264 +msgid "``defaults`` (since version >=3.12)" +msgstr "" + +#: library/logging.config.rst:266 msgid "" "An optional ``class`` key indicates the name of the formatter's class (as a " "dotted module and class name). The instantiation arguments are as for :" @@ -376,60 +380,60 @@ msgid "" "configuration keys, you should use :ref:`logging-config-dict-userdef`." msgstr "" -#: library/logging.config.rst:274 +#: library/logging.config.rst:275 msgid "" "*filters* - the corresponding value will be a dict in which each key is a " "filter id and each value is a dict describing how to configure the " "corresponding Filter instance." msgstr "" -#: library/logging.config.rst:278 +#: library/logging.config.rst:279 msgid "" "The configuring dict is searched for the key ``name`` (defaulting to the " "empty string) and this is used to construct a :class:`logging.Filter` " "instance." msgstr "" -#: library/logging.config.rst:282 +#: library/logging.config.rst:283 msgid "" "*handlers* - the corresponding value will be a dict in which each key is a " "handler id and each value is a dict describing how to configure the " "corresponding Handler instance." msgstr "" -#: library/logging.config.rst:331 +#: library/logging.config.rst:332 msgid "The configuring dict is searched for the following keys:" msgstr "" -#: library/logging.config.rst:288 +#: library/logging.config.rst:289 msgid "" "``class`` (mandatory). This is the fully qualified name of the handler " "class." msgstr "" -#: library/logging.config.rst:291 +#: library/logging.config.rst:292 msgid "``level`` (optional). The level of the handler." msgstr "" -#: library/logging.config.rst:293 +#: library/logging.config.rst:294 msgid "``formatter`` (optional). The id of the formatter for this handler." msgstr "" -#: library/logging.config.rst:296 +#: library/logging.config.rst:297 msgid "``filters`` (optional). A list of ids of the filters for this handler." msgstr "" -#: library/logging.config.rst:340 +#: library/logging.config.rst:341 msgid "``filters`` can take filter instances in addition to ids." msgstr "" -#: library/logging.config.rst:302 +#: library/logging.config.rst:303 msgid "" "All *other* keys are passed through as keyword arguments to the handler's " "constructor. For example, given the snippet:" msgstr "" -#: library/logging.config.rst:321 +#: library/logging.config.rst:322 msgid "" "the handler with id ``console`` is instantiated as a :class:`logging." "StreamHandler`, using ``sys.stdout`` as the underlying stream. The handler " @@ -438,44 +442,44 @@ msgid "" "maxBytes=1024, backupCount=3``." msgstr "" -#: library/logging.config.rst:327 +#: library/logging.config.rst:328 msgid "" "*loggers* - the corresponding value will be a dict in which each key is a " "logger name and each value is a dict describing how to configure the " "corresponding Logger instance." msgstr "" -#: library/logging.config.rst:333 +#: library/logging.config.rst:334 msgid "``level`` (optional). The level of the logger." msgstr "" -#: library/logging.config.rst:335 +#: library/logging.config.rst:336 msgid "``propagate`` (optional). The propagation setting of the logger." msgstr "" -#: library/logging.config.rst:337 +#: library/logging.config.rst:338 msgid "``filters`` (optional). A list of ids of the filters for this logger." msgstr "" -#: library/logging.config.rst:343 +#: library/logging.config.rst:344 msgid "" "``handlers`` (optional). A list of ids of the handlers for this logger." msgstr "" -#: library/logging.config.rst:346 +#: library/logging.config.rst:347 msgid "" "The specified loggers will be configured according to the level, " "propagation, filters and handlers specified." msgstr "" -#: library/logging.config.rst:349 +#: library/logging.config.rst:350 msgid "" "*root* - this will be the configuration for the root logger. Processing of " "the configuration will be as for any logger, except that the ``propagate`` " "setting will not be applicable." msgstr "" -#: library/logging.config.rst:353 +#: library/logging.config.rst:354 msgid "" "*incremental* - whether the configuration is to be interpreted as " "incremental to the existing configuration. This value defaults to " @@ -484,13 +488,13 @@ msgid "" "`fileConfig` API." msgstr "" -#: library/logging.config.rst:359 +#: library/logging.config.rst:360 msgid "" "If the specified value is ``True``, the configuration is processed as " "described in the section on :ref:`logging-config-dict-incremental`." msgstr "" -#: library/logging.config.rst:362 +#: library/logging.config.rst:363 msgid "" "*disable_existing_loggers* - whether any existing non-root loggers are to be " "disabled. This setting mirrors the parameter of the same name in :func:" @@ -498,11 +502,11 @@ msgid "" "ignored if *incremental* is ``True``." msgstr "" -#: library/logging.config.rst:370 +#: library/logging.config.rst:371 msgid "Incremental Configuration" msgstr "" -#: library/logging.config.rst:372 +#: library/logging.config.rst:373 msgid "" "It is difficult to provide complete flexibility for incremental " "configuration. For example, because objects such as filters and formatters " @@ -510,7 +514,7 @@ msgid "" "to such anonymous objects when augmenting a configuration." msgstr "" -#: library/logging.config.rst:378 +#: library/logging.config.rst:379 msgid "" "Furthermore, there is not a compelling case for arbitrarily altering the " "object graph of loggers, handlers, filters, formatters at run-time, once a " @@ -521,7 +525,7 @@ msgid "" "worth the complexity it adds to the implementation." msgstr "" -#: library/logging.config.rst:387 +#: library/logging.config.rst:388 msgid "" "Thus, when the ``incremental`` key of a configuration dict is present and is " "``True``, the system will completely ignore any ``formatters`` and " @@ -530,7 +534,7 @@ msgid "" "``loggers`` and ``root`` entries." msgstr "" -#: library/logging.config.rst:393 +#: library/logging.config.rst:394 msgid "" "Using a value in the configuration dict lets configurations to be sent over " "the wire as pickled dicts to a socket listener. Thus, the logging verbosity " @@ -538,11 +542,11 @@ msgid "" "and restart the application." msgstr "" -#: library/logging.config.rst:401 +#: library/logging.config.rst:402 msgid "Object connections" msgstr "" -#: library/logging.config.rst:403 +#: library/logging.config.rst:404 msgid "" "The schema describes a set of logging objects - loggers, handlers, " "formatters, filters - which are connected to each other in an object graph. " @@ -558,17 +562,17 @@ msgid "" "source and the destination object with that id." msgstr "" -#: library/logging.config.rst:417 +#: library/logging.config.rst:418 msgid "So, for example, consider the following YAML snippet:" msgstr "" -#: library/logging.config.rst:438 +#: library/logging.config.rst:439 msgid "" "(Note: YAML used here because it's a little more readable than the " "equivalent Python source form for the dictionary.)" msgstr "" -#: library/logging.config.rst:441 +#: library/logging.config.rst:442 msgid "" "The ids for loggers are the logger names which would be used " "programmatically to obtain a reference to those loggers, e.g. ``foo.bar." @@ -579,7 +583,7 @@ msgid "" "configuration call is complete." msgstr "" -#: library/logging.config.rst:449 +#: library/logging.config.rst:450 msgid "" "The above snippet indicates that logger named ``foo.bar.baz`` should have " "two handlers attached to it, which are described by the handler ids ``h1`` " @@ -587,11 +591,11 @@ msgid "" "the formatter for ``h2`` is that described by id ``precise``." msgstr "" -#: library/logging.config.rst:459 +#: library/logging.config.rst:460 msgid "User-defined objects" msgstr "" -#: library/logging.config.rst:461 +#: library/logging.config.rst:462 msgid "" "The schema supports user-defined objects for handlers, filters and " "formatters. (Loggers do not need to have different types for different " @@ -599,7 +603,7 @@ msgid "" "defined logger classes.)" msgstr "" -#: library/logging.config.rst:466 +#: library/logging.config.rst:467 msgid "" "Objects to be configured are described by dictionaries which detail their " "configuration. In some places, the logging system will be able to infer " @@ -612,7 +616,7 @@ msgid "" "made available under the special key ``'()'``. Here's a concrete example:" msgstr "" -#: library/logging.config.rst:492 +#: library/logging.config.rst:493 msgid "" "The above YAML snippet defines three formatters. The first, with id " "``brief``, is a standard :class:`logging.Formatter` instance with the " @@ -623,11 +627,11 @@ msgid "" "configuration sub-dictionaries::" msgstr "" -#: library/logging.config.rst:504 +#: library/logging.config.rst:505 msgid "and::" msgstr "" -#: library/logging.config.rst:511 +#: library/logging.config.rst:512 msgid "" "respectively, and as these dictionaries do not contain the special key " "``'()'``, the instantiation is inferred from the context: as a result, " @@ -636,7 +640,7 @@ msgid "" "is::" msgstr "" -#: library/logging.config.rst:524 +#: library/logging.config.rst:525 msgid "" "and this contains the special key ``'()'``, which means that user-defined " "instantiation is wanted. In this case, the specified factory callable will " @@ -648,7 +652,7 @@ msgid "" "assumed to be returned by the call::" msgstr "" -#: library/logging.config.rst:536 +#: library/logging.config.rst:537 msgid "" "The values for keys such as ``bar``, ``spam`` and ``answer`` in the above " "example should not be configuration dictionaries or references such as " @@ -656,7 +660,7 @@ msgid "" "configuration machinery, but passed to the callable as-is." msgstr "" -#: library/logging.config.rst:541 +#: library/logging.config.rst:542 msgid "" "The key ``'()'`` has been used as the special key because it is not a valid " "keyword parameter name, and so will not clash with the names of the keyword " @@ -664,13 +668,13 @@ msgid "" "corresponding value is a callable." msgstr "" -#: library/logging.config.rst:546 +#: library/logging.config.rst:547 msgid "" "The ``filters`` member of ``handlers`` and ``loggers`` can take filter " "instances in addition to ids." msgstr "" -#: library/logging.config.rst:550 +#: library/logging.config.rst:551 msgid "" "You can also specify a special key ``'.'`` whose value is a dictionary is a " "mapping of attribute names to values. If found, the specified attributes " @@ -678,13 +682,13 @@ msgid "" "following configuration::" msgstr "" -#: library/logging.config.rst:566 +#: library/logging.config.rst:567 msgid "" "the returned formatter will have attribute ``foo`` set to ``'bar'`` and " "attribute ``baz`` set to ``'bozz'``." msgstr "" -#: library/logging.config.rst:569 +#: library/logging.config.rst:570 msgid "" "The values for attributes such as ``foo`` and ``baz`` in the above example " "should not be configuration dictionaries or references such as ``cfg://foo`` " @@ -692,11 +696,11 @@ msgid "" "machinery, but set as attribute values as-is." msgstr "" -#: library/logging.config.rst:578 +#: library/logging.config.rst:579 msgid "Handler configuration order" msgstr "" -#: library/logging.config.rst:580 +#: library/logging.config.rst:581 msgid "" "Handlers are configured in alphabetical order of their keys, and a " "configured handler replaces the configuration dictionary in (a working copy " @@ -717,11 +721,11 @@ msgid "" "dictionary." msgstr "" -#: library/logging.config.rst:601 +#: library/logging.config.rst:602 msgid "Access to external objects" msgstr "" -#: library/logging.config.rst:603 +#: library/logging.config.rst:604 msgid "" "There are times where a configuration needs to refer to objects external to " "the configuration, for example ``sys.stderr``. If the configuration dict is " @@ -736,7 +740,7 @@ msgid "" "import mechanisms." msgstr "" -#: library/logging.config.rst:616 +#: library/logging.config.rst:617 msgid "" "The handling of such prefixes is done in a way analogous to protocol " "handling: there is a generic mechanism to look for prefixes which match the " @@ -746,11 +750,11 @@ msgid "" "prefix is not recognised, then the string value will be left as-is." msgstr "" -#: library/logging.config.rst:628 +#: library/logging.config.rst:629 msgid "Access to internal objects" msgstr "" -#: library/logging.config.rst:630 +#: library/logging.config.rst:631 msgid "" "As well as external objects, there is sometimes also a need to refer to " "objects in the configuration. This will be done implicitly by the " @@ -761,7 +765,7 @@ msgid "" "and resolve to the appropriate destination object." msgstr "" -#: library/logging.config.rst:638 +#: library/logging.config.rst:639 msgid "" "However, a more generic mechanism is needed for user-defined objects which " "are not known to the :mod:`logging` module. For example, consider :class:" @@ -775,7 +779,7 @@ msgid "" "resolution system allows the user to specify:" msgstr "" -#: library/logging.config.rst:660 +#: library/logging.config.rst:661 msgid "" "The literal string ``'cfg://handlers.file'`` will be resolved in an " "analogous way to strings with the ``ext://`` prefix, but looking in the " @@ -784,7 +788,7 @@ msgid "" "format``. Thus, given the following snippet:" msgstr "" -#: library/logging.config.rst:678 +#: library/logging.config.rst:679 msgid "" "in the configuration, the string ``'cfg://handlers'`` would resolve to the " "dict with key ``handlers``, the string ``'cfg://handlers.email`` would " @@ -800,7 +804,7 @@ msgid "" "to the string value if needed." msgstr "" -#: library/logging.config.rst:692 +#: library/logging.config.rst:693 msgid "" "Given a string ``cfg://handlers.myhandler.mykey.123``, this will resolve to " "``config_dict['handlers']['myhandler']['mykey']['123']``. If the string is " @@ -810,11 +814,11 @@ msgid "" "['mykey']['123']`` if that fails." msgstr "" -#: library/logging.config.rst:704 +#: library/logging.config.rst:705 msgid "Import resolution and custom importers" msgstr "" -#: library/logging.config.rst:706 +#: library/logging.config.rst:707 msgid "" "Import resolution, by default, uses the builtin :func:`__import__` function " "to do its importing. You may want to replace this with your own importing " @@ -826,18 +830,120 @@ msgid "" "instance level, you need to wrap it with :func:`staticmethod`. For example::" msgstr "" -#: library/logging.config.rst:721 +#: library/logging.config.rst:722 msgid "" "You don't need to wrap with :func:`staticmethod` if you're setting the " "import callable on a configurator *instance*." msgstr "" #: library/logging.config.rst:728 -msgid "Configuration file format" +msgid "Configuring QueueHandler and QueueListener" msgstr "" #: library/logging.config.rst:730 msgid "" +"If you want to configure a :class:`~logging.handlers.QueueHandler`, noting " +"that this is normally used in conjunction with a :class:`~logging.handlers." +"QueueListener`, you can configure both together. After the configuration, " +"the ``QueueListener`` instance will be available as the :attr:`~logging." +"handlers.QueueHandler.listener` attribute of the created handler, and that " +"in turn will be available to you using :func:`~logging.getHandlerByName` and " +"passing the name you have used for the ``QueueHandler`` in your " +"configuration. The dictionary schema for configuring the pair is shown in " +"the example YAML snippet below." +msgstr "" + +#: library/logging.config.rst:751 +msgid "The ``queue`` and ``listener`` keys are optional." +msgstr "" + +#: library/logging.config.rst:753 +msgid "" +"If the ``queue`` key is present, the corresponding value can be one of the " +"following:" +msgstr "" + +#: library/logging.config.rst:755 +msgid "" +"An actual instance of :class:`queue.Queue` or a subclass thereof. This is of " +"course only possible if you are constructing or modifying the configuration " +"dictionary in code." +msgstr "" + +#: library/logging.config.rst:759 +msgid "" +"A string that resolves to a callable which, when called with no arguments, " +"returns the :class:`queue.Queue` instance to use. That callable could be a :" +"class:`queue.Queue` subclass or a function which returns a suitable queue " +"instance, such as ``my.module.queue_factory()``." +msgstr "" + +#: library/logging.config.rst:764 +msgid "" +"A dict with a ``'()'`` key which is constructed in the usual way as " +"discussed in :ref:`logging-config-dict-userdef`. The result of this " +"construction should be a :class:`queue.Queue` instance." +msgstr "" + +#: library/logging.config.rst:768 +msgid "" +"If the ``queue`` key is absent, a standard unbounded :class:`queue.Queue` " +"instance is created and used." +msgstr "" + +#: library/logging.config.rst:771 +msgid "" +"If the ``listener`` key is present, the corresponding value can be one of " +"the following:" +msgstr "" + +#: library/logging.config.rst:773 +msgid "" +"A subclass of :class:`logging.handlers.QueueListener`. This is of course " +"only possible if you are constructing or modifying the configuration " +"dictionary in code." +msgstr "" + +#: library/logging.config.rst:777 +msgid "" +"A string which resolves to a class which is a subclass of ``QueueListener``, " +"such as ``'my.package.CustomListener'``." +msgstr "" + +#: library/logging.config.rst:780 +msgid "" +"A dict with a ``'()'`` key which is constructed in the usual way as " +"discussed in :ref:`logging-config-dict-userdef`. The result of this " +"construction should be a callable with the same signature as the " +"``QueueListener`` initializer." +msgstr "" + +#: library/logging.config.rst:784 +msgid "" +"If the ``listener`` key is absent, :class:`logging.handlers.QueueListener` " +"is used." +msgstr "" + +#: library/logging.config.rst:786 +msgid "" +"The values under the ``handlers`` key are the names of other handlers in the " +"configuration (not shown in the above snippet) which will be passed to the " +"queue listener." +msgstr "" + +#: library/logging.config.rst:790 +msgid "" +"Any custom queue handler and listener classes will need to be defined with " +"the same initialization signatures as :class:`~logging.handlers." +"QueueHandler` and :class:`~logging.handlers.QueueListener`." +msgstr "" + +#: library/logging.config.rst:799 +msgid "Configuration file format" +msgstr "" + +#: library/logging.config.rst:801 +msgid "" "The configuration file format understood by :func:`fileConfig` is based on :" "mod:`configparser` functionality. The file must contain sections called " "``[loggers]``, ``[handlers]`` and ``[formatters]`` which identify by name " @@ -853,7 +959,7 @@ msgid "" "specified in a section called ``[logger_root]``." msgstr "" -#: library/logging.config.rst:745 +#: library/logging.config.rst:816 msgid "" "The :func:`fileConfig` API is older than the :func:`dictConfig` API and does " "not provide functionality to cover certain aspects of logging. For example, " @@ -866,17 +972,17 @@ msgid "" "when it's convenient to do so." msgstr "" -#: library/logging.config.rst:755 +#: library/logging.config.rst:826 msgid "Examples of these sections in the file are given below." msgstr "" -#: library/logging.config.rst:768 +#: library/logging.config.rst:839 msgid "" "The root logger must specify a level and a list of handlers. An example of a " "root logger section is given below." msgstr "" -#: library/logging.config.rst:777 +#: library/logging.config.rst:848 msgid "" "The ``level`` entry can be one of ``DEBUG, INFO, WARNING, ERROR, CRITICAL`` " "or ``NOTSET``. For the root logger only, ``NOTSET`` means that all messages " @@ -884,7 +990,7 @@ msgid "" "of the ``logging`` package's namespace." msgstr "" -#: library/logging.config.rst:782 +#: library/logging.config.rst:853 msgid "" "The ``handlers`` entry is a comma-separated list of handler names, which " "must appear in the ``[handlers]`` section. These names must appear in the " @@ -892,13 +998,13 @@ msgid "" "file." msgstr "" -#: library/logging.config.rst:787 +#: library/logging.config.rst:858 msgid "" "For loggers other than the root logger, some additional information is " "required. This is illustrated by the following example." msgstr "" -#: library/logging.config.rst:798 +#: library/logging.config.rst:869 msgid "" "The ``level`` and ``handlers`` entries are interpreted as for the root " "logger, except that if a non-root logger's level is specified as ``NOTSET``, " @@ -911,20 +1017,20 @@ msgid "" "application to get the logger." msgstr "" -#: library/logging.config.rst:807 +#: library/logging.config.rst:878 msgid "" "Sections which specify handler configuration are exemplified by the " "following." msgstr "" -#: library/logging.config.rst:817 +#: library/logging.config.rst:888 msgid "" "The ``class`` entry indicates the handler's class (as determined by :func:" "`eval` in the ``logging`` package's namespace). The ``level`` is interpreted " "as for loggers, and ``NOTSET`` is taken to mean 'log everything'." msgstr "" -#: library/logging.config.rst:821 +#: library/logging.config.rst:892 msgid "" "The ``formatter`` entry indicates the key name of the formatter for this " "handler. If blank, a default formatter (``logging._defaultFormatter``) is " @@ -932,7 +1038,7 @@ msgid "" "and have a corresponding section in the configuration file." msgstr "" -#: library/logging.config.rst:826 +#: library/logging.config.rst:897 msgid "" "The ``args`` entry, when :ref:`evaluated ` in the context of the " "``logging`` package's namespace, is the list of arguments to the constructor " @@ -941,7 +1047,7 @@ msgid "" "provided, it defaults to ``()``." msgstr "" -#: library/logging.config.rst:832 +#: library/logging.config.rst:903 msgid "" "The optional ``kwargs`` entry, when :ref:`evaluated ` in the " "context of the ``logging`` package's namespace, is the keyword argument dict " @@ -949,19 +1055,26 @@ msgid "" "``{}``." msgstr "" -#: library/logging.config.rst:889 +#: library/logging.config.rst:960 msgid "" "Sections which specify formatter configuration are typified by the following." msgstr "" -#: library/logging.config.rst:900 +#: library/logging.config.rst:972 msgid "" "The arguments for the formatter configuration are the same as the keys in " "the dictionary schema :ref:`formatters section `." msgstr "" -#: library/logging.config.rst:906 +#: library/logging.config.rst:976 +msgid "" +"The ``defaults`` entry, when :ref:`evaluated ` in the context of " +"the ``logging`` package's namespace, is a dictionary of default values for " +"custom formatting fields. If not provided, it defaults to ``None``." +msgstr "" + +#: library/logging.config.rst:983 msgid "" "Due to the use of :func:`eval` as described above, there are potential " "security risks which result from using the :func:`listen` to send and " @@ -970,18 +1083,18 @@ msgid "" "`listen` documentation for more information." msgstr "" -#: library/logging.config.rst:915 +#: library/logging.config.rst:992 msgid "Module :mod:`logging`" msgstr "" -#: library/logging.config.rst:915 +#: library/logging.config.rst:992 msgid "API reference for the logging module." msgstr "" -#: library/logging.config.rst:917 +#: library/logging.config.rst:994 msgid "Module :mod:`logging.handlers`" msgstr "" -#: library/logging.config.rst:918 +#: library/logging.config.rst:995 msgid "Useful handlers included with the logging module." msgstr "" diff --git a/library/logging.handlers.po b/library/logging.handlers.po index 32c5f42dc..f6b794d56 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1428,7 +1428,7 @@ msgid "" "instances for *queue*." msgstr "" -#: library/logging.handlers.rst:1046 library/logging.handlers.rst:1129 +#: library/logging.handlers.rst:1046 library/logging.handlers.rst:1135 msgid "" "If you are using :mod:`multiprocessing`, you should avoid using :class:" "`~queue.SimpleQueue` and instead use :class:`multiprocessing.Queue`." @@ -1490,11 +1490,18 @@ msgid "" "customized queue implementation." msgstr "" -#: library/logging.handlers.rst:1100 +#: library/logging.handlers.rst:1097 +msgid "" +"When created via configuration using :func:`~logging.config.dictConfig`, " +"this attribute will contain a :class:`QueueListener` instance for use with " +"this handler. Otherwise, it will be ``None``." +msgstr "" + +#: library/logging.handlers.rst:1106 msgid "QueueListener" msgstr "" -#: library/logging.handlers.rst:1104 +#: library/logging.handlers.rst:1110 msgid "" "The :class:`QueueListener` class, located in the :mod:`logging.handlers` " "module, supports receiving logging messages from a queue, such as those " @@ -1505,7 +1512,7 @@ msgid "" "works hand-in-hand with :class:`QueueHandler`." msgstr "" -#: library/logging.handlers.rst:1112 +#: library/logging.handlers.rst:1118 msgid "" "Along with the :class:`QueueHandler` class, :class:`QueueListener` can be " "used to let handlers do their work on a separate thread from the one which " @@ -1515,7 +1522,7 @@ msgid "" "an email via :class:`SMTPHandler`) are done on a separate thread." msgstr "" -#: library/logging.handlers.rst:1121 +#: library/logging.handlers.rst:1127 msgid "" "Returns a new instance of the :class:`QueueListener` class. The instance is " "initialized with the queue to send messages to and a list of handlers which " @@ -1526,7 +1533,7 @@ msgid "" "class:`~queue.SimpleQueue` instances for *queue*." msgstr "" -#: library/logging.handlers.rst:1132 +#: library/logging.handlers.rst:1138 msgid "" "If ``respect_handler_level`` is ``True``, a handler's level is respected " "(compared with the level for the message) when deciding whether to pass " @@ -1534,82 +1541,82 @@ msgid "" "versions - to always pass each message to each handler." msgstr "" -#: library/logging.handlers.rst:1137 +#: library/logging.handlers.rst:1143 msgid "The ``respect_handler_level`` argument was added." msgstr "" -#: library/logging.handlers.rst:1142 +#: library/logging.handlers.rst:1148 msgid "Dequeues a record and return it, optionally blocking." msgstr "" -#: library/logging.handlers.rst:1144 +#: library/logging.handlers.rst:1150 msgid "" "The base implementation uses ``get()``. You may want to override this method " "if you want to use timeouts or work with custom queue implementations." msgstr "" -#: library/logging.handlers.rst:1150 +#: library/logging.handlers.rst:1156 msgid "Prepare a record for handling." msgstr "" -#: library/logging.handlers.rst:1152 +#: library/logging.handlers.rst:1158 msgid "" "This implementation just returns the passed-in record. You may want to " "override this method if you need to do any custom marshalling or " "manipulation of the record before passing it to the handlers." msgstr "" -#: library/logging.handlers.rst:1158 +#: library/logging.handlers.rst:1164 msgid "Handle a record." msgstr "" -#: library/logging.handlers.rst:1160 +#: library/logging.handlers.rst:1166 msgid "" "This just loops through the handlers offering them the record to handle. The " "actual object passed to the handlers is that which is returned from :meth:" "`prepare`." msgstr "" -#: library/logging.handlers.rst:1166 +#: library/logging.handlers.rst:1172 msgid "Starts the listener." msgstr "" -#: library/logging.handlers.rst:1168 +#: library/logging.handlers.rst:1174 msgid "" "This starts up a background thread to monitor the queue for LogRecords to " "process." msgstr "" -#: library/logging.handlers.rst:1173 +#: library/logging.handlers.rst:1179 msgid "Stops the listener." msgstr "" -#: library/logging.handlers.rst:1175 +#: library/logging.handlers.rst:1181 msgid "" "This asks the thread to terminate, and then waits for it to do so. Note that " "if you don't call this before your application exits, there may be some " "records still left on the queue, which won't be processed." msgstr "" -#: library/logging.handlers.rst:1181 +#: library/logging.handlers.rst:1187 msgid "" "Writes a sentinel to the queue to tell the listener to quit. This " "implementation uses ``put_nowait()``. You may want to override this method " "if you want to use timeouts or work with custom queue implementations." msgstr "" -#: library/logging.handlers.rst:1192 +#: library/logging.handlers.rst:1198 msgid "Module :mod:`logging`" msgstr "" -#: library/logging.handlers.rst:1192 +#: library/logging.handlers.rst:1198 msgid "API reference for the logging module." msgstr "" -#: library/logging.handlers.rst:1194 +#: library/logging.handlers.rst:1200 msgid "Module :mod:`logging.config`" msgstr "" -#: library/logging.handlers.rst:1195 +#: library/logging.handlers.rst:1201 msgid "Configuration API for the logging module." msgstr "" diff --git a/library/logging.po b/library/logging.po index cd4a508d1..38676fbc4 100644 --- a/library/logging.po +++ b/library/logging.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -201,7 +201,7 @@ msgid "" "level." msgstr "" -#: library/logging.rst:465 +#: library/logging.rst:477 msgid "See :ref:`levels` for a list of levels." msgstr "" @@ -242,6 +242,16 @@ msgstr "" #: library/logging.rst:175 msgid "" +"Returns a set of loggers which are immediate children of this logger. So for " +"example ``logging.getLogger().getChildren()`` might return a set containing " +"loggers named ``foo`` and ``bar``, but a logger named ``foo.bar`` wouldn't " +"be included in the set. Likewise, ``logging.getLogger('foo').getChildren()`` " +"might return a set including a logger named ``foo.bar``, but it wouldn't " +"include one named ``foo.bar.baz``." +msgstr "" + +#: library/logging.rst:187 +msgid "" "Logs a message with level :const:`DEBUG` on this logger. The *msg* is the " "message format string, and the *args* are the arguments which are merged " "into *msg* using the string formatting operator. (Note that this means that " @@ -250,13 +260,13 @@ msgid "" "are supplied." msgstr "" -#: library/logging.rst:181 +#: library/logging.rst:193 msgid "" "There are four keyword arguments in *kwargs* which are inspected: " "*exc_info*, *stack_info*, *stacklevel* and *extra*." msgstr "" -#: library/logging.rst:184 +#: library/logging.rst:196 msgid "" "If *exc_info* does not evaluate as false, it causes exception information to " "be added to the logging message. If an exception tuple (in the format " @@ -265,7 +275,7 @@ msgid "" "information." msgstr "" -#: library/logging.rst:1095 +#: library/logging.rst:1116 msgid "" "The second optional keyword argument is *stack_info*, which defaults to " "``False``. If true, stack information is added to the logging message, " @@ -277,20 +287,20 @@ msgid "" "handlers." msgstr "" -#: library/logging.rst:1104 +#: library/logging.rst:1125 msgid "" "You can specify *stack_info* independently of *exc_info*, e.g. to just show " "how you got to a certain point in your code, even when no exceptions were " "raised. The stack frames are printed following a header line which says:" msgstr "" -#: library/logging.rst:1112 +#: library/logging.rst:1133 msgid "" "This mimics the ``Traceback (most recent call last):`` which is used when " "displaying exception frames." msgstr "" -#: library/logging.rst:209 +#: library/logging.rst:221 msgid "" "The third optional keyword argument is *stacklevel*, which defaults to " "``1``. If greater than 1, the corresponding number of stack frames are " @@ -302,7 +312,7 @@ msgid "" "module." msgstr "" -#: library/logging.rst:217 +#: library/logging.rst:229 msgid "" "The fourth keyword argument is *extra* which can be used to pass a " "dictionary which is used to populate the __dict__ of the :class:`LogRecord` " @@ -311,18 +321,18 @@ msgid "" "incorporated into logged messages. For example::" msgstr "" -#: library/logging.rst:229 +#: library/logging.rst:241 msgid "would print something like" msgstr "" -#: library/logging.rst:235 +#: library/logging.rst:247 msgid "" "The keys in the dictionary passed in *extra* should not clash with the keys " "used by the logging system. (See the section on :ref:`logrecord-attributes` " "for more information on which keys are used by the logging system.)" msgstr "" -#: library/logging.rst:239 +#: library/logging.rst:251 msgid "" "If you choose to use these attributes in logged messages, you need to " "exercise some care. In the above example, for instance, the :class:" @@ -333,7 +343,7 @@ msgid "" "dictionary with these keys." msgstr "" -#: library/logging.rst:1143 +#: library/logging.rst:1164 msgid "" "While this might be annoying, this feature is intended for use in " "specialized circumstances, such as multi-threaded servers where the same " @@ -344,78 +354,78 @@ msgid "" "particular :class:`Handler`\\ s." msgstr "" -#: library/logging.rst:253 +#: library/logging.rst:265 msgid "" "If no handler is attached to this logger (or any of its ancestors, taking " "into account the relevant :attr:`Logger.propagate` attributes), the message " "will be sent to the handler set on :attr:`lastResort`." msgstr "" -#: library/logging.rst:1154 +#: library/logging.rst:1175 msgid "The *stack_info* parameter was added." msgstr "" -#: library/logging.rst:260 +#: library/logging.rst:272 msgid "The *exc_info* parameter can now accept exception instances." msgstr "" -#: library/logging.rst:263 +#: library/logging.rst:275 msgid "The *stacklevel* parameter was added." msgstr "" -#: library/logging.rst:269 +#: library/logging.rst:281 msgid "" "Logs a message with level :const:`INFO` on this logger. The arguments are " "interpreted as for :meth:`debug`." msgstr "" -#: library/logging.rst:275 +#: library/logging.rst:287 msgid "" "Logs a message with level :const:`WARNING` on this logger. The arguments are " "interpreted as for :meth:`debug`." msgstr "" -#: library/logging.rst:278 +#: library/logging.rst:290 msgid "" "There is an obsolete method ``warn`` which is functionally identical to " "``warning``. As ``warn`` is deprecated, please do not use it - use " "``warning`` instead." msgstr "" -#: library/logging.rst:284 +#: library/logging.rst:296 msgid "" "Logs a message with level :const:`ERROR` on this logger. The arguments are " "interpreted as for :meth:`debug`." msgstr "" -#: library/logging.rst:290 +#: library/logging.rst:302 msgid "" "Logs a message with level :const:`CRITICAL` on this logger. The arguments " "are interpreted as for :meth:`debug`." msgstr "" -#: library/logging.rst:296 +#: library/logging.rst:308 msgid "" "Logs a message with integer level *level* on this logger. The other " "arguments are interpreted as for :meth:`debug`." msgstr "" -#: library/logging.rst:302 +#: library/logging.rst:314 msgid "" "Logs a message with level :const:`ERROR` on this logger. The arguments are " "interpreted as for :meth:`debug`. Exception info is added to the logging " "message. This method should only be called from an exception handler." msgstr "" -#: library/logging.rst:309 +#: library/logging.rst:321 msgid "Adds the specified filter *filter* to this logger." msgstr "" -#: library/logging.rst:314 +#: library/logging.rst:326 msgid "Removes the specified filter *filter* from this logger." msgstr "" -#: library/logging.rst:319 +#: library/logging.rst:331 msgid "" "Apply this logger's filters to the record and return ``True`` if the record " "is to be processed. The filters are consulted in turn, until one of them " @@ -424,22 +434,22 @@ msgid "" "processing of the record occurs." msgstr "" -#: library/logging.rst:328 +#: library/logging.rst:340 msgid "Adds the specified handler *hdlr* to this logger." msgstr "" -#: library/logging.rst:333 +#: library/logging.rst:345 msgid "Removes the specified handler *hdlr* from this logger." msgstr "" -#: library/logging.rst:338 +#: library/logging.rst:350 msgid "" "Finds the caller's source filename and line number. Returns the filename, " "line number, function name and stack information as a 4-element tuple. The " "stack information is returned as ``None`` unless *stack_info* is ``True``." msgstr "" -#: library/logging.rst:342 +#: library/logging.rst:354 msgid "" "The *stacklevel* parameter is passed from code calling the :meth:`debug` and " "other APIs. If greater than 1, the excess is used to skip stack frames " @@ -449,7 +459,7 @@ msgid "" "calls it." msgstr "" -#: library/logging.rst:352 +#: library/logging.rst:364 msgid "" "Handles a record by passing it to all handlers associated with this logger " "and its ancestors (until a false value of *propagate* is found). This method " @@ -458,13 +468,13 @@ msgid "" "filter`." msgstr "" -#: library/logging.rst:360 +#: library/logging.rst:372 msgid "" "This is a factory method which can be overridden in subclasses to create " "specialized :class:`LogRecord` instances." msgstr "" -#: library/logging.rst:365 +#: library/logging.rst:377 msgid "" "Checks to see if this logger has any handlers configured. This is done by " "looking for handlers in this logger and its parents in the logger hierarchy. " @@ -474,15 +484,15 @@ msgid "" "the existence of handlers." msgstr "" -#: library/logging.rst:374 +#: library/logging.rst:386 msgid "Loggers can now be pickled and unpickled." msgstr "" -#: library/logging.rst:380 +#: library/logging.rst:392 msgid "Logging Levels" msgstr "" -#: library/logging.rst:382 +#: library/logging.rst:394 msgid "" "The numeric values of logging levels are given in the following table. These " "are primarily of interest if you want to define your own levels, and need " @@ -491,83 +501,83 @@ msgid "" "value; the predefined name is lost." msgstr "" -#: library/logging.rst:389 +#: library/logging.rst:401 msgid "Level" msgstr "" -#: library/logging.rst:389 +#: library/logging.rst:401 msgid "Numeric value" msgstr "" -#: library/logging.rst:389 +#: library/logging.rst:401 msgid "What it means / When to use it" msgstr "" -#: library/logging.rst:391 +#: library/logging.rst:403 msgid "0" msgstr "" -#: library/logging.rst:391 +#: library/logging.rst:403 msgid "" "When set on a logger, indicates that ancestor loggers are to be consulted to " "determine the effective level. If that still resolves to :const:`!NOTSET`, " "then all events are logged. When set on a handler, all events are handled." msgstr "" -#: library/logging.rst:399 +#: library/logging.rst:411 msgid "10" msgstr "" -#: library/logging.rst:399 +#: library/logging.rst:411 msgid "" "Detailed information, typically only of interest to a developer trying to " "diagnose a problem." msgstr "" -#: library/logging.rst:403 +#: library/logging.rst:415 msgid "20" msgstr "" -#: library/logging.rst:403 +#: library/logging.rst:415 msgid "Confirmation that things are working as expected." msgstr "" -#: library/logging.rst:406 +#: library/logging.rst:418 msgid "30" msgstr "" -#: library/logging.rst:406 +#: library/logging.rst:418 msgid "" "An indication that something unexpected happened, or that a problem might " "occur in the near future (e.g. 'disk space low'). The software is still " "working as expected." msgstr "" -#: library/logging.rst:413 +#: library/logging.rst:425 msgid "40" msgstr "" -#: library/logging.rst:413 +#: library/logging.rst:425 msgid "" "Due to a more serious problem, the software has not been able to perform " "some function." msgstr "" -#: library/logging.rst:417 +#: library/logging.rst:429 msgid "50" msgstr "" -#: library/logging.rst:417 +#: library/logging.rst:429 msgid "" "A serious error, indicating that the program itself may be unable to " "continue running." msgstr "" -#: library/logging.rst:426 +#: library/logging.rst:438 msgid "Handler Objects" msgstr "" -#: library/logging.rst:428 +#: library/logging.rst:440 msgid "" "Handlers have the following attributes and methods. Note that :class:" "`Handler` is never instantiated directly; this class acts as a base for more " @@ -575,53 +585,53 @@ msgid "" "to call :meth:`Handler.__init__`." msgstr "" -#: library/logging.rst:437 +#: library/logging.rst:449 msgid "" "Initializes the :class:`Handler` instance by setting its level, setting the " "list of filters to the empty list and creating a lock (using :meth:" "`createLock`) for serializing access to an I/O mechanism." msgstr "" -#: library/logging.rst:444 +#: library/logging.rst:456 msgid "" "Initializes a thread lock which can be used to serialize access to " "underlying I/O functionality which may not be threadsafe." msgstr "" -#: library/logging.rst:450 +#: library/logging.rst:462 msgid "Acquires the thread lock created with :meth:`createLock`." msgstr "" -#: library/logging.rst:455 +#: library/logging.rst:467 msgid "Releases the thread lock acquired with :meth:`acquire`." msgstr "" -#: library/logging.rst:460 +#: library/logging.rst:472 msgid "" "Sets the threshold for this handler to *level*. Logging messages which are " "less severe than *level* will be ignored. When a handler is created, the " "level is set to :const:`NOTSET` (which causes all messages to be processed)." msgstr "" -#: library/logging.rst:467 +#: library/logging.rst:479 msgid "" "The *level* parameter now accepts a string representation of the level such " "as 'INFO' as an alternative to the integer constants such as :const:`INFO`." msgstr "" -#: library/logging.rst:475 +#: library/logging.rst:487 msgid "Sets the :class:`Formatter` for this handler to *fmt*." msgstr "" -#: library/logging.rst:480 +#: library/logging.rst:492 msgid "Adds the specified filter *filter* to this handler." msgstr "" -#: library/logging.rst:485 +#: library/logging.rst:497 msgid "Removes the specified filter *filter* from this handler." msgstr "" -#: library/logging.rst:490 +#: library/logging.rst:502 msgid "" "Apply this handler's filters to the record and return ``True`` if the record " "is to be processed. The filters are consulted in turn, until one of them " @@ -630,13 +640,13 @@ msgid "" "record." msgstr "" -#: library/logging.rst:499 +#: library/logging.rst:511 msgid "" "Ensure all logging output has been flushed. This version does nothing and is " "intended to be implemented by subclasses." msgstr "" -#: library/logging.rst:505 +#: library/logging.rst:517 msgid "" "Tidy up any resources used by the handler. This version does no output but " "removes the handler from an internal list of handlers which is closed when :" @@ -644,14 +654,14 @@ msgid "" "from overridden :meth:`close` methods." msgstr "" -#: library/logging.rst:513 +#: library/logging.rst:525 msgid "" "Conditionally emits the specified logging record, depending on filters which " "may have been added to the handler. Wraps the actual emission of the record " "with acquisition/release of the I/O thread lock." msgstr "" -#: library/logging.rst:520 +#: library/logging.rst:532 msgid "" "This method should be called from handlers when an exception is encountered " "during an :meth:`emit` call. If the module-level attribute " @@ -664,20 +674,20 @@ msgid "" "more useful during development)." msgstr "" -#: library/logging.rst:533 +#: library/logging.rst:545 msgid "" "Do formatting for a record - if a formatter is set, use it. Otherwise, use " "the default formatter for the module." msgstr "" -#: library/logging.rst:539 +#: library/logging.rst:551 msgid "" "Do whatever it takes to actually log the specified logging record. This " "version is intended to be implemented by subclasses and so raises a :exc:" "`NotImplementedError`." msgstr "" -#: library/logging.rst:543 +#: library/logging.rst:555 msgid "" "This method is called after a handler-level lock is acquired, which is " "released after this method returns. When you override this method, note that " @@ -686,13 +696,13 @@ msgid "" "Specifically:" msgstr "" -#: library/logging.rst:549 +#: library/logging.rst:561 msgid "" "Logging configuration APIs acquire the module-level lock, and then " "individual handler-level locks as those handlers are configured." msgstr "" -#: library/logging.rst:552 +#: library/logging.rst:564 msgid "" "Many logging APIs lock the module-level lock. If such an API is called from " "this method, it could cause a deadlock if a configuration call is made on " @@ -702,84 +712,77 @@ msgid "" "method, the handler-level lock has already been acquired)." msgstr "" -#: library/logging.rst:559 +#: library/logging.rst:571 msgid "" "For a list of handlers included as standard, see :mod:`logging.handlers`." msgstr "" -#: library/logging.rst:564 +#: library/logging.rst:576 msgid "Formatter Objects" msgstr "" -#: library/logging.rst:568 +#: library/logging.rst:582 msgid "" -":class:`Formatter` objects have the following attributes and methods. They " -"are responsible for converting a :class:`LogRecord` to (usually) a string " -"which can be interpreted by either a human or an external system. The base :" -"class:`Formatter` allows a formatting string to be specified. If none is " -"supplied, the default value of ``'%(message)s'`` is used, which just " -"includes the message in the logging call. To have additional items of " -"information in the formatted output (such as a timestamp), keep reading." +"Responsible for converting a :class:`LogRecord` to an output string to be " +"interpreted by a human or external system." msgstr "" -#: library/logging.rst:576 +#: library/logging.rst:0 +msgid "Parameters" +msgstr "" + +#: library/logging.rst:585 msgid "" -"A Formatter can be initialized with a format string which makes use of " -"knowledge of the :class:`LogRecord` attributes - such as the default value " -"mentioned above making use of the fact that the user's message and arguments " -"are pre-formatted into a :class:`LogRecord`'s *message* attribute. This " -"format string contains standard Python %-style mapping keys. See section :" -"ref:`old-string-formatting` for more information on string formatting." +"A format string in the given *style* for the logged output as a whole. The " +"possible mapping keys are drawn from the :class:`LogRecord` object's :ref:" +"`logrecord-attributes`. If not specified, ``'%(message)s'`` is used, which " +"is just the logged message." msgstr "" -#: library/logging.rst:583 +#: library/logging.rst:593 msgid "" -"The useful mapping keys in a :class:`LogRecord` are given in the section on :" -"ref:`logrecord-attributes`." +"A format string in the given *style* for the date/time portion of the logged " +"output. If not specified, the default described in :meth:`formatTime` is " +"used." msgstr "" -#: library/logging.rst:589 +#: library/logging.rst:598 msgid "" -"Returns a new instance of the :class:`Formatter` class. The instance is " -"initialized with a format string for the message as a whole, as well as a " -"format string for the date/time portion of a message. If no *fmt* is " -"specified, ``'%(message)s'`` is used. If no *datefmt* is specified, a " -"format is used which is described in the :meth:`formatTime` documentation." +"Can be one of ``'%'``, ``'{'`` or ``'$'`` and determines how the format " +"string will be merged with its data: using one of :ref:`old-string-" +"formatting` (``%``), :meth:`str.format` (``{``) or :class:`string.Template` " +"(``$``). This only applies to *fmt* and *datefmt* (e.g. ``'%(message)s'`` " +"versus ``'{message}'``), not to the actual log messages passed to the " +"logging methods. However, there are :ref:`other ways ` to " +"use ``{``- and ``$``-formatting for log messages." msgstr "" -#: library/logging.rst:595 +#: library/logging.rst:608 msgid "" -"The *style* parameter can be one of '%', '{' or '$' and determines how the " -"format string will be merged with its data: using one of %-formatting, :meth:" -"`str.format` or :class:`string.Template`. This only applies to the format " -"string *fmt* (e.g. ``'%(message)s'`` or ``{message}``), not to the actual " -"log messages passed to ``Logger.debug`` etc; see :ref:`formatting-styles` " -"for more information on using {- and $-formatting for log messages." +"If ``True`` (the default), incorrect or mismatched *fmt* and *style* will " +"raise a :exc:`ValueError`; for example, ``logging.Formatter('%(asctime)s - " +"%(message)s', style='{')``." msgstr "" -#: library/logging.rst:603 +#: library/logging.rst:613 msgid "" -"The *defaults* parameter can be a dictionary with default values to use in " -"custom fields. For example: ``logging.Formatter('%(ip)s %(message)s', " -"defaults={\"ip\": None})``" +"A dictionary with default values to use in custom fields. For example, " +"``logging.Formatter('%(ip)s %(message)s', defaults={\"ip\": None})``" msgstr "" -#: library/logging.rst:607 -msgid "The *style* parameter was added." +#: library/logging.rst:618 +msgid "The *style* parameter." msgstr "" -#: library/logging.rst:610 -msgid "" -"The *validate* parameter was added. Incorrect or mismatched style and fmt " -"will raise a ``ValueError``. For example: ``logging.Formatter('%(asctime)s - " -"%(message)s', style='{')``." +#: library/logging.rst:621 +msgid "The *validate* parameter." msgstr "" -#: library/logging.rst:615 -msgid "The *defaults* parameter was added." +#: library/logging.rst:624 +msgid "The *defaults* parameter." msgstr "" -#: library/logging.rst:620 +#: library/logging.rst:630 msgid "" "The record's attribute dictionary is used as the operand to a string " "formatting operation. Returns the resulting string. Before formatting the " @@ -798,13 +801,13 @@ msgid "" "recalculates it afresh." msgstr "" -#: library/logging.rst:636 +#: library/logging.rst:646 msgid "" "If stack information is available, it's appended after the exception " "information, using :meth:`formatStack` to transform it if necessary." msgstr "" -#: library/logging.rst:642 +#: library/logging.rst:652 msgid "" "This method should be called from :meth:`format` by a formatter which wants " "to make use of a formatted time. This method can be overridden in formatters " @@ -817,7 +820,7 @@ msgid "" "resulting string is returned." msgstr "" -#: library/logging.rst:652 +#: library/logging.rst:662 msgid "" "This function uses a user-configurable function to convert the creation time " "to a tuple. By default, :func:`time.localtime` is used; to change this for a " @@ -827,7 +830,7 @@ msgid "" "be shown in GMT, set the ``converter`` attribute in the ``Formatter`` class." msgstr "" -#: library/logging.rst:660 +#: library/logging.rst:670 msgid "" "Previously, the default format was hard-coded as in this example: " "``2010-09-06 22:38:15,292`` where the part before the comma is handled by a " @@ -842,11 +845,11 @@ msgid "" "the millisecond value)." msgstr "" -#: library/logging.rst:673 +#: library/logging.rst:683 msgid "The ``default_msec_format`` can be ``None``." msgstr "" -#: library/logging.rst:678 +#: library/logging.rst:688 msgid "" "Formats the specified exception information (a standard exception tuple as " "returned by :func:`sys.exc_info`) as a string. This default implementation " @@ -854,14 +857,14 @@ msgid "" "returned." msgstr "" -#: library/logging.rst:685 +#: library/logging.rst:695 msgid "" "Formats the specified stack information (a string as returned by :func:" "`traceback.print_stack`, but with the last newline removed) as a string. " "This default implementation just returns the input value." msgstr "" -#: library/logging.rst:691 +#: library/logging.rst:701 msgid "" "A base formatter class suitable for subclassing when you want to format a " "number of records. You can pass a :class:`Formatter` instance which you want " @@ -870,7 +873,7 @@ msgid "" "used as the line formatter." msgstr "" -#: library/logging.rst:699 +#: library/logging.rst:709 msgid "" "Return a header for a list of *records*. The base implementation just " "returns the empty string. You will need to override this method if you want " @@ -878,14 +881,14 @@ msgid "" "separator line." msgstr "" -#: library/logging.rst:706 +#: library/logging.rst:716 msgid "" "Return a footer for a list of *records*. The base implementation just " "returns the empty string. You will need to override this method if you want " "specific behaviour, e.g. to show the count of records or a separator line." msgstr "" -#: library/logging.rst:713 +#: library/logging.rst:723 msgid "" "Return formatted text for a list of *records*. The base implementation just " "returns the empty string if there are no records; otherwise, it returns the " @@ -893,11 +896,11 @@ msgid "" "and the footer." msgstr "" -#: library/logging.rst:721 +#: library/logging.rst:731 msgid "Filter Objects" msgstr "" -#: library/logging.rst:723 +#: library/logging.rst:733 msgid "" "``Filters`` can be used by ``Handlers`` and ``Loggers`` for more " "sophisticated filtering than is provided by levels. The base filter class " @@ -907,7 +910,7 @@ msgid "" "If initialized with the empty string, all events are passed." msgstr "" -#: library/logging.rst:733 +#: library/logging.rst:743 msgid "" "Returns an instance of the :class:`Filter` class. If *name* is specified, it " "names a logger which, together with its children, will have its events " @@ -915,13 +918,15 @@ msgid "" "event." msgstr "" -#: library/logging.rst:740 +#: library/logging.rst:750 msgid "" -"Is the specified record to be logged? Returns zero for no, nonzero for yes. " -"If deemed appropriate, the record may be modified in-place by this method." +"Is the specified record to be logged? Returns false for no, true for yes. " +"Filters can either modify log records in-place or return a completely " +"different record instance which will replace the original log record in any " +"future processing of the event." msgstr "" -#: library/logging.rst:744 +#: library/logging.rst:755 msgid "" "Note that filters attached to handlers are consulted before an event is " "emitted by the handler, whereas filters attached to loggers are consulted " @@ -931,13 +936,13 @@ msgid "" "setting, unless the filter has also been applied to those descendant loggers." msgstr "" -#: library/logging.rst:751 +#: library/logging.rst:762 msgid "" "You don't actually need to subclass ``Filter``: you can pass any instance " "which has a ``filter`` method with the same semantics." msgstr "" -#: library/logging.rst:754 +#: library/logging.rst:765 msgid "" "You don't need to create specialized ``Filter`` classes, or use other " "classes with a ``filter`` method: you can use a function (or other callable) " @@ -948,7 +953,15 @@ msgid "" "value should conform to that returned by :meth:`~Filter.filter`." msgstr "" -#: library/logging.rst:764 +#: library/logging.rst:775 +msgid "" +"You can now return a :class:`LogRecord` instance from filters to replace the " +"log record rather than modifying it in place. This allows filters attached " +"to a :class:`Handler` to modify the log record before it is emitted, without " +"having side effects on other handlers." +msgstr "" + +#: library/logging.rst:781 msgid "" "Although filters are used primarily to filter records based on more " "sophisticated criteria than levels, they get to see every record which is " @@ -960,11 +973,11 @@ msgid "" "contextual information into logs (see :ref:`filters-contextual`)." msgstr "" -#: library/logging.rst:777 +#: library/logging.rst:794 msgid "LogRecord Objects" msgstr "" -#: library/logging.rst:779 +#: library/logging.rst:796 msgid "" ":class:`LogRecord` instances are created automatically by the :class:" "`Logger` every time something is logged, and can be created manually via :" @@ -972,21 +985,17 @@ msgid "" "wire)." msgstr "" -#: library/logging.rst:787 +#: library/logging.rst:804 msgid "Contains all the information pertinent to the event being logged." msgstr "" -#: library/logging.rst:789 +#: library/logging.rst:806 msgid "" "The primary information is passed in *msg* and *args*, which are combined " "using ``msg % args`` to create the :attr:`!message` attribute of the record." msgstr "" -#: library/logging.rst:0 -msgid "Parameters" -msgstr "" - -#: library/logging.rst:793 +#: library/logging.rst:810 msgid "" "The name of the logger used to log the event represented by this :class:`!" "LogRecord`. Note that the logger name in the :class:`!LogRecord` will always " @@ -994,7 +1003,7 @@ msgid "" "different (ancestor) logger." msgstr "" -#: library/logging.rst:801 +#: library/logging.rst:818 msgid "" "The :ref:`numeric level ` of the logging event (such as ``10`` for " "``DEBUG``, ``20`` for ``INFO``, etc). Note that this is converted to *two* " @@ -1002,46 +1011,46 @@ msgid "" "attr:`!levelname` for the corresponding level name." msgstr "" -#: library/logging.rst:808 +#: library/logging.rst:825 msgid "" "The full string path of the source file where the logging call was made." msgstr "" -#: library/logging.rst:812 +#: library/logging.rst:829 msgid "The line number in the source file where the logging call was made." msgstr "" -#: library/logging.rst:816 +#: library/logging.rst:833 msgid "" "The event description message, which can be a %-format string with " "placeholders for variable data, or an arbitrary object (see :ref:`arbitrary-" "object-messages`)." msgstr "" -#: library/logging.rst:821 +#: library/logging.rst:838 msgid "" "Variable data to merge into the *msg* argument to obtain the event " "description." msgstr "" -#: library/logging.rst:825 +#: library/logging.rst:842 msgid "" "An exception tuple with the current exception information, as returned by :" "func:`sys.exc_info`, or ``None`` if no exception information is available." msgstr "" -#: library/logging.rst:830 +#: library/logging.rst:847 msgid "" "The name of the function or method from which the logging call was invoked." msgstr "" -#: library/logging.rst:834 +#: library/logging.rst:851 msgid "" "A text string representing stack information from the base of the stack in " "the current thread, up to the logging call." msgstr "" -#: library/logging.rst:841 +#: library/logging.rst:858 msgid "" "Returns the message for this :class:`LogRecord` instance after merging any " "user-supplied arguments with the message. If the user-supplied message " @@ -1050,7 +1059,7 @@ msgid "" "whose ``__str__`` method can return the actual format string to be used." msgstr "" -#: library/logging.rst:848 +#: library/logging.rst:865 msgid "" "The creation of a :class:`LogRecord` has been made more configurable by " "providing a factory which is used to create the record. The factory can be " @@ -1058,24 +1067,24 @@ msgid "" "this for the factory's signature)." msgstr "" -#: library/logging.rst:854 +#: library/logging.rst:871 msgid "" "This functionality can be used to inject your own values into a :class:" "`LogRecord` at creation time. You can use the following pattern::" msgstr "" -#: library/logging.rst:866 +#: library/logging.rst:883 msgid "" "With this pattern, multiple factories could be chained, and as long as they " "don't overwrite each other's attributes or unintentionally overwrite the " "standard attributes listed above, there should be no surprises." msgstr "" -#: library/logging.rst:875 +#: library/logging.rst:892 msgid "LogRecord attributes" msgstr "" -#: library/logging.rst:877 +#: library/logging.rst:894 msgid "" "The LogRecord has a number of attributes, most of which are derived from the " "parameters to the constructor. (Note that the names do not always correspond " @@ -1086,7 +1095,7 @@ msgid "" "style format string." msgstr "" -#: library/logging.rst:885 +#: library/logging.rst:902 msgid "" "If you are using {}-formatting (:func:`str.format`), you can use ``{attrname}" "`` as the placeholder in the format string. If you are using $-formatting (:" @@ -1094,7 +1103,7 @@ msgid "" "course, replace ``attrname`` with the actual attribute name you want to use." msgstr "" -#: library/logging.rst:891 +#: library/logging.rst:908 msgid "" "In the case of {}-formatting, you can specify formatting flags by placing " "them after the attribute name, separated from it with a colon. For example: " @@ -1103,307 +1112,323 @@ msgid "" "on the options available to you." msgstr "" -#: library/logging.rst:898 +#: library/logging.rst:915 msgid "Attribute name" msgstr "" -#: library/logging.rst:1299 +#: library/logging.rst:1333 msgid "Format" msgstr "" -#: library/logging.rst:1299 +#: library/logging.rst:1333 msgid "Description" msgstr "" -#: library/logging.rst:900 +#: library/logging.rst:917 msgid "args" msgstr "" -#: library/logging.rst:914 library/logging.rst:960 +#: library/logging.rst:931 library/logging.rst:977 msgid "You shouldn't need to format this yourself." msgstr "" -#: library/logging.rst:900 +#: library/logging.rst:917 msgid "" "The tuple of arguments merged into ``msg`` to produce ``message``, or a dict " "whose values are used for the merge (when there is only one argument, and it " "is a dictionary)." msgstr "" -#: library/logging.rst:905 +#: library/logging.rst:922 msgid "asctime" msgstr "" -#: library/logging.rst:905 +#: library/logging.rst:922 msgid "``%(asctime)s``" msgstr "" -#: library/logging.rst:905 +#: library/logging.rst:922 msgid "" "Human-readable time when the :class:`LogRecord` was created. By default " "this is of the form '2003-07-08 16:49:45,896' (the numbers after the comma " "are millisecond portion of the time)." msgstr "" -#: library/logging.rst:911 +#: library/logging.rst:928 msgid "created" msgstr "" -#: library/logging.rst:911 +#: library/logging.rst:928 msgid "``%(created)f``" msgstr "" -#: library/logging.rst:911 +#: library/logging.rst:928 msgid "" "Time when the :class:`LogRecord` was created (as returned by :func:`time." "time`)." msgstr "" -#: library/logging.rst:914 +#: library/logging.rst:931 msgid "exc_info" msgstr "" -#: library/logging.rst:914 +#: library/logging.rst:931 msgid "" "Exception tuple (à la ``sys.exc_info``) or, if no exception has occurred, " "``None``." msgstr "" -#: library/logging.rst:917 +#: library/logging.rst:934 msgid "filename" msgstr "" -#: library/logging.rst:917 +#: library/logging.rst:934 msgid "``%(filename)s``" msgstr "" -#: library/logging.rst:917 +#: library/logging.rst:934 msgid "Filename portion of ``pathname``." msgstr "" -#: library/logging.rst:919 +#: library/logging.rst:936 msgid "funcName" msgstr "" -#: library/logging.rst:919 +#: library/logging.rst:936 msgid "``%(funcName)s``" msgstr "" -#: library/logging.rst:919 +#: library/logging.rst:936 msgid "Name of function containing the logging call." msgstr "" -#: library/logging.rst:921 +#: library/logging.rst:938 msgid "levelname" msgstr "" -#: library/logging.rst:921 +#: library/logging.rst:938 msgid "``%(levelname)s``" msgstr "" -#: library/logging.rst:921 +#: library/logging.rst:938 msgid "" "Text logging level for the message (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, " "``'ERROR'``, ``'CRITICAL'``)." msgstr "" -#: library/logging.rst:925 +#: library/logging.rst:942 msgid "levelno" msgstr "" -#: library/logging.rst:925 +#: library/logging.rst:942 msgid "``%(levelno)s``" msgstr "" -#: library/logging.rst:925 +#: library/logging.rst:942 msgid "" "Numeric logging level for the message (:const:`DEBUG`, :const:`INFO`, :const:" "`WARNING`, :const:`ERROR`, :const:`CRITICAL`)." msgstr "" -#: library/logging.rst:930 +#: library/logging.rst:947 msgid "lineno" msgstr "" -#: library/logging.rst:930 +#: library/logging.rst:947 msgid "``%(lineno)d``" msgstr "" -#: library/logging.rst:930 +#: library/logging.rst:947 msgid "Source line number where the logging call was issued (if available)." msgstr "" -#: library/logging.rst:933 +#: library/logging.rst:950 msgid "message" msgstr "" -#: library/logging.rst:933 +#: library/logging.rst:950 msgid "``%(message)s``" msgstr "" -#: library/logging.rst:933 +#: library/logging.rst:950 msgid "" "The logged message, computed as ``msg % args``. This is set when :meth:" "`Formatter.format` is invoked." msgstr "" -#: library/logging.rst:937 +#: library/logging.rst:954 msgid "module" msgstr "" -#: library/logging.rst:937 +#: library/logging.rst:954 msgid "``%(module)s``" msgstr "" -#: library/logging.rst:937 +#: library/logging.rst:954 msgid "Module (name portion of ``filename``)." msgstr "" -#: library/logging.rst:939 +#: library/logging.rst:956 msgid "msecs" msgstr "" -#: library/logging.rst:939 +#: library/logging.rst:956 msgid "``%(msecs)d``" msgstr "" -#: library/logging.rst:939 +#: library/logging.rst:956 msgid "" "Millisecond portion of the time when the :class:`LogRecord` was created." msgstr "" -#: library/logging.rst:942 +#: library/logging.rst:959 msgid "msg" msgstr "" -#: library/logging.rst:942 +#: library/logging.rst:959 msgid "" "The format string passed in the original logging call. Merged with ``args`` " "to produce ``message``, or an arbitrary object (see :ref:`arbitrary-object-" "messages`)." msgstr "" -#: library/logging.rst:947 +#: library/logging.rst:964 msgid "name" msgstr "" -#: library/logging.rst:947 +#: library/logging.rst:964 msgid "``%(name)s``" msgstr "" -#: library/logging.rst:947 +#: library/logging.rst:964 msgid "Name of the logger used to log the call." msgstr "" -#: library/logging.rst:949 +#: library/logging.rst:966 msgid "pathname" msgstr "" -#: library/logging.rst:949 +#: library/logging.rst:966 msgid "``%(pathname)s``" msgstr "" -#: library/logging.rst:949 +#: library/logging.rst:966 msgid "" "Full pathname of the source file where the logging call was issued (if " "available)." msgstr "" -#: library/logging.rst:952 +#: library/logging.rst:969 msgid "process" msgstr "" -#: library/logging.rst:952 +#: library/logging.rst:969 msgid "``%(process)d``" msgstr "" -#: library/logging.rst:952 +#: library/logging.rst:969 msgid "Process ID (if available)." msgstr "" -#: library/logging.rst:954 +#: library/logging.rst:971 msgid "processName" msgstr "" -#: library/logging.rst:954 +#: library/logging.rst:971 msgid "``%(processName)s``" msgstr "" -#: library/logging.rst:954 +#: library/logging.rst:971 msgid "Process name (if available)." msgstr "" -#: library/logging.rst:956 +#: library/logging.rst:973 msgid "relativeCreated" msgstr "" -#: library/logging.rst:956 +#: library/logging.rst:973 msgid "``%(relativeCreated)d``" msgstr "" -#: library/logging.rst:956 +#: library/logging.rst:973 msgid "" "Time in milliseconds when the LogRecord was created, relative to the time " "the logging module was loaded." msgstr "" -#: library/logging.rst:960 +#: library/logging.rst:977 msgid "stack_info" msgstr "" -#: library/logging.rst:960 +#: library/logging.rst:977 msgid "" "Stack frame information (where available) from the bottom of the stack in " "the current thread, up to and including the stack frame of the logging call " "which resulted in the creation of this record." msgstr "" -#: library/logging.rst:966 +#: library/logging.rst:983 msgid "thread" msgstr "" -#: library/logging.rst:966 +#: library/logging.rst:983 msgid "``%(thread)d``" msgstr "" -#: library/logging.rst:966 +#: library/logging.rst:983 msgid "Thread ID (if available)." msgstr "" -#: library/logging.rst:968 +#: library/logging.rst:985 msgid "threadName" msgstr "" -#: library/logging.rst:968 +#: library/logging.rst:985 msgid "``%(threadName)s``" msgstr "" -#: library/logging.rst:968 +#: library/logging.rst:985 msgid "Thread name (if available)." msgstr "" -#: library/logging.rst:971 +#: library/logging.rst:987 +msgid "taskName" +msgstr "" + +#: library/logging.rst:987 +msgid "``%(taskName)s``" +msgstr "" + +#: library/logging.rst:987 +msgid ":class:`asyncio.Task` name (if available)." +msgstr "" + +#: library/logging.rst:990 msgid "*processName* was added." msgstr "" -#: library/logging.rst:978 +#: library/logging.rst:993 +msgid "*taskName* was added." +msgstr "" + +#: library/logging.rst:999 msgid "LoggerAdapter Objects" msgstr "" -#: library/logging.rst:980 +#: library/logging.rst:1001 msgid "" ":class:`LoggerAdapter` instances are used to conveniently pass contextual " "information into logging calls. For a usage example, see the section on :ref:" "`adding contextual information to your logging output `." msgstr "" -#: library/logging.rst:986 +#: library/logging.rst:1007 msgid "" "Returns an instance of :class:`LoggerAdapter` initialized with an " "underlying :class:`Logger` instance and a dict-like object." msgstr "" -#: library/logging.rst:991 +#: library/logging.rst:1012 msgid "" "Modifies the message and/or keyword arguments passed to a logging call in " "order to insert contextual information. This implementation takes the object " @@ -1412,15 +1437,15 @@ msgid "" "(possibly modified) versions of the arguments passed in." msgstr "" -#: library/logging.rst:999 +#: library/logging.rst:1020 msgid "Delegates to the underlying :attr:`!manager`` on *logger*." msgstr "" -#: library/logging.rst:1003 +#: library/logging.rst:1024 msgid "Delegates to the underlying :meth:`!_log`` method on *logger*." msgstr "" -#: library/logging.rst:1005 +#: library/logging.rst:1026 msgid "" "In addition to the above, :class:`LoggerAdapter` supports the following " "methods of :class:`Logger`: :meth:`~Logger.debug`, :meth:`~Logger.info`, :" @@ -1432,24 +1457,24 @@ msgid "" "interchangeably." msgstr "" -#: library/logging.rst:1016 +#: library/logging.rst:1037 msgid "" "The :meth:`~Logger.isEnabledFor`, :meth:`~Logger.getEffectiveLevel`, :meth:" "`~Logger.setLevel` and :meth:`~Logger.hasHandlers` methods were added to :" "class:`LoggerAdapter`. These methods delegate to the underlying logger." msgstr "" -#: library/logging.rst:1022 +#: library/logging.rst:1043 msgid "" "Attribute :attr:`!manager` and method :meth:`!_log` were added, which " "delegate to the underlying logger and allow adapters to be nested." msgstr "" -#: library/logging.rst:1027 +#: library/logging.rst:1048 msgid "Thread Safety" msgstr "" -#: library/logging.rst:1029 +#: library/logging.rst:1050 msgid "" "The logging module is intended to be thread-safe without any special work " "needing to be done by its clients. It achieves this though using threading " @@ -1458,7 +1483,7 @@ msgid "" "O." msgstr "" -#: library/logging.rst:1034 +#: library/logging.rst:1055 msgid "" "If you are implementing asynchronous signal handlers using the :mod:`signal` " "module, you may not be able to use logging from within such handlers. This " @@ -1466,17 +1491,17 @@ msgid "" "always re-entrant, and so cannot be invoked from such signal handlers." msgstr "" -#: library/logging.rst:1041 +#: library/logging.rst:1062 msgid "Module-Level Functions" msgstr "" -#: library/logging.rst:1043 +#: library/logging.rst:1064 msgid "" "In addition to the classes described above, there are a number of module-" "level functions." msgstr "" -#: library/logging.rst:1049 +#: library/logging.rst:1070 msgid "" "Return a logger with the specified name or, if name is ``None``, return a " "logger which is the root logger of the hierarchy. If specified, the name is " @@ -1485,14 +1510,14 @@ msgid "" "logging." msgstr "" -#: library/logging.rst:1054 +#: library/logging.rst:1075 msgid "" "All calls to this function with a given name return the same logger " "instance. This means that logger instances never need to be passed between " "different parts of an application." msgstr "" -#: library/logging.rst:1061 +#: library/logging.rst:1082 msgid "" "Return either the standard :class:`Logger` class, or the last class passed " "to :func:`setLoggerClass`. This function may be called from within a new " @@ -1501,24 +1526,24 @@ msgid "" "example::" msgstr "" -#: library/logging.rst:1072 +#: library/logging.rst:1093 msgid "Return a callable which is used to create a :class:`LogRecord`." msgstr "" -#: library/logging.rst:1074 +#: library/logging.rst:1095 msgid "" "This function has been provided, along with :func:`setLogRecordFactory`, to " "allow developers more control over how the :class:`LogRecord` representing a " "logging event is constructed." msgstr "" -#: library/logging.rst:1079 +#: library/logging.rst:1100 msgid "" "See :func:`setLogRecordFactory` for more information about the how the " "factory is called." msgstr "" -#: library/logging.rst:1084 +#: library/logging.rst:1105 msgid "" "Logs a message with level :const:`DEBUG` on the root logger. The *msg* is " "the message format string, and the *args* are the arguments which are merged " @@ -1527,7 +1552,7 @@ msgid "" "argument.)" msgstr "" -#: library/logging.rst:1089 +#: library/logging.rst:1110 msgid "" "There are three keyword arguments in *kwargs* which are inspected: " "*exc_info* which, if it does not evaluate as false, causes exception " @@ -1537,7 +1562,7 @@ msgid "" "exception information." msgstr "" -#: library/logging.rst:1115 +#: library/logging.rst:1136 msgid "" "The third optional keyword argument is *extra* which can be used to pass a " "dictionary which is used to populate the __dict__ of the LogRecord created " @@ -1546,18 +1571,18 @@ msgid "" "logged messages. For example::" msgstr "" -#: library/logging.rst:1126 +#: library/logging.rst:1147 msgid "would print something like:" msgstr "" -#: library/logging.rst:1132 +#: library/logging.rst:1153 msgid "" "The keys in the dictionary passed in *extra* should not clash with the keys " "used by the logging system. (See the :class:`Formatter` documentation for " "more information on which keys are used by the logging system.)" msgstr "" -#: library/logging.rst:1136 +#: library/logging.rst:1157 msgid "" "If you choose to use these attributes in logged messages, you need to " "exercise some care. In the above example, for instance, the :class:" @@ -1568,58 +1593,58 @@ msgid "" "dictionary with these keys." msgstr "" -#: library/logging.rst:1150 +#: library/logging.rst:1171 msgid "" "This function (as well as :func:`info`, :func:`warning`, :func:`error` and :" "func:`critical`) will call :func:`basicConfig` if the root logger doesn't " "have any handler attached." msgstr "" -#: library/logging.rst:1159 +#: library/logging.rst:1180 msgid "" "Logs a message with level :const:`INFO` on the root logger. The arguments " "are interpreted as for :func:`debug`." msgstr "" -#: library/logging.rst:1165 +#: library/logging.rst:1186 msgid "" "Logs a message with level :const:`WARNING` on the root logger. The arguments " "are interpreted as for :func:`debug`." msgstr "" -#: library/logging.rst:1168 +#: library/logging.rst:1189 msgid "" "There is an obsolete function ``warn`` which is functionally identical to " "``warning``. As ``warn`` is deprecated, please do not use it - use " "``warning`` instead." msgstr "" -#: library/logging.rst:1175 +#: library/logging.rst:1196 msgid "" "Logs a message with level :const:`ERROR` on the root logger. The arguments " "are interpreted as for :func:`debug`." msgstr "" -#: library/logging.rst:1181 +#: library/logging.rst:1202 msgid "" "Logs a message with level :const:`CRITICAL` on the root logger. The " "arguments are interpreted as for :func:`debug`." msgstr "" -#: library/logging.rst:1187 +#: library/logging.rst:1208 msgid "" "Logs a message with level :const:`ERROR` on the root logger. The arguments " "are interpreted as for :func:`debug`. Exception info is added to the logging " "message. This function should only be called from an exception handler." msgstr "" -#: library/logging.rst:1193 +#: library/logging.rst:1214 msgid "" "Logs a message with level *level* on the root logger. The other arguments " "are interpreted as for :func:`debug`." msgstr "" -#: library/logging.rst:1198 +#: library/logging.rst:1219 msgid "" "Provides an overriding level *level* for all loggers which takes precedence " "over the logger's own level. When the need arises to temporarily throttle " @@ -1633,7 +1658,7 @@ msgid "" "individual loggers." msgstr "" -#: library/logging.rst:1209 +#: library/logging.rst:1230 msgid "" "Note that if you have defined any custom logging level higher than " "``CRITICAL`` (this is not recommended), you won't be able to rely on the " @@ -1641,13 +1666,13 @@ msgid "" "a suitable value." msgstr "" -#: library/logging.rst:1214 +#: library/logging.rst:1235 msgid "" "The *level* parameter was defaulted to level ``CRITICAL``. See :issue:" "`28524` for more information about this change." msgstr "" -#: library/logging.rst:1220 +#: library/logging.rst:1241 msgid "" "Associates level *level* with text *levelName* in an internal dictionary, " "which is used to map numeric levels to a textual representation, for example " @@ -1657,24 +1682,24 @@ msgid "" "and they should increase in increasing order of severity." msgstr "" -#: library/logging.rst:1227 +#: library/logging.rst:1248 msgid "" "If you are thinking of defining your own levels, please see the section on :" "ref:`custom-levels`." msgstr "" -#: library/logging.rst:1232 +#: library/logging.rst:1253 msgid "" "Returns a mapping from level names to their corresponding logging levels. " "For example, the string \"CRITICAL\" maps to :const:`CRITICAL`. The returned " "mapping is copied from an internal mapping on each call to this function." msgstr "" -#: library/logging.rst:1240 +#: library/logging.rst:1261 msgid "Returns the textual or numeric representation of logging level *level*." msgstr "" -#: library/logging.rst:1242 +#: library/logging.rst:1263 msgid "" "If *level* is one of the predefined levels :const:`CRITICAL`, :const:" "`ERROR`, :const:`WARNING`, :const:`INFO` or :const:`DEBUG` then you get the " @@ -1684,20 +1709,20 @@ msgid "" "the corresponding string representation is returned." msgstr "" -#: library/logging.rst:1249 +#: library/logging.rst:1270 msgid "" "The *level* parameter also accepts a string representation of the level such " "as 'INFO'. In such cases, this functions returns the corresponding numeric " "value of the level." msgstr "" -#: library/logging.rst:1253 +#: library/logging.rst:1274 msgid "" "If no matching numeric or string value is passed in, the string 'Level %s' % " "level is returned." msgstr "" -#: library/logging.rst:1256 +#: library/logging.rst:1277 msgid "" "Levels are internally integers (as they need to be compared in the logging " "logic). This function is used to convert between an integer level and the " @@ -1706,7 +1731,7 @@ msgid "" "vice versa." msgstr "" -#: library/logging.rst:1262 +#: library/logging.rst:1283 msgid "" "In Python versions earlier than 3.4, this function could also be passed a " "text level, and would return the corresponding numeric value of the level. " @@ -1714,7 +1739,17 @@ msgid "" "Python 3.4, but reinstated in 3.4.2 due to retain backward compatibility." msgstr "" -#: library/logging.rst:1270 +#: library/logging.rst:1291 +msgid "" +"Returns a handler with the specified *name*, or ``None`` if there is no " +"handler with that name." +msgstr "" + +#: library/logging.rst:1298 +msgid "Returns an immutable set of all known handler names." +msgstr "" + +#: library/logging.rst:1304 msgid "" "Creates and returns a new :class:`LogRecord` instance whose attributes are " "defined by *attrdict*. This function is useful for taking a pickled :class:" @@ -1722,7 +1757,7 @@ msgid "" "as a :class:`LogRecord` instance at the receiving end." msgstr "" -#: library/logging.rst:1278 +#: library/logging.rst:1312 msgid "" "Does basic configuration for the logging system by creating a :class:" "`StreamHandler` with a default :class:`Formatter` and adding it to the root " @@ -1731,13 +1766,13 @@ msgid "" "no handlers are defined for the root logger." msgstr "" -#: library/logging.rst:1284 +#: library/logging.rst:1318 msgid "" "This function does nothing if the root logger already has handlers " "configured, unless the keyword argument *force* is set to ``True``." msgstr "" -#: library/logging.rst:1287 +#: library/logging.rst:1321 msgid "" "This function should be called from the main thread before other threads are " "started. In versions of Python prior to 2.7.1 and 3.2, if this function is " @@ -1746,54 +1781,54 @@ msgid "" "unexpected results such as messages being duplicated in the log." msgstr "" -#: library/logging.rst:1294 +#: library/logging.rst:1328 msgid "The following keyword arguments are supported." msgstr "" -#: library/logging.rst:1301 +#: library/logging.rst:1335 msgid "*filename*" msgstr "" -#: library/logging.rst:1301 +#: library/logging.rst:1335 msgid "" "Specifies that a :class:`FileHandler` be created, using the specified " "filename, rather than a :class:`StreamHandler`." msgstr "" -#: library/logging.rst:1305 +#: library/logging.rst:1339 msgid "*filemode*" msgstr "" -#: library/logging.rst:1305 +#: library/logging.rst:1339 msgid "" "If *filename* is specified, open the file in this :ref:`mode `. " "Defaults to ``'a'``." msgstr "" -#: library/logging.rst:1309 +#: library/logging.rst:1343 msgid "*format*" msgstr "" -#: library/logging.rst:1309 +#: library/logging.rst:1343 msgid "" "Use the specified format string for the handler. Defaults to attributes " "``levelname``, ``name`` and ``message`` separated by colons." msgstr "" -#: library/logging.rst:1314 +#: library/logging.rst:1348 msgid "*datefmt*" msgstr "" -#: library/logging.rst:1314 +#: library/logging.rst:1348 msgid "" "Use the specified date/time format, as accepted by :func:`time.strftime`." msgstr "" -#: library/logging.rst:1317 +#: library/logging.rst:1351 msgid "*style*" msgstr "" -#: library/logging.rst:1317 +#: library/logging.rst:1351 msgid "" "If *format* is specified, use this style for the format string. One of " "``'%'``, ``'{'`` or ``'$'`` for :ref:`printf-style `." msgstr "" -#: library/logging.rst:1328 +#: library/logging.rst:1362 msgid "*stream*" msgstr "" -#: library/logging.rst:1328 +#: library/logging.rst:1362 msgid "" "Use the specified stream to initialize the :class:`StreamHandler`. Note that " "this argument is incompatible with *filename* - if both are present, a " "``ValueError`` is raised." msgstr "" -#: library/logging.rst:1334 +#: library/logging.rst:1368 msgid "*handlers*" msgstr "" -#: library/logging.rst:1334 +#: library/logging.rst:1368 msgid "" "If specified, this should be an iterable of already created handlers to add " "to the root logger. Any handlers which don't already have a formatter set " @@ -1833,33 +1868,33 @@ msgid "" "present, a ``ValueError`` is raised." msgstr "" -#: library/logging.rst:1343 +#: library/logging.rst:1377 msgid "*force*" msgstr "" -#: library/logging.rst:1343 +#: library/logging.rst:1377 msgid "" "If this keyword argument is specified as true, any existing handlers " "attached to the root logger are removed and closed, before carrying out the " "configuration as specified by the other arguments." msgstr "" -#: library/logging.rst:1349 +#: library/logging.rst:1383 msgid "*encoding*" msgstr "" -#: library/logging.rst:1349 +#: library/logging.rst:1383 msgid "" "If this keyword argument is specified along with *filename*, its value is " "used when the :class:`FileHandler` is created, and thus used when opening " "the output file." msgstr "" -#: library/logging.rst:1354 +#: library/logging.rst:1388 msgid "*errors*" msgstr "" -#: library/logging.rst:1354 +#: library/logging.rst:1388 msgid "" "If this keyword argument is specified along with *filename*, its value is " "used when the :class:`FileHandler` is created, and thus used when opening " @@ -1868,39 +1903,39 @@ msgid "" "`open`, which means that it will be treated the same as passing 'errors'." msgstr "" -#: library/logging.rst:1365 +#: library/logging.rst:1399 msgid "The *style* argument was added." msgstr "" -#: library/logging.rst:1368 +#: library/logging.rst:1402 msgid "" "The *handlers* argument was added. Additional checks were added to catch " "situations where incompatible arguments are specified (e.g. *handlers* " "together with *stream* or *filename*, or *stream* together with *filename*)." msgstr "" -#: library/logging.rst:1374 +#: library/logging.rst:1408 msgid "The *force* argument was added." msgstr "" -#: library/logging.rst:1377 +#: library/logging.rst:1411 msgid "The *encoding* and *errors* arguments were added." msgstr "" -#: library/logging.rst:1382 +#: library/logging.rst:1416 msgid "" "Informs the logging system to perform an orderly shutdown by flushing and " "closing all handlers. This should be called at application exit and no " "further use of the logging system should be made after this call." msgstr "" -#: library/logging.rst:1386 +#: library/logging.rst:1420 msgid "" "When the logging module is imported, it registers this function as an exit " "handler (see :mod:`atexit`), so normally there's no need to do that manually." msgstr "" -#: library/logging.rst:1393 +#: library/logging.rst:1427 msgid "" "Tells the logging system to use the class *klass* when instantiating a " "logger. The class should define :meth:`!__init__` such that only a name " @@ -1912,32 +1947,32 @@ msgid "" "loggers." msgstr "" -#: library/logging.rst:1404 +#: library/logging.rst:1438 msgid "Set a callable which is used to create a :class:`LogRecord`." msgstr "" -#: library/logging.rst:1406 +#: library/logging.rst:1440 msgid "The factory callable to be used to instantiate a log record." msgstr "" -#: library/logging.rst:1408 +#: library/logging.rst:1442 msgid "" "This function has been provided, along with :func:`getLogRecordFactory`, to " "allow developers more control over how the :class:`LogRecord` representing a " "logging event is constructed." msgstr "" -#: library/logging.rst:1413 +#: library/logging.rst:1447 msgid "The factory has the following signature:" msgstr "" -#: library/logging.rst:1415 +#: library/logging.rst:1449 msgid "" "``factory(name, level, fn, lno, msg, args, exc_info, func=None, sinfo=None, " "**kwargs)``" msgstr "" -#: library/logging.rst:1417 +#: library/logging.rst:1451 msgid "The logger name." msgstr "" @@ -1945,7 +1980,7 @@ msgstr "" msgid "level" msgstr "" -#: library/logging.rst:1418 +#: library/logging.rst:1452 msgid "The logging level (numeric)." msgstr "" @@ -1953,7 +1988,7 @@ msgstr "" msgid "fn" msgstr "" -#: library/logging.rst:1419 +#: library/logging.rst:1453 msgid "The full pathname of the file where the logging call was made." msgstr "" @@ -1961,19 +1996,19 @@ msgstr "" msgid "lno" msgstr "" -#: library/logging.rst:1420 +#: library/logging.rst:1454 msgid "The line number in the file where the logging call was made." msgstr "" -#: library/logging.rst:1421 +#: library/logging.rst:1455 msgid "The logging message." msgstr "" -#: library/logging.rst:1422 +#: library/logging.rst:1456 msgid "The arguments for the logging message." msgstr "" -#: library/logging.rst:1423 +#: library/logging.rst:1457 msgid "An exception tuple, or ``None``." msgstr "" @@ -1981,7 +2016,7 @@ msgstr "" msgid "func" msgstr "" -#: library/logging.rst:1424 +#: library/logging.rst:1458 msgid "The name of the function or method which invoked the logging call." msgstr "" @@ -1989,7 +2024,7 @@ msgstr "" msgid "sinfo" msgstr "" -#: library/logging.rst:1426 +#: library/logging.rst:1460 msgid "" "A stack traceback such as is provided by :func:`traceback.print_stack`, " "showing the call hierarchy." @@ -1999,15 +2034,15 @@ msgstr "" msgid "kwargs" msgstr "" -#: library/logging.rst:1428 +#: library/logging.rst:1462 msgid "Additional keyword arguments." msgstr "" -#: library/logging.rst:1432 +#: library/logging.rst:1466 msgid "Module-Level Attributes" msgstr "" -#: library/logging.rst:1436 +#: library/logging.rst:1470 msgid "" "A \"handler of last resort\" is available through this attribute. This is a :" "class:`StreamHandler` writing to ``sys.stderr`` with a level of ``WARNING``, " @@ -2018,22 +2053,22 @@ msgid "" "reason, ``lastResort`` can be set to ``None``." msgstr "" -#: library/logging.rst:1447 +#: library/logging.rst:1481 msgid "Integration with the warnings module" msgstr "" -#: library/logging.rst:1449 +#: library/logging.rst:1483 msgid "" "The :func:`captureWarnings` function can be used to integrate :mod:`logging` " "with the :mod:`warnings` module." msgstr "" -#: library/logging.rst:1454 +#: library/logging.rst:1488 msgid "" "This function is used to turn the capture of warnings by logging on and off." msgstr "" -#: library/logging.rst:1457 +#: library/logging.rst:1491 msgid "" "If *capture* is ``True``, warnings issued by the :mod:`warnings` module will " "be redirected to the logging system. Specifically, a warning will be " @@ -2042,46 +2077,46 @@ msgid "" "`WARNING`." msgstr "" -#: library/logging.rst:1462 +#: library/logging.rst:1496 msgid "" "If *capture* is ``False``, the redirection of warnings to the logging system " "will stop, and warnings will be redirected to their original destinations (i." "e. those in effect before ``captureWarnings(True)`` was called)." msgstr "" -#: library/logging.rst:1470 +#: library/logging.rst:1504 msgid "Module :mod:`logging.config`" msgstr "" -#: library/logging.rst:1470 +#: library/logging.rst:1504 msgid "Configuration API for the logging module." msgstr "" -#: library/logging.rst:1473 +#: library/logging.rst:1507 msgid "Module :mod:`logging.handlers`" msgstr "" -#: library/logging.rst:1473 +#: library/logging.rst:1507 msgid "Useful handlers included with the logging module." msgstr "" -#: library/logging.rst:1477 +#: library/logging.rst:1511 msgid ":pep:`282` - A Logging System" msgstr "" -#: library/logging.rst:1476 +#: library/logging.rst:1510 msgid "" "The proposal which described this feature for inclusion in the Python " "standard library." msgstr "" -#: library/logging.rst:1482 +#: library/logging.rst:1516 msgid "" "`Original Python logging package `_" msgstr "" -#: library/logging.rst:1480 +#: library/logging.rst:1514 msgid "" "This is the original source for the :mod:`logging` package. The version of " "the package available from this site is suitable for use with Python 1.5.2, " diff --git a/library/math.po b/library/math.po index 0d96ff9be..81f8d8b69 100644 --- a/library/math.po +++ b/library/math.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-09-18 22:33+0300\n" "PO-Revision-Date: 2023-03-31 00:00+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -94,7 +94,7 @@ msgstr "" "Binom katsayısı olarak da adlandırılır. Çünkü ``(1 + x)ⁿ`` polinom " "açılımındaki k. terimin katsayısına eşittir." -#: library/math.rst:260 +#: library/math.rst:258 msgid "" "Raises :exc:`TypeError` if either of the arguments are not integers. Raises :" "exc:`ValueError` if either of the arguments are negative." @@ -184,14 +184,15 @@ msgstr "" "bir şekilde \"ayırmak\" için kullanılır." #: library/math.rst:110 +#, fuzzy msgid "" "Return an accurate floating point sum of values in the iterable. Avoids " -"loss of precision by tracking multiple intermediate partial sums::" +"loss of precision by tracking multiple intermediate partial sums." msgstr "" "Iterable içindeki değerlerin doğru bir kayan noktalı toplamını döndür. " "Birden fazla ara toplamı takip ederek hassasiyet kaybını önler:" -#: library/math.rst:118 +#: library/math.rst:113 msgid "" "The algorithm's accuracy depends on IEEE-754 arithmetic guarantees and the " "typical case where the rounding mode is half-even. On some non-Windows " @@ -205,7 +206,7 @@ msgstr "" "toplamı çift yuvarlayarak en az anlamlı bitinde eksik olmasına neden " "olabilir." -#: library/math.rst:124 +#: library/math.rst:119 msgid "" "For further discussion and two alternative approaches, see the `ASPN " "cookbook recipes for accurate floating point summation `_ sayfasına bakın." -#: library/math.rst:131 +#: library/math.rst:126 msgid "" "Return the greatest common divisor of the specified integer arguments. If " "any of the arguments is nonzero, then the returned value is the largest " @@ -229,7 +230,7 @@ msgstr "" "tamsayıdır. Tüm bağımsız değişkenler sıfırsa, döndürülen değer ``0`` olur. " "bağımsız değişkenler olmadan ``gcd()`` fonksiyonu ``0`` değerini döndürür." -#: library/math.rst:139 +#: library/math.rst:134 msgid "" "Added support for an arbitrary number of arguments. Formerly, only two " "arguments were supported." @@ -237,7 +238,7 @@ msgstr "" "İsteğe bağlı sayıda bağımsız değişken için destek eklendi. Önceden sadece " "iki argüman destekleniyordu." -#: library/math.rst:146 +#: library/math.rst:141 msgid "" "Return ``True`` if the values *a* and *b* are close to each other and " "``False`` otherwise." @@ -245,7 +246,7 @@ msgstr "" "Eğer *a* ve *b* değerleri birbirine yakınsa ``True``, değilse ``False`` " "döndürür." -#: library/math.rst:149 +#: library/math.rst:144 msgid "" "Whether or not two values are considered close is determined according to " "given absolute and relative tolerances." @@ -253,7 +254,7 @@ msgstr "" "İki değerin yakın kabul edilip edilmeyeceği, verilen mutlak ve göreceli " "toleranslara göre belirlenir." -#: library/math.rst:152 +#: library/math.rst:147 msgid "" "*rel_tol* is the relative tolerance -- it is the maximum allowed difference " "between *a* and *b*, relative to the larger absolute value of *a* or *b*. " @@ -267,7 +268,7 @@ msgstr "" "tolerans, iki değerin yaklaşık 9 ondalık basamak içinde aynı olmasını " "sağlayan ``1e-09`` değeridir. *rel_tol* sıfırdan büyük olmalıdır." -#: library/math.rst:158 +#: library/math.rst:153 msgid "" "*abs_tol* is the minimum absolute tolerance -- useful for comparisons near " "zero. *abs_tol* must be at least zero." @@ -275,7 +276,7 @@ msgstr "" "*abs_tol* minimum mutlak toleranstır -- sıfıra yakın karşılaştırmalar için " "kullanışlıdır. *abs_tol* en az sıfır olmalıdır." -#: library/math.rst:161 +#: library/math.rst:156 msgid "" "If no errors occur, the result will be: ``abs(a-b) <= max(rel_tol * " "max(abs(a), abs(b)), abs_tol)``." @@ -283,7 +284,7 @@ msgstr "" "Herhangi bir hata oluşmazsa, sonuç şöyle olacaktır: ``abs(a-b) <= " "max(rel_tol * max(abs(a), abs(b)), abs_tol)``." -#: library/math.rst:164 +#: library/math.rst:159 msgid "" "The IEEE 754 special values of ``NaN``, ``inf``, and ``-inf`` will be " "handled according to IEEE rules. Specifically, ``NaN`` is not considered " @@ -295,11 +296,11 @@ msgstr "" "hiçbir değere yakın kabul edilmez. ``inf`` ve ``-inf`` yalnızca kendilerine " "yakın kabul edilir." -#: library/math.rst:173 +#: library/math.rst:168 msgid ":pep:`485` -- A function for testing approximate equality" msgstr ":pep:`485` -- Yaklaşık eşitliği test etmek için bir fonksiyon" -#: library/math.rst:178 +#: library/math.rst:173 msgid "" "Return ``True`` if *x* is neither an infinity nor a NaN, and ``False`` " "otherwise. (Note that ``0.0`` *is* considered finite.)" @@ -307,7 +308,7 @@ msgstr "" "Eğer *x* sonsuz bir değer ya da NaN ise ``True``, aksi takdirde ``False`` " "döndürür. (``0.0`` *sonlu* olarak kabul edilir.)" -#: library/math.rst:186 +#: library/math.rst:181 msgid "" "Return ``True`` if *x* is a positive or negative infinity, and ``False`` " "otherwise." @@ -315,13 +316,13 @@ msgstr "" "Eğer *x* pozitif veya negatif bir sonsuz ise ``True``, aksi takdirde " "``False`` döndürür." -#: library/math.rst:192 +#: library/math.rst:187 msgid "" "Return ``True`` if *x* is a NaN (not a number), and ``False`` otherwise." msgstr "" "Eğer *x* bir NaN (sayı değil) ise ``True``, aksi takdirde ``False`` döndürür." -#: library/math.rst:197 +#: library/math.rst:192 msgid "" "Return the integer square root of the nonnegative integer *n*. This is the " "floor of the exact square root of *n*, or equivalently the greatest integer " @@ -331,7 +332,7 @@ msgstr "" "karekökünün tabanıdır veya eşdeğer olarak *a*\\ ² |nbsp| ≤ |nbsp| *n* olacak " "şekilde en büyük *a* tamsayısıdır." -#: library/math.rst:201 +#: library/math.rst:196 msgid "" "For some applications, it may be more convenient to have the least integer " "*a* such that *n* |nbsp| ≤ |nbsp| *a*\\ ², or in other words the ceiling of " @@ -343,7 +344,7 @@ msgstr "" "sahip olmak daha uygun olabilir. Pozitif *n* için bu, ``a = 1 + isqrt(n - " "1)`` kullanılarak hesaplanabilir." -#: library/math.rst:211 +#: library/math.rst:206 msgid "" "Return the least common multiple of the specified integer arguments. If all " "arguments are nonzero, then the returned value is the smallest positive " @@ -357,14 +358,14 @@ msgstr "" "değişkenlerden herhangi biri sıfırsa, döndürülen değer ``0`` olur. Bağımsız " "değişkenler olmadan ``lcm()`` işlevi ``1`` değerini döndürür." -#: library/math.rst:222 +#: library/math.rst:217 msgid "" "Return ``x * (2**i)``. This is essentially the inverse of function :func:" "`frexp`." msgstr "" "``x * (2**i)`` döndürür. Bu aslında :func:`frexp` fonksiyonunun tersidir." -#: library/math.rst:228 +#: library/math.rst:223 msgid "" "Return the fractional and integer parts of *x*. Both results carry the sign " "of *x* and are floats." @@ -372,41 +373,47 @@ msgstr "" "x*'in kesirli ve tamsayı kısımlarını döndürür. Her iki sonuç da *x* " "işaretini taşır ve kayan değerdir." -#: library/math.rst:234 -msgid "Return the next floating-point value after *x* towards *y*." +#: library/math.rst:229 +#, fuzzy +msgid "Return the floating-point value *steps* steps after *x* towards *y*." msgstr "" "x* değerinden sonra *y* değerine doğru bir sonraki kayan noktalı değeri " "döndürür." -#: library/math.rst:236 -msgid "If *x* is equal to *y*, return *y*." +#: library/math.rst:231 +#, fuzzy +msgid "If *x* is equal to *y*, return *y*, unless *steps* is zero." msgstr "Eğer *x*, *y*'ye eşitse, *y* değerini döndürür." -#: library/math.rst:238 +#: library/math.rst:233 msgid "Examples:" msgstr "Örnekler:" -#: library/math.rst:240 +#: library/math.rst:235 msgid "``math.nextafter(x, math.inf)`` goes up: towards positive infinity." msgstr "``math.nextafter(x, math.inf)`` yukarı gider: pozitif sonsuza doğru." -#: library/math.rst:241 +#: library/math.rst:236 msgid "``math.nextafter(x, -math.inf)`` goes down: towards minus infinity." msgstr "``math.nextafter(x, -math.inf)`` aşağı iner: eksi sonsuza doğru." -#: library/math.rst:242 +#: library/math.rst:237 msgid "``math.nextafter(x, 0.0)`` goes towards zero." msgstr "``math.nextafter(x, 0.0)`` sıfıra doğru gider." -#: library/math.rst:243 +#: library/math.rst:238 msgid "``math.nextafter(x, math.copysign(math.inf, x))`` goes away from zero." msgstr "``math.nextafter(x, math.copysign(math.inf, x))`` sıfırdan uzaklaşır." -#: library/math.rst:245 +#: library/math.rst:240 msgid "See also :func:`math.ulp`." msgstr "Ayrıca bakınız :func:`math.ulp`." -#: library/math.rst:251 +#: library/math.rst:242 +msgid "Added the *steps* argument." +msgstr "" + +#: library/math.rst:249 msgid "" "Return the number of ways to choose *k* items from *n* items without " "repetition and with order." @@ -414,7 +421,7 @@ msgstr "" "Tekrarlama olmadan ve sırayla *n* öğe arasından *k* öğeyi seçmenin " "yollarının sayısını döndürür." -#: library/math.rst:254 +#: library/math.rst:252 msgid "" "Evaluates to ``n! / (n - k)!`` when ``k <= n`` and evaluates to zero when " "``k > n``." @@ -422,7 +429,7 @@ msgstr "" "``n! / (k! * (n - k)!)`` değerini ``k <= n`` olduğunda verir ve ``k > n`` " "olduğunda sıfır olarak değerlendirir." -#: library/math.rst:257 +#: library/math.rst:255 msgid "" "If *k* is not specified or is None, then *k* defaults to *n* and the " "function returns ``n!``." @@ -430,7 +437,7 @@ msgstr "" "Eğer *k* belirtilmemişse veya None ise, *k* varsayılan olarak *n* değerini " "alır ve fonksiyon ``n!`` döndürür." -#: library/math.rst:268 +#: library/math.rst:266 msgid "" "Calculate the product of all the elements in the input *iterable*. The " "default *start* value for the product is ``1``." @@ -438,7 +445,7 @@ msgstr "" "Girdi *iterable* içindeki tüm elemanların çarpımını hesaplar. Çarpım için " "varsayılan *başlangıç* değeri ``1`` 'dir." -#: library/math.rst:271 +#: library/math.rst:269 msgid "" "When the iterable is empty, return the start value. This function is " "intended specifically for use with numeric values and may reject non-numeric " @@ -448,7 +455,7 @@ msgstr "" "özellikle sayısal değerlerle kullanılmak üzere tasarlanmıştır ve sayısal " "olmayan türleri reddedebilir." -#: library/math.rst:280 +#: library/math.rst:278 msgid "" "Return the IEEE 754-style remainder of *x* with respect to *y*. For finite " "*x* and finite nonzero *y*, this is the difference ``x - n*y``, where ``n`` " @@ -464,7 +471,7 @@ msgstr "" "Kalan ``r = remainder(x, y)`` böylece her zaman ``abs(r) <= 0.5 * abs(y)`` " "sağlar." -#: library/math.rst:287 +#: library/math.rst:285 msgid "" "Special cases follow IEEE 754: in particular, ``remainder(x, math.inf)`` is " "*x* for any finite *x*, and ``remainder(x, 0)`` and ``remainder(math.inf, " @@ -477,7 +484,7 @@ msgstr "" "`ValueError` yükseltir. Eğer kalan işleminin sonucu sıfır ise, bu sıfır *x* " "ile aynı işarete sahip olacaktır." -#: library/math.rst:293 +#: library/math.rst:291 msgid "" "On platforms using IEEE 754 binary floating-point, the result of this " "operation is always exactly representable: no rounding error is introduced." @@ -485,7 +492,25 @@ msgstr "" "IEEE 754 ikili kayan nokta kullanan platformlarda, bu işlemin sonucu her " "zaman tam olarak gösterilebilir: yuvarlama hatası oluşmaz." +#: library/math.rst:299 +msgid "Return the sum of products of values from two iterables *p* and *q*." +msgstr "" + #: library/math.rst:301 +msgid "Raises :exc:`ValueError` if the inputs do not have the same length." +msgstr "" + +#: library/math.rst:498 +msgid "Roughly equivalent to::" +msgstr "Kabaca şuna eşdeğerdir::" + +#: library/math.rst:307 +msgid "" +"For float and mixed int/float inputs, the intermediate products and sums are " +"computed with extended precision." +msgstr "" + +#: library/math.rst:315 msgid "" "Return *x* with the fractional part removed, leaving the integer part. This " "rounds toward 0: ``trunc()`` is equivalent to :func:`floor` for positive " @@ -499,24 +524,24 @@ msgstr "" "Integral` değeri döndürmesi gereken :meth:`x.__trunc__ `'a " "delege eder." -#: library/math.rst:309 +#: library/math.rst:323 msgid "Return the value of the least significant bit of the float *x*:" msgstr "float *x* öğesinin en az anlamlı bitinin değerini döndürür:" -#: library/math.rst:311 +#: library/math.rst:325 msgid "If *x* is a NaN (not a number), return *x*." msgstr "" "Eğer *x* bir NaN (sayı değil) ise ``True``, aksi takdirde ``False`` döndürür." -#: library/math.rst:312 +#: library/math.rst:326 msgid "If *x* is negative, return ``ulp(-x)``." msgstr "Eğer *x* negatif ise, ``ulp(-x)`` döndürür." -#: library/math.rst:313 +#: library/math.rst:327 msgid "If *x* is a positive infinity, return *x*." msgstr "Eğer *x* pozitif bir sonsuzluk ise, *x* değerini döndürür." -#: library/math.rst:314 +#: library/math.rst:328 msgid "" "If *x* is equal to zero, return the smallest positive *denormalized* " "representable float (smaller than the minimum positive *normalized* float, :" @@ -526,7 +551,7 @@ msgstr "" "floatı döndürür (minimum pozitif *normalize* floattan daha küçük, :data:`sys." "float_info.min `)." -#: library/math.rst:317 +#: library/math.rst:331 msgid "" "If *x* is equal to the largest positive representable float, return the " "value of the least significant bit of *x*, such that the first float smaller " @@ -536,7 +561,7 @@ msgstr "" "*x* değerinden küçük olan ilk float değeri ``x - ulp(x)`` olacak şekilde *x* " "değerinin en küçük anlamlı bitinin değerini döndürür." -#: library/math.rst:320 +#: library/math.rst:334 msgid "" "Otherwise (*x* is a positive finite number), return the value of the least " "significant bit of *x*, such that the first float bigger than *x* is ``x + " @@ -545,11 +570,11 @@ msgstr "" "Aksi takdirde (*x* pozitif bir sonlu sayıdır), *x*'in en az anlamlı bitinin " "değerini döndürür, öyle ki *x*'ten büyük ilk float ``x + ulp(x)`` olur." -#: library/math.rst:324 +#: library/math.rst:338 msgid "ULP stands for \"Unit in the Last Place\"." msgstr "ULP, \"Son Yerdeki Birim\" anlamına gelmektedir." -#: library/math.rst:326 +#: library/math.rst:340 msgid "" "See also :func:`math.nextafter` and :data:`sys.float_info.epsilon `." @@ -557,7 +582,7 @@ msgstr "" "Ayrıca bakınız :func:`math.nextafter` ve :data:`sys.float_info.epsilon `." -#: library/math.rst:332 +#: library/math.rst:346 msgid "" "Note that :func:`frexp` and :func:`modf` have a different call/return " "pattern than their C equivalents: they take a single argument and return a " @@ -569,7 +594,7 @@ msgstr "" "dönüş değerlerini bir 'çıktı parametresi' aracılığıyla döndürmek yerine bir " "çift değer döndürürler (Python'da böyle bir şey yoktur)." -#: library/math.rst:337 +#: library/math.rst:351 msgid "" "For the :func:`ceil`, :func:`floor`, and :func:`modf` functions, note that " "*all* floating-point numbers of sufficiently large magnitude are exact " @@ -584,15 +609,15 @@ msgstr "" "``abs(x) >= 2**52`` olan herhangi bir *x* kayan noktalı sayısı zorunlu " "olarak kesirli bitlere sahip değildir." -#: library/math.rst:345 +#: library/math.rst:359 msgid "Power and logarithmic functions" msgstr "Güç ve logaritmik fonksiyonlar" -#: library/math.rst:349 +#: library/math.rst:363 msgid "Return the cube root of *x*." msgstr "x*'in küp kökünü döndürür." -#: library/math.rst:356 +#: library/math.rst:370 msgid "" "Return *e* raised to the power *x*, where *e* = 2.718281... is the base of " "natural logarithms. This is usually more accurate than ``math.e ** x`` or " @@ -602,17 +627,18 @@ msgstr "" "doğal logaritma tabanıdır. Bu genellikle ``math.e ** x`` veya ``pow(math.e, " "x)`` değerinden daha doğrudur." -#: library/math.rst:363 +#: library/math.rst:377 msgid "Return *2* raised to the power *x*." msgstr "*2*'nin *x* kuvvetine yükseltilmiş halini döndürür." -#: library/math.rst:370 +#: library/math.rst:384 +#, fuzzy msgid "" "Return *e* raised to the power *x*, minus 1. Here *e* is the base of " "natural logarithms. For small floats *x*, the subtraction in ``exp(x) - 1`` " "can result in a `significant loss of precision `_\\; the :func:`expm1` function provides a way to " -"compute this quantity to full precision::" +"compute this quantity to full precision:" msgstr "" "x* kuvvetine yükseltilmiş *e* döndürür, eksi 1. Burada *e* doğal logaritma " "tabanıdır. Küçük kayan değerler *x* için, ``exp(x) - 1`` çıkarma işlemi " @@ -620,13 +646,13 @@ msgstr "" "Loss_of_significance>`_\\ neden olabilir; :func:`expm1` fonksiyonu bu " "miktarı tam hassasiyetle hesaplamak için bir yol sağlar::" -#: library/math.rst:387 +#: library/math.rst:401 msgid "With one argument, return the natural logarithm of *x* (to base *e*)." msgstr "" "Bir bağımsız değişkenle, *x*'in doğal logaritmasını döndürür (*e* tabanına " "göre)." -#: library/math.rst:389 +#: library/math.rst:403 msgid "" "With two arguments, return the logarithm of *x* to the given *base*, " "calculated as ``log(x)/log(base)``." @@ -634,7 +660,7 @@ msgstr "" "İki bağımsız değişkenle, ``log(x)/log(taban)`` şeklinde hesaplanan *x* " "değerinin verilen *taban* değerine göre logaritmasını döndürür." -#: library/math.rst:395 +#: library/math.rst:409 msgid "" "Return the natural logarithm of *1+x* (base *e*). The result is calculated " "in a way which is accurate for *x* near zero." @@ -642,7 +668,7 @@ msgstr "" "*1+x*'in (*e* tabanı) doğal logaritmasını döndürür. Sonuç, sıfıra yakın *x* " "için doğru olacak şekilde hesaplanır." -#: library/math.rst:401 +#: library/math.rst:415 msgid "" "Return the base-2 logarithm of *x*. This is usually more accurate than " "``log(x, 2)``." @@ -650,7 +676,7 @@ msgstr "" "x*'in 2 taban logaritmasını döndürür. Bu genellikle ``log(x, 2)`` değerinden " "daha doğrudur." -#: library/math.rst:408 +#: library/math.rst:422 msgid "" ":meth:`int.bit_length` returns the number of bits necessary to represent an " "integer in binary, excluding the sign and leading zeros." @@ -658,7 +684,7 @@ msgstr "" ":meth:`int.bit_length`, işaret ve baştaki sıfırlar hariç olmak üzere, bir " "tamsayıyı ikili olarak temsil etmek için gerekli bit sayısını döndürür." -#: library/math.rst:414 +#: library/math.rst:428 msgid "" "Return the base-10 logarithm of *x*. This is usually more accurate than " "``log(x, 10)``." @@ -666,7 +692,7 @@ msgstr "" "*x* 'in 10 tabanında logaritmasını döndürür. Bu genellikle ``log(x, 10)`` " "'dan daha doğrudur." -#: library/math.rst:420 +#: library/math.rst:434 msgid "" "Return ``x`` raised to the power ``y``. Exceptional cases follow the IEEE " "754 standard as far as possible. In particular, ``pow(1.0, x)`` and " @@ -680,7 +706,7 @@ msgstr "" "Eğer hem ``x`` hem de ``y`` sonlu ise, ``x`` negatif ise ve ``y`` bir " "tamsayı değilse, ``pow(x, y)`` tanımsızdır ve :exc:`ValueError` yükseltir." -#: library/math.rst:427 +#: library/math.rst:441 msgid "" "Unlike the built-in ``**`` operator, :func:`math.pow` converts both its " "arguments to type :class:`float`. Use ``**`` or the built-in :func:`pow` " @@ -690,7 +716,7 @@ msgstr "" "class:`float` türüne dönüştürür. Tam sayı kuvvetlerini hesaplamak için " "``**`` veya yerleşik :func:`pow` fonksiyonunu kullanın." -#: library/math.rst:431 +#: library/math.rst:445 msgid "" "The special cases ``pow(0.0, -inf)`` and ``pow(-0.0, -inf)`` were changed to " "return ``inf`` instead of raising :exc:`ValueError`, for consistency with " @@ -700,15 +726,15 @@ msgstr "" "tutarlılık için :exc:`ValueError`` yükseltmek yerine ``inf`` döndürmek üzere " "değiştirildi." -#: library/math.rst:439 +#: library/math.rst:453 msgid "Return the square root of *x*." msgstr "*x*'in karekökünü döndürür." -#: library/math.rst:443 +#: library/math.rst:457 msgid "Trigonometric functions" msgstr "Trigonometrik fonksiyonlar" -#: library/math.rst:447 +#: library/math.rst:461 msgid "" "Return the arc cosine of *x*, in radians. The result is between ``0`` and " "``pi``." @@ -716,7 +742,7 @@ msgstr "" "Radyan cinsinden *x*'in yay kosinüsünü döndürür. Sonuç ``0`` ile ``pi`` " "arasındadır." -#: library/math.rst:453 +#: library/math.rst:467 msgid "" "Return the arc sine of *x*, in radians. The result is between ``-pi/2`` and " "``pi/2``." @@ -724,7 +750,7 @@ msgstr "" "Radyan cinsinden *x*'in yay sinüsünü döndürür. Sonuç ``-pi/2`` ile ``pi/2`` " "arasındadır." -#: library/math.rst:459 +#: library/math.rst:473 msgid "" "Return the arc tangent of *x*, in radians. The result is between ``-pi/2`` " "and ``pi/2``." @@ -732,7 +758,7 @@ msgstr "" "Radyan cinsinden *x*'in yay tanjantını döndürür. Sonuç ``-pi/2`` ile " "``pi/2`` arasındadır." -#: library/math.rst:465 +#: library/math.rst:479 msgid "" "Return ``atan(y / x)``, in radians. The result is between ``-pi`` and " "``pi``. The vector in the plane from the origin to point ``(x, y)`` makes " @@ -748,11 +774,11 @@ msgstr "" "hesaplayabilir. Örneğin, ``atan(1)`` ve ``atan2(1, 1)`` her ikisi de " "``pi/4`` 'tür, ancak ``atan2(-1, -1)`` ise ``-3*pi/4`` 'tür." -#: library/math.rst:475 +#: library/math.rst:489 msgid "Return the cosine of *x* radians." msgstr "*x* radyanın kosinüsünü döndürür." -#: library/math.rst:480 +#: library/math.rst:494 msgid "" "Return the Euclidean distance between two points *p* and *q*, each given as " "a sequence (or iterable) of coordinates. The two points must have the same " @@ -762,11 +788,7 @@ msgstr "" "*q* noktası arasındaki Öklid mesafesini döndürür. İki nokta aynı boyuta " "sahip olmalıdır." -#: library/math.rst:484 -msgid "Roughly equivalent to::" -msgstr "Kabaca şuna eşdeğerdir::" - -#: library/math.rst:493 +#: library/math.rst:507 msgid "" "Return the Euclidean norm, ``sqrt(sum(x**2 for x in coordinates))``. This is " "the length of the vector from the origin to the point given by the " @@ -775,7 +797,7 @@ msgstr "" "Öklid normunu döndürür, ``sqrt(sum(x**2 for x in coordinates))``. Bu, " "vektörün orijinden koordinatlar tarafından verilen noktaya olan uzunluğudur." -#: library/math.rst:497 +#: library/math.rst:511 msgid "" "For a two dimensional point ``(x, y)``, this is equivalent to computing the " "hypotenuse of a right triangle using the Pythagorean theorem, ``sqrt(x*x + " @@ -784,7 +806,7 @@ msgstr "" "İki boyutlu bir ``(x, y)`` noktası için bu, Pisagor teoremi ``sqrt(x*x + " "y*y)`` kullanılarak bir dik üçgenin hipotenüsünün hesaplanmasına eşdeğerdir." -#: library/math.rst:501 +#: library/math.rst:515 msgid "" "Added support for n-dimensional points. Formerly, only the two dimensional " "case was supported." @@ -792,7 +814,7 @@ msgstr "" "n boyutlu noktalar için destek eklendi. Önceden sadece iki boyutlu durum " "destekleniyordu." -#: library/math.rst:505 +#: library/math.rst:519 msgid "" "Improved the algorithm's accuracy so that the maximum error is under 1 ulp " "(unit in the last place). More typically, the result is almost always " @@ -802,33 +824,34 @@ msgstr "" "olacak şekilde geliştirildi. Daha tipik olarak, sonuç neredeyse her zaman " "1/2 ulp içinde doğru şekilde yuvarlanır." -#: library/math.rst:513 +#: library/math.rst:527 msgid "Return the sine of *x* radians." msgstr "*x* radyanın sinüsünü döndürür." -#: library/math.rst:518 +#: library/math.rst:532 msgid "Return the tangent of *x* radians." msgstr "*x* radyanın tanjantını döndürür." -#: library/math.rst:522 +#: library/math.rst:536 msgid "Angular conversion" msgstr "Açısal dönüşüm" -#: library/math.rst:526 +#: library/math.rst:540 msgid "Convert angle *x* from radians to degrees." msgstr "Açıyı *x* radyandan dereceye dönüştürür." -#: library/math.rst:531 +#: library/math.rst:545 msgid "Convert angle *x* from degrees to radians." msgstr "Açıyı *x* dereceden radyana dönüştürür." -#: library/math.rst:535 +#: library/math.rst:549 msgid "Hyperbolic functions" msgstr "Hiberbolik fonksiyonlar" -#: library/math.rst:537 +#: library/math.rst:551 +#, fuzzy msgid "" -"`Hyperbolic functions `_ " +"`Hyperbolic functions `_ " "are analogs of trigonometric functions that are based on hyperbolas instead " "of circles." msgstr "" @@ -836,35 +859,35 @@ msgstr "" "Hyperbolic_function>`_ trigonometrik fonksiyonların çemberler yerine " "hiperbollere dayanan analoglarıdır." -#: library/math.rst:543 +#: library/math.rst:557 msgid "Return the inverse hyperbolic cosine of *x*." msgstr "*x*'in ters hiperbolik kosinüsünü döndürür." -#: library/math.rst:548 +#: library/math.rst:562 msgid "Return the inverse hyperbolic sine of *x*." msgstr "*x*'in ters hiperbolik sinüsünü döndürür." -#: library/math.rst:553 +#: library/math.rst:567 msgid "Return the inverse hyperbolic tangent of *x*." msgstr "*x*'in ters hiperbolik tanjantını döndürür." -#: library/math.rst:558 +#: library/math.rst:572 msgid "Return the hyperbolic cosine of *x*." msgstr "*x*'in hiperbolik kosinüsünü döndürür." -#: library/math.rst:563 +#: library/math.rst:577 msgid "Return the hyperbolic sine of *x*." msgstr "*x*'in hiperbolik sinüsünü döndürür." -#: library/math.rst:568 +#: library/math.rst:582 msgid "Return the hyperbolic tangent of *x*." msgstr "*x*'in hiperbolik tanjantını döndürür." -#: library/math.rst:572 +#: library/math.rst:586 msgid "Special functions" msgstr "Özel fonksiyonlar" -#: library/math.rst:576 +#: library/math.rst:590 msgid "" "Return the `error function `_ " "at *x*." @@ -872,7 +895,7 @@ msgstr "" "*x* adresindeki `hata fonksiyonunu `_ döndürür." -#: library/math.rst:579 +#: library/math.rst:593 msgid "" "The :func:`erf` function can be used to compute traditional statistical " "functions such as the `cumulative standard normal distribution `_: " "gibi geleneksel istatistiksel fonksiyonları hesaplamak için kullanılabilir:" -#: library/math.rst:592 +#: library/math.rst:606 msgid "" "Return the complementary error function at *x*. The `complementary error " "function `_ is defined as " @@ -896,7 +919,7 @@ msgstr "" "wikipedia.org/wiki/Loss_of_significance>`_ neden olacağı büyük *x* değerleri " "için kullanılır.\\" -#: library/math.rst:603 +#: library/math.rst:617 msgid "" "Return the `Gamma function `_ " "at *x*." @@ -904,26 +927,26 @@ msgstr "" "*x* adresindeki `Gamma fonksiyonunu `_ döndürür." -#: library/math.rst:611 +#: library/math.rst:625 msgid "" "Return the natural logarithm of the absolute value of the Gamma function at " "*x*." msgstr "" "Gama fonksiyonunun *x*'deki mutlak değerinin doğal logaritmasını döndürür." -#: library/math.rst:618 +#: library/math.rst:632 msgid "Constants" msgstr "Sabitler" -#: library/math.rst:622 +#: library/math.rst:636 msgid "The mathematical constant *π* = 3.141592..., to available precision." msgstr "Matematiksel sabit *π* = 3.141592..., mevcut hassasiyete göre." -#: library/math.rst:627 +#: library/math.rst:641 msgid "The mathematical constant *e* = 2.718281..., to available precision." msgstr "Matematiksel sabit *e* = 2,718281..., mevcut hassasiyete göre." -#: library/math.rst:632 +#: library/math.rst:646 msgid "" "The mathematical constant *τ* = 6.283185..., to available precision. Tau is " "a circle constant equal to 2\\ *π*, the ratio of a circle's circumference to " @@ -938,7 +961,7 @@ msgstr "" "`Tau gününü `_ iki kat daha fazla turta yiyerek " "kutlamaya başlayın!" -#: library/math.rst:643 +#: library/math.rst:657 msgid "" "A floating-point positive infinity. (For negative infinity, use ``-math." "inf``.) Equivalent to the output of ``float('inf')``." @@ -946,14 +969,15 @@ msgstr "" "Bir kayan noktalı pozitif sonsuzluk. (Negatif sonsuzluk için ``-math.inf`` " "kullanın.) ``float('inf')`` çıktısına eşdeğerdir." -#: library/math.rst:651 +#: library/math.rst:665 +#, fuzzy msgid "" "A floating-point \"not a number\" (NaN) value. Equivalent to the output of " "``float('nan')``. Due to the requirements of the `IEEE-754 standard `_, ``math.nan`` and ``float('nan')`` are not " "considered to equal to any other numeric value, including themselves. To " "check whether a number is a NaN, use the :func:`isnan` function to test for " -"NaNs instead of ``is`` or ``==``. Example::" +"NaNs instead of ``is`` or ``==``. Example:" msgstr "" "Bir kayan noktalı \"sayı değil\" (NaN) değeri. ``float('nan')`` çıktısına " "eşdeğerdir. `IEEE-754 standardının \n" @@ -374,16 +374,23 @@ msgstr "" msgid "MAP_* Constants" msgstr "" -#: library/mmap.rst:374 +#: library/mmap.rst:376 msgid "" -"These are the various flags that can be passed to :meth:`mmap.mmap`. Note " -"that some options might not be present on some systems." +"These are the various flags that can be passed to :meth:`mmap.mmap`. :data:" +"`MAP_ALIGNED_SUPER` is only available at FreeBSD and :data:`MAP_CONCEAL` is " +"only available at OpenBSD. Note that some options might not be present on " +"some systems." msgstr "" -#: library/mmap.rst:376 -msgid "Added MAP_POPULATE constant." +#: library/mmap.rst:380 +msgid "Added :data:`MAP_POPULATE` constant." msgstr "" -#: library/mmap.rst:379 -msgid "Added MAP_STACK constant." +#: library/mmap.rst:383 +msgid "Added :data:`MAP_STACK` constant." +msgstr "" + +#: library/mmap.rst:386 +msgid "" +"Added :data:`MAP_ALIGNED_SUPER` constant. Added :data:`MAP_CONCEAL` constant." msgstr "" diff --git a/library/multiprocessing.po b/library/multiprocessing.po index cd76c8e94..f0203d6d0 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -47,7 +47,7 @@ msgid "" "the :term:`Global Interpreter Lock ` by using " "subprocesses instead of threads. Due to this, the :mod:`multiprocessing` " "module allows the programmer to fully leverage multiple processors on a " -"given machine. It runs on both Unix and Windows." +"given machine. It runs on both POSIX and Windows." msgstr "" #: library/multiprocessing.rst:25 @@ -100,7 +100,7 @@ msgid "" "necessary, see :ref:`multiprocessing-programming`." msgstr "" -#: library/multiprocessing.rst:103 +#: library/multiprocessing.rst:105 msgid "Contexts and start methods" msgstr "" @@ -125,10 +125,11 @@ msgid "" msgstr "" #: library/multiprocessing.rst:118 -msgid "Available on Unix and Windows. The default on Windows and macOS." +msgid "" +"Available on POSIX and Windows platforms. The default on Windows and macOS." msgstr "" -#: library/multiprocessing.rst:127 +#: library/multiprocessing.rst:132 msgid "*fork*" msgstr "" @@ -141,45 +142,54 @@ msgid "" msgstr "" #: library/multiprocessing.rst:127 -msgid "Available on Unix only. The default on Unix." +msgid "" +"Available on POSIX systems. Currently the default on POSIX except macOS." +msgstr "" + +#: library/multiprocessing.rst:130 +msgid "" +"The default start method will change away from *fork* in Python 3.14. Code " +"that requires *fork* should explicitly specify that via :func:`get_context` " +"or :func:`set_start_method`." msgstr "" -#: library/multiprocessing.rst:138 +#: library/multiprocessing.rst:145 msgid "*forkserver*" msgstr "" -#: library/multiprocessing.rst:130 +#: library/multiprocessing.rst:135 msgid "" "When the program starts and selects the *forkserver* start method, a server " -"process is started. From then on, whenever a new process is needed, the " +"process is spawned. From then on, whenever a new process is needed, the " "parent process connects to the server and requests that it fork a new " -"process. The fork server process is single threaded so it is safe for it to " -"use :func:`os.fork`. No unnecessary resources are inherited." +"process. The fork server process is single threaded unless system libraries " +"or preloaded imports spawn threads as a side-effect so it is generally safe " +"for it to use :func:`os.fork`. No unnecessary resources are inherited." msgstr "" -#: library/multiprocessing.rst:137 +#: library/multiprocessing.rst:143 msgid "" -"Available on Unix platforms which support passing file descriptors over Unix " -"pipes." +"Available on POSIX platforms which support passing file descriptors over " +"Unix pipes such as Linux." msgstr "" -#: library/multiprocessing.rst:142 library/multiprocessing.rst:1070 +#: library/multiprocessing.rst:149 msgid "" "On macOS, the *spawn* start method is now the default. The *fork* start " "method should be considered unsafe as it can lead to crashes of the " -"subprocess. See :issue:`33725`." +"subprocess as macOS system libraries may start threads. See :issue:`33725`." msgstr "" -#: library/multiprocessing.rst:146 +#: library/multiprocessing.rst:153 msgid "" -"*spawn* added on all Unix platforms, and *forkserver* added for some Unix " +"*spawn* added on all POSIX platforms, and *forkserver* added for some POSIX " "platforms. Child processes no longer inherit all of the parents inheritable " "handles on Windows." msgstr "" -#: library/multiprocessing.rst:152 +#: library/multiprocessing.rst:159 msgid "" -"On Unix using the *spawn* or *forkserver* start methods will also start a " +"On POSIX using the *spawn* or *forkserver* start methods will also start a " "*resource tracker* process which tracks the unlinked named system resources " "(such as named semaphores or :class:`~multiprocessing.shared_memory." "SharedMemory` objects) created by processes of the program. When all " @@ -192,25 +202,25 @@ msgid "" "space in the main memory.)" msgstr "" -#: library/multiprocessing.rst:165 +#: library/multiprocessing.rst:172 msgid "" "To select a start method you use the :func:`set_start_method` in the ``if " "__name__ == '__main__'`` clause of the main module. For example::" msgstr "" -#: library/multiprocessing.rst:182 +#: library/multiprocessing.rst:189 msgid "" ":func:`set_start_method` should not be used more than once in the program." msgstr "" -#: library/multiprocessing.rst:185 +#: library/multiprocessing.rst:192 msgid "" "Alternatively, you can use :func:`get_context` to obtain a context object. " "Context objects have the same API as the multiprocessing module, and allow " "one to use multiple start methods in the same program. ::" msgstr "" -#: library/multiprocessing.rst:203 +#: library/multiprocessing.rst:210 msgid "" "Note that objects related to one context may not be compatible with " "processes for a different context. In particular, locks created using the " @@ -218,55 +228,55 @@ msgid "" "*forkserver* start methods." msgstr "" -#: library/multiprocessing.rst:208 +#: library/multiprocessing.rst:215 msgid "" "A library which wants to use a particular start method should probably use :" "func:`get_context` to avoid interfering with the choice of the library user." msgstr "" -#: library/multiprocessing.rst:214 +#: library/multiprocessing.rst:221 msgid "" -"The ``'spawn'`` and ``'forkserver'`` start methods cannot currently be used " +"The ``'spawn'`` and ``'forkserver'`` start methods generally cannot be used " "with \"frozen\" executables (i.e., binaries produced by packages like " -"**PyInstaller** and **cx_Freeze**) on Unix. The ``'fork'`` start method does " -"work." +"**PyInstaller** and **cx_Freeze**) on POSIX systems. The ``'fork'`` start " +"method may work if code does not use threads." msgstr "" -#: library/multiprocessing.rst:221 +#: library/multiprocessing.rst:228 msgid "Exchanging objects between processes" msgstr "" -#: library/multiprocessing.rst:223 +#: library/multiprocessing.rst:230 msgid "" ":mod:`multiprocessing` supports two types of communication channel between " "processes:" msgstr "" -#: library/multiprocessing.rst:226 +#: library/multiprocessing.rst:233 msgid "**Queues**" msgstr "" -#: library/multiprocessing.rst:228 +#: library/multiprocessing.rst:235 msgid "" "The :class:`Queue` class is a near clone of :class:`queue.Queue`. For " "example::" msgstr "" -#: library/multiprocessing.rst:243 +#: library/multiprocessing.rst:250 msgid "Queues are thread and process safe." msgstr "" -#: library/multiprocessing.rst:245 +#: library/multiprocessing.rst:252 msgid "**Pipes**" msgstr "" -#: library/multiprocessing.rst:247 +#: library/multiprocessing.rst:254 msgid "" "The :func:`Pipe` function returns a pair of connection objects connected by " "a pipe which by default is duplex (two-way). For example::" msgstr "" -#: library/multiprocessing.rst:263 +#: library/multiprocessing.rst:270 msgid "" "The two connection objects returned by :func:`Pipe` represent the two ends " "of the pipe. Each connection object has :meth:`~Connection.send` and :meth:" @@ -276,55 +286,55 @@ msgid "" "corruption from processes using different ends of the pipe at the same time." msgstr "" -#: library/multiprocessing.rst:273 +#: library/multiprocessing.rst:280 msgid "Synchronization between processes" msgstr "" -#: library/multiprocessing.rst:275 +#: library/multiprocessing.rst:282 msgid "" ":mod:`multiprocessing` contains equivalents of all the synchronization " "primitives from :mod:`threading`. For instance one can use a lock to ensure " "that only one process prints to standard output at a time::" msgstr "" -#: library/multiprocessing.rst:294 +#: library/multiprocessing.rst:301 msgid "" "Without using the lock output from the different processes is liable to get " "all mixed up." msgstr "" -#: library/multiprocessing.rst:299 +#: library/multiprocessing.rst:306 msgid "Sharing state between processes" msgstr "" -#: library/multiprocessing.rst:301 +#: library/multiprocessing.rst:308 msgid "" "As mentioned above, when doing concurrent programming it is usually best to " "avoid using shared state as far as possible. This is particularly true when " "using multiple processes." msgstr "" -#: library/multiprocessing.rst:305 +#: library/multiprocessing.rst:312 msgid "" "However, if you really do need to use some shared data then :mod:" "`multiprocessing` provides a couple of ways of doing so." msgstr "" -#: library/multiprocessing.rst:308 +#: library/multiprocessing.rst:315 msgid "**Shared memory**" msgstr "" -#: library/multiprocessing.rst:310 +#: library/multiprocessing.rst:317 msgid "" "Data can be stored in a shared memory map using :class:`Value` or :class:" "`Array`. For example, the following code ::" msgstr "" -#: library/multiprocessing.rst:331 library/multiprocessing.rst:377 +#: library/multiprocessing.rst:338 library/multiprocessing.rst:384 msgid "will print ::" msgstr "" -#: library/multiprocessing.rst:336 +#: library/multiprocessing.rst:343 msgid "" "The ``'d'`` and ``'i'`` arguments used when creating ``num`` and ``arr`` are " "typecodes of the kind used by the :mod:`array` module: ``'d'`` indicates a " @@ -332,25 +342,25 @@ msgid "" "objects will be process and thread-safe." msgstr "" -#: library/multiprocessing.rst:341 +#: library/multiprocessing.rst:348 msgid "" "For more flexibility in using shared memory one can use the :mod:" "`multiprocessing.sharedctypes` module which supports the creation of " "arbitrary ctypes objects allocated from shared memory." msgstr "" -#: library/multiprocessing.rst:345 +#: library/multiprocessing.rst:352 msgid "**Server process**" msgstr "" -#: library/multiprocessing.rst:347 +#: library/multiprocessing.rst:354 msgid "" "A manager object returned by :func:`Manager` controls a server process which " "holds Python objects and allows other processes to manipulate them using " "proxies." msgstr "" -#: library/multiprocessing.rst:351 +#: library/multiprocessing.rst:358 msgid "" "A manager returned by :func:`Manager` will support types :class:`list`, :" "class:`dict`, :class:`~managers.Namespace`, :class:`Lock`, :class:`RLock`, :" @@ -359,7 +369,7 @@ msgid "" "`Array`. For example, ::" msgstr "" -#: library/multiprocessing.rst:382 +#: library/multiprocessing.rst:389 msgid "" "Server process managers are more flexible than using shared memory objects " "because they can be made to support arbitrary object types. Also, a single " @@ -367,28 +377,28 @@ msgid "" "They are, however, slower than using shared memory." msgstr "" -#: library/multiprocessing.rst:389 +#: library/multiprocessing.rst:396 msgid "Using a pool of workers" msgstr "" -#: library/multiprocessing.rst:391 +#: library/multiprocessing.rst:398 msgid "" "The :class:`~multiprocessing.pool.Pool` class represents a pool of worker " "processes. It has methods which allows tasks to be offloaded to the worker " "processes in a few different ways." msgstr "" -#: library/multiprocessing.rst:395 +#: library/multiprocessing.rst:402 msgid "For example::" msgstr "" -#: library/multiprocessing.rst:439 +#: library/multiprocessing.rst:446 msgid "" "Note that the methods of a pool should only ever be used by the process " "which created it." msgstr "" -#: library/multiprocessing.rst:444 +#: library/multiprocessing.rst:451 msgid "" "Functionality within this package requires that the ``__main__`` module be " "importable by the children. This is covered in :ref:`multiprocessing-" @@ -397,35 +407,35 @@ msgid "" "work in the interactive interpreter. For example::" msgstr "" -#: library/multiprocessing.rst:467 +#: library/multiprocessing.rst:474 msgid "" "(If you try this it will actually output three full tracebacks interleaved " "in a semi-random fashion, and then you may have to stop the parent process " "somehow.)" msgstr "" -#: library/multiprocessing.rst:473 +#: library/multiprocessing.rst:480 msgid "Reference" msgstr "" -#: library/multiprocessing.rst:475 +#: library/multiprocessing.rst:482 msgid "" "The :mod:`multiprocessing` package mostly replicates the API of the :mod:" "`threading` module." msgstr "" -#: library/multiprocessing.rst:480 +#: library/multiprocessing.rst:487 msgid ":class:`Process` and exceptions" msgstr "" -#: library/multiprocessing.rst:485 +#: library/multiprocessing.rst:492 msgid "" "Process objects represent activity that is run in a separate process. The :" "class:`Process` class has equivalents of all the methods of :class:" "`threading.Thread`." msgstr "" -#: library/multiprocessing.rst:489 +#: library/multiprocessing.rst:496 msgid "" "The constructor should always be called with keyword arguments. *group* " "should always be ``None``; it exists solely for compatibility with :class:" @@ -439,29 +449,29 @@ msgid "" "creating process." msgstr "" -#: library/multiprocessing.rst:500 +#: library/multiprocessing.rst:507 msgid "" "By default, no arguments are passed to *target*. The *args* argument, which " "defaults to ``()``, can be used to specify a list or tuple of the arguments " "to pass to *target*." msgstr "" -#: library/multiprocessing.rst:504 +#: library/multiprocessing.rst:511 msgid "" "If a subclass overrides the constructor, it must make sure it invokes the " "base class constructor (:meth:`Process.__init__`) before doing anything else " "to the process." msgstr "" -#: library/multiprocessing.rst:508 +#: library/multiprocessing.rst:515 msgid "Added the *daemon* argument." msgstr "" -#: library/multiprocessing.rst:513 +#: library/multiprocessing.rst:520 msgid "Method representing the process's activity." msgstr "" -#: library/multiprocessing.rst:515 +#: library/multiprocessing.rst:522 msgid "" "You may override this method in a subclass. The standard :meth:`run` method " "invokes the callable object passed to the object's constructor as the target " @@ -469,27 +479,27 @@ msgid "" "*args* and *kwargs* arguments, respectively." msgstr "" -#: library/multiprocessing.rst:520 +#: library/multiprocessing.rst:527 msgid "" "Using a list or tuple as the *args* argument passed to :class:`Process` " "achieves the same effect." msgstr "" -#: library/multiprocessing.rst:523 +#: library/multiprocessing.rst:530 msgid "Example::" msgstr "" -#: library/multiprocessing.rst:535 +#: library/multiprocessing.rst:542 msgid "Start the process's activity." msgstr "" -#: library/multiprocessing.rst:537 +#: library/multiprocessing.rst:544 msgid "" "This must be called at most once per process object. It arranges for the " "object's :meth:`run` method to be invoked in a separate process." msgstr "" -#: library/multiprocessing.rst:542 +#: library/multiprocessing.rst:549 msgid "" "If the optional argument *timeout* is ``None`` (the default), the method " "blocks until the process whose :meth:`join` method is called terminates. If " @@ -499,23 +509,23 @@ msgid "" "terminated." msgstr "" -#: library/multiprocessing.rst:549 +#: library/multiprocessing.rst:556 msgid "A process can be joined many times." msgstr "" -#: library/multiprocessing.rst:551 +#: library/multiprocessing.rst:558 msgid "" "A process cannot join itself because this would cause a deadlock. It is an " "error to attempt to join a process before it has been started." msgstr "" -#: library/multiprocessing.rst:556 +#: library/multiprocessing.rst:563 msgid "" "The process's name. The name is a string used for identification purposes " "only. It has no semantics. Multiple processes may be given the same name." msgstr "" -#: library/multiprocessing.rst:560 +#: library/multiprocessing.rst:567 msgid "" "The initial name is set by the constructor. If no explicit name is provided " "to the constructor, a name of the form 'Process-N\\ :sub:`1`:N\\ :sub:" @@ -523,33 +533,33 @@ msgid "" "child of its parent." msgstr "" -#: library/multiprocessing.rst:567 +#: library/multiprocessing.rst:574 msgid "Return whether the process is alive." msgstr "" -#: library/multiprocessing.rst:569 +#: library/multiprocessing.rst:576 msgid "" "Roughly, a process object is alive from the moment the :meth:`start` method " "returns until the child process terminates." msgstr "" -#: library/multiprocessing.rst:574 +#: library/multiprocessing.rst:581 msgid "" "The process's daemon flag, a Boolean value. This must be set before :meth:" "`start` is called." msgstr "" -#: library/multiprocessing.rst:577 +#: library/multiprocessing.rst:584 msgid "The initial value is inherited from the creating process." msgstr "" -#: library/multiprocessing.rst:579 +#: library/multiprocessing.rst:586 msgid "" "When a process exits, it attempts to terminate all of its daemonic child " "processes." msgstr "" -#: library/multiprocessing.rst:582 +#: library/multiprocessing.rst:589 msgid "" "Note that a daemonic process is not allowed to create child processes. " "Otherwise a daemonic process would leave its children orphaned if it gets " @@ -558,92 +568,92 @@ msgid "" "(and not joined) if non-daemonic processes have exited." msgstr "" -#: library/multiprocessing.rst:588 +#: library/multiprocessing.rst:595 msgid "" "In addition to the :class:`threading.Thread` API, :class:`Process` objects " "also support the following attributes and methods:" msgstr "" -#: library/multiprocessing.rst:593 +#: library/multiprocessing.rst:600 msgid "" "Return the process ID. Before the process is spawned, this will be ``None``." msgstr "" -#: library/multiprocessing.rst:598 +#: library/multiprocessing.rst:605 msgid "" "The child's exit code. This will be ``None`` if the process has not yet " "terminated." msgstr "" -#: library/multiprocessing.rst:601 +#: library/multiprocessing.rst:608 msgid "" "If the child's :meth:`run` method returned normally, the exit code will be " "0. If it terminated via :func:`sys.exit` with an integer argument *N*, the " "exit code will be *N*." msgstr "" -#: library/multiprocessing.rst:605 +#: library/multiprocessing.rst:612 msgid "" "If the child terminated due to an exception not caught within :meth:`run`, " "the exit code will be 1. If it was terminated by signal *N*, the exit code " "will be the negative value *-N*." msgstr "" -#: library/multiprocessing.rst:611 +#: library/multiprocessing.rst:618 msgid "The process's authentication key (a byte string)." msgstr "" -#: library/multiprocessing.rst:613 +#: library/multiprocessing.rst:620 msgid "" "When :mod:`multiprocessing` is initialized the main process is assigned a " "random string using :func:`os.urandom`." msgstr "" -#: library/multiprocessing.rst:616 +#: library/multiprocessing.rst:623 msgid "" "When a :class:`Process` object is created, it will inherit the " "authentication key of its parent process, although this may be changed by " "setting :attr:`authkey` to another byte string." msgstr "" -#: library/multiprocessing.rst:620 +#: library/multiprocessing.rst:627 msgid "See :ref:`multiprocessing-auth-keys`." msgstr "" -#: library/multiprocessing.rst:624 +#: library/multiprocessing.rst:631 msgid "" "A numeric handle of a system object which will become \"ready\" when the " "process ends." msgstr "" -#: library/multiprocessing.rst:627 +#: library/multiprocessing.rst:634 msgid "" "You can use this value if you want to wait on several events at once using :" "func:`multiprocessing.connection.wait`. Otherwise calling :meth:`join()` is " "simpler." msgstr "" -#: library/multiprocessing.rst:631 +#: library/multiprocessing.rst:638 msgid "" "On Windows, this is an OS handle usable with the ``WaitForSingleObject`` and " -"``WaitForMultipleObjects`` family of API calls. On Unix, this is a file " +"``WaitForMultipleObjects`` family of API calls. On POSIX, this is a file " "descriptor usable with primitives from the :mod:`select` module." msgstr "" -#: library/multiprocessing.rst:639 +#: library/multiprocessing.rst:646 msgid "" -"Terminate the process. On Unix this is done using the ``SIGTERM`` signal; " +"Terminate the process. On POSIX this is done using the ``SIGTERM`` signal; " "on Windows :c:func:`TerminateProcess` is used. Note that exit handlers and " "finally clauses, etc., will not be executed." msgstr "" -#: library/multiprocessing.rst:643 +#: library/multiprocessing.rst:650 msgid "" "Note that descendant processes of the process will *not* be terminated -- " "they will simply become orphaned." msgstr "" -#: library/multiprocessing.rst:648 +#: library/multiprocessing.rst:655 msgid "" "If this method is used when the associated process is using a pipe or queue " "then the pipe or queue is liable to become corrupted and may become unusable " @@ -652,11 +662,11 @@ msgid "" "deadlock." msgstr "" -#: library/multiprocessing.rst:656 -msgid "Same as :meth:`terminate()` but using the ``SIGKILL`` signal on Unix." +#: library/multiprocessing.rst:663 +msgid "Same as :meth:`terminate()` but using the ``SIGKILL`` signal on POSIX." msgstr "" -#: library/multiprocessing.rst:662 +#: library/multiprocessing.rst:669 msgid "" "Close the :class:`Process` object, releasing all resources associated with " "it. :exc:`ValueError` is raised if the underlying process is still " @@ -664,59 +674,59 @@ msgid "" "attributes of the :class:`Process` object will raise :exc:`ValueError`." msgstr "" -#: library/multiprocessing.rst:670 +#: library/multiprocessing.rst:677 msgid "" "Note that the :meth:`start`, :meth:`join`, :meth:`is_alive`, :meth:" "`terminate` and :attr:`exitcode` methods should only be called by the " "process that created the process object." msgstr "" -#: library/multiprocessing.rst:674 +#: library/multiprocessing.rst:681 msgid "Example usage of some of the methods of :class:`Process`:" msgstr "" -#: library/multiprocessing.rst:694 +#: library/multiprocessing.rst:702 msgid "The base class of all :mod:`multiprocessing` exceptions." msgstr "" -#: library/multiprocessing.rst:698 +#: library/multiprocessing.rst:706 msgid "" "Exception raised by :meth:`Connection.recv_bytes_into()` when the supplied " "buffer object is too small for the message read." msgstr "" -#: library/multiprocessing.rst:701 +#: library/multiprocessing.rst:709 msgid "" "If ``e`` is an instance of :exc:`BufferTooShort` then ``e.args[0]`` will " "give the message as a byte string." msgstr "" -#: library/multiprocessing.rst:706 +#: library/multiprocessing.rst:714 msgid "Raised when there is an authentication error." msgstr "" -#: library/multiprocessing.rst:710 +#: library/multiprocessing.rst:718 msgid "Raised by methods with a timeout when the timeout expires." msgstr "" -#: library/multiprocessing.rst:713 +#: library/multiprocessing.rst:721 msgid "Pipes and Queues" msgstr "" -#: library/multiprocessing.rst:715 +#: library/multiprocessing.rst:723 msgid "" "When using multiple processes, one generally uses message passing for " "communication between processes and avoids having to use any synchronization " "primitives like locks." msgstr "" -#: library/multiprocessing.rst:719 +#: library/multiprocessing.rst:727 msgid "" "For passing messages one can use :func:`Pipe` (for a connection between two " "processes) or a queue (which allows multiple producers and consumers)." msgstr "" -#: library/multiprocessing.rst:722 +#: library/multiprocessing.rst:730 msgid "" "The :class:`Queue`, :class:`SimpleQueue` and :class:`JoinableQueue` types " "are multi-producer, multi-consumer :abbr:`FIFO (first-in, first-out)` queues " @@ -726,7 +736,7 @@ msgid "" "Queue` class." msgstr "" -#: library/multiprocessing.rst:729 +#: library/multiprocessing.rst:737 msgid "" "If you use :class:`JoinableQueue` then you **must** call :meth:" "`JoinableQueue.task_done` for each task removed from the queue or else the " @@ -734,20 +744,20 @@ msgid "" "overflow, raising an exception." msgstr "" -#: library/multiprocessing.rst:734 +#: library/multiprocessing.rst:742 msgid "" "Note that one can also create a shared queue by using a manager object -- " "see :ref:`multiprocessing-managers`." msgstr "" -#: library/multiprocessing.rst:739 +#: library/multiprocessing.rst:747 msgid "" ":mod:`multiprocessing` uses the usual :exc:`queue.Empty` and :exc:`queue." "Full` exceptions to signal a timeout. They are not available in the :mod:" "`multiprocessing` namespace so you need to import them from :mod:`queue`." msgstr "" -#: library/multiprocessing.rst:746 +#: library/multiprocessing.rst:754 msgid "" "When an object is put on a queue, the object is pickled and a background " "thread later flushes the pickled data to an underlying pipe. This has some " @@ -756,14 +766,14 @@ msgid "" "a queue created with a :ref:`manager `." msgstr "" -#: library/multiprocessing.rst:753 +#: library/multiprocessing.rst:761 msgid "" "After putting an object on an empty queue there may be an infinitesimal " "delay before the queue's :meth:`~Queue.empty` method returns :const:`False` " "and :meth:`~Queue.get_nowait` can return without raising :exc:`queue.Empty`." msgstr "" -#: library/multiprocessing.rst:758 +#: library/multiprocessing.rst:766 msgid "" "If multiple processes are enqueuing objects, it is possible for the objects " "to be received at the other end out-of-order. However, objects enqueued by " @@ -771,7 +781,7 @@ msgid "" "other." msgstr "" -#: library/multiprocessing.rst:765 +#: library/multiprocessing.rst:773 msgid "" "If a process is killed using :meth:`Process.terminate` or :func:`os.kill` " "while it is trying to use a :class:`Queue`, then the data in the queue is " @@ -779,7 +789,7 @@ msgid "" "exception when it tries to use the queue later on." msgstr "" -#: library/multiprocessing.rst:772 +#: library/multiprocessing.rst:780 msgid "" "As mentioned above, if a child process has put items on a queue (and it has " "not used :meth:`JoinableQueue.cancel_join_thread ` -- see also :ref:`multiprocessing-listeners-clients`." msgstr "" -#: library/multiprocessing.rst:1131 +#: library/multiprocessing.rst:1155 msgid "" "Send an object to the other end of the connection which should be read " "using :meth:`recv`." msgstr "" -#: library/multiprocessing.rst:1134 +#: library/multiprocessing.rst:1158 msgid "" "The object must be picklable. Very large pickles (approximately 32 MiB+, " "though it depends on the OS) may raise a :exc:`ValueError` exception." msgstr "" -#: library/multiprocessing.rst:1139 +#: library/multiprocessing.rst:1163 msgid "" "Return an object sent from the other end of the connection using :meth:" "`send`. Blocks until there is something to receive. Raises :exc:`EOFError` " "if there is nothing left to receive and the other end was closed." msgstr "" -#: library/multiprocessing.rst:1146 +#: library/multiprocessing.rst:1170 msgid "Return the file descriptor or handle used by the connection." msgstr "" -#: library/multiprocessing.rst:1150 +#: library/multiprocessing.rst:1174 msgid "Close the connection." msgstr "" -#: library/multiprocessing.rst:1152 +#: library/multiprocessing.rst:1176 msgid "This is called automatically when the connection is garbage collected." msgstr "" -#: library/multiprocessing.rst:1156 +#: library/multiprocessing.rst:1180 msgid "Return whether there is any data available to be read." msgstr "" -#: library/multiprocessing.rst:1158 +#: library/multiprocessing.rst:1182 msgid "" "If *timeout* is not specified then it will return immediately. If *timeout* " "is a number then this specifies the maximum time in seconds to block. If " "*timeout* is ``None`` then an infinite timeout is used." msgstr "" -#: library/multiprocessing.rst:1162 +#: library/multiprocessing.rst:1186 msgid "" "Note that multiple connection objects may be polled at once by using :func:" "`multiprocessing.connection.wait`." msgstr "" -#: library/multiprocessing.rst:1167 +#: library/multiprocessing.rst:1191 msgid "Send byte data from a :term:`bytes-like object` as a complete message." msgstr "" -#: library/multiprocessing.rst:1169 +#: library/multiprocessing.rst:1193 msgid "" "If *offset* is given then data is read from that position in *buffer*. If " "*size* is given then that many bytes will be read from buffer. Very large " @@ -1265,7 +1306,7 @@ msgid "" "exc:`ValueError` exception" msgstr "" -#: library/multiprocessing.rst:1176 +#: library/multiprocessing.rst:1200 msgid "" "Return a complete message of byte data sent from the other end of the " "connection as a string. Blocks until there is something to receive. Raises :" @@ -1273,19 +1314,19 @@ msgid "" "closed." msgstr "" -#: library/multiprocessing.rst:1181 +#: library/multiprocessing.rst:1205 msgid "" "If *maxlength* is specified and the message is longer than *maxlength* then :" "exc:`OSError` is raised and the connection will no longer be readable." msgstr "" -#: library/multiprocessing.rst:1185 +#: library/multiprocessing.rst:1209 msgid "" "This function used to raise :exc:`IOError`, which is now an alias of :exc:" "`OSError`." msgstr "" -#: library/multiprocessing.rst:1192 +#: library/multiprocessing.rst:1216 msgid "" "Read into *buffer* a complete message of byte data sent from the other end " "of the connection and return the number of bytes in the message. Blocks " @@ -1293,45 +1334,45 @@ msgid "" "nothing left to receive and the other end was closed." msgstr "" -#: library/multiprocessing.rst:1198 +#: library/multiprocessing.rst:1222 msgid "" "*buffer* must be a writable :term:`bytes-like object`. If *offset* is given " "then the message will be written into the buffer from that position. Offset " "must be a non-negative integer less than the length of *buffer* (in bytes)." msgstr "" -#: library/multiprocessing.rst:1203 +#: library/multiprocessing.rst:1227 msgid "" "If the buffer is too short then a :exc:`BufferTooShort` exception is raised " "and the complete message is available as ``e.args[0]`` where ``e`` is the " "exception instance." msgstr "" -#: library/multiprocessing.rst:1207 +#: library/multiprocessing.rst:1231 msgid "" "Connection objects themselves can now be transferred between processes " "using :meth:`Connection.send` and :meth:`Connection.recv`." msgstr "" -#: library/multiprocessing.rst:1211 +#: library/multiprocessing.rst:1235 msgid "" "Connection objects now support the context management protocol -- see :ref:" "`typecontextmanager`. :meth:`~contextmanager.__enter__` returns the " "connection object, and :meth:`~contextmanager.__exit__` calls :meth:`close`." msgstr "" -#: library/multiprocessing.rst:1216 +#: library/multiprocessing.rst:1240 msgid "For example:" msgstr "" -#: library/multiprocessing.rst:1241 +#: library/multiprocessing.rst:1265 msgid "" "The :meth:`Connection.recv` method automatically unpickles the data it " "receives, which can be a security risk unless you can trust the process " "which sent the message." msgstr "" -#: library/multiprocessing.rst:1245 +#: library/multiprocessing.rst:1269 msgid "" "Therefore, unless the connection object was produced using :func:`Pipe` you " "should only use the :meth:`~Connection.recv` and :meth:`~Connection.send` " @@ -1339,71 +1380,71 @@ msgid "" "`multiprocessing-auth-keys`." msgstr "" -#: library/multiprocessing.rst:1252 +#: library/multiprocessing.rst:1276 msgid "" "If a process is killed while it is trying to read or write to a pipe then " "the data in the pipe is likely to become corrupted, because it may become " "impossible to be sure where the message boundaries lie." msgstr "" -#: library/multiprocessing.rst:1258 +#: library/multiprocessing.rst:1282 msgid "Synchronization primitives" msgstr "" -#: library/multiprocessing.rst:1262 +#: library/multiprocessing.rst:1286 msgid "" "Generally synchronization primitives are not as necessary in a multiprocess " "program as they are in a multithreaded program. See the documentation for :" "mod:`threading` module." msgstr "" -#: library/multiprocessing.rst:1266 +#: library/multiprocessing.rst:1290 msgid "" "Note that one can also create synchronization primitives by using a manager " "object -- see :ref:`multiprocessing-managers`." msgstr "" -#: library/multiprocessing.rst:1271 +#: library/multiprocessing.rst:1295 msgid "A barrier object: a clone of :class:`threading.Barrier`." msgstr "" -#: library/multiprocessing.rst:1277 +#: library/multiprocessing.rst:1301 msgid "" "A bounded semaphore object: a close analog of :class:`threading." "BoundedSemaphore`." msgstr "" -#: library/multiprocessing.rst:1280 library/multiprocessing.rst:1418 +#: library/multiprocessing.rst:1304 library/multiprocessing.rst:1442 msgid "" "A solitary difference from its close analog exists: its ``acquire`` method's " "first argument is named *block*, as is consistent with :meth:`Lock.acquire`." msgstr "" -#: library/multiprocessing.rst:1284 +#: library/multiprocessing.rst:1308 msgid "" "On macOS, this is indistinguishable from :class:`Semaphore` because " "``sem_getvalue()`` is not implemented on that platform." msgstr "" -#: library/multiprocessing.rst:1289 +#: library/multiprocessing.rst:1313 msgid "A condition variable: an alias for :class:`threading.Condition`." msgstr "" -#: library/multiprocessing.rst:1291 +#: library/multiprocessing.rst:1315 msgid "" "If *lock* is specified then it should be a :class:`Lock` or :class:`RLock` " "object from :mod:`multiprocessing`." msgstr "" -#: library/multiprocessing.rst:1294 library/multiprocessing.rst:1843 +#: library/multiprocessing.rst:1318 library/multiprocessing.rst:1867 msgid "The :meth:`~threading.Condition.wait_for` method was added." msgstr "" -#: library/multiprocessing.rst:1299 +#: library/multiprocessing.rst:1323 msgid "A clone of :class:`threading.Event`." msgstr "" -#: library/multiprocessing.rst:1304 +#: library/multiprocessing.rst:1328 msgid "" "A non-recursive lock object: a close analog of :class:`threading.Lock`. Once " "a process or thread has acquired a lock, subsequent attempts to acquire it " @@ -1414,24 +1455,24 @@ msgid "" "as noted." msgstr "" -#: library/multiprocessing.rst:1312 +#: library/multiprocessing.rst:1336 msgid "" "Note that :class:`Lock` is actually a factory function which returns an " "instance of ``multiprocessing.synchronize.Lock`` initialized with a default " "context." msgstr "" -#: library/multiprocessing.rst:1316 +#: library/multiprocessing.rst:1340 msgid "" ":class:`Lock` supports the :term:`context manager` protocol and thus may be " "used in :keyword:`with` statements." msgstr "" -#: library/multiprocessing.rst:1321 library/multiprocessing.rst:1372 +#: library/multiprocessing.rst:1345 library/multiprocessing.rst:1396 msgid "Acquire a lock, blocking or non-blocking." msgstr "" -#: library/multiprocessing.rst:1323 +#: library/multiprocessing.rst:1347 msgid "" "With the *block* argument set to ``True`` (the default), the method call " "will block until the lock is in an unlocked state, then set it to locked and " @@ -1439,14 +1480,14 @@ msgid "" "that in :meth:`threading.Lock.acquire`." msgstr "" -#: library/multiprocessing.rst:1328 +#: library/multiprocessing.rst:1352 msgid "" "With the *block* argument set to ``False``, the method call does not block. " "If the lock is currently in a locked state, return ``False``; otherwise set " "the lock to a locked state and return ``True``." msgstr "" -#: library/multiprocessing.rst:1332 +#: library/multiprocessing.rst:1356 msgid "" "When invoked with a positive, floating-point value for *timeout*, block for " "at most the number of seconds specified by *timeout* as long as the lock can " @@ -1460,19 +1501,19 @@ msgid "" "acquired or ``False`` if the timeout period has elapsed." msgstr "" -#: library/multiprocessing.rst:1347 +#: library/multiprocessing.rst:1371 msgid "" "Release a lock. This can be called from any process or thread, not only the " "process or thread which originally acquired the lock." msgstr "" -#: library/multiprocessing.rst:1350 +#: library/multiprocessing.rst:1374 msgid "" "Behavior is the same as in :meth:`threading.Lock.release` except that when " "invoked on an unlocked lock, a :exc:`ValueError` is raised." msgstr "" -#: library/multiprocessing.rst:1356 +#: library/multiprocessing.rst:1380 msgid "" "A recursive lock object: a close analog of :class:`threading.RLock`. A " "recursive lock must be released by the process or thread that acquired it. " @@ -1481,20 +1522,20 @@ msgid "" "release it once for each time it has been acquired." msgstr "" -#: library/multiprocessing.rst:1362 +#: library/multiprocessing.rst:1386 msgid "" "Note that :class:`RLock` is actually a factory function which returns an " "instance of ``multiprocessing.synchronize.RLock`` initialized with a default " "context." msgstr "" -#: library/multiprocessing.rst:1366 +#: library/multiprocessing.rst:1390 msgid "" ":class:`RLock` supports the :term:`context manager` protocol and thus may be " "used in :keyword:`with` statements." msgstr "" -#: library/multiprocessing.rst:1374 +#: library/multiprocessing.rst:1398 msgid "" "When invoked with the *block* argument set to ``True``, block until the lock " "is in an unlocked state (not owned by any process or thread) unless the lock " @@ -1507,7 +1548,7 @@ msgid "" "itself." msgstr "" -#: library/multiprocessing.rst:1384 +#: library/multiprocessing.rst:1408 msgid "" "When invoked with the *block* argument set to ``False``, do not block. If " "the lock has already been acquired (and thus is owned) by another process or " @@ -1518,14 +1559,14 @@ msgid "" "a return value of ``True``." msgstr "" -#: library/multiprocessing.rst:1392 +#: library/multiprocessing.rst:1416 msgid "" "Use and behaviors of the *timeout* argument are the same as in :meth:`Lock." "acquire`. Note that some of these behaviors of *timeout* differ from the " "implemented behaviors in :meth:`threading.RLock.acquire`." msgstr "" -#: library/multiprocessing.rst:1399 +#: library/multiprocessing.rst:1423 msgid "" "Release a lock, decrementing the recursion level. If after the decrement " "the recursion level is zero, reset the lock to unlocked (not owned by any " @@ -1535,7 +1576,7 @@ msgid "" "locked and owned by the calling process or thread." msgstr "" -#: library/multiprocessing.rst:1407 +#: library/multiprocessing.rst:1431 msgid "" "Only call this method when the calling process or thread owns the lock. An :" "exc:`AssertionError` is raised if this method is called by a process or " @@ -1544,17 +1585,17 @@ msgid "" "from the implemented behavior in :meth:`threading.RLock.release`." msgstr "" -#: library/multiprocessing.rst:1416 +#: library/multiprocessing.rst:1440 msgid "A semaphore object: a close analog of :class:`threading.Semaphore`." msgstr "" -#: library/multiprocessing.rst:1423 +#: library/multiprocessing.rst:1447 msgid "" "On macOS, ``sem_timedwait`` is unsupported, so calling ``acquire()`` with a " "timeout will emulate that function's behavior using a sleeping loop." msgstr "" -#: library/multiprocessing.rst:1428 +#: library/multiprocessing.rst:1452 msgid "" "If the SIGINT signal generated by :kbd:`Ctrl-C` arrives while the main " "thread is blocked by a call to :meth:`BoundedSemaphore.acquire`, :meth:`Lock." @@ -1563,13 +1604,13 @@ msgid "" "interrupted and :exc:`KeyboardInterrupt` will be raised." msgstr "" -#: library/multiprocessing.rst:1434 +#: library/multiprocessing.rst:1458 msgid "" "This differs from the behaviour of :mod:`threading` where SIGINT will be " "ignored while the equivalent blocking calls are in progress." msgstr "" -#: library/multiprocessing.rst:1439 +#: library/multiprocessing.rst:1463 msgid "" "Some of this package's functionality requires a functioning shared semaphore " "implementation on the host operating system. Without one, the :mod:" @@ -1578,31 +1619,31 @@ msgid "" "additional information." msgstr "" -#: library/multiprocessing.rst:1447 +#: library/multiprocessing.rst:1471 msgid "Shared :mod:`ctypes` Objects" msgstr "" -#: library/multiprocessing.rst:1449 +#: library/multiprocessing.rst:1473 msgid "" "It is possible to create shared objects using shared memory which can be " "inherited by child processes." msgstr "" -#: library/multiprocessing.rst:1454 +#: library/multiprocessing.rst:1478 msgid "" "Return a :mod:`ctypes` object allocated from shared memory. By default the " "return value is actually a synchronized wrapper for the object. The object " "itself can be accessed via the *value* attribute of a :class:`Value`." msgstr "" -#: library/multiprocessing.rst:1458 library/multiprocessing.rst:1545 +#: library/multiprocessing.rst:1482 library/multiprocessing.rst:1569 msgid "" "*typecode_or_type* determines the type of the returned object: it is either " "a ctypes type or a one character typecode of the kind used by the :mod:" "`array` module. *\\*args* is passed on to the constructor for the type." msgstr "" -#: library/multiprocessing.rst:1462 +#: library/multiprocessing.rst:1486 msgid "" "If *lock* is ``True`` (the default) then a new recursive lock object is " "created to synchronize access to the value. If *lock* is a :class:`Lock` " @@ -1612,31 +1653,31 @@ msgid "" "\"process-safe\"." msgstr "" -#: library/multiprocessing.rst:1469 +#: library/multiprocessing.rst:1493 msgid "" "Operations like ``+=`` which involve a read and write are not atomic. So " "if, for instance, you want to atomically increment a shared value it is " "insufficient to just do ::" msgstr "" -#: library/multiprocessing.rst:1475 +#: library/multiprocessing.rst:1499 msgid "" "Assuming the associated lock is recursive (which it is by default) you can " "instead do ::" msgstr "" -#: library/multiprocessing.rst:1481 library/multiprocessing.rst:1571 -#: library/multiprocessing.rst:1586 +#: library/multiprocessing.rst:1505 library/multiprocessing.rst:1595 +#: library/multiprocessing.rst:1610 msgid "Note that *lock* is a keyword-only argument." msgstr "" -#: library/multiprocessing.rst:1485 +#: library/multiprocessing.rst:1509 msgid "" "Return a ctypes array allocated from shared memory. By default the return " "value is actually a synchronized wrapper for the array." msgstr "" -#: library/multiprocessing.rst:1488 +#: library/multiprocessing.rst:1512 msgid "" "*typecode_or_type* determines the type of the elements of the returned " "array: it is either a ctypes type or a one character typecode of the kind " @@ -1646,7 +1687,7 @@ msgid "" "initialize the array and whose length determines the length of the array." msgstr "" -#: library/multiprocessing.rst:1495 +#: library/multiprocessing.rst:1519 msgid "" "If *lock* is ``True`` (the default) then a new lock object is created to " "synchronize access to the value. If *lock* is a :class:`Lock` or :class:" @@ -1656,28 +1697,28 @@ msgid "" "safe\"." msgstr "" -#: library/multiprocessing.rst:1502 +#: library/multiprocessing.rst:1526 msgid "Note that *lock* is a keyword only argument." msgstr "" -#: library/multiprocessing.rst:1504 +#: library/multiprocessing.rst:1528 msgid "" "Note that an array of :data:`ctypes.c_char` has *value* and *raw* attributes " "which allow one to use it to store and retrieve strings." msgstr "" -#: library/multiprocessing.rst:1509 +#: library/multiprocessing.rst:1533 msgid "The :mod:`multiprocessing.sharedctypes` module" msgstr "" -#: library/multiprocessing.rst:1514 +#: library/multiprocessing.rst:1538 msgid "" "The :mod:`multiprocessing.sharedctypes` module provides functions for " "allocating :mod:`ctypes` objects from shared memory which can be inherited " "by child processes." msgstr "" -#: library/multiprocessing.rst:1520 +#: library/multiprocessing.rst:1544 msgid "" "Although it is possible to store a pointer in shared memory remember that " "this will refer to a location in the address space of a specific process. " @@ -1686,11 +1727,11 @@ msgid "" "may cause a crash." msgstr "" -#: library/multiprocessing.rst:1528 +#: library/multiprocessing.rst:1552 msgid "Return a ctypes array allocated from shared memory." msgstr "" -#: library/multiprocessing.rst:1530 +#: library/multiprocessing.rst:1554 msgid "" "*typecode_or_type* determines the type of the elements of the returned " "array: it is either a ctypes type or a one character typecode of the kind " @@ -1700,39 +1741,39 @@ msgid "" "initialize the array and whose length determines the length of the array." msgstr "" -#: library/multiprocessing.rst:1537 +#: library/multiprocessing.rst:1561 msgid "" "Note that setting and getting an element is potentially non-atomic -- use :" "func:`Array` instead to make sure that access is automatically synchronized " "using a lock." msgstr "" -#: library/multiprocessing.rst:1543 +#: library/multiprocessing.rst:1567 msgid "Return a ctypes object allocated from shared memory." msgstr "" -#: library/multiprocessing.rst:1549 +#: library/multiprocessing.rst:1573 msgid "" "Note that setting and getting the value is potentially non-atomic -- use :" "func:`Value` instead to make sure that access is automatically synchronized " "using a lock." msgstr "" -#: library/multiprocessing.rst:1553 +#: library/multiprocessing.rst:1577 msgid "" "Note that an array of :data:`ctypes.c_char` has ``value`` and ``raw`` " "attributes which allow one to use it to store and retrieve strings -- see " "documentation for :mod:`ctypes`." msgstr "" -#: library/multiprocessing.rst:1559 +#: library/multiprocessing.rst:1583 msgid "" "The same as :func:`RawArray` except that depending on the value of *lock* a " "process-safe synchronization wrapper may be returned instead of a raw ctypes " "array." msgstr "" -#: library/multiprocessing.rst:1563 library/multiprocessing.rst:1579 +#: library/multiprocessing.rst:1587 library/multiprocessing.rst:1603 msgid "" "If *lock* is ``True`` (the default) then a new lock object is created to " "synchronize access to the value. If *lock* is a :class:`~multiprocessing." @@ -1742,121 +1783,121 @@ msgid "" "not necessarily be \"process-safe\"." msgstr "" -#: library/multiprocessing.rst:1575 +#: library/multiprocessing.rst:1599 msgid "" "The same as :func:`RawValue` except that depending on the value of *lock* a " "process-safe synchronization wrapper may be returned instead of a raw ctypes " "object." msgstr "" -#: library/multiprocessing.rst:1590 +#: library/multiprocessing.rst:1614 msgid "" "Return a ctypes object allocated from shared memory which is a copy of the " "ctypes object *obj*." msgstr "" -#: library/multiprocessing.rst:1595 +#: library/multiprocessing.rst:1619 msgid "" "Return a process-safe wrapper object for a ctypes object which uses *lock* " "to synchronize access. If *lock* is ``None`` (the default) then a :class:" "`multiprocessing.RLock` object is created automatically." msgstr "" -#: library/multiprocessing.rst:1599 +#: library/multiprocessing.rst:1623 msgid "" "A synchronized wrapper will have two methods in addition to those of the " "object it wraps: :meth:`get_obj` returns the wrapped object and :meth:" "`get_lock` returns the lock object used for synchronization." msgstr "" -#: library/multiprocessing.rst:1603 +#: library/multiprocessing.rst:1627 msgid "" "Note that accessing the ctypes object through the wrapper can be a lot " "slower than accessing the raw ctypes object." msgstr "" -#: library/multiprocessing.rst:1606 +#: library/multiprocessing.rst:1630 msgid "Synchronized objects support the :term:`context manager` protocol." msgstr "" -#: library/multiprocessing.rst:1610 +#: library/multiprocessing.rst:1634 msgid "" "The table below compares the syntax for creating shared ctypes objects from " "shared memory with the normal ctypes syntax. (In the table ``MyStruct`` is " "some subclass of :class:`ctypes.Structure`.)" msgstr "" -#: library/multiprocessing.rst:1615 +#: library/multiprocessing.rst:1639 msgid "ctypes" msgstr "" -#: library/multiprocessing.rst:1615 +#: library/multiprocessing.rst:1639 msgid "sharedctypes using type" msgstr "" -#: library/multiprocessing.rst:1615 +#: library/multiprocessing.rst:1639 msgid "sharedctypes using typecode" msgstr "" -#: library/multiprocessing.rst:1617 +#: library/multiprocessing.rst:1641 msgid "c_double(2.4)" msgstr "" -#: library/multiprocessing.rst:1617 +#: library/multiprocessing.rst:1641 msgid "RawValue(c_double, 2.4)" msgstr "" -#: library/multiprocessing.rst:1617 +#: library/multiprocessing.rst:1641 msgid "RawValue('d', 2.4)" msgstr "" -#: library/multiprocessing.rst:1618 +#: library/multiprocessing.rst:1642 msgid "MyStruct(4, 6)" msgstr "" -#: library/multiprocessing.rst:1618 +#: library/multiprocessing.rst:1642 msgid "RawValue(MyStruct, 4, 6)" msgstr "" -#: library/multiprocessing.rst:1619 +#: library/multiprocessing.rst:1643 msgid "(c_short * 7)()" msgstr "" -#: library/multiprocessing.rst:1619 +#: library/multiprocessing.rst:1643 msgid "RawArray(c_short, 7)" msgstr "" -#: library/multiprocessing.rst:1619 +#: library/multiprocessing.rst:1643 msgid "RawArray('h', 7)" msgstr "" -#: library/multiprocessing.rst:1620 +#: library/multiprocessing.rst:1644 msgid "(c_int * 3)(9, 2, 8)" msgstr "" -#: library/multiprocessing.rst:1620 +#: library/multiprocessing.rst:1644 msgid "RawArray(c_int, (9, 2, 8))" msgstr "" -#: library/multiprocessing.rst:1620 +#: library/multiprocessing.rst:1644 msgid "RawArray('i', (9, 2, 8))" msgstr "" -#: library/multiprocessing.rst:1624 +#: library/multiprocessing.rst:1648 msgid "" "Below is an example where a number of ctypes objects are modified by a child " "process::" msgstr "" -#: library/multiprocessing.rst:1662 +#: library/multiprocessing.rst:1686 msgid "The results printed are ::" msgstr "" -#: library/multiprocessing.rst:1675 +#: library/multiprocessing.rst:1699 msgid "Managers" msgstr "" -#: library/multiprocessing.rst:1677 +#: library/multiprocessing.rst:1701 msgid "" "Managers provide a way to create data which can be shared between different " "processes, including sharing over a network between processes running on " @@ -1865,7 +1906,7 @@ msgid "" "proxies." msgstr "" -#: library/multiprocessing.rst:1686 +#: library/multiprocessing.rst:1710 msgid "" "Returns a started :class:`~multiprocessing.managers.SyncManager` object " "which can be used for sharing objects between processes. The returned " @@ -1873,31 +1914,31 @@ msgid "" "will create shared objects and return corresponding proxies." msgstr "" -#: library/multiprocessing.rst:1694 +#: library/multiprocessing.rst:1718 msgid "" "Manager processes will be shutdown as soon as they are garbage collected or " "their parent process exits. The manager classes are defined in the :mod:" "`multiprocessing.managers` module:" msgstr "" -#: library/multiprocessing.rst:1700 +#: library/multiprocessing.rst:1724 msgid "Create a BaseManager object." msgstr "" -#: library/multiprocessing.rst:1702 +#: library/multiprocessing.rst:1726 msgid "" "Once created one should call :meth:`start` or ``get_server()." "serve_forever()`` to ensure that the manager object refers to a started " "manager process." msgstr "" -#: library/multiprocessing.rst:1705 +#: library/multiprocessing.rst:1729 msgid "" "*address* is the address on which the manager process listens for new " "connections. If *address* is ``None`` then an arbitrary one is chosen." msgstr "" -#: library/multiprocessing.rst:1708 +#: library/multiprocessing.rst:1732 msgid "" "*authkey* is the authentication key which will be used to check the validity " "of incoming connections to the server process. If *authkey* is ``None`` " @@ -1905,19 +1946,19 @@ msgid "" "it must be a byte string." msgstr "" -#: library/multiprocessing.rst:1713 +#: library/multiprocessing.rst:1737 msgid "" "*serializer* must be ``'pickle'`` (use :mod:`pickle` serialization) or " "``'xmlrpclib'`` (use :mod:`xmlrpc.client` serialization)." msgstr "" -#: library/multiprocessing.rst:1716 +#: library/multiprocessing.rst:1740 msgid "" "*ctx* is a context object, or ``None`` (use the current context). See the :" "func:`get_context` function." msgstr "" -#: library/multiprocessing.rst:1719 +#: library/multiprocessing.rst:1743 msgid "" "*shutdown_timeout* is a timeout in seconds used to wait until the process " "used by the manager completes in the :meth:`shutdown` method. If the " @@ -1925,54 +1966,54 @@ msgid "" "also times out, the process is killed." msgstr "" -#: library/multiprocessing.rst:1724 +#: library/multiprocessing.rst:1748 msgid "Added the *shutdown_timeout* parameter." msgstr "" -#: library/multiprocessing.rst:1729 +#: library/multiprocessing.rst:1753 msgid "" "Start a subprocess to start the manager. If *initializer* is not ``None`` " "then the subprocess will call ``initializer(*initargs)`` when it starts." msgstr "" -#: library/multiprocessing.rst:1734 +#: library/multiprocessing.rst:1758 msgid "" "Returns a :class:`Server` object which represents the actual server under " "the control of the Manager. The :class:`Server` object supports the :meth:" "`serve_forever` method::" msgstr "" -#: library/multiprocessing.rst:1743 +#: library/multiprocessing.rst:1767 msgid ":class:`Server` additionally has an :attr:`address` attribute." msgstr "" -#: library/multiprocessing.rst:1747 +#: library/multiprocessing.rst:1771 msgid "Connect a local manager object to a remote manager process::" msgstr "" -#: library/multiprocessing.rst:1755 +#: library/multiprocessing.rst:1779 msgid "" "Stop the process used by the manager. This is only available if :meth:" "`start` has been used to start the server process." msgstr "" -#: library/multiprocessing.rst:1758 +#: library/multiprocessing.rst:1782 msgid "This can be called multiple times." msgstr "" -#: library/multiprocessing.rst:1762 +#: library/multiprocessing.rst:1786 msgid "" "A classmethod which can be used for registering a type or callable with the " "manager class." msgstr "" -#: library/multiprocessing.rst:1765 +#: library/multiprocessing.rst:1789 msgid "" "*typeid* is a \"type identifier\" which is used to identify a particular " "type of shared object. This must be a string." msgstr "" -#: library/multiprocessing.rst:1768 +#: library/multiprocessing.rst:1792 msgid "" "*callable* is a callable used for creating objects for this type " "identifier. If a manager instance will be connected to the server using " @@ -1980,14 +2021,14 @@ msgid "" "then this can be left as ``None``." msgstr "" -#: library/multiprocessing.rst:1774 +#: library/multiprocessing.rst:1798 msgid "" "*proxytype* is a subclass of :class:`BaseProxy` which is used to create " "proxies for shared objects with this *typeid*. If ``None`` then a proxy " "class is created automatically." msgstr "" -#: library/multiprocessing.rst:1778 +#: library/multiprocessing.rst:1802 msgid "" "*exposed* is used to specify a sequence of method names which proxies for " "this typeid should be allowed to access using :meth:`BaseProxy." @@ -1998,7 +2039,7 @@ msgid "" "method and whose name does not begin with ``'_'``.)" msgstr "" -#: library/multiprocessing.rst:1787 +#: library/multiprocessing.rst:1811 msgid "" "*method_to_typeid* is a mapping used to specify the return type of those " "exposed methods which should return a proxy. It maps method names to typeid " @@ -2008,22 +2049,22 @@ msgid "" "returned by the method will be copied by value." msgstr "" -#: library/multiprocessing.rst:1794 +#: library/multiprocessing.rst:1818 msgid "" "*create_method* determines whether a method should be created with name " "*typeid* which can be used to tell the server process to create a new shared " "object and return a proxy for it. By default it is ``True``." msgstr "" -#: library/multiprocessing.rst:1798 +#: library/multiprocessing.rst:1822 msgid ":class:`BaseManager` instances also have one read-only property:" msgstr "" -#: library/multiprocessing.rst:1802 +#: library/multiprocessing.rst:1826 msgid "The address used by the manager." msgstr "" -#: library/multiprocessing.rst:1804 +#: library/multiprocessing.rst:1828 msgid "" "Manager objects support the context management protocol -- see :ref:" "`typecontextmanager`. :meth:`~contextmanager.__enter__` starts the server " @@ -2031,173 +2072,173 @@ msgid "" "object. :meth:`~contextmanager.__exit__` calls :meth:`shutdown`." msgstr "" -#: library/multiprocessing.rst:1810 +#: library/multiprocessing.rst:1834 msgid "" "In previous versions :meth:`~contextmanager.__enter__` did not start the " "manager's server process if it was not already started." msgstr "" -#: library/multiprocessing.rst:1815 +#: library/multiprocessing.rst:1839 msgid "" "A subclass of :class:`BaseManager` which can be used for the synchronization " "of processes. Objects of this type are returned by :func:`multiprocessing." "Manager`." msgstr "" -#: library/multiprocessing.rst:1819 +#: library/multiprocessing.rst:1843 msgid "" "Its methods create and return :ref:`multiprocessing-proxy_objects` for a " "number of commonly used data types to be synchronized across processes. This " "notably includes shared lists and dictionaries." msgstr "" -#: library/multiprocessing.rst:1825 +#: library/multiprocessing.rst:1849 msgid "" "Create a shared :class:`threading.Barrier` object and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1832 +#: library/multiprocessing.rst:1856 msgid "" "Create a shared :class:`threading.BoundedSemaphore` object and return a " "proxy for it." msgstr "" -#: library/multiprocessing.rst:1837 +#: library/multiprocessing.rst:1861 msgid "" "Create a shared :class:`threading.Condition` object and return a proxy for " "it." msgstr "" -#: library/multiprocessing.rst:1840 +#: library/multiprocessing.rst:1864 msgid "" "If *lock* is supplied then it should be a proxy for a :class:`threading." "Lock` or :class:`threading.RLock` object." msgstr "" -#: library/multiprocessing.rst:1848 +#: library/multiprocessing.rst:1872 msgid "" "Create a shared :class:`threading.Event` object and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1852 +#: library/multiprocessing.rst:1876 msgid "" "Create a shared :class:`threading.Lock` object and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1856 +#: library/multiprocessing.rst:1880 msgid "Create a shared :class:`Namespace` object and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1860 +#: library/multiprocessing.rst:1884 msgid "Create a shared :class:`queue.Queue` object and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1864 +#: library/multiprocessing.rst:1888 msgid "" "Create a shared :class:`threading.RLock` object and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1868 +#: library/multiprocessing.rst:1892 msgid "" "Create a shared :class:`threading.Semaphore` object and return a proxy for " "it." msgstr "" -#: library/multiprocessing.rst:1873 +#: library/multiprocessing.rst:1897 msgid "Create an array and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1877 +#: library/multiprocessing.rst:1901 msgid "" "Create an object with a writable ``value`` attribute and return a proxy for " "it." msgstr "" -#: library/multiprocessing.rst:1884 +#: library/multiprocessing.rst:1908 msgid "Create a shared :class:`dict` object and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1889 +#: library/multiprocessing.rst:1913 msgid "Create a shared :class:`list` object and return a proxy for it." msgstr "" -#: library/multiprocessing.rst:1891 +#: library/multiprocessing.rst:1915 msgid "" "Shared objects are capable of being nested. For example, a shared container " "object such as a shared list can contain other shared objects which will all " "be managed and synchronized by the :class:`SyncManager`." msgstr "" -#: library/multiprocessing.rst:1898 +#: library/multiprocessing.rst:1922 msgid "A type that can register with :class:`SyncManager`." msgstr "" -#: library/multiprocessing.rst:1900 +#: library/multiprocessing.rst:1924 msgid "" "A namespace object has no public methods, but does have writable attributes. " "Its representation shows the values of its attributes." msgstr "" -#: library/multiprocessing.rst:1903 +#: library/multiprocessing.rst:1927 msgid "" "However, when using a proxy for a namespace object, an attribute beginning " "with ``'_'`` will be an attribute of the proxy and not an attribute of the " "referent:" msgstr "" -#: library/multiprocessing.rst:1919 +#: library/multiprocessing.rst:1944 msgid "Customized managers" msgstr "" -#: library/multiprocessing.rst:1921 +#: library/multiprocessing.rst:1946 msgid "" "To create one's own manager, one creates a subclass of :class:`BaseManager` " "and uses the :meth:`~BaseManager.register` classmethod to register new types " "or callables with the manager class. For example::" msgstr "" -#: library/multiprocessing.rst:1946 +#: library/multiprocessing.rst:1971 msgid "Using a remote manager" msgstr "" -#: library/multiprocessing.rst:1948 +#: library/multiprocessing.rst:1973 msgid "" "It is possible to run a manager server on one machine and have clients use " "it from other machines (assuming that the firewalls involved allow it)." msgstr "" -#: library/multiprocessing.rst:1951 +#: library/multiprocessing.rst:1976 msgid "" "Running the following commands creates a server for a single shared queue " "which remote clients can access::" msgstr "" -#: library/multiprocessing.rst:1963 +#: library/multiprocessing.rst:1988 msgid "One client can access the server as follows::" msgstr "" -#: library/multiprocessing.rst:1973 +#: library/multiprocessing.rst:1998 msgid "Another client can also use it::" msgstr "" -#: library/multiprocessing.rst:1984 +#: library/multiprocessing.rst:2009 msgid "" "Local processes can also access that queue, using the code from above on the " "client to access it remotely::" msgstr "" -#: library/multiprocessing.rst:2009 +#: library/multiprocessing.rst:2034 msgid "Proxy Objects" msgstr "" -#: library/multiprocessing.rst:2011 +#: library/multiprocessing.rst:2036 msgid "" "A proxy is an object which *refers* to a shared object which lives " "(presumably) in a different process. The shared object is said to be the " "*referent* of the proxy. Multiple proxy objects may have the same referent." msgstr "" -#: library/multiprocessing.rst:2015 +#: library/multiprocessing.rst:2040 msgid "" "A proxy object has methods which invoke corresponding methods of its " "referent (although not every method of the referent will necessarily be " @@ -2205,14 +2246,14 @@ msgid "" "its referent can:" msgstr "" -#: library/multiprocessing.rst:2033 +#: library/multiprocessing.rst:2058 msgid "" "Notice that applying :func:`str` to a proxy will return the representation " "of the referent, whereas applying :func:`repr` will return the " "representation of the proxy." msgstr "" -#: library/multiprocessing.rst:2037 +#: library/multiprocessing.rst:2062 msgid "" "An important feature of proxy objects is that they are picklable so they can " "be passed between processes. As such, a referent can contain :ref:" @@ -2220,11 +2261,11 @@ msgid "" "lists, dicts, and other :ref:`multiprocessing-proxy_objects`:" msgstr "" -#: library/multiprocessing.rst:2053 +#: library/multiprocessing.rst:2078 msgid "Similarly, dict and list proxies may be nested inside one another::" msgstr "" -#: library/multiprocessing.rst:2066 +#: library/multiprocessing.rst:2091 msgid "" "If standard (non-proxy) :class:`list` or :class:`dict` objects are contained " "in a referent, modifications to those mutable values will not be propagated " @@ -2235,53 +2276,53 @@ msgid "" "assign the modified value to the container proxy::" msgstr "" -#: library/multiprocessing.rst:2085 +#: library/multiprocessing.rst:2110 msgid "" "This approach is perhaps less convenient than employing nested :ref:" "`multiprocessing-proxy_objects` for most use cases but also demonstrates a " "level of control over the synchronization." msgstr "" -#: library/multiprocessing.rst:2091 +#: library/multiprocessing.rst:2116 msgid "" "The proxy types in :mod:`multiprocessing` do nothing to support comparisons " "by value. So, for instance, we have:" msgstr "" -#: library/multiprocessing.rst:2099 +#: library/multiprocessing.rst:2124 msgid "" "One should just use a copy of the referent instead when making comparisons." msgstr "" -#: library/multiprocessing.rst:2103 +#: library/multiprocessing.rst:2128 msgid "Proxy objects are instances of subclasses of :class:`BaseProxy`." msgstr "" -#: library/multiprocessing.rst:2107 +#: library/multiprocessing.rst:2132 msgid "Call and return the result of a method of the proxy's referent." msgstr "" -#: library/multiprocessing.rst:2109 +#: library/multiprocessing.rst:2134 msgid "" "If ``proxy`` is a proxy whose referent is ``obj`` then the expression ::" msgstr "" -#: library/multiprocessing.rst:2113 +#: library/multiprocessing.rst:2138 msgid "will evaluate the expression ::" msgstr "" -#: library/multiprocessing.rst:2117 +#: library/multiprocessing.rst:2142 msgid "in the manager's process." msgstr "" -#: library/multiprocessing.rst:2119 +#: library/multiprocessing.rst:2144 msgid "" "The returned value will be a copy of the result of the call or a proxy to a " "new shared object -- see documentation for the *method_to_typeid* argument " "of :meth:`BaseManager.register`." msgstr "" -#: library/multiprocessing.rst:2123 +#: library/multiprocessing.rst:2148 msgid "" "If an exception is raised by the call, then is re-raised by :meth:" "`_callmethod`. If some other exception is raised in the manager's process " @@ -2289,78 +2330,78 @@ msgid "" "meth:`_callmethod`." msgstr "" -#: library/multiprocessing.rst:2128 +#: library/multiprocessing.rst:2153 msgid "" "Note in particular that an exception will be raised if *methodname* has not " "been *exposed*." msgstr "" -#: library/multiprocessing.rst:2131 +#: library/multiprocessing.rst:2156 msgid "An example of the usage of :meth:`_callmethod`:" msgstr "" -#: library/multiprocessing.rst:2147 +#: library/multiprocessing.rst:2172 msgid "Return a copy of the referent." msgstr "" -#: library/multiprocessing.rst:2149 +#: library/multiprocessing.rst:2174 msgid "If the referent is unpicklable then this will raise an exception." msgstr "" -#: library/multiprocessing.rst:2153 +#: library/multiprocessing.rst:2178 msgid "Return a representation of the proxy object." msgstr "" -#: library/multiprocessing.rst:2157 +#: library/multiprocessing.rst:2182 msgid "Return the representation of the referent." msgstr "" -#: library/multiprocessing.rst:2161 +#: library/multiprocessing.rst:2186 msgid "Cleanup" msgstr "" -#: library/multiprocessing.rst:2163 +#: library/multiprocessing.rst:2188 msgid "" "A proxy object uses a weakref callback so that when it gets garbage " "collected it deregisters itself from the manager which owns its referent." msgstr "" -#: library/multiprocessing.rst:2166 +#: library/multiprocessing.rst:2191 msgid "" "A shared object gets deleted from the manager process when there are no " "longer any proxies referring to it." msgstr "" -#: library/multiprocessing.rst:2171 +#: library/multiprocessing.rst:2196 msgid "Process Pools" msgstr "" -#: library/multiprocessing.rst:2176 +#: library/multiprocessing.rst:2201 msgid "" "One can create a pool of processes which will carry out tasks submitted to " "it with the :class:`Pool` class." msgstr "" -#: library/multiprocessing.rst:2181 +#: library/multiprocessing.rst:2206 msgid "" "A process pool object which controls a pool of worker processes to which " "jobs can be submitted. It supports asynchronous results with timeouts and " "callbacks and has a parallel map implementation." msgstr "" -#: library/multiprocessing.rst:2185 +#: library/multiprocessing.rst:2210 msgid "" "*processes* is the number of worker processes to use. If *processes* is " "``None`` then the number returned by :func:`os.cpu_count` is used." msgstr "" -#: library/multiprocessing.rst:2188 library/multiprocessing.rst:2749 +#: library/multiprocessing.rst:2213 library/multiprocessing.rst:2774 msgid "" "If *initializer* is not ``None`` then each worker process will call " "``initializer(*initargs)`` when it starts." msgstr "" -#: library/multiprocessing.rst:2191 +#: library/multiprocessing.rst:2216 msgid "" "*maxtasksperchild* is the number of tasks a worker process can complete " "before it will exit and be replaced with a fresh worker process, to enable " @@ -2368,7 +2409,7 @@ msgid "" "which means worker processes will live as long as the pool." msgstr "" -#: library/multiprocessing.rst:2196 +#: library/multiprocessing.rst:2221 msgid "" "*context* can be used to specify the context used for starting the worker " "processes. Usually a pool is created using the function :func:" @@ -2376,13 +2417,13 @@ msgid "" "both cases *context* is set appropriately." msgstr "" -#: library/multiprocessing.rst:2202 +#: library/multiprocessing.rst:2227 msgid "" "Note that the methods of the pool object should only be called by the " "process which created the pool." msgstr "" -#: library/multiprocessing.rst:2206 +#: library/multiprocessing.rst:2231 msgid "" ":class:`multiprocessing.pool` objects have internal resources that need to " "be properly managed (like any other resource) by using the pool as a context " @@ -2390,22 +2431,22 @@ msgid "" "to do this can lead to the process hanging on finalization." msgstr "" -#: library/multiprocessing.rst:2211 +#: library/multiprocessing.rst:2236 msgid "" "Note that it is **not correct** to rely on the garbage collector to destroy " "the pool as CPython does not assure that the finalizer of the pool will be " "called (see :meth:`object.__del__` for more information)." msgstr "" -#: library/multiprocessing.rst:2215 +#: library/multiprocessing.rst:2240 msgid "*maxtasksperchild*" msgstr "" -#: library/multiprocessing.rst:2218 +#: library/multiprocessing.rst:2243 msgid "*context*" msgstr "" -#: library/multiprocessing.rst:2223 +#: library/multiprocessing.rst:2248 msgid "" "Worker processes within a :class:`Pool` typically live for the complete " "duration of the Pool's work queue. A frequent pattern found in other systems " @@ -2416,7 +2457,7 @@ msgid "" "ability to the end user." msgstr "" -#: library/multiprocessing.rst:2233 +#: library/multiprocessing.rst:2258 msgid "" "Call *func* with arguments *args* and keyword arguments *kwds*. It blocks " "until the result is ready. Given this blocks, :meth:`apply_async` is better " @@ -2424,13 +2465,13 @@ msgid "" "executed in one of the workers of the pool." msgstr "" -#: library/multiprocessing.rst:2240 +#: library/multiprocessing.rst:2265 msgid "" "A variant of the :meth:`apply` method which returns a :class:" "`~multiprocessing.pool.AsyncResult` object." msgstr "" -#: library/multiprocessing.rst:2243 library/multiprocessing.rst:2274 +#: library/multiprocessing.rst:2268 library/multiprocessing.rst:2299 msgid "" "If *callback* is specified then it should be a callable which accepts a " "single argument. When the result becomes ready *callback* is applied to it, " @@ -2438,58 +2479,58 @@ msgid "" "applied instead." msgstr "" -#: library/multiprocessing.rst:2248 library/multiprocessing.rst:2279 +#: library/multiprocessing.rst:2273 library/multiprocessing.rst:2304 msgid "" "If *error_callback* is specified then it should be a callable which accepts " "a single argument. If the target function fails, then the *error_callback* " "is called with the exception instance." msgstr "" -#: library/multiprocessing.rst:2252 library/multiprocessing.rst:2283 +#: library/multiprocessing.rst:2277 library/multiprocessing.rst:2308 msgid "" "Callbacks should complete immediately since otherwise the thread which " "handles the results will get blocked." msgstr "" -#: library/multiprocessing.rst:2257 +#: library/multiprocessing.rst:2282 msgid "" "A parallel equivalent of the :func:`map` built-in function (it supports only " "one *iterable* argument though, for multiple iterables see :meth:`starmap`). " "It blocks until the result is ready." msgstr "" -#: library/multiprocessing.rst:2261 +#: library/multiprocessing.rst:2286 msgid "" "This method chops the iterable into a number of chunks which it submits to " "the process pool as separate tasks. The (approximate) size of these chunks " "can be specified by setting *chunksize* to a positive integer." msgstr "" -#: library/multiprocessing.rst:2265 +#: library/multiprocessing.rst:2290 msgid "" "Note that it may cause high memory usage for very long iterables. Consider " "using :meth:`imap` or :meth:`imap_unordered` with explicit *chunksize* " "option for better efficiency." msgstr "" -#: library/multiprocessing.rst:2271 +#: library/multiprocessing.rst:2296 msgid "" "A variant of the :meth:`.map` method which returns a :class:" "`~multiprocessing.pool.AsyncResult` object." msgstr "" -#: library/multiprocessing.rst:2288 +#: library/multiprocessing.rst:2313 msgid "A lazier version of :meth:`.map`." msgstr "" -#: library/multiprocessing.rst:2290 +#: library/multiprocessing.rst:2315 msgid "" "The *chunksize* argument is the same as the one used by the :meth:`.map` " "method. For very long iterables using a large value for *chunksize* can " "make the job complete **much** faster than using the default value of ``1``." msgstr "" -#: library/multiprocessing.rst:2295 +#: library/multiprocessing.rst:2320 msgid "" "Also if *chunksize* is ``1`` then the :meth:`!next` method of the iterator " "returned by the :meth:`imap` method has an optional *timeout* parameter: " @@ -2497,65 +2538,65 @@ msgid "" "result cannot be returned within *timeout* seconds." msgstr "" -#: library/multiprocessing.rst:2302 +#: library/multiprocessing.rst:2327 msgid "" "The same as :meth:`imap` except that the ordering of the results from the " "returned iterator should be considered arbitrary. (Only when there is only " "one worker process is the order guaranteed to be \"correct\".)" msgstr "" -#: library/multiprocessing.rst:2308 +#: library/multiprocessing.rst:2333 msgid "" "Like :meth:`~multiprocessing.pool.Pool.map` except that the elements of the " "*iterable* are expected to be iterables that are unpacked as arguments." msgstr "" -#: library/multiprocessing.rst:2312 +#: library/multiprocessing.rst:2337 msgid "" "Hence an *iterable* of ``[(1,2), (3, 4)]`` results in ``[func(1,2), " "func(3,4)]``." msgstr "" -#: library/multiprocessing.rst:2319 +#: library/multiprocessing.rst:2344 msgid "" "A combination of :meth:`starmap` and :meth:`map_async` that iterates over " "*iterable* of iterables and calls *func* with the iterables unpacked. " "Returns a result object." msgstr "" -#: library/multiprocessing.rst:2327 +#: library/multiprocessing.rst:2352 msgid "" "Prevents any more tasks from being submitted to the pool. Once all the " "tasks have been completed the worker processes will exit." msgstr "" -#: library/multiprocessing.rst:2332 +#: library/multiprocessing.rst:2357 msgid "" "Stops the worker processes immediately without completing outstanding work. " "When the pool object is garbage collected :meth:`terminate` will be called " "immediately." msgstr "" -#: library/multiprocessing.rst:2338 +#: library/multiprocessing.rst:2363 msgid "" "Wait for the worker processes to exit. One must call :meth:`close` or :meth:" "`terminate` before using :meth:`join`." msgstr "" -#: library/multiprocessing.rst:2341 +#: library/multiprocessing.rst:2366 msgid "" "Pool objects now support the context management protocol -- see :ref:" "`typecontextmanager`. :meth:`~contextmanager.__enter__` returns the pool " "object, and :meth:`~contextmanager.__exit__` calls :meth:`terminate`." msgstr "" -#: library/multiprocessing.rst:2349 +#: library/multiprocessing.rst:2374 msgid "" "The class of the result returned by :meth:`Pool.apply_async` and :meth:`Pool." "map_async`." msgstr "" -#: library/multiprocessing.rst:2354 +#: library/multiprocessing.rst:2379 msgid "" "Return the result when it arrives. If *timeout* is not ``None`` and the " "result does not arrive within *timeout* seconds then :exc:`multiprocessing." @@ -2563,41 +2604,41 @@ msgid "" "exception will be reraised by :meth:`get`." msgstr "" -#: library/multiprocessing.rst:2361 +#: library/multiprocessing.rst:2386 msgid "Wait until the result is available or until *timeout* seconds pass." msgstr "" -#: library/multiprocessing.rst:2365 +#: library/multiprocessing.rst:2390 msgid "Return whether the call has completed." msgstr "" -#: library/multiprocessing.rst:2369 +#: library/multiprocessing.rst:2394 msgid "" "Return whether the call completed without raising an exception. Will raise :" "exc:`ValueError` if the result is not ready." msgstr "" -#: library/multiprocessing.rst:2372 +#: library/multiprocessing.rst:2397 msgid "" "If the result is not ready, :exc:`ValueError` is raised instead of :exc:" "`AssertionError`." msgstr "" -#: library/multiprocessing.rst:2376 +#: library/multiprocessing.rst:2401 msgid "The following example demonstrates the use of a pool::" msgstr "" -#: library/multiprocessing.rst:2403 +#: library/multiprocessing.rst:2428 msgid "Listeners and Clients" msgstr "" -#: library/multiprocessing.rst:2408 +#: library/multiprocessing.rst:2433 msgid "" "Usually message passing between processes is done using queues or by using :" "class:`~Connection` objects returned by :func:`~multiprocessing.Pipe`." msgstr "" -#: library/multiprocessing.rst:2412 +#: library/multiprocessing.rst:2437 msgid "" "However, the :mod:`multiprocessing.connection` module allows some extra " "flexibility. It basically gives a high level message oriented API for " @@ -2606,45 +2647,45 @@ msgid "" "multiple connections at the same time." msgstr "" -#: library/multiprocessing.rst:2421 +#: library/multiprocessing.rst:2446 msgid "" "Send a randomly generated message to the other end of the connection and " "wait for a reply." msgstr "" -#: library/multiprocessing.rst:2424 +#: library/multiprocessing.rst:2449 msgid "" "If the reply matches the digest of the message using *authkey* as the key " "then a welcome message is sent to the other end of the connection. " "Otherwise :exc:`~multiprocessing.AuthenticationError` is raised." msgstr "" -#: library/multiprocessing.rst:2430 +#: library/multiprocessing.rst:2455 msgid "" "Receive a message, calculate the digest of the message using *authkey* as " "the key, and then send the digest back." msgstr "" -#: library/multiprocessing.rst:2433 +#: library/multiprocessing.rst:2458 msgid "" "If a welcome message is not received, then :exc:`~multiprocessing." "AuthenticationError` is raised." msgstr "" -#: library/multiprocessing.rst:2438 +#: library/multiprocessing.rst:2463 msgid "" "Attempt to set up a connection to the listener which is using address " "*address*, returning a :class:`~Connection`." msgstr "" -#: library/multiprocessing.rst:2441 +#: library/multiprocessing.rst:2466 msgid "" "The type of the connection is determined by *family* argument, but this can " "generally be omitted since it can usually be inferred from the format of " "*address*. (See :ref:`multiprocessing-address-formats`)" msgstr "" -#: library/multiprocessing.rst:2445 library/multiprocessing.rst:2480 +#: library/multiprocessing.rst:2470 library/multiprocessing.rst:2505 msgid "" "If *authkey* is given and not None, it should be a byte string and will be " "used as the secret key for an HMAC-based authentication challenge. No " @@ -2653,26 +2694,26 @@ msgid "" "`multiprocessing-auth-keys`." msgstr "" -#: library/multiprocessing.rst:2453 +#: library/multiprocessing.rst:2478 msgid "" "A wrapper for a bound socket or Windows named pipe which is 'listening' for " "connections." msgstr "" -#: library/multiprocessing.rst:2456 +#: library/multiprocessing.rst:2481 msgid "" "*address* is the address to be used by the bound socket or named pipe of the " "listener object." msgstr "" -#: library/multiprocessing.rst:2461 +#: library/multiprocessing.rst:2486 msgid "" "If an address of '0.0.0.0' is used, the address will not be a connectable " "end point on Windows. If you require a connectable end-point, you should use " "'127.0.0.1'." msgstr "" -#: library/multiprocessing.rst:2465 +#: library/multiprocessing.rst:2490 msgid "" "*family* is the type of socket (or named pipe) to use. This can be one of " "the strings ``'AF_INET'`` (for a TCP socket), ``'AF_UNIX'`` (for a Unix " @@ -2686,49 +2727,49 @@ msgid "" "using :func:`tempfile.mkstemp`." msgstr "" -#: library/multiprocessing.rst:2476 +#: library/multiprocessing.rst:2501 msgid "" "If the listener object uses a socket then *backlog* (1 by default) is passed " "to the :meth:`~socket.socket.listen` method of the socket once it has been " "bound." msgstr "" -#: library/multiprocessing.rst:2488 +#: library/multiprocessing.rst:2513 msgid "" "Accept a connection on the bound socket or named pipe of the listener object " "and return a :class:`~Connection` object. If authentication is attempted and " "fails, then :exc:`~multiprocessing.AuthenticationError` is raised." msgstr "" -#: library/multiprocessing.rst:2495 +#: library/multiprocessing.rst:2520 msgid "" "Close the bound socket or named pipe of the listener object. This is called " "automatically when the listener is garbage collected. However it is " "advisable to call it explicitly." msgstr "" -#: library/multiprocessing.rst:2499 +#: library/multiprocessing.rst:2524 msgid "Listener objects have the following read-only properties:" msgstr "" -#: library/multiprocessing.rst:2503 +#: library/multiprocessing.rst:2528 msgid "The address which is being used by the Listener object." msgstr "" -#: library/multiprocessing.rst:2507 +#: library/multiprocessing.rst:2532 msgid "" "The address from which the last accepted connection came. If this is " "unavailable then it is ``None``." msgstr "" -#: library/multiprocessing.rst:2510 +#: library/multiprocessing.rst:2535 msgid "" "Listener objects now support the context management protocol -- see :ref:" "`typecontextmanager`. :meth:`~contextmanager.__enter__` returns the " "listener object, and :meth:`~contextmanager.__exit__` calls :meth:`close`." msgstr "" -#: library/multiprocessing.rst:2517 +#: library/multiprocessing.rst:2542 msgid "" "Wait till an object in *object_list* is ready. Returns the list of those " "objects in *object_list* which are ready. If *timeout* is a float then the " @@ -2737,40 +2778,40 @@ msgid "" "zero timeout." msgstr "" -#: library/multiprocessing.rst:2523 +#: library/multiprocessing.rst:2548 msgid "" -"For both Unix and Windows, an object can appear in *object_list* if it is" +"For both POSIX and Windows, an object can appear in *object_list* if it is" msgstr "" -#: library/multiprocessing.rst:2526 +#: library/multiprocessing.rst:2551 msgid "a readable :class:`~multiprocessing.connection.Connection` object;" msgstr "" -#: library/multiprocessing.rst:2527 +#: library/multiprocessing.rst:2552 msgid "a connected and readable :class:`socket.socket` object; or" msgstr "" -#: library/multiprocessing.rst:2528 +#: library/multiprocessing.rst:2553 msgid "" "the :attr:`~multiprocessing.Process.sentinel` attribute of a :class:" "`~multiprocessing.Process` object." msgstr "" -#: library/multiprocessing.rst:2531 +#: library/multiprocessing.rst:2556 msgid "" "A connection or socket object is ready when there is data available to be " "read from it, or the other end has been closed." msgstr "" -#: library/multiprocessing.rst:2534 +#: library/multiprocessing.rst:2559 msgid "" -"**Unix**: ``wait(object_list, timeout)`` almost equivalent ``select." +"**POSIX**: ``wait(object_list, timeout)`` almost equivalent ``select." "select(object_list, [], [], timeout)``. The difference is that, if :func:" "`select.select` is interrupted by a signal, it can raise :exc:`OSError` with " "an error number of ``EINTR``, whereas :func:`wait` will not." msgstr "" -#: library/multiprocessing.rst:2540 +#: library/multiprocessing.rst:2565 msgid "" "**Windows**: An item in *object_list* must either be an integer handle which " "is waitable (according to the definition used by the documentation of the " @@ -2779,46 +2820,46 @@ msgid "" "that pipe handles and socket handles are **not** waitable handles.)" msgstr "" -#: library/multiprocessing.rst:2550 +#: library/multiprocessing.rst:2575 msgid "**Examples**" msgstr "" -#: library/multiprocessing.rst:2552 +#: library/multiprocessing.rst:2577 msgid "" "The following server code creates a listener which uses ``'secret " "password'`` as an authentication key. It then waits for a connection and " "sends some data to the client::" msgstr "" -#: library/multiprocessing.rst:2571 +#: library/multiprocessing.rst:2596 msgid "" "The following code connects to the server and receives some data from the " "server::" msgstr "" -#: library/multiprocessing.rst:2588 +#: library/multiprocessing.rst:2613 msgid "" "The following code uses :func:`~multiprocessing.connection.wait` to wait for " "messages from multiple processes at once::" msgstr "" -#: library/multiprocessing.rst:2627 +#: library/multiprocessing.rst:2652 msgid "Address Formats" msgstr "" -#: library/multiprocessing.rst:2629 +#: library/multiprocessing.rst:2654 msgid "" "An ``'AF_INET'`` address is a tuple of the form ``(hostname, port)`` where " "*hostname* is a string and *port* is an integer." msgstr "" -#: library/multiprocessing.rst:2632 +#: library/multiprocessing.rst:2657 msgid "" "An ``'AF_UNIX'`` address is a string representing a filename on the " "filesystem." msgstr "" -#: library/multiprocessing.rst:2635 +#: library/multiprocessing.rst:2660 msgid "" "An ``'AF_PIPE'`` address is a string of the form :samp:`r'\\\\\\\\\\\\.\\" "\\pipe\\\\\\\\{PipeName}'`. To use :func:`Client` to connect to a named " @@ -2827,17 +2868,17 @@ msgid "" "instead." msgstr "" -#: library/multiprocessing.rst:2640 +#: library/multiprocessing.rst:2665 msgid "" "Note that any string beginning with two backslashes is assumed by default to " "be an ``'AF_PIPE'`` address rather than an ``'AF_UNIX'`` address." msgstr "" -#: library/multiprocessing.rst:2647 +#: library/multiprocessing.rst:2672 msgid "Authentication keys" msgstr "" -#: library/multiprocessing.rst:2649 +#: library/multiprocessing.rst:2674 msgid "" "When one uses :meth:`Connection.recv `, the data received " "is automatically unpickled. Unfortunately unpickling data from an untrusted " @@ -2845,7 +2886,7 @@ msgid "" "use the :mod:`hmac` module to provide digest authentication." msgstr "" -#: library/multiprocessing.rst:2655 +#: library/multiprocessing.rst:2680 msgid "" "An authentication key is a byte string which can be thought of as a " "password: once a connection is established both ends will demand proof that " @@ -2853,7 +2894,7 @@ msgid "" "using the same key does **not** involve sending the key over the connection.)" msgstr "" -#: library/multiprocessing.rst:2661 +#: library/multiprocessing.rst:2686 msgid "" "If authentication is requested but no authentication key is specified then " "the return value of ``current_process().authkey`` is used (see :class:" @@ -2864,17 +2905,17 @@ msgid "" "setting up connections between themselves." msgstr "" -#: library/multiprocessing.rst:2669 +#: library/multiprocessing.rst:2694 msgid "" "Suitable authentication keys can also be generated by using :func:`os." "urandom`." msgstr "" -#: library/multiprocessing.rst:2673 +#: library/multiprocessing.rst:2698 msgid "Logging" msgstr "" -#: library/multiprocessing.rst:2675 +#: library/multiprocessing.rst:2700 msgid "" "Some support for logging is available. Note, however, that the :mod:" "`logging` package does not use process shared locks so it is possible " @@ -2882,27 +2923,27 @@ msgid "" "mixed up." msgstr "" -#: library/multiprocessing.rst:2682 +#: library/multiprocessing.rst:2707 msgid "" "Returns the logger used by :mod:`multiprocessing`. If necessary, a new one " "will be created." msgstr "" -#: library/multiprocessing.rst:2685 +#: library/multiprocessing.rst:2710 msgid "" "When first created the logger has level :const:`logging.NOTSET` and no " "default handler. Messages sent to this logger will not by default propagate " "to the root logger." msgstr "" -#: library/multiprocessing.rst:2689 +#: library/multiprocessing.rst:2714 msgid "" "Note that on Windows child processes will only inherit the level of the " "parent process's logger -- any other customization of the logger will not be " "inherited." msgstr "" -#: library/multiprocessing.rst:2696 +#: library/multiprocessing.rst:2721 msgid "" "This function performs a call to :func:`get_logger` but in addition to " "returning the logger created by get_logger, it adds a handler which sends " @@ -2911,25 +2952,25 @@ msgid "" "``level`` argument." msgstr "" -#: library/multiprocessing.rst:2702 +#: library/multiprocessing.rst:2727 msgid "Below is an example session with logging turned on::" msgstr "" -#: library/multiprocessing.rst:2717 +#: library/multiprocessing.rst:2742 msgid "For a full table of logging levels, see the :mod:`logging` module." msgstr "" -#: library/multiprocessing.rst:2721 +#: library/multiprocessing.rst:2746 msgid "The :mod:`multiprocessing.dummy` module" msgstr "" -#: library/multiprocessing.rst:2726 +#: library/multiprocessing.rst:2751 msgid "" ":mod:`multiprocessing.dummy` replicates the API of :mod:`multiprocessing` " "but is no more than a wrapper around the :mod:`threading` module." msgstr "" -#: library/multiprocessing.rst:2731 +#: library/multiprocessing.rst:2756 msgid "" "In particular, the ``Pool`` function provided by :mod:`multiprocessing." "dummy` returns an instance of :class:`ThreadPool`, which is a subclass of :" @@ -2937,7 +2978,7 @@ msgid "" "worker threads rather than worker processes." msgstr "" -#: library/multiprocessing.rst:2739 +#: library/multiprocessing.rst:2764 msgid "" "A thread pool object which controls a pool of worker threads to which jobs " "can be submitted. :class:`ThreadPool` instances are fully interface " @@ -2947,18 +2988,18 @@ msgid "" "pool.Pool.terminate` manually." msgstr "" -#: library/multiprocessing.rst:2746 +#: library/multiprocessing.rst:2771 msgid "" "*processes* is the number of worker threads to use. If *processes* is " "``None`` then the number returned by :func:`os.cpu_count` is used." msgstr "" -#: library/multiprocessing.rst:2752 +#: library/multiprocessing.rst:2777 msgid "" "Unlike :class:`Pool`, *maxtasksperchild* and *context* cannot be provided." msgstr "" -#: library/multiprocessing.rst:2756 +#: library/multiprocessing.rst:2781 msgid "" "A :class:`ThreadPool` shares the same interface as :class:`Pool`, which is " "designed around a pool of processes and predates the introduction of the :" @@ -2968,7 +3009,7 @@ msgid "" "is not understood by any other libraries." msgstr "" -#: library/multiprocessing.rst:2763 +#: library/multiprocessing.rst:2788 msgid "" "Users should generally prefer to use :class:`concurrent.futures." "ThreadPoolExecutor`, which has a simpler interface that was designed around " @@ -2977,84 +3018,84 @@ msgid "" "`asyncio`." msgstr "" -#: library/multiprocessing.rst:2773 +#: library/multiprocessing.rst:2798 msgid "Programming guidelines" msgstr "" -#: library/multiprocessing.rst:2775 +#: library/multiprocessing.rst:2800 msgid "" "There are certain guidelines and idioms which should be adhered to when " "using :mod:`multiprocessing`." msgstr "" -#: library/multiprocessing.rst:2780 +#: library/multiprocessing.rst:2805 msgid "All start methods" msgstr "" -#: library/multiprocessing.rst:2782 +#: library/multiprocessing.rst:2807 msgid "The following applies to all start methods." msgstr "" -#: library/multiprocessing.rst:2784 +#: library/multiprocessing.rst:2809 msgid "Avoid shared state" msgstr "" -#: library/multiprocessing.rst:2786 +#: library/multiprocessing.rst:2811 msgid "" "As far as possible one should try to avoid shifting large amounts of data " "between processes." msgstr "" -#: library/multiprocessing.rst:2789 +#: library/multiprocessing.rst:2814 msgid "" "It is probably best to stick to using queues or pipes for communication " "between processes rather than using the lower level synchronization " "primitives." msgstr "" -#: library/multiprocessing.rst:2793 +#: library/multiprocessing.rst:2818 msgid "Picklability" msgstr "" -#: library/multiprocessing.rst:2795 +#: library/multiprocessing.rst:2820 msgid "Ensure that the arguments to the methods of proxies are picklable." msgstr "" -#: library/multiprocessing.rst:2797 +#: library/multiprocessing.rst:2822 msgid "Thread safety of proxies" msgstr "" -#: library/multiprocessing.rst:2799 +#: library/multiprocessing.rst:2824 msgid "" "Do not use a proxy object from more than one thread unless you protect it " "with a lock." msgstr "" -#: library/multiprocessing.rst:2802 +#: library/multiprocessing.rst:2827 msgid "" "(There is never a problem with different processes using the *same* proxy.)" msgstr "" -#: library/multiprocessing.rst:2804 +#: library/multiprocessing.rst:2829 msgid "Joining zombie processes" msgstr "" -#: library/multiprocessing.rst:2806 +#: library/multiprocessing.rst:2831 msgid "" -"On Unix when a process finishes but has not been joined it becomes a zombie. " -"There should never be very many because each time a new process starts (or :" -"func:`~multiprocessing.active_children` is called) all completed processes " -"which have not yet been joined will be joined. Also calling a finished " -"process's :meth:`Process.is_alive ` will " -"join the process. Even so it is probably good practice to explicitly join " -"all the processes that you start." +"On POSIX when a process finishes but has not been joined it becomes a " +"zombie. There should never be very many because each time a new process " +"starts (or :func:`~multiprocessing.active_children` is called) all completed " +"processes which have not yet been joined will be joined. Also calling a " +"finished process's :meth:`Process.is_alive ` will join the process. Even so it is probably good practice to " +"explicitly join all the processes that you start." msgstr "" -#: library/multiprocessing.rst:2814 +#: library/multiprocessing.rst:2839 msgid "Better to inherit than pickle/unpickle" msgstr "" -#: library/multiprocessing.rst:2816 +#: library/multiprocessing.rst:2841 msgid "" "When using the *spawn* or *forkserver* start methods many types from :mod:" "`multiprocessing` need to be picklable so that child processes can use " @@ -3064,11 +3105,11 @@ msgid "" "inherit it from an ancestor process." msgstr "" -#: library/multiprocessing.rst:2824 +#: library/multiprocessing.rst:2849 msgid "Avoid terminating processes" msgstr "" -#: library/multiprocessing.rst:2826 +#: library/multiprocessing.rst:2851 msgid "" "Using the :meth:`Process.terminate ` " "method to stop a process is liable to cause any shared resources (such as " @@ -3076,18 +3117,18 @@ msgid "" "become broken or unavailable to other processes." msgstr "" -#: library/multiprocessing.rst:2832 +#: library/multiprocessing.rst:2857 msgid "" "Therefore it is probably best to only consider using :meth:`Process." "terminate ` on processes which never use " "any shared resources." msgstr "" -#: library/multiprocessing.rst:2836 +#: library/multiprocessing.rst:2861 msgid "Joining processes that use queues" msgstr "" -#: library/multiprocessing.rst:2838 +#: library/multiprocessing.rst:2863 msgid "" "Bear in mind that a process that has put items in a queue will wait before " "terminating until all the buffered items are fed by the \"feeder\" thread to " @@ -3096,7 +3137,7 @@ msgid "" "queue to avoid this behaviour.)" msgstr "" -#: library/multiprocessing.rst:2844 +#: library/multiprocessing.rst:2869 msgid "" "This means that whenever you use a queue you need to make sure that all " "items which have been put on the queue will eventually be removed before the " @@ -3105,29 +3146,29 @@ msgid "" "processes will be joined automatically." msgstr "" -#: library/multiprocessing.rst:2850 +#: library/multiprocessing.rst:2875 msgid "An example which will deadlock is the following::" msgstr "" -#: library/multiprocessing.rst:2864 +#: library/multiprocessing.rst:2889 msgid "" "A fix here would be to swap the last two lines (or simply remove the ``p." "join()`` line)." msgstr "" -#: library/multiprocessing.rst:2867 +#: library/multiprocessing.rst:2892 msgid "Explicitly pass resources to child processes" msgstr "" -#: library/multiprocessing.rst:2869 +#: library/multiprocessing.rst:2894 msgid "" -"On Unix using the *fork* start method, a child process can make use of a " +"On POSIX using the *fork* start method, a child process can make use of a " "shared resource created in a parent process using a global resource. " "However, it is better to pass the object as an argument to the constructor " "for the child process." msgstr "" -#: library/multiprocessing.rst:2874 +#: library/multiprocessing.rst:2899 msgid "" "Apart from making the code (potentially) compatible with Windows and the " "other start methods this also ensures that as long as the child process is " @@ -3136,29 +3177,29 @@ msgid "" "collected in the parent process." msgstr "" -#: library/multiprocessing.rst:2881 +#: library/multiprocessing.rst:2906 msgid "So for instance ::" msgstr "" -#: library/multiprocessing.rst:2893 +#: library/multiprocessing.rst:2918 msgid "should be rewritten as ::" msgstr "" -#: library/multiprocessing.rst:2905 +#: library/multiprocessing.rst:2930 msgid "Beware of replacing :data:`sys.stdin` with a \"file like object\"" msgstr "" -#: library/multiprocessing.rst:2907 +#: library/multiprocessing.rst:2932 msgid ":mod:`multiprocessing` originally unconditionally called::" msgstr "" -#: library/multiprocessing.rst:2911 +#: library/multiprocessing.rst:2936 msgid "" "in the :meth:`multiprocessing.Process._bootstrap` method --- this resulted " "in issues with processes-in-processes. This has been changed to::" msgstr "" -#: library/multiprocessing.rst:2917 +#: library/multiprocessing.rst:2942 msgid "" "Which solves the fundamental issue of processes colliding with each other " "resulting in a bad file descriptor error, but introduces a potential danger " @@ -3168,33 +3209,33 @@ msgid "" "data being flushed to the object multiple times, resulting in corruption." msgstr "" -#: library/multiprocessing.rst:2924 +#: library/multiprocessing.rst:2949 msgid "" "If you write a file-like object and implement your own caching, you can make " "it fork-safe by storing the pid whenever you append to the cache, and " "discarding the cache when the pid changes. For example::" msgstr "" -#: library/multiprocessing.rst:2936 +#: library/multiprocessing.rst:2961 msgid "" "For more information, see :issue:`5155`, :issue:`5313` and :issue:`5331`" msgstr "" -#: library/multiprocessing.rst:2939 +#: library/multiprocessing.rst:2964 msgid "The *spawn* and *forkserver* start methods" msgstr "" -#: library/multiprocessing.rst:2941 +#: library/multiprocessing.rst:2966 msgid "" "There are a few extra restriction which don't apply to the *fork* start " "method." msgstr "" -#: library/multiprocessing.rst:2944 +#: library/multiprocessing.rst:2969 msgid "More picklability" msgstr "" -#: library/multiprocessing.rst:2946 +#: library/multiprocessing.rst:2971 msgid "" "Ensure that all arguments to :meth:`Process.__init__` are picklable. Also, " "if you subclass :class:`~multiprocessing.Process` then make sure that " @@ -3202,11 +3243,11 @@ msgid "" "Process.start>` method is called." msgstr "" -#: library/multiprocessing.rst:2951 +#: library/multiprocessing.rst:2976 msgid "Global variables" msgstr "" -#: library/multiprocessing.rst:2953 +#: library/multiprocessing.rst:2978 msgid "" "Bear in mind that if code run in a child process tries to access a global " "variable, then the value it sees (if any) may not be the same as the value " @@ -3214,66 +3255,66 @@ msgid "" "Process.start>` was called." msgstr "" -#: library/multiprocessing.rst:2958 +#: library/multiprocessing.rst:2983 msgid "" "However, global variables which are just module level constants cause no " "problems." msgstr "" -#: library/multiprocessing.rst:2963 +#: library/multiprocessing.rst:2988 msgid "Safe importing of main module" msgstr "" -#: library/multiprocessing.rst:2965 +#: library/multiprocessing.rst:2990 msgid "" "Make sure that the main module can be safely imported by a new Python " "interpreter without causing unintended side effects (such as starting a new " "process)." msgstr "" -#: library/multiprocessing.rst:2969 +#: library/multiprocessing.rst:2994 msgid "" "For example, using the *spawn* or *forkserver* start method running the " "following module would fail with a :exc:`RuntimeError`::" msgstr "" -#: library/multiprocessing.rst:2981 +#: library/multiprocessing.rst:3006 msgid "" "Instead one should protect the \"entry point\" of the program by using ``if " "__name__ == '__main__':`` as follows::" msgstr "" -#: library/multiprocessing.rst:2995 +#: library/multiprocessing.rst:3020 msgid "" "(The ``freeze_support()`` line can be omitted if the program will be run " "normally instead of frozen.)" msgstr "" -#: library/multiprocessing.rst:2998 +#: library/multiprocessing.rst:3023 msgid "" "This allows the newly spawned Python interpreter to safely import the module " "and then run the module's ``foo()`` function." msgstr "" -#: library/multiprocessing.rst:3001 +#: library/multiprocessing.rst:3026 msgid "" "Similar restrictions apply if a pool or manager is created in the main " "module." msgstr "" -#: library/multiprocessing.rst:3008 +#: library/multiprocessing.rst:3033 msgid "Examples" msgstr "" -#: library/multiprocessing.rst:3010 +#: library/multiprocessing.rst:3035 msgid "Demonstration of how to create and use customized managers and proxies:" msgstr "" -#: library/multiprocessing.rst:3016 +#: library/multiprocessing.rst:3041 msgid "Using :class:`~multiprocessing.pool.Pool`:" msgstr "" -#: library/multiprocessing.rst:3022 +#: library/multiprocessing.rst:3047 msgid "" "An example showing how to use queues to feed tasks to a collection of worker " "processes and collect the results:" diff --git a/library/nntplib.po b/library/nntplib.po index 50d0854d7..557ff69c0 100644 --- a/library/nntplib.po +++ b/library/nntplib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -28,7 +28,7 @@ msgstr "" msgid "The :mod:`nntplib` module is deprecated (see :pep:`594` for details)." msgstr "" -#: library/nntplib.rst:19 +#: library/nntplib.rst:36 msgid "" "This module defines the class :class:`NNTP` which implements the client side " "of the Network News Transfer Protocol. It can be used to implement a news " @@ -47,23 +47,23 @@ msgid "" "more information." msgstr "" -#: library/nntplib.rst:26 +#: library/nntplib.rst:43 msgid "" "Here are two small examples of how it can be used. To list some statistics " "about a newsgroup and print the subjects of the last 10 articles::" msgstr "" -#: library/nntplib.rst:50 +#: library/nntplib.rst:67 msgid "" "To post an article from a binary file (this assumes that the article has " "valid headers, and that you have right to post on the particular newsgroup)::" msgstr "" -#: library/nntplib.rst:60 +#: library/nntplib.rst:77 msgid "The module itself defines the following classes:" msgstr "" -#: library/nntplib.rst:65 +#: library/nntplib.rst:82 msgid "" "Return a new :class:`NNTP` object, representing a connection to the NNTP " "server running on host *host*, listening at port *port*. An optional " @@ -81,40 +81,40 @@ msgid "" "close the NNTP connection when done, e.g.:" msgstr "" -#: library/nntplib.rst:131 +#: library/nntplib.rst:148 msgid "" "Raises an :ref:`auditing event ` ``nntplib.connect`` with " "arguments ``self``, ``host``, ``port``." msgstr "" -#: library/nntplib.rst:133 +#: library/nntplib.rst:150 msgid "" "Raises an :ref:`auditing event ` ``nntplib.putline`` with " "arguments ``self``, ``line``." msgstr "" -#: library/nntplib.rst:124 +#: library/nntplib.rst:141 msgid "" "All commands will raise an :ref:`auditing event ` ``nntplib." "putline`` with arguments ``self`` and ``line``, where ``line`` is the bytes " "about to be sent to the remote host." msgstr "" -#: library/nntplib.rst:96 +#: library/nntplib.rst:113 msgid "*usenetrc* is now ``False`` by default." msgstr "" -#: library/nntplib.rst:99 +#: library/nntplib.rst:116 msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: library/nntplib.rst:135 +#: library/nntplib.rst:152 msgid "" "If the *timeout* parameter is set to be zero, it will raise a :class:" "`ValueError` to prevent the creation of a non-blocking socket." msgstr "" -#: library/nntplib.rst:108 +#: library/nntplib.rst:125 msgid "" "Return a new :class:`NNTP_SSL` object, representing an encrypted connection " "to the NNTP server running on host *host*, listening at port *port*. :class:" @@ -125,85 +125,85 @@ msgid "" "`NNTP`." msgstr "" -#: library/nntplib.rst:116 +#: library/nntplib.rst:133 msgid "" "Note that SSL-on-563 is discouraged per :rfc:`4642`, in favor of STARTTLS as " "described below. However, some servers only support the former." msgstr "" -#: library/nntplib.rst:130 +#: library/nntplib.rst:147 msgid "" "The class now supports hostname check with :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :data:`ssl.HAS_SNI`)." msgstr "" -#: library/nntplib.rst:141 +#: library/nntplib.rst:158 msgid "" "Derived from the standard exception :exc:`Exception`, this is the base class " "for all exceptions raised by the :mod:`nntplib` module. Instances of this " "class have the following attribute:" msgstr "" -#: library/nntplib.rst:147 +#: library/nntplib.rst:164 msgid "The response of the server if available, as a :class:`str` object." msgstr "" -#: library/nntplib.rst:152 +#: library/nntplib.rst:169 msgid "Exception raised when an unexpected reply is received from the server." msgstr "" -#: library/nntplib.rst:157 +#: library/nntplib.rst:174 msgid "" "Exception raised when a response code in the range 400--499 is received." msgstr "" -#: library/nntplib.rst:162 +#: library/nntplib.rst:179 msgid "" "Exception raised when a response code in the range 500--599 is received." msgstr "" -#: library/nntplib.rst:167 +#: library/nntplib.rst:184 msgid "" "Exception raised when a reply is received from the server that does not " "begin with a digit in the range 1--5." msgstr "" -#: library/nntplib.rst:173 +#: library/nntplib.rst:190 msgid "Exception raised when there is some error in the response data." msgstr "" -#: library/nntplib.rst:179 +#: library/nntplib.rst:196 msgid "NNTP Objects" msgstr "" -#: library/nntplib.rst:181 +#: library/nntplib.rst:198 msgid "" "When connected, :class:`NNTP` and :class:`NNTP_SSL` objects support the " "following methods and attributes." msgstr "" -#: library/nntplib.rst:185 +#: library/nntplib.rst:202 msgid "Attributes" msgstr "" -#: library/nntplib.rst:189 +#: library/nntplib.rst:206 msgid "" "An integer representing the version of the NNTP protocol supported by the " "server. In practice, this should be ``2`` for servers advertising :rfc:" "`3977` compliance and ``1`` for others." msgstr "" -#: library/nntplib.rst:197 +#: library/nntplib.rst:214 msgid "" "A string describing the software name and version of the NNTP server, or :" "const:`None` if not advertised by the server." msgstr "" -#: library/nntplib.rst:203 +#: library/nntplib.rst:220 msgid "Methods" msgstr "" -#: library/nntplib.rst:205 +#: library/nntplib.rst:222 msgid "" "The *response* that is returned as the first item in the return tuple of " "almost all methods is the server's response: a string beginning with a three-" @@ -211,7 +211,7 @@ msgid "" "one of the above exceptions." msgstr "" -#: library/nntplib.rst:210 +#: library/nntplib.rst:227 msgid "" "Many of the following methods take an optional keyword-only argument *file*. " "When the *file* argument is supplied, it must be either a :term:`file " @@ -221,26 +221,26 @@ msgid "" "of lines, tuples or objects that the method normally returns will be empty." msgstr "" -#: library/nntplib.rst:217 +#: library/nntplib.rst:234 msgid "" "Many of the following methods have been reworked and fixed, which makes them " "incompatible with their 3.1 counterparts." msgstr "" -#: library/nntplib.rst:224 +#: library/nntplib.rst:241 msgid "" "Send a ``QUIT`` command and close the connection. Once this method has been " "called, no other methods of the NNTP object should be called." msgstr "" -#: library/nntplib.rst:230 +#: library/nntplib.rst:247 msgid "" "Return the welcome message sent by the server in reply to the initial " "connection. (This message sometimes contains disclaimers or help " "information that may be relevant to the user.)" msgstr "" -#: library/nntplib.rst:237 +#: library/nntplib.rst:254 msgid "" "Return the :rfc:`3977` capabilities advertised by the server, as a :class:" "`dict` instance mapping capability names to (possibly empty) lists of " @@ -248,14 +248,14 @@ msgid "" "command, an empty dictionary is returned instead." msgstr "" -#: library/nntplib.rst:251 +#: library/nntplib.rst:268 msgid "" "Send ``AUTHINFO`` commands with the user name and password. If *user* and " "*password* are ``None`` and *usenetrc* is true, credentials from ``~/." "netrc`` will be used if possible." msgstr "" -#: library/nntplib.rst:255 +#: library/nntplib.rst:272 msgid "" "Unless intentionally delayed, login is normally performed during the :class:" "`NNTP` object initialization and separately calling this function is " @@ -263,14 +263,14 @@ msgid "" "or *password* when creating the object, and must set *usenetrc* to False." msgstr "" -#: library/nntplib.rst:266 +#: library/nntplib.rst:283 msgid "" "Send a ``STARTTLS`` command. This will enable encryption on the NNTP " "connection. The *context* argument is optional and should be a :class:`ssl." "SSLContext` object. Please read :ref:`ssl-security` for best practices." msgstr "" -#: library/nntplib.rst:271 +#: library/nntplib.rst:288 msgid "" "Note that this may not be done after authentication information has been " "transmitted, and authentication occurs by default if possible during a :" @@ -278,13 +278,13 @@ msgid "" "on suppressing this behavior." msgstr "" -#: library/nntplib.rst:278 +#: library/nntplib.rst:295 msgid "" "The method now supports hostname check with :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :data:`ssl.HAS_SNI`)." msgstr "" -#: library/nntplib.rst:285 +#: library/nntplib.rst:302 msgid "" "Send a ``NEWGROUPS`` command. The *date* argument should be a :class:" "`datetime.date` or :class:`datetime.datetime` object. Return a pair " @@ -293,18 +293,18 @@ msgid "" "will be empty." msgstr "" -#: library/nntplib.rst:301 +#: library/nntplib.rst:318 msgid "" "Send a ``NEWNEWS`` command. Here, *group* is a group name or ``'*'``, and " "*date* has the same meaning as for :meth:`newgroups`. Return a pair " "``(response, articles)`` where *articles* is a list of message ids." msgstr "" -#: library/nntplib.rst:305 +#: library/nntplib.rst:322 msgid "This command is frequently disabled by NNTP server administrators." msgstr "" -#: library/nntplib.rst:310 +#: library/nntplib.rst:327 msgid "" "Send a ``LIST`` or ``LIST ACTIVE`` command. Return a pair ``(response, " "list)`` where *list* is a list of tuples representing all the groups " @@ -314,48 +314,48 @@ msgid "" "article numbers, and *flag* usually takes one of these values:" msgstr "" -#: library/nntplib.rst:318 +#: library/nntplib.rst:335 msgid "``y``: Local postings and articles from peers are allowed." msgstr "" -#: library/nntplib.rst:319 +#: library/nntplib.rst:336 msgid "``m``: The group is moderated and all postings must be approved." msgstr "" -#: library/nntplib.rst:320 +#: library/nntplib.rst:337 msgid "``n``: No local postings are allowed, only articles from peers." msgstr "" -#: library/nntplib.rst:321 +#: library/nntplib.rst:338 msgid "``j``: Articles from peers are filed in the junk group instead." msgstr "" -#: library/nntplib.rst:322 +#: library/nntplib.rst:339 msgid "``x``: No local postings, and articles from peers are ignored." msgstr "" -#: library/nntplib.rst:323 +#: library/nntplib.rst:340 msgid "``=foo.bar``: Articles are filed in the ``foo.bar`` group instead." msgstr "" -#: library/nntplib.rst:325 +#: library/nntplib.rst:342 msgid "" "If *flag* has another value, then the status of the newsgroup should be " "considered unknown." msgstr "" -#: library/nntplib.rst:328 +#: library/nntplib.rst:345 msgid "" "This command can return very large results, especially if *group_pattern* is " "not specified. It is best to cache the results offline unless you really " "need to refresh them." msgstr "" -#: library/nntplib.rst:332 +#: library/nntplib.rst:349 msgid "*group_pattern* was added." msgstr "" -#: library/nntplib.rst:338 +#: library/nntplib.rst:355 msgid "" "Send a ``LIST NEWSGROUPS`` command, where *grouppattern* is a wildmat string " "as specified in :rfc:`3977` (it's essentially the same as DOS or UNIX shell " @@ -363,20 +363,20 @@ msgid "" "*descriptions* is a dictionary mapping group names to textual descriptions." msgstr "" -#: library/nntplib.rst:352 +#: library/nntplib.rst:369 msgid "" "Get a description for a single group *group*. If more than one group " "matches (if 'group' is a real wildmat string), return the first match. If " "no group matches, return an empty string." msgstr "" -#: library/nntplib.rst:356 +#: library/nntplib.rst:373 msgid "" "This elides the response code from the server. If the response code is " "needed, use :meth:`descriptions`." msgstr "" -#: library/nntplib.rst:362 +#: library/nntplib.rst:379 msgid "" "Send a ``GROUP`` command, where *name* is the group name. The group is " "selected as the current group, if it exists. Return a tuple ``(response, " @@ -385,7 +385,7 @@ msgid "" "*last* is the last article number in the group, and *name* is the group name." msgstr "" -#: library/nntplib.rst:372 +#: library/nntplib.rst:389 msgid "" "Send an ``OVER`` command, or an ``XOVER`` command on legacy servers. " "*message_spec* can be either a string representing a message id, or a " @@ -395,7 +395,7 @@ msgid "" "`None` to select the current article in the current group." msgstr "" -#: library/nntplib.rst:379 +#: library/nntplib.rst:396 msgid "" "Return a pair ``(response, overviews)``. *overviews* is a list of " "``(article_number, overview)`` tuples, one for each article selected by " @@ -406,40 +406,40 @@ msgid "" "following items are guaranteed to be present by the NNTP specification:" msgstr "" -#: library/nntplib.rst:387 +#: library/nntplib.rst:404 msgid "" "the ``subject``, ``from``, ``date``, ``message-id`` and ``references`` " "headers" msgstr "" -#: library/nntplib.rst:389 +#: library/nntplib.rst:406 msgid "" "the ``:bytes`` metadata: the number of bytes in the entire raw article " "(including headers and body)" msgstr "" -#: library/nntplib.rst:391 +#: library/nntplib.rst:408 msgid "the ``:lines`` metadata: the number of lines in the article body" msgstr "" -#: library/nntplib.rst:393 +#: library/nntplib.rst:410 msgid "" "The value of each item is either a string, or :const:`None` if not present." msgstr "" -#: library/nntplib.rst:395 +#: library/nntplib.rst:412 msgid "" "It is advisable to use the :func:`decode_header` function on header values " "when they may contain non-ASCII characters::" msgstr "" -#: library/nntplib.rst:415 +#: library/nntplib.rst:432 msgid "" "Send a ``HELP`` command. Return a pair ``(response, list)`` where *list* is " "a list of help strings." msgstr "" -#: library/nntplib.rst:421 +#: library/nntplib.rst:438 msgid "" "Send a ``STAT`` command, where *message_spec* is either a message id " "(enclosed in ``'<'`` and ``'>'``) or an article number in the current group. " @@ -448,15 +448,15 @@ msgid "" "where *number* is the article number and *id* is the message id." msgstr "" -#: library/nntplib.rst:435 +#: library/nntplib.rst:452 msgid "Send a ``NEXT`` command. Return as for :meth:`.stat`." msgstr "" -#: library/nntplib.rst:440 +#: library/nntplib.rst:457 msgid "Send a ``LAST`` command. Return as for :meth:`.stat`." msgstr "" -#: library/nntplib.rst:445 +#: library/nntplib.rst:462 msgid "" "Send an ``ARTICLE`` command, where *message_spec* has the same meaning as " "for :meth:`.stat`. Return a tuple ``(response, info)`` where *info* is a :" @@ -467,21 +467,21 @@ msgid "" "comprising the raw message including headers and body." msgstr "" -#: library/nntplib.rst:470 +#: library/nntplib.rst:487 msgid "" "Same as :meth:`article()`, but sends a ``HEAD`` command. The *lines* " "returned (or written to *file*) will only contain the message headers, not " "the body." msgstr "" -#: library/nntplib.rst:477 +#: library/nntplib.rst:494 msgid "" "Same as :meth:`article()`, but sends a ``BODY`` command. The *lines* " "returned (or written to *file*) will only contain the message body, not the " "headers." msgstr "" -#: library/nntplib.rst:484 +#: library/nntplib.rst:501 msgid "" "Post an article using the ``POST`` command. The *data* argument is either " "a :term:`file object` opened for binary reading, or any iterable of bytes " @@ -491,30 +491,30 @@ msgid "" "appends the termination line." msgstr "" -#: library/nntplib.rst:491 +#: library/nntplib.rst:508 msgid "" "If the method succeeds, the server's response is returned. If the server " "refuses posting, a :class:`NNTPReplyError` is raised." msgstr "" -#: library/nntplib.rst:497 +#: library/nntplib.rst:514 msgid "" "Send an ``IHAVE`` command. *message_id* is the id of the message to send to " "the server (enclosed in ``'<'`` and ``'>'``). The *data* parameter and the " "return value are the same as for :meth:`post()`." msgstr "" -#: library/nntplib.rst:504 +#: library/nntplib.rst:521 msgid "" "Return a pair ``(response, date)``. *date* is a :class:`~datetime.datetime` " "object containing the current date and time of the server." msgstr "" -#: library/nntplib.rst:510 +#: library/nntplib.rst:527 msgid "Send a ``SLAVE`` command. Return the server's *response*." msgstr "" -#: library/nntplib.rst:515 +#: library/nntplib.rst:532 msgid "" "Set the instance's debugging level. This controls the amount of debugging " "output printed. The default, ``0``, produces no debugging output. A value " @@ -524,13 +524,13 @@ msgid "" "the connection (including message text)." msgstr "" -#: library/nntplib.rst:523 +#: library/nntplib.rst:540 msgid "" "The following are optional NNTP extensions defined in :rfc:`2980`. Some of " "them have been superseded by newer commands in :rfc:`3977`." msgstr "" -#: library/nntplib.rst:529 +#: library/nntplib.rst:546 msgid "" "Send an ``XHDR`` command. The *hdr* argument is a header keyword, e.g. " "``'subject'``. The *str* argument should have the form ``'first-last'`` " @@ -545,7 +545,7 @@ msgid "" "*file* is supplied, then the returned *list* is an empty list." msgstr "" -#: library/nntplib.rst:544 +#: library/nntplib.rst:561 msgid "" "Send an ``XOVER`` command. *start* and *end* are article numbers delimiting " "the range of articles to select. The return value is the same of for :meth:" @@ -553,15 +553,15 @@ msgid "" "automatically use the newer ``OVER`` command if available." msgstr "" -#: library/nntplib.rst:552 +#: library/nntplib.rst:569 msgid "Utility functions" msgstr "" -#: library/nntplib.rst:554 +#: library/nntplib.rst:571 msgid "The module also defines the following utility function:" msgstr "" -#: library/nntplib.rst:559 +#: library/nntplib.rst:576 msgid "" "Decode a header value, un-escaping any escaped non-ASCII characters. " "*header_str* must be a :class:`str` object. The unescaped value is " diff --git a/library/optparse.po b/library/optparse.po index 828d30a9f..88b693376 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -2439,8 +2439,8 @@ msgstr "" #: library/optparse.rst:2049 msgid "" "If the ``attr`` attribute of ``values`` doesn't exist or is ``None``, then " -"ensure_value() first sets it to ``value``, and then returns 'value. This is " -"very handy for actions like ``\"extend\"``, ``\"append\"``, and " +"ensure_value() first sets it to ``value``, and then returns ``value``. This " +"is very handy for actions like ``\"extend\"``, ``\"append\"``, and " "``\"count\"``, all of which accumulate data in a variable and expect that " "variable to be of a certain type (a list for the first two, an integer for " "the latter). Using :meth:`ensure_value` means that scripts using your " diff --git a/library/os.path.po b/library/os.path.po index 685945484..9d27c3f3d 100644 --- a/library/os.path.po +++ b/library/os.path.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -89,9 +89,9 @@ msgstr "" #: library/os.path.rst:76 library/os.path.rst:125 library/os.path.rst:151 #: library/os.path.rst:197 library/os.path.rst:226 library/os.path.rst:245 -#: library/os.path.rst:265 library/os.path.rst:294 library/os.path.rst:345 -#: library/os.path.rst:390 library/os.path.rst:421 library/os.path.rst:453 -#: library/os.path.rst:509 +#: library/os.path.rst:265 library/os.path.rst:303 library/os.path.rst:372 +#: library/os.path.rst:417 library/os.path.rst:448 library/os.path.rst:480 +#: library/os.path.rst:569 msgid "Accepts a :term:`path-like object`." msgstr "" @@ -112,7 +112,7 @@ msgid "" "empty. Unlike :func:`commonprefix`, this returns a valid path." msgstr "" -#: library/os.path.rst:388 library/os.path.rst:416 library/os.path.rst:432 +#: library/os.path.rst:415 library/os.path.rst:443 library/os.path.rst:459 msgid ":ref:`Availability `: Unix, Windows." msgstr "" @@ -262,12 +262,19 @@ msgstr "" #: library/os.path.rst:271 msgid "" +"Return ``True`` if *path* refers to an :func:`existing ` directory " +"entry that is a junction. Always return ``False`` if junctions are not " +"supported on the current platform." +msgstr "" + +#: library/os.path.rst:280 +msgid "" "Return ``True`` if *path* refers to an :func:`existing ` directory " "entry that is a symbolic link. Always ``False`` if symbolic links are not " "supported by the Python runtime." msgstr "" -#: library/os.path.rst:281 +#: library/os.path.rst:290 msgid "" "Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a " "file system where a different file system has been mounted. On POSIX, the " @@ -280,11 +287,32 @@ msgid "" "called to see if it is different from the input path." msgstr "" -#: library/os.path.rst:291 +#: library/os.path.rst:300 msgid "Support for detecting non-root mount points on Windows." msgstr "" -#: library/os.path.rst:300 +#: library/os.path.rst:309 +msgid "" +"Return ``True`` if pathname *path* is located on a Windows Dev Drive. A Dev " +"Drive is optimized for developer scenarios, and offers faster performance " +"for reading and writing files. It is recommended for use for source code, " +"temporary build directories, package caches, and other IO-intensive " +"operations." +msgstr "" + +#: library/os.path.rst:315 +msgid "" +"May raise an error for an invalid path, for example, one without a " +"recognizable drive, but returns ``False`` on platforms that do not support " +"Dev Drives. See `the Windows documentation `_ for information on enabling and creating Dev Drives." +msgstr "" + +#: library/os.path.rst:320 +msgid ":ref:`Availability `: Windows." +msgstr "" + +#: library/os.path.rst:327 msgid "" "Join one or more path segments intelligently. The return value is the " "concatenation of *path* and all members of *\\*paths*, with exactly one " @@ -295,7 +323,7 @@ msgid "" "and joining continues from the absolute path segment." msgstr "" -#: library/os.path.rst:308 +#: library/os.path.rst:335 msgid "" "On Windows, the drive is not reset when a rooted path segment (e.g., " "``r'\\foo'``) is encountered. If a segment is on a different drive or is an " @@ -305,18 +333,18 @@ msgid "" "on drive :file:`C:` (:file:`c:foo`), not :file:`c:\\\\foo`." msgstr "" -#: library/os.path.rst:315 +#: library/os.path.rst:342 msgid "Accepts a :term:`path-like object` for *path* and *paths*." msgstr "" -#: library/os.path.rst:321 +#: library/os.path.rst:348 msgid "" "Normalize the case of a pathname. On Windows, convert all characters in the " "pathname to lowercase, and also convert forward slashes to backward slashes. " "On other operating systems, return the path unchanged." msgstr "" -#: library/os.path.rst:331 +#: library/os.path.rst:358 msgid "" "Normalize a pathname by collapsing redundant separators and up-level " "references so that ``A//B``, ``A/B/``, ``A/./B`` and ``A/foo/../B`` all " @@ -325,7 +353,7 @@ msgid "" "backward slashes. To normalize case, use :func:`normcase`." msgstr "" -#: library/os.path.rst:338 +#: library/os.path.rst:365 msgid "" "On POSIX systems, in accordance with `IEEE Std 1003.1 2013 Edition; 4.13 " "Pathname Resolution `_.) For example::" msgstr "" -#: library/os.path.rst:484 +#: library/os.path.rst:530 +msgid "" +"On Windows, *drive* may be empty, a drive-letter name, a UNC share, or a " +"device name. The *root* may be empty, a forward slash, or a backward slash. " +"For example::" +msgstr "" + +#: library/os.path.rst:544 msgid "" "Split the pathname *path* into a pair ``(root, ext)`` such that ``root + " "ext == path``, and the extension, *ext*, is empty or begins with a period " "and contains at most one period." msgstr "" -#: library/os.path.rst:488 +#: library/os.path.rst:548 msgid "If the path contains no extension, *ext* will be ``''``::" msgstr "" -#: library/os.path.rst:493 +#: library/os.path.rst:553 msgid "" "If the path contains an extension, then *ext* will be set to this extension, " "including the leading period. Note that previous periods will be ignored::" msgstr "" -#: library/os.path.rst:501 +#: library/os.path.rst:561 msgid "" "Leading periods of the last component of the path are considered to be part " "of the root::" msgstr "" -#: library/os.path.rst:515 +#: library/os.path.rst:575 msgid "" "``True`` if arbitrary Unicode strings can be used as file names (within " "limitations imposed by the file system)." diff --git a/library/os.po b/library/os.po index 18449e036..70c003c74 100644 --- a/library/os.po +++ b/library/os.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -283,18 +283,18 @@ msgid "" msgstr "" #: library/os.rst:358 library/os.rst:389 library/os.rst:434 library/os.rst:480 -#: library/os.rst:501 library/os.rst:534 library/os.rst:575 library/os.rst:591 -#: library/os.rst:612 library/os.rst:638 library/os.rst:654 library/os.rst:670 -#: library/os.rst:686 library/os.rst:1235 library/os.rst:1498 -#: library/os.rst:1527 library/os.rst:1995 library/os.rst:2252 -#: library/os.rst:3804 library/os.rst:3818 library/os.rst:3832 -#: library/os.rst:3846 library/os.rst:3862 library/os.rst:3876 -#: library/os.rst:3893 library/os.rst:3908 library/os.rst:3936 -#: library/os.rst:3993 library/os.rst:4021 library/os.rst:4197 -#: library/os.rst:4468 library/os.rst:4540 library/os.rst:4572 -#: library/os.rst:4595 library/os.rst:4617 library/os.rst:4640 -#: library/os.rst:4702 library/os.rst:4721 library/os.rst:4739 -#: library/os.rst:4757 +#: library/os.rst:512 library/os.rst:545 library/os.rst:586 library/os.rst:602 +#: library/os.rst:661 library/os.rst:687 library/os.rst:703 library/os.rst:719 +#: library/os.rst:735 library/os.rst:1345 library/os.rst:1608 +#: library/os.rst:1637 library/os.rst:2110 library/os.rst:2430 +#: library/os.rst:4036 library/os.rst:4050 library/os.rst:4064 +#: library/os.rst:4078 library/os.rst:4094 library/os.rst:4108 +#: library/os.rst:4125 library/os.rst:4140 library/os.rst:4168 +#: library/os.rst:4225 library/os.rst:4262 library/os.rst:4438 +#: library/os.rst:4709 library/os.rst:4781 library/os.rst:4813 +#: library/os.rst:4836 library/os.rst:4858 library/os.rst:4881 +#: library/os.rst:4943 library/os.rst:4962 library/os.rst:4980 +#: library/os.rst:4998 msgid ":ref:`Availability `: Unix, not Emscripten, not WASI." msgstr "" @@ -449,8 +449,9 @@ msgid "" "like to use a different encoding." msgstr "" -#: library/os.rst:980 library/os.rst:1247 library/os.rst:2352 -#: library/os.rst:3181 library/os.rst:4285 library/os.rst:4413 +#: library/os.rst:1086 library/os.rst:1110 library/os.rst:1649 +#: library/os.rst:2530 library/os.rst:3412 library/os.rst:4526 +#: library/os.rst:4654 msgid ":ref:`Availability `: Unix, Windows." msgstr "" @@ -469,12 +470,12 @@ msgid "" "``True``." msgstr "" -#: library/os.rst:376 library/os.rst:738 library/os.rst:913 library/os.rst:947 -#: library/os.rst:1004 library/os.rst:1040 library/os.rst:1301 -#: library/os.rst:1383 library/os.rst:1593 library/os.rst:1655 -#: library/os.rst:2009 library/os.rst:2063 library/os.rst:2330 -#: library/os.rst:3167 library/os.rst:4903 library/os.rst:4933 -#: library/os.rst:4952 +#: library/os.rst:376 library/os.rst:787 library/os.rst:1019 +#: library/os.rst:1053 library/os.rst:1138 library/os.rst:1396 +#: library/os.rst:1424 library/os.rst:1708 library/os.rst:1770 +#: library/os.rst:2124 library/os.rst:2178 library/os.rst:2508 +#: library/os.rst:3398 library/os.rst:5144 library/os.rst:5174 +#: library/os.rst:5193 msgid ":ref:`Availability `: Unix." msgstr "" @@ -500,7 +501,7 @@ msgstr "" msgid "Return the real group id of the current process." msgstr "" -#: library/os.rst:451 library/os.rst:709 +#: library/os.rst:451 library/os.rst:758 msgid "" "The function is a stub on Emscripten and WASI, see :ref:`wasm-availability` " "for more information." @@ -545,8 +546,8 @@ msgid "" "getpwuid(os.getuid())[0]`` to get the login name of the current real user id." msgstr "" -#: library/os.rst:462 library/os.rst:3977 library/os.rst:4390 -#: library/os.rst:4675 +#: library/os.rst:462 library/os.rst:4209 library/os.rst:4631 +#: library/os.rst:4916 msgid "" ":ref:`Availability `: Unix, Windows, not Emscripten, not WASI." msgstr "" @@ -587,42 +588,46 @@ msgid "" "user ID of the calling process." msgstr "" -#: library/os.rst:489 +#: library/os.rst:501 msgid "" "Parameters for the :func:`getpriority` and :func:`setpriority` functions." msgstr "" -#: library/os.rst:498 +#: library/os.rst:503 +msgid ":ref:`Availability `: macOS" +msgstr "" + +#: library/os.rst:509 msgid "" "Return a tuple (ruid, euid, suid) denoting the current process's real, " "effective, and saved user ids." msgstr "" -#: library/os.rst:508 +#: library/os.rst:519 msgid "" "Return a tuple (rgid, egid, sgid) denoting the current process's real, " "effective, and saved group ids." msgstr "" -#: library/os.rst:520 +#: library/os.rst:531 msgid "Return the current process's real user id." msgstr "" -#: library/os.rst:530 +#: library/os.rst:541 msgid "" "Call the system initgroups() to initialize the group access list with all of " "the groups of which the specified username is a member, plus the specified " "group id." msgstr "" -#: library/os.rst:543 +#: library/os.rst:554 msgid "" "Set the environment variable named *key* to the string *value*. Such " "changes to the environment affect subprocesses started with :func:`os." "system`, :func:`popen` or :func:`fork` and :func:`execv`." msgstr "" -#: library/os.rst:547 +#: library/os.rst:558 msgid "" "Assignments to items in :data:`os.environ` are automatically translated into " "corresponding calls to :func:`putenv`; however, calls to :func:`putenv` " @@ -632,35 +637,35 @@ msgid "" "in their implementations." msgstr "" -#: library/os.rst:555 +#: library/os.rst:566 msgid "" "On some platforms, including FreeBSD and macOS, setting ``environ`` may " "cause memory leaks. Refer to the system documentation for :c:func:`!putenv`." msgstr "" -#: library/os.rst:558 +#: library/os.rst:569 msgid "" "Raises an :ref:`auditing event ` ``os.putenv`` with arguments " "``key``, ``value``." msgstr "" -#: library/os.rst:560 +#: library/os.rst:571 msgid "The function is now always available." msgstr "" -#: library/os.rst:566 +#: library/os.rst:577 msgid "Set the current process's effective group id." msgstr "" -#: library/os.rst:573 +#: library/os.rst:584 msgid "Set the current process's effective user id." msgstr "" -#: library/os.rst:580 +#: library/os.rst:591 msgid "Set the current process' group id." msgstr "" -#: library/os.rst:587 +#: library/os.rst:598 msgid "" "Set the list of supplemental group ids associated with the current process " "to *groups*. *groups* must be a sequence, and each element must be an " @@ -668,7 +673,7 @@ msgid "" "the superuser." msgstr "" -#: library/os.rst:593 +#: library/os.rst:604 msgid "" "On macOS, the length of *groups* may not exceed the system-defined maximum " "number of effective group ids, typically 16. See the documentation for :func:" @@ -676,21 +681,67 @@ msgid "" "calling setgroups()." msgstr "" -#: library/os.rst:600 +#: library/os.rst:611 +msgid "" +"Reassociate the current thread with a Linux namespace. See the :manpage:" +"`setns(2)` and :manpage:`namespaces(7)` man pages for more details." +msgstr "" + +#: library/os.rst:615 +msgid "" +"If *fd* refers to a :file:`/proc/{pid}/ns/` link, ``setns()`` reassociates " +"the calling thread with the namespace associated with that link, and " +"*nstype* may be set to one of the :ref:`CLONE_NEW* constants ` to impose constraints on the operation (``0`` means no " +"constraints)." +msgstr "" + +#: library/os.rst:622 +msgid "" +"Since Linux 5.8, *fd* may refer to a PID file descriptor obtained from :func:" +"`~os.pidfd_open`. In this case, ``setns()`` reassociates the calling thread " +"into one or more of the same namespaces as the thread referred to by *fd*. " +"This is subject to any constraints imposed by *nstype*, which is a bit mask " +"combining one or more of the :ref:`CLONE_NEW* constants `, e.g. ``setns(fd, os.CLONE_NEWUTS | os.CLONE_NEWPID)``. The caller's " +"memberships in unspecified namespaces are left unchanged." +msgstr "" + +#: library/os.rst:631 +msgid "" +"*fd* can be any object with a :meth:`~io.IOBase.fileno` method, or a raw " +"file descriptor." +msgstr "" + +#: library/os.rst:633 +msgid "" +"This example reassociates the thread with the ``init`` process's network " +"namespace::" +msgstr "" + +#: library/os.rst:639 +msgid ":ref:`Availability `: Linux >= 3.0 with glibc >= 2.14." +msgstr "" + +#: library/os.rst:645 +msgid "The :func:`~os.unshare` function." +msgstr "" + +#: library/os.rst:649 msgid "" "Call the system call :c:func:`!setpgrp` or ``setpgrp(0, 0)`` depending on " "which version is implemented (if any). See the Unix manual for the " "semantics." msgstr "" -#: library/os.rst:608 +#: library/os.rst:657 msgid "" "Call the system call :c:func:`!setpgid` to set the process group id of the " "process with id *pid* to the process group with id *pgrp*. See the Unix " "manual for the semantics." msgstr "" -#: library/os.rst:619 +#: library/os.rst:668 msgid "" "Set program scheduling priority. The value *which* is one of :const:" "`PRIO_PROCESS`, :const:`PRIO_PGRP`, or :const:`PRIO_USER`, and *who* is " @@ -703,109 +754,109 @@ msgid "" "scheduling." msgstr "" -#: library/os.rst:636 +#: library/os.rst:685 msgid "Set the current process's real and effective group ids." msgstr "" -#: library/os.rst:643 +#: library/os.rst:692 msgid "Set the current process's real, effective, and saved group ids." msgstr "" -#: library/os.rst:652 +#: library/os.rst:701 msgid "Set the current process's real, effective, and saved user ids." msgstr "" -#: library/os.rst:661 +#: library/os.rst:710 msgid "Set the current process's real and effective user ids." msgstr "" -#: library/os.rst:668 +#: library/os.rst:717 msgid "" "Call the system call :c:func:`!getsid`. See the Unix manual for the " "semantics." msgstr "" -#: library/os.rst:675 +#: library/os.rst:724 msgid "" "Call the system call :c:func:`!setsid`. See the Unix manual for the " "semantics." msgstr "" -#: library/os.rst:684 +#: library/os.rst:733 msgid "Set the current process's user id." msgstr "" -#: library/os.rst:692 +#: library/os.rst:741 msgid "" "Return the error message corresponding to the error code in *code*. On " "platforms where :c:func:`!strerror` returns ``NULL`` when given an unknown " "error number, :exc:`ValueError` is raised." msgstr "" -#: library/os.rst:699 +#: library/os.rst:748 msgid "" "``True`` if the native OS type of the environment is bytes (eg. ``False`` on " "Windows)." msgstr "" -#: library/os.rst:707 +#: library/os.rst:756 msgid "Set the current numeric umask and return the previous umask." msgstr "" -#: library/os.rst:719 +#: library/os.rst:768 msgid "" "Returns information identifying the current operating system. The return " "value is an object with five attributes:" msgstr "" -#: library/os.rst:722 +#: library/os.rst:771 msgid ":attr:`sysname` - operating system name" msgstr "" -#: library/os.rst:723 +#: library/os.rst:772 msgid ":attr:`nodename` - name of machine on network (implementation-defined)" msgstr "" -#: library/os.rst:724 +#: library/os.rst:773 msgid ":attr:`release` - operating system release" msgstr "" -#: library/os.rst:725 +#: library/os.rst:774 msgid ":attr:`version` - operating system version" msgstr "" -#: library/os.rst:726 +#: library/os.rst:775 msgid ":attr:`machine` - hardware identifier" msgstr "" -#: library/os.rst:728 +#: library/os.rst:777 msgid "" "For backwards compatibility, this object is also iterable, behaving like a " "five-tuple containing :attr:`sysname`, :attr:`nodename`, :attr:`release`, :" "attr:`version`, and :attr:`machine` in that order." msgstr "" -#: library/os.rst:733 +#: library/os.rst:782 msgid "" "Some systems truncate :attr:`nodename` to 8 characters or to the leading " "component; a better way to get the hostname is :func:`socket.gethostname` " "or even ``socket.gethostbyaddr(socket.gethostname())``." msgstr "" -#: library/os.rst:4415 +#: library/os.rst:4656 msgid "" "Return type changed from a tuple to a tuple-like object with named " "attributes." msgstr "" -#: library/os.rst:749 +#: library/os.rst:798 msgid "" "Unset (delete) the environment variable named *key*. Such changes to the " "environment affect subprocesses started with :func:`os.system`, :func:" "`popen` or :func:`fork` and :func:`execv`." msgstr "" -#: library/os.rst:753 +#: library/os.rst:802 msgid "" "Deletion of items in :data:`os.environ` is automatically translated into a " "corresponding call to :func:`unsetenv`; however, calls to :func:`unsetenv` " @@ -813,27 +864,53 @@ msgid "" "items of :data:`os.environ`." msgstr "" -#: library/os.rst:758 +#: library/os.rst:807 msgid "" "Raises an :ref:`auditing event ` ``os.unsetenv`` with argument " "``key``." msgstr "" -#: library/os.rst:760 +#: library/os.rst:809 msgid "The function is now always available and is also available on Windows." msgstr "" -#: library/os.rst:767 +#: library/os.rst:815 +msgid "" +"Disassociate parts of the process execution context, and move them into a " +"newly created namespace. See the :manpage:`unshare(2)` man page for more " +"details. The *flags* argument is a bit mask, combining zero or more of the :" +"ref:`CLONE_* constants `, that specifies which parts " +"of the execution context should be unshared from their existing associations " +"and moved to a new namespace. If the *flags* argument is ``0``, no changes " +"are made to the calling process's execution context." +msgstr "" + +#: library/os.rst:826 +msgid ":ref:`Availability `: Linux >= 2.6.16." +msgstr "" + +#: library/os.rst:832 +msgid "The :func:`~os.setns` function." +msgstr "" + +#: library/os.rst:836 +msgid "" +"Flags to the :func:`unshare` function, if the implementation supports them. " +"See :manpage:`unshare(2)` in the Linux manual for their exact effect and " +"availability." +msgstr "" + +#: library/os.rst:859 msgid "File Object Creation" msgstr "" -#: library/os.rst:769 +#: library/os.rst:861 msgid "" "These functions create new :term:`file objects `. (See also :" "func:`~os.open` for opening file descriptors.)" msgstr "" -#: library/os.rst:775 +#: library/os.rst:867 msgid "" "Return an open file object connected to the file descriptor *fd*. This is " "an alias of the :func:`open` built-in function and accepts the same " @@ -841,16 +918,16 @@ msgid "" "must always be an integer." msgstr "" -#: library/os.rst:784 +#: library/os.rst:876 msgid "File Descriptor Operations" msgstr "" -#: library/os.rst:786 +#: library/os.rst:878 msgid "" "These functions operate on I/O streams referenced using file descriptors." msgstr "" -#: library/os.rst:788 +#: library/os.rst:880 msgid "" "File descriptors are small integers corresponding to a file that has been " "opened by the current process. For example, standard input is usually file " @@ -860,7 +937,7 @@ msgid "" "pipes are also referenced by file descriptors." msgstr "" -#: library/os.rst:795 +#: library/os.rst:887 msgid "" "The :meth:`~io.IOBase.fileno` method can be used to obtain the file " "descriptor associated with a :term:`file object` when required. Note that " @@ -868,11 +945,11 @@ msgid "" "ignoring aspects such as internal buffering of data." msgstr "" -#: library/os.rst:803 +#: library/os.rst:895 msgid "Close file descriptor *fd*." msgstr "" -#: library/os.rst:807 +#: library/os.rst:899 msgid "" "This function is intended for low-level I/O and must be applied to a file " "descriptor as returned by :func:`os.open` or :func:`pipe`. To close a " @@ -880,77 +957,98 @@ msgid "" "`popen` or :func:`fdopen`, use its :meth:`~io.IOBase.close` method." msgstr "" -#: library/os.rst:815 +#: library/os.rst:907 msgid "" "Close all file descriptors from *fd_low* (inclusive) to *fd_high* " "(exclusive), ignoring errors. Equivalent to (but much faster than)::" msgstr "" -#: library/os.rst:827 +#: library/os.rst:919 msgid "" "Copy *count* bytes from file descriptor *src*, starting from offset " "*offset_src*, to file descriptor *dst*, starting from offset *offset_dst*. " "If *offset_src* is None, then *src* is read from the current position; " -"respectively for *offset_dst*. The files pointed by *src* and *dst* must " +"respectively for *offset_dst*." +msgstr "" + +#: library/os.rst:924 +msgid "" +"In Linux kernel older than 5.3, the files pointed by *src* and *dst* must " "reside in the same filesystem, otherwise an :exc:`OSError` is raised with :" "attr:`~OSError.errno` set to :const:`errno.EXDEV`." msgstr "" -#: library/os.rst:1558 +#: library/os.rst:928 msgid "" "This copy is done without the additional cost of transferring data from the " "kernel to user space and then back into the kernel. Additionally, some " -"filesystems could implement extra optimizations. The copy is done as if both " -"files are opened as binary." +"filesystems could implement extra optimizations, such as the use of reflinks " +"(i.e., two or more inodes that share pointers to the same copy-on-write disk " +"blocks; supported file systems include btrfs and XFS) and server-side copy " +"(in the case of NFS)." msgstr "" -#: library/os.rst:839 +#: library/os.rst:935 +msgid "" +"The function copies bytes between two file descriptors. Text options, like " +"the encoding and the line ending, are ignored." +msgstr "" + +#: library/os.rst:938 msgid "" "The return value is the amount of bytes copied. This could be less than the " "amount requested." msgstr "" -#: library/os.rst:842 +#: library/os.rst:943 +msgid "" +"On Linux, :func:`os.copy_file_range` should not be used for copying a range " +"of a pseudo file from a special filesystem like procfs and sysfs. It will " +"always copy no bytes and return 0 as if the file was empty because of a " +"known Linux kernel issue." +msgstr "" + +#: library/os.rst:948 msgid ":ref:`Availability `: Linux >= 4.5 with glibc >= 2.27." msgstr "" -#: library/os.rst:849 +#: library/os.rst:955 msgid "" "Return a string describing the encoding of the device associated with *fd* " "if it is connected to a terminal; else return :const:`None`." msgstr "" -#: library/os.rst:852 +#: library/os.rst:958 msgid "" "On Unix, if the :ref:`Python UTF-8 Mode ` is enabled, return " "``'UTF-8'`` rather than the device encoding." msgstr "" -#: library/os.rst:855 +#: library/os.rst:961 msgid "On Unix, the function now implements the Python UTF-8 Mode." msgstr "" -#: library/os.rst:861 +#: library/os.rst:967 msgid "" "Return a duplicate of file descriptor *fd*. The new file descriptor is :ref:" "`non-inheritable `." msgstr "" -#: library/os.rst:864 +#: library/os.rst:970 msgid "" "On Windows, when duplicating a standard stream (0: stdin, 1: stdout, 2: " "stderr), the new file descriptor is :ref:`inheritable `." msgstr "" -#: library/os.rst:881 +#: library/os.rst:987 msgid ":ref:`Availability `: not WASI." msgstr "" -#: library/os.rst:1134 +#: library/os.rst:1244 msgid "The new file descriptor is now non-inheritable." msgstr "" -#: library/os.rst:876 +#: library/os.rst:982 msgid "" "Duplicate file descriptor *fd* to *fd2*, closing the latter first if " "necessary. Return *fd2*. The new file descriptor is :ref:`inheritable " @@ -958,58 +1056,58 @@ msgid "" "``False``." msgstr "" -#: library/os.rst:883 +#: library/os.rst:989 msgid "Add the optional *inheritable* parameter." msgstr "" -#: library/os.rst:886 +#: library/os.rst:992 msgid "Return *fd2* on success. Previously, ``None`` was always returned." msgstr "" -#: library/os.rst:892 +#: library/os.rst:998 msgid "" "Change the mode of the file given by *fd* to the numeric *mode*. See the " "docs for :func:`chmod` for possible values of *mode*. As of Python 3.3, " "this is equivalent to ``os.chmod(fd, mode)``." msgstr "" -#: library/os.rst:1954 library/os.rst:2048 +#: library/os.rst:2069 library/os.rst:2163 msgid "" "Raises an :ref:`auditing event ` ``os.chmod`` with arguments " "``path``, ``mode``, ``dir_fd``." msgstr "" -#: library/os.rst:915 library/os.rst:1541 library/os.rst:1980 -#: library/os.rst:3146 +#: library/os.rst:1021 library/os.rst:1651 library/os.rst:2095 +#: library/os.rst:3377 msgid "" "The function is limited on Emscripten and WASI, see :ref:`wasm-availability` " "for more information." msgstr "" -#: library/os.rst:906 +#: library/os.rst:1012 msgid "" "Change the owner and group id of the file given by *fd* to the numeric *uid* " "and *gid*. To leave one of the ids unchanged, set it to -1. See :func:" "`chown`. As of Python 3.3, this is equivalent to ``os.chown(fd, uid, gid)``." msgstr "" -#: library/os.rst:1976 library/os.rst:2061 +#: library/os.rst:2091 library/os.rst:2176 msgid "" "Raises an :ref:`auditing event ` ``os.chown`` with arguments " "``path``, ``uid``, ``gid``, ``dir_fd``." msgstr "" -#: library/os.rst:921 +#: library/os.rst:1027 msgid "" "Force write of file with filedescriptor *fd* to disk. Does not force update " "of metadata." msgstr "" -#: library/os.rst:927 +#: library/os.rst:1033 msgid "This function is not available on MacOS." msgstr "" -#: library/os.rst:932 +#: library/os.rst:1038 msgid "" "Return system configuration information relevant to an open file. *name* " "specifies the configuration value to retrieve; it may be a string which is " @@ -1020,7 +1118,7 @@ msgid "" "included in that mapping, passing an integer for *name* is also accepted." msgstr "" -#: library/os.rst:2310 +#: library/os.rst:2488 msgid "" "If *name* is a string and is not known, :exc:`ValueError` is raised. If a " "specific value for *name* is not supported by the host system, even if it is " @@ -1028,79 +1126,87 @@ msgid "" "`errno.EINVAL` for the error number." msgstr "" -#: library/os.rst:945 +#: library/os.rst:1051 msgid "As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``." msgstr "" -#: library/os.rst:952 +#: library/os.rst:1058 msgid "" "Get the status of the file descriptor *fd*. Return a :class:`stat_result` " "object." msgstr "" -#: library/os.rst:955 +#: library/os.rst:1061 msgid "As of Python 3.3, this is equivalent to ``os.stat(fd)``." msgstr "" -#: library/os.rst:2145 +#: library/os.rst:2323 msgid "The :func:`.stat` function." msgstr "" -#: library/os.rst:964 +#: library/os.rst:1070 msgid "" "Return information about the filesystem containing the file associated with " "file descriptor *fd*, like :func:`statvfs`. As of Python 3.3, this is " "equivalent to ``os.statvfs(fd)``." msgstr "" -#: library/os.rst:973 +#: library/os.rst:1079 msgid "" "Force write of file with filedescriptor *fd* to disk. On Unix, this calls " "the native :c:func:`!fsync` function; on Windows, the MS :c:func:`!_commit` " "function." msgstr "" -#: library/os.rst:976 +#: library/os.rst:1082 msgid "" "If you're starting with a buffered Python :term:`file object` *f*, first do " "``f.flush()``, and then do ``os.fsync(f.fileno())``, to ensure that all " "internal buffers associated with *f* are written to disk." msgstr "" -#: library/os.rst:985 +#: library/os.rst:1091 msgid "" "Truncate the file corresponding to file descriptor *fd*, so that it is at " "most *length* bytes in size. As of Python 3.3, this is equivalent to ``os." "truncate(fd, length)``." msgstr "" -#: library/os.rst:989 +#: library/os.rst:1095 msgid "" "Raises an :ref:`auditing event ` ``os.truncate`` with arguments " "``fd``, ``length``." msgstr "" -#: library/os.rst:3185 +#: library/os.rst:3416 msgid "Added support for Windows" msgstr "" -#: library/os.rst:999 +#: library/os.rst:1105 msgid "" "Get the blocking mode of the file descriptor: ``False`` if the :data:" "`O_NONBLOCK` flag is set, ``True`` if the flag is cleared." msgstr "" -#: library/os.rst:1002 +#: library/os.rst:1108 msgid "See also :func:`set_blocking` and :meth:`socket.socket.setblocking`." msgstr "" -#: library/os.rst:1014 +#: library/os.rst:1654 +msgid "On Windows, this function is limited to pipes." +msgstr "" + +#: library/os.rst:1658 +msgid "Added support for pipes on Windows." +msgstr "" + +#: library/os.rst:1124 msgid "" "Return ``True`` if the file descriptor *fd* is open and connected to a tty(-" "like) device, else ``False``." msgstr "" -#: library/os.rst:1020 +#: library/os.rst:1130 msgid "" "Apply, test or remove a POSIX lock on an open file descriptor. *fd* is an " "open file descriptor. *cmd* specifies the command to use - one of :data:" @@ -1108,129 +1214,129 @@ msgid "" "specifies the section of the file to lock." msgstr "" -#: library/os.rst:1026 +#: library/os.rst:1136 msgid "" "Raises an :ref:`auditing event ` ``os.lockf`` with arguments " "``fd``, ``cmd``, ``len``." msgstr "" -#: library/os.rst:1038 +#: library/os.rst:1148 msgid "Flags that specify what action :func:`lockf` will take." msgstr "" -#: library/os.rst:1047 +#: library/os.rst:1157 msgid "" "Prepare the tty of which fd is a file descriptor for a new login session. " "Make the calling process a session leader; make the tty the controlling tty, " "the stdin, the stdout, and the stderr of the calling process; close fd." msgstr "" -#: library/os.rst:1058 +#: library/os.rst:1168 msgid "" "Set the current position of file descriptor *fd* to position *pos*, modified " "by *whence*, and return the new position in bytes relative to the start of " "the file. Valid values for *whence* are:" msgstr "" -#: library/os.rst:1063 +#: library/os.rst:1173 msgid "" ":const:`SEEK_SET` or ``0`` -- set *pos* relative to the beginning of the file" msgstr "" -#: library/os.rst:1064 +#: library/os.rst:1174 msgid "" ":const:`SEEK_CUR` or ``1`` -- set *pos* relative to the current file position" msgstr "" -#: library/os.rst:1065 +#: library/os.rst:1175 msgid ":const:`SEEK_END` or ``2`` -- set *pos* relative to the end of the file" msgstr "" -#: library/os.rst:1066 +#: library/os.rst:1176 msgid "" ":const:`SEEK_HOLE` -- set *pos* to the next data location, relative to *pos*" msgstr "" -#: library/os.rst:1067 +#: library/os.rst:1177 msgid "" ":const:`SEEK_DATA` -- set *pos* to the next data hole, relative to *pos*" msgstr "" -#: library/os.rst:1071 +#: library/os.rst:1181 msgid "Add support for :const:`!SEEK_HOLE` and :const:`!SEEK_DATA`." msgstr "" -#: library/os.rst:1078 +#: library/os.rst:1188 msgid "" "Parameters to the :func:`lseek` function and the :meth:`~io.IOBase.seek` " "method on :term:`file-like objects `, for whence to adjust the " "file position indicator." msgstr "" -#: library/os.rst:1082 +#: library/os.rst:1192 msgid ":const:`SEEK_SET`" msgstr "" -#: library/os.rst:1083 +#: library/os.rst:1193 msgid "Adjust the file position relative to the beginning of the file." msgstr "" -#: library/os.rst:1084 +#: library/os.rst:1194 msgid ":const:`SEEK_CUR`" msgstr "" -#: library/os.rst:1085 +#: library/os.rst:1195 msgid "Adjust the file position relative to the current file position." msgstr "" -#: library/os.rst:1087 +#: library/os.rst:1197 msgid ":const:`SEEK_END`" msgstr "" -#: library/os.rst:1087 +#: library/os.rst:1197 msgid "Adjust the file position relative to the end of the file." msgstr "" -#: library/os.rst:1089 +#: library/os.rst:1199 msgid "Their values are 0, 1, and 2, respectively." msgstr "" -#: library/os.rst:1095 +#: library/os.rst:1205 msgid "" "Parameters to the :func:`lseek` function and the :meth:`~io.IOBase.seek` " "method on :term:`file-like objects `, for seeking file data and " "holes on sparsely allocated files." msgstr "" -#: library/os.rst:1101 +#: library/os.rst:1211 msgid ":data:`!SEEK_DATA`" msgstr "" -#: library/os.rst:1100 +#: library/os.rst:1210 msgid "" "Adjust the file offset to the next location containing data, relative to the " "seek position." msgstr "" -#: library/os.rst:1106 +#: library/os.rst:1216 msgid ":data:`!SEEK_HOLE`" msgstr "" -#: library/os.rst:1104 +#: library/os.rst:1214 msgid "" "Adjust the file offset to the next location containing a hole, relative to " "the seek position. A hole is defined as a sequence of zeros." msgstr "" -#: library/os.rst:1110 +#: library/os.rst:1220 msgid "These operations only make sense for filesystems that support them." msgstr "" -#: library/os.rst:1112 +#: library/os.rst:1222 msgid ":ref:`Availability `: Linux >= 3.1, macOS, Unix" msgstr "" -#: library/os.rst:1119 +#: library/os.rst:1229 msgid "" "Open the file *path* and set various flags according to *flags* and possibly " "its mode according to *mode*. When computing *mode*, the current umask " @@ -1238,7 +1344,7 @@ msgid "" "file. The new file descriptor is :ref:`non-inheritable `." msgstr "" -#: library/os.rst:1124 +#: library/os.rst:1234 msgid "" "For a description of the flag and mode values, see the C run-time " "documentation; flag constants (like :const:`O_RDONLY` and :const:`O_WRONLY`) " @@ -1246,19 +1352,19 @@ msgid "" "const:`O_BINARY` is needed to open files in binary mode." msgstr "" -#: library/os.rst:1129 +#: library/os.rst:1239 msgid "" "This function can support :ref:`paths relative to directory descriptors " "` with the *dir_fd* parameter." msgstr "" -#: library/os.rst:1132 +#: library/os.rst:1242 msgid "" "Raises an :ref:`auditing event ` ``open`` with arguments ``path``, " "``mode``, ``flags``." msgstr "" -#: library/os.rst:1139 +#: library/os.rst:1249 msgid "" "This function is intended for low-level I/O. For normal usage, use the " "built-in function :func:`open`, which returns a :term:`file object` with :" @@ -1266,26 +1372,26 @@ msgid "" "a file descriptor in a file object, use :func:`fdopen`." msgstr "" -#: library/os.rst:2186 library/os.rst:2276 library/os.rst:2388 +#: library/os.rst:2364 library/os.rst:2454 library/os.rst:2566 msgid "The *dir_fd* argument." msgstr "" -#: library/os.rst:1466 library/os.rst:4508 +#: library/os.rst:1576 library/os.rst:4749 msgid "" "If the system call is interrupted and the signal handler does not raise an " "exception, the function now retries the system call instead of raising an :" "exc:`InterruptedError` exception (see :pep:`475` for the rationale)." msgstr "" -#: library/os.rst:1848 library/os.rst:1911 library/os.rst:1997 -#: library/os.rst:2052 library/os.rst:2124 library/os.rst:2189 -#: library/os.rst:2257 library/os.rst:2320 library/os.rst:2410 -#: library/os.rst:2771 library/os.rst:3188 library/os.rst:3244 -#: library/os.rst:3404 library/os.rst:3767 library/os.rst:4273 +#: library/os.rst:1963 library/os.rst:2026 library/os.rst:2112 +#: library/os.rst:2167 library/os.rst:2239 library/os.rst:2367 +#: library/os.rst:2435 library/os.rst:2498 library/os.rst:2588 +#: library/os.rst:2966 library/os.rst:3419 library/os.rst:3475 +#: library/os.rst:3635 library/os.rst:3999 library/os.rst:4514 msgid "Accepts a :term:`path-like object`." msgstr "" -#: library/os.rst:1155 +#: library/os.rst:1265 msgid "" "The following constants are options for the *flags* parameter to the :func:" "`~os.open` function. They can be combined using the bitwise OR operator ``|" @@ -1295,45 +1401,45 @@ msgid "" "on Windows." msgstr "" -#: library/os.rst:1170 +#: library/os.rst:1280 msgid "The above constants are available on Unix and Windows." msgstr "" -#: library/os.rst:1181 +#: library/os.rst:1291 msgid "The above constants are only available on Unix." msgstr "" -#: library/os.rst:1183 +#: library/os.rst:1293 msgid "Add :data:`O_CLOEXEC` constant." msgstr "" -#: library/os.rst:1194 +#: library/os.rst:1304 msgid "The above constants are only available on Windows." msgstr "" -#: library/os.rst:1201 +#: library/os.rst:1311 msgid "The above constants are only available on macOS." msgstr "" -#: library/os.rst:1203 +#: library/os.rst:1313 msgid "" "Add :data:`O_EVTONLY`, :data:`O_FSYNC`, :data:`O_SYMLINK` and :data:" "`O_NOFOLLOW_ANY` constants." msgstr "" -#: library/os.rst:1217 +#: library/os.rst:1327 msgid "" "The above constants are extensions and not present if they are not defined " "by the C library." msgstr "" -#: library/os.rst:1220 +#: library/os.rst:1330 msgid "" "Add :data:`O_PATH` on systems that support it. Add :data:`O_TMPFILE`, only " "available on Linux Kernel 3.11 or newer." msgstr "" -#: library/os.rst:1230 +#: library/os.rst:1340 msgid "" "Open a new pseudo-terminal pair. Return a pair of file descriptors " "``(master, slave)`` for the pty and the tty, respectively. The new file " @@ -1341,18 +1447,18 @@ msgid "" "more portable approach, use the :mod:`pty` module." msgstr "" -#: library/os.rst:1249 +#: library/os.rst:1359 msgid "The new file descriptors are now non-inheritable." msgstr "" -#: library/os.rst:1243 +#: library/os.rst:1353 msgid "" "Create a pipe. Return a pair of file descriptors ``(r, w)`` usable for " "reading and writing, respectively. The new file descriptor is :ref:`non-" "inheritable `." msgstr "" -#: library/os.rst:1255 +#: library/os.rst:1365 msgid "" "Create a pipe with *flags* set atomically. *flags* can be constructed by " "ORing together one or more of these values: :data:`O_NONBLOCK`, :data:" @@ -1360,17 +1466,17 @@ msgid "" "and writing, respectively." msgstr "" -#: library/os.rst:1268 +#: library/os.rst:1378 msgid "" "Ensures that enough disk space is allocated for the file specified by *fd* " "starting from *offset* and continuing for *len* bytes." msgstr "" -#: library/os.rst:1271 +#: library/os.rst:1381 msgid ":ref:`Availability `: Unix, not Emscripten." msgstr "" -#: library/os.rst:1278 +#: library/os.rst:1388 msgid "" "Announces an intention to access data in a specific pattern thus allowing " "the kernel to make optimizations. The advice applies to the region of the " @@ -1381,25 +1487,25 @@ msgid "" "`POSIX_FADV_DONTNEED`." msgstr "" -#: library/os.rst:1298 +#: library/os.rst:1408 msgid "" "Flags that can be used in *advice* in :func:`posix_fadvise` that specify the " "access pattern that is likely to be used." msgstr "" -#: library/os.rst:1308 +#: library/os.rst:1418 msgid "" "Read at most *n* bytes from file descriptor *fd* at a position of *offset*, " "leaving the file offset unchanged." msgstr "" -#: library/os.rst:1455 +#: library/os.rst:1565 msgid "" "Return a bytestring containing the bytes read. If the end of the file " "referred to by *fd* has been reached, an empty bytes object is returned." msgstr "" -#: library/os.rst:1321 +#: library/os.rst:1431 msgid "" "Read from a file descriptor *fd* at a position of *offset* into mutable :" "term:`bytes-like objects ` *buffers*, leaving the file " @@ -1407,91 +1513,91 @@ msgid "" "move on to the next buffer in the sequence to hold the rest of the data." msgstr "" -#: library/os.rst:1396 +#: library/os.rst:1506 msgid "" "The flags argument contains a bitwise OR of zero or more of the following " "flags:" msgstr "" -#: library/os.rst:1329 +#: library/os.rst:1439 msgid ":data:`RWF_HIPRI`" msgstr "" -#: library/os.rst:1330 +#: library/os.rst:1440 msgid ":data:`RWF_NOWAIT`" msgstr "" -#: library/os.rst:1587 +#: library/os.rst:1702 msgid "" "Return the total number of bytes actually read which can be less than the " "total capacity of all the objects." msgstr "" -#: library/os.rst:1405 library/os.rst:1652 +#: library/os.rst:1515 library/os.rst:1767 msgid "" "The operating system may set a limit (:func:`sysconf` value " "``'SC_IOV_MAX'``) on the number of buffers that can be used." msgstr "" -#: library/os.rst:1338 +#: library/os.rst:1448 msgid "Combine the functionality of :func:`os.readv` and :func:`os.pread`." msgstr "" -#: library/os.rst:1410 +#: library/os.rst:1520 msgid "" ":ref:`Availability `: Linux >= 2.6.30, FreeBSD >= 6.0, OpenBSD " ">= 2.7, AIX >= 7.1." msgstr "" -#: library/os.rst:1412 +#: library/os.rst:1522 msgid "Using flags requires Linux >= 4.6." msgstr "" -#: library/os.rst:1349 +#: library/os.rst:1459 msgid "" "Do not wait for data which is not immediately available. If this flag is " "specified, the system call will return instantly if it would have to read " "data from the backing storage or wait for a lock." msgstr "" -#: library/os.rst:1353 +#: library/os.rst:1463 msgid "" "If some data was successfully read, it will return the number of bytes read. " "If no bytes were read, it will return ``-1`` and set errno to :const:`errno." "EAGAIN`." msgstr "" -#: library/os.rst:1357 +#: library/os.rst:1467 msgid ":ref:`Availability `: Linux >= 4.14." msgstr "" -#: library/os.rst:1364 +#: library/os.rst:1474 msgid "" "High priority read/write. Allows block-based filesystems to use polling of " "the device, which provides lower latency, but may use additional resources." msgstr "" -#: library/os.rst:1368 +#: library/os.rst:1478 msgid "" "Currently, on Linux, this feature is usable only on a file descriptor opened " "using the :data:`O_DIRECT` flag." msgstr "" -#: library/os.rst:1371 +#: library/os.rst:1481 msgid ":ref:`Availability `: Linux >= 4.6." msgstr "" -#: library/os.rst:1378 +#: library/os.rst:1488 msgid "" "Write the bytestring in *str* to file descriptor *fd* at position of " "*offset*, leaving the file offset unchanged." msgstr "" -#: library/os.rst:1627 +#: library/os.rst:1742 msgid "Return the number of bytes actually written." msgstr "" -#: library/os.rst:1390 +#: library/os.rst:1500 msgid "" "Write the *buffers* contents to file descriptor *fd* at a offset *offset*, " "leaving the file offset unchanged. *buffers* must be a sequence of :term:" @@ -1500,43 +1606,43 @@ msgid "" "the second, and so on." msgstr "" -#: library/os.rst:1399 +#: library/os.rst:1509 msgid ":data:`RWF_DSYNC`" msgstr "" -#: library/os.rst:1400 +#: library/os.rst:1510 msgid ":data:`RWF_SYNC`" msgstr "" -#: library/os.rst:1401 +#: library/os.rst:1511 msgid ":data:`RWF_APPEND`" msgstr "" -#: library/os.rst:1403 +#: library/os.rst:1513 msgid "Return the total number of bytes actually written." msgstr "" -#: library/os.rst:1408 +#: library/os.rst:1518 msgid "Combine the functionality of :func:`os.writev` and :func:`os.pwrite`." msgstr "" -#: library/os.rst:1419 +#: library/os.rst:1529 msgid "" "Provide a per-write equivalent of the :data:`O_DSYNC` :func:`os.open` flag. " "This flag effect applies only to the data range written by the system call." msgstr "" -#: library/os.rst:1432 +#: library/os.rst:1542 msgid ":ref:`Availability `: Linux >= 4.7." msgstr "" -#: library/os.rst:1429 +#: library/os.rst:1539 msgid "" "Provide a per-write equivalent of the :data:`O_SYNC` :func:`os.open` flag. " "This flag effect applies only to the data range written by the system call." msgstr "" -#: library/os.rst:1439 +#: library/os.rst:1549 msgid "" "Provide a per-write equivalent of the :data:`O_APPEND` :func:`os.open` flag. " "This flag is meaningful only for :func:`os.pwritev`, and its effect applies " @@ -1546,15 +1652,15 @@ msgid "" "*offset* is updated." msgstr "" -#: library/os.rst:1446 +#: library/os.rst:1556 msgid ":ref:`Availability `: Linux >= 4.16." msgstr "" -#: library/os.rst:1453 +#: library/os.rst:1563 msgid "Read at most *n* bytes from file descriptor *fd*." msgstr "" -#: library/os.rst:1460 +#: library/os.rst:1570 msgid "" "This function is intended for low-level I/O and must be applied to a file " "descriptor as returned by :func:`os.open` or :func:`pipe`. To read a \"file " @@ -1563,26 +1669,26 @@ msgid "" "`~file.readline` methods." msgstr "" -#: library/os.rst:1475 +#: library/os.rst:1585 msgid "" "Copy *count* bytes from file descriptor *in_fd* to file descriptor *out_fd* " "starting at *offset*. Return the number of bytes sent. When EOF is reached " "return ``0``." msgstr "" -#: library/os.rst:1479 +#: library/os.rst:1589 msgid "" "The first function notation is supported by all platforms that define :func:" "`sendfile`." msgstr "" -#: library/os.rst:1482 +#: library/os.rst:1592 msgid "" "On Linux, if *offset* is given as ``None``, the bytes are read from the " "current position of *in_fd* and the position of *in_fd* is updated." msgstr "" -#: library/os.rst:1485 +#: library/os.rst:1595 msgid "" "The second case may be used on macOS and FreeBSD where *headers* and " "*trailers* are arbitrary sequences of buffers that are written before and " @@ -1590,58 +1696,58 @@ msgid "" "case." msgstr "" -#: library/os.rst:1489 +#: library/os.rst:1599 msgid "" "On macOS and FreeBSD, a value of ``0`` for *count* specifies to send until " "the end of *in_fd* is reached." msgstr "" -#: library/os.rst:1492 +#: library/os.rst:1602 msgid "" "All platforms support sockets as *out_fd* file descriptor, and some " "platforms allow other types (e.g. regular file, pipe) as well." msgstr "" -#: library/os.rst:1495 +#: library/os.rst:1605 msgid "" "Cross-platform applications should not use *headers*, *trailers* and *flags* " "arguments." msgstr "" -#: library/os.rst:1502 +#: library/os.rst:1612 msgid "" "For a higher-level wrapper of :func:`sendfile`, see :meth:`socket.socket." "sendfile`." msgstr "" -#: library/os.rst:1507 +#: library/os.rst:1617 msgid "Parameters *out* and *in* was renamed to *out_fd* and *in_fd*." msgstr "" -#: library/os.rst:1515 +#: library/os.rst:1625 msgid "" "Parameters to the :func:`sendfile` function, if the implementation supports " "them." msgstr "" -#: library/os.rst:1524 +#: library/os.rst:1634 msgid "" "Parameter to the :func:`sendfile` function, if the implementation supports " "it. The data won't be cached in the virtual memory and will be freed " "afterwards." msgstr "" -#: library/os.rst:1534 +#: library/os.rst:1644 msgid "" "Set the blocking mode of the specified file descriptor. Set the :data:" "`O_NONBLOCK` flag if blocking is ``False``, clear the flag otherwise." msgstr "" -#: library/os.rst:1537 +#: library/os.rst:1647 msgid "See also :func:`get_blocking` and :meth:`socket.socket.setblocking`." msgstr "" -#: library/os.rst:1549 +#: library/os.rst:1664 msgid "" "Transfer *count* bytes from file descriptor *src*, starting from offset " "*offset_src*, to file descriptor *dst*, starting from offset *offset_dst*. " @@ -1653,7 +1759,15 @@ msgid "" "`~OSError.errno` set to :const:`errno.EXDEV`." msgstr "" -#: library/os.rst:1563 +#: library/os.rst:1673 +msgid "" +"This copy is done without the additional cost of transferring data from the " +"kernel to user space and then back into the kernel. Additionally, some " +"filesystems could implement extra optimizations. The copy is done as if both " +"files are opened as binary." +msgstr "" + +#: library/os.rst:1678 msgid "" "Upon successful completion, returns the number of bytes spliced to or from " "the pipe. A return value of 0 means end of input. If *src* refers to a pipe, " @@ -1662,11 +1776,11 @@ msgid "" "the pipe." msgstr "" -#: library/os.rst:1569 +#: library/os.rst:1684 msgid ":ref:`Availability `: Linux >= 2.6.17 with glibc >= 2.5" msgstr "" -#: library/os.rst:1582 +#: library/os.rst:1697 msgid "" "Read from a file descriptor *fd* into a number of mutable :term:`bytes-like " "objects ` *buffers*. Transfer data into each buffer until " @@ -1674,34 +1788,34 @@ msgid "" "rest of the data." msgstr "" -#: library/os.rst:1600 +#: library/os.rst:1715 msgid "" "Return the process group associated with the terminal given by *fd* (an open " "file descriptor as returned by :func:`os.open`)." msgstr "" -#: library/os.rst:1611 +#: library/os.rst:1726 msgid ":ref:`Availability `: Unix, not WASI." msgstr "" -#: library/os.rst:1608 +#: library/os.rst:1723 msgid "" "Set the process group associated with the terminal given by *fd* (an open " "file descriptor as returned by :func:`os.open`) to *pg*." msgstr "" -#: library/os.rst:1616 +#: library/os.rst:1731 msgid "" "Return a string which specifies the terminal device associated with file " "descriptor *fd*. If *fd* is not associated with a terminal device, an " "exception is raised." msgstr "" -#: library/os.rst:1625 +#: library/os.rst:1740 msgid "Write the bytestring in *str* to file descriptor *fd*." msgstr "" -#: library/os.rst:1631 +#: library/os.rst:1746 msgid "" "This function is intended for low-level I/O and must be applied to a file " "descriptor as returned by :func:`os.open` or :func:`pipe`. To write a " @@ -1710,7 +1824,7 @@ msgid "" "its :meth:`~file.write` method." msgstr "" -#: library/os.rst:1645 +#: library/os.rst:1760 msgid "" "Write the contents of *buffers* to file descriptor *fd*. *buffers* must be a " "sequence of :term:`bytes-like objects `. Buffers are " @@ -1718,70 +1832,70 @@ msgid "" "before proceeding to the second, and so on." msgstr "" -#: library/os.rst:1650 +#: library/os.rst:1765 msgid "Returns the total number of bytes actually written." msgstr "" -#: library/os.rst:1663 +#: library/os.rst:1778 msgid "Querying the size of a terminal" msgstr "" -#: library/os.rst:1669 +#: library/os.rst:1784 msgid "" "Return the size of the terminal window as ``(columns, lines)``, tuple of " "type :class:`terminal_size`." msgstr "" -#: library/os.rst:1672 +#: library/os.rst:1787 msgid "" "The optional argument ``fd`` (default ``STDOUT_FILENO``, or standard output) " "specifies which file descriptor should be queried." msgstr "" -#: library/os.rst:1675 +#: library/os.rst:1790 msgid "" "If the file descriptor is not connected to a terminal, an :exc:`OSError` is " "raised." msgstr "" -#: library/os.rst:1678 +#: library/os.rst:1793 msgid "" ":func:`shutil.get_terminal_size` is the high-level function which should " "normally be used, ``os.get_terminal_size`` is the low-level implementation." msgstr "" -#: library/os.rst:1686 +#: library/os.rst:1801 msgid "" "A subclass of tuple, holding ``(columns, lines)`` of the terminal window " "size." msgstr "" -#: library/os.rst:1690 +#: library/os.rst:1805 msgid "Width of the terminal window in characters." msgstr "" -#: library/os.rst:1694 +#: library/os.rst:1809 msgid "Height of the terminal window in characters." msgstr "" -#: library/os.rst:1700 +#: library/os.rst:1815 msgid "Inheritance of File Descriptors" msgstr "" -#: library/os.rst:1704 +#: library/os.rst:1819 msgid "" "A file descriptor has an \"inheritable\" flag which indicates if the file " "descriptor can be inherited by child processes. Since Python 3.4, file " "descriptors created by Python are non-inheritable by default." msgstr "" -#: library/os.rst:1708 +#: library/os.rst:1823 msgid "" "On UNIX, non-inheritable file descriptors are closed in child processes at " "the execution of a new program, other file descriptors are inherited." msgstr "" -#: library/os.rst:1711 +#: library/os.rst:1826 msgid "" "On Windows, non-inheritable handles and file descriptors are closed in child " "processes, except for standard streams (file descriptors 0, 1 and 2: stdin, " @@ -1792,44 +1906,44 @@ msgid "" "only inherited if the *close_fds* parameter is ``False``." msgstr "" -#: library/os.rst:1719 +#: library/os.rst:1834 msgid "" "On WebAssembly platforms ``wasm32-emscripten`` and ``wasm32-wasi``, the file " "descriptor cannot be modified." msgstr "" -#: library/os.rst:1724 +#: library/os.rst:1839 msgid "" "Get the \"inheritable\" flag of the specified file descriptor (a boolean)." msgstr "" -#: library/os.rst:1728 +#: library/os.rst:1843 msgid "Set the \"inheritable\" flag of the specified file descriptor." msgstr "" -#: library/os.rst:1732 +#: library/os.rst:1847 msgid "Get the \"inheritable\" flag of the specified handle (a boolean)." msgstr "" -#: library/os.rst:1740 library/os.rst:4308 library/os.rst:4353 +#: library/os.rst:1855 library/os.rst:4549 library/os.rst:4594 msgid ":ref:`Availability `: Windows." msgstr "" -#: library/os.rst:1738 +#: library/os.rst:1853 msgid "Set the \"inheritable\" flag of the specified handle." msgstr "" -#: library/os.rst:1746 +#: library/os.rst:1861 msgid "Files and Directories" msgstr "" -#: library/os.rst:1748 +#: library/os.rst:1863 msgid "" "On some Unix platforms, many of these functions support one or more of these " "features:" msgstr "" -#: library/os.rst:1753 +#: library/os.rst:1868 msgid "" "**specifying a file descriptor:** Normally the *path* argument provided to " "functions in the :mod:`os` module must be a string specifying a file path. " @@ -1840,7 +1954,7 @@ msgid "" "``chdir``).)" msgstr "" -#: library/os.rst:1761 +#: library/os.rst:1876 msgid "" "You can check whether or not *path* can be specified as a file descriptor " "for a particular function on your platform using :data:`os.supports_fd`. If " @@ -1848,13 +1962,13 @@ msgid "" "`NotImplementedError`." msgstr "" -#: library/os.rst:1766 +#: library/os.rst:1881 msgid "" "If the function also supports *dir_fd* or *follow_symlinks* arguments, it's " "an error to specify one of those when supplying *path* as a file descriptor." msgstr "" -#: library/os.rst:1771 +#: library/os.rst:1886 msgid "" "**paths relative to directory descriptors:** If *dir_fd* is not ``None``, it " "should be a file descriptor referring to a directory, and the path to " @@ -1865,14 +1979,14 @@ msgid "" "``access``)." msgstr "" -#: library/os.rst:1778 +#: library/os.rst:1893 msgid "" "You can check whether or not *dir_fd* is supported for a particular function " "on your platform using :data:`os.supports_dir_fd`. If it's unavailable, " "using it will raise a :exc:`NotImplementedError`." msgstr "" -#: library/os.rst:1784 +#: library/os.rst:1899 msgid "" "**not following symlinks:** If *follow_symlinks* is ``False``, and the last " "element of the path to operate on is a symbolic link, the function will " @@ -1881,14 +1995,14 @@ msgid "" "function.)" msgstr "" -#: library/os.rst:1790 +#: library/os.rst:1905 msgid "" "You can check whether or not *follow_symlinks* is supported for a particular " "function on your platform using :data:`os.supports_follow_symlinks`. If it's " "unavailable, using it will raise a :exc:`NotImplementedError`." msgstr "" -#: library/os.rst:1798 +#: library/os.rst:1913 msgid "" "Use the real uid/gid to test for access to *path*. Note that most " "operations will use the effective uid/gid, therefore this routine can be " @@ -1900,13 +2014,13 @@ msgid "" "manpage:`access(2)` for more information." msgstr "" -#: library/os.rst:1807 +#: library/os.rst:1922 msgid "" "This function can support specifying :ref:`paths relative to directory " "descriptors ` and :ref:`not following symlinks `." msgstr "" -#: library/os.rst:1810 +#: library/os.rst:1925 msgid "" "If *effective_ids* is ``True``, :func:`access` will perform its access " "checks using the effective uid/gid instead of the real uid/gid. " @@ -1915,7 +2029,7 @@ msgid "" "unavailable, using it will raise a :exc:`NotImplementedError`." msgstr "" -#: library/os.rst:1818 +#: library/os.rst:1933 msgid "" "Using :func:`access` to check if a user is authorized to e.g. open a file " "before actually doing so using :func:`open` creates a security hole, because " @@ -1924,278 +2038,278 @@ msgid "" "For example::" msgstr "" -#: library/os.rst:1829 +#: library/os.rst:1944 msgid "is better written as::" msgstr "" -#: library/os.rst:1841 +#: library/os.rst:1956 msgid "" "I/O operations may fail even when :func:`access` indicates that they would " "succeed, particularly for operations on network filesystems which may have " "permissions semantics beyond the usual POSIX permission-bit model." msgstr "" -#: library/os.rst:1845 +#: library/os.rst:1960 msgid "Added the *dir_fd*, *effective_ids*, and *follow_symlinks* parameters." msgstr "" -#: library/os.rst:1857 +#: library/os.rst:1972 msgid "" "Values to pass as the *mode* parameter of :func:`access` to test the " "existence, readability, writability and executability of *path*, " "respectively." msgstr "" -#: library/os.rst:1866 +#: library/os.rst:1981 msgid "Change the current working directory to *path*." msgstr "" -#: library/os.rst:1868 +#: library/os.rst:1983 msgid "" "This function can support :ref:`specifying a file descriptor `. " "The descriptor must refer to an opened directory, not an open file." msgstr "" -#: library/os.rst:1871 +#: library/os.rst:1986 msgid "" "This function can raise :exc:`OSError` and subclasses such as :exc:" "`FileNotFoundError`, :exc:`PermissionError`, and :exc:`NotADirectoryError`." msgstr "" -#: library/os.rst:2007 +#: library/os.rst:2122 msgid "" "Raises an :ref:`auditing event ` ``os.chdir`` with argument " "``path``." msgstr "" -#: library/os.rst:1876 +#: library/os.rst:1991 msgid "" "Added support for specifying *path* as a file descriptor on some platforms." msgstr "" -#: library/os.rst:1886 +#: library/os.rst:2001 msgid "" "Set the flags of *path* to the numeric *flags*. *flags* may take a " "combination (bitwise OR) of the following values (as defined in the :mod:" "`stat` module):" msgstr "" -#: library/os.rst:1889 +#: library/os.rst:2004 msgid ":const:`stat.UF_NODUMP`" msgstr "" -#: library/os.rst:1890 +#: library/os.rst:2005 msgid ":const:`stat.UF_IMMUTABLE`" msgstr "" -#: library/os.rst:1891 +#: library/os.rst:2006 msgid ":const:`stat.UF_APPEND`" msgstr "" -#: library/os.rst:1892 +#: library/os.rst:2007 msgid ":const:`stat.UF_OPAQUE`" msgstr "" -#: library/os.rst:1893 +#: library/os.rst:2008 msgid ":const:`stat.UF_NOUNLINK`" msgstr "" -#: library/os.rst:1894 +#: library/os.rst:2009 msgid ":const:`stat.UF_COMPRESSED`" msgstr "" -#: library/os.rst:1895 +#: library/os.rst:2010 msgid ":const:`stat.UF_HIDDEN`" msgstr "" -#: library/os.rst:1896 +#: library/os.rst:2011 msgid ":const:`stat.SF_ARCHIVED`" msgstr "" -#: library/os.rst:1897 +#: library/os.rst:2012 msgid ":const:`stat.SF_IMMUTABLE`" msgstr "" -#: library/os.rst:1898 +#: library/os.rst:2013 msgid ":const:`stat.SF_APPEND`" msgstr "" -#: library/os.rst:1899 +#: library/os.rst:2014 msgid ":const:`stat.SF_NOUNLINK`" msgstr "" -#: library/os.rst:1900 +#: library/os.rst:2015 msgid ":const:`stat.SF_SNAPSHOT`" msgstr "" -#: library/os.rst:1902 +#: library/os.rst:2017 msgid "" "This function can support :ref:`not following symlinks `." msgstr "" -#: library/os.rst:2033 +#: library/os.rst:2148 msgid "" "Raises an :ref:`auditing event ` ``os.chflags`` with arguments " "``path``, ``flags``." msgstr "" -#: library/os.rst:1908 +#: library/os.rst:2023 msgid "The *follow_symlinks* argument." msgstr "" -#: library/os.rst:1917 +#: library/os.rst:2032 msgid "" "Change the mode of *path* to the numeric *mode*. *mode* may take one of the " "following values (as defined in the :mod:`stat` module) or bitwise ORed " "combinations of them:" msgstr "" -#: library/os.rst:1921 +#: library/os.rst:2036 msgid ":const:`stat.S_ISUID`" msgstr "" -#: library/os.rst:1922 +#: library/os.rst:2037 msgid ":const:`stat.S_ISGID`" msgstr "" -#: library/os.rst:1923 +#: library/os.rst:2038 msgid ":const:`stat.S_ENFMT`" msgstr "" -#: library/os.rst:1924 +#: library/os.rst:2039 msgid ":const:`stat.S_ISVTX`" msgstr "" -#: library/os.rst:1925 +#: library/os.rst:2040 msgid ":const:`stat.S_IREAD`" msgstr "" -#: library/os.rst:1926 +#: library/os.rst:2041 msgid ":const:`stat.S_IWRITE`" msgstr "" -#: library/os.rst:1927 +#: library/os.rst:2042 msgid ":const:`stat.S_IEXEC`" msgstr "" -#: library/os.rst:1928 +#: library/os.rst:2043 msgid ":const:`stat.S_IRWXU`" msgstr "" -#: library/os.rst:1929 +#: library/os.rst:2044 msgid ":const:`stat.S_IRUSR`" msgstr "" -#: library/os.rst:1930 +#: library/os.rst:2045 msgid ":const:`stat.S_IWUSR`" msgstr "" -#: library/os.rst:1931 +#: library/os.rst:2046 msgid ":const:`stat.S_IXUSR`" msgstr "" -#: library/os.rst:1932 +#: library/os.rst:2047 msgid ":const:`stat.S_IRWXG`" msgstr "" -#: library/os.rst:1933 +#: library/os.rst:2048 msgid ":const:`stat.S_IRGRP`" msgstr "" -#: library/os.rst:1934 +#: library/os.rst:2049 msgid ":const:`stat.S_IWGRP`" msgstr "" -#: library/os.rst:1935 +#: library/os.rst:2050 msgid ":const:`stat.S_IXGRP`" msgstr "" -#: library/os.rst:1936 +#: library/os.rst:2051 msgid ":const:`stat.S_IRWXO`" msgstr "" -#: library/os.rst:1937 +#: library/os.rst:2052 msgid ":const:`stat.S_IROTH`" msgstr "" -#: library/os.rst:1938 +#: library/os.rst:2053 msgid ":const:`stat.S_IWOTH`" msgstr "" -#: library/os.rst:1939 +#: library/os.rst:2054 msgid ":const:`stat.S_IXOTH`" msgstr "" -#: library/os.rst:1969 library/os.rst:3234 +#: library/os.rst:2084 library/os.rst:3465 msgid "" "This function can support :ref:`specifying a file descriptor `, :" "ref:`paths relative to directory descriptors ` and :ref:`not " "following symlinks `." msgstr "" -#: library/os.rst:1947 +#: library/os.rst:2062 msgid "" "Although Windows supports :func:`chmod`, you can only set the file's read-" "only flag with it (via the ``stat.S_IWRITE`` and ``stat.S_IREAD`` constants " "or a corresponding integer value). All other bits are ignored." msgstr "" -#: library/os.rst:1983 +#: library/os.rst:2098 msgid "" "Added support for specifying *path* as an open file descriptor, and the " "*dir_fd* and *follow_symlinks* arguments." msgstr "" -#: library/os.rst:1966 +#: library/os.rst:2081 msgid "" "Change the owner and group id of *path* to the numeric *uid* and *gid*. To " "leave one of the ids unchanged, set it to -1." msgstr "" -#: library/os.rst:1973 +#: library/os.rst:2088 msgid "" "See :func:`shutil.chown` for a higher-level function that accepts names in " "addition to numeric ids." msgstr "" -#: library/os.rst:1987 +#: library/os.rst:2102 msgid "Supports a :term:`path-like object`." msgstr "" -#: library/os.rst:1993 +#: library/os.rst:2108 msgid "Change the root directory of the current process to *path*." msgstr "" -#: library/os.rst:2003 +#: library/os.rst:2118 msgid "" "Change the current working directory to the directory represented by the " "file descriptor *fd*. The descriptor must refer to an opened directory, not " "an open file. As of Python 3.3, this is equivalent to ``os.chdir(fd)``." msgstr "" -#: library/os.rst:2014 +#: library/os.rst:2129 msgid "Return a string representing the current working directory." msgstr "" -#: library/os.rst:2019 +#: library/os.rst:2134 msgid "Return a bytestring representing the current working directory." msgstr "" -#: library/os.rst:2021 +#: library/os.rst:2136 msgid "" "The function now uses the UTF-8 encoding on Windows, rather than the ANSI " "code page: see :pep:`529` for the rationale. The function is no longer " "deprecated on Windows." msgstr "" -#: library/os.rst:2029 +#: library/os.rst:2144 msgid "" "Set the flags of *path* to the numeric *flags*, like :func:`chflags`, but do " "not follow symbolic links. As of Python 3.3, this is equivalent to ``os." "chflags(path, flags, follow_symlinks=False)``." msgstr "" -#: library/os.rst:2043 +#: library/os.rst:2158 msgid "" "Change the mode of *path* to the numeric *mode*. If path is a symlink, this " "affects the symlink rather than the target. See the docs for :func:`chmod` " @@ -2203,47 +2317,47 @@ msgid "" "chmod(path, mode, follow_symlinks=False)``." msgstr "" -#: library/os.rst:2057 +#: library/os.rst:2172 msgid "" "Change the owner and group id of *path* to the numeric *uid* and *gid*. " "This function will not follow symbolic links. As of Python 3.3, this is " "equivalent to ``os.chown(path, uid, gid, follow_symlinks=False)``." msgstr "" -#: library/os.rst:2071 +#: library/os.rst:2186 msgid "Create a hard link pointing to *src* named *dst*." msgstr "" -#: library/os.rst:2073 +#: library/os.rst:2188 msgid "" "This function can support specifying *src_dir_fd* and/or *dst_dir_fd* to " "supply :ref:`paths relative to directory descriptors `, and :ref:" "`not following symlinks `." msgstr "" -#: library/os.rst:2077 +#: library/os.rst:2192 msgid "" "Raises an :ref:`auditing event ` ``os.link`` with arguments " "``src``, ``dst``, ``src_dir_fd``, ``dst_dir_fd``." msgstr "" -#: library/os.rst:2079 +#: library/os.rst:2194 msgid ":ref:`Availability `: Unix, Windows, not Emscripten." msgstr "" -#: library/os.rst:2081 +#: library/os.rst:2196 msgid "Added Windows support." msgstr "" -#: library/os.rst:2084 +#: library/os.rst:2199 msgid "Added the *src_dir_fd*, *dst_dir_fd*, and *follow_symlinks* arguments." msgstr "" -#: library/os.rst:2442 library/os.rst:3156 +#: library/os.rst:2620 library/os.rst:3387 msgid "Accepts a :term:`path-like object` for *src* and *dst*." msgstr "" -#: library/os.rst:2093 +#: library/os.rst:2208 msgid "" "Return a list containing the names of the entries in the directory given by " "*path*. The list is in arbitrary order, and does not include the special " @@ -2252,7 +2366,7 @@ msgid "" "function, whether a name for that file be included is unspecified." msgstr "" -#: library/os.rst:2099 +#: library/os.rst:2214 msgid "" "*path* may be a :term:`path-like object`. If *path* is of type ``bytes`` " "(directly or indirectly through the :class:`PathLike` interface), the " @@ -2260,70 +2374,150 @@ msgid "" "circumstances, they will be of type ``str``." msgstr "" -#: library/os.rst:2527 +#: library/os.rst:2705 msgid "" "This function can also support :ref:`specifying a file descriptor " "`; the file descriptor must refer to a directory." msgstr "" -#: library/os.rst:2107 +#: library/os.rst:2222 msgid "" "Raises an :ref:`auditing event ` ``os.listdir`` with argument " "``path``." msgstr "" -#: library/os.rst:2110 +#: library/os.rst:2225 msgid "To encode ``str`` filenames to ``bytes``, use :func:`~os.fsencode`." msgstr "" -#: library/os.rst:2114 +#: library/os.rst:2229 msgid "" "The :func:`scandir` function returns directory entries along with file " "attribute information, giving better performance for many common use cases." msgstr "" -#: library/os.rst:2118 +#: library/os.rst:2233 msgid "The *path* parameter became optional." msgstr "" -#: library/os.rst:3015 +#: library/os.rst:3246 msgid "Added support for specifying *path* as an open file descriptor." msgstr "" -#: library/os.rst:2130 +#: library/os.rst:2245 +msgid "Return a list containing the names of drives on a Windows system." +msgstr "" + +#: library/os.rst:2247 +msgid "" +"A drive name typically looks like ``'C:\\\\'``. Not every drive name will be " +"associated with a volume, and some may be inaccessible for a variety of " +"reasons, including permissions, network connectivity or missing media. This " +"function does not test for access." +msgstr "" + +#: library/os.rst:2252 +msgid "May raise :exc:`OSError` if an error occurs collecting the drive names." +msgstr "" + +#: library/os.rst:2255 +msgid "" +"Raises an :ref:`auditing event ` ``os.listdrives`` with no " +"arguments." +msgstr "" + +#: library/os.rst:2281 library/os.rst:2301 +msgid ":ref:`Availability `: Windows" +msgstr "" + +#: library/os.rst:2264 +msgid "" +"Return a list containing the mount points for a volume on a Windows system." +msgstr "" + +#: library/os.rst:2267 +msgid "" +"*volume* must be represented as a GUID path, like those returned by :func:" +"`os.listvolumes`. Volumes may be mounted in multiple locations or not at " +"all. In the latter case, the list will be empty. Mount points that are not " +"associated with a volume will not be returned by this function." +msgstr "" + +#: library/os.rst:2273 +msgid "" +"The mount points return by this function will be absolute paths, and may be " +"longer than the drive name." +msgstr "" + +#: library/os.rst:2276 +msgid "" +"Raises :exc:`OSError` if the volume is not recognized or if an error occurs " +"collecting the paths." +msgstr "" + +#: library/os.rst:2279 +msgid "" +"Raises an :ref:`auditing event ` ``os.listmounts`` with argument " +"``volume``." +msgstr "" + +#: library/os.rst:2288 +msgid "Return a list containing the volumes in the system." +msgstr "" + +#: library/os.rst:2290 +msgid "" +"Volumes are typically represented as a GUID path that looks like ``\\\\?" +"\\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\\``. Files can usually be " +"accessed through a GUID path, permissions allowing. However, users are " +"generally not familiar with them, and so the recommended use of this " +"function is to retrieve mount points using :func:`os.listmounts`." +msgstr "" + +#: library/os.rst:2297 +msgid "May raise :exc:`OSError` if an error occurs collecting the volumes." +msgstr "" + +#: library/os.rst:2299 +msgid "" +"Raises an :ref:`auditing event ` ``os.listvolumes`` with no " +"arguments." +msgstr "" + +#: library/os.rst:2308 msgid "" "Perform the equivalent of an :c:func:`!lstat` system call on the given path. " "Similar to :func:`~os.stat`, but does not follow symbolic links. Return a :" "class:`stat_result` object." msgstr "" -#: library/os.rst:2134 +#: library/os.rst:2312 msgid "" "On platforms that do not support symbolic links, this is an alias for :func:" "`~os.stat`." msgstr "" -#: library/os.rst:2137 +#: library/os.rst:2315 msgid "" "As of Python 3.3, this is equivalent to ``os.stat(path, dir_fd=dir_fd, " "follow_symlinks=False)``." msgstr "" -#: library/os.rst:2178 library/os.rst:2271 library/os.rst:2345 +#: library/os.rst:2356 library/os.rst:2449 library/os.rst:2523 msgid "" "This function can also support :ref:`paths relative to directory descriptors " "`." msgstr "" -#: library/os.rst:2354 library/os.rst:3149 +#: library/os.rst:2532 library/os.rst:3380 msgid "Added support for Windows 6.0 (Vista) symbolic links." msgstr "" -#: library/os.rst:2150 +#: library/os.rst:2328 msgid "Added the *dir_fd* parameter." msgstr "" -#: library/os.rst:2156 +#: library/os.rst:2334 msgid "" "On Windows, now opens reparse points that represent another path (name " "surrogates), including symbolic links and directory junctions. Other kinds " @@ -2331,18 +2525,18 @@ msgid "" "stat`." msgstr "" -#: library/os.rst:2165 +#: library/os.rst:2343 msgid "Create a directory named *path* with numeric mode *mode*." msgstr "" -#: library/os.rst:2167 +#: library/os.rst:2345 msgid "" "If the directory already exists, :exc:`FileExistsError` is raised. If a " "parent directory in the path does not exist, :exc:`FileNotFoundError` is " "raised." msgstr "" -#: library/os.rst:2172 +#: library/os.rst:2350 msgid "" "On some systems, *mode* is ignored. Where it is used, the current umask " "value is first masked out. If bits other than the last 9 (i.e. the last 3 " @@ -2351,25 +2545,25 @@ msgid "" "call :func:`chmod` explicitly to set them." msgstr "" -#: library/os.rst:2181 +#: library/os.rst:2359 msgid "" "It is also possible to create temporary directories; see the :mod:`tempfile` " "module's :func:`tempfile.mkdtemp` function." msgstr "" -#: library/os.rst:2218 +#: library/os.rst:2396 msgid "" "Raises an :ref:`auditing event ` ``os.mkdir`` with arguments " "``path``, ``mode``, ``dir_fd``." msgstr "" -#: library/os.rst:2199 +#: library/os.rst:2377 msgid "" "Recursive directory creation function. Like :func:`mkdir`, but makes all " "intermediate-level directories needed to contain the leaf directory." msgstr "" -#: library/os.rst:2202 +#: library/os.rst:2380 msgid "" "The *mode* parameter is passed to :func:`mkdir` for creating the leaf " "directory; see :ref:`the mkdir() description ` for how it is " @@ -2378,27 +2572,27 @@ msgid "" "file permission bits of existing parent directories are not changed." msgstr "" -#: library/os.rst:2208 +#: library/os.rst:2386 msgid "" "If *exist_ok* is ``False`` (the default), a :exc:`FileExistsError` is raised " "if the target directory already exists." msgstr "" -#: library/os.rst:2213 +#: library/os.rst:2391 msgid "" ":func:`makedirs` will become confused if the path elements to create " "include :data:`pardir` (eg. \"..\" on UNIX systems)." msgstr "" -#: library/os.rst:2216 +#: library/os.rst:2394 msgid "This function handles UNC paths correctly." msgstr "" -#: library/os.rst:2220 +#: library/os.rst:2398 msgid "The *exist_ok* parameter." msgstr "" -#: library/os.rst:2225 +#: library/os.rst:2403 msgid "" "Before Python 3.4.1, if *exist_ok* was ``True`` and the directory existed, :" "func:`makedirs` would still raise an error if *mode* did not match the mode " @@ -2406,19 +2600,19 @@ msgid "" "safely, it was removed in Python 3.4.1. See :issue:`21082`." msgstr "" -#: library/os.rst:2233 +#: library/os.rst:2411 msgid "" "The *mode* argument no longer affects the file permission bits of newly " "created intermediate-level directories." msgstr "" -#: library/os.rst:2240 +#: library/os.rst:2418 msgid "" "Create a FIFO (a named pipe) named *path* with numeric mode *mode*. The " "current umask value is first masked out from the mode." msgstr "" -#: library/os.rst:2246 +#: library/os.rst:2424 msgid "" "FIFOs are pipes that can be accessed like regular files. FIFOs exist until " "they are deleted (for example with :func:`os.unlink`). Generally, FIFOs are " @@ -2428,7 +2622,7 @@ msgid "" "rendezvous point." msgstr "" -#: library/os.rst:2263 +#: library/os.rst:2441 msgid "" "Create a filesystem node (file, device special file or named pipe) named " "*path*. *mode* specifies both the permissions to use and the type of node to " @@ -2439,23 +2633,23 @@ msgid "" "`os.makedev`), otherwise it is ignored." msgstr "" -#: library/os.rst:2285 +#: library/os.rst:2463 msgid "" "Extract the device major number from a raw device number (usually the :attr:" "`st_dev` or :attr:`st_rdev` field from :c:struct:`stat`)." msgstr "" -#: library/os.rst:2291 +#: library/os.rst:2469 msgid "" "Extract the device minor number from a raw device number (usually the :attr:" "`st_dev` or :attr:`st_rdev` field from :c:struct:`stat`)." msgstr "" -#: library/os.rst:2297 +#: library/os.rst:2475 msgid "Compose a raw device number from the major and minor device numbers." msgstr "" -#: library/os.rst:2302 +#: library/os.rst:2480 msgid "" "Return system configuration information relevant to a named file. *name* " "specifies the configuration value to retrieve; it may be a string which is " @@ -2466,19 +2660,19 @@ msgid "" "included in that mapping, passing an integer for *name* is also accepted." msgstr "" -#: library/os.rst:3008 library/os.rst:3177 +#: library/os.rst:3239 library/os.rst:3408 msgid "" "This function can support :ref:`specifying a file descriptor `." msgstr "" -#: library/os.rst:2326 +#: library/os.rst:2504 msgid "" "Dictionary mapping names accepted by :func:`pathconf` and :func:`fpathconf` " "to the integer values defined for those names by the host operating system. " "This can be used to determine the set of names known to the system." msgstr "" -#: library/os.rst:2335 +#: library/os.rst:2513 msgid "" "Return a string representing the path to which the symbolic link points. " "The result may be either an absolute or relative pathname; if it is " @@ -2486,7 +2680,7 @@ msgid "" "join(os.path.dirname(path), result)``." msgstr "" -#: library/os.rst:2340 +#: library/os.rst:2518 msgid "" "If the *path* is a string object (directly or indirectly through a :class:" "`PathLike` interface), the result will also be a string object, and the call " @@ -2494,41 +2688,41 @@ msgid "" "indirectly), the result will be a bytes object." msgstr "" -#: library/os.rst:2348 +#: library/os.rst:2526 msgid "" "When trying to resolve a path that may contain links, use :func:`~os.path." "realpath` to properly handle recursion and platform differences." msgstr "" -#: library/os.rst:2360 +#: library/os.rst:2538 msgid "Accepts a :term:`path-like object` on Unix." msgstr "" -#: library/os.rst:2363 +#: library/os.rst:2541 msgid "Accepts a :term:`path-like object` and a bytes object on Windows." msgstr "" -#: library/os.rst:2366 +#: library/os.rst:2544 msgid "" "Added support for directory junctions, and changed to return the " "substitution path (which typically includes ``\\\\?\\`` prefix) rather than " "the optional \"print name\" field that was previously returned." msgstr "" -#: library/os.rst:2373 +#: library/os.rst:2551 msgid "" "Remove (delete) the file *path*. If *path* is a directory, an :exc:" "`OSError` is raised. Use :func:`rmdir` to remove directories. If the file " "does not exist, a :exc:`FileNotFoundError` is raised." msgstr "" -#: library/os.rst:2490 library/os.rst:3128 +#: library/os.rst:2668 library/os.rst:3359 msgid "" "This function can support :ref:`paths relative to directory descriptors " "`." msgstr "" -#: library/os.rst:2380 +#: library/os.rst:2558 msgid "" "On Windows, attempting to remove a file that is in use causes an exception " "to be raised; on Unix, the directory entry is removed but the storage " @@ -2536,17 +2730,17 @@ msgid "" "longer in use." msgstr "" -#: library/os.rst:2384 +#: library/os.rst:2562 msgid "This function is semantically identical to :func:`unlink`." msgstr "" -#: library/os.rst:2408 library/os.rst:3199 +#: library/os.rst:2586 library/os.rst:3430 msgid "" "Raises an :ref:`auditing event ` ``os.remove`` with arguments " "``path``, ``dir_fd``." msgstr "" -#: library/os.rst:2399 +#: library/os.rst:2577 msgid "" "Remove directories recursively. Works like :func:`rmdir` except that, if " "the leaf directory is successfully removed, :func:`removedirs` tries to " @@ -2558,20 +2752,20 @@ msgid "" "could not be successfully removed." msgstr "" -#: library/os.rst:2416 +#: library/os.rst:2594 msgid "" "Rename the file or directory *src* to *dst*. If *dst* exists, the operation " "will fail with an :exc:`OSError` subclass in a number of cases:" msgstr "" -#: library/os.rst:2419 +#: library/os.rst:2597 msgid "" "On Windows, if *dst* exists a :exc:`FileExistsError` is always raised. The " "operation may fail if *src* and *dst* are on different filesystems. Use :" "func:`shutil.move` to support moves to a different filesystem." msgstr "" -#: library/os.rst:2423 +#: library/os.rst:2601 msgid "" "On Unix, if *src* is a file and *dst* is a directory or vice-versa, an :exc:" "`IsADirectoryError` or a :exc:`NotADirectoryError` will be raised " @@ -2583,29 +2777,29 @@ msgid "" "operation (this is a POSIX requirement)." msgstr "" -#: library/os.rst:2472 +#: library/os.rst:2650 msgid "" "This function can support specifying *src_dir_fd* and/or *dst_dir_fd* to " "supply :ref:`paths relative to directory descriptors `." msgstr "" -#: library/os.rst:2435 +#: library/os.rst:2613 msgid "" "If you want cross-platform overwriting of the destination, use :func:" "`replace`." msgstr "" -#: library/os.rst:2458 library/os.rst:2475 +#: library/os.rst:2636 library/os.rst:2653 msgid "" "Raises an :ref:`auditing event ` ``os.rename`` with arguments " "``src``, ``dst``, ``src_dir_fd``, ``dst_dir_fd``." msgstr "" -#: library/os.rst:2439 +#: library/os.rst:2617 msgid "The *src_dir_fd* and *dst_dir_fd* arguments." msgstr "" -#: library/os.rst:2448 +#: library/os.rst:2626 msgid "" "Recursive directory or file renaming function. Works like :func:`rename`, " "except creation of any intermediate directories needed to make the new " @@ -2614,17 +2808,17 @@ msgid "" "using :func:`removedirs`." msgstr "" -#: library/os.rst:2455 +#: library/os.rst:2633 msgid "" "This function can fail with the new directory structure made if you lack " "permissions needed to remove the leaf directory or file." msgstr "" -#: library/os.rst:2460 +#: library/os.rst:2638 msgid "Accepts a :term:`path-like object` for *old* and *new*." msgstr "" -#: library/os.rst:2466 +#: library/os.rst:2644 msgid "" "Rename the file or directory *src* to *dst*. If *dst* is a non-empty " "directory, :exc:`OSError` will be raised. If *dst* exists and is a file, it " @@ -2633,7 +2827,7 @@ msgid "" "renaming will be an atomic operation (this is a POSIX requirement)." msgstr "" -#: library/os.rst:2485 +#: library/os.rst:2663 msgid "" "Remove (delete) the directory *path*. If the directory does not exist or is " "not empty, a :exc:`FileNotFoundError` or an :exc:`OSError` is raised " @@ -2641,17 +2835,17 @@ msgid "" "rmtree` can be used." msgstr "" -#: library/os.rst:2493 +#: library/os.rst:2671 msgid "" "Raises an :ref:`auditing event ` ``os.rmdir`` with arguments " "``path``, ``dir_fd``." msgstr "" -#: library/os.rst:3201 +#: library/os.rst:3432 msgid "The *dir_fd* parameter." msgstr "" -#: library/os.rst:2504 +#: library/os.rst:2682 msgid "" "Return an iterator of :class:`os.DirEntry` objects corresponding to the " "entries in the directory given by *path*. The entries are yielded in " @@ -2661,7 +2855,7 @@ msgid "" "unspecified." msgstr "" -#: library/os.rst:2511 +#: library/os.rst:2689 msgid "" "Using :func:`scandir` instead of :func:`listdir` can significantly increase " "the performance of code that also needs file type or file attribute " @@ -2673,7 +2867,7 @@ msgid "" "Unix but only requires one for symbolic links on Windows." msgstr "" -#: library/os.rst:2521 +#: library/os.rst:2699 msgid "" "*path* may be a :term:`path-like object`. If *path* is of type ``bytes`` " "(directly or indirectly through the :class:`PathLike` interface), the type " @@ -2682,30 +2876,30 @@ msgid "" "they will be of type ``str``." msgstr "" -#: library/os.rst:2530 +#: library/os.rst:2708 msgid "" "Raises an :ref:`auditing event ` ``os.scandir`` with argument " "``path``." msgstr "" -#: library/os.rst:2532 +#: library/os.rst:2710 msgid "" "The :func:`scandir` iterator supports the :term:`context manager` protocol " "and has the following method:" msgstr "" -#: library/os.rst:2537 +#: library/os.rst:2715 msgid "Close the iterator and free acquired resources." msgstr "" -#: library/os.rst:2539 +#: library/os.rst:2717 msgid "" "This is called automatically when the iterator is exhausted or garbage " "collected, or when an error happens during iterating. However it is " "advisable to call it explicitly or use the :keyword:`with` statement." msgstr "" -#: library/os.rst:2546 +#: library/os.rst:2724 msgid "" "The following example shows a simple use of :func:`scandir` to display all " "the files (excluding directories) in the given *path* that don't start with " @@ -2713,7 +2907,7 @@ msgid "" "system call::" msgstr "" -#: library/os.rst:2558 +#: library/os.rst:2736 msgid "" "On Unix-based systems, :func:`scandir` uses the system's `opendir() `_ and " @@ -2724,7 +2918,7 @@ msgid "" "desktop/aa364428(v=vs.85).aspx>`_ functions." msgstr "" -#: library/os.rst:2570 +#: library/os.rst:2748 msgid "" "Added support for the :term:`context manager` protocol and the :func:" "`~scandir.close()` method. If a :func:`scandir` iterator is neither " @@ -2732,28 +2926,28 @@ msgid "" "its destructor." msgstr "" -#: library/os.rst:2576 +#: library/os.rst:2754 msgid "The function accepts a :term:`path-like object`." msgstr "" -#: library/os.rst:2578 +#: library/os.rst:2756 msgid "Added support for :ref:`file descriptors ` on Unix." msgstr "" -#: library/os.rst:2584 +#: library/os.rst:2762 msgid "" "Object yielded by :func:`scandir` to expose the file path and other file " "attributes of a directory entry." msgstr "" -#: library/os.rst:2587 +#: library/os.rst:2765 msgid "" ":func:`scandir` will provide as much of this information as possible without " "making additional system calls. When a ``stat()`` or ``lstat()`` system call " "is made, the ``os.DirEntry`` object will cache the result." msgstr "" -#: library/os.rst:2591 +#: library/os.rst:2769 msgid "" "``os.DirEntry`` instances are not intended to be stored in long-lived data " "structures; if you know the file metadata has changed or if a long time has " @@ -2761,7 +2955,7 @@ msgid "" "up-to-date information." msgstr "" -#: library/os.rst:2596 +#: library/os.rst:2774 msgid "" "Because the ``os.DirEntry`` methods can make operating system calls, they " "may also raise :exc:`OSError`. If you need very fine-grained control over " @@ -2769,29 +2963,29 @@ msgid "" "methods and handle as appropriate." msgstr "" -#: library/os.rst:2601 +#: library/os.rst:2779 msgid "" "To be directly usable as a :term:`path-like object`, ``os.DirEntry`` " "implements the :class:`PathLike` interface." msgstr "" -#: library/os.rst:2604 +#: library/os.rst:2782 msgid "Attributes and methods on a ``os.DirEntry`` instance are as follows:" msgstr "" -#: library/os.rst:2608 +#: library/os.rst:2786 msgid "" "The entry's base filename, relative to the :func:`scandir` *path* argument." msgstr "" -#: library/os.rst:2611 +#: library/os.rst:2789 msgid "" "The :attr:`name` attribute will be ``bytes`` if the :func:`scandir` *path* " "argument is of type ``bytes`` and ``str`` otherwise. Use :func:`~os." "fsdecode` to decode byte filenames." msgstr "" -#: library/os.rst:2617 +#: library/os.rst:2795 msgid "" "The entry's full path name: equivalent to ``os.path.join(scandir_path, entry." "name)`` where *scandir_path* is the :func:`scandir` *path* argument. The " @@ -2801,51 +2995,51 @@ msgid "" "attribute." msgstr "" -#: library/os.rst:2624 +#: library/os.rst:2802 msgid "" "The :attr:`path` attribute will be ``bytes`` if the :func:`scandir` *path* " "argument is of type ``bytes`` and ``str`` otherwise. Use :func:`~os." "fsdecode` to decode byte filenames." msgstr "" -#: library/os.rst:2630 +#: library/os.rst:2808 msgid "Return the inode number of the entry." msgstr "" -#: library/os.rst:2632 +#: library/os.rst:2810 msgid "" "The result is cached on the ``os.DirEntry`` object. Use ``os.stat(entry." "path, follow_symlinks=False).st_ino`` to fetch up-to-date information." msgstr "" -#: library/os.rst:2636 +#: library/os.rst:2814 msgid "" "On the first, uncached call, a system call is required on Windows but not on " "Unix." msgstr "" -#: library/os.rst:2641 +#: library/os.rst:2819 msgid "" "Return ``True`` if this entry is a directory or a symbolic link pointing to " "a directory; return ``False`` if the entry is or points to any other kind of " "file, or if it doesn't exist anymore." msgstr "" -#: library/os.rst:2645 +#: library/os.rst:2823 msgid "" "If *follow_symlinks* is ``False``, return ``True`` only if this entry is a " "directory (without following symlinks); return ``False`` if the entry is any " "other kind of file or if it doesn't exist anymore." msgstr "" -#: library/os.rst:2649 +#: library/os.rst:2827 msgid "" "The result is cached on the ``os.DirEntry`` object, with a separate cache " "for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` along " "with :func:`stat.S_ISDIR` to fetch up-to-date information." msgstr "" -#: library/os.rst:2653 +#: library/os.rst:2831 msgid "" "On the first, uncached call, no system call is required in most cases. " "Specifically, for non-symlinks, neither Windows or Unix require a system " @@ -2855,46 +3049,46 @@ msgid "" "is ``False``." msgstr "" -#: library/os.rst:2690 +#: library/os.rst:2868 msgid "" "This method can raise :exc:`OSError`, such as :exc:`PermissionError`, but :" "exc:`FileNotFoundError` is caught and not raised." msgstr "" -#: library/os.rst:2665 +#: library/os.rst:2843 msgid "" "Return ``True`` if this entry is a file or a symbolic link pointing to a " "file; return ``False`` if the entry is or points to a directory or other non-" "file entry, or if it doesn't exist anymore." msgstr "" -#: library/os.rst:2669 +#: library/os.rst:2847 msgid "" "If *follow_symlinks* is ``False``, return ``True`` only if this entry is a " "file (without following symlinks); return ``False`` if the entry is a " "directory or other non-file entry, or if it doesn't exist anymore." msgstr "" -#: library/os.rst:2673 +#: library/os.rst:2851 msgid "" "The result is cached on the ``os.DirEntry`` object. Caching, system calls " "made, and exceptions raised are as per :func:`~os.DirEntry.is_dir`." msgstr "" -#: library/os.rst:2678 +#: library/os.rst:2856 msgid "" "Return ``True`` if this entry is a symbolic link (even if broken); return " "``False`` if the entry points to a directory or any kind of file, or if it " "doesn't exist anymore." msgstr "" -#: library/os.rst:2682 +#: library/os.rst:2860 msgid "" "The result is cached on the ``os.DirEntry`` object. Call :func:`os.path." "islink` to fetch up-to-date information." msgstr "" -#: library/os.rst:2685 +#: library/os.rst:2863 msgid "" "On the first, uncached call, no system call is required in most cases. " "Specifically, neither Windows or Unix require a system call, except on " @@ -2902,49 +3096,70 @@ msgid "" "``dirent.d_type == DT_UNKNOWN``." msgstr "" -#: library/os.rst:2695 +#: library/os.rst:2873 +msgid "" +"Return ``True`` if this entry is a junction (even if broken); return " +"``False`` if the entry points to a regular directory, any kind of file, a " +"symlink, or if it doesn't exist anymore." +msgstr "" + +#: library/os.rst:2877 +msgid "" +"The result is cached on the ``os.DirEntry`` object. Call :func:`os.path." +"isjunction` to fetch up-to-date information." +msgstr "" + +#: library/os.rst:2884 msgid "" "Return a :class:`stat_result` object for this entry. This method follows " "symbolic links by default; to stat a symbolic link add the " "``follow_symlinks=False`` argument." msgstr "" -#: library/os.rst:2699 +#: library/os.rst:2888 msgid "" "On Unix, this method always requires a system call. On Windows, it only " "requires a system call if *follow_symlinks* is ``True`` and the entry is a " "reparse point (for example, a symbolic link or directory junction)." msgstr "" -#: library/os.rst:2704 +#: library/os.rst:2893 msgid "" "On Windows, the ``st_ino``, ``st_dev`` and ``st_nlink`` attributes of the :" "class:`stat_result` are always set to zero. Call :func:`os.stat` to get " "these attributes." msgstr "" -#: library/os.rst:2708 +#: library/os.rst:2897 msgid "" "The result is cached on the ``os.DirEntry`` object, with a separate cache " "for *follow_symlinks* ``True`` and ``False``. Call :func:`os.stat` to fetch " "up-to-date information." msgstr "" -#: library/os.rst:2712 +#: library/os.rst:2901 msgid "" "Note that there is a nice correspondence between several attributes and " "methods of ``os.DirEntry`` and of :class:`pathlib.Path`. In particular, the " "``name`` attribute has the same meaning, as do the ``is_dir()``, " -"``is_file()``, ``is_symlink()`` and ``stat()`` methods." +"``is_file()``, ``is_symlink()``, ``is_junction()``, and ``stat()`` methods." msgstr "" -#: library/os.rst:2720 +#: library/os.rst:2909 msgid "" "Added support for the :class:`~os.PathLike` interface. Added support for :" "class:`bytes` paths on Windows." msgstr "" -#: library/os.rst:2727 +#: library/os.rst:2913 +msgid "" +"The ``st_ctime`` attribute of a stat result is deprecated on Windows. The " +"file creation time is properly available as ``st_birthtime``, and in the " +"future ``st_ctime`` may be changed to return zero or the metadata change " +"time, if available." +msgstr "" + +#: library/os.rst:2922 msgid "" "Get the status of a file or a file descriptor. Perform the equivalent of a :" "c:func:`stat` system call on the given path. *path* may be specified as " @@ -2953,19 +3168,19 @@ msgid "" "`stat_result` object." msgstr "" -#: library/os.rst:2733 +#: library/os.rst:2928 msgid "" "This function normally follows symlinks; to stat a symlink add the argument " "``follow_symlinks=False``, or use :func:`lstat`." msgstr "" -#: library/os.rst:3567 library/os.rst:3599 library/os.rst:3619 +#: library/os.rst:3798 library/os.rst:3830 library/os.rst:3850 msgid "" "This function can support :ref:`specifying a file descriptor ` and :" "ref:`not following symlinks `." msgstr "" -#: library/os.rst:2739 +#: library/os.rst:2934 msgid "" "On Windows, passing ``follow_symlinks=False`` will disable following all " "name-surrogate reparse points, which includes symlinks and directory " @@ -2979,21 +3194,21 @@ msgid "" "junction points, which will raise the usual exceptions." msgstr "" -#: library/os.rst:3487 +#: library/os.rst:3718 msgid "Example::" msgstr "" -#: library/os.rst:2765 +#: library/os.rst:2960 msgid ":func:`fstat` and :func:`lstat` functions." msgstr "" -#: library/os.rst:2767 +#: library/os.rst:2962 msgid "" "Added the *dir_fd* and *follow_symlinks* arguments, specifying a file " "descriptor instead of a path." msgstr "" -#: library/os.rst:2774 +#: library/os.rst:2969 msgid "" "On Windows, all reparse points that can be resolved by the operating system " "are now followed, and passing ``follow_symlinks=False`` disables following " @@ -3003,191 +3218,212 @@ msgid "" "of raising an error." msgstr "" -#: library/os.rst:2785 +#: library/os.rst:2980 msgid "" "Object whose attributes correspond roughly to the members of the :c:struct:" "`stat` structure. It is used for the result of :func:`os.stat`, :func:`os." "fstat` and :func:`os.lstat`." msgstr "" -#: library/os.rst:2789 +#: library/os.rst:2984 msgid "Attributes:" msgstr "" -#: library/os.rst:2793 +#: library/os.rst:2988 msgid "File mode: file type and file mode bits (permissions)." msgstr "" -#: library/os.rst:2797 +#: library/os.rst:2992 msgid "" "Platform dependent, but if non-zero, uniquely identifies the file for a " "given value of ``st_dev``. Typically:" msgstr "" -#: library/os.rst:2800 +#: library/os.rst:2995 msgid "the inode number on Unix," msgstr "" -#: library/os.rst:2801 +#: library/os.rst:2996 msgid "" "the `file index `_ on " "Windows" msgstr "" -#: library/os.rst:2807 +#: library/os.rst:3002 msgid "Identifier of the device on which this file resides." msgstr "" -#: library/os.rst:2811 +#: library/os.rst:3006 msgid "Number of hard links." msgstr "" -#: library/os.rst:2815 +#: library/os.rst:3010 msgid "User identifier of the file owner." msgstr "" -#: library/os.rst:2819 +#: library/os.rst:3014 msgid "Group identifier of the file owner." msgstr "" -#: library/os.rst:2823 +#: library/os.rst:3018 msgid "" "Size of the file in bytes, if it is a regular file or a symbolic link. The " "size of a symbolic link is the length of the pathname it contains, without a " "terminating null byte." msgstr "" -#: library/os.rst:2827 +#: library/os.rst:3022 msgid "Timestamps:" msgstr "" -#: library/os.rst:2831 +#: library/os.rst:3026 msgid "Time of most recent access expressed in seconds." msgstr "" -#: library/os.rst:2835 +#: library/os.rst:3030 msgid "Time of most recent content modification expressed in seconds." msgstr "" -#: library/os.rst:2855 -msgid "Platform dependent:" +#: library/os.rst:3034 +msgid "Time of most recent metadata change expressed in seconds." msgstr "" -#: library/os.rst:2857 -msgid "the time of most recent metadata change on Unix," -msgstr "" - -#: library/os.rst:2842 -msgid "the time of creation on Windows, expressed in seconds." +#: library/os.rst:3036 +msgid "" +"``st_ctime`` is deprecated on Windows. Use ``st_birthtime`` for the file " +"creation time. In the future, ``st_ctime`` will contain the time of the most " +"recent metadata change, as for other platforms." msgstr "" -#: library/os.rst:2846 +#: library/os.rst:3043 msgid "Time of most recent access expressed in nanoseconds as an integer." msgstr "" -#: library/os.rst:2850 +#: library/os.rst:3047 msgid "" "Time of most recent content modification expressed in nanoseconds as an " "integer." msgstr "" -#: library/os.rst:2858 +#: library/os.rst:3052 msgid "" -"the time of creation on Windows, expressed in nanoseconds as an integer." +"Time of most recent metadata change expressed in nanoseconds as an integer." msgstr "" -#: library/os.rst:2863 +#: library/os.rst:3055 msgid "" -"The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, " -"and :attr:`st_ctime` attributes depend on the operating system and the file " -"system. For example, on Windows systems using the FAT or FAT32 file " -"systems, :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` has " -"only 1-day resolution. See your operating system documentation for details." +"``st_ctime_ns`` is deprecated on Windows. Use ``st_birthtime_ns`` for the " +"file creation time. In the future, ``st_ctime`` will contain the time of the " +"most recent metadata change, as for other platforms." msgstr "" -#: library/os.rst:2870 +#: library/os.rst:3062 msgid "" -"Similarly, although :attr:`st_atime_ns`, :attr:`st_mtime_ns`, and :attr:" -"`st_ctime_ns` are always expressed in nanoseconds, many systems do not " -"provide nanosecond precision. On systems that do provide nanosecond " -"precision, the floating-point object used to store :attr:`st_atime`, :attr:" -"`st_mtime`, and :attr:`st_ctime` cannot preserve all of it, and as such will " -"be slightly inexact. If you need the exact timestamps you should always use :" -"attr:`st_atime_ns`, :attr:`st_mtime_ns`, and :attr:`st_ctime_ns`." +"Time of file creation expressed in seconds. This attribute is not always " +"available, and may raise :exc:`AttributeError`." +msgstr "" + +#: library/os.rst:3065 +msgid "``st_birthtime`` is now available on Windows." msgstr "" -#: library/os.rst:2879 +#: library/os.rst:3070 +msgid "" +"Time of file creation expressed in nanoseconds as an integer. This attribute " +"is not always available, and may raise :exc:`AttributeError`." +msgstr "" + +#: library/os.rst:3078 +msgid "" +"The exact meaning and resolution of the :attr:`st_atime`, :attr:`st_mtime`, :" +"attr:`st_ctime` and :attr:`st_birthtime` attributes depend on the operating " +"system and the file system. For example, on Windows systems using the FAT32 " +"file systems, :attr:`st_mtime` has 2-second resolution, and :attr:`st_atime` " +"has only 1-day resolution. See your operating system documentation for " +"details." +msgstr "" + +#: library/os.rst:3085 +msgid "" +"Similarly, although :attr:`st_atime_ns`, :attr:`st_mtime_ns`, :attr:" +"`st_ctime_ns` and :attr:`st_birthtime_ns` are always expressed in " +"nanoseconds, many systems do not provide nanosecond precision. On systems " +"that do provide nanosecond precision, the floating-point object used to " +"store :attr:`st_atime`, :attr:`st_mtime`, :attr:`st_ctime` and :attr:" +"`st_birthtime` cannot preserve all of it, and as such will be slightly " +"inexact. If you need the exact timestamps you should always use :attr:" +"`st_atime_ns`, :attr:`st_mtime_ns`, :attr:`st_ctime_ns` and :attr:" +"`st_birthtime_ns`." +msgstr "" + +#: library/os.rst:3095 msgid "" "On some Unix systems (such as Linux), the following attributes may also be " "available:" msgstr "" -#: library/os.rst:2884 +#: library/os.rst:3100 msgid "" "Number of 512-byte blocks allocated for file. This may be smaller than :attr:" "`st_size`/512 when the file has holes." msgstr "" -#: library/os.rst:2889 +#: library/os.rst:3105 msgid "" "\"Preferred\" blocksize for efficient file system I/O. Writing to a file in " "smaller chunks may cause an inefficient read-modify-rewrite." msgstr "" -#: library/os.rst:2894 +#: library/os.rst:3110 msgid "Type of device if an inode device." msgstr "" -#: library/os.rst:2898 +#: library/os.rst:3114 msgid "User defined flags for file." msgstr "" -#: library/os.rst:2900 +#: library/os.rst:3116 msgid "" "On other Unix systems (such as FreeBSD), the following attributes may be " "available (but may be only filled out if root tries to use them):" msgstr "" -#: library/os.rst:2905 +#: library/os.rst:3121 msgid "File generation number." msgstr "" -#: library/os.rst:2909 -msgid "Time of file creation." -msgstr "" - -#: library/os.rst:2911 +#: library/os.rst:3123 msgid "" "On Solaris and derivatives, the following attributes may also be available:" msgstr "" -#: library/os.rst:2916 +#: library/os.rst:3128 msgid "" "String that uniquely identifies the type of the filesystem that contains the " "file." msgstr "" -#: library/os.rst:2919 +#: library/os.rst:3131 msgid "On macOS systems, the following attributes may also be available:" msgstr "" -#: library/os.rst:2923 +#: library/os.rst:3135 msgid "Real size of the file." msgstr "" -#: library/os.rst:2927 +#: library/os.rst:3139 msgid "Creator of the file." msgstr "" -#: library/os.rst:2931 +#: library/os.rst:3143 msgid "File type." msgstr "" -#: library/os.rst:2933 +#: library/os.rst:3145 msgid "On Windows systems, the following attributes are also available:" msgstr "" -#: library/os.rst:2937 +#: library/os.rst:3149 msgid "" "Windows file attributes: ``dwFileAttributes`` member of the " "``BY_HANDLE_FILE_INFORMATION`` structure returned by :c:func:`!" @@ -3195,7 +3431,7 @@ msgid "" "FILE_ATTRIBUTE_ARCHIVE>` constants in the :mod:`stat` module." msgstr "" -#: library/os.rst:2945 +#: library/os.rst:3157 msgid "" "When :attr:`st_file_attributes` has the :const:`~stat." "FILE_ATTRIBUTE_REPARSE_POINT` set, this field contains the tag identifying " @@ -3203,14 +3439,14 @@ msgid "" "IO_REPARSE_TAG_SYMLINK>` constants in the :mod:`stat` module." msgstr "" -#: library/os.rst:2950 +#: library/os.rst:3162 msgid "" "The standard module :mod:`stat` defines functions and constants that are " "useful for extracting information from a :c:struct:`stat` structure. (On " "Windows, some items are filled with dummy values.)" msgstr "" -#: library/os.rst:2954 +#: library/os.rst:3166 msgid "" "For backward compatibility, a :class:`stat_result` instance is also " "accessible as a tuple of at least 10 integers giving the most important (and " @@ -3222,35 +3458,59 @@ msgid "" "class:`stat_result` as a tuple always returns integers." msgstr "" -#: library/os.rst:2963 +#: library/os.rst:3175 msgid "" "Added the :attr:`st_atime_ns`, :attr:`st_mtime_ns`, and :attr:`st_ctime_ns` " "members." msgstr "" -#: library/os.rst:2967 +#: library/os.rst:3179 msgid "Added the :attr:`st_file_attributes` member on Windows." msgstr "" -#: library/os.rst:2970 +#: library/os.rst:3182 msgid "Windows now returns the file index as :attr:`st_ino` when available." msgstr "" -#: library/os.rst:2974 +#: library/os.rst:3186 msgid "Added the :attr:`st_fstype` member to Solaris/derivatives." msgstr "" -#: library/os.rst:2977 +#: library/os.rst:3189 msgid "Added the :attr:`st_reparse_tag` member on Windows." msgstr "" -#: library/os.rst:2980 +#: library/os.rst:3192 msgid "" "On Windows, the :attr:`st_mode` member now identifies special files as :" "const:`S_IFCHR`, :const:`S_IFIFO` or :const:`S_IFBLK` as appropriate." msgstr "" -#: library/os.rst:2987 +#: library/os.rst:3197 +msgid "" +"On Windows, :attr:`st_ctime` is deprecated. Eventually, it will contain the " +"last metadata change time, for consistency with other platforms, but for now " +"still contains creation time. Use :attr:`st_birthtime` for the creation time." +msgstr "" + +#: library/os.rst:3203 +msgid "" +"On Windows, :attr:`st_ino` may now be up to 128 bits, depending on the file " +"system. Previously it would not be above 64 bits, and larger file " +"identifiers would be arbitrarily packed." +msgstr "" + +#: library/os.rst:3208 +msgid "" +"On Windows, :attr:`st_rdev` no longer returns a value. Previously it would " +"contain the same as :attr:`st_dev`, which was incorrect." +msgstr "" + +#: library/os.rst:3212 +msgid "Added the :attr:`st_birthtime` member on Windows." +msgstr "" + +#: library/os.rst:3218 msgid "" "Perform a :c:func:`!statvfs` system call on the given path. The return " "value is an object whose attributes describe the filesystem on the given " @@ -3260,7 +3520,7 @@ msgid "" "`f_favail`, :attr:`f_flag`, :attr:`f_namemax`, :attr:`f_fsid`." msgstr "" -#: library/os.rst:2994 +#: library/os.rst:3225 msgid "" "Two module-level constants are defined for the :attr:`f_flag` attribute's " "bit-flags: if :const:`ST_RDONLY` is set, the filesystem is mounted read-" @@ -3268,7 +3528,7 @@ msgid "" "are disabled or not supported." msgstr "" -#: library/os.rst:2999 +#: library/os.rst:3230 msgid "" "Additional module-level constants are defined for GNU/glibc based systems. " "These are :const:`ST_NODEV` (disallow access to device special files), :" @@ -3281,11 +3541,11 @@ msgid "" "relative to mtime/ctime)." msgstr "" -#: library/os.rst:3012 +#: library/os.rst:3243 msgid "The :const:`ST_RDONLY` and :const:`ST_NOSUID` constants were added." msgstr "" -#: library/os.rst:3018 +#: library/os.rst:3249 msgid "" "The :const:`ST_NODEV`, :const:`ST_NOEXEC`, :const:`ST_SYNCHRONOUS`, :const:" "`ST_MANDLOCK`, :const:`ST_WRITE`, :const:`ST_APPEND`, :const:" @@ -3293,11 +3553,11 @@ msgid "" "`ST_RELATIME` constants were added." msgstr "" -#: library/os.rst:3027 +#: library/os.rst:3258 msgid "Added :attr:`f_fsid`." msgstr "" -#: library/os.rst:3033 +#: library/os.rst:3264 msgid "" "A :class:`set` object indicating which functions in the :mod:`os` module " "accept an open file descriptor for their *dir_fd* parameter. Different " @@ -3309,7 +3569,7 @@ msgid "" "(Specifying ``None`` for *dir_fd* is always supported on all platforms.)" msgstr "" -#: library/os.rst:3043 +#: library/os.rst:3274 msgid "" "To check whether a particular function accepts an open file descriptor for " "its *dir_fd* parameter, use the ``in`` operator on ``supports_dir_fd``. As " @@ -3317,13 +3577,13 @@ msgid "" "open file descriptors for *dir_fd* on the local platform::" msgstr "" -#: library/os.rst:3050 +#: library/os.rst:3281 msgid "" "Currently *dir_fd* parameters only work on Unix platforms; none of them work " "on Windows." msgstr "" -#: library/os.rst:3058 +#: library/os.rst:3289 msgid "" "A :class:`set` object indicating whether :func:`os.access` permits " "specifying ``True`` for its *effective_ids* parameter on the local platform. " @@ -3332,19 +3592,19 @@ msgid "" "func:`os.access`; otherwise it will be empty." msgstr "" -#: library/os.rst:3064 +#: library/os.rst:3295 msgid "" "This expression evaluates to ``True`` if :func:`os.access` supports " "``effective_ids=True`` on the local platform::" msgstr "" -#: library/os.rst:3069 +#: library/os.rst:3300 msgid "" "Currently *effective_ids* is only supported on Unix platforms; it does not " "work on Windows." msgstr "" -#: library/os.rst:3077 +#: library/os.rst:3308 msgid "" "A :class:`set` object indicating which functions in the :mod:`os` module " "permit specifying their *path* parameter as an open file descriptor on the " @@ -3353,7 +3613,7 @@ msgid "" "*path* arguments is not available on all platforms Python supports." msgstr "" -#: library/os.rst:3084 +#: library/os.rst:3315 msgid "" "To determine whether a particular function permits specifying an open file " "descriptor for its *path* parameter, use the ``in`` operator on " @@ -3362,7 +3622,7 @@ msgid "" "platform::" msgstr "" -#: library/os.rst:3097 +#: library/os.rst:3328 msgid "" "A :class:`set` object indicating which functions in the :mod:`os` module " "accept ``False`` for their *follow_symlinks* parameter on the local " @@ -3375,7 +3635,7 @@ msgid "" "on all platforms.)" msgstr "" -#: library/os.rst:3107 +#: library/os.rst:3338 msgid "" "To check whether a particular function accepts ``False`` for its " "*follow_symlinks* parameter, use the ``in`` operator on " @@ -3384,11 +3644,11 @@ msgid "" "stat` on the local platform::" msgstr "" -#: library/os.rst:3120 +#: library/os.rst:3351 msgid "Create a symbolic link pointing to *src* named *dst*." msgstr "" -#: library/os.rst:3122 +#: library/os.rst:3353 msgid "" "On Windows, a symlink represents either a file or a directory, and does not " "morph to the target dynamically. If the target is present, the type of the " @@ -3398,7 +3658,7 @@ msgid "" "ignored." msgstr "" -#: library/os.rst:3133 +#: library/os.rst:3364 msgid "" "On newer versions of Windows 10, unprivileged accounts can create symlinks " "if Developer Mode is enabled. When Developer Mode is not available/enabled, " @@ -3406,83 +3666,83 @@ msgid "" "must be run as an administrator." msgstr "" -#: library/os.rst:3139 +#: library/os.rst:3370 msgid "" ":exc:`OSError` is raised when the function is called by an unprivileged user." msgstr "" -#: library/os.rst:3142 +#: library/os.rst:3373 msgid "" "Raises an :ref:`auditing event ` ``os.symlink`` with arguments " "``src``, ``dst``, ``dir_fd``." msgstr "" -#: library/os.rst:3152 +#: library/os.rst:3383 msgid "" "Added the *dir_fd* argument, and now allow *target_is_directory* on non-" "Windows platforms." msgstr "" -#: library/os.rst:3159 +#: library/os.rst:3390 msgid "Added support for unelevated symlinks on Windows with Developer Mode." msgstr "" -#: library/os.rst:3165 +#: library/os.rst:3396 msgid "Force write of everything to disk." msgstr "" -#: library/os.rst:3174 +#: library/os.rst:3405 msgid "" "Truncate the file corresponding to *path*, so that it is at most *length* " "bytes in size." msgstr "" -#: library/os.rst:3179 +#: library/os.rst:3410 msgid "" "Raises an :ref:`auditing event ` ``os.truncate`` with arguments " "``path``, ``length``." msgstr "" -#: library/os.rst:3194 +#: library/os.rst:3425 msgid "" "Remove (delete) the file *path*. This function is semantically identical " "to :func:`remove`; the ``unlink`` name is its traditional Unix name. Please " "see the documentation for :func:`remove` for further information." msgstr "" -#: library/os.rst:3210 +#: library/os.rst:3441 msgid "Set the access and modified times of the file specified by *path*." msgstr "" -#: library/os.rst:3212 +#: library/os.rst:3443 msgid "" ":func:`utime` takes two optional parameters, *times* and *ns*. These specify " "the times set on *path* and are used as follows:" msgstr "" -#: library/os.rst:3215 +#: library/os.rst:3446 msgid "" "If *ns* is specified, it must be a 2-tuple of the form ``(atime_ns, " "mtime_ns)`` where each member is an int expressing nanoseconds." msgstr "" -#: library/os.rst:3218 +#: library/os.rst:3449 msgid "" "If *times* is not ``None``, it must be a 2-tuple of the form ``(atime, " "mtime)`` where each member is an int or float expressing seconds." msgstr "" -#: library/os.rst:3221 +#: library/os.rst:3452 msgid "" "If *times* is ``None`` and *ns* is unspecified, this is equivalent to " "specifying ``ns=(atime_ns, mtime_ns)`` where both times are the current time." msgstr "" -#: library/os.rst:3225 +#: library/os.rst:3456 msgid "It is an error to specify tuples for both *times* and *ns*." msgstr "" -#: library/os.rst:3227 +#: library/os.rst:3458 msgid "" "Note that the exact times you set here may not be returned by a subsequent :" "func:`~os.stat` call, depending on the resolution with which your operating " @@ -3492,19 +3752,19 @@ msgid "" "func:`utime`." msgstr "" -#: library/os.rst:3238 +#: library/os.rst:3469 msgid "" "Raises an :ref:`auditing event ` ``os.utime`` with arguments " "``path``, ``times``, ``ns``, ``dir_fd``." msgstr "" -#: library/os.rst:3240 +#: library/os.rst:3471 msgid "" "Added support for specifying *path* as an open file descriptor, and the " "*dir_fd*, *follow_symlinks*, and *ns* parameters." msgstr "" -#: library/os.rst:3254 +#: library/os.rst:3485 msgid "" "Generate the file names in a directory tree by walking the tree either top-" "down or bottom-up. For each directory in the tree rooted at directory *top* " @@ -3512,7 +3772,7 @@ msgid "" "filenames)``." msgstr "" -#: library/os.rst:3259 +#: library/os.rst:3490 msgid "" "*dirpath* is a string, the path to the directory. *dirnames* is a list of " "the names of the subdirectories in *dirpath* (including symlinks to " @@ -3526,7 +3786,7 @@ msgid "" "unspecified." msgstr "" -#: library/os.rst:3270 +#: library/os.rst:3501 msgid "" "If optional argument *topdown* is ``True`` or not specified, the triple for " "a directory is generated before the triples for any of its subdirectories " @@ -3537,7 +3797,7 @@ msgid "" "its subdirectories are generated." msgstr "" -#: library/os.rst:3278 +#: library/os.rst:3509 msgid "" "When *topdown* is ``True``, the caller can modify the *dirnames* list in-" "place (perhaps using :keyword:`del` or slice assignment), and :func:`walk` " @@ -3550,7 +3810,7 @@ msgid "" "itself is generated." msgstr "" -#: library/os.rst:3287 +#: library/os.rst:3518 msgid "" "By default, errors from the :func:`scandir` call are ignored. If optional " "argument *onerror* is specified, it should be a function; it will be called " @@ -3560,66 +3820,66 @@ msgid "" "object." msgstr "" -#: library/os.rst:3293 +#: library/os.rst:3524 msgid "" "By default, :func:`walk` will not walk down into symbolic links that resolve " "to directories. Set *followlinks* to ``True`` to visit directories pointed " "to by symlinks, on systems that support them." msgstr "" -#: library/os.rst:3299 +#: library/os.rst:3530 msgid "" "Be aware that setting *followlinks* to ``True`` can lead to infinite " "recursion if a link points to a parent directory of itself. :func:`walk` " "does not keep track of the directories it visited already." msgstr "" -#: library/os.rst:3305 +#: library/os.rst:3536 msgid "" "If you pass a relative pathname, don't change the current working directory " "between resumptions of :func:`walk`. :func:`walk` never changes the current " "directory, and assumes that its caller doesn't either." msgstr "" -#: library/os.rst:3370 +#: library/os.rst:3601 msgid "" "This example displays the number of bytes taken by non-directory files in " "each directory under the starting directory, except that it doesn't look " "under any CVS subdirectory::" msgstr "" -#: library/os.rst:3322 +#: library/os.rst:3553 msgid "" "In the next example (simple implementation of :func:`shutil.rmtree`), " "walking the tree bottom-up is essential, :func:`rmdir` doesn't allow " "deleting a directory before the directory is empty::" msgstr "" -#: library/os.rst:3337 +#: library/os.rst:3568 msgid "" "Raises an :ref:`auditing event ` ``os.walk`` with arguments " "``top``, ``topdown``, ``onerror``, ``followlinks``." msgstr "" -#: library/os.rst:3339 +#: library/os.rst:3570 msgid "" "This function now calls :func:`os.scandir` instead of :func:`os.listdir`, " "making it faster by reducing the number of calls to :func:`os.stat`." msgstr "" -#: library/os.rst:3353 +#: library/os.rst:3584 msgid "" "This behaves exactly like :func:`walk`, except that it yields a 4-tuple " "``(dirpath, dirnames, filenames, dirfd)``, and it supports ``dir_fd``." msgstr "" -#: library/os.rst:3356 +#: library/os.rst:3587 msgid "" "*dirpath*, *dirnames* and *filenames* are identical to :func:`walk` output, " "and *dirfd* is a file descriptor referring to the directory *dirpath*." msgstr "" -#: library/os.rst:3359 +#: library/os.rst:3590 msgid "" "This function always supports :ref:`paths relative to directory descriptors " "` and :ref:`not following symlinks `. Note however " @@ -3627,30 +3887,30 @@ msgid "" "*follow_symlinks* is ``False``." msgstr "" -#: library/os.rst:3366 +#: library/os.rst:3597 msgid "" "Since :func:`fwalk` yields file descriptors, those are only valid until the " "next iteration step, so you should duplicate them (e.g. with :func:`dup`) if " "you want to keep them longer." msgstr "" -#: library/os.rst:3383 +#: library/os.rst:3614 msgid "" "In the next example, walking the tree bottom-up is essential: :func:`rmdir` " "doesn't allow deleting a directory before the directory is empty::" msgstr "" -#: library/os.rst:3398 +#: library/os.rst:3629 msgid "" "Raises an :ref:`auditing event ` ``os.fwalk`` with arguments " "``top``, ``topdown``, ``onerror``, ``follow_symlinks``, ``dir_fd``." msgstr "" -#: library/os.rst:3407 +#: library/os.rst:3638 msgid "Added support for :class:`bytes` paths." msgstr "" -#: library/os.rst:3413 +#: library/os.rst:3644 msgid "" "Create an anonymous file and return a file descriptor that refers to it. " "*flags* must be one of the ``os.MFD_*`` constants available on the system " @@ -3658,7 +3918,7 @@ msgid "" "descriptor is :ref:`non-inheritable `." msgstr "" -#: library/os.rst:3418 +#: library/os.rst:3649 msgid "" "The name supplied in *name* is used as a filename and will be displayed as " "the target of the corresponding symbolic link in the directory ``/proc/self/" @@ -3668,23 +3928,23 @@ msgid "" "side effects." msgstr "" -#: library/os.rst:3425 +#: library/os.rst:3656 msgid ":ref:`Availability `: Linux >= 3.17 with glibc >= 2.27." msgstr "" -#: library/os.rst:3448 +#: library/os.rst:3679 msgid "These flags can be passed to :func:`memfd_create`." msgstr "" -#: library/os.rst:3450 +#: library/os.rst:3681 msgid ":ref:`Availability `: Linux >= 3.17 with glibc >= 2.27" msgstr "" -#: library/os.rst:3452 +#: library/os.rst:3683 msgid "The ``MFD_HUGE*`` flags are only available since Linux 4.14." msgstr "" -#: library/os.rst:3459 +#: library/os.rst:3690 msgid "" "Create and return an event file descriptor. The file descriptors supports " "raw :func:`read` and :func:`write` with a buffer size of 8, :func:`~select." @@ -3693,7 +3953,7 @@ msgid "" "ref:`non-inheritable `." msgstr "" -#: library/os.rst:3465 +#: library/os.rst:3696 msgid "" "*initval* is the initial value of the event counter. The initial value must " "be an 32 bit unsigned integer. Please note that the initial value is limited " @@ -3701,86 +3961,86 @@ msgid "" "integer with a maximum value of 2\\ :sup:`64`\\ -\\ 2." msgstr "" -#: library/os.rst:3470 +#: library/os.rst:3701 msgid "" "*flags* can be constructed from :const:`EFD_CLOEXEC`, :const:`EFD_NONBLOCK`, " "and :const:`EFD_SEMAPHORE`." msgstr "" -#: library/os.rst:3473 +#: library/os.rst:3704 msgid "" "If :const:`EFD_SEMAPHORE` is specified and the event counter is non-zero, :" "func:`eventfd_read` returns 1 and decrements the counter by one." msgstr "" -#: library/os.rst:3476 +#: library/os.rst:3707 msgid "" "If :const:`EFD_SEMAPHORE` is not specified and the event counter is non-" "zero, :func:`eventfd_read` returns the current event counter value and " "resets the counter to zero." msgstr "" -#: library/os.rst:3480 +#: library/os.rst:3711 msgid "" "If the event counter is zero and :const:`EFD_NONBLOCK` is not specified, :" "func:`eventfd_read` blocks." msgstr "" -#: library/os.rst:3483 +#: library/os.rst:3714 msgid "" ":func:`eventfd_write` increments the event counter. Write blocks if the " "write operation would increment the counter to a value larger than 2\\ :sup:" "`64`\\ -\\ 2." msgstr "" -#: library/os.rst:3504 +#: library/os.rst:3735 msgid ":ref:`Availability `: Linux >= 2.6.27 with glibc >= 2.8" msgstr "" -#: library/os.rst:3510 +#: library/os.rst:3741 msgid "" "Read value from an :func:`eventfd` file descriptor and return a 64 bit " "unsigned int. The function does not verify that *fd* is an :func:`eventfd`." msgstr "" -#: library/os.rst:3522 library/os.rst:3539 +#: library/os.rst:3753 library/os.rst:3770 msgid ":ref:`Availability `: Linux >= 2.6.27" msgstr "" -#: library/os.rst:3519 +#: library/os.rst:3750 msgid "" "Add value to an :func:`eventfd` file descriptor. *value* must be a 64 bit " "unsigned int. The function does not verify that *fd* is an :func:`eventfd`." msgstr "" -#: library/os.rst:3528 +#: library/os.rst:3759 msgid "Set close-on-exec flag for new :func:`eventfd` file descriptor." msgstr "" -#: library/os.rst:3536 +#: library/os.rst:3767 msgid "" "Set :const:`O_NONBLOCK` status flag for new :func:`eventfd` file descriptor." msgstr "" -#: library/os.rst:3545 +#: library/os.rst:3776 msgid "" "Provide semaphore-like semantics for reads from a :func:`eventfd` file " "descriptor. On read the internal counter is decremented by one." msgstr "" -#: library/os.rst:3548 +#: library/os.rst:3779 msgid ":ref:`Availability `: Linux >= 2.6.30" msgstr "" -#: library/os.rst:3554 +#: library/os.rst:3785 msgid "Linux extended attributes" msgstr "" -#: library/os.rst:3558 +#: library/os.rst:3789 msgid "These functions are all available on Linux only." msgstr "" -#: library/os.rst:3562 +#: library/os.rst:3793 msgid "" "Return the value of the extended filesystem attribute *attribute* for " "*path*. *attribute* can be bytes or str (directly or indirectly through the :" @@ -3788,17 +4048,17 @@ msgid "" "encoding." msgstr "" -#: library/os.rst:3570 +#: library/os.rst:3801 msgid "" "Raises an :ref:`auditing event ` ``os.getxattr`` with arguments " "``path``, ``attribute``." msgstr "" -#: library/os.rst:3604 library/os.rst:3629 +#: library/os.rst:3835 library/os.rst:3860 msgid "Accepts a :term:`path-like object` for *path* and *attribute*." msgstr "" -#: library/os.rst:3578 +#: library/os.rst:3809 msgid "" "Return a list of the extended filesystem attributes on *path*. The " "attributes in the list are represented as strings decoded with the " @@ -3806,13 +4066,13 @@ msgid "" "the current directory." msgstr "" -#: library/os.rst:3586 +#: library/os.rst:3817 msgid "" "Raises an :ref:`auditing event ` ``os.listxattr`` with argument " "``path``." msgstr "" -#: library/os.rst:3594 +#: library/os.rst:3825 msgid "" "Removes the extended filesystem attribute *attribute* from *path*. " "*attribute* should be bytes or str (directly or indirectly through the :" @@ -3820,13 +4080,13 @@ msgid "" "`filesystem encoding and error handler`." msgstr "" -#: library/os.rst:3602 +#: library/os.rst:3833 msgid "" "Raises an :ref:`auditing event ` ``os.removexattr`` with arguments " "``path``, ``attribute``." msgstr "" -#: library/os.rst:3610 +#: library/os.rst:3841 msgid "" "Set the extended filesystem attribute *attribute* on *path* to *value*. " "*attribute* must be a bytes or str with no embedded NULs (directly or " @@ -3838,45 +4098,45 @@ msgid "" "will not be created and ``EEXISTS`` will be raised." msgstr "" -#: library/os.rst:3624 +#: library/os.rst:3855 msgid "" "A bug in Linux kernel versions less than 2.6.39 caused the flags argument to " "be ignored on some filesystems." msgstr "" -#: library/os.rst:3627 +#: library/os.rst:3858 msgid "" "Raises an :ref:`auditing event ` ``os.setxattr`` with arguments " "``path``, ``attribute``, ``value``, ``flags``." msgstr "" -#: library/os.rst:3635 +#: library/os.rst:3866 msgid "" "The maximum size the value of an extended attribute can be. Currently, this " "is 64 KiB on Linux." msgstr "" -#: library/os.rst:3641 +#: library/os.rst:3872 msgid "" "This is a possible value for the flags argument in :func:`setxattr`. It " "indicates the operation must create an attribute." msgstr "" -#: library/os.rst:3647 +#: library/os.rst:3878 msgid "" "This is a possible value for the flags argument in :func:`setxattr`. It " "indicates the operation must replace an existing attribute." msgstr "" -#: library/os.rst:3654 +#: library/os.rst:3885 msgid "Process Management" msgstr "" -#: library/os.rst:3656 +#: library/os.rst:3887 msgid "These functions may be used to create and manage processes." msgstr "" -#: library/os.rst:3658 +#: library/os.rst:3889 msgid "" "The various :func:`exec\\* ` functions take a list of arguments for " "the new program loaded into the process. In each case, the first of these " @@ -3887,7 +4147,7 @@ msgid "" "standard output; ``foo`` will seem to be ignored." msgstr "" -#: library/os.rst:3669 +#: library/os.rst:3900 msgid "" "Generate a :const:`SIGABRT` signal to the current process. On Unix, the " "default behavior is to produce a core dump; on Windows, the process " @@ -3896,37 +4156,37 @@ msgid "" "`SIGABRT` with :func:`signal.signal`." msgstr "" -#: library/os.rst:3678 +#: library/os.rst:3909 msgid "Add a path to the DLL search path." msgstr "" -#: library/os.rst:3680 +#: library/os.rst:3911 msgid "" "This search path is used when resolving dependencies for imported extension " "modules (the module itself is resolved through :data:`sys.path`), and also " "by :mod:`ctypes`." msgstr "" -#: library/os.rst:3684 +#: library/os.rst:3915 msgid "" "Remove the directory by calling **close()** on the returned object or using " "it in a :keyword:`with` statement." msgstr "" -#: library/os.rst:3687 +#: library/os.rst:3918 msgid "" "See the `Microsoft documentation `_ for more information about how " "DLLs are loaded." msgstr "" -#: library/os.rst:3691 +#: library/os.rst:3922 msgid "" "Raises an :ref:`auditing event ` ``os.add_dll_directory`` with " "argument ``path``." msgstr "" -#: library/os.rst:3695 +#: library/os.rst:3926 msgid "" "Previous versions of CPython would resolve DLLs using the default behavior " "for the current process. This led to inconsistencies, such as only sometimes " @@ -3934,14 +4194,14 @@ msgid "" "such as ``AddDllDirectory`` having no effect." msgstr "" -#: library/os.rst:3702 +#: library/os.rst:3933 msgid "" "In 3.8, the two primary ways DLLs are loaded now explicitly override the " "process-wide behavior to ensure consistency. See the :ref:`porting notes " "` for information on updating libraries." msgstr "" -#: library/os.rst:3717 +#: library/os.rst:3948 msgid "" "These functions all execute a new program, replacing the current process; " "they do not return. On Unix, the new executable is loaded into the current " @@ -3949,7 +4209,7 @@ msgid "" "reported as :exc:`OSError` exceptions." msgstr "" -#: library/os.rst:3722 +#: library/os.rst:3953 msgid "" "The current process is replaced immediately. Open file objects and " "descriptors are not flushed, so if there may be data buffered on these open " @@ -3957,7 +4217,7 @@ msgid "" "fsync` before calling an :func:`exec\\* ` function." msgstr "" -#: library/os.rst:3728 +#: library/os.rst:3959 msgid "" "The \"l\" and \"v\" variants of the :func:`exec\\* ` functions differ " "in how command-line arguments are passed. The \"l\" variants are perhaps " @@ -3970,7 +4230,7 @@ msgid "" "enforced." msgstr "" -#: library/os.rst:3737 +#: library/os.rst:3968 msgid "" "The variants which include a \"p\" near the end (:func:`execlp`, :func:" "`execlpe`, :func:`execvp`, and :func:`execvpe`) will use the :envvar:`PATH` " @@ -3980,10 +4240,11 @@ msgid "" "of the :envvar:`PATH` variable. The other variants, :func:`execl`, :func:" "`execle`, :func:`execv`, and :func:`execve`, will not use the :envvar:`PATH` " "variable to locate the executable; *path* must contain an appropriate " -"absolute or relative path." +"absolute or relative path. Relative paths must include at least one slash, " +"even on Windows, as plain names will not be resolved." msgstr "" -#: library/os.rst:3747 +#: library/os.rst:3979 msgid "" "For :func:`execle`, :func:`execlpe`, :func:`execve`, and :func:`execvpe` " "(note that these all end in \"e\"), the *env* parameter must be a mapping " @@ -3993,7 +4254,7 @@ msgid "" "process to inherit the environment of the current process." msgstr "" -#: library/os.rst:3754 +#: library/os.rst:3986 msgid "" "For :func:`execve` on some platforms, *path* may also be specified as an " "open file descriptor. This functionality may not be supported on your " @@ -4002,31 +4263,31 @@ msgid "" "`NotImplementedError`." msgstr "" -#: library/os.rst:3759 +#: library/os.rst:3991 msgid "" "Raises an :ref:`auditing event ` ``os.exec`` with arguments " "``path``, ``args``, ``env``." msgstr "" -#: library/os.rst:3763 +#: library/os.rst:3995 msgid "" "Added support for specifying *path* as an open file descriptor for :func:" "`execve`." msgstr "" -#: library/os.rst:3772 +#: library/os.rst:4004 msgid "" "Exit the process with status *n*, without calling cleanup handlers, flushing " "stdio buffers, etc." msgstr "" -#: library/os.rst:3777 +#: library/os.rst:4009 msgid "" "The standard way to exit is :func:`sys.exit(n) `. :func:`!_exit` " "should normally only be used in the child process after a :func:`fork`." msgstr "" -#: library/os.rst:3780 +#: library/os.rst:4012 msgid "" "The following exit codes are defined and can be used with :func:`_exit`, " "although they are not required. These are typically used for system " @@ -4034,125 +4295,125 @@ msgid "" "delivery program." msgstr "" -#: library/os.rst:3786 +#: library/os.rst:4018 msgid "" "Some of these may not be available on all Unix platforms, since there is " "some variation. These constants are defined where they are defined by the " "underlying platform." msgstr "" -#: library/os.rst:3793 +#: library/os.rst:4025 msgid "" "Exit code that means no error occurred. May be taken from the defined value " "of ``EXIT_SUCCESS`` on some platforms. Generally has a value of zero." msgstr "" -#: library/os.rst:3801 +#: library/os.rst:4033 msgid "" "Exit code that means the command was used incorrectly, such as when the " "wrong number of arguments are given." msgstr "" -#: library/os.rst:3809 +#: library/os.rst:4041 msgid "Exit code that means the input data was incorrect." msgstr "" -#: library/os.rst:3816 +#: library/os.rst:4048 msgid "Exit code that means an input file did not exist or was not readable." msgstr "" -#: library/os.rst:3823 +#: library/os.rst:4055 msgid "Exit code that means a specified user did not exist." msgstr "" -#: library/os.rst:3830 +#: library/os.rst:4062 msgid "Exit code that means a specified host did not exist." msgstr "" -#: library/os.rst:3837 +#: library/os.rst:4069 msgid "Exit code that means that a required service is unavailable." msgstr "" -#: library/os.rst:3844 +#: library/os.rst:4076 msgid "Exit code that means an internal software error was detected." msgstr "" -#: library/os.rst:3851 +#: library/os.rst:4083 msgid "" "Exit code that means an operating system error was detected, such as the " "inability to fork or create a pipe." msgstr "" -#: library/os.rst:3859 +#: library/os.rst:4091 msgid "" "Exit code that means some system file did not exist, could not be opened, or " "had some other kind of error." msgstr "" -#: library/os.rst:3867 +#: library/os.rst:4099 msgid "Exit code that means a user specified output file could not be created." msgstr "" -#: library/os.rst:3874 +#: library/os.rst:4106 msgid "" "Exit code that means that an error occurred while doing I/O on some file." msgstr "" -#: library/os.rst:3881 +#: library/os.rst:4113 msgid "" "Exit code that means a temporary failure occurred. This indicates something " "that may not really be an error, such as a network connection that couldn't " "be made during a retryable operation." msgstr "" -#: library/os.rst:3890 +#: library/os.rst:4122 msgid "" "Exit code that means that a protocol exchange was illegal, invalid, or not " "understood." msgstr "" -#: library/os.rst:3898 +#: library/os.rst:4130 msgid "" "Exit code that means that there were insufficient permissions to perform the " "operation (but not intended for file system problems)." msgstr "" -#: library/os.rst:3906 +#: library/os.rst:4138 msgid "Exit code that means that some kind of configuration error occurred." msgstr "" -#: library/os.rst:3913 +#: library/os.rst:4145 msgid "Exit code that means something like \"an entry was not found\"." msgstr "" -#: library/os.rst:3920 +#: library/os.rst:4152 msgid "" "Fork a child process. Return ``0`` in the child and the child's process id " "in the parent. If an error occurs :exc:`OSError` is raised." msgstr "" -#: library/os.rst:3923 +#: library/os.rst:4155 msgid "" "Note that some platforms including FreeBSD <= 6.3 and Cygwin have known " "issues when using ``fork()`` from a thread." msgstr "" -#: library/os.rst:3926 +#: library/os.rst:4158 msgid "" "Raises an :ref:`auditing event ` ``os.fork`` with no arguments." msgstr "" -#: library/os.rst:3928 +#: library/os.rst:4160 msgid "" "Calling ``fork()`` in a subinterpreter is no longer supported (:exc:" "`RuntimeError` is raised)." msgstr "" -#: library/os.rst:3934 +#: library/os.rst:4166 msgid "See :mod:`ssl` for applications that use the SSL module with fork()." msgstr "" -#: library/os.rst:3941 +#: library/os.rst:4173 msgid "" "Fork a child process, using a new pseudo-terminal as the child's controlling " "terminal. Return a pair of ``(pid, fd)``, where *pid* is ``0`` in the child, " @@ -4161,24 +4422,24 @@ msgid "" "the :mod:`pty` module. If an error occurs :exc:`OSError` is raised." msgstr "" -#: library/os.rst:3947 +#: library/os.rst:4179 msgid "" "Raises an :ref:`auditing event ` ``os.forkpty`` with no arguments." msgstr "" -#: library/os.rst:3949 +#: library/os.rst:4181 msgid "" "Calling ``forkpty()`` in a subinterpreter is no longer supported (:exc:" "`RuntimeError` is raised)." msgstr "" -#: library/os.rst:3962 +#: library/os.rst:4194 msgid "" "Send signal *sig* to the process *pid*. Constants for the specific signals " "available on the host platform are defined in the :mod:`signal` module." msgstr "" -#: library/os.rst:3965 +#: library/os.rst:4197 msgid "" "Windows: The :const:`signal.CTRL_C_EVENT` and :const:`signal." "CTRL_BREAK_EVENT` signals are special signals which can only be sent to " @@ -4189,58 +4450,69 @@ msgid "" "process handles to be killed." msgstr "" -#: library/os.rst:3973 +#: library/os.rst:4205 msgid "See also :func:`signal.pthread_kill`." msgstr "" -#: library/os.rst:3975 +#: library/os.rst:4207 msgid "" "Raises an :ref:`auditing event ` ``os.kill`` with arguments " "``pid``, ``sig``." msgstr "" -#: library/os.rst:3979 +#: library/os.rst:4211 msgid "Windows support." msgstr "" -#: library/os.rst:3989 +#: library/os.rst:4221 msgid "Send the signal *sig* to the process group *pgid*." msgstr "" -#: library/os.rst:3991 +#: library/os.rst:4223 msgid "" "Raises an :ref:`auditing event ` ``os.killpg`` with arguments " "``pgid``, ``sig``." msgstr "" -#: library/os.rst:3998 +#: library/os.rst:4230 msgid "" "Add *increment* to the process's \"niceness\". Return the new niceness." msgstr "" -#: library/os.rst:4005 +#: library/os.rst:4237 msgid "" -"Return a file descriptor referring to the process *pid*. This descriptor " -"can be used to perform process management without races and signals. The " -"*flags* argument is provided for future extensions; no flag values are " -"currently defined." +"Return a file descriptor referring to the process *pid* with *flags* set. " +"This descriptor can be used to perform process management without races and " +"signals." msgstr "" -#: library/os.rst:4010 +#: library/os.rst:4241 msgid "See the :manpage:`pidfd_open(2)` man page for more details." msgstr "" -#: library/os.rst:4012 +#: library/os.rst:4243 msgid ":ref:`Availability `: Linux >= 5.3" msgstr "" -#: library/os.rst:4018 +#: library/os.rst:4248 +msgid "" +"This flag indicates that the file descriptor will be non-blocking. If the " +"process referred to by the file descriptor has not yet terminated, then an " +"attempt to wait on the file descriptor using :manpage:`waitid(2)` will " +"immediately return the error :const:`~errno.EAGAIN` rather than blocking." +msgstr "" + +#: library/os.rst:4253 +msgid ":ref:`Availability `: Linux >= 5.10" +msgstr "" + +#: library/os.rst:4259 msgid "" "Lock program segments into memory. The value of *op* (defined in ````) determines which segments are locked." msgstr "" -#: library/os.rst:4026 +#: library/os.rst:4267 msgid "" "Open a pipe to or from command *cmd*. The return value is an open file " "object connected to the pipe, which can be read or written depending on " @@ -4250,7 +4522,7 @@ msgid "" "rather than bytes." msgstr "" -#: library/os.rst:4034 +#: library/os.rst:4275 msgid "" "The ``close`` method returns :const:`None` if the subprocess exited " "successfully, or the subprocess's return code if there was an error. On " @@ -4262,60 +4534,60 @@ msgid "" "contains the signed integer return code from the child process." msgstr "" -#: library/os.rst:4044 +#: library/os.rst:4285 msgid "" "On Unix, :func:`waitstatus_to_exitcode` can be used to convert the ``close`` " "method result (exit status) into an exit code if it is not ``None``. On " "Windows, the ``close`` method result is directly the exit code (or ``None``)." msgstr "" -#: library/os.rst:4049 +#: library/os.rst:4290 msgid "" "This is implemented using :class:`subprocess.Popen`; see that class's " "documentation for more powerful ways to manage and communicate with " "subprocesses." msgstr "" -#: library/os.rst:4053 +#: library/os.rst:4294 msgid ":ref:`Availability `: not Emscripten, not WASI." msgstr "" -#: library/os.rst:4056 +#: library/os.rst:4297 msgid "" "The :ref:`Python UTF-8 Mode ` affects encodings used for *cmd* " "and pipe contents." msgstr "" -#: library/os.rst:4059 +#: library/os.rst:4300 msgid "" ":func:`popen` is a simple wrapper around :class:`subprocess.Popen`. Use :" "class:`subprocess.Popen` or :func:`subprocess.run` to control options like " "encodings." msgstr "" -#: library/os.rst:4068 +#: library/os.rst:4309 msgid "Wraps the :c:func:`!posix_spawn` C library API for use from Python." msgstr "" -#: library/os.rst:4070 +#: library/os.rst:4311 msgid "" "Most users should use :func:`subprocess.run` instead of :func:`posix_spawn`." msgstr "" -#: library/os.rst:4072 +#: library/os.rst:4313 msgid "" "The positional-only arguments *path*, *args*, and *env* are similar to :func:" "`execve`." msgstr "" -#: library/os.rst:4075 +#: library/os.rst:4316 msgid "" "The *path* parameter is the path to the executable file. The *path* should " "contain a directory. Use :func:`posix_spawnp` to pass an executable file " "without directory." msgstr "" -#: library/os.rst:4079 +#: library/os.rst:4320 msgid "" "The *file_actions* argument may be a sequence of tuples describing actions " "to take on specific file descriptors in the child process between the C " @@ -4324,31 +4596,31 @@ msgid "" "describing the remaining tuple elements:" msgstr "" -#: library/os.rst:4087 +#: library/os.rst:4328 msgid "(``os.POSIX_SPAWN_OPEN``, *fd*, *path*, *flags*, *mode*)" msgstr "" -#: library/os.rst:4089 +#: library/os.rst:4330 msgid "Performs ``os.dup2(os.open(path, flags, mode), fd)``." msgstr "" -#: library/os.rst:4093 +#: library/os.rst:4334 msgid "(``os.POSIX_SPAWN_CLOSE``, *fd*)" msgstr "" -#: library/os.rst:4095 +#: library/os.rst:4336 msgid "Performs ``os.close(fd)``." msgstr "" -#: library/os.rst:4099 +#: library/os.rst:4340 msgid "(``os.POSIX_SPAWN_DUP2``, *fd*, *new_fd*)" msgstr "" -#: library/os.rst:4101 +#: library/os.rst:4342 msgid "Performs ``os.dup2(fd, new_fd)``." msgstr "" -#: library/os.rst:4103 +#: library/os.rst:4344 msgid "" "These tuples correspond to the C library :c:func:`!" "posix_spawn_file_actions_addopen`, :c:func:`!" @@ -4357,7 +4629,7 @@ msgid "" "`!posix_spawn` call itself." msgstr "" -#: library/os.rst:4109 +#: library/os.rst:4350 msgid "" "The *setpgroup* argument will set the process group of the child to the " "value specified. If the value specified is 0, the child's process group ID " @@ -4366,7 +4638,7 @@ msgid "" "corresponds to the C library :c:macro:`!POSIX_SPAWN_SETPGROUP` flag." msgstr "" -#: library/os.rst:4115 +#: library/os.rst:4356 msgid "" "If the *resetids* argument is ``True`` it will reset the effective UID and " "GID of the child to the real UID and GID of the parent process. If the " @@ -4377,7 +4649,7 @@ msgid "" "library :c:macro:`!POSIX_SPAWN_RESETIDS` flag." msgstr "" -#: library/os.rst:4123 +#: library/os.rst:4364 msgid "" "If the *setsid* argument is ``True``, it will create a new session ID for " "``posix_spawn``. *setsid* requires :c:macro:`!POSIX_SPAWN_SETSID` or :c:" @@ -4385,7 +4657,7 @@ msgid "" "is raised." msgstr "" -#: library/os.rst:4128 +#: library/os.rst:4369 msgid "" "The *setsigmask* argument will set the signal mask to the signal set " "specified. If the parameter is not used, then the child inherits the " @@ -4393,14 +4665,14 @@ msgid "" "POSIX_SPAWN_SETSIGMASK` flag." msgstr "" -#: library/os.rst:4133 +#: library/os.rst:4374 msgid "" "The *sigdef* argument will reset the disposition of all signals in the set " "specified. This argument corresponds to the C library :c:macro:`!" "POSIX_SPAWN_SETSIGDEF` flag." msgstr "" -#: library/os.rst:4137 +#: library/os.rst:4378 msgid "" "The *scheduler* argument must be a tuple containing the (optional) scheduler " "policy and an instance of :class:`sched_param` with the scheduler " @@ -4410,82 +4682,82 @@ msgid "" "POSIX_SPAWN_SETSCHEDULER` flags." msgstr "" -#: library/os.rst:4160 +#: library/os.rst:4401 msgid "" "Raises an :ref:`auditing event ` ``os.posix_spawn`` with arguments " "``path``, ``argv``, ``env``." msgstr "" -#: library/os.rst:4154 +#: library/os.rst:4395 msgid "Wraps the :c:func:`!posix_spawnp` C library API for use from Python." msgstr "" -#: library/os.rst:4156 +#: library/os.rst:4397 msgid "" "Similar to :func:`posix_spawn` except that the system searches for the " "*executable* file in the list of directories specified by the :envvar:`PATH` " "environment variable (in the same way as for ``execvp(3)``)." msgstr "" -#: library/os.rst:4164 +#: library/os.rst:4405 msgid ":ref:`Availability `: POSIX, not Emscripten, not WASI." msgstr "" -#: library/os.rst:4166 +#: library/os.rst:4407 msgid "See :func:`posix_spawn` documentation." msgstr "" -#: library/os.rst:4172 +#: library/os.rst:4413 msgid "" "Register callables to be executed when a new child process is forked using :" "func:`os.fork` or similar process cloning APIs. The parameters are optional " "and keyword-only. Each specifies a different call point." msgstr "" -#: library/os.rst:4177 +#: library/os.rst:4418 msgid "*before* is a function called before forking a child process." msgstr "" -#: library/os.rst:4178 +#: library/os.rst:4419 msgid "" "*after_in_parent* is a function called from the parent process after forking " "a child process." msgstr "" -#: library/os.rst:4180 +#: library/os.rst:4421 msgid "*after_in_child* is a function called from the child process." msgstr "" -#: library/os.rst:4182 +#: library/os.rst:4423 msgid "" "These calls are only made if control is expected to return to the Python " "interpreter. A typical :mod:`subprocess` launch will not trigger them as " "the child is not going to re-enter the interpreter." msgstr "" -#: library/os.rst:4186 +#: library/os.rst:4427 msgid "" "Functions registered for execution before forking are called in reverse " "registration order. Functions registered for execution after forking " "(either in the parent or in the child) are called in registration order." msgstr "" -#: library/os.rst:4191 +#: library/os.rst:4432 msgid "" "Note that :c:func:`fork` calls made by third-party C code may not call those " "functions, unless it explicitly calls :c:func:`PyOS_BeforeFork`, :c:func:" "`PyOS_AfterFork_Parent` and :c:func:`PyOS_AfterFork_Child`." msgstr "" -#: library/os.rst:4195 +#: library/os.rst:4436 msgid "There is no way to unregister a function." msgstr "" -#: library/os.rst:4211 +#: library/os.rst:4452 msgid "Execute the program *path* in a new process." msgstr "" -#: library/os.rst:4213 +#: library/os.rst:4454 msgid "" "(Note that the :mod:`subprocess` module provides more powerful facilities " "for spawning new processes and retrieving their results; using that module " @@ -4493,7 +4765,7 @@ msgid "" "`subprocess-replacements` section.)" msgstr "" -#: library/os.rst:4218 +#: library/os.rst:4459 msgid "" "If *mode* is :const:`P_NOWAIT`, this function returns the process id of the " "new process; if *mode* is :const:`P_WAIT`, returns the process's exit code " @@ -4502,13 +4774,13 @@ msgid "" "handle, so can be used with the :func:`waitpid` function." msgstr "" -#: library/os.rst:4224 +#: library/os.rst:4465 msgid "" "Note on VxWorks, this function doesn't return ``-signal`` when the new " "process is killed. Instead it raises OSError exception." msgstr "" -#: library/os.rst:4227 +#: library/os.rst:4468 msgid "" "The \"l\" and \"v\" variants of the :func:`spawn\\* ` functions " "differ in how command-line arguments are passed. The \"l\" variants are " @@ -4520,7 +4792,7 @@ msgid "" "to the child process must start with the name of the command being run." msgstr "" -#: library/os.rst:4236 +#: library/os.rst:4477 msgid "" "The variants which include a second \"p\" near the end (:func:`spawnlp`, :" "func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the :envvar:" @@ -4533,7 +4805,7 @@ msgid "" "appropriate absolute or relative path." msgstr "" -#: library/os.rst:4246 +#: library/os.rst:4487 msgid "" "For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` " "(note that these all end in \"e\"), the *env* parameter must be a mapping " @@ -4545,19 +4817,19 @@ msgid "" "values will cause the function to fail, with a return value of ``127``." msgstr "" -#: library/os.rst:4255 +#: library/os.rst:4496 msgid "" "As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` " "are equivalent::" msgstr "" -#: library/os.rst:4264 +#: library/os.rst:4505 msgid "" "Raises an :ref:`auditing event ` ``os.spawn`` with arguments " "``mode``, ``path``, ``args``, ``env``." msgstr "" -#: library/os.rst:4268 +#: library/os.rst:4509 msgid "" ":func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp` and :func:`spawnvpe` are " "not available on Windows. :func:`spawnle` and :func:`spawnve` are not " @@ -4565,7 +4837,7 @@ msgid "" "instead." msgstr "" -#: library/os.rst:4280 +#: library/os.rst:4521 msgid "" "Possible values for the *mode* parameter to the :func:`spawn\\* ` " "family of functions. If either of these values is given, the :func:" @@ -4573,7 +4845,7 @@ msgid "" "created, with the process id as the return value." msgstr "" -#: library/os.rst:4290 +#: library/os.rst:4531 msgid "" "Possible value for the *mode* parameter to the :func:`spawn\\* ` " "family of functions. If this is given as *mode*, the :func:`spawn\\*` " @@ -4582,7 +4854,7 @@ msgid "" "signal`` if a signal kills the process." msgstr "" -#: library/os.rst:4302 +#: library/os.rst:4543 msgid "" "Possible values for the *mode* parameter to the :func:`spawn\\* ` " "family of functions. These are less portable than those listed above. :" @@ -4592,49 +4864,48 @@ msgid "" "function will not return." msgstr "" -#: library/os.rst:4313 +#: library/os.rst:4554 msgid "Start a file with its associated application." msgstr "" -#: library/os.rst:4315 +#: library/os.rst:4556 msgid "" -"When *operation* is not specified or ``'open'``, this acts like double-" -"clicking the file in Windows Explorer, or giving the file name as an " -"argument to the :program:`start` command from the interactive command shell: " -"the file is opened with whatever application (if any) its extension is " -"associated." +"When *operation* is not specified, this acts like double-clicking the file " +"in Windows Explorer, or giving the file name as an argument to the :program:" +"`start` command from the interactive command shell: the file is opened with " +"whatever application (if any) its extension is associated." msgstr "" -#: library/os.rst:4320 +#: library/os.rst:4561 msgid "" "When another *operation* is given, it must be a \"command verb\" that " "specifies what should be done with the file. Common verbs documented by " -"Microsoft are ``'print'`` and ``'edit'`` (to be used on files) as well as " -"``'explore'`` and ``'find'`` (to be used on directories)." +"Microsoft are ``'open'``, ``'print'`` and ``'edit'`` (to be used on files) " +"as well as ``'explore'`` and ``'find'`` (to be used on directories)." msgstr "" -#: library/os.rst:4325 +#: library/os.rst:4566 msgid "" "When launching an application, specify *arguments* to be passed as a single " "string. This argument may have no effect when using this function to launch " "a document." msgstr "" -#: library/os.rst:4329 +#: library/os.rst:4570 msgid "" "The default working directory is inherited, but may be overridden by the " "*cwd* argument. This should be an absolute path. A relative *path* will be " "resolved against this argument." msgstr "" -#: library/os.rst:4333 +#: library/os.rst:4574 msgid "" "Use *show_cmd* to override the default window style. Whether this has any " "effect will depend on the application being launched. Values are integers as " "supported by the Win32 :c:func:`!ShellExecute` function." msgstr "" -#: library/os.rst:4337 +#: library/os.rst:4578 msgid "" ":func:`startfile` returns as soon as the associated application is launched. " "There is no option to wait for the application to close, and no way to " @@ -4645,32 +4916,32 @@ msgid "" "encoded for Win32." msgstr "" -#: library/os.rst:4345 +#: library/os.rst:4586 msgid "" "To reduce interpreter startup overhead, the Win32 :c:func:`!ShellExecute` " "function is not resolved until this function is first called. If the " "function cannot be resolved, :exc:`NotImplementedError` will be raised." msgstr "" -#: library/os.rst:4349 +#: library/os.rst:4590 msgid "" "Raises an :ref:`auditing event ` ``os.startfile`` with arguments " "``path``, ``operation``." msgstr "" -#: library/os.rst:4351 +#: library/os.rst:4592 msgid "" "Raises an :ref:`auditing event ` ``os.startfile/2`` with arguments " "``path``, ``operation``, ``arguments``, ``cwd``, ``show_cmd``." msgstr "" -#: library/os.rst:4355 +#: library/os.rst:4596 msgid "" "Added the *arguments*, *cwd* and *show_cmd* arguments, and the ``os." "startfile/2`` audit event." msgstr "" -#: library/os.rst:4362 +#: library/os.rst:4603 msgid "" "Execute the command (a string) in a subshell. This is implemented by " "calling the Standard C function :c:func:`system`, and has the same " @@ -4681,13 +4952,13 @@ msgid "" "value of the Python function is system-dependent." msgstr "" -#: library/os.rst:4370 +#: library/os.rst:4611 msgid "" "On Unix, the return value is the exit status of the process encoded in the " "format specified for :func:`wait`." msgstr "" -#: library/os.rst:4373 +#: library/os.rst:4614 msgid "" "On Windows, the return value is that returned by the system shell after " "running *command*. The shell is given by the Windows environment variable :" @@ -4696,7 +4967,7 @@ msgid "" "shell documentation." msgstr "" -#: library/os.rst:4379 +#: library/os.rst:4620 msgid "" "The :mod:`subprocess` module provides more powerful facilities for spawning " "new processes and retrieving their results; using that module is preferable " @@ -4704,53 +4975,53 @@ msgid "" "the :mod:`subprocess` documentation for some helpful recipes." msgstr "" -#: library/os.rst:4384 +#: library/os.rst:4625 msgid "" "On Unix, :func:`waitstatus_to_exitcode` can be used to convert the result " "(exit status) into an exit code. On Windows, the result is directly the exit " "code." msgstr "" -#: library/os.rst:4388 +#: library/os.rst:4629 msgid "" "Raises an :ref:`auditing event ` ``os.system`` with argument " "``command``." msgstr "" -#: library/os.rst:4395 +#: library/os.rst:4636 msgid "" "Returns the current global process times. The return value is an object with " "five attributes:" msgstr "" -#: library/os.rst:4398 +#: library/os.rst:4639 msgid ":attr:`!user` - user time" msgstr "" -#: library/os.rst:4399 +#: library/os.rst:4640 msgid ":attr:`!system` - system time" msgstr "" -#: library/os.rst:4400 +#: library/os.rst:4641 msgid ":attr:`!children_user` - user time of all child processes" msgstr "" -#: library/os.rst:4401 +#: library/os.rst:4642 msgid ":attr:`!children_system` - system time of all child processes" msgstr "" -#: library/os.rst:4402 +#: library/os.rst:4643 msgid ":attr:`!elapsed` - elapsed real time since a fixed point in the past" msgstr "" -#: library/os.rst:4404 +#: library/os.rst:4645 msgid "" "For backwards compatibility, this object also behaves like a five-tuple " "containing :attr:`!user`, :attr:`!system`, :attr:`!children_user`, :attr:`!" "children_system`, and :attr:`!elapsed` in that order." msgstr "" -#: library/os.rst:4408 +#: library/os.rst:4649 msgid "" "See the Unix manual page :manpage:`times(2)` and `times(3) `_ manual page on Unix or `the " @@ -4760,7 +5031,7 @@ msgid "" "attributes are zero." msgstr "" -#: library/os.rst:4422 +#: library/os.rst:4663 msgid "" "Wait for completion of a child process, and return a tuple containing its " "pid and exit status indication: a 16-bit number, whose low byte is the " @@ -4769,83 +5040,83 @@ msgid "" "if a core file was produced." msgstr "" -#: library/os.rst:4428 +#: library/os.rst:4669 msgid "" "If there are no children that could be waited for, :exc:`ChildProcessError` " "is raised." msgstr "" -#: library/os.rst:4503 +#: library/os.rst:4744 msgid "" ":func:`waitstatus_to_exitcode` can be used to convert the exit status into " "an exit code." msgstr "" -#: library/os.rst:4438 +#: library/os.rst:4679 msgid "" "The other :func:`!wait*` functions documented below can be used to wait for " "the completion of a specific child process and have more options. :func:" "`waitpid` is the only one also available on Windows." msgstr "" -#: library/os.rst:4445 +#: library/os.rst:4686 msgid "Wait for the completion of a child process." msgstr "" -#: library/os.rst:4447 +#: library/os.rst:4688 msgid "" "*idtype* can be :data:`P_PID`, :data:`P_PGID`, :data:`P_ALL`, or (on Linux) :" "data:`P_PIDFD`. The interpretation of *id* depends on it; see their " "individual descriptions." msgstr "" -#: library/os.rst:4450 +#: library/os.rst:4691 msgid "" "*options* is an OR combination of flags. At least one of :data:`WEXITED`, :" "data:`WSTOPPED` or :data:`WCONTINUED` is required; :data:`WNOHANG` and :data:" "`WNOWAIT` are additional optional flags." msgstr "" -#: library/os.rst:4454 +#: library/os.rst:4695 msgid "" "The return value is an object representing the data contained in the :c:type:" "`siginfo_t` structure with the following attributes:" msgstr "" -#: library/os.rst:4457 +#: library/os.rst:4698 msgid ":attr:`!si_pid` (process ID)" msgstr "" -#: library/os.rst:4458 +#: library/os.rst:4699 msgid ":attr:`!si_uid` (real user ID of the child)" msgstr "" -#: library/os.rst:4459 +#: library/os.rst:4700 msgid ":attr:`!si_signo` (always :const:`~signal.SIGCHLD`)" msgstr "" -#: library/os.rst:4460 +#: library/os.rst:4701 msgid "" ":attr:`!si_status` (the exit status or signal number, depending on :attr:`!" "si_code`)" msgstr "" -#: library/os.rst:4461 +#: library/os.rst:4702 msgid ":attr:`!si_code` (see :data:`CLD_EXITED` for possible values)" msgstr "" -#: library/os.rst:4463 +#: library/os.rst:4704 msgid "" "If :data:`WNOHANG` is specified and there are no matching children in the " "requested state, ``None`` is returned. Otherwise, if there are no matching " "children that could be waited for, :exc:`ChildProcessError` is raised." msgstr "" -#: library/os.rst:4475 +#: library/os.rst:4716 msgid "The details of this function differ on Unix and Windows." msgstr "" -#: library/os.rst:4477 +#: library/os.rst:4718 msgid "" "On Unix: Wait for completion of a child process given by process id *pid*, " "and return a tuple containing its process id and exit status indication " @@ -4854,7 +5125,7 @@ msgid "" "operation." msgstr "" -#: library/os.rst:4482 +#: library/os.rst:4723 msgid "" "If *pid* is greater than ``0``, :func:`waitpid` requests status information " "for that specific process. If *pid* is ``0``, the request is for the status " @@ -4864,7 +5135,7 @@ msgid "" "group ``-pid`` (the absolute value of *pid*)." msgstr "" -#: library/os.rst:4489 +#: library/os.rst:4730 msgid "" "*options* is an OR combination of flags. If it contains :data:`WNOHANG` and " "there are no matching children in the requested state, ``(0, 0)`` is " @@ -4873,7 +5144,7 @@ msgid "" "are :data:`WUNTRACED` and :data:`WCONTINUED`." msgstr "" -#: library/os.rst:4495 +#: library/os.rst:4736 msgid "" "On Windows: Wait for completion of a process given by process handle *pid*, " "and return a tuple containing *pid*, and its exit status shifted left by 8 " @@ -4885,7 +5156,7 @@ msgid "" "process handles." msgstr "" -#: library/os.rst:4516 +#: library/os.rst:4757 msgid "" "Similar to :func:`waitpid`, except no process id argument is given and a 3-" "element tuple containing the child's process id, exit status indication, and " @@ -4894,13 +5165,13 @@ msgid "" "same as that provided to :func:`waitpid` and :func:`wait4`." msgstr "" -#: library/os.rst:4537 +#: library/os.rst:4778 msgid "" ":func:`waitstatus_to_exitcode` can be used to convert the exit status into " "an exitcode." msgstr "" -#: library/os.rst:4531 +#: library/os.rst:4772 msgid "" "Similar to :func:`waitpid`, except a 3-element tuple, containing the child's " "process id, exit status indication, and resource usage information is " @@ -4909,118 +5180,118 @@ msgid "" "to :func:`waitpid`." msgstr "" -#: library/os.rst:4548 +#: library/os.rst:4789 msgid "" "These are the possible values for *idtype* in :func:`waitid`. They affect " "how *id* is interpreted:" msgstr "" -#: library/os.rst:4551 +#: library/os.rst:4792 msgid ":data:`!P_PID` - wait for the child whose PID is *id*." msgstr "" -#: library/os.rst:4552 +#: library/os.rst:4793 msgid ":data:`!P_PGID` - wait for any child whose progress group ID is *id*." msgstr "" -#: library/os.rst:4553 +#: library/os.rst:4794 msgid ":data:`!P_ALL` - wait for any child; *id* is ignored." msgstr "" -#: library/os.rst:4554 +#: library/os.rst:4795 msgid "" ":data:`!P_PIDFD` - wait for the child identified by the file descriptor *id* " "(a process file descriptor created with :func:`pidfd_open`)." msgstr "" -#: library/os.rst:4559 +#: library/os.rst:4800 msgid ":data:`!P_PIDFD` is only available on Linux >= 5.4." msgstr "" -#: library/os.rst:4562 +#: library/os.rst:4803 msgid "The :data:`!P_PIDFD` constant." msgstr "" -#: library/os.rst:4568 +#: library/os.rst:4809 msgid "" "This *options* flag for :func:`waitpid`, :func:`wait3`, :func:`wait4`, and :" "func:`waitid` causes child processes to be reported if they have been " "continued from a job control stop since they were last reported." msgstr "" -#: library/os.rst:4577 +#: library/os.rst:4818 msgid "" "This *options* flag for :func:`waitid` causes child processes that have " "terminated to be reported." msgstr "" -#: library/os.rst:4580 +#: library/os.rst:4821 msgid "" "The other ``wait*`` functions always report children that have terminated, " "so this option is not available for them." msgstr "" -#: library/os.rst:4590 +#: library/os.rst:4831 msgid "" "This *options* flag for :func:`waitid` causes child processes that have been " "stopped by the delivery of a signal to be reported." msgstr "" -#: library/os.rst:4625 +#: library/os.rst:4866 msgid "This option is not available for the other ``wait*`` functions." msgstr "" -#: library/os.rst:4602 +#: library/os.rst:4843 msgid "" "This *options* flag for :func:`waitpid`, :func:`wait3`, and :func:`wait4` " "causes child processes to also be reported if they have been stopped but " "their current state has not been reported since they were stopped." msgstr "" -#: library/os.rst:4606 +#: library/os.rst:4847 msgid "This option is not available for :func:`waitid`." msgstr "" -#: library/os.rst:4613 +#: library/os.rst:4854 msgid "" "This *options* flag causes :func:`waitpid`, :func:`wait3`, :func:`wait4`, " "and :func:`waitid` to return right away if no child process status is " "available immediately." msgstr "" -#: library/os.rst:4622 +#: library/os.rst:4863 msgid "" "This *options* flag causes :func:`waitid` to leave the child in a waitable " "state, so that a later :func:`!wait*` call can be used to retrieve the child " "status information again." msgstr "" -#: library/os.rst:4637 +#: library/os.rst:4878 msgid "" "These are the possible values for :attr:`!si_code` in the result returned " "by :func:`waitid`." msgstr "" -#: library/os.rst:4644 +#: library/os.rst:4885 msgid "Added :data:`CLD_KILLED` and :data:`CLD_STOPPED` values." msgstr "" -#: library/os.rst:4650 +#: library/os.rst:4891 msgid "Convert a wait status to an exit code." msgstr "" -#: library/os.rst:4652 +#: library/os.rst:4893 msgid "On Unix:" msgstr "" -#: library/os.rst:4654 +#: library/os.rst:4895 msgid "" "If the process exited normally (if ``WIFEXITED(status)`` is true), return " "the process exit status (return ``WEXITSTATUS(status)``): result greater " "than or equal to 0." msgstr "" -#: library/os.rst:4657 +#: library/os.rst:4898 msgid "" "If the process was terminated by a signal (if ``WIFSIGNALED(status)`` is " "true), return ``-signum`` where *signum* is the number of the signal that " @@ -5028,15 +5299,15 @@ msgid "" "than 0." msgstr "" -#: library/os.rst:4661 +#: library/os.rst:4902 msgid "Otherwise, raise a :exc:`ValueError`." msgstr "" -#: library/os.rst:4663 +#: library/os.rst:4904 msgid "On Windows, return *status* shifted right by 8 bits." msgstr "" -#: library/os.rst:4665 +#: library/os.rst:4906 msgid "" "On Unix, if the process is being traced or if :func:`waitpid` was called " "with :data:`WUNTRACED` option, the caller must first check if " @@ -5044,217 +5315,217 @@ msgid "" "``WIFSTOPPED(status)`` is true." msgstr "" -#: library/os.rst:4672 +#: library/os.rst:4913 msgid "" ":func:`WIFEXITED`, :func:`WEXITSTATUS`, :func:`WIFSIGNALED`, :func:" "`WTERMSIG`, :func:`WIFSTOPPED`, :func:`WSTOPSIG` functions." msgstr "" -#: library/os.rst:4680 +#: library/os.rst:4921 msgid "" "The following functions take a process status code as returned by :func:" "`system`, :func:`wait`, or :func:`waitpid` as a parameter. They may be used " "to determine the disposition of a process." msgstr "" -#: library/os.rst:4686 +#: library/os.rst:4927 msgid "" "Return ``True`` if a core dump was generated for the process, otherwise " "return ``False``." msgstr "" -#: library/os.rst:4755 +#: library/os.rst:4996 msgid "This function should be employed only if :func:`WIFSIGNALED` is true." msgstr "" -#: library/os.rst:4696 +#: library/os.rst:4937 msgid "" "Return ``True`` if a stopped child has been resumed by delivery of :const:" "`~signal.SIGCONT` (if the process has been continued from a job control " "stop), otherwise return ``False``." msgstr "" -#: library/os.rst:4700 +#: library/os.rst:4941 msgid "See :data:`WCONTINUED` option." msgstr "" -#: library/os.rst:4707 +#: library/os.rst:4948 msgid "" "Return ``True`` if the process was stopped by delivery of a signal, " "otherwise return ``False``." msgstr "" -#: library/os.rst:4710 +#: library/os.rst:4951 msgid "" ":func:`WIFSTOPPED` only returns ``True`` if the :func:`waitpid` call was " "done using :data:`WUNTRACED` option or when the process is being traced " "(see :manpage:`ptrace(2)`)." msgstr "" -#: library/os.rst:4718 +#: library/os.rst:4959 msgid "" "Return ``True`` if the process was terminated by a signal, otherwise return " "``False``." msgstr "" -#: library/os.rst:4726 +#: library/os.rst:4967 msgid "" "Return ``True`` if the process exited terminated normally, that is, by " "calling ``exit()`` or ``_exit()``, or by returning from ``main()``; " "otherwise return ``False``." msgstr "" -#: library/os.rst:4735 +#: library/os.rst:4976 msgid "Return the process exit status." msgstr "" -#: library/os.rst:4737 +#: library/os.rst:4978 msgid "This function should be employed only if :func:`WIFEXITED` is true." msgstr "" -#: library/os.rst:4744 +#: library/os.rst:4985 msgid "Return the signal which caused the process to stop." msgstr "" -#: library/os.rst:4746 +#: library/os.rst:4987 msgid "This function should be employed only if :func:`WIFSTOPPED` is true." msgstr "" -#: library/os.rst:4753 +#: library/os.rst:4994 msgid "Return the number of the signal that caused the process to terminate." msgstr "" -#: library/os.rst:4761 +#: library/os.rst:5002 msgid "Interface to the scheduler" msgstr "" -#: library/os.rst:4763 +#: library/os.rst:5004 msgid "" "These functions control how a process is allocated CPU time by the operating " "system. They are only available on some Unix platforms. For more detailed " "information, consult your Unix manpages." msgstr "" -#: library/os.rst:4769 +#: library/os.rst:5010 msgid "" "The following scheduling policies are exposed if they are supported by the " "operating system." msgstr "" -#: library/os.rst:4774 +#: library/os.rst:5015 msgid "The default scheduling policy." msgstr "" -#: library/os.rst:4778 +#: library/os.rst:5019 msgid "" "Scheduling policy for CPU-intensive processes that tries to preserve " "interactivity on the rest of the computer." msgstr "" -#: library/os.rst:4783 +#: library/os.rst:5024 msgid "Scheduling policy for extremely low priority background tasks." msgstr "" -#: library/os.rst:4787 +#: library/os.rst:5028 msgid "Scheduling policy for sporadic server programs." msgstr "" -#: library/os.rst:4791 +#: library/os.rst:5032 msgid "A First In First Out scheduling policy." msgstr "" -#: library/os.rst:4795 +#: library/os.rst:5036 msgid "A round-robin scheduling policy." msgstr "" -#: library/os.rst:4799 +#: library/os.rst:5040 msgid "" "This flag can be OR'ed with any other scheduling policy. When a process with " "this flag set forks, its child's scheduling policy and priority are reset to " "the default." msgstr "" -#: library/os.rst:4806 +#: library/os.rst:5047 msgid "" "This class represents tunable scheduling parameters used in :func:" "`sched_setparam`, :func:`sched_setscheduler`, and :func:`sched_getparam`. It " "is immutable." msgstr "" -#: library/os.rst:4810 +#: library/os.rst:5051 msgid "At the moment, there is only one possible parameter:" msgstr "" -#: library/os.rst:4814 +#: library/os.rst:5055 msgid "The scheduling priority for a scheduling policy." msgstr "" -#: library/os.rst:4819 +#: library/os.rst:5060 msgid "" "Get the minimum priority value for *policy*. *policy* is one of the " "scheduling policy constants above." msgstr "" -#: library/os.rst:4825 +#: library/os.rst:5066 msgid "" "Get the maximum priority value for *policy*. *policy* is one of the " "scheduling policy constants above." msgstr "" -#: library/os.rst:4831 +#: library/os.rst:5072 msgid "" "Set the scheduling policy for the process with PID *pid*. A *pid* of 0 means " "the calling process. *policy* is one of the scheduling policy constants " "above. *param* is a :class:`sched_param` instance." msgstr "" -#: library/os.rst:4838 +#: library/os.rst:5079 msgid "" "Return the scheduling policy for the process with PID *pid*. A *pid* of 0 " "means the calling process. The result is one of the scheduling policy " "constants above." msgstr "" -#: library/os.rst:4845 +#: library/os.rst:5086 msgid "" "Set the scheduling parameters for the process with PID *pid*. A *pid* of 0 " "means the calling process. *param* is a :class:`sched_param` instance." msgstr "" -#: library/os.rst:4851 +#: library/os.rst:5092 msgid "" "Return the scheduling parameters as a :class:`sched_param` instance for the " "process with PID *pid*. A *pid* of 0 means the calling process." msgstr "" -#: library/os.rst:4857 +#: library/os.rst:5098 msgid "" "Return the round-robin quantum in seconds for the process with PID *pid*. A " "*pid* of 0 means the calling process." msgstr "" -#: library/os.rst:4863 +#: library/os.rst:5104 msgid "Voluntarily relinquish the CPU." msgstr "" -#: library/os.rst:4868 +#: library/os.rst:5109 msgid "" "Restrict the process with PID *pid* (or the current process if zero) to a " "set of CPUs. *mask* is an iterable of integers representing the set of CPUs " "to which the process should be restricted." msgstr "" -#: library/os.rst:4875 +#: library/os.rst:5116 msgid "" "Return the set of CPUs the process with PID *pid* (or the current process if " "zero) is restricted to." msgstr "" -#: library/os.rst:4882 +#: library/os.rst:5123 msgid "Miscellaneous System Information" msgstr "" -#: library/os.rst:4887 +#: library/os.rst:5128 msgid "" "Return string-valued system configuration values. *name* specifies the " "configuration value to retrieve; it may be a string which is the name of a " @@ -5265,13 +5536,13 @@ msgid "" "included in that mapping, passing an integer for *name* is also accepted." msgstr "" -#: library/os.rst:4895 +#: library/os.rst:5136 msgid "" "If the configuration value specified by *name* isn't defined, ``None`` is " "returned." msgstr "" -#: library/os.rst:4898 +#: library/os.rst:5139 msgid "" "If *name* is a string and is not known, :exc:`ValueError` is raised. If a " "specific value for *name* is not supported by the host system, even if it is " @@ -5279,33 +5550,33 @@ msgid "" "`errno.EINVAL` for the error number." msgstr "" -#: library/os.rst:4908 +#: library/os.rst:5149 msgid "" "Dictionary mapping names accepted by :func:`confstr` to the integer values " "defined for those names by the host operating system. This can be used to " "determine the set of names known to the system." msgstr "" -#: library/os.rst:4917 +#: library/os.rst:5158 msgid "" "Return the number of CPUs in the system. Returns ``None`` if undetermined." msgstr "" -#: library/os.rst:4919 +#: library/os.rst:5160 msgid "" "This number is not equivalent to the number of CPUs the current process can " "use. The number of usable CPUs can be obtained with ``len(os." "sched_getaffinity(0))``" msgstr "" -#: library/os.rst:4929 +#: library/os.rst:5170 msgid "" "Return the number of processes in the system run queue averaged over the " "last 1, 5, and 15 minutes or raises :exc:`OSError` if the load average was " "unobtainable." msgstr "" -#: library/os.rst:4938 +#: library/os.rst:5179 msgid "" "Return integer-valued system configuration values. If the configuration " "value specified by *name* isn't defined, ``-1`` is returned. The comments " @@ -5314,44 +5585,44 @@ msgid "" "``sysconf_names``." msgstr "" -#: library/os.rst:4948 +#: library/os.rst:5189 msgid "" "Dictionary mapping names accepted by :func:`sysconf` to the integer values " "defined for those names by the host operating system. This can be used to " "determine the set of names known to the system." msgstr "" -#: library/os.rst:4954 +#: library/os.rst:5195 msgid "Add ``'SC_MINSIGSTKSZ'`` name." msgstr "" -#: library/os.rst:4957 +#: library/os.rst:5198 msgid "" "The following data values are used to support path manipulation operations. " "These are defined for all platforms." msgstr "" -#: library/os.rst:4960 +#: library/os.rst:5201 msgid "" "Higher-level operations on pathnames are defined in the :mod:`os.path` " "module." msgstr "" -#: library/os.rst:4966 +#: library/os.rst:5207 msgid "" "The constant string used by the operating system to refer to the current " "directory. This is ``'.'`` for Windows and POSIX. Also available via :mod:" "`os.path`." msgstr "" -#: library/os.rst:4974 +#: library/os.rst:5215 msgid "" "The constant string used by the operating system to refer to the parent " "directory. This is ``'..'`` for Windows and POSIX. Also available via :mod:" "`os.path`." msgstr "" -#: library/os.rst:4983 +#: library/os.rst:5224 msgid "" "The character used by the operating system to separate pathname components. " "This is ``'/'`` for POSIX and ``'\\\\'`` for Windows. Note that knowing " @@ -5360,7 +5631,7 @@ msgid "" "useful. Also available via :mod:`os.path`." msgstr "" -#: library/os.rst:4993 +#: library/os.rst:5234 msgid "" "An alternative character used by the operating system to separate pathname " "components, or ``None`` if only one separator character exists. This is set " @@ -5368,27 +5639,27 @@ msgid "" "via :mod:`os.path`." msgstr "" -#: library/os.rst:5002 +#: library/os.rst:5243 msgid "" "The character which separates the base filename from the extension; for " "example, the ``'.'`` in :file:`os.py`. Also available via :mod:`os.path`." msgstr "" -#: library/os.rst:5010 +#: library/os.rst:5251 msgid "" "The character conventionally used by the operating system to separate search " "path components (as in :envvar:`PATH`), such as ``':'`` for POSIX or ``';'`` " "for Windows. Also available via :mod:`os.path`." msgstr "" -#: library/os.rst:5017 +#: library/os.rst:5258 msgid "" "The default search path used by :func:`exec\\*p\\* ` and :func:" "`spawn\\*p\\* ` if the environment doesn't have a ``'PATH'`` key. " "Also available via :mod:`os.path`." msgstr "" -#: library/os.rst:5024 +#: library/os.rst:5265 msgid "" "The string used to separate (or, rather, terminate) lines on the current " "platform. This may be a single character, such as ``'\\n'`` for POSIX, or " @@ -5397,36 +5668,36 @@ msgid "" "default); use a single ``'\\n'`` instead, on all platforms." msgstr "" -#: library/os.rst:5033 +#: library/os.rst:5274 msgid "" "The file path of the null device. For example: ``'/dev/null'`` for POSIX, " "``'nul'`` for Windows. Also available via :mod:`os.path`." msgstr "" -#: library/os.rst:5044 +#: library/os.rst:5285 msgid "" "Flags for use with the :func:`~sys.setdlopenflags` and :func:`~sys." "getdlopenflags` functions. See the Unix manual page :manpage:`dlopen(3)` " "for what the different flags mean." msgstr "" -#: library/os.rst:5052 +#: library/os.rst:5293 msgid "Random numbers" msgstr "" -#: library/os.rst:5057 +#: library/os.rst:5298 msgid "" "Get up to *size* random bytes. The function can return less bytes than " "requested." msgstr "" -#: library/os.rst:5060 +#: library/os.rst:5301 msgid "" "These bytes can be used to seed user-space random number generators or for " "cryptographic purposes." msgstr "" -#: library/os.rst:5063 +#: library/os.rst:5304 msgid "" "``getrandom()`` relies on entropy gathered from device drivers and other " "sources of environmental noise. Unnecessarily reading large quantities of " @@ -5434,36 +5705,36 @@ msgid "" "``/dev/urandom`` devices." msgstr "" -#: library/os.rst:5068 +#: library/os.rst:5309 msgid "" "The flags argument is a bit mask that can contain zero or more of the " "following values ORed together: :py:const:`os.GRND_RANDOM` and :py:data:" "`GRND_NONBLOCK`." msgstr "" -#: library/os.rst:5072 +#: library/os.rst:5313 msgid "" "See also the `Linux getrandom() manual page `_." msgstr "" -#: library/os.rst:5075 +#: library/os.rst:5316 msgid ":ref:`Availability `: Linux >= 3.17." msgstr "" -#: library/os.rst:5081 +#: library/os.rst:5322 msgid "" "Return a bytestring of *size* random bytes suitable for cryptographic use." msgstr "" -#: library/os.rst:5083 +#: library/os.rst:5324 msgid "" "This function returns random bytes from an OS-specific randomness source. " "The returned data should be unpredictable enough for cryptographic " "applications, though its exact quality depends on the OS implementation." msgstr "" -#: library/os.rst:5087 +#: library/os.rst:5328 msgid "" "On Linux, if the ``getrandom()`` syscall is available, it is used in " "blocking mode: block until the system urandom entropy pool is initialized " @@ -5473,69 +5744,69 @@ msgid "" "to poll until the system urandom entropy pool is initialized." msgstr "" -#: library/os.rst:5094 +#: library/os.rst:5335 msgid "" "On a Unix-like system, random bytes are read from the ``/dev/urandom`` " "device. If the ``/dev/urandom`` device is not available or not readable, " "the :exc:`NotImplementedError` exception is raised." msgstr "" -#: library/os.rst:5098 +#: library/os.rst:5339 msgid "On Windows, it will use ``BCryptGenRandom()``." msgstr "" -#: library/os.rst:5101 +#: library/os.rst:5342 msgid "" "The :mod:`secrets` module provides higher level functions. For an easy-to-" "use interface to the random number generator provided by your platform, " "please see :class:`random.SystemRandom`." msgstr "" -#: library/os.rst:5105 +#: library/os.rst:5346 msgid "" "On Linux, ``getrandom()`` is now used in blocking mode to increase the " "security." msgstr "" -#: library/os.rst:5109 +#: library/os.rst:5350 msgid "" "On Linux, if the ``getrandom()`` syscall blocks (the urandom entropy pool is " "not initialized yet), fall back on reading ``/dev/urandom``." msgstr "" -#: library/os.rst:5113 +#: library/os.rst:5354 msgid "" "On Linux 3.17 and newer, the ``getrandom()`` syscall is now used when " "available. On OpenBSD 5.6 and newer, the C ``getentropy()`` function is now " "used. These functions avoid the usage of an internal file descriptor." msgstr "" -#: library/os.rst:5119 +#: library/os.rst:5360 msgid "" "On Windows, ``BCryptGenRandom()`` is used instead of ``CryptGenRandom()`` " "which is deprecated." msgstr "" -#: library/os.rst:5125 +#: library/os.rst:5366 msgid "" "By default, when reading from ``/dev/random``, :func:`getrandom` blocks if " "no random bytes are available, and when reading from ``/dev/urandom``, it " "blocks if the entropy pool has not yet been initialized." msgstr "" -#: library/os.rst:5129 +#: library/os.rst:5370 msgid "" "If the :py:data:`GRND_NONBLOCK` flag is set, then :func:`getrandom` does not " "block in these cases, but instead immediately raises :exc:`BlockingIOError`." msgstr "" -#: library/os.rst:5136 +#: library/os.rst:5377 msgid "" "If this bit is set, then random bytes are drawn from the ``/dev/" "random`` pool instead of the ``/dev/urandom`` pool." msgstr "" -#: library/os.rst:518 library/os.rst:682 +#: library/os.rst:529 library/os.rst:731 msgid "user" msgstr "" @@ -5543,7 +5814,7 @@ msgstr "" msgid "effective id" msgstr "" -#: library/os.rst:438 library/os.rst:456 library/os.rst:617 library/os.rst:3985 +#: library/os.rst:438 library/os.rst:456 library/os.rst:666 library/os.rst:4217 msgid "process" msgstr "" @@ -5551,7 +5822,7 @@ msgstr "" msgid "group" msgstr "" -#: library/os.rst:518 +#: library/os.rst:529 msgid "id" msgstr "" @@ -5559,114 +5830,114 @@ msgstr "" msgid "id of parent" msgstr "" -#: library/os.rst:617 +#: library/os.rst:666 msgid "scheduling priority" msgstr "" -#: library/os.rst:747 +#: library/os.rst:796 msgid "environment variables" msgstr "" -#: library/os.rst:541 +#: library/os.rst:552 msgid "setting" msgstr "" -#: library/os.rst:682 +#: library/os.rst:731 msgid "id, setting" msgstr "" -#: library/os.rst:715 +#: library/os.rst:764 msgid "gethostname() (in module socket)" msgstr "" -#: library/os.rst:715 +#: library/os.rst:764 msgid "gethostbyaddr() (in module socket)" msgstr "" -#: library/os.rst:2397 +#: library/os.rst:2575 msgid "deleting" msgstr "" -#: library/os.rst:2750 +#: library/os.rst:2945 msgid "module" msgstr "" -#: library/os.rst:1228 +#: library/os.rst:1338 msgid "pty" msgstr "" -#: library/os.rst:2195 library/os.rst:3250 library/os.rst:3349 +#: library/os.rst:2373 library/os.rst:3481 library/os.rst:3580 msgid "directory" msgstr "" -#: library/os.rst:1864 +#: library/os.rst:1979 msgid "changing" msgstr "" -#: library/os.rst:2195 +#: library/os.rst:2373 msgid "creating" msgstr "" -#: library/os.rst:2195 +#: library/os.rst:2373 msgid "UNC paths" msgstr "" -#: library/os.rst:2195 +#: library/os.rst:2373 msgid "and os.makedirs()" msgstr "" -#: library/os.rst:2750 +#: library/os.rst:2945 msgid "stat" msgstr "" -#: library/os.rst:3349 +#: library/os.rst:3580 msgid "walking" msgstr "" -#: library/os.rst:3349 +#: library/os.rst:3580 msgid "traversal" msgstr "" -#: library/os.rst:3985 +#: library/os.rst:4217 msgid "killing" msgstr "" -#: library/os.rst:3985 +#: library/os.rst:4217 msgid "signalling" msgstr "" -#: library/os.rst:4999 +#: library/os.rst:5240 msgid ". (dot)" msgstr "" -#: library/os.rst:4971 library/os.rst:4990 library/os.rst:4999 +#: library/os.rst:5212 library/os.rst:5231 library/os.rst:5240 msgid "in pathnames" msgstr "" -#: library/os.rst:4971 +#: library/os.rst:5212 msgid ".." msgstr "" -#: library/os.rst:4990 +#: library/os.rst:5231 msgid "/ (slash)" msgstr "" -#: library/os.rst:4980 +#: library/os.rst:5221 msgid "\\ (backslash)" msgstr "" -#: library/os.rst:4980 +#: library/os.rst:5221 msgid "in pathnames (Windows)" msgstr "" -#: library/os.rst:5006 +#: library/os.rst:5247 msgid ": (colon)" msgstr "" -#: library/os.rst:5006 +#: library/os.rst:5247 msgid "path separator (POSIX)" msgstr "" -#: library/os.rst:5006 +#: library/os.rst:5247 msgid "; (semicolon)" msgstr "" diff --git a/library/pathlib.po b/library/pathlib.po index 18484e20e..2fee0c327 100644 --- a/library/pathlib.po +++ b/library/pathlib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -117,92 +117,93 @@ msgstr "" #: library/pathlib.rst:108 msgid "" "Each element of *pathsegments* can be either a string representing a path " -"segment, an object implementing the :class:`os.PathLike` interface which " -"returns a string, or another path object::" +"segment, or an object implementing the :class:`os.PathLike` interface where " +"the :meth:`~os.PathLike.__fspath__` method returns a string, such as another " +"path object::" msgstr "" -#: library/pathlib.rst:117 +#: library/pathlib.rst:118 msgid "When *pathsegments* is empty, the current directory is assumed::" msgstr "" -#: library/pathlib.rst:122 +#: library/pathlib.rst:123 msgid "" "If a segment is an absolute path, all previous segments are ignored (like :" "func:`os.path.join`)::" msgstr "" -#: library/pathlib.rst:130 +#: library/pathlib.rst:131 msgid "" "On Windows, the drive is not reset when a rooted relative path segment (e." "g., ``r'\\foo'``) is encountered::" msgstr "" -#: library/pathlib.rst:136 +#: library/pathlib.rst:137 msgid "" "Spurious slashes and single dots are collapsed, but double dots (``'..'``) " "and leading double slashes (``'//'``) are not, since this would change the " "meaning of a path for various reasons (e.g. symbolic links, UNC paths)::" msgstr "" -#: library/pathlib.rst:149 +#: library/pathlib.rst:150 msgid "" "(a naïve approach would make ``PurePosixPath('foo/../bar')`` equivalent to " "``PurePosixPath('bar')``, which is wrong if ``foo`` is a symbolic link to " "another directory)" msgstr "" -#: library/pathlib.rst:153 +#: library/pathlib.rst:154 msgid "" "Pure path objects implement the :class:`os.PathLike` interface, allowing " "them to be used anywhere the interface is accepted." msgstr "" -#: library/pathlib.rst:156 +#: library/pathlib.rst:157 msgid "Added support for the :class:`os.PathLike` interface." msgstr "" -#: library/pathlib.rst:161 +#: library/pathlib.rst:162 msgid "" "A subclass of :class:`PurePath`, this path flavour represents non-Windows " "filesystem paths::" msgstr "" -#: library/pathlib.rst:179 library/pathlib.rst:682 library/pathlib.rst:692 +#: library/pathlib.rst:180 library/pathlib.rst:749 library/pathlib.rst:759 msgid "*pathsegments* is specified similarly to :class:`PurePath`." msgstr "" -#: library/pathlib.rst:171 +#: library/pathlib.rst:172 msgid "" "A subclass of :class:`PurePath`, this path flavour represents Windows " "filesystem paths, including `UNC paths`_::" msgstr "" -#: library/pathlib.rst:183 +#: library/pathlib.rst:184 msgid "" "Regardless of the system you're running on, you can instantiate all of these " "classes, since they don't provide any operation that does system calls." msgstr "" -#: library/pathlib.rst:188 +#: library/pathlib.rst:189 msgid "General properties" msgstr "" -#: library/pathlib.rst:190 +#: library/pathlib.rst:191 msgid "" "Paths are immutable and :term:`hashable`. Paths of a same flavour are " "comparable and orderable. These properties respect the flavour's case-" "folding semantics::" msgstr "" -#: library/pathlib.rst:203 +#: library/pathlib.rst:204 msgid "Paths of a different flavour compare unequal and cannot be ordered::" msgstr "" -#: library/pathlib.rst:214 +#: library/pathlib.rst:215 msgid "Operators" msgstr "" -#: library/pathlib.rst:216 +#: library/pathlib.rst:217 msgid "" "The slash operator helps create child paths, like :func:`os.path.join`. If " "the argument is an absolute path, the previous path is ignored. On Windows, " @@ -210,291 +211,342 @@ msgid "" "``r'\\foo'``)::" msgstr "" -#: library/pathlib.rst:234 +#: library/pathlib.rst:235 msgid "" "A path object can be used anywhere an object implementing :class:`os." "PathLike` is accepted::" msgstr "" -#: library/pathlib.rst:242 +#: library/pathlib.rst:243 msgid "" "The string representation of a path is the raw filesystem path itself (in " "native form, e.g. with backslashes under Windows), which you can pass to any " "function taking a file path as a string::" msgstr "" -#: library/pathlib.rst:253 +#: library/pathlib.rst:254 msgid "" "Similarly, calling :class:`bytes` on a path gives the raw filesystem path as " "a bytes object, as encoded by :func:`os.fsencode`::" msgstr "" -#: library/pathlib.rst:260 +#: library/pathlib.rst:261 msgid "" "Calling :class:`bytes` is only recommended under Unix. Under Windows, the " "unicode form is the canonical representation of filesystem paths." msgstr "" -#: library/pathlib.rst:265 +#: library/pathlib.rst:266 msgid "Accessing individual parts" msgstr "" -#: library/pathlib.rst:267 +#: library/pathlib.rst:268 msgid "" "To access the individual \"parts\" (components) of a path, use the following " "property:" msgstr "" -#: library/pathlib.rst:272 +#: library/pathlib.rst:273 msgid "A tuple giving access to the path's various components::" msgstr "" -#: library/pathlib.rst:282 +#: library/pathlib.rst:283 msgid "(note how the drive and local root are regrouped in a single part)" msgstr "" -#: library/pathlib.rst:286 +#: library/pathlib.rst:287 msgid "Methods and properties" msgstr "" -#: library/pathlib.rst:292 +#: library/pathlib.rst:293 msgid "Pure paths provide the following methods and properties:" msgstr "" -#: library/pathlib.rst:296 +#: library/pathlib.rst:297 msgid "A string representing the drive letter or name, if any::" msgstr "" -#: library/pathlib.rst:305 +#: library/pathlib.rst:306 msgid "UNC shares are also considered drives::" msgstr "" -#: library/pathlib.rst:312 +#: library/pathlib.rst:313 msgid "A string representing the (local or global) root, if any::" msgstr "" -#: library/pathlib.rst:321 +#: library/pathlib.rst:322 msgid "UNC shares always have a root::" msgstr "" -#: library/pathlib.rst:326 +#: library/pathlib.rst:327 msgid "" "If the path starts with more than two successive slashes, :class:`~pathlib." "PurePosixPath` collapses them::" msgstr "" -#: library/pathlib.rst:338 +#: library/pathlib.rst:339 msgid "" "This behavior conforms to *The Open Group Base Specifications Issue 6*, " "paragraph `4.11 Pathname Resolution `_:" msgstr "" -#: library/pathlib.rst:342 +#: library/pathlib.rst:343 msgid "" "*\"A pathname that begins with two successive slashes may be interpreted in " "an implementation-defined manner, although more than two leading slashes " "shall be treated as a single slash.\"*" msgstr "" -#: library/pathlib.rst:348 +#: library/pathlib.rst:349 msgid "The concatenation of the drive and root::" msgstr "" -#: library/pathlib.rst:362 +#: library/pathlib.rst:363 msgid "" "An immutable sequence providing access to the logical ancestors of the path::" msgstr "" -#: library/pathlib.rst:373 +#: library/pathlib.rst:374 msgid "" "The parents sequence now supports :term:`slices ` and negative index " "values." msgstr "" -#: library/pathlib.rst:378 +#: library/pathlib.rst:379 msgid "The logical parent of the path::" msgstr "" -#: library/pathlib.rst:384 +#: library/pathlib.rst:385 msgid "You cannot go past an anchor, or empty path::" msgstr "" -#: library/pathlib.rst:394 +#: library/pathlib.rst:395 msgid "This is a purely lexical operation, hence the following behaviour::" msgstr "" -#: library/pathlib.rst:400 +#: library/pathlib.rst:401 msgid "" "If you want to walk an arbitrary filesystem path upwards, it is recommended " "to first call :meth:`Path.resolve` so as to resolve symlinks and eliminate " "``\"..\"`` components." msgstr "" -#: library/pathlib.rst:407 +#: library/pathlib.rst:408 msgid "" "A string representing the final path component, excluding the drive and " "root, if any::" msgstr "" -#: library/pathlib.rst:413 +#: library/pathlib.rst:414 msgid "UNC drive names are not considered::" msgstr "" -#: library/pathlib.rst:423 +#: library/pathlib.rst:424 msgid "The file extension of the final component, if any::" msgstr "" -#: library/pathlib.rst:435 +#: library/pathlib.rst:436 msgid "A list of the path's file extensions::" msgstr "" -#: library/pathlib.rst:447 +#: library/pathlib.rst:448 msgid "The final path component, without its suffix::" msgstr "" -#: library/pathlib.rst:459 +#: library/pathlib.rst:460 msgid "" "Return a string representation of the path with forward slashes (``/``)::" msgstr "" -#: library/pathlib.rst:470 +#: library/pathlib.rst:471 msgid "" "Represent the path as a ``file`` URI. :exc:`ValueError` is raised if the " "path isn't absolute." msgstr "" -#: library/pathlib.rst:483 +#: library/pathlib.rst:484 msgid "" "Return whether the path is absolute or not. A path is considered absolute " "if it has both a root and (if the flavour allows) a drive::" msgstr "" -#: library/pathlib.rst:503 +#: library/pathlib.rst:504 msgid "Return whether or not this path is relative to the *other* path." msgstr "" #: library/pathlib.rst:516 msgid "" +"Passing additional arguments is deprecated; if supplied, they are joined " +"with *other*." +msgstr "" + +#: library/pathlib.rst:521 +msgid "" "With :class:`PureWindowsPath`, return ``True`` if the path is considered " "reserved under Windows, ``False`` otherwise. With :class:`PurePosixPath`, " "``False`` is always returned." msgstr "" -#: library/pathlib.rst:525 +#: library/pathlib.rst:530 msgid "" "File system calls on reserved paths can fail mysteriously or have unintended " "effects." msgstr "" -#: library/pathlib.rst:531 +#: library/pathlib.rst:536 msgid "" "Calling this method is equivalent to combining the path with each of the " -"*other* arguments in turn::" +"given *pathsegments* in turn::" msgstr "" -#: library/pathlib.rst:546 +#: library/pathlib.rst:551 msgid "" "Match this path against the provided glob-style pattern. Return ``True`` if " "matching is successful, ``False`` otherwise." msgstr "" -#: library/pathlib.rst:549 +#: library/pathlib.rst:554 msgid "" "If *pattern* is relative, the path can be either relative or absolute, and " "matching is done from the right::" msgstr "" -#: library/pathlib.rst:559 +#: library/pathlib.rst:564 msgid "" "If *pattern* is absolute, the path must be absolute, and the whole path must " "match::" msgstr "" -#: library/pathlib.rst:567 +#: library/pathlib.rst:572 +msgid "" +"The *pattern* may be another path object; this speeds up matching the same " +"pattern against multiple files::" +msgstr "" + +#: library/pathlib.rst:579 msgid "As with other methods, case-sensitivity follows platform defaults::" msgstr "" -#: library/pathlib.rst:577 +#: library/pathlib.rst:586 +msgid "" +"Set *case_sensitive* to ``True`` or ``False`` to override this behaviour." +msgstr "" + +#: library/pathlib.rst:931 library/pathlib.rst:1344 +msgid "The *case_sensitive* parameter was added." +msgstr "" + +#: library/pathlib.rst:594 msgid "" "Compute a version of this path relative to the path represented by *other*. " -"If it's impossible, ValueError is raised::" +"If it's impossible, :exc:`ValueError` is raised::" +msgstr "" + +#: library/pathlib.rst:609 +msgid "" +"When *walk_up* is False (the default), the path must start with *other*. " +"When the argument is True, ``..`` entries may be added to form the relative " +"path. In all other cases, such as the paths referencing different drives, :" +"exc:`ValueError` is raised.::" msgstr "" -#: library/pathlib.rst:592 +#: library/pathlib.rst:624 msgid "" -"NOTE: This function is part of :class:`PurePath` and works with strings. It " -"does not check or access the underlying file structure." +"This function is part of :class:`PurePath` and works with strings. It does " +"not check or access the underlying file structure. This can impact the " +"*walk_up* option as it assumes that no symlinks are present in the path; " +"call :meth:`~Path.resolve` first if necessary to resolve symlinks." msgstr "" -#: library/pathlib.rst:597 +#: library/pathlib.rst:630 +msgid "" +"The *walk_up* parameter was added (old behavior is the same as " +"``walk_up=False``)." +msgstr "" + +#: library/pathlib.rst:635 +msgid "" +"Passing additional positional arguments is deprecated; if supplied, they are " +"joined with *other*." +msgstr "" + +#: library/pathlib.rst:640 msgid "" "Return a new path with the :attr:`name` changed. If the original path " "doesn't have a name, ValueError is raised::" msgstr "" -#: library/pathlib.rst:614 +#: library/pathlib.rst:657 msgid "" "Return a new path with the :attr:`stem` changed. If the original path " "doesn't have a name, ValueError is raised::" msgstr "" -#: library/pathlib.rst:638 +#: library/pathlib.rst:681 msgid "" "Return a new path with the :attr:`suffix` changed. If the original path " "doesn't have a suffix, the new *suffix* is appended instead. If the " "*suffix* is an empty string, the original suffix is removed::" msgstr "" -#: library/pathlib.rst:657 +#: library/pathlib.rst:698 +msgid "" +"Create a new path object of the same type by combining the given " +"*pathsegments*. This method is called whenever a derivative path is created, " +"such as from :attr:`parent` and :meth:`relative_to`. Subclasses may override " +"this method to pass information to derivative paths, for example::" +msgstr "" + +#: library/pathlib.rst:724 msgid "Concrete paths" msgstr "" -#: library/pathlib.rst:659 +#: library/pathlib.rst:726 msgid "" "Concrete paths are subclasses of the pure path classes. In addition to " "operations provided by the latter, they also provide methods to do system " "calls on path objects. There are three ways to instantiate concrete paths:" msgstr "" -#: library/pathlib.rst:665 +#: library/pathlib.rst:732 msgid "" "A subclass of :class:`PurePath`, this class represents concrete paths of the " "system's path flavour (instantiating it creates either a :class:`PosixPath` " "or a :class:`WindowsPath`)::" msgstr "" -#: library/pathlib.rst:676 +#: library/pathlib.rst:743 msgid "" "A subclass of :class:`Path` and :class:`PurePosixPath`, this class " "represents concrete non-Windows filesystem paths::" msgstr "" -#: library/pathlib.rst:686 +#: library/pathlib.rst:753 msgid "" "A subclass of :class:`Path` and :class:`PureWindowsPath`, this class " "represents concrete Windows filesystem paths::" msgstr "" -#: library/pathlib.rst:694 +#: library/pathlib.rst:761 msgid "" "You can only instantiate the class flavour that corresponds to your system " "(allowing system calls on non-compatible path flavours could lead to bugs or " "failures in your application)::" msgstr "" -#: library/pathlib.rst:714 +#: library/pathlib.rst:781 msgid "Methods" msgstr "" -#: library/pathlib.rst:716 +#: library/pathlib.rst:783 msgid "" "Concrete paths provide the following methods in addition to pure paths " "methods. Many of these methods can raise an :exc:`OSError` if a system call " "fails (for example because the path doesn't exist)." msgstr "" -#: library/pathlib.rst:722 +#: library/pathlib.rst:789 msgid "" ":meth:`~Path.exists()`, :meth:`~Path.is_dir()`, :meth:`~Path.is_file()`, :" "meth:`~Path.is_mount()`, :meth:`~Path.is_symlink()`, :meth:`~Path." @@ -504,172 +556,192 @@ msgid "" "the OS level." msgstr "" -#: library/pathlib.rst:732 +#: library/pathlib.rst:799 msgid "" "Return a new path object representing the current directory (as returned by :" "func:`os.getcwd`)::" msgstr "" -#: library/pathlib.rst:741 +#: library/pathlib.rst:808 msgid "" "Return a new path object representing the user's home directory (as returned " "by :func:`os.path.expanduser` with ``~`` construct). If the home directory " "can't be resolved, :exc:`RuntimeError` is raised." msgstr "" -#: library/pathlib.rst:755 +#: library/pathlib.rst:822 msgid "" "Return a :class:`os.stat_result` object containing information about this " "path, like :func:`os.stat`. The result is looked up at each call to this " "method." msgstr "" -#: library/pathlib.rst:758 +#: library/pathlib.rst:825 msgid "" "This method normally follows symlinks; to stat a symlink add the argument " "``follow_symlinks=False``, or use :meth:`~Path.lstat`." msgstr "" -#: library/pathlib.rst:789 +#: library/pathlib.rst:856 library/pathlib.rst:877 msgid "The *follow_symlinks* parameter was added." msgstr "" -#: library/pathlib.rst:774 +#: library/pathlib.rst:841 msgid "Change the file mode and permissions, like :func:`os.chmod`." msgstr "" -#: library/pathlib.rst:776 +#: library/pathlib.rst:843 msgid "" "This method normally follows symlinks. Some Unix flavours support changing " "permissions on the symlink itself; on these platforms you may add the " "argument ``follow_symlinks=False``, or use :meth:`~Path.lchmod`." msgstr "" -#: library/pathlib.rst:794 -msgid "Whether the path points to an existing file or directory::" +#: library/pathlib.rst:861 +msgid "Return ``True`` if the path points to an existing file or directory." msgstr "" -#: library/pathlib.rst:806 +#: library/pathlib.rst:863 msgid "" -"If the path points to a symlink, :meth:`exists` returns whether the symlink " -"*points to* an existing file or directory." +"This method normally follows symlinks; to check if a symlink exists, add the " +"argument ``follow_symlinks=False``." msgstr "" -#: library/pathlib.rst:812 +#: library/pathlib.rst:882 msgid "" "Return a new path with expanded ``~`` and ``~user`` constructs, as returned " "by :meth:`os.path.expanduser`. If a home directory can't be resolved, :exc:" "`RuntimeError` is raised." msgstr "" -#: library/pathlib.rst:827 +#: library/pathlib.rst:897 msgid "" "Glob the given relative *pattern* in the directory represented by this path, " "yielding all matching files (of any kind)::" msgstr "" -#: library/pathlib.rst:835 +#: library/pathlib.rst:905 msgid "" "Patterns are the same as for :mod:`fnmatch`, with the addition of \"``**``\" " "which means \"this directory and all subdirectories, recursively\". In " "other words, it enables recursive globbing::" msgstr "" -#: library/pathlib.rst:847 +#: library/pathlib.rst:1333 +msgid "" +"By default, or when the *case_sensitive* keyword-only argument is set to " +"``None``, this method matches paths using platform-specific casing rules: " +"typically, case-sensitive on POSIX, and case-insensitive on Windows. Set " +"*case_sensitive* to ``True`` or ``False`` to override this behaviour." +msgstr "" + +#: library/pathlib.rst:922 msgid "" "Using the \"``**``\" pattern in large directory trees may consume an " "inordinate amount of time." msgstr "" -#: library/pathlib.rst:850 +#: library/pathlib.rst:925 msgid "" "Raises an :ref:`auditing event ` ``pathlib.Path.glob`` with " "arguments ``self``, ``pattern``." msgstr "" -#: library/pathlib.rst:1147 +#: library/pathlib.rst:1340 msgid "" "Return only directories if *pattern* ends with a pathname components " "separator (:data:`~os.sep` or :data:`~os.altsep`)." msgstr "" -#: library/pathlib.rst:858 +#: library/pathlib.rst:937 msgid "" "Return the name of the group owning the file. :exc:`KeyError` is raised if " "the file's gid isn't found in the system database." msgstr "" -#: library/pathlib.rst:864 +#: library/pathlib.rst:943 msgid "" "Return ``True`` if the path points to a directory (or a symbolic link " "pointing to a directory), ``False`` if it points to another kind of file." msgstr "" -#: library/pathlib.rst:876 library/pathlib.rst:914 library/pathlib.rst:932 +#: library/pathlib.rst:955 library/pathlib.rst:1006 library/pathlib.rst:1024 msgid "" "``False`` is also returned if the path doesn't exist or is a broken symlink; " "other errors (such as permission errors) are propagated." msgstr "" -#: library/pathlib.rst:873 +#: library/pathlib.rst:952 msgid "" "Return ``True`` if the path points to a regular file (or a symbolic link " "pointing to a regular file), ``False`` if it points to another kind of file." msgstr "" -#: library/pathlib.rst:882 +#: library/pathlib.rst:961 +msgid "" +"Return ``True`` if the path points to a junction, and ``False`` for any " +"other type of file. Currently only Windows supports junctions." +msgstr "" + +#: library/pathlib.rst:969 msgid "" "Return ``True`` if the path is a :dfn:`mount point`: a point in a file " "system where a different file system has been mounted. On POSIX, the " "function checks whether *path*'s parent, :file:`path/..`, is on a different " "device than *path*, or whether :file:`path/..` and *path* point to the same " "i-node on the same device --- this should detect mount points for all Unix " -"and POSIX variants. Not implemented on Windows." +"and POSIX variants. On Windows, a mount point is considered to be a drive " +"letter root (e.g. ``c:\\``), a UNC share (e.g. ``\\\\server\\share``), or a " +"mounted filesystem directory." msgstr "" -#: library/pathlib.rst:894 +#: library/pathlib.rst:980 +msgid "Windows support was added." +msgstr "" + +#: library/pathlib.rst:986 msgid "" "Return ``True`` if the path points to a symbolic link, ``False`` otherwise." msgstr "" -#: library/pathlib.rst:896 +#: library/pathlib.rst:988 msgid "" "``False`` is also returned if the path doesn't exist; other errors (such as " "permission errors) are propagated." msgstr "" -#: library/pathlib.rst:902 +#: library/pathlib.rst:994 msgid "" "Return ``True`` if the path points to a Unix socket (or a symbolic link " "pointing to a Unix socket), ``False`` if it points to another kind of file." msgstr "" -#: library/pathlib.rst:911 +#: library/pathlib.rst:1003 msgid "" "Return ``True`` if the path points to a FIFO (or a symbolic link pointing to " "a FIFO), ``False`` if it points to another kind of file." msgstr "" -#: library/pathlib.rst:920 +#: library/pathlib.rst:1012 msgid "" "Return ``True`` if the path points to a block device (or a symbolic link " "pointing to a block device), ``False`` if it points to another kind of file." msgstr "" -#: library/pathlib.rst:929 +#: library/pathlib.rst:1021 msgid "" "Return ``True`` if the path points to a character device (or a symbolic link " "pointing to a character device), ``False`` if it points to another kind of " "file." msgstr "" -#: library/pathlib.rst:938 +#: library/pathlib.rst:1030 msgid "" "When the path points to a directory, yield path objects of the directory " "contents::" msgstr "" -#: library/pathlib.rst:952 +#: library/pathlib.rst:1044 msgid "" "The children are yielded in arbitrary order, and the special entries ``'.'`` " "and ``'..'`` are not included. If a file is removed from or added to the " @@ -677,88 +749,188 @@ msgid "" "be included is unspecified." msgstr "" -#: library/pathlib.rst:959 +#: library/pathlib.rst:1051 +msgid "" +"Generate the file names in a directory tree by walking the tree either top-" +"down or bottom-up." +msgstr "" + +#: library/pathlib.rst:1054 +msgid "" +"For each directory in the directory tree rooted at *self* (including *self* " +"but excluding '.' and '..'), the method yields a 3-tuple of ``(dirpath, " +"dirnames, filenames)``." +msgstr "" + +#: library/pathlib.rst:1058 +msgid "" +"*dirpath* is a :class:`Path` to the directory currently being walked, " +"*dirnames* is a list of strings for the names of subdirectories in *dirpath* " +"(excluding ``'.'`` and ``'..'``), and *filenames* is a list of strings for " +"the names of the non-directory files in *dirpath*. To get a full path (which " +"begins with *self*) to a file or directory in *dirpath*, do ``dirpath / " +"name``. Whether or not the lists are sorted is file system-dependent." +msgstr "" + +#: library/pathlib.rst:1066 +msgid "" +"If the optional argument *top_down* is true (which is the default), the " +"triple for a directory is generated before the triples for any of its " +"subdirectories (directories are walked top-down). If *top_down* is false, " +"the triple for a directory is generated after the triples for all of its " +"subdirectories (directories are walked bottom-up). No matter the value of " +"*top_down*, the list of subdirectories is retrieved before the triples for " +"the directory and its subdirectories are walked." +msgstr "" + +#: library/pathlib.rst:1074 +msgid "" +"When *top_down* is true, the caller can modify the *dirnames* list in-place " +"(for example, using :keyword:`del` or slice assignment), and :meth:`Path." +"walk` will only recurse into the subdirectories whose names remain in " +"*dirnames*. This can be used to prune the search, or to impose a specific " +"order of visiting, or even to inform :meth:`Path.walk` about directories the " +"caller creates or renames before it resumes :meth:`Path.walk` again. " +"Modifying *dirnames* when *top_down* is false has no effect on the behavior " +"of :meth:`Path.walk()` since the directories in *dirnames* have already been " +"generated by the time *dirnames* is yielded to the caller." +msgstr "" + +#: library/pathlib.rst:1084 +msgid "" +"By default, errors from :func:`os.scandir` are ignored. If the optional " +"argument *on_error* is specified, it should be a callable; it will be called " +"with one argument, an :exc:`OSError` instance. The callable can handle the " +"error to continue the walk or re-raise it to stop the walk. Note that the " +"filename is available as the ``filename`` attribute of the exception object." +msgstr "" + +#: library/pathlib.rst:1090 +msgid "" +"By default, :meth:`Path.walk` does not follow symbolic links, and instead " +"adds them to the *filenames* list. Set *follow_symlinks* to true to resolve " +"symlinks and place them in *dirnames* and *filenames* as appropriate for " +"their targets, and consequently visit directories pointed to by symlinks " +"(where supported)." +msgstr "" + +#: library/pathlib.rst:1097 +msgid "" +"Be aware that setting *follow_symlinks* to true can lead to infinite " +"recursion if a link points to a parent directory of itself. :meth:`Path." +"walk` does not keep track of the directories it has already visited." +msgstr "" + +#: library/pathlib.rst:1102 +msgid "" +":meth:`Path.walk` assumes the directories it walks are not modified during " +"execution. For example, if a directory from *dirnames* has been replaced " +"with a symlink and *follow_symlinks* is false, :meth:`Path.walk` will still " +"try to descend into it. To prevent such behavior, remove directories from " +"*dirnames* as appropriate." +msgstr "" + +#: library/pathlib.rst:1110 +msgid "" +"Unlike :func:`os.walk`, :meth:`Path.walk` lists symlinks to directories in " +"*filenames* if *follow_symlinks* is false." +msgstr "" + +#: library/pathlib.rst:1113 +msgid "" +"This example displays the number of bytes used by all files in each " +"directory, while ignoring ``__pycache__`` directories::" +msgstr "" + +#: library/pathlib.rst:1129 +msgid "" +"This next example is a simple implementation of :func:`shutil.rmtree`. " +"Walking the tree bottom-up is essential as :func:`rmdir` doesn't allow " +"deleting a directory before it is empty::" +msgstr "" + +#: library/pathlib.rst:1146 msgid "" "Like :meth:`Path.chmod` but, if the path points to a symbolic link, the " "symbolic link's mode is changed rather than its target's." msgstr "" -#: library/pathlib.rst:965 +#: library/pathlib.rst:1152 msgid "" "Like :meth:`Path.stat` but, if the path points to a symbolic link, return " "the symbolic link's information rather than its target's." msgstr "" -#: library/pathlib.rst:971 +#: library/pathlib.rst:1158 msgid "" "Create a new directory at this given path. If *mode* is given, it is " "combined with the process' ``umask`` value to determine the file mode and " "access flags. If the path already exists, :exc:`FileExistsError` is raised." msgstr "" -#: library/pathlib.rst:976 +#: library/pathlib.rst:1163 msgid "" "If *parents* is true, any missing parents of this path are created as " "needed; they are created with the default permissions without taking *mode* " "into account (mimicking the POSIX ``mkdir -p`` command)." msgstr "" -#: library/pathlib.rst:980 +#: library/pathlib.rst:1167 msgid "" "If *parents* is false (the default), a missing parent raises :exc:" "`FileNotFoundError`." msgstr "" -#: library/pathlib.rst:983 +#: library/pathlib.rst:1170 msgid "" "If *exist_ok* is false (the default), :exc:`FileExistsError` is raised if " "the target directory already exists." msgstr "" -#: library/pathlib.rst:986 +#: library/pathlib.rst:1173 msgid "" "If *exist_ok* is true, :exc:`FileExistsError` exceptions will be ignored " "(same behavior as the POSIX ``mkdir -p`` command), but only if the last path " "component is not an existing non-directory file." msgstr "" -#: library/pathlib.rst:990 +#: library/pathlib.rst:1177 msgid "The *exist_ok* parameter was added." msgstr "" -#: library/pathlib.rst:996 +#: library/pathlib.rst:1183 msgid "" "Open the file pointed to by the path, like the built-in :func:`open` " "function does::" msgstr "" -#: library/pathlib.rst:1008 +#: library/pathlib.rst:1195 msgid "" "Return the name of the user owning the file. :exc:`KeyError` is raised if " "the file's uid isn't found in the system database." msgstr "" -#: library/pathlib.rst:1014 +#: library/pathlib.rst:1201 msgid "Return the binary contents of the pointed-to file as a bytes object::" msgstr "" -#: library/pathlib.rst:1027 +#: library/pathlib.rst:1214 msgid "Return the decoded contents of the pointed-to file as a string::" msgstr "" -#: library/pathlib.rst:1035 +#: library/pathlib.rst:1222 msgid "" "The file is opened and then closed. The optional parameters have the same " "meaning as in :func:`open`." msgstr "" -#: library/pathlib.rst:1043 +#: library/pathlib.rst:1230 msgid "" "Return the path to which the symbolic link points (as returned by :func:`os." "readlink`)::" msgstr "" -#: library/pathlib.rst:1056 +#: library/pathlib.rst:1243 msgid "" "Rename this file or directory to the given *target*, and return a new Path " "instance pointing to *target*. On Unix, if *target* exists and is a file, " @@ -767,49 +939,49 @@ msgid "" "either a string or another path object::" msgstr "" -#: library/pathlib.rst:1087 +#: library/pathlib.rst:1274 msgid "" "The target path may be absolute or relative. Relative paths are interpreted " "relative to the current working directory, *not* the directory of the Path " "object." msgstr "" -#: library/pathlib.rst:1075 +#: library/pathlib.rst:1262 msgid "" "It is implemented in terms of :func:`os.rename` and gives the same " "guarantees." msgstr "" -#: library/pathlib.rst:1091 +#: library/pathlib.rst:1278 msgid "Added return value, return the new Path instance." msgstr "" -#: library/pathlib.rst:1083 +#: library/pathlib.rst:1270 msgid "" "Rename this file or directory to the given *target*, and return a new Path " "instance pointing to *target*. If *target* points to an existing file or " "empty directory, it will be unconditionally replaced." msgstr "" -#: library/pathlib.rst:1097 +#: library/pathlib.rst:1284 msgid "" "Make the path absolute, without normalization or resolving symlinks. Returns " "a new path object::" msgstr "" -#: library/pathlib.rst:1109 +#: library/pathlib.rst:1296 msgid "" "Make the path absolute, resolving any symlinks. A new path object is " "returned::" msgstr "" -#: library/pathlib.rst:1118 +#: library/pathlib.rst:1305 msgid "" "\"``..``\" components are also eliminated (this is the only method to do " "so)::" msgstr "" -#: library/pathlib.rst:1124 +#: library/pathlib.rst:1311 msgid "" "If the path doesn't exist and *strict* is ``True``, :exc:`FileNotFoundError` " "is raised. If *strict* is ``False``, the path is resolved as far as " @@ -818,80 +990,62 @@ msgid "" "`RuntimeError` is raised." msgstr "" -#: library/pathlib.rst:1130 -msgid "The *strict* argument (pre-3.6 behavior is strict)." +#: library/pathlib.rst:1317 +msgid "The *strict* parameter was added (pre-3.6 behavior is strict)." msgstr "" -#: library/pathlib.rst:1135 +#: library/pathlib.rst:1322 msgid "" -"This is like calling :func:`Path.glob` with \"``**/``\" added in front of " -"the given relative *pattern*::" +"Glob the given relative *pattern* recursively. This is like calling :func:" +"`Path.glob` with \"``**/``\" added in front of the *pattern*, where " +"*patterns* are the same as for :mod:`fnmatch`::" msgstr "" -#: library/pathlib.rst:1145 +#: library/pathlib.rst:1338 msgid "" "Raises an :ref:`auditing event ` ``pathlib.Path.rglob`` with " "arguments ``self``, ``pattern``." msgstr "" -#: library/pathlib.rst:1153 +#: library/pathlib.rst:1350 msgid "Remove this directory. The directory must be empty." msgstr "" -#: library/pathlib.rst:1158 +#: library/pathlib.rst:1355 msgid "" "Return whether this path points to the same file as *other_path*, which can " "be either a Path object, or a string. The semantics are similar to :func:" "`os.path.samefile` and :func:`os.path.samestat`." msgstr "" -#: library/pathlib.rst:1162 +#: library/pathlib.rst:1359 msgid "" "An :exc:`OSError` can be raised if either file cannot be accessed for some " "reason." msgstr "" -#: library/pathlib.rst:1179 +#: library/pathlib.rst:1376 msgid "" "Make this path a symbolic link to *target*. Under Windows, " "*target_is_directory* must be true (default ``False``) if the link's target " "is a directory. Under POSIX, *target_is_directory*'s value is ignored." msgstr "" -#: library/pathlib.rst:1195 +#: library/pathlib.rst:1392 msgid "" "The order of arguments (link, target) is the reverse of :func:`os.symlink`'s." msgstr "" -#: library/pathlib.rst:1200 +#: library/pathlib.rst:1397 msgid "Make this path a hard link to the same file as *target*." msgstr "" -#: library/pathlib.rst:1203 +#: library/pathlib.rst:1400 msgid "" "The order of arguments (link, target) is the reverse of :func:`os.link`'s." msgstr "" -#: library/pathlib.rst:1210 -msgid "Make *target* a hard link to this path." -msgstr "" - -#: library/pathlib.rst:1214 -msgid "" -"This function does not make this path a hard link to *target*, despite the " -"implication of the function and argument names. The argument order (target, " -"link) is the reverse of :func:`Path.symlink_to` and :func:`Path." -"hardlink_to`, but matches that of :func:`os.link`." -msgstr "" - -#: library/pathlib.rst:1223 -msgid "" -"This method is deprecated in favor of :meth:`Path.hardlink_to`, as the " -"argument order of :meth:`Path.link_to` does not match that of :meth:`Path." -"symlink_to`." -msgstr "" - -#: library/pathlib.rst:1230 +#: library/pathlib.rst:1408 msgid "" "Create a file at this given path. If *mode* is given, it is combined with " "the process' ``umask`` value to determine the file mode and access flags. " @@ -900,65 +1054,65 @@ msgid "" "`FileExistsError` is raised." msgstr "" -#: library/pathlib.rst:1239 +#: library/pathlib.rst:1417 msgid "" "Remove this file or symbolic link. If the path points to a directory, use :" "func:`Path.rmdir` instead." msgstr "" -#: library/pathlib.rst:1242 +#: library/pathlib.rst:1420 msgid "" "If *missing_ok* is false (the default), :exc:`FileNotFoundError` is raised " "if the path does not exist." msgstr "" -#: library/pathlib.rst:1245 +#: library/pathlib.rst:1423 msgid "" "If *missing_ok* is true, :exc:`FileNotFoundError` exceptions will be ignored " "(same behavior as the POSIX ``rm -f`` command)." msgstr "" -#: library/pathlib.rst:1248 +#: library/pathlib.rst:1426 msgid "The *missing_ok* parameter was added." msgstr "" -#: library/pathlib.rst:1254 +#: library/pathlib.rst:1432 msgid "" "Open the file pointed to in bytes mode, write *data* to it, and close the " "file::" msgstr "" -#: library/pathlib.rst:1263 +#: library/pathlib.rst:1441 msgid "An existing file of the same name is overwritten." msgstr "" -#: library/pathlib.rst:1270 +#: library/pathlib.rst:1448 msgid "" "Open the file pointed to in text mode, write *data* to it, and close the " "file::" msgstr "" -#: library/pathlib.rst:1279 +#: library/pathlib.rst:1457 msgid "" "An existing file of the same name is overwritten. The optional parameters " "have the same meaning as in :func:`open`." msgstr "" -#: library/pathlib.rst:1284 +#: library/pathlib.rst:1462 msgid "The *newline* parameter was added." msgstr "" -#: library/pathlib.rst:1288 +#: library/pathlib.rst:1466 msgid "Correspondence to tools in the :mod:`os` module" msgstr "" -#: library/pathlib.rst:1290 +#: library/pathlib.rst:1468 msgid "" "Below is a table mapping various :mod:`os` functions to their corresponding :" "class:`PurePath`/:class:`Path` equivalent." msgstr "" -#: library/pathlib.rst:1295 +#: library/pathlib.rst:1473 msgid "" "Not all pairs of functions/methods below are equivalent. Some of them, " "despite having some overlapping use-cases, have different semantics. They " @@ -966,237 +1120,245 @@ msgid "" "relpath` and :meth:`PurePath.relative_to`." msgstr "" -#: library/pathlib.rst:1301 +#: library/pathlib.rst:1479 msgid ":mod:`os` and :mod:`os.path`" msgstr "" -#: library/pathlib.rst:1301 +#: library/pathlib.rst:1479 msgid ":mod:`pathlib`" msgstr "" -#: library/pathlib.rst:1303 +#: library/pathlib.rst:1481 msgid ":func:`os.path.abspath`" msgstr "" -#: library/pathlib.rst:1303 +#: library/pathlib.rst:1481 msgid ":meth:`Path.absolute` [#]_" msgstr "" -#: library/pathlib.rst:1304 +#: library/pathlib.rst:1482 msgid ":func:`os.path.realpath`" msgstr "" -#: library/pathlib.rst:1304 +#: library/pathlib.rst:1482 msgid ":meth:`Path.resolve`" msgstr "" -#: library/pathlib.rst:1305 +#: library/pathlib.rst:1483 msgid ":func:`os.chmod`" msgstr "" -#: library/pathlib.rst:1305 +#: library/pathlib.rst:1483 msgid ":meth:`Path.chmod`" msgstr "" -#: library/pathlib.rst:1306 +#: library/pathlib.rst:1484 msgid ":func:`os.mkdir`" msgstr "" -#: library/pathlib.rst:1307 +#: library/pathlib.rst:1485 msgid ":meth:`Path.mkdir`" msgstr "" -#: library/pathlib.rst:1307 +#: library/pathlib.rst:1485 msgid ":func:`os.makedirs`" msgstr "" -#: library/pathlib.rst:1308 +#: library/pathlib.rst:1486 msgid ":func:`os.rename`" msgstr "" -#: library/pathlib.rst:1308 +#: library/pathlib.rst:1486 msgid ":meth:`Path.rename`" msgstr "" -#: library/pathlib.rst:1309 +#: library/pathlib.rst:1487 msgid ":func:`os.replace`" msgstr "" -#: library/pathlib.rst:1309 +#: library/pathlib.rst:1487 msgid ":meth:`Path.replace`" msgstr "" -#: library/pathlib.rst:1310 +#: library/pathlib.rst:1488 msgid ":func:`os.rmdir`" msgstr "" -#: library/pathlib.rst:1310 +#: library/pathlib.rst:1488 msgid ":meth:`Path.rmdir`" msgstr "" -#: library/pathlib.rst:1311 +#: library/pathlib.rst:1489 msgid ":func:`os.remove`, :func:`os.unlink`" msgstr "" -#: library/pathlib.rst:1311 +#: library/pathlib.rst:1489 msgid ":meth:`Path.unlink`" msgstr "" -#: library/pathlib.rst:1312 +#: library/pathlib.rst:1490 msgid ":func:`os.getcwd`" msgstr "" -#: library/pathlib.rst:1312 +#: library/pathlib.rst:1490 msgid ":func:`Path.cwd`" msgstr "" -#: library/pathlib.rst:1313 +#: library/pathlib.rst:1491 msgid ":func:`os.path.exists`" msgstr "" -#: library/pathlib.rst:1313 +#: library/pathlib.rst:1491 msgid ":meth:`Path.exists`" msgstr "" -#: library/pathlib.rst:1314 +#: library/pathlib.rst:1492 msgid ":func:`os.path.expanduser`" msgstr "" -#: library/pathlib.rst:1314 +#: library/pathlib.rst:1492 msgid ":meth:`Path.expanduser` and :meth:`Path.home`" msgstr "" -#: library/pathlib.rst:1316 +#: library/pathlib.rst:1494 msgid ":func:`os.listdir`" msgstr "" -#: library/pathlib.rst:1316 +#: library/pathlib.rst:1494 msgid ":meth:`Path.iterdir`" msgstr "" -#: library/pathlib.rst:1317 +#: library/pathlib.rst:1495 +msgid ":func:`os.walk`" +msgstr "" + +#: library/pathlib.rst:1495 +msgid ":meth:`Path.walk`" +msgstr "" + +#: library/pathlib.rst:1496 msgid ":func:`os.path.isdir`" msgstr "" -#: library/pathlib.rst:1317 +#: library/pathlib.rst:1496 msgid ":meth:`Path.is_dir`" msgstr "" -#: library/pathlib.rst:1318 +#: library/pathlib.rst:1497 msgid ":func:`os.path.isfile`" msgstr "" -#: library/pathlib.rst:1318 +#: library/pathlib.rst:1497 msgid ":meth:`Path.is_file`" msgstr "" -#: library/pathlib.rst:1319 +#: library/pathlib.rst:1498 msgid ":func:`os.path.islink`" msgstr "" -#: library/pathlib.rst:1319 +#: library/pathlib.rst:1498 msgid ":meth:`Path.is_symlink`" msgstr "" -#: library/pathlib.rst:1320 +#: library/pathlib.rst:1499 msgid ":func:`os.link`" msgstr "" -#: library/pathlib.rst:1320 +#: library/pathlib.rst:1499 msgid ":meth:`Path.hardlink_to`" msgstr "" -#: library/pathlib.rst:1321 +#: library/pathlib.rst:1500 msgid ":func:`os.symlink`" msgstr "" -#: library/pathlib.rst:1321 +#: library/pathlib.rst:1500 msgid ":meth:`Path.symlink_to`" msgstr "" -#: library/pathlib.rst:1322 +#: library/pathlib.rst:1501 msgid ":func:`os.readlink`" msgstr "" -#: library/pathlib.rst:1322 +#: library/pathlib.rst:1501 msgid ":meth:`Path.readlink`" msgstr "" -#: library/pathlib.rst:1323 +#: library/pathlib.rst:1502 msgid ":func:`os.path.relpath`" msgstr "" -#: library/pathlib.rst:1323 +#: library/pathlib.rst:1502 msgid ":meth:`PurePath.relative_to` [#]_" msgstr "" -#: library/pathlib.rst:1324 +#: library/pathlib.rst:1503 msgid ":func:`os.stat`" msgstr "" -#: library/pathlib.rst:1324 +#: library/pathlib.rst:1503 msgid ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`" msgstr "" -#: library/pathlib.rst:1327 +#: library/pathlib.rst:1506 msgid ":func:`os.path.isabs`" msgstr "" -#: library/pathlib.rst:1327 +#: library/pathlib.rst:1506 msgid ":meth:`PurePath.is_absolute`" msgstr "" -#: library/pathlib.rst:1328 +#: library/pathlib.rst:1507 msgid ":func:`os.path.join`" msgstr "" -#: library/pathlib.rst:1328 +#: library/pathlib.rst:1507 msgid ":func:`PurePath.joinpath`" msgstr "" -#: library/pathlib.rst:1329 +#: library/pathlib.rst:1508 msgid ":func:`os.path.basename`" msgstr "" -#: library/pathlib.rst:1329 +#: library/pathlib.rst:1508 msgid ":attr:`PurePath.name`" msgstr "" -#: library/pathlib.rst:1330 +#: library/pathlib.rst:1509 msgid ":func:`os.path.dirname`" msgstr "" -#: library/pathlib.rst:1330 +#: library/pathlib.rst:1509 msgid ":attr:`PurePath.parent`" msgstr "" -#: library/pathlib.rst:1331 +#: library/pathlib.rst:1510 msgid ":func:`os.path.samefile`" msgstr "" -#: library/pathlib.rst:1331 +#: library/pathlib.rst:1510 msgid ":meth:`Path.samefile`" msgstr "" -#: library/pathlib.rst:1332 +#: library/pathlib.rst:1511 msgid ":func:`os.path.splitext`" msgstr "" -#: library/pathlib.rst:1332 +#: library/pathlib.rst:1511 msgid ":attr:`PurePath.stem` and :attr:`PurePath.suffix`" msgstr "" -#: library/pathlib.rst:1337 +#: library/pathlib.rst:1516 msgid "Footnotes" msgstr "" -#: library/pathlib.rst:1338 +#: library/pathlib.rst:1517 msgid "" ":func:`os.path.abspath` normalizes the resulting path, which may change its " "meaning in the presence of symlinks, while :meth:`Path.absolute` does not." msgstr "" -#: library/pathlib.rst:1339 +#: library/pathlib.rst:1518 msgid "" ":meth:`PurePath.relative_to` requires ``self`` to be the subpath of the " "argument, but :func:`os.path.relpath` does not." diff --git a/library/pdb.po b/library/pdb.po index e55bf5763..964b105bf 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-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -306,7 +306,33 @@ msgid "" "\"\";\"``." msgstr "" -#: library/pdb.rst:270 +#: library/pdb.rst:266 +msgid "" +"To set a temporary global variable, use a *convenience variable*. A " +"*convenience variable* is a variable whose name starts with ``$``. For " +"example, ``$foo = 1`` sets a global variable ``$foo`` which you can use in " +"the debugger session. The *convenience variables* are cleared when the " +"program resumes execution so it's less likely to interfere with your program " +"compared to using normal variables like ``foo = 1``." +msgstr "" + +#: library/pdb.rst:273 +msgid "There are three preset *convenience variables*:" +msgstr "" + +#: library/pdb.rst:275 +msgid "``$_frame``: the current frame you are debugging" +msgstr "" + +#: library/pdb.rst:276 +msgid "``$_retval``: the return value if the frame is returning" +msgstr "" + +#: library/pdb.rst:277 +msgid "``$_exception``: the exception if the frame is raising an exception" +msgstr "" + +#: library/pdb.rst:285 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 " @@ -315,20 +341,20 @@ msgid "" "and aliases defined there can be overridden by the local file." msgstr "" -#: library/pdb.rst:276 +#: library/pdb.rst:291 msgid "" ":file:`.pdbrc` is now read with ``'utf-8'`` encoding. Previously, it was " "read with the system locale encoding." msgstr "" -#: library/pdb.rst:280 +#: library/pdb.rst:295 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:288 +#: library/pdb.rst:303 msgid "" "Without argument, print the list of available commands. With a *command* as " "argument, print help about that command. ``help pdb`` displays the full " @@ -337,26 +363,26 @@ msgid "" "the ``!`` command." msgstr "" -#: library/pdb.rst:296 +#: library/pdb.rst:311 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:301 +#: library/pdb.rst:316 msgid "" "Move the current frame *count* (default one) levels down in the stack trace " "(to a newer frame)." msgstr "" -#: library/pdb.rst:306 +#: library/pdb.rst:321 msgid "" "Move the current frame *count* (default one) levels up in the stack trace " "(to an older frame)." msgstr "" -#: library/pdb.rst:311 +#: library/pdb.rst:326 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 " @@ -367,33 +393,33 @@ msgid "" "refer." msgstr "" -#: library/pdb.rst:318 +#: library/pdb.rst:333 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:321 +#: library/pdb.rst:336 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:327 +#: library/pdb.rst:342 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:332 +#: library/pdb.rst:347 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:338 +#: library/pdb.rst:353 msgid "" "Disable the breakpoints given as a space separated list of breakpoint " "numbers. Disabling a breakpoint means it cannot cause the program to stop " @@ -401,11 +427,11 @@ msgid "" "breakpoints and can be (re-)enabled." msgstr "" -#: library/pdb.rst:345 +#: library/pdb.rst:360 msgid "Enable the breakpoints specified." msgstr "" -#: library/pdb.rst:349 +#: library/pdb.rst:364 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 " @@ -414,39 +440,39 @@ msgid "" "associated condition evaluates to true." msgstr "" -#: library/pdb.rst:357 +#: library/pdb.rst:372 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:363 +#: library/pdb.rst:378 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:372 +#: library/pdb.rst:387 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:375 +#: library/pdb.rst:390 msgid "" "With no *bpnumber* argument, ``commands`` refers to the last breakpoint set." msgstr "" -#: library/pdb.rst:377 +#: library/pdb.rst:392 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:381 +#: library/pdb.rst:396 msgid "" "Specifying any command resuming execution (currently :pdbcmd:`continue`, :" "pdbcmd:`step`, :pdbcmd:`next`, :pdbcmd:`return`, :pdbcmd:`jump`, :pdbcmd:" @@ -457,7 +483,7 @@ msgid "" "ambiguities about which list to execute." msgstr "" -#: library/pdb.rst:390 +#: library/pdb.rst:405 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 " @@ -466,13 +492,13 @@ msgid "" "was reached." msgstr "" -#: library/pdb.rst:397 +#: library/pdb.rst:412 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:402 +#: library/pdb.rst:417 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 " @@ -481,46 +507,46 @@ msgid "" "line in the current function.)" msgstr "" -#: library/pdb.rst:410 +#: library/pdb.rst:425 msgid "" "Without argument, continue execution until the line with a number greater " "than the current one is reached." msgstr "" -#: library/pdb.rst:413 +#: library/pdb.rst:428 msgid "" "With *lineno*, continue execution until a line with a number greater or " "equal to *lineno* is reached. In both cases, also stop when the current " "frame returns." msgstr "" -#: library/pdb.rst:417 +#: library/pdb.rst:432 msgid "Allow giving an explicit line number." msgstr "" -#: library/pdb.rst:422 +#: library/pdb.rst:437 msgid "Continue execution until the current function returns." msgstr "" -#: library/pdb.rst:426 +#: library/pdb.rst:441 msgid "Continue execution, only stop when a breakpoint is encountered." msgstr "" -#: library/pdb.rst:430 +#: library/pdb.rst:445 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:434 +#: library/pdb.rst:449 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:440 +#: library/pdb.rst:455 msgid "" "List source code for the current file. Without arguments, list 11 lines " "around the current line or continue the previous listing. With ``.`` as " @@ -529,7 +555,7 @@ msgid "" "second argument is less than the first, it is interpreted as a count." msgstr "" -#: library/pdb.rst:446 +#: library/pdb.rst:461 msgid "" "The current line in the current frame is indicated by ``->``. If an " "exception is being debugged, the line where the exception was originally " @@ -537,90 +563,90 @@ msgid "" "line." msgstr "" -#: library/pdb.rst:451 +#: library/pdb.rst:466 msgid "The ``>>`` marker." msgstr "" -#: library/pdb.rst:456 +#: library/pdb.rst:471 msgid "" "List all source code for the current function or frame. Interesting lines " "are marked as for :pdbcmd:`list`." msgstr "" -#: library/pdb.rst:463 +#: library/pdb.rst:478 msgid "Print the arguments of the current function and their current values." msgstr "" -#: library/pdb.rst:467 +#: library/pdb.rst:482 msgid "Evaluate *expression* in the current context and print its value." msgstr "" -#: library/pdb.rst:471 +#: library/pdb.rst:486 msgid "" "``print()`` can also be used, but is not a debugger command --- this " "executes the Python :func:`print` function." msgstr "" -#: library/pdb.rst:477 +#: library/pdb.rst:492 msgid "" "Like the :pdbcmd:`p` command, except the value of *expression* is pretty-" "printed using the :mod:`pprint` module." msgstr "" -#: library/pdb.rst:482 +#: library/pdb.rst:497 msgid "Print the type of *expression*." msgstr "" -#: library/pdb.rst:486 +#: library/pdb.rst:501 msgid "Try to get source code of *expression* and display it." msgstr "" -#: library/pdb.rst:492 +#: library/pdb.rst:507 msgid "" "Display the value of *expression* if it changed, each time execution stops " "in the current frame." msgstr "" -#: library/pdb.rst:495 +#: library/pdb.rst:510 msgid "" "Without *expression*, list all display expressions for the current frame." msgstr "" -#: library/pdb.rst:499 +#: library/pdb.rst:514 msgid "" "Display evaluates *expression* and compares to the result of the previous " "evaluation of *expression*, so when the result is mutable, display may not " "be able to pick up the changes." msgstr "" -#: library/pdb.rst:503 +#: library/pdb.rst:518 msgid "Example::" msgstr "" -#: library/pdb.rst:511 +#: library/pdb.rst:526 msgid "" "Display won't realize ``lst`` has been changed because the result of " "evaluation is modified in place by ``lst.append(1)`` before being compared::" msgstr "" -#: library/pdb.rst:526 +#: library/pdb.rst:541 msgid "You can do some tricks with copy mechanism to make it work::" msgstr "" -#: library/pdb.rst:545 +#: library/pdb.rst:560 msgid "" "Do not display *expression* anymore in the current frame. Without " "*expression*, clear all display expressions for the current frame." msgstr "" -#: library/pdb.rst:552 +#: library/pdb.rst:567 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:562 +#: library/pdb.rst:577 msgid "" "Create an alias called *name* that executes *command*. The *command* must " "*not* be enclosed in quotes. Replaceable parameters can be indicated by " @@ -629,7 +655,7 @@ msgid "" "arguments are given, all aliases are listed." msgstr "" -#: library/pdb.rst:568 +#: library/pdb.rst:583 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 " @@ -638,26 +664,30 @@ msgid "" "other words in the line are left alone." msgstr "" -#: library/pdb.rst:574 +#: library/pdb.rst:589 msgid "" "As an example, here are two useful aliases (especially when placed in the :" "file:`.pdbrc` file)::" msgstr "" -#: library/pdb.rst:584 +#: library/pdb.rst:599 msgid "Delete the specified alias *name*." msgstr "" -#: library/pdb.rst:588 +#: library/pdb.rst:603 msgid "" "Execute the (one-line) *statement* in the context of the current stack " "frame. The exclamation point can be omitted unless the first word of the " -"statement resembles a debugger command. To set a global variable, you can " -"prefix the assignment command with a :keyword:`global` statement on the same " -"line, e.g.::" +"statement resembles a debugger command, e.g.:" +msgstr "" + +#: library/pdb.rst:612 +msgid "" +"To set a global variable, you can prefix the assignment command with a :" +"keyword:`global` statement on the same line, e.g.:" msgstr "" -#: library/pdb.rst:600 +#: library/pdb.rst:623 msgid "" "Restart the debugged Python program. If *args* is supplied, it is split " "with :mod:`shlex` and the result is used as the new :data:`sys.argv`. " @@ -665,25 +695,25 @@ msgid "" "`restart` is an alias for :pdbcmd:`run`." msgstr "" -#: library/pdb.rst:607 +#: library/pdb.rst:630 msgid "Quit from the debugger. The program being executed is aborted." msgstr "" -#: library/pdb.rst:611 +#: library/pdb.rst:634 msgid "" "Enter a recursive debugger that steps through *code* (which is an arbitrary " "expression or statement to be executed in the current environment)." msgstr "" -#: library/pdb.rst:617 +#: library/pdb.rst:640 msgid "Print the return value for the last return of the current function." msgstr "" -#: library/pdb.rst:620 +#: library/pdb.rst:643 msgid "Footnotes" msgstr "" -#: library/pdb.rst:621 +#: library/pdb.rst:644 msgid "" "Whether a frame is considered to originate in a certain module is determined " "by the ``__name__`` in the frame globals." @@ -709,18 +739,18 @@ msgstr "" msgid "cmd" msgstr "" -#: library/pdb.rst:266 +#: library/pdb.rst:281 msgid ".pdbrc" msgstr "" -#: library/pdb.rst:266 +#: library/pdb.rst:281 msgid "file" msgstr "" -#: library/pdb.rst:266 +#: library/pdb.rst:281 msgid "debugger" msgstr "" -#: library/pdb.rst:266 +#: library/pdb.rst:281 msgid "configuration" msgstr "" diff --git a/library/pkgutil.po b/library/pkgutil.po index bd284ab8f..fdac62eee 100644 --- a/library/pkgutil.po +++ b/library/pkgutil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -75,40 +75,11 @@ msgid "" "isdir` behavior)." msgstr "" -#: library/pkgutil.rst:54 -msgid ":pep:`302` Finder that wraps Python's \"classic\" import algorithm." -msgstr "" - -#: library/pkgutil.rst:56 -msgid "" -"If *dirname* is a string, a :pep:`302` finder is created that searches that " -"directory. If *dirname* is ``None``, a :pep:`302` finder is created that " -"searches the current :data:`sys.path`, plus any modules that are frozen or " -"built-in." -msgstr "" - -#: library/pkgutil.rst:61 -msgid "" -"Note that :class:`ImpImporter` does not currently support being used by " -"placement on :data:`sys.meta_path`." -msgstr "" - -#: library/pkgutil.rst:73 -msgid "" -"This emulation is no longer needed, as the standard import mechanism is now " -"fully :pep:`302` compliant and available in :mod:`importlib`." -msgstr "" - -#: library/pkgutil.rst:71 -msgid "" -":term:`Loader ` that wraps Python's \"classic\" import algorithm." -msgstr "" - -#: library/pkgutil.rst:80 +#: library/pkgutil.rst:53 msgid "Retrieve a module :term:`loader` for the given *fullname*." msgstr "" -#: library/pkgutil.rst:82 +#: library/pkgutil.rst:55 msgid "" "This is a backwards compatibility wrapper around :func:`importlib.util." "find_spec` that converts most failures to :exc:`ImportError` and only " @@ -116,37 +87,41 @@ msgid "" "ModuleSpec`." msgstr "" -#: library/pkgutil.rst:104 library/pkgutil.rst:140 library/pkgutil.rst:200 +#: library/pkgutil.rst:81 library/pkgutil.rst:120 library/pkgutil.rst:180 msgid "" "Updated to be based directly on :mod:`importlib` rather than relying on the " "package internal :pep:`302` import emulation." msgstr "" -#: library/pkgutil.rst:123 +#: library/pkgutil.rst:100 msgid "Updated to be based on :pep:`451`" msgstr "" -#: library/pkgutil.rst:96 +#: library/pkgutil.rst:104 +msgid "Use :func:`importlib.util.find_spec` instead." +msgstr "" + +#: library/pkgutil.rst:73 msgid "Retrieve a :term:`finder` for the given *path_item*." msgstr "" -#: library/pkgutil.rst:98 +#: library/pkgutil.rst:75 msgid "" "The returned finder is cached in :data:`sys.path_importer_cache` if it was " "newly created by a path hook." msgstr "" -#: library/pkgutil.rst:101 +#: library/pkgutil.rst:78 msgid "" "The cache (or part of it) can be cleared manually if a rescan of :data:`sys." "path_hooks` is necessary." msgstr "" -#: library/pkgutil.rst:111 +#: library/pkgutil.rst:88 msgid "Get a :term:`loader` object for *module_or_name*." msgstr "" -#: library/pkgutil.rst:113 +#: library/pkgutil.rst:90 msgid "" "If the module or package is accessible via the normal import mechanism, a " "wrapper around the relevant part of that machinery is returned. Returns " @@ -155,44 +130,44 @@ msgid "" "to establish the package ``__path__``." msgstr "" -#: library/pkgutil.rst:129 +#: library/pkgutil.rst:109 msgid "Yield :term:`finder` objects for the given module name." msgstr "" -#: library/pkgutil.rst:131 +#: library/pkgutil.rst:111 msgid "" "If fullname contains a ``'.'``, the finders will be for the package " "containing fullname, otherwise they will be all registered top level finders " "(i.e. those on both :data:`sys.meta_path` and :data:`sys.path_hooks`)." msgstr "" -#: library/pkgutil.rst:135 +#: library/pkgutil.rst:115 msgid "" "If the named module is in a package, that package is imported as a side " "effect of invoking this function." msgstr "" -#: library/pkgutil.rst:138 +#: library/pkgutil.rst:118 msgid "If no module name is specified, all top level finders are produced." msgstr "" -#: library/pkgutil.rst:147 +#: library/pkgutil.rst:127 msgid "" "Yields :class:`ModuleInfo` for all submodules on *path*, or, if *path* is " "``None``, all top-level modules on :data:`sys.path`." msgstr "" -#: library/pkgutil.rst:171 +#: library/pkgutil.rst:151 msgid "" "*path* should be either ``None`` or a list of paths to look for modules in." msgstr "" -#: library/pkgutil.rst:173 +#: library/pkgutil.rst:153 msgid "" "*prefix* is a string to output on the front of every module name on output." msgstr "" -#: library/pkgutil.rst:195 +#: library/pkgutil.rst:175 msgid "" "Only works for a :term:`finder` which defines an ``iter_modules()`` method. " "This interface is non-standard, so the module also provides implementations " @@ -200,20 +175,20 @@ msgid "" "zipimporter`." msgstr "" -#: library/pkgutil.rst:168 +#: library/pkgutil.rst:148 msgid "" "Yields :class:`ModuleInfo` for all modules recursively on *path*, or, if " "*path* is ``None``, all accessible modules." msgstr "" -#: library/pkgutil.rst:175 +#: library/pkgutil.rst:155 msgid "" "Note that this function must import all *packages* (*not* all modules!) on " "the given *path*, in order to access the ``__path__`` attribute to find " "submodules." msgstr "" -#: library/pkgutil.rst:179 +#: library/pkgutil.rst:159 msgid "" "*onerror* is a function which gets called with one argument (the name of the " "package which was being imported) if any exception occurs while trying to " @@ -222,15 +197,15 @@ msgid "" "propagated, terminating the search." msgstr "" -#: library/pkgutil.rst:185 +#: library/pkgutil.rst:165 msgid "Examples::" msgstr "" -#: library/pkgutil.rst:207 +#: library/pkgutil.rst:187 msgid "Get a resource from a package." msgstr "" -#: library/pkgutil.rst:209 +#: library/pkgutil.rst:189 msgid "" "This is a wrapper for the :term:`loader` :meth:`get_data ` API. The *package* argument should be the name of " @@ -240,19 +215,19 @@ msgid "" "rooted name (starting with a ``/``)." msgstr "" -#: library/pkgutil.rst:216 +#: library/pkgutil.rst:196 msgid "" "The function returns a binary string that is the contents of the specified " "resource." msgstr "" -#: library/pkgutil.rst:219 +#: library/pkgutil.rst:199 msgid "" "For packages located in the filesystem, which have already been imported, " "this is the rough equivalent of::" msgstr "" -#: library/pkgutil.rst:225 +#: library/pkgutil.rst:205 msgid "" "If the package cannot be located or loaded, or it uses a :term:`loader` " "which does not support :meth:`get_data `." msgstr "" -#: library/pkgutil.rst:234 +#: library/pkgutil.rst:214 msgid "Resolve a name to an object." msgstr "" -#: library/pkgutil.rst:236 +#: library/pkgutil.rst:216 msgid "" "This functionality is used in numerous places in the standard library (see :" "issue:`12915`) - and equivalent functionality is also in widely used third-" "party packages such as setuptools, Django and Pyramid." msgstr "" -#: library/pkgutil.rst:240 +#: library/pkgutil.rst:220 msgid "" "It is expected that *name* will be a string in one of the following formats, " "where W is shorthand for a valid Python identifier and dot stands for a " "literal period in these pseudo-regexes:" msgstr "" -#: library/pkgutil.rst:244 +#: library/pkgutil.rst:224 msgid "``W(.W)*``" msgstr "" -#: library/pkgutil.rst:245 +#: library/pkgutil.rst:225 msgid "``W(.W)*:(W(.W)*)?``" msgstr "" -#: library/pkgutil.rst:247 +#: library/pkgutil.rst:227 msgid "" "The first form is intended for backward compatibility only. It assumes that " "some part of the dotted name is a package, and the rest is an object " @@ -297,7 +272,7 @@ msgid "" "form." msgstr "" -#: library/pkgutil.rst:254 +#: library/pkgutil.rst:234 msgid "" "In the second form, the caller makes the division point clear through the " "provision of a single colon: the dotted name to the left of the colon is a " @@ -306,21 +281,21 @@ msgid "" "ends with the colon, then a module object is returned." msgstr "" -#: library/pkgutil.rst:260 +#: library/pkgutil.rst:240 msgid "" "The function will return an object (which might be a module), or raise one " "of the following exceptions:" msgstr "" -#: library/pkgutil.rst:263 +#: library/pkgutil.rst:243 msgid ":exc:`ValueError` -- if *name* isn't in a recognised format." msgstr "" -#: library/pkgutil.rst:265 +#: library/pkgutil.rst:245 msgid ":exc:`ImportError` -- if an import failed when it shouldn't have." msgstr "" -#: library/pkgutil.rst:267 +#: library/pkgutil.rst:247 msgid "" ":exc:`AttributeError` -- If a failure occurred when traversing the object " "hierarchy within the imported package to get to the desired object." diff --git a/library/platform.po b/library/platform.po index ecd672722..c76b6de83 100644 --- a/library/platform.po +++ b/library/platform.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -209,30 +209,36 @@ msgid "" msgstr "" #: library/platform.rst:171 +msgid ":attr:`processor` is resolved late, on demand." +msgstr "" + +#: library/platform.rst:173 msgid "" -"Note that this adds a sixth attribute (:attr:`processor`) not present in " -"the :func:`os.uname` result. Also, the attribute names are different for " -"the first two attributes; :func:`os.uname` names them :attr:`sysname` and :" -"attr:`nodename`." +"Note: the first two attribute names differ from the names presented by :func:" +"`os.uname`, where they are named :attr:`sysname` and :attr:`nodename`." msgstr "" -#: library/platform.rst:176 +#: library/platform.rst:177 msgid "Entries which cannot be determined are set to ``''``." msgstr "" -#: library/platform.rst:178 +#: library/platform.rst:179 msgid "Result changed from a tuple to a :func:`~collections.namedtuple`." msgstr "" -#: library/platform.rst:183 +#: library/platform.rst:182 +msgid ":attr:`processor` is resolved late instead of immediately." +msgstr "" + +#: library/platform.rst:187 msgid "Java Platform" msgstr "" -#: library/platform.rst:188 +#: library/platform.rst:192 msgid "Version interface for Jython." msgstr "" -#: library/platform.rst:190 +#: library/platform.rst:194 msgid "" "Returns a tuple ``(release, vendor, vminfo, osinfo)`` with *vminfo* being a " "tuple ``(vm_name, vm_release, vm_vendor)`` and *osinfo* being a tuple " @@ -240,11 +246,11 @@ msgid "" "set to the defaults given as parameters (which all default to ``''``)." msgstr "" -#: library/platform.rst:197 +#: library/platform.rst:201 msgid "Windows Platform" msgstr "" -#: library/platform.rst:202 +#: library/platform.rst:206 msgid "" "Get additional version information from the Windows Registry and return a " "tuple ``(release, version, csd, ptype)`` referring to OS release, version " @@ -253,7 +259,7 @@ msgid "" "parameters (which all default to an empty string)." msgstr "" -#: library/platform.rst:208 +#: library/platform.rst:212 msgid "" "As a hint: *ptype* is ``'Uniprocessor Free'`` on single processor NT " "machines and ``'Multiprocessor Free'`` on multi processor machines. The " @@ -262,7 +268,7 @@ msgid "" "code that checks arguments, ranges, etc." msgstr "" -#: library/platform.rst:216 +#: library/platform.rst:220 msgid "" "Returns a string representing the current Windows edition, or ``None`` if " "the value cannot be determined. Possible values include but are not limited " @@ -270,34 +276,34 @@ msgid "" "``'nanoserver'``." msgstr "" -#: library/platform.rst:224 +#: library/platform.rst:228 msgid "" "Return ``True`` if the Windows edition returned by :func:`win32_edition` is " "recognized as an IoT edition." msgstr "" -#: library/platform.rst:231 +#: library/platform.rst:235 msgid "macOS Platform" msgstr "" -#: library/platform.rst:236 +#: library/platform.rst:240 msgid "" "Get macOS version information and return it as tuple ``(release, " "versioninfo, machine)`` with *versioninfo* being a tuple ``(version, " "dev_stage, non_release_version)``." msgstr "" -#: library/platform.rst:240 +#: library/platform.rst:244 msgid "" "Entries which cannot be determined are set to ``''``. All tuple entries are " "strings." msgstr "" -#: library/platform.rst:245 +#: library/platform.rst:249 msgid "Unix Platforms" msgstr "" -#: library/platform.rst:249 +#: library/platform.rst:253 msgid "" "Tries to determine the libc version against which the file executable " "(defaults to the Python interpreter) is linked. Returns a tuple of strings " @@ -305,22 +311,22 @@ msgid "" "fails." msgstr "" -#: library/platform.rst:253 +#: library/platform.rst:257 msgid "" "Note that this function has intimate knowledge of how different libc " "versions add symbols to the executable is probably only usable for " "executables compiled using :program:`gcc`." msgstr "" -#: library/platform.rst:257 +#: library/platform.rst:261 msgid "The file is read and scanned in chunks of *chunksize* bytes." msgstr "" -#: library/platform.rst:261 +#: library/platform.rst:265 msgid "Linux Platforms" msgstr "" -#: library/platform.rst:265 +#: library/platform.rst:269 msgid "" "Get operating system identification from ``os-release`` file and return it " "as a dict. The ``os-release`` file is a `freedesktop.org standard \n" @@ -73,26 +73,26 @@ msgid "" "timeout setting will be used)." msgstr "" -#: library/poplib.rst:81 +#: library/poplib.rst:77 msgid "" "Raises an :ref:`auditing event ` ``poplib.connect`` with arguments " "``self``, ``host``, ``port``." msgstr "" -#: library/poplib.rst:83 +#: library/poplib.rst:79 msgid "" "Raises an :ref:`auditing event ` ``poplib.putline`` with arguments " "``self``, ``line``." msgstr "" -#: library/poplib.rst:74 +#: library/poplib.rst:70 msgid "" "All commands will raise an :ref:`auditing event ` ``poplib." "putline`` with arguments ``self`` and ``line``, where ``line`` is the bytes " "about to be sent to the remote host." msgstr "" -#: library/poplib.rst:93 +#: library/poplib.rst:82 msgid "" "If the *timeout* parameter is set to be zero, it will raise a :class:" "`ValueError` to prevent the creation of a non-blocking socket." @@ -109,77 +109,67 @@ msgid "" "for best practices." msgstr "" -#: library/poplib.rst:66 -msgid "" -"*keyfile* and *certfile* are a legacy alternative to *context* - they can " -"point to PEM-formatted private key and certificate chain files, " -"respectively, for the SSL connection." -msgstr "" - -#: library/poplib.rst:78 +#: library/poplib.rst:74 msgid "*context* parameter added." msgstr "" -#: library/poplib.rst:81 +#: library/poplib.rst:77 msgid "" "The class now supports hostname check with :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: library/poplib.rst:88 -msgid "" -"*keyfile* and *certfile* are deprecated in favor of *context*. Please use :" -"meth:`ssl.SSLContext.load_cert_chain` instead, or let :func:`ssl." -"create_default_context` select the system's trusted CA certificates for you." +#: library/poplib.rst:86 +msgid "The deprecated *keyfile* and *certfile* parameters have been removed." msgstr "" -#: library/poplib.rst:97 +#: library/poplib.rst:89 msgid "One exception is defined as an attribute of the :mod:`poplib` module:" msgstr "" -#: library/poplib.rst:102 +#: library/poplib.rst:94 msgid "" "Exception raised on any errors from this module (errors from :mod:`socket` " "module are not caught). The reason for the exception is passed to the " "constructor as a string." msgstr "" -#: library/poplib.rst:110 +#: library/poplib.rst:102 msgid "Module :mod:`imaplib`" msgstr "" -#: library/poplib.rst:110 +#: library/poplib.rst:102 msgid "The standard Python IMAP module." msgstr "" -#: library/poplib.rst:114 +#: library/poplib.rst:106 msgid "" "`Frequently Asked Questions About Fetchmail `_" msgstr "" -#: library/poplib.rst:113 +#: library/poplib.rst:105 msgid "" "The FAQ for the :program:`fetchmail` POP/IMAP client collects information on " "POP3 server variations and RFC noncompliance that may be useful if you need " "to write an application based on the POP protocol." msgstr "" -#: library/poplib.rst:121 +#: library/poplib.rst:113 msgid "POP3 Objects" msgstr "" -#: library/poplib.rst:123 +#: library/poplib.rst:115 msgid "" "All POP3 commands are represented by methods of the same name, in lowercase; " "most return the response text sent by the server." msgstr "" -#: library/poplib.rst:126 +#: library/poplib.rst:118 msgid "A :class:`POP3` instance has the following methods:" msgstr "" -#: library/poplib.rst:131 +#: library/poplib.rst:123 msgid "" "Set the instance's debugging level. This controls the amount of debugging " "output printed. The default, ``0``, produces no debugging output. A value " @@ -189,81 +179,81 @@ msgid "" "connection." msgstr "" -#: library/poplib.rst:140 +#: library/poplib.rst:132 msgid "Returns the greeting string sent by the POP3 server." msgstr "" -#: library/poplib.rst:145 +#: library/poplib.rst:137 msgid "" "Query the server's capabilities as specified in :rfc:`2449`. Returns a " "dictionary in the form ``{'name': ['param'...]}``." msgstr "" -#: library/poplib.rst:153 +#: library/poplib.rst:145 msgid "" "Send user command, response should indicate that a password is required." msgstr "" -#: library/poplib.rst:158 +#: library/poplib.rst:150 msgid "" "Send password, response includes message count and mailbox size. Note: the " "mailbox on the server is locked until :meth:`~POP3.quit` is called." msgstr "" -#: library/poplib.rst:164 +#: library/poplib.rst:156 msgid "Use the more secure APOP authentication to log into the POP3 server." msgstr "" -#: library/poplib.rst:169 +#: library/poplib.rst:161 msgid "" "Use RPOP authentication (similar to UNIX r-commands) to log into POP3 server." msgstr "" -#: library/poplib.rst:174 +#: library/poplib.rst:166 msgid "" "Get mailbox status. The result is a tuple of 2 integers: ``(message count, " "mailbox size)``." msgstr "" -#: library/poplib.rst:180 +#: library/poplib.rst:172 msgid "" "Request message list, result is in the form ``(response, ['mesg_num " "octets', ...], octets)``. If *which* is set, it is the message to list." msgstr "" -#: library/poplib.rst:186 +#: library/poplib.rst:178 msgid "" "Retrieve whole message number *which*, and set its seen flag. Result is in " "form ``(response, ['line', ...], octets)``." msgstr "" -#: library/poplib.rst:192 +#: library/poplib.rst:184 msgid "" "Flag message number *which* for deletion. On most servers deletions are not " "actually performed until QUIT (the major exception is Eudora QPOP, which " "deliberately violates the RFCs by doing pending deletes on any disconnect)." msgstr "" -#: library/poplib.rst:199 +#: library/poplib.rst:191 msgid "Remove any deletion marks for the mailbox." msgstr "" -#: library/poplib.rst:204 +#: library/poplib.rst:196 msgid "Do nothing. Might be used as a keep-alive." msgstr "" -#: library/poplib.rst:209 +#: library/poplib.rst:201 msgid "Signoff: commit changes, unlock mailbox, drop connection." msgstr "" -#: library/poplib.rst:214 +#: library/poplib.rst:206 msgid "" "Retrieves the message header plus *howmuch* lines of the message after the " "header of message number *which*. Result is in form ``(response, " "['line', ...], octets)``." msgstr "" -#: library/poplib.rst:218 +#: library/poplib.rst:210 msgid "" "The POP3 TOP command this method uses, unlike the RETR command, doesn't set " "the message's seen flag; unfortunately, TOP is poorly specified in the RFCs " @@ -271,26 +261,26 @@ msgid "" "against the POP3 servers you will use before trusting it." msgstr "" -#: library/poplib.rst:226 +#: library/poplib.rst:218 msgid "" "Return message digest (unique id) list. If *which* is specified, result " "contains the unique id for that message in the form ``'response mesgnum " "uid``, otherwise result is list ``(response, ['mesgnum uid', ...], octets)``." msgstr "" -#: library/poplib.rst:233 +#: library/poplib.rst:225 msgid "" "Try to switch to UTF-8 mode. Returns the server response if successful, " "raises :class:`error_proto` if not. Specified in :RFC:`6856`." msgstr "" -#: library/poplib.rst:241 +#: library/poplib.rst:233 msgid "" "Start a TLS session on the active connection as specified in :rfc:`2595`. " "This is only allowed before user authentication" msgstr "" -#: library/poplib.rst:244 +#: library/poplib.rst:236 msgid "" "*context* parameter is a :class:`ssl.SSLContext` object which allows " "bundling SSL configuration options, certificates and private keys into a " @@ -298,29 +288,29 @@ msgid "" "for best practices." msgstr "" -#: library/poplib.rst:249 +#: library/poplib.rst:241 msgid "" "This method supports hostname checking via :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: library/poplib.rst:256 +#: library/poplib.rst:248 msgid "" "Instances of :class:`POP3_SSL` have no additional methods. The interface of " "this subclass is identical to its parent." msgstr "" -#: library/poplib.rst:263 +#: library/poplib.rst:255 msgid "POP3 Example" msgstr "" -#: library/poplib.rst:265 +#: library/poplib.rst:257 msgid "" "Here is a minimal example (without error checking) that opens a mailbox and " "retrieves and prints all messages::" msgstr "" -#: library/poplib.rst:278 +#: library/poplib.rst:270 msgid "" "At the end of the module, there is a test section that contains a more " "extensive example of usage." diff --git a/library/pprint.po b/library/pprint.po index 246c46db7..c89ca5e6e 100644 --- a/library/pprint.po +++ b/library/pprint.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -178,42 +178,47 @@ msgid "" msgstr "" #: library/pprint.rst:174 -msgid "Determine if *object* requires a recursive representation." +msgid "" +"Determine if *object* requires a recursive representation. This function is " +"subject to the same limitations as noted in :func:`saferepr` below and may " +"raise an :exc:`RecursionError` if it fails to detect a recursive object." msgstr "" -#: library/pprint.rst:177 +#: library/pprint.rst:179 msgid "One more support function is also defined:" msgstr "" -#: library/pprint.rst:181 +#: library/pprint.rst:183 msgid "" -"Return a string representation of *object*, protected against recursive data " -"structures. If the representation of *object* exposes a recursive entry, " -"the recursive reference will be represented as ````. The representation is not otherwise formatted." msgstr "" -#: library/pprint.rst:193 +#: library/pprint.rst:197 msgid "PrettyPrinter Objects" msgstr "" -#: library/pprint.rst:195 +#: library/pprint.rst:199 msgid ":class:`PrettyPrinter` instances have the following methods:" msgstr "" -#: library/pprint.rst:200 +#: library/pprint.rst:204 msgid "" "Return the formatted representation of *object*. This takes into account " "the options passed to the :class:`PrettyPrinter` constructor." msgstr "" -#: library/pprint.rst:206 +#: library/pprint.rst:210 msgid "" "Print the formatted representation of *object* on the configured stream, " "followed by a newline." msgstr "" -#: library/pprint.rst:209 +#: library/pprint.rst:213 msgid "" "The following methods provide the implementations for the corresponding " "functions of the same names. Using these methods on an instance is slightly " @@ -221,7 +226,7 @@ msgid "" "created." msgstr "" -#: library/pprint.rst:219 +#: library/pprint.rst:223 msgid "" "Determine if the formatted representation of the object is \"readable,\" or " "can be used to reconstruct the value using :func:`eval`. Note that this " @@ -230,18 +235,18 @@ msgid "" "returns ``False``." msgstr "" -#: library/pprint.rst:228 +#: library/pprint.rst:232 msgid "Determine if the object requires a recursive representation." msgstr "" -#: library/pprint.rst:230 +#: library/pprint.rst:234 msgid "" "This method is provided as a hook to allow subclasses to modify the way " "objects are converted to strings. The default implementation uses the " "internals of the :func:`saferepr` implementation." msgstr "" -#: library/pprint.rst:237 +#: library/pprint.rst:241 msgid "" "Returns three values: the formatted version of *object* as a string, a flag " "indicating whether the result is readable, and a flag indicating whether " @@ -259,28 +264,28 @@ msgid "" "of the current call." msgstr "" -#: library/pprint.rst:255 +#: library/pprint.rst:259 msgid "Example" msgstr "" -#: library/pprint.rst:257 +#: library/pprint.rst:261 msgid "" "To demonstrate several uses of the :func:`pprint` function and its " "parameters, let's fetch information about a project from `PyPI `_::" msgstr "" -#: library/pprint.rst:266 +#: library/pprint.rst:270 msgid "In its basic form, :func:`pprint` shows the whole object::" msgstr "" -#: library/pprint.rst:322 +#: library/pprint.rst:326 msgid "" "The result can be limited to a certain *depth* (ellipsis is used for deeper " "contents)::" msgstr "" -#: library/pprint.rst:368 +#: library/pprint.rst:372 msgid "" "Additionally, maximum character *width* can be suggested. If a long object " "cannot be split, the specified width will be exceeded::" @@ -294,10 +299,10 @@ msgstr "" msgid "placeholder" msgstr "" -#: library/pprint.rst:217 +#: library/pprint.rst:221 msgid "built-in function" msgstr "" -#: library/pprint.rst:217 +#: library/pprint.rst:221 msgid "eval" msgstr "" diff --git a/library/random.po b/library/random.po index 3550a0bce..ef00ae78a 100644 --- a/library/random.po +++ b/library/random.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -178,75 +178,75 @@ msgid "Functions for integers" msgstr "" #: library/random.rst:126 -msgid "" -"Return a randomly selected element from ``range(start, stop, step)``. This " -"is equivalent to ``choice(range(start, stop, step))``, but doesn't actually " -"build a range object." +msgid "Return a randomly selected element from ``range(start, stop, step)``." msgstr "" -#: library/random.rst:130 +#: library/random.rst:128 msgid "" -"The positional argument pattern matches that of :func:`range`. Keyword " -"arguments should not be used because the function may use them in unexpected " -"ways." +"This is roughly equivalent to ``choice(range(start, stop, step))`` but " +"supports arbitrarily large ranges and is optimized for common cases." +msgstr "" + +#: library/random.rst:131 +msgid "The positional argument pattern matches the :func:`range` function." msgstr "" #: library/random.rst:133 msgid "" -":meth:`randrange` is more sophisticated about producing equally distributed " -"values. Formerly it used a style like ``int(random()*n)`` which could " -"produce slightly uneven distributions." +"Keyword arguments should not be used because they can be interpreted in " +"unexpected ways. For example ``randrange(start=100)`` is interpreted as " +"``randrange(0, 100, 1)``." msgstr "" -#: library/random.rst:138 +#: library/random.rst:137 msgid "" -"The automatic conversion of non-integer types to equivalent integers is " -"deprecated. Currently ``randrange(10.0)`` is losslessly converted to " -"``randrange(10)``. In the future, this will raise a :exc:`TypeError`." +":meth:`randrange` is more sophisticated about producing equally distributed " +"values. Formerly it used a style like ``int(random()*n)`` which could " +"produce slightly uneven distributions." msgstr "" -#: library/random.rst:143 +#: library/random.rst:142 msgid "" -"The exception raised for non-integer values such as ``randrange(10.5)`` or " -"``randrange('10')`` will be changed from :exc:`ValueError` to :exc:" +"Automatic conversion of non-integer types is no longer supported. Calls such " +"as ``randrange(10.0)`` and ``randrange(Fraction(10, 1))`` now raise a :exc:" "`TypeError`." msgstr "" -#: library/random.rst:150 +#: library/random.rst:149 msgid "" "Return a random integer *N* such that ``a <= N <= b``. Alias for " "``randrange(a, b+1)``." msgstr "" -#: library/random.rst:155 +#: library/random.rst:154 msgid "" "Returns a non-negative Python integer with *k* random bits. This method is " -"supplied with the MersenneTwister generator and some other generators may " +"supplied with the Mersenne Twister generator and some other generators may " "also provide it as an optional part of the API. When available, :meth:" "`getrandbits` enables :meth:`randrange` to handle arbitrarily large ranges." msgstr "" -#: library/random.rst:161 +#: library/random.rst:160 msgid "This method now accepts zero for *k*." msgstr "" -#: library/random.rst:166 +#: library/random.rst:165 msgid "Functions for sequences" msgstr "" -#: library/random.rst:170 +#: library/random.rst:169 msgid "" "Return a random element from the non-empty sequence *seq*. If *seq* is " "empty, raises :exc:`IndexError`." msgstr "" -#: library/random.rst:175 +#: library/random.rst:174 msgid "" "Return a *k* sized list of elements chosen from the *population* with " "replacement. If the *population* is empty, raises :exc:`IndexError`." msgstr "" -#: library/random.rst:178 +#: library/random.rst:177 msgid "" "If a *weights* sequence is specified, selections are made according to the " "relative weights. Alternatively, if a *cum_weights* sequence is given, the " @@ -257,7 +257,7 @@ msgid "" "before making selections, so supplying the cumulative weights saves work." msgstr "" -#: library/random.rst:187 +#: library/random.rst:186 msgid "" "If neither *weights* nor *cum_weights* are specified, selections are made " "with equal probability. If a weights sequence is supplied, it must be the " @@ -265,7 +265,7 @@ msgid "" "specify both *weights* and *cum_weights*." msgstr "" -#: library/random.rst:192 +#: library/random.rst:191 msgid "" "The *weights* or *cum_weights* can use any numeric type that interoperates " "with the :class:`float` values returned by :func:`random` (that includes " @@ -274,7 +274,7 @@ msgid "" "are zero." msgstr "" -#: library/random.rst:198 +#: library/random.rst:197 msgid "" "For a given seed, the :func:`choices` function with equal weighting " "typically produces a different sequence than repeated calls to :func:" @@ -284,21 +284,21 @@ msgid "" "small biases from round-off error." msgstr "" -#: library/random.rst:207 +#: library/random.rst:206 msgid "Raises a :exc:`ValueError` if all weights are zero." msgstr "" -#: library/random.rst:213 +#: library/random.rst:212 msgid "Shuffle the sequence *x* in place." msgstr "" -#: library/random.rst:215 +#: library/random.rst:214 msgid "" "To shuffle an immutable sequence and return a new shuffled list, use " "``sample(x, k=len(x))`` instead." msgstr "" -#: library/random.rst:218 +#: library/random.rst:217 msgid "" "Note that even for small ``len(x)``, the total number of permutations of *x* " "can quickly grow larger than the period of most random number generators. " @@ -307,17 +307,17 @@ msgid "" "fit within the period of the Mersenne Twister random number generator." msgstr "" -#: library/random.rst:225 +#: library/random.rst:224 msgid "The optional parameter *random*." msgstr "" -#: library/random.rst:230 +#: library/random.rst:229 msgid "" "Return a *k* length list of unique elements chosen from the population " "sequence. Used for random sampling without replacement." msgstr "" -#: library/random.rst:233 +#: library/random.rst:232 msgid "" "Returns a new list containing elements from the population while leaving the " "original population unchanged. The resulting list is in selection order so " @@ -326,14 +326,14 @@ msgid "" "winners (the subslices)." msgstr "" -#: library/random.rst:239 +#: library/random.rst:238 msgid "" "Members of the population need not be :term:`hashable` or unique. If the " "population contains repeats, then each occurrence is a possible selection in " "the sample." msgstr "" -#: library/random.rst:242 +#: library/random.rst:241 msgid "" "Repeated elements can be specified one at a time or with the optional " "keyword-only *counts* parameter. For example, ``sample(['red', 'blue'], " @@ -341,59 +341,85 @@ msgid "" "'blue', 'blue'], k=5)``." msgstr "" -#: library/random.rst:247 +#: library/random.rst:246 msgid "" "To choose a sample from a range of integers, use a :func:`range` object as " "an argument. This is especially fast and space efficient for sampling from " "a large population: ``sample(range(10000000), k=60)``." msgstr "" -#: library/random.rst:251 +#: library/random.rst:250 msgid "" "If the sample size is larger than the population size, a :exc:`ValueError` " "is raised." msgstr "" -#: library/random.rst:254 +#: library/random.rst:253 msgid "Added the *counts* parameter." msgstr "" -#: library/random.rst:259 +#: library/random.rst:258 msgid "" "The *population* must be a sequence. Automatic conversion of sets to lists " "is no longer supported." msgstr "" -#: library/random.rst:266 -msgid "Real-valued distributions" +#: library/random.rst:262 +msgid "Discrete distributions" +msgstr "" + +#: library/random.rst:264 +msgid "The following function generates a discrete distribution." msgstr "" #: library/random.rst:268 msgid "" +"`Binomial distribution `_. Return the number of successes for *n* independent trials with the " +"probability of success in each trial being *p*:" +msgstr "" + +#: library/random.rst:273 +msgid "Mathematically equivalent to::" +msgstr "" + +#: library/random.rst:277 +msgid "" +"The number of trials *n* should be a non-negative integer. The probability " +"of success *p* should be between ``0.0 <= p <= 1.0``. The result is an " +"integer in the range ``0 <= X <= n``." +msgstr "" + +#: library/random.rst:287 +msgid "Real-valued distributions" +msgstr "" + +#: library/random.rst:289 +msgid "" "The following functions generate specific real-valued distributions. " "Function parameters are named after the corresponding variables in the " "distribution's equation, as used in common mathematical practice; most of " "these equations can be found in any statistics text." msgstr "" -#: library/random.rst:276 +#: library/random.rst:297 msgid "" "Return the next random floating point number in the range ``0.0 <= X < 1.0``" msgstr "" -#: library/random.rst:281 +#: library/random.rst:302 msgid "" "Return a random floating point number *N* such that ``a <= N <= b`` for ``a " "<= b`` and ``b <= N <= a`` for ``b < a``." msgstr "" -#: library/random.rst:284 +#: library/random.rst:305 msgid "" "The end-point value ``b`` may or may not be included in the range depending " "on floating-point rounding in the equation ``a + (b-a) * random()``." msgstr "" -#: library/random.rst:290 +#: library/random.rst:311 msgid "" "Return a random floating point number *N* such that ``low <= N <= high`` and " "with the specified *mode* between those bounds. The *low* and *high* bounds " @@ -401,13 +427,13 @@ msgid "" "between the bounds, giving a symmetric distribution." msgstr "" -#: library/random.rst:298 +#: library/random.rst:319 msgid "" "Beta distribution. Conditions on the parameters are ``alpha > 0`` and " "``beta > 0``. Returned values range between 0 and 1." msgstr "" -#: library/random.rst:304 +#: library/random.rst:325 msgid "" "Exponential distribution. *lambd* is 1.0 divided by the desired mean. It " "should be nonzero. (The parameter would be called \"lambda\", but that is a " @@ -416,25 +442,29 @@ msgid "" "negative." msgstr "" -#: library/random.rst:313 +#: library/random.rst:331 +msgid "Added the default value for ``lambd``." +msgstr "" + +#: library/random.rst:337 msgid "" "Gamma distribution. (*Not* the gamma function!) The shape and scale " "parameters, *alpha* and *beta*, must have positive values. (Calling " "conventions vary and some sources define 'beta' as the inverse of the scale)." msgstr "" -#: library/random.rst:318 +#: library/random.rst:342 msgid "The probability distribution function is::" msgstr "" -#: library/random.rst:327 +#: library/random.rst:351 msgid "" "Normal distribution, also called the Gaussian distribution. *mu* is the " "mean, and *sigma* is the standard deviation. This is slightly faster than " "the :func:`normalvariate` function defined below." msgstr "" -#: library/random.rst:332 +#: library/random.rst:356 msgid "" "Multithreading note: When two threads call this function simultaneously, it " "is possible that they will receive the same return value. This can be " @@ -443,11 +473,11 @@ msgid "" "but thread-safe :func:`normalvariate` function instead." msgstr "" -#: library/random.rst:355 +#: library/random.rst:379 msgid "*mu* and *sigma* now have default arguments." msgstr "" -#: library/random.rst:345 +#: library/random.rst:369 msgid "" "Log normal distribution. If you take the natural logarithm of this " "distribution, you'll get a normal distribution with mean *mu* and standard " @@ -455,13 +485,13 @@ msgid "" "than zero." msgstr "" -#: library/random.rst:353 +#: library/random.rst:377 msgid "" "Normal distribution. *mu* is the mean, and *sigma* is the standard " "deviation." msgstr "" -#: library/random.rst:361 +#: library/random.rst:385 msgid "" "*mu* is the mean angle, expressed in radians between 0 and 2\\*\\ *pi*, and " "*kappa* is the concentration parameter, which must be greater than or equal " @@ -469,34 +499,34 @@ msgid "" "uniform random angle over the range 0 to 2\\*\\ *pi*." msgstr "" -#: library/random.rst:369 +#: library/random.rst:393 msgid "Pareto distribution. *alpha* is the shape parameter." msgstr "" -#: library/random.rst:374 +#: library/random.rst:398 msgid "" "Weibull distribution. *alpha* is the scale parameter and *beta* is the " "shape parameter." msgstr "" -#: library/random.rst:379 +#: library/random.rst:403 msgid "Alternative Generator" msgstr "" -#: library/random.rst:383 +#: library/random.rst:407 msgid "" "Class that implements the default pseudo-random number generator used by " "the :mod:`random` module." msgstr "" -#: library/random.rst:386 +#: library/random.rst:413 msgid "" -"In the future, the *seed* must be one of the following types: :class:" -"`NoneType`, :class:`int`, :class:`float`, :class:`str`, :class:`bytes`, or :" -"class:`bytearray`." +"Formerly the *seed* could be any hashable object. Now it is limited to: :" +"class:`NoneType`, :class:`int`, :class:`float`, :class:`str`, :class:" +"`bytes`, or :class:`bytearray`." msgstr "" -#: library/random.rst:393 +#: library/random.rst:417 msgid "" "Class that uses the :func:`os.urandom` function for generating random " "numbers from sources provided by the operating system. Not available on all " @@ -506,56 +536,56 @@ msgid "" "`NotImplementedError` if called." msgstr "" -#: library/random.rst:402 +#: library/random.rst:426 msgid "Notes on Reproducibility" msgstr "" -#: library/random.rst:404 +#: library/random.rst:428 msgid "" "Sometimes it is useful to be able to reproduce the sequences given by a " -"pseudo-random number generator. By re-using a seed value, the same sequence " +"pseudo-random number generator. By reusing a seed value, the same sequence " "should be reproducible from run to run as long as multiple threads are not " "running." msgstr "" -#: library/random.rst:408 +#: library/random.rst:432 msgid "" "Most of the random module's algorithms and seeding functions are subject to " "change across Python versions, but two aspects are guaranteed not to change:" msgstr "" -#: library/random.rst:411 +#: library/random.rst:435 msgid "" "If a new seeding method is added, then a backward compatible seeder will be " "offered." msgstr "" -#: library/random.rst:414 +#: library/random.rst:438 msgid "" "The generator's :meth:`~Random.random` method will continue to produce the " "same sequence when the compatible seeder is given the same seed." msgstr "" -#: library/random.rst:420 +#: library/random.rst:444 msgid "Examples" msgstr "" -#: library/random.rst:422 +#: library/random.rst:446 msgid "Basic examples::" msgstr "" -#: library/random.rst:450 +#: library/random.rst:474 msgid "Simulations::" msgstr "" -#: library/random.rst:478 +#: library/random.rst:499 msgid "" "Example of `statistical bootstrapping `_ using resampling with replacement to estimate " "a confidence interval for the mean of a sample::" msgstr "" -#: library/random.rst:491 +#: library/random.rst:512 msgid "" "Example of a `resampling permutation test `_ to determine the statistical " @@ -563,12 +593,12 @@ msgid "" "observed difference between the effects of a drug versus a placebo::" msgstr "" -#: library/random.rst:518 +#: library/random.rst:539 msgid "" "Simulation of arrival times and service deliveries for a multiserver queue::" msgstr "" -#: library/random.rst:547 +#: library/random.rst:568 msgid "" "`Statistics for Hackers `_ a " "video tutorial by `Jake Vanderplas `_ a simulation of a marketplace by `Peter Norvig `_ a tutorial by `Peter " @@ -594,17 +624,17 @@ msgid "" "Python." msgstr "" -#: library/random.rst:568 +#: library/random.rst:589 msgid "Recipes" msgstr "" -#: library/random.rst:570 +#: library/random.rst:591 msgid "" "These recipes show how to efficiently make random selections from the " "combinatoric iterators in the :mod:`itertools` module:" msgstr "" -#: library/random.rst:602 +#: library/random.rst:623 msgid "" "The default :func:`.random` returns multiples of 2⁻⁵³ in the range *0.0 ≤ x " "< 1.0*. All such numbers are evenly spaced and are exactly representable as " @@ -613,7 +643,7 @@ msgid "" "integer multiple of 2⁻⁵³." msgstr "" -#: library/random.rst:608 +#: library/random.rst:629 msgid "" "The following recipe takes a different approach. All floats in the interval " "are possible selections. The mantissa comes from a uniform distribution of " @@ -622,13 +652,13 @@ msgid "" "often as the next larger exponent." msgstr "" -#: library/random.rst:630 +#: library/random.rst:651 msgid "" "All :ref:`real valued distributions ` in the " "class will use the new method::" msgstr "" -#: library/random.rst:639 +#: library/random.rst:660 msgid "" "The recipe is conceptually equivalent to an algorithm that chooses from all " "the multiples of 2⁻¹⁰⁷⁴ in the range *0.0 ≤ x < 1.0*. All such numbers are " @@ -637,7 +667,7 @@ msgid "" "and is equal to ``math.ulp(0.0)``.)" msgstr "" -#: library/random.rst:648 +#: library/random.rst:669 msgid "" "`Generating Pseudo-random Floating-Point Values `_ a paper by Allen B. Downey describing " diff --git a/library/re.po b/library/re.po index 89e217a6d..44d7ad98a 100644 --- a/library/re.po +++ b/library/re.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -50,8 +50,8 @@ msgid "" "string, because the regular expression must be ``\\\\``, and each backslash " "must be expressed as ``\\\\`` inside a regular Python string literal. Also, " "please note that any invalid escape sequences in Python's usage of the " -"backslash in string literals now generate a :exc:`DeprecationWarning` and in " -"the future this will become a :exc:`SyntaxError`. This behaviour will happen " +"backslash in string literals now generate a :exc:`SyntaxWarning` and in the " +"future this will become a :exc:`SyntaxError`. This behaviour will happen " "even if it is a valid escape sequence for a regular expression." msgstr "" @@ -144,7 +144,7 @@ msgstr "" msgid "The special characters are:" msgstr "" -#: library/re.rst:1550 +#: library/re.rst:1552 msgid "``.``" msgstr "" @@ -529,7 +529,7 @@ msgid "" "thus fail to match." msgstr "" -#: library/re.rst:423 +#: library/re.rst:424 msgid "``(?P...)``" msgstr "" @@ -537,113 +537,114 @@ msgstr "" msgid "" "Similar to regular parentheses, but the substring matched by the group is " "accessible via the symbolic group name *name*. Group names must be valid " -"Python identifiers, and each group name must be defined only once within a " -"regular expression. A symbolic group is also a numbered group, just as if " +"Python identifiers, and in :class:`bytes` patterns they can only contain " +"bytes in the ASCII range. Each group name must be defined only once within " +"a regular expression. A symbolic group is also a numbered group, just as if " "the group were not named." msgstr "" -#: library/re.rst:403 +#: library/re.rst:404 msgid "" "Named groups can be referenced in three contexts. If the pattern is ``(?" "P['\"]).*?(?P=quote)`` (i.e. matching a string quoted with either " "single or double quotes):" msgstr "" -#: library/re.rst:408 +#: library/re.rst:409 msgid "Context of reference to group \"quote\"" msgstr "" -#: library/re.rst:408 +#: library/re.rst:409 msgid "Ways to reference it" msgstr "" -#: library/re.rst:410 +#: library/re.rst:411 msgid "in the same pattern itself" msgstr "" -#: library/re.rst:410 +#: library/re.rst:411 msgid "``(?P=quote)`` (as shown)" msgstr "" -#: library/re.rst:418 +#: library/re.rst:419 msgid "``\\1``" msgstr "" -#: library/re.rst:413 +#: library/re.rst:414 msgid "when processing match object *m*" msgstr "" -#: library/re.rst:413 +#: library/re.rst:414 msgid "``m.group('quote')``" msgstr "" -#: library/re.rst:414 +#: library/re.rst:415 msgid "``m.end('quote')`` (etc.)" msgstr "" -#: library/re.rst:416 +#: library/re.rst:417 msgid "in a string passed to the *repl* argument of ``re.sub()``" msgstr "" -#: library/re.rst:416 +#: library/re.rst:417 msgid "``\\g``" msgstr "" -#: library/re.rst:417 +#: library/re.rst:418 msgid "``\\g<1>``" msgstr "" -#: library/re.rst:421 +#: library/re.rst:422 msgid "" -"Group *name* containing characters outside the ASCII range (``b'\\x00'``-" -"``b'\\x7f'``) in :class:`bytes` patterns." +"In :class:`bytes` patterns, group *name* can only contain bytes in the ASCII " +"range (``b'\\x00'``-``b'\\x7f'``)." msgstr "" -#: library/re.rst:429 +#: library/re.rst:430 msgid "``(?P=name)``" msgstr "" -#: library/re.rst:428 +#: library/re.rst:429 msgid "" "A backreference to a named group; it matches whatever text was matched by " "the earlier group named *name*." msgstr "" -#: library/re.rst:434 +#: library/re.rst:435 msgid "``(?#...)``" msgstr "" -#: library/re.rst:434 +#: library/re.rst:435 msgid "A comment; the contents of the parentheses are simply ignored." msgstr "" -#: library/re.rst:441 +#: library/re.rst:442 msgid "``(?=...)``" msgstr "" -#: library/re.rst:439 +#: library/re.rst:440 msgid "" "Matches if ``...`` matches next, but doesn't consume any of the string. " "This is called a :dfn:`lookahead assertion`. For example, ``Isaac (?" "=Asimov)`` will match ``'Isaac '`` only if it's followed by ``'Asimov'``." msgstr "" -#: library/re.rst:448 +#: library/re.rst:449 msgid "``(?!...)``" msgstr "" -#: library/re.rst:446 +#: library/re.rst:447 msgid "" "Matches if ``...`` doesn't match next. This is a :dfn:`negative lookahead " "assertion`. For example, ``Isaac (?!Asimov)`` will match ``'Isaac '`` only " "if it's *not* followed by ``'Asimov'``." msgstr "" -#: library/re.rst:475 +#: library/re.rst:476 msgid "``(?<=...)``" msgstr "" -#: library/re.rst:453 +#: library/re.rst:454 msgid "" "Matches if the current position in the string is preceded by a match for " "``...`` that ends at the current position. This is called a :dfn:`positive " @@ -657,19 +658,19 @@ msgid "" "func:`match` function:" msgstr "" -#: library/re.rst:468 +#: library/re.rst:469 msgid "This example looks for a word following a hyphen:" msgstr "" -#: library/re.rst:474 +#: library/re.rst:475 msgid "Added support for group references of fixed length." msgstr "" -#: library/re.rst:484 +#: library/re.rst:485 msgid "``(?'``." msgstr "" -#: library/re.rst:1031 +#: library/re.rst:498 msgid "" -"Group *id* containing anything except ASCII digits. Group *name* containing " -"characters outside the ASCII range (``b'\\x00'``-``b'\\x7f'``) in :class:" -"`bytes` replacement strings." +"Group *id* can only contain ASCII digits. In :class:`bytes` patterns, group " +"*name* can only contain bytes in the ASCII range (``b'\\x00'``-``b'\\x7f'``)." msgstr "" -#: library/re.rst:505 +#: library/re.rst:506 msgid "" "The special sequences consist of ``'\\'`` and a character from the list " "below. If the ordinary character is not an ASCII digit or an ASCII letter, " @@ -707,11 +707,11 @@ msgid "" "matches the character ``'$'``." msgstr "" -#: library/re.rst:520 +#: library/re.rst:521 msgid "``\\number``" msgstr "" -#: library/re.rst:513 +#: library/re.rst:514 msgid "" "Matches the contents of the group of the same number. Groups are numbered " "starting from 1. For example, ``(.+) \\1`` matches ``'the the'`` or ``'55 " @@ -723,19 +723,19 @@ msgid "" "escapes are treated as characters." msgstr "" -#: library/re.rst:525 +#: library/re.rst:526 msgid "``\\A``" msgstr "" -#: library/re.rst:525 +#: library/re.rst:526 msgid "Matches only at the start of the string." msgstr "" -#: library/re.rst:541 +#: library/re.rst:542 msgid "``\\b``" msgstr "" -#: library/re.rst:530 +#: library/re.rst:531 msgid "" "Matches the empty string, but only at the beginning or end of a word. A word " "is defined as a sequence of word characters. Note that formally, ``\\b`` is " @@ -745,7 +745,7 @@ msgid "" "baz'`` but not ``'foobar'`` or ``'foo3'``." msgstr "" -#: library/re.rst:537 +#: library/re.rst:538 msgid "" "By default Unicode alphanumerics are the ones used in Unicode patterns, but " "this can be changed by using the :const:`ASCII` flag. Word boundaries are " @@ -754,11 +754,11 @@ msgid "" "compatibility with Python's string literals." msgstr "" -#: library/re.rst:552 +#: library/re.rst:553 msgid "``\\B``" msgstr "" -#: library/re.rst:546 +#: library/re.rst:547 msgid "" "Matches the empty string, but only when it is *not* at the beginning or end " "of a word. This means that ``r'py\\B'`` matches ``'python'``, ``'py3'``, " @@ -769,15 +769,15 @@ msgid "" "the :const:`LOCALE` flag is used." msgstr "" -#: library/re.rst:564 +#: library/re.rst:565 msgid "``\\d``" msgstr "" -#: library/re.rst:581 library/re.rst:600 +#: library/re.rst:582 library/re.rst:601 msgid "For Unicode (str) patterns:" msgstr "" -#: library/re.rst:558 +#: library/re.rst:559 msgid "" "Matches any Unicode decimal digit (that is, any character in Unicode " "character category [Nd]). This includes ``[0-9]``, and also many other " @@ -785,30 +785,30 @@ msgid "" "matched." msgstr "" -#: library/re.rst:585 library/re.rst:606 +#: library/re.rst:586 library/re.rst:607 msgid "For 8-bit (bytes) patterns:" msgstr "" -#: library/re.rst:564 +#: library/re.rst:565 msgid "Matches any decimal digit; this is equivalent to ``[0-9]``." msgstr "" -#: library/re.rst:571 +#: library/re.rst:572 msgid "``\\D``" msgstr "" -#: library/re.rst:569 +#: library/re.rst:570 msgid "" "Matches any character which is not a decimal digit. This is the opposite of " "``\\d``. If the :const:`ASCII` flag is used this becomes the equivalent of " "``[^0-9]``." msgstr "" -#: library/re.rst:585 +#: library/re.rst:586 msgid "``\\s``" msgstr "" -#: library/re.rst:577 +#: library/re.rst:578 msgid "" "Matches Unicode whitespace characters (which includes " "``[ \\t\\n\\r\\f\\v]``, and also many other characters, for example the non-" @@ -816,35 +816,35 @@ msgid "" "const:`ASCII` flag is used, only ``[ \\t\\n\\r\\f\\v]`` is matched." msgstr "" -#: library/re.rst:584 +#: library/re.rst:585 msgid "" "Matches characters considered whitespace in the ASCII character set; this is " "equivalent to ``[ \\t\\n\\r\\f\\v]``." msgstr "" -#: library/re.rst:592 +#: library/re.rst:593 msgid "``\\S``" msgstr "" -#: library/re.rst:590 +#: library/re.rst:591 msgid "" "Matches any character which is not a whitespace character. This is the " "opposite of ``\\s``. If the :const:`ASCII` flag is used this becomes the " "equivalent of ``[^ \\t\\n\\r\\f\\v]``." msgstr "" -#: library/re.rst:606 +#: library/re.rst:607 msgid "``\\w``" msgstr "" -#: library/re.rst:598 +#: library/re.rst:599 msgid "" "Matches Unicode word characters; this includes alphanumeric characters (as " "defined by :meth:`str.isalnum`) as well as the underscore (``_``). If the :" "const:`ASCII` flag is used, only ``[a-zA-Z0-9_]`` is matched." msgstr "" -#: library/re.rst:603 +#: library/re.rst:604 msgid "" "Matches characters considered alphanumeric in the ASCII character set; this " "is equivalent to ``[a-zA-Z0-9_]``. If the :const:`LOCALE` flag is used, " @@ -852,11 +852,11 @@ msgid "" "underscore." msgstr "" -#: library/re.rst:615 +#: library/re.rst:616 msgid "``\\W``" msgstr "" -#: library/re.rst:611 +#: library/re.rst:612 msgid "" "Matches any character which is not a word character. This is the opposite of " "``\\w``. If the :const:`ASCII` flag is used this becomes the equivalent of " @@ -864,34 +864,34 @@ msgid "" "which are neither alphanumeric in the current locale nor the underscore." msgstr "" -#: library/re.rst:620 +#: library/re.rst:621 msgid "``\\Z``" msgstr "" -#: library/re.rst:620 +#: library/re.rst:621 msgid "Matches only at the end of the string." msgstr "" -#: library/re.rst:636 +#: library/re.rst:637 msgid "" -"Most of the standard escapes supported by Python string literals are also " -"accepted by the regular expression parser::" +"Most of the :ref:`escape sequences ` supported by Python " +"string literals are also accepted by the regular expression parser::" msgstr "" -#: library/re.rst:643 +#: library/re.rst:644 msgid "" "(Note that ``\\b`` is used to represent word boundaries, and means " "\"backspace\" only inside character classes.)" msgstr "" -#: library/re.rst:646 +#: library/re.rst:647 msgid "" "``'\\u'``, ``'\\U'``, and ``'\\N'`` escape sequences are only recognized in " "Unicode patterns. In bytes patterns they are errors. Unknown escapes of " "ASCII letters are reserved for future use and treated as errors." msgstr "" -#: library/re.rst:650 +#: library/re.rst:651 msgid "" "Octal escapes are included in a limited form. If the first digit is a 0, or " "if there are three octal digits, it is considered an octal escape. " @@ -899,26 +899,26 @@ msgid "" "are always at most three digits in length." msgstr "" -#: library/re.rst:655 +#: library/re.rst:656 msgid "The ``'\\u'`` and ``'\\U'`` escape sequences have been added." msgstr "" -#: library/re.rst:658 +#: library/re.rst:659 msgid "" "Unknown escapes consisting of ``'\\'`` and an ASCII letter now are errors." msgstr "" -#: library/re.rst:661 +#: library/re.rst:662 msgid "" "The ``'\\N{name}'`` escape sequence has been added. As in string literals, " "it expands to the named Unicode character (e.g. ``'\\N{EM DASH}'``)." msgstr "" -#: library/re.rst:669 +#: library/re.rst:670 msgid "Module Contents" msgstr "" -#: library/re.rst:671 +#: library/re.rst:672 msgid "" "The module defines several functions, constants, and an exception. Some of " "the functions are simplified versions of the full featured methods for " @@ -926,26 +926,26 @@ msgid "" "compiled form." msgstr "" -#: library/re.rst:678 +#: library/re.rst:679 msgid "Flags" msgstr "" -#: library/re.rst:680 +#: library/re.rst:681 msgid "" "Flag constants are now instances of :class:`RegexFlag`, which is a subclass " "of :class:`enum.IntFlag`." msgstr "" -#: library/re.rst:687 +#: library/re.rst:688 msgid "" "An :class:`enum.IntFlag` class containing the regex options listed below." msgstr "" -#: library/re.rst:689 +#: library/re.rst:690 msgid "- added to ``__all__``" msgstr "" -#: library/re.rst:694 +#: library/re.rst:695 msgid "" "Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\d``, ``\\D``, ``\\s`` and " "``\\S`` perform ASCII-only matching instead of full Unicode matching. This " @@ -953,7 +953,7 @@ msgid "" "Corresponds to the inline flag ``(?a)``." msgstr "" -#: library/re.rst:699 +#: library/re.rst:700 msgid "" "Note that for backward compatibility, the :const:`re.U` flag still exists " "(as well as its synonym :const:`re.UNICODE` and its embedded counterpart ``(?" @@ -961,13 +961,13 @@ msgid "" "default for strings (and Unicode matching isn't allowed for bytes)." msgstr "" -#: library/re.rst:708 +#: library/re.rst:709 msgid "" "Display debug information about compiled expression. No corresponding inline " "flag." msgstr "" -#: library/re.rst:715 +#: library/re.rst:716 msgid "" "Perform case-insensitive matching; expressions like ``[A-Z]`` will also " "match lowercase letters. Full Unicode matching (such as ``Ü`` matching " @@ -977,7 +977,7 @@ msgid "" "flag ``(?i)``." msgstr "" -#: library/re.rst:722 +#: library/re.rst:723 msgid "" "Note that when the Unicode patterns ``[a-z]`` or ``[A-Z]`` are used in " "combination with the :const:`IGNORECASE` flag, they will match the 52 ASCII " @@ -988,7 +988,7 @@ msgid "" "matched." msgstr "" -#: library/re.rst:733 +#: library/re.rst:734 msgid "" "Make ``\\w``, ``\\W``, ``\\b``, ``\\B`` and case-insensitive matching " "dependent on the current locale. This flag can be used only with bytes " @@ -999,20 +999,20 @@ msgid "" "locales/languages. Corresponds to the inline flag ``(?L)``." msgstr "" -#: library/re.rst:742 +#: library/re.rst:743 msgid "" ":const:`re.LOCALE` can be used only with bytes patterns and is not " "compatible with :const:`re.ASCII`." msgstr "" -#: library/re.rst:746 +#: library/re.rst:747 msgid "" "Compiled regular expression objects with the :const:`re.LOCALE` flag no " "longer depend on the locale at compile time. Only the locale at matching " "time affects the result of matching." msgstr "" -#: library/re.rst:755 +#: library/re.rst:756 msgid "" "When specified, the pattern character ``'^'`` matches at the beginning of " "the string and at the beginning of each line (immediately following each " @@ -1023,7 +1023,7 @@ msgid "" "the end of the string. Corresponds to the inline flag ``(?m)``." msgstr "" -#: library/re.rst:765 +#: library/re.rst:766 msgid "" "Indicates no flag being applied, the value is ``0``. This flag may be used " "as a default value for a function keyword argument or as a base value that " @@ -1031,29 +1031,29 @@ msgid "" "value::" msgstr "" -#: library/re.rst:778 +#: library/re.rst:779 msgid "" "Make the ``'.'`` special character match any character at all, including a " "newline; without this flag, ``'.'`` will match anything *except* a newline. " "Corresponds to the inline flag ``(?s)``." msgstr "" -#: library/re.rst:786 +#: library/re.rst:787 msgid "" "In Python 2, this flag made :ref:`special sequences ` " "include Unicode characters in matches. Since Python 3, Unicode characters " "are matched by default." msgstr "" -#: library/re.rst:790 +#: library/re.rst:791 msgid "See :const:`A` for restricting matching on ASCII characters instead." msgstr "" -#: library/re.rst:792 +#: library/re.rst:793 msgid "This flag is only kept for backward compatibility." msgstr "" -#: library/re.rst:799 +#: library/re.rst:800 msgid "" "This flag allows you to write regular expressions that look nicer and are " "more readable by allowing you to visually separate logical sections of the " @@ -1066,50 +1066,50 @@ msgid "" "ignored." msgstr "" -#: library/re.rst:809 +#: library/re.rst:810 msgid "" "This means that the two following regular expression objects that match a " "decimal number are functionally equal::" msgstr "" -#: library/re.rst:817 +#: library/re.rst:818 msgid "Corresponds to the inline flag ``(?x)``." msgstr "" -#: library/re.rst:821 +#: library/re.rst:822 msgid "Functions" msgstr "" -#: library/re.rst:825 +#: library/re.rst:826 msgid "" "Compile a regular expression pattern into a :ref:`regular expression object " "`, which can be used for matching using its :func:`~Pattern." "match`, :func:`~Pattern.search` and other methods, described below." msgstr "" -#: library/re.rst:830 +#: library/re.rst:831 msgid "" "The expression's behaviour can be modified by specifying a *flags* value. " "Values can be any of the following variables, combined using bitwise OR (the " "``|`` operator)." msgstr "" -#: library/re.rst:834 +#: library/re.rst:835 msgid "The sequence ::" msgstr "" -#: library/re.rst:839 +#: library/re.rst:840 msgid "is equivalent to ::" msgstr "" -#: library/re.rst:843 +#: library/re.rst:844 msgid "" "but using :func:`re.compile` and saving the resulting regular expression " "object for reuse is more efficient when the expression will be used several " "times in a single program." msgstr "" -#: library/re.rst:849 +#: library/re.rst:850 msgid "" "The compiled versions of the most recent patterns passed to :func:`re." "compile` and the module-level matching functions are cached, so programs " @@ -1117,7 +1117,7 @@ msgid "" "compiling regular expressions." msgstr "" -#: library/re.rst:857 +#: library/re.rst:858 msgid "" "Scan through *string* looking for the first location where the regular " "expression *pattern* produces a match, and return a corresponding :class:" @@ -1126,7 +1126,7 @@ msgid "" "some point in the string." msgstr "" -#: library/re.rst:865 +#: library/re.rst:866 msgid "" "If zero or more characters at the beginning of *string* match the regular " "expression *pattern*, return a corresponding :class:`~re.Match`. Return " @@ -1134,26 +1134,26 @@ msgid "" "different from a zero-length match." msgstr "" -#: library/re.rst:870 +#: library/re.rst:871 msgid "" "Note that even in :const:`MULTILINE` mode, :func:`re.match` will only match " "at the beginning of the string and not at the beginning of each line." msgstr "" -#: library/re.rst:873 +#: library/re.rst:874 msgid "" "If you want to locate a match anywhere in *string*, use :func:`search` " "instead (see also :ref:`search-vs-match`)." msgstr "" -#: library/re.rst:879 +#: library/re.rst:880 msgid "" "If the whole *string* matches the regular expression *pattern*, return a " "corresponding :class:`~re.Match`. Return ``None`` if the string does not " "match the pattern; note that this is different from a zero-length match." msgstr "" -#: library/re.rst:888 +#: library/re.rst:889 msgid "" "Split *string* by the occurrences of *pattern*. If capturing parentheses " "are used in *pattern*, then the text of all groups in the pattern are also " @@ -1162,42 +1162,42 @@ msgid "" "final element of the list. ::" msgstr "" -#: library/re.rst:903 +#: library/re.rst:904 msgid "" "If there are capturing groups in the separator and it matches at the start " "of the string, the result will start with an empty string. The same holds " "for the end of the string::" msgstr "" -#: library/re.rst:910 +#: library/re.rst:911 msgid "" "That way, separator components are always found at the same relative indices " "within the result list." msgstr "" -#: library/re.rst:913 +#: library/re.rst:914 msgid "" "Empty matches for the pattern split the string only when not adjacent to a " "previous empty match." msgstr "" -#: library/re.rst:1013 library/re.rst:1042 +#: library/re.rst:1015 library/re.rst:1044 msgid "Added the optional flags argument." msgstr "" -#: library/re.rst:926 +#: library/re.rst:927 msgid "" "Added support of splitting on a pattern that could match an empty string." msgstr "" -#: library/re.rst:932 +#: library/re.rst:933 msgid "" "Return all non-overlapping matches of *pattern* in *string*, as a list of " "strings or tuples. The *string* is scanned left-to-right, and matches are " "returned in the order found. Empty matches are included in the result." msgstr "" -#: library/re.rst:936 +#: library/re.rst:937 msgid "" "The result depends on the number of capturing groups in the pattern. If " "there are no groups, return a list of strings matching the whole pattern. " @@ -1207,11 +1207,11 @@ msgid "" "result." msgstr "" -#: library/re.rst:959 +#: library/re.rst:960 msgid "Non-empty matches can now start just after a previous empty match." msgstr "" -#: library/re.rst:954 +#: library/re.rst:955 msgid "" "Return an :term:`iterator` yielding :class:`~re.Match` objects over all non-" "overlapping matches for the RE *pattern* in *string*. The *string* is " @@ -1219,7 +1219,7 @@ msgid "" "matches are included in the result." msgstr "" -#: library/re.rst:965 +#: library/re.rst:966 msgid "" "Return the string obtained by replacing the leftmost non-overlapping " "occurrences of *pattern* in *string* by the replacement *repl*. If the " @@ -1233,18 +1233,18 @@ msgid "" "For example::" msgstr "" -#: library/re.rst:981 +#: library/re.rst:982 msgid "" "If *repl* is a function, it is called for every non-overlapping occurrence " "of *pattern*. The function takes a single :class:`~re.Match` argument, and " "returns the replacement string. For example::" msgstr "" -#: library/re.rst:993 +#: library/re.rst:995 msgid "The pattern may be a string or a :class:`~re.Pattern`." msgstr "" -#: library/re.rst:995 +#: library/re.rst:997 msgid "" "The optional argument *count* is the maximum number of pattern occurrences " "to be replaced; *count* must be a non-negative integer. If omitted or zero, " @@ -1253,7 +1253,7 @@ msgid "" "'abxd')`` returns ``'-a-b--d-'``." msgstr "" -#: library/re.rst:1003 +#: library/re.rst:1005 msgid "" "In string-type *repl* arguments, in addition to the character escapes and " "backreferences described above, ``\\g`` will use the substring matched " @@ -1266,52 +1266,59 @@ msgid "" "RE." msgstr "" -#: library/re.rst:1045 library/re.rst:1288 +#: library/re.rst:1047 library/re.rst:1290 msgid "Unmatched groups are replaced with an empty string." msgstr "" -#: library/re.rst:1019 +#: library/re.rst:1021 msgid "" "Unknown escapes in *pattern* consisting of ``'\\'`` and an ASCII letter now " "are errors." msgstr "" -#: library/re.rst:1023 +#: library/re.rst:1025 msgid "" "Unknown escapes in *repl* consisting of ``'\\'`` and an ASCII letter now are " "errors." msgstr "" -#: library/re.rst:1027 +#: library/re.rst:1029 msgid "" "Empty matches for the pattern are replaced when adjacent to a previous non-" "empty match." msgstr "" -#: library/re.rst:1039 +#: library/re.rst:1033 +msgid "" +"Group *id* can only contain ASCII digits. In :class:`bytes` replacement " +"strings, group *name* can only contain bytes in the ASCII range " +"(``b'\\x00'``-``b'\\x7f'``)." +msgstr "" + +#: library/re.rst:1041 msgid "" "Perform the same operation as :func:`sub`, but return a tuple ``(new_string, " "number_of_subs_made)``." msgstr "" -#: library/re.rst:1051 +#: library/re.rst:1053 msgid "" "Escape special characters in *pattern*. This is useful if you want to match " "an arbitrary literal string that may have regular expression metacharacters " "in it. For example::" msgstr "" -#: library/re.rst:1066 +#: library/re.rst:1068 msgid "" "This function must not be used for the replacement string in :func:`sub` " "and :func:`subn`, only backslashes should be escaped. For example::" msgstr "" -#: library/re.rst:1074 +#: library/re.rst:1076 msgid "The ``'_'`` character is no longer escaped." msgstr "" -#: library/re.rst:1077 +#: library/re.rst:1079 msgid "" "Only characters that can have special meaning in a regular expression are " "escaped. As a result, ``'!'``, ``'\"'``, ``'%'``, ``\"'\"``, ``','``, " @@ -1319,15 +1326,15 @@ msgid "" "are no longer escaped." msgstr "" -#: library/re.rst:1086 +#: library/re.rst:1088 msgid "Clear the regular expression cache." msgstr "" -#: library/re.rst:1090 +#: library/re.rst:1092 msgid "Exceptions" msgstr "" -#: library/re.rst:1094 +#: library/re.rst:1096 msgid "" "Exception raised when a string passed to one of the functions here is not a " "valid regular expression (for example, it might contain unmatched " @@ -1336,45 +1343,45 @@ msgid "" "pattern. The error instance has the following additional attributes:" msgstr "" -#: library/re.rst:1102 +#: library/re.rst:1104 msgid "The unformatted error message." msgstr "" -#: library/re.rst:1106 +#: library/re.rst:1108 msgid "The regular expression pattern." msgstr "" -#: library/re.rst:1110 +#: library/re.rst:1112 msgid "The index in *pattern* where compilation failed (may be ``None``)." msgstr "" -#: library/re.rst:1114 +#: library/re.rst:1116 msgid "The line corresponding to *pos* (may be ``None``)." msgstr "" -#: library/re.rst:1118 +#: library/re.rst:1120 msgid "The column corresponding to *pos* (may be ``None``)." msgstr "" -#: library/re.rst:1120 +#: library/re.rst:1122 msgid "Added additional attributes." msgstr "" -#: library/re.rst:1126 +#: library/re.rst:1128 msgid "Regular Expression Objects" msgstr "" -#: library/re.rst:1130 +#: library/re.rst:1132 msgid "Compiled regular expression object returned by :func:`re.compile`." msgstr "" -#: library/re.rst:1132 +#: library/re.rst:1134 msgid "" ":py:class:`re.Pattern` supports ``[]`` to indicate a Unicode (str) or bytes " "pattern. See :ref:`types-genericalias`." msgstr "" -#: library/re.rst:1138 +#: library/re.rst:1140 msgid "" "Scan through *string* looking for the first location where this regular " "expression produces a match, and return a corresponding :class:`~re.Match`. " @@ -1383,7 +1390,7 @@ msgid "" "string." msgstr "" -#: library/re.rst:1143 +#: library/re.rst:1145 msgid "" "The optional second parameter *pos* gives an index in the string where the " "search is to start; it defaults to ``0``. This is not completely equivalent " @@ -1392,7 +1399,7 @@ msgid "" "necessarily at the index where the search is to start." msgstr "" -#: library/re.rst:1149 +#: library/re.rst:1151 msgid "" "The optional parameter *endpos* limits how far the string will be searched; " "it will be as if the string is *endpos* characters long, so only the " @@ -1402,7 +1409,7 @@ msgid "" "equivalent to ``rx.search(string[:50], 0)``. ::" msgstr "" -#: library/re.rst:1164 +#: library/re.rst:1166 msgid "" "If zero or more characters at the *beginning* of *string* match this regular " "expression, return a corresponding :class:`~re.Match`. Return ``None`` if " @@ -1410,101 +1417,101 @@ msgid "" "zero-length match." msgstr "" -#: library/re.rst:1187 +#: library/re.rst:1189 msgid "" "The optional *pos* and *endpos* parameters have the same meaning as for the :" "meth:`~Pattern.search` method. ::" msgstr "" -#: library/re.rst:1177 +#: library/re.rst:1179 msgid "" "If you want to locate a match anywhere in *string*, use :meth:`~Pattern." "search` instead (see also :ref:`search-vs-match`)." msgstr "" -#: library/re.rst:1183 +#: library/re.rst:1185 msgid "" "If the whole *string* matches this regular expression, return a " "corresponding :class:`~re.Match`. Return ``None`` if the string does not " "match the pattern; note that this is different from a zero-length match." msgstr "" -#: library/re.rst:1201 +#: library/re.rst:1203 msgid "Identical to the :func:`split` function, using the compiled pattern." msgstr "" -#: library/re.rst:1206 +#: library/re.rst:1208 msgid "" "Similar to the :func:`findall` function, using the compiled pattern, but " "also accepts optional *pos* and *endpos* parameters that limit the search " "region like for :meth:`search`." msgstr "" -#: library/re.rst:1213 +#: library/re.rst:1215 msgid "" "Similar to the :func:`finditer` function, using the compiled pattern, but " "also accepts optional *pos* and *endpos* parameters that limit the search " "region like for :meth:`search`." msgstr "" -#: library/re.rst:1220 +#: library/re.rst:1222 msgid "Identical to the :func:`sub` function, using the compiled pattern." msgstr "" -#: library/re.rst:1225 +#: library/re.rst:1227 msgid "Identical to the :func:`subn` function, using the compiled pattern." msgstr "" -#: library/re.rst:1230 +#: library/re.rst:1232 msgid "" "The regex matching flags. This is a combination of the flags given to :func:" "`.compile`, any ``(?...)`` inline flags in the pattern, and implicit flags " "such as :data:`UNICODE` if the pattern is a Unicode string." msgstr "" -#: library/re.rst:1237 +#: library/re.rst:1239 msgid "The number of capturing groups in the pattern." msgstr "" -#: library/re.rst:1242 +#: library/re.rst:1244 msgid "" "A dictionary mapping any symbolic group names defined by ``(?P)`` to " "group numbers. The dictionary is empty if no symbolic groups were used in " "the pattern." msgstr "" -#: library/re.rst:1249 +#: library/re.rst:1251 msgid "The pattern string from which the pattern object was compiled." msgstr "" -#: library/re.rst:1252 +#: library/re.rst:1254 msgid "" "Added support of :func:`copy.copy` and :func:`copy.deepcopy`. Compiled " "regular expression objects are considered atomic." msgstr "" -#: library/re.rst:1260 +#: library/re.rst:1262 msgid "Match Objects" msgstr "" -#: library/re.rst:1262 +#: library/re.rst:1264 msgid "" "Match objects always have a boolean value of ``True``. Since :meth:`~Pattern." "match` and :meth:`~Pattern.search` return ``None`` when there is no match, " "you can test whether there was a match with a simple ``if`` statement::" msgstr "" -#: library/re.rst:1273 +#: library/re.rst:1275 msgid "Match object returned by successful ``match``\\ es and ``search``\\ es." msgstr "" -#: library/re.rst:1275 +#: library/re.rst:1277 msgid "" ":py:class:`re.Match` supports ``[]`` to indicate a Unicode (str) or bytes " "match. See :ref:`types-genericalias`." msgstr "" -#: library/re.rst:1281 +#: library/re.rst:1283 msgid "" "Return the string obtained by doing backslash substitution on the template " "string *template*, as done by the :meth:`~Pattern.sub` method. Escapes such " @@ -1513,7 +1520,7 @@ msgid "" "``\\g``) are replaced by the contents of the corresponding group." msgstr "" -#: library/re.rst:1293 +#: library/re.rst:1295 msgid "" "Returns one or more subgroups of the match. If there is a single argument, " "the result is a single string; if there are multiple arguments, the result " @@ -1528,7 +1535,7 @@ msgid "" "the pattern that matched multiple times, the last match is returned. ::" msgstr "" -#: library/re.rst:1315 +#: library/re.rst:1317 msgid "" "If the regular expression uses the ``(?P...)`` syntax, the *groupN* " "arguments may also be strings identifying groups by their group name. If a " @@ -1536,54 +1543,54 @@ msgid "" "`IndexError` exception is raised." msgstr "" -#: library/re.rst:1320 +#: library/re.rst:1322 msgid "A moderately complicated example::" msgstr "" -#: library/re.rst:1328 +#: library/re.rst:1330 msgid "Named groups can also be referred to by their index::" msgstr "" -#: library/re.rst:1335 +#: library/re.rst:1337 msgid "If a group matches multiple times, only the last match is accessible::" msgstr "" -#: library/re.rst:1344 +#: library/re.rst:1346 msgid "" "This is identical to ``m.group(g)``. This allows easier access to an " "individual group from a match::" msgstr "" -#: library/re.rst:1355 +#: library/re.rst:1357 msgid "Named groups are supported as well::" msgstr "" -#: library/re.rst:1368 +#: library/re.rst:1370 msgid "" "Return a tuple containing all the subgroups of the match, from 1 up to " "however many groups are in the pattern. The *default* argument is used for " "groups that did not participate in the match; it defaults to ``None``." msgstr "" -#: library/re.rst:1597 +#: library/re.rst:1599 msgid "For example::" msgstr "" -#: library/re.rst:1378 +#: library/re.rst:1380 msgid "" "If we make the decimal place and everything after it optional, not all " "groups might participate in the match. These groups will default to " "``None`` unless the *default* argument is given::" msgstr "" -#: library/re.rst:1391 +#: library/re.rst:1393 msgid "" "Return a dictionary containing all the *named* subgroups of the match, keyed " "by the subgroup name. The *default* argument is used for groups that did " "not participate in the match; it defaults to ``None``. For example::" msgstr "" -#: library/re.rst:1403 +#: library/re.rst:1405 msgid "" "Return the indices of the start and end of the substring matched by *group*; " "*group* defaults to zero (meaning the whole matched substring). Return " @@ -1592,7 +1599,7 @@ msgid "" "matched by group *g* (equivalent to ``m.group(g)``) is ::" msgstr "" -#: library/re.rst:1411 +#: library/re.rst:1413 msgid "" "Note that ``m.start(group)`` will equal ``m.end(group)`` if *group* matched " "a null string. For example, after ``m = re.search('b(c?)', 'cba')``, ``m." @@ -1600,32 +1607,32 @@ msgid "" "2, and ``m.start(2)`` raises an :exc:`IndexError` exception." msgstr "" -#: library/re.rst:1416 +#: library/re.rst:1418 msgid "An example that will remove *remove_this* from email addresses::" msgstr "" -#: library/re.rst:1426 +#: library/re.rst:1428 msgid "" "For a match *m*, return the 2-tuple ``(m.start(group), m.end(group))``. Note " "that if *group* did not contribute to the match, this is ``(-1, -1)``. " "*group* defaults to zero, the entire match." msgstr "" -#: library/re.rst:1433 +#: library/re.rst:1435 msgid "" "The value of *pos* which was passed to the :meth:`~Pattern.search` or :meth:" "`~Pattern.match` method of a :ref:`regex object `. This is the " "index into the string at which the RE engine started looking for a match." msgstr "" -#: library/re.rst:1440 +#: library/re.rst:1442 msgid "" "The value of *endpos* which was passed to the :meth:`~Pattern.search` or :" "meth:`~Pattern.match` method of a :ref:`regex object `. This is " "the index into the string beyond which the RE engine will not go." msgstr "" -#: library/re.rst:1447 +#: library/re.rst:1449 msgid "" "The integer index of the last matched capturing group, or ``None`` if no " "group was matched at all. For example, the expressions ``(a)b``, ``((a)" @@ -1634,43 +1641,43 @@ msgid "" "applied to the same string." msgstr "" -#: library/re.rst:1456 +#: library/re.rst:1458 msgid "" "The name of the last matched capturing group, or ``None`` if the group " "didn't have a name, or if no group was matched at all." msgstr "" -#: library/re.rst:1462 +#: library/re.rst:1464 msgid "" "The :ref:`regular expression object ` whose :meth:`~Pattern." "match` or :meth:`~Pattern.search` method produced this match instance." msgstr "" -#: library/re.rst:1468 +#: library/re.rst:1470 msgid "The string passed to :meth:`~Pattern.match` or :meth:`~Pattern.search`." msgstr "" -#: library/re.rst:1471 +#: library/re.rst:1473 msgid "" "Added support of :func:`copy.copy` and :func:`copy.deepcopy`. Match objects " "are considered atomic." msgstr "" -#: library/re.rst:1479 +#: library/re.rst:1481 msgid "Regular Expression Examples" msgstr "" -#: library/re.rst:1483 +#: library/re.rst:1485 msgid "Checking for a Pair" msgstr "" -#: library/re.rst:1485 +#: library/re.rst:1487 msgid "" "In this example, we'll use the following helper function to display match " "objects a little more gracefully::" msgstr "" -#: library/re.rst:1493 +#: library/re.rst:1495 msgid "" "Suppose you are writing a poker program where a player's hand is represented " "as a 5-character string with each character representing a card, \"a\" for " @@ -1678,28 +1685,28 @@ msgid "" "\"2\" through \"9\" representing the card with that value." msgstr "" -#: library/re.rst:1498 +#: library/re.rst:1500 msgid "To see if a given string is a valid hand, one could do the following::" msgstr "" -#: library/re.rst:1508 +#: library/re.rst:1510 msgid "" "That last hand, ``\"727ak\"``, contained a pair, or two of the same valued " "cards. To match this with a regular expression, one could use backreferences " "as such::" msgstr "" -#: library/re.rst:1518 +#: library/re.rst:1520 msgid "" "To find out what card the pair consists of, one could use the :meth:`~Match." "group` method of the match object in the following manner::" msgstr "" -#: library/re.rst:1537 +#: library/re.rst:1539 msgid "Simulating scanf()" msgstr "" -#: library/re.rst:1541 +#: library/re.rst:1543 msgid "" "Python does not currently have an equivalent to :c:func:`!scanf`. Regular " "expressions are generally more powerful, though also more verbose, than :c:" @@ -1708,124 +1715,124 @@ msgid "" "expressions." msgstr "" -#: library/re.rst:1548 +#: library/re.rst:1550 msgid ":c:func:`!scanf` Token" msgstr "" -#: library/re.rst:1548 +#: library/re.rst:1550 msgid "Regular Expression" msgstr "" -#: library/re.rst:1550 +#: library/re.rst:1552 msgid "``%c``" msgstr "" -#: library/re.rst:1552 +#: library/re.rst:1554 msgid "``%5c``" msgstr "" -#: library/re.rst:1552 +#: library/re.rst:1554 msgid "``.{5}``" msgstr "" -#: library/re.rst:1554 +#: library/re.rst:1556 msgid "``%d``" msgstr "" -#: library/re.rst:1554 +#: library/re.rst:1556 msgid "``[-+]?\\d+``" msgstr "" -#: library/re.rst:1556 +#: library/re.rst:1558 msgid "``%e``, ``%E``, ``%f``, ``%g``" msgstr "" -#: library/re.rst:1556 +#: library/re.rst:1558 msgid "``[-+]?(\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?``" msgstr "" -#: library/re.rst:1558 +#: library/re.rst:1560 msgid "``%i``" msgstr "" -#: library/re.rst:1558 +#: library/re.rst:1560 msgid "``[-+]?(0[xX][\\dA-Fa-f]+|0[0-7]*|\\d+)``" msgstr "" -#: library/re.rst:1560 +#: library/re.rst:1562 msgid "``%o``" msgstr "" -#: library/re.rst:1560 +#: library/re.rst:1562 msgid "``[-+]?[0-7]+``" msgstr "" -#: library/re.rst:1562 +#: library/re.rst:1564 msgid "``%s``" msgstr "" -#: library/re.rst:1562 +#: library/re.rst:1564 msgid "``\\S+``" msgstr "" -#: library/re.rst:1564 +#: library/re.rst:1566 msgid "``%u``" msgstr "" -#: library/re.rst:1564 +#: library/re.rst:1566 msgid "``\\d+``" msgstr "" -#: library/re.rst:1566 +#: library/re.rst:1568 msgid "``%x``, ``%X``" msgstr "" -#: library/re.rst:1566 +#: library/re.rst:1568 msgid "``[-+]?(0[xX])?[\\dA-Fa-f]+``" msgstr "" -#: library/re.rst:1569 +#: library/re.rst:1571 msgid "To extract the filename and numbers from a string like ::" msgstr "" -#: library/re.rst:1573 +#: library/re.rst:1575 msgid "you would use a :c:func:`!scanf` format like ::" msgstr "" -#: library/re.rst:1577 +#: library/re.rst:1579 msgid "The equivalent regular expression would be ::" msgstr "" -#: library/re.rst:1585 +#: library/re.rst:1587 msgid "search() vs. match()" msgstr "" -#: library/re.rst:1589 +#: library/re.rst:1591 msgid "" "Python offers different primitive operations based on regular expressions:" msgstr "" -#: library/re.rst:1591 +#: library/re.rst:1593 msgid ":func:`re.match` checks for a match only at the beginning of the string" msgstr "" -#: library/re.rst:1592 +#: library/re.rst:1594 msgid "" ":func:`re.search` checks for a match anywhere in the string (this is what " "Perl does by default)" msgstr "" -#: library/re.rst:1594 +#: library/re.rst:1596 msgid ":func:`re.fullmatch` checks for entire string to be a match" msgstr "" -#: library/re.rst:1606 +#: library/re.rst:1608 msgid "" "Regular expressions beginning with ``'^'`` can be used with :func:`search` " "to restrict the match at the beginning of the string::" msgstr "" -#: library/re.rst:1614 +#: library/re.rst:1616 msgid "" "Note however that in :const:`MULTILINE` mode :func:`match` only matches at " "the beginning of the string, whereas using :func:`search` with a regular " @@ -1833,11 +1840,11 @@ msgid "" "line. ::" msgstr "" -#: library/re.rst:1624 +#: library/re.rst:1626 msgid "Making a Phonebook" msgstr "" -#: library/re.rst:1626 +#: library/re.rst:1628 msgid "" ":func:`split` splits a string into a list delimited by the passed pattern. " "The method is invaluable for converting textual data into data structures " @@ -1845,37 +1852,37 @@ msgid "" "following example that creates a phonebook." msgstr "" -#: library/re.rst:1631 +#: library/re.rst:1633 msgid "" "First, here is the input. Normally it may come from a file, here we are " "using triple-quoted string syntax" msgstr "" -#: library/re.rst:1644 +#: library/re.rst:1646 msgid "" "The entries are separated by one or more newlines. Now we convert the string " "into a list with each nonempty line having its own entry:" msgstr "" -#: library/re.rst:1657 +#: library/re.rst:1659 msgid "" "Finally, split each entry into a list with first name, last name, telephone " "number, and address. We use the ``maxsplit`` parameter of :func:`split` " "because the address has spaces, our splitting pattern, in it:" msgstr "" -#: library/re.rst:1670 +#: library/re.rst:1672 msgid "" "The ``:?`` pattern matches the colon after the last name, so that it does " "not occur in the result list. With a ``maxsplit`` of ``4``, we could " "separate the house number from the street name:" msgstr "" -#: library/re.rst:1685 +#: library/re.rst:1687 msgid "Text Munging" msgstr "" -#: library/re.rst:1687 +#: library/re.rst:1689 msgid "" ":func:`sub` replaces every occurrence of a pattern with a string or the " "result of a function. This example demonstrates using :func:`sub` with a " @@ -1883,11 +1890,11 @@ msgid "" "each word of a sentence except for the first and last characters::" msgstr "" -#: library/re.rst:1704 +#: library/re.rst:1707 msgid "Finding all Adverbs" msgstr "" -#: library/re.rst:1706 +#: library/re.rst:1709 msgid "" ":func:`findall` matches *all* occurrences of a pattern, not just the first " "one as :func:`search` does. For example, if a writer wanted to find all of " @@ -1895,11 +1902,11 @@ msgid "" "manner::" msgstr "" -#: library/re.rst:1717 +#: library/re.rst:1720 msgid "Finding all Adverbs and their Positions" msgstr "" -#: library/re.rst:1719 +#: library/re.rst:1722 msgid "" "If one wants more information about all matches of a pattern than the " "matched text, :func:`finditer` is useful as it provides :class:`~re.Match` " @@ -1908,11 +1915,11 @@ msgid "" "they would use :func:`finditer` in the following manner::" msgstr "" -#: library/re.rst:1733 +#: library/re.rst:1736 msgid "Raw String Notation" msgstr "" -#: library/re.rst:1735 +#: library/re.rst:1738 msgid "" "Raw string notation (``r\"text\"``) keeps regular expressions sane. Without " "it, every backslash (``'\\'``) in a regular expression would have to be " @@ -1920,7 +1927,7 @@ msgid "" "lines of code are functionally identical::" msgstr "" -#: library/re.rst:1745 +#: library/re.rst:1748 msgid "" "When one wants to match a literal backslash, it must be escaped in the " "regular expression. With raw string notation, this means ``r\"\\\\\"``. " @@ -1928,29 +1935,29 @@ msgid "" "following lines of code functionally identical::" msgstr "" -#: library/re.rst:1757 +#: library/re.rst:1760 msgid "Writing a Tokenizer" msgstr "" -#: library/re.rst:1759 +#: library/re.rst:1762 msgid "" "A `tokenizer or scanner `_ " "analyzes a string to categorize groups of characters. This is a useful " "first step in writing a compiler or interpreter." msgstr "" -#: library/re.rst:1763 +#: library/re.rst:1766 msgid "" "The text categories are specified with regular expressions. The technique " "is to combine those into a single master regular expression and to loop over " "successive matches::" msgstr "" -#: library/re.rst:1819 +#: library/re.rst:1822 msgid "The tokenizer produces the following output::" msgstr "" -#: library/re.rst:1842 +#: library/re.rst:1845 msgid "" "Friedl, Jeffrey. Mastering Regular Expressions. 3rd ed., O'Reilly Media, " "2009. The third edition of the book no longer covers Python at all, but the " @@ -1964,9 +1971,9 @@ msgstr "" #: library/re.rst:112 library/re.rst:130 library/re.rst:143 library/re.rst:181 #: library/re.rst:235 library/re.rst:257 library/re.rst:296 library/re.rst:319 -#: library/re.rst:394 library/re.rst:431 library/re.rst:443 library/re.rst:477 -#: library/re.rst:510 library/re.rst:527 library/re.rst:554 library/re.rst:573 -#: library/re.rst:594 library/re.rst:617 library/re.rst:797 library/re.rst:1001 +#: library/re.rst:394 library/re.rst:432 library/re.rst:444 library/re.rst:478 +#: library/re.rst:511 library/re.rst:528 library/re.rst:555 library/re.rst:574 +#: library/re.rst:595 library/re.rst:618 library/re.rst:798 library/re.rst:1003 msgid "in regular expressions" msgstr "" @@ -2018,7 +2025,7 @@ msgstr "" msgid "{} (curly brackets)" msgstr "" -#: library/re.rst:257 library/re.rst:510 +#: library/re.rst:257 library/re.rst:511 msgid "\\ (backslash)" msgstr "" @@ -2050,126 +2057,126 @@ msgstr "" msgid "(?P<" msgstr "" -#: library/re.rst:425 +#: library/re.rst:426 msgid "(?P=" msgstr "" -#: library/re.rst:431 +#: library/re.rst:432 msgid "(?#" msgstr "" -#: library/re.rst:436 +#: library/re.rst:437 msgid "(?=" msgstr "" -#: library/re.rst:443 +#: library/re.rst:444 msgid "(?!" msgstr "" -#: library/re.rst:450 +#: library/re.rst:451 msgid "(?<=" msgstr "" -#: library/re.rst:477 +#: library/re.rst:478 msgid "(?\n" @@ -35,7 +35,7 @@ msgstr "" msgid "This module provides a class, an instance, and a function:" msgstr "" -#: library/reprlib.rst:22 +#: library/reprlib.rst:24 msgid "" "Class which provides formatting services useful in implementing functions " "similar to the built-in :func:`repr`; size limits for different object " @@ -43,70 +43,91 @@ msgid "" "excessively long." msgstr "" -#: library/reprlib.rst:29 +#: library/reprlib.rst:28 +msgid "" +"The keyword arguments of the constructor can be used as a shortcut to set " +"the attributes of the :class:`Repr` instance. Which means that the following " +"initialization::" +msgstr "" + +#: library/reprlib.rst:34 +msgid "Is equivalent to::" +msgstr "" + +#: library/reprlib.rst:39 +msgid "" +"See section `Repr Objects`_ for more information about :class:`Repr` " +"attributes." +msgstr "" + +#: library/reprlib.rst:42 +msgid "Allow attributes to be set via keyword arguments." +msgstr "" + +#: library/reprlib.rst:48 msgid "" "This is an instance of :class:`Repr` which is used to provide the :func:`." "repr` function described below. Changing the attributes of this object will " "affect the size limits used by :func:`.repr` and the Python debugger." msgstr "" -#: library/reprlib.rst:37 +#: library/reprlib.rst:56 msgid "" "This is the :meth:`~Repr.repr` method of ``aRepr``. It returns a string " "similar to that returned by the built-in function of the same name, but with " "limits on most sizes." msgstr "" -#: library/reprlib.rst:41 +#: library/reprlib.rst:60 msgid "" "In addition to size-limiting tools, the module also provides a decorator for " "detecting recursive calls to :meth:`__repr__` and substituting a placeholder " "string instead." msgstr "" -#: library/reprlib.rst:50 +#: library/reprlib.rst:69 msgid "" "Decorator for :meth:`__repr__` methods to detect recursive calls within the " "same thread. If a recursive call is made, the *fillvalue* is returned, " "otherwise, the usual :meth:`__repr__` call is made. For example:" msgstr "" -#: library/reprlib.rst:72 +#: library/reprlib.rst:91 msgid "Repr Objects" msgstr "" -#: library/reprlib.rst:74 +#: library/reprlib.rst:93 msgid "" ":class:`Repr` instances provide several attributes which can be used to " "provide size limits for the representations of different object types, and " "methods which format specific object types." msgstr "" -#: library/reprlib.rst:81 +#: library/reprlib.rst:100 msgid "" "This string is displayed for recursive references. It defaults to ``...``." msgstr "" -#: library/reprlib.rst:89 +#: library/reprlib.rst:108 msgid "" "Depth limit on the creation of recursive representations. The default is " "``6``." msgstr "" -#: library/reprlib.rst:100 +#: library/reprlib.rst:119 msgid "" "Limits on the number of entries represented for the named object type. The " "default is ``4`` for :attr:`maxdict`, ``5`` for :attr:`maxarray`, and ``6`` " "for the others." msgstr "" -#: library/reprlib.rst:107 +#: library/reprlib.rst:126 msgid "" "Maximum number of characters in the representation for an integer. Digits " "are dropped from the middle. The default is ``40``." msgstr "" -#: library/reprlib.rst:113 +#: library/reprlib.rst:132 msgid "" "Limit on the number of characters in the representation of the string. Note " "that the \"normal\" representation of the string is used as the character " @@ -114,20 +135,39 @@ msgid "" "mangled when the representation is shortened. The default is ``30``." msgstr "" -#: library/reprlib.rst:121 +#: library/reprlib.rst:140 msgid "" "This limit is used to control the size of object types for which no specific " "formatting method is available on the :class:`Repr` object. It is applied in " "a similar manner as :attr:`maxstring`. The default is ``20``." msgstr "" -#: library/reprlib.rst:128 +#: library/reprlib.rst:147 +msgid "" +"If this attribute is set to ``None`` (the default), the output is formatted " +"with no line breaks or indentation, like the standard :func:`repr`. For " +"example:" +msgstr "" + +#: library/reprlib.rst:160 +msgid "" +"If :attr:`~Repr.indent` is set to a string, each recursion level is placed " +"on its own line, indented by that string:" +msgstr "" + +#: library/reprlib.rst:181 +msgid "" +"Setting :attr:`~Repr.indent` to a positive integer value behaves as if it " +"was set to a string with that number of spaces:" +msgstr "" + +#: library/reprlib.rst:207 msgid "" "The equivalent to the built-in :func:`repr` that uses the formatting imposed " "by the instance." msgstr "" -#: library/reprlib.rst:134 +#: library/reprlib.rst:213 msgid "" "Recursive implementation used by :meth:`.repr`. This uses the type of *obj* " "to determine which formatting method to call, passing it *obj* and *level*. " @@ -136,7 +176,7 @@ msgid "" "call." msgstr "" -#: library/reprlib.rst:143 +#: library/reprlib.rst:222 msgid "" "Formatting methods for specific types are implemented as methods with a name " "based on the type name. In the method name, **TYPE** is replaced by ``'_'." @@ -145,11 +185,11 @@ msgid "" "should call ``self.repr1(subobj, level - 1)``." msgstr "" -#: library/reprlib.rst:153 +#: library/reprlib.rst:232 msgid "Subclassing Repr Objects" msgstr "" -#: library/reprlib.rst:155 +#: library/reprlib.rst:234 msgid "" "The use of dynamic dispatching by :meth:`Repr.repr1` allows subclasses of :" "class:`Repr` to add support for additional built-in object types or to " @@ -157,10 +197,10 @@ msgid "" "special support for file objects could be added::" msgstr "" -#: library/reprlib.rst:46 +#: library/reprlib.rst:65 msgid "..." msgstr "" -#: library/reprlib.rst:46 +#: library/reprlib.rst:65 msgid "placeholder" msgstr "" diff --git a/library/runpy.po b/library/runpy.po index 5dedc7426..1c6f94d90 100644 --- a/library/runpy.po +++ b/library/runpy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -76,7 +76,7 @@ msgid "" "overridden by :func:`run_module`." msgstr "" -#: library/runpy.rst:122 +#: library/runpy.rst:127 msgid "" "The special global variables ``__name__``, ``__spec__``, ``__file__``, " "``__cached__``, ``__loader__`` and ``__package__`` are set in the globals " @@ -145,7 +145,13 @@ msgid "" "name``." msgstr "" -#: library/runpy.rst:101 +#: library/runpy.rst:96 +msgid "" +"The setting of ``__cached__``, ``__loader__``, and ``__package__`` are " +"deprecated. See :class:`~importlib.machinery.ModuleSpec` for alternatives." +msgstr "" + +#: library/runpy.rst:106 msgid "" "Execute the code at the named filesystem location and return the resulting " "module globals dictionary. As with a script name supplied to the CPython " @@ -155,7 +161,7 @@ msgid "" "file)." msgstr "" -#: library/runpy.rst:108 +#: library/runpy.rst:113 msgid "" "For a simple script, the specified code is simply executed in a fresh module " "namespace. For a valid :data:`sys.path` entry (typically a zipfile or " @@ -166,7 +172,7 @@ msgid "" "such module at the specified location." msgstr "" -#: library/runpy.rst:116 +#: library/runpy.rst:121 msgid "" "The optional dictionary argument *init_globals* may be used to pre-populate " "the module's globals dictionary before the code is executed. The supplied " @@ -175,13 +181,13 @@ msgid "" "overridden by :func:`run_path`." msgstr "" -#: library/runpy.rst:128 +#: library/runpy.rst:133 msgid "" "``__name__`` is set to *run_name* if this optional argument is not :const:" "`None` and to ``''`` otherwise." msgstr "" -#: library/runpy.rst:131 +#: library/runpy.rst:136 msgid "" "If the supplied path directly references a script file (whether as source or " "as precompiled byte code), then ``__file__`` will be set to the supplied " @@ -189,7 +195,7 @@ msgid "" "will all be set to :const:`None`." msgstr "" -#: library/runpy.rst:136 +#: library/runpy.rst:141 msgid "" "If the supplied path is a reference to a valid :data:`sys.path` entry, then " "``__spec__`` will be set appropriately for the imported :mod:`__main__` " @@ -198,7 +204,7 @@ msgid "" "ref:`set as normal ` based on the module spec." msgstr "" -#: library/runpy.rst:142 +#: library/runpy.rst:147 msgid "" "A number of alterations are also made to the :mod:`sys` module. Firstly, :" "data:`sys.path` may be altered as described above. ``sys.argv[0]`` is " @@ -208,7 +214,7 @@ msgid "" "returns." msgstr "" -#: library/runpy.rst:149 +#: library/runpy.rst:154 msgid "" "Note that, unlike :func:`run_module`, the alterations made to :mod:`sys` are " "not optional in this function as these adjustments are essential to allowing " @@ -217,13 +223,13 @@ msgid "" "serialised with the import lock or delegated to a separate process." msgstr "" -#: library/runpy.rst:156 +#: library/runpy.rst:161 msgid "" ":ref:`using-on-interface-options` for equivalent functionality on the " "command line (``python path/to/script``)." msgstr "" -#: library/runpy.rst:161 +#: library/runpy.rst:166 msgid "" "Updated to take advantage of the module spec feature added by :pep:`451`. " "This allows ``__cached__`` to be set correctly in the case where " @@ -231,38 +237,44 @@ msgid "" "being executed directly." msgstr "" -#: library/runpy.rst:170 +#: library/runpy.rst:172 +msgid "" +"The setting of ``__cached__``, ``__loader__``, and ``__package__`` are " +"deprecated." +msgstr "" + +#: library/runpy.rst:179 msgid ":pep:`338` -- Executing modules as scripts" msgstr "" -#: library/runpy.rst:173 +#: library/runpy.rst:182 msgid "PEP written and implemented by Nick Coghlan." msgstr "" -#: library/runpy.rst:173 +#: library/runpy.rst:182 msgid ":pep:`366` -- Main module explicit relative imports" msgstr "" -#: library/runpy.rst:176 +#: library/runpy.rst:185 msgid ":pep:`451` -- A ModuleSpec Type for the Import System" msgstr "" -#: library/runpy.rst:176 +#: library/runpy.rst:185 msgid "PEP written and implemented by Eric Snow" msgstr "" -#: library/runpy.rst:178 +#: library/runpy.rst:187 msgid ":ref:`using-on-general` - CPython command line details" msgstr "" -#: library/runpy.rst:180 +#: library/runpy.rst:189 msgid "The :func:`importlib.import_module` function" msgstr "" -#: library/runpy.rst:98 +#: library/runpy.rst:103 msgid "module" msgstr "" -#: library/runpy.rst:98 +#: library/runpy.rst:103 msgid "__main__" msgstr "" diff --git a/library/shlex.po b/library/shlex.po index 0414b0d76..3b9bb979a 100644 --- a/library/shlex.po +++ b/library/shlex.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -46,42 +46,36 @@ msgid "" "false." msgstr "" -#: library/shlex.rst:35 +#: library/shlex.rst:33 msgid "" -"Since the :func:`split` function instantiates a :class:`~shlex.shlex` " -"instance, passing ``None`` for *s* will read the string to split from " -"standard input." +"Passing ``None`` for *s* argument now raises an exception, rather than " +"reading :data:`sys.stdin`." msgstr "" #: library/shlex.rst:39 msgid "" -"Passing ``None`` for *s* will raise an exception in future Python versions." -msgstr "" - -#: library/shlex.rst:45 -msgid "" "Concatenate the tokens of the list *split_command* and return a string. This " "function is the inverse of :func:`split`." msgstr "" -#: library/shlex.rst:52 +#: library/shlex.rst:46 msgid "" "The returned value is shell-escaped to protect against injection " "vulnerabilities (see :func:`quote`)." msgstr "" -#: library/shlex.rst:60 +#: library/shlex.rst:54 msgid "" "Return a shell-escaped version of the string *s*. The returned value is a " "string that can safely be used as one token in a shell command line, for " "cases where you cannot use a list." msgstr "" -#: library/shlex.rst:68 +#: library/shlex.rst:62 msgid "The ``shlex`` module is **only designed for Unix shells**." msgstr "" -#: library/shlex.rst:70 +#: library/shlex.rst:64 msgid "" "The :func:`quote` function is not guaranteed to be correct on non-POSIX " "compliant shells or shells from other operating systems such as Windows. " @@ -89,29 +83,29 @@ msgid "" "possibility of a command injection vulnerability." msgstr "" -#: library/shlex.rst:75 +#: library/shlex.rst:69 msgid "" "Consider using functions that pass command arguments with lists such as :" "func:`subprocess.run` with ``shell=False``." msgstr "" -#: library/shlex.rst:78 +#: library/shlex.rst:72 msgid "This idiom would be unsafe:" msgstr "" -#: library/shlex.rst:85 +#: library/shlex.rst:79 msgid ":func:`quote` lets you plug the security hole:" msgstr "" -#: library/shlex.rst:95 +#: library/shlex.rst:89 msgid "The quoting is compatible with UNIX shells and with :func:`split`:" msgstr "" -#: library/shlex.rst:107 +#: library/shlex.rst:101 msgid "The :mod:`shlex` module defines the following class:" msgstr "" -#: library/shlex.rst:112 +#: library/shlex.rst:106 msgid "" "A :class:`~shlex.shlex` instance or subclass instance is a lexical analyzer " "object. The initialization argument, if present, specifies where to read " @@ -138,28 +132,28 @@ msgid "" "creation and can't be modified later." msgstr "" -#: library/shlex.rst:137 +#: library/shlex.rst:131 msgid "The *punctuation_chars* parameter was added." msgstr "" -#: library/shlex.rst:142 +#: library/shlex.rst:136 msgid "Module :mod:`configparser`" msgstr "" -#: library/shlex.rst:143 +#: library/shlex.rst:137 msgid "" "Parser for configuration files similar to the Windows :file:`.ini` files." msgstr "" -#: library/shlex.rst:149 +#: library/shlex.rst:143 msgid "shlex Objects" msgstr "" -#: library/shlex.rst:151 +#: library/shlex.rst:145 msgid "A :class:`~shlex.shlex` instance has the following methods:" msgstr "" -#: library/shlex.rst:156 +#: library/shlex.rst:150 msgid "" "Return a token. If tokens have been stacked using :meth:`push_token`, pop a " "token off the stack. Otherwise, read one from the input stream. If reading " @@ -167,25 +161,25 @@ msgid "" "string (``''``) in non-POSIX mode, and ``None`` in POSIX mode)." msgstr "" -#: library/shlex.rst:164 +#: library/shlex.rst:158 msgid "Push the argument onto the token stack." msgstr "" -#: library/shlex.rst:169 +#: library/shlex.rst:163 msgid "" "Read a raw token. Ignore the pushback stack, and do not interpret source " "requests. (This is not ordinarily a useful entry point, and is documented " "here only for the sake of completeness.)" msgstr "" -#: library/shlex.rst:176 +#: library/shlex.rst:170 msgid "" "When :class:`~shlex.shlex` detects a source request (see :attr:`source` " "below) this method is given the following token as argument, and expected to " "return a tuple consisting of a filename and an open file-like object." msgstr "" -#: library/shlex.rst:180 +#: library/shlex.rst:174 msgid "" "Normally, this method first strips any quotes off the argument. If the " "result is an absolute pathname, or there was no previous source request in " @@ -196,7 +190,7 @@ msgid "" "preprocessor handles ``#include \"file.h\"``)." msgstr "" -#: library/shlex.rst:188 +#: library/shlex.rst:182 msgid "" "The result of the manipulations is treated as a filename, and returned as " "the first component of the tuple, with :func:`open` called on it to yield " @@ -204,7 +198,7 @@ msgid "" "in instance initialization!)" msgstr "" -#: library/shlex.rst:193 +#: library/shlex.rst:187 msgid "" "This hook is exposed so that you can use it to implement directory search " "paths, addition of file extensions, and other namespace hacks. There is no " @@ -212,26 +206,26 @@ msgid "" "IOBase.close` method of the sourced input stream when it returns EOF." msgstr "" -#: library/shlex.rst:199 +#: library/shlex.rst:193 msgid "" "For more explicit control of source stacking, use the :meth:`push_source` " "and :meth:`pop_source` methods." msgstr "" -#: library/shlex.rst:205 +#: library/shlex.rst:199 msgid "" "Push an input source stream onto the input stack. If the filename argument " "is specified it will later be available for use in error messages. This is " "the same method used internally by the :meth:`sourcehook` method." msgstr "" -#: library/shlex.rst:212 +#: library/shlex.rst:206 msgid "" "Pop the last-pushed input source from the input stack. This is the same " "method used internally when the lexer reaches EOF on a stacked input stream." msgstr "" -#: library/shlex.rst:218 +#: library/shlex.rst:212 msgid "" "This method generates an error message leader in the format of a Unix C " "compiler error label; the format is ``'\"%s\", line %d: '``, where the " @@ -240,27 +234,27 @@ msgid "" "override these)." msgstr "" -#: library/shlex.rst:223 +#: library/shlex.rst:217 msgid "" "This convenience is provided to encourage :mod:`shlex` users to generate " "error messages in the standard, parseable format understood by Emacs and " "other Unix tools." msgstr "" -#: library/shlex.rst:227 +#: library/shlex.rst:221 msgid "" "Instances of :class:`~shlex.shlex` subclasses have some public instance " "variables which either control lexical analysis or can be used for debugging:" msgstr "" -#: library/shlex.rst:233 +#: library/shlex.rst:227 msgid "" "The string of characters that are recognized as comment beginners. All " "characters from the comment beginner to end of line are ignored. Includes " "just ``'#'`` by default." msgstr "" -#: library/shlex.rst:240 +#: library/shlex.rst:234 msgid "" "The string of characters that will accumulate into multi-character tokens. " "By default, includes all ASCII alphanumerics and underscore. In POSIX mode, " @@ -273,20 +267,20 @@ msgid "" "effect." msgstr "" -#: library/shlex.rst:253 +#: library/shlex.rst:247 msgid "" "Characters that will be considered whitespace and skipped. Whitespace " "bounds tokens. By default, includes space, tab, linefeed and carriage-" "return." msgstr "" -#: library/shlex.rst:259 +#: library/shlex.rst:253 msgid "" "Characters that will be considered as escape. This will be only used in " "POSIX mode, and includes just ``'\\'`` by default." msgstr "" -#: library/shlex.rst:265 +#: library/shlex.rst:259 msgid "" "Characters that will be considered string quotes. The token accumulates " "until the same quote is encountered again (thus, different quote types " @@ -294,14 +288,14 @@ msgid "" "double quotes." msgstr "" -#: library/shlex.rst:272 +#: library/shlex.rst:266 msgid "" "Characters in :attr:`quotes` that will interpret escape characters defined " "in :attr:`escape`. This is only used in POSIX mode, and includes just " "``'\"'`` by default." msgstr "" -#: library/shlex.rst:279 +#: library/shlex.rst:273 msgid "" "If ``True``, tokens will only be split in whitespaces. This is useful, for " "example, for parsing command lines with :class:`~shlex.shlex`, getting " @@ -310,26 +304,26 @@ msgid "" "those characters." msgstr "" -#: library/shlex.rst:285 +#: library/shlex.rst:279 msgid "" "The :attr:`punctuation_chars` attribute was made compatible with the :attr:" "`whitespace_split` attribute." msgstr "" -#: library/shlex.rst:292 +#: library/shlex.rst:286 msgid "" "The name of the current input file, as initially set at class instantiation " "time or stacked by later source requests. It may be useful to examine this " "when constructing error messages." msgstr "" -#: library/shlex.rst:299 +#: library/shlex.rst:293 msgid "" "The input stream from which this :class:`~shlex.shlex` instance is reading " "characters." msgstr "" -#: library/shlex.rst:305 +#: library/shlex.rst:299 msgid "" "This attribute is ``None`` by default. If you assign a string to it, that " "string will be recognized as a lexical-level inclusion request similar to " @@ -341,29 +335,29 @@ msgid "" "deep." msgstr "" -#: library/shlex.rst:316 +#: library/shlex.rst:310 msgid "" "If this attribute is numeric and ``1`` or more, a :class:`~shlex.shlex` " "instance will print verbose progress output on its behavior. If you need to " "use this, you can read the module source code to learn the details." msgstr "" -#: library/shlex.rst:323 +#: library/shlex.rst:317 msgid "Source line number (count of newlines seen so far plus one)." msgstr "" -#: library/shlex.rst:328 +#: library/shlex.rst:322 msgid "" "The token buffer. It may be useful to examine this when catching exceptions." msgstr "" -#: library/shlex.rst:333 +#: library/shlex.rst:327 msgid "" "Token used to determine end of file. This will be set to the empty string " "(``''``), in non-POSIX mode, and to ``None`` in POSIX mode." msgstr "" -#: library/shlex.rst:339 +#: library/shlex.rst:333 msgid "" "A read-only property. Characters that will be considered punctuation. Runs " "of punctuation characters will be returned as a single token. However, note " @@ -372,39 +366,39 @@ msgid "" "by shells." msgstr "" -#: library/shlex.rst:350 +#: library/shlex.rst:344 msgid "Parsing Rules" msgstr "" -#: library/shlex.rst:352 +#: library/shlex.rst:346 msgid "" "When operating in non-POSIX mode, :class:`~shlex.shlex` will try to obey to " "the following rules." msgstr "" -#: library/shlex.rst:355 +#: library/shlex.rst:349 msgid "" "Quote characters are not recognized within words (``Do\"Not\"Separate`` is " "parsed as the single word ``Do\"Not\"Separate``);" msgstr "" -#: library/shlex.rst:358 +#: library/shlex.rst:352 msgid "Escape characters are not recognized;" msgstr "" -#: library/shlex.rst:360 +#: library/shlex.rst:354 msgid "" "Enclosing characters in quotes preserve the literal value of all characters " "within the quotes;" msgstr "" -#: library/shlex.rst:363 +#: library/shlex.rst:357 msgid "" "Closing quotes separate words (``\"Do\"Separate`` is parsed as ``\"Do\"`` " "and ``Separate``);" msgstr "" -#: library/shlex.rst:366 +#: library/shlex.rst:360 msgid "" "If :attr:`~shlex.whitespace_split` is ``False``, any character not declared " "to be a word character, whitespace, or a quote will be returned as a single-" @@ -412,40 +406,40 @@ msgid "" "words in whitespaces;" msgstr "" -#: library/shlex.rst:371 +#: library/shlex.rst:365 msgid "EOF is signaled with an empty string (``''``);" msgstr "" -#: library/shlex.rst:373 +#: library/shlex.rst:367 msgid "It's not possible to parse empty strings, even if quoted." msgstr "" -#: library/shlex.rst:375 +#: library/shlex.rst:369 msgid "" "When operating in POSIX mode, :class:`~shlex.shlex` will try to obey to the " "following parsing rules." msgstr "" -#: library/shlex.rst:378 +#: library/shlex.rst:372 msgid "" "Quotes are stripped out, and do not separate words " "(``\"Do\"Not\"Separate\"`` is parsed as the single word ``DoNotSeparate``);" msgstr "" -#: library/shlex.rst:381 +#: library/shlex.rst:375 msgid "" "Non-quoted escape characters (e.g. ``'\\'``) preserve the literal value of " "the next character that follows;" msgstr "" -#: library/shlex.rst:384 +#: library/shlex.rst:378 msgid "" "Enclosing characters in quotes which are not part of :attr:`~shlex." "escapedquotes` (e.g. ``\"'\"``) preserve the literal value of all characters " "within the quotes;" msgstr "" -#: library/shlex.rst:388 +#: library/shlex.rst:382 msgid "" "Enclosing characters in quotes which are part of :attr:`~shlex." "escapedquotes` (e.g. ``'\"'``) preserves the literal value of all characters " @@ -455,19 +449,19 @@ msgid "" "escape character will be considered a normal character." msgstr "" -#: library/shlex.rst:396 +#: library/shlex.rst:390 msgid "EOF is signaled with a :const:`None` value;" msgstr "" -#: library/shlex.rst:398 +#: library/shlex.rst:392 msgid "Quoted empty strings (``''``) are allowed." msgstr "" -#: library/shlex.rst:403 +#: library/shlex.rst:397 msgid "Improved Compatibility with Shells" msgstr "" -#: library/shlex.rst:407 +#: library/shlex.rst:401 msgid "" "The :class:`shlex` class provides compatibility with the parsing performed " "by common Unix shells like ``bash``, ``dash``, and ``sh``. To take " @@ -482,20 +476,20 @@ msgid "" "following snippet:" msgstr "" -#: library/shlex.rst:433 +#: library/shlex.rst:427 msgid "" "Of course, tokens will be returned which are not valid for shells, and " "you'll need to implement your own error checks on the returned tokens." msgstr "" -#: library/shlex.rst:436 +#: library/shlex.rst:430 msgid "" "Instead of passing ``True`` as the value for the punctuation_chars " "parameter, you can pass a string with specific characters, which will be " "used to determine which characters constitute punctuation. For example::" msgstr "" -#: library/shlex.rst:445 +#: library/shlex.rst:439 msgid "" "When ``punctuation_chars`` is specified, the :attr:`~shlex.wordchars` " "attribute is augmented with the characters ``~-./*?=``. That is because " @@ -503,7 +497,7 @@ msgid "" "line arguments (e.g. ``--color=auto``). Hence::" msgstr "" -#: library/shlex.rst:456 +#: library/shlex.rst:450 msgid "" "However, to match the shell as closely as possible, it is recommended to " "always use ``posix`` and :attr:`~shlex.whitespace_split` when using :attr:" @@ -511,7 +505,7 @@ msgid "" "entirely." msgstr "" -#: library/shlex.rst:461 +#: library/shlex.rst:455 msgid "" "For best effect, ``punctuation_chars`` should be set in conjunction with " "``posix=True``. (Note that ``posix=False`` is the default for :class:`~shlex." diff --git a/library/shutil.po b/library/shutil.po index a72abeeed..2c955e2b9 100644 --- a/library/shutil.po +++ b/library/shutil.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -108,7 +108,7 @@ msgid "" "subclass of the latter, this change is backward compatible." msgstr "" -#: library/shutil.rst:185 library/shutil.rst:287 library/shutil.rst:381 +#: library/shutil.rst:185 library/shutil.rst:287 library/shutil.rst:387 msgid "" "Platform-specific fast-copy syscalls may be used internally in order to copy " "the file more efficiently. See :ref:`shutil-platform-dependent-efficient-" @@ -365,8 +365,8 @@ msgid "" "Delete an entire directory tree; *path* must point to a directory (but not a " "symbolic link to a directory). If *ignore_errors* is true, errors resulting " "from failed removals will be ignored; if false or omitted, such errors are " -"handled by calling a handler specified by *onerror* or, if that is omitted, " -"they raise an exception." +"handled by calling a handler specified by *onexc* or *onerror* or, if both " +"are omitted, exceptions are propagated to the caller." msgstr "" #: library/shutil.rst:305 @@ -388,8 +388,8 @@ msgstr "" #: library/shutil.rst:318 msgid "" -"If *onerror* is provided, it must be a callable that accepts three " -"parameters: *function*, *path*, and *excinfo*." +"If *onexc* is provided, it must be a callable that accepts three parameters: " +"*function*, *path*, and *excinfo*." msgstr "" #: library/shutil.rst:321 @@ -397,53 +397,63 @@ msgid "" "The first parameter, *function*, is the function which raised the exception; " "it depends on the platform and implementation. The second parameter, " "*path*, will be the path name passed to *function*. The third parameter, " -"*excinfo*, will be the exception information returned by :func:`sys." -"exc_info`. Exceptions raised by *onerror* will not be caught." +"*excinfo*, is the exception that was raised. Exceptions raised by *onexc* " +"will not be caught." msgstr "" #: library/shutil.rst:327 msgid "" +"The deprecated *onerror* is similar to *onexc*, except that the third " +"parameter it receives is the tuple returned from :func:`sys.exc_info`." +msgstr "" + +#: library/shutil.rst:330 +msgid "" "Raises an :ref:`auditing event ` ``shutil.rmtree`` with arguments " "``path``, ``dir_fd``." msgstr "" -#: library/shutil.rst:329 +#: library/shutil.rst:332 msgid "" "Added a symlink attack resistant version that is used automatically if " "platform supports fd-based functions." msgstr "" -#: library/shutil.rst:333 +#: library/shutil.rst:336 msgid "" "On Windows, will no longer delete the contents of a directory junction " "before removing the junction." msgstr "" -#: library/shutil.rst:337 +#: library/shutil.rst:340 msgid "The *dir_fd* parameter." msgstr "" -#: library/shutil.rst:342 +#: library/shutil.rst:343 +msgid "Added the *onexc* parameter, deprecated *onerror*." +msgstr "" + +#: library/shutil.rst:348 msgid "" "Indicates whether the current platform and implementation provides a symlink " "attack resistant version of :func:`rmtree`. Currently this is only true for " "platforms supporting fd-based directory access functions." msgstr "" -#: library/shutil.rst:351 +#: library/shutil.rst:357 msgid "" "Recursively move a file or directory (*src*) to another location (*dst*) and " "return the destination." msgstr "" -#: library/shutil.rst:354 +#: library/shutil.rst:360 msgid "" "If the destination is an existing directory, then *src* is moved inside that " "directory. If the destination already exists but is not a directory, it may " "be overwritten depending on :func:`os.rename` semantics." msgstr "" -#: library/shutil.rst:358 +#: library/shutil.rst:364 msgid "" "If the destination is on the current filesystem, then :func:`os.rename` is " "used. Otherwise, *src* is copied to *dst* using *copy_function* and then " @@ -451,7 +461,7 @@ msgid "" "will be created in or as *dst* and *src* will be removed." msgstr "" -#: library/shutil.rst:363 +#: library/shutil.rst:369 msgid "" "If *copy_function* is given, it must be a callable that takes two arguments " "*src* and *dst*, and will be used to copy *src* to *dst* if :func:`os." @@ -462,119 +472,144 @@ msgid "" "of not copying any of the metadata." msgstr "" -#: library/shutil.rst:371 +#: library/shutil.rst:377 msgid "" "Raises an :ref:`auditing event ` ``shutil.move`` with arguments " "``src``, ``dst``." msgstr "" -#: library/shutil.rst:373 +#: library/shutil.rst:379 msgid "" "Added explicit symlink handling for foreign filesystems, thus adapting it to " "the behavior of GNU's :program:`mv`. Now returns *dst*." msgstr "" -#: library/shutil.rst:378 +#: library/shutil.rst:384 msgid "Added the *copy_function* keyword argument." msgstr "" -#: library/shutil.rst:386 +#: library/shutil.rst:392 msgid "Accepts a :term:`path-like object` for both *src* and *dst*." msgstr "" -#: library/shutil.rst:391 +#: library/shutil.rst:397 msgid "" "Return disk usage statistics about the given path as a :term:`named tuple` " "with the attributes *total*, *used* and *free*, which are the amount of " "total, used and free space, in bytes. *path* may be a file or a directory." msgstr "" -#: library/shutil.rst:398 +#: library/shutil.rst:404 msgid "" "On Unix filesystems, *path* must point to a path within a **mounted** " "filesystem partition. On those platforms, CPython doesn't attempt to " "retrieve disk usage information from non-mounted filesystems." msgstr "" -#: library/shutil.rst:404 +#: library/shutil.rst:410 msgid "On Windows, *path* can now be a file or directory." msgstr "" -#: library/shutil.rst:407 +#: library/shutil.rst:413 msgid ":ref:`Availability `: Unix, Windows." msgstr "" -#: library/shutil.rst:411 +#: library/shutil.rst:417 msgid "Change owner *user* and/or *group* of the given *path*." msgstr "" -#: library/shutil.rst:413 +#: library/shutil.rst:419 msgid "" "*user* can be a system user name or a uid; the same applies to *group*. At " "least one argument is required." msgstr "" -#: library/shutil.rst:416 +#: library/shutil.rst:422 msgid "See also :func:`os.chown`, the underlying function." msgstr "" -#: library/shutil.rst:418 +#: library/shutil.rst:424 msgid "" "Raises an :ref:`auditing event ` ``shutil.chown`` with arguments " "``path``, ``user``, ``group``." msgstr "" -#: library/shutil.rst:420 +#: library/shutil.rst:426 msgid ":ref:`Availability `: Unix." msgstr "" -#: library/shutil.rst:427 +#: library/shutil.rst:433 msgid "" "Return the path to an executable which would be run if the given *cmd* was " "called. If no *cmd* would be called, return ``None``." msgstr "" -#: library/shutil.rst:430 +#: library/shutil.rst:436 msgid "" "*mode* is a permission mask passed to :func:`os.access`, by default " "determining if the file exists and executable." msgstr "" -#: library/shutil.rst:433 +#: library/shutil.rst:439 msgid "" "When no *path* is specified, the results of :func:`os.environ` are used, " "returning either the \"PATH\" value or a fallback of :data:`os.defpath`." msgstr "" -#: library/shutil.rst:436 +#: library/shutil.rst:442 msgid "" -"On Windows, the current directory is always prepended to the *path* whether " -"or not you use the default or provide your own, which is the behavior the " -"command shell uses when finding executables. Additionally, when finding the " -"*cmd* in the *path*, the ``PATHEXT`` environment variable is checked. For " -"example, if you call ``shutil.which(\"python\")``, :func:`which` will search " -"``PATHEXT`` to know that it should look for ``python.exe`` within the *path* " -"directories. For example, on Windows::" +"On Windows, the current directory is prepended to the *path* if *mode* does " +"not include ``os.X_OK``. When the *mode* does include ``os.X_OK``, the " +"Windows API ``NeedCurrentDirectoryForExePathW`` will be consulted to " +"determine if the current directory should be prepended to *path*. To avoid " +"consulting the current working directory for executables: set the " +"environment variable ``NoDefaultCurrentDirectoryInExePath``." msgstr "" #: library/shutil.rst:449 msgid "" +"Also on Windows, the ``PATHEXT`` variable is used to resolve commands that " +"may not already include an extension. For example, if you call ``shutil." +"which(\"python\")``, :func:`which` will search ``PATHEXT`` to know that it " +"should look for ``python.exe`` within the *path* directories. For example, " +"on Windows::" +msgstr "" + +#: library/shutil.rst:458 +msgid "" +"This is also applied when *cmd* is a path that contains a directory " +"component::" +msgstr "" + +#: library/shutil.rst:466 +msgid "" "The :class:`bytes` type is now accepted. If *cmd* type is :class:`bytes`, " "the result type is also :class:`bytes`." msgstr "" -#: library/shutil.rst:455 +#: library/shutil.rst:470 +msgid "" +"On Windows, the current directory is no longer prepended to the search path " +"if *mode* includes ``os.X_OK`` and WinAPI " +"``NeedCurrentDirectoryForExePathW(cmd)`` is false, else the current " +"directory is prepended even if it is already in the search path; ``PATHEXT`` " +"is used now even when *cmd* includes a directory component or ends with an " +"extension that is in ``PATHEXT``; and filenames that have no extension can " +"now be found." +msgstr "" + +#: library/shutil.rst:481 msgid "" "This exception collects exceptions that are raised during a multi-file " "operation. For :func:`copytree`, the exception argument is a list of 3-" "tuples (*srcname*, *dstname*, *exception*)." msgstr "" -#: library/shutil.rst:462 +#: library/shutil.rst:488 msgid "Platform-dependent efficient copy operations" msgstr "" -#: library/shutil.rst:464 +#: library/shutil.rst:490 msgid "" "Starting from Python 3.8, all functions involving a file copy (:func:" "`copyfile`, :func:`~shutil.copy`, :func:`copy2`, :func:`copytree`, and :func:" @@ -584,77 +619,77 @@ msgid "" "buffers in Python as in \"``outfd.write(infd.read())``\"." msgstr "" -#: library/shutil.rst:472 +#: library/shutil.rst:498 msgid "On macOS `fcopyfile`_ is used to copy the file content (not metadata)." msgstr "" -#: library/shutil.rst:474 +#: library/shutil.rst:500 msgid "On Linux :func:`os.sendfile` is used." msgstr "" -#: library/shutil.rst:476 +#: library/shutil.rst:502 msgid "" "On Windows :func:`shutil.copyfile` uses a bigger default buffer size (1 MiB " "instead of 64 KiB) and a :func:`memoryview`-based variant of :func:`shutil." "copyfileobj` is used." msgstr "" -#: library/shutil.rst:480 +#: library/shutil.rst:506 msgid "" "If the fast-copy operation fails and no data was written in the destination " "file then shutil will silently fallback on using less efficient :func:" "`copyfileobj` function internally." msgstr "" -#: library/shutil.rst:489 +#: library/shutil.rst:515 msgid "copytree example" msgstr "" -#: library/shutil.rst:491 +#: library/shutil.rst:517 msgid "An example that uses the :func:`ignore_patterns` helper::" msgstr "" -#: library/shutil.rst:497 +#: library/shutil.rst:523 msgid "" "This will copy everything except ``.pyc`` files and files or directories " "whose name starts with ``tmp``." msgstr "" -#: library/shutil.rst:500 +#: library/shutil.rst:526 msgid "Another example that uses the *ignore* argument to add a logging call::" msgstr "" -#: library/shutil.rst:515 +#: library/shutil.rst:541 msgid "rmtree example" msgstr "" -#: library/shutil.rst:517 +#: library/shutil.rst:543 msgid "" "This example shows how to remove a directory tree on Windows where some of " -"the files have their read-only bit set. It uses the onerror callback to " -"clear the readonly bit and reattempt the remove. Any subsequent failure will " +"the files have their read-only bit set. It uses the onexc callback to clear " +"the readonly bit and reattempt the remove. Any subsequent failure will " "propagate. ::" msgstr "" -#: library/shutil.rst:535 +#: library/shutil.rst:561 msgid "Archiving operations" msgstr "" -#: library/shutil.rst:539 +#: library/shutil.rst:565 msgid "Added support for the *xztar* format." msgstr "" -#: library/shutil.rst:543 +#: library/shutil.rst:569 msgid "" "High-level utilities to create and read compressed and archived files are " "also provided. They rely on the :mod:`zipfile` and :mod:`tarfile` modules." msgstr "" -#: library/shutil.rst:548 +#: library/shutil.rst:574 msgid "Create an archive file (such as zip or tar) and return its name." msgstr "" -#: library/shutil.rst:550 +#: library/shutil.rst:576 msgid "" "*base_name* is the name of the file to create, including the path, minus any " "format-specific extension. *format* is the archive format: one of " @@ -663,14 +698,14 @@ msgid "" "available), or \"xztar\" (if the :mod:`lzma` module is available)." msgstr "" -#: library/shutil.rst:556 +#: library/shutil.rst:582 msgid "" "*root_dir* is a directory that will be the root directory of the archive, " "all paths in the archive will be relative to it; for example, we typically " "chdir into *root_dir* before creating the archive." msgstr "" -#: library/shutil.rst:560 +#: library/shutil.rst:586 msgid "" "*base_dir* is the directory where we start archiving from; i.e. *base_dir* " "will be the common prefix of all files and directories in the archive. " @@ -678,99 +713,100 @@ msgid "" "example-with-basedir` for how to use *base_dir* and *root_dir* together." msgstr "" -#: library/shutil.rst:566 +#: library/shutil.rst:592 msgid "*root_dir* and *base_dir* both default to the current directory." msgstr "" -#: library/shutil.rst:568 +#: library/shutil.rst:594 msgid "" "If *dry_run* is true, no archive is created, but the operations that would " "be executed are logged to *logger*." msgstr "" -#: library/shutil.rst:571 +#: library/shutil.rst:597 msgid "" "*owner* and *group* are used when creating a tar archive. By default, uses " "the current owner and group." msgstr "" -#: library/shutil.rst:574 +#: library/shutil.rst:600 msgid "" "*logger* must be an object compatible with :pep:`282`, usually an instance " "of :class:`logging.Logger`." msgstr "" -#: library/shutil.rst:577 +#: library/shutil.rst:603 msgid "The *verbose* argument is unused and deprecated." msgstr "" -#: library/shutil.rst:579 +#: library/shutil.rst:605 msgid "" "Raises an :ref:`auditing event ` ``shutil.make_archive`` with " "arguments ``base_name``, ``format``, ``root_dir``, ``base_dir``." msgstr "" -#: library/shutil.rst:583 +#: library/shutil.rst:609 msgid "" "This function is not thread-safe when custom archivers registered with :func:" -"`register_archive_format` are used. In this case it temporarily changes the " -"current working directory of the process to perform archiving." +"`register_archive_format` do not support the *root_dir* argument. In this " +"case it temporarily changes the current working directory of the process to " +"*root_dir* to perform archiving." msgstr "" -#: library/shutil.rst:588 +#: library/shutil.rst:615 msgid "" "The modern pax (POSIX.1-2001) format is now used instead of the legacy GNU " "format for archives created with ``format=\"tar\"``." msgstr "" -#: library/shutil.rst:592 +#: library/shutil.rst:619 msgid "" "This function is now made thread-safe during creation of standard ``.zip`` " "and tar archives." msgstr "" -#: library/shutil.rst:598 +#: library/shutil.rst:625 msgid "" "Return a list of supported formats for archiving. Each element of the " "returned sequence is a tuple ``(name, description)``." msgstr "" -#: library/shutil.rst:704 +#: library/shutil.rst:739 msgid "By default :mod:`shutil` provides these formats:" msgstr "" -#: library/shutil.rst:603 +#: library/shutil.rst:630 msgid "*zip*: ZIP file (if the :mod:`zlib` module is available)." msgstr "" -#: library/shutil.rst:604 +#: library/shutil.rst:631 msgid "" "*tar*: Uncompressed tar file. Uses POSIX.1-2001 pax format for new archives." msgstr "" -#: library/shutil.rst:709 +#: library/shutil.rst:744 msgid "*gztar*: gzip'ed tar-file (if the :mod:`zlib` module is available)." msgstr "" -#: library/shutil.rst:710 +#: library/shutil.rst:745 msgid "*bztar*: bzip2'ed tar-file (if the :mod:`bz2` module is available)." msgstr "" -#: library/shutil.rst:711 +#: library/shutil.rst:746 msgid "*xztar*: xz'ed tar-file (if the :mod:`lzma` module is available)." msgstr "" -#: library/shutil.rst:609 +#: library/shutil.rst:636 msgid "" "You can register new formats or provide your own archiver for any existing " "formats, by using :func:`register_archive_format`." msgstr "" -#: library/shutil.rst:615 +#: library/shutil.rst:642 msgid "Register an archiver for the format *name*." msgstr "" -#: library/shutil.rst:617 +#: library/shutil.rst:644 msgid "" "*function* is the callable that will be used to unpack archives. The " "callable will receive the *base_name* of the file to create, followed by the " @@ -779,33 +815,46 @@ msgid "" "*dry_run* and *logger* (as passed in :func:`make_archive`)." msgstr "" -#: library/shutil.rst:623 +#: library/shutil.rst:650 +msgid "" +"If *function* has the custom attribute ``function.supports_root_dir`` set to " +"``True``, the *root_dir* argument is passed as a keyword argument. Otherwise " +"the current working directory of the process is temporarily changed to " +"*root_dir* before calling *function*. In this case :func:`make_archive` is " +"not thread-safe." +msgstr "" + +#: library/shutil.rst:656 msgid "" "If given, *extra_args* is a sequence of ``(name, value)`` pairs that will be " "used as extra keywords arguments when the archiver callable is used." msgstr "" -#: library/shutil.rst:626 +#: library/shutil.rst:659 msgid "" "*description* is used by :func:`get_archive_formats` which returns the list " "of archivers. Defaults to an empty string." msgstr "" -#: library/shutil.rst:632 +#: library/shutil.rst:662 +msgid "Added support for functions supporting the *root_dir* argument." +msgstr "" + +#: library/shutil.rst:668 msgid "Remove the archive format *name* from the list of supported formats." msgstr "" -#: library/shutil.rst:637 +#: library/shutil.rst:673 msgid "Unpack an archive. *filename* is the full path of the archive." msgstr "" -#: library/shutil.rst:639 +#: library/shutil.rst:675 msgid "" "*extract_dir* is the name of the target directory where the archive is " "unpacked. If not provided, the current working directory is used." msgstr "" -#: library/shutil.rst:642 +#: library/shutil.rst:678 msgid "" "*format* is the archive format: one of \"zip\", \"tar\", \"gztar\", " "\"bztar\", or \"xztar\". Or any other format registered with :func:" @@ -814,23 +863,23 @@ msgid "" "that extension. In case none is found, a :exc:`ValueError` is raised." msgstr "" -#: library/shutil.rst:649 +#: library/shutil.rst:685 msgid "" -"The keyword-only *filter* argument, which was added in Python 3.11.4, is " -"passed to the underlying unpacking function. For zip files, *filter* is not " -"accepted. For tar files, it is recommended to set it to ``'data'``, unless " -"using features specific to tar and UNIX-like filesystems. (See :ref:`tarfile-" -"extraction-filter` for details.) The ``'data'`` filter will become the " -"default for tar files in Python 3.14." +"The keyword-only *filter* argument is passed to the underlying unpacking " +"function. For zip files, *filter* is not accepted. For tar files, it is " +"recommended to set it to ``'data'``, unless using features specific to tar " +"and UNIX-like filesystems. (See :ref:`tarfile-extraction-filter` for " +"details.) The ``'data'`` filter will become the default for tar files in " +"Python 3.14." msgstr "" -#: library/shutil.rst:658 +#: library/shutil.rst:693 msgid "" "Raises an :ref:`auditing event ` ``shutil.unpack_archive`` with " "arguments ``filename``, ``extract_dir``, ``format``." msgstr "" -#: library/shutil.rst:662 +#: library/shutil.rst:697 msgid "" "Never extract archives from untrusted sources without prior inspection. It " "is possible that files are created outside of the path specified in the " @@ -838,138 +887,138 @@ msgid "" "with \"/\" or filenames with two dots \"..\"." msgstr "" -#: library/shutil.rst:667 +#: library/shutil.rst:702 msgid "Accepts a :term:`path-like object` for *filename* and *extract_dir*." msgstr "" -#: library/shutil.rst:670 +#: library/shutil.rst:705 msgid "Added the *filter* argument." msgstr "" -#: library/shutil.rst:675 +#: library/shutil.rst:710 msgid "" "Registers an unpack format. *name* is the name of the format and " "*extensions* is a list of extensions corresponding to the format, like ``." "zip`` for Zip files." msgstr "" -#: library/shutil.rst:679 +#: library/shutil.rst:714 msgid "" "*function* is the callable that will be used to unpack archives. The " "callable will receive:" msgstr "" -#: library/shutil.rst:682 +#: library/shutil.rst:717 msgid "the path of the archive, as a positional argument;" msgstr "" -#: library/shutil.rst:683 +#: library/shutil.rst:718 msgid "" "the directory the archive must be extracted to, as a positional argument;" msgstr "" -#: library/shutil.rst:684 +#: library/shutil.rst:719 msgid "" "possibly a *filter* keyword argument, if it was given to :func:" "`unpack_archive`;" msgstr "" -#: library/shutil.rst:686 +#: library/shutil.rst:721 msgid "" "additional keyword arguments, specified by *extra_args* as a sequence of " "``(name, value)`` tuples." msgstr "" -#: library/shutil.rst:689 +#: library/shutil.rst:724 msgid "" "*description* can be provided to describe the format, and will be returned " "by the :func:`get_unpack_formats` function." msgstr "" -#: library/shutil.rst:695 +#: library/shutil.rst:730 msgid "Unregister an unpack format. *name* is the name of the format." msgstr "" -#: library/shutil.rst:700 +#: library/shutil.rst:735 msgid "" "Return a list of all registered formats for unpacking. Each element of the " "returned sequence is a tuple ``(name, extensions, description)``." msgstr "" -#: library/shutil.rst:706 +#: library/shutil.rst:741 msgid "" "*zip*: ZIP file (unpacking compressed files works only if the corresponding " "module is available)." msgstr "" -#: library/shutil.rst:708 +#: library/shutil.rst:743 msgid "*tar*: uncompressed tar file." msgstr "" -#: library/shutil.rst:713 +#: library/shutil.rst:748 msgid "" "You can register new formats or provide your own unpacker for any existing " "formats, by using :func:`register_unpack_format`." msgstr "" -#: library/shutil.rst:720 +#: library/shutil.rst:755 msgid "Archiving example" msgstr "" -#: library/shutil.rst:722 +#: library/shutil.rst:757 msgid "" "In this example, we create a gzip'ed tar-file archive containing all files " "found in the :file:`.ssh` directory of the user::" msgstr "" -#: library/shutil.rst:732 +#: library/shutil.rst:767 msgid "The resulting archive contains:" msgstr "" -#: library/shutil.rst:750 +#: library/shutil.rst:785 msgid "Archiving example with *base_dir*" msgstr "" -#: library/shutil.rst:752 +#: library/shutil.rst:787 msgid "" "In this example, similar to the `one above `_, we " "show how to use :func:`make_archive`, but this time with the usage of " "*base_dir*. We now have the following directory structure:" msgstr "" -#: library/shutil.rst:766 +#: library/shutil.rst:801 msgid "" "In the final archive, :file:`please_add.txt` should be included, but :file:" "`do_not_add.txt` should not. Therefore we use the following::" msgstr "" -#: library/shutil.rst:780 +#: library/shutil.rst:815 msgid "Listing the files in the resulting archive gives us:" msgstr "" -#: library/shutil.rst:790 +#: library/shutil.rst:825 msgid "Querying the size of the output terminal" msgstr "" -#: library/shutil.rst:794 +#: library/shutil.rst:829 msgid "Get the size of the terminal window." msgstr "" -#: library/shutil.rst:796 +#: library/shutil.rst:831 msgid "" "For each of the two dimensions, the environment variable, ``COLUMNS`` and " "``LINES`` respectively, is checked. If the variable is defined and the value " "is a positive integer, it is used." msgstr "" -#: library/shutil.rst:800 +#: library/shutil.rst:835 msgid "" "When ``COLUMNS`` or ``LINES`` is not defined, which is the common case, the " "terminal connected to :data:`sys.__stdout__` is queried by invoking :func:" "`os.get_terminal_size`." msgstr "" -#: library/shutil.rst:804 +#: library/shutil.rst:839 msgid "" "If the terminal size cannot be successfully queried, either because the " "system doesn't support querying, or because we are not connected to a " @@ -978,17 +1027,17 @@ msgid "" "emulators." msgstr "" -#: library/shutil.rst:810 +#: library/shutil.rst:845 msgid "The value returned is a named tuple of type :class:`os.terminal_size`." msgstr "" -#: library/shutil.rst:812 +#: library/shutil.rst:847 msgid "" "See also: The Single UNIX Specification, Version 2, `Other Environment " "Variables`_." msgstr "" -#: library/shutil.rst:817 +#: library/shutil.rst:852 msgid "" "The ``fallback`` values are also used if :func:`os.get_terminal_size` " "returns zeroes." diff --git a/library/site.po b/library/site.po index 05e224c7f..d41ac3012 100644 --- a/library/site.po +++ b/library/site.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -212,10 +212,9 @@ msgid "" "func:`getuserbase` hasn't been called yet. Default value is :file:`~/." "local` for UNIX and macOS non-framework builds, :file:`~/Library/Python/{X.Y}" "` for macOS framework builds, and :file:`{%APPDATA%}\\\\Python` for " -"Windows. This value is used by Distutils to compute the installation " -"directories for scripts, data files, Python modules, etc. for the :ref:`user " -"installation scheme `. See also :envvar:" -"`PYTHONUSERBASE`." +"Windows. This value is used to compute the installation directories for " +"scripts, data files, Python modules, etc. for the user installation scheme. " +"See also :envvar:`PYTHONUSERBASE`." msgstr "" #: library/site.rst:200 diff --git a/library/smtpd.po b/library/smtpd.po deleted file mode 100644 index 7b08987cd..000000000 --- a/library/smtpd.po +++ /dev/null @@ -1,445 +0,0 @@ -# Python Documentation Turkish Translation -# Copyright (C) 2001-2023, Python Software Foundation -# This file is distributed under the same license as the Python package. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Python 3.11\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: \n" -"Language-Team: TURKISH \n" -"Language: tr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: library/smtpd.rst:2 -msgid ":mod:`smtpd` --- SMTP Server" -msgstr "" - -#: library/smtpd.rst:11 -msgid "**Source code:** :source:`Lib/smtpd.py`" -msgstr "" - -#: library/smtpd.rst:15 -msgid "This module offers several classes to implement SMTP (email) servers." -msgstr "" - -#: library/smtpd.rst:23 -msgid "" -"The :mod:`smtpd` module is deprecated (see :pep:`PEP 594 <594#smtpd>` for " -"details). The `aiosmtpd `_ package is a " -"recommended replacement for this module. It is based on :mod:`asyncio` and " -"provides a more straightforward API." -msgstr "" - -#: library/smtpd.rst:24 -msgid "" -"Several server implementations are present; one is a generic do-nothing " -"implementation, which can be overridden, while the other two offer specific " -"mail-sending strategies." -msgstr "" - -#: library/smtpd.rst:28 -msgid "" -"Additionally the SMTPChannel may be extended to implement very specific " -"interaction behaviour with SMTP clients." -msgstr "" - -#: library/smtpd.rst:31 -msgid "" -"The code supports :RFC:`5321`, plus the :rfc:`1870` SIZE and :rfc:`6531` " -"SMTPUTF8 extensions." -msgstr "" - -#: includes/wasm-notavail.rst:3 -msgid ":ref:`Availability `: not Emscripten, not WASI." -msgstr "" - -#: includes/wasm-notavail.rst:5 -msgid "" -"This module does not work or is not available on WebAssembly platforms " -"``wasm32-emscripten`` and ``wasm32-wasi``. See :ref:`wasm-availability` for " -"more information." -msgstr "" - -#: library/smtpd.rst:37 -msgid "SMTPServer Objects" -msgstr "" - -#: library/smtpd.rst:43 -msgid "" -"Create a new :class:`SMTPServer` object, which binds to local address " -"*localaddr*. It will treat *remoteaddr* as an upstream SMTP relayer. Both " -"*localaddr* and *remoteaddr* should be a :ref:`(host, port) ` " -"tuple. The object inherits from :class:`asyncore.dispatcher`, and so will " -"insert itself into :mod:`asyncore`'s event loop on instantiation." -msgstr "" - -#: library/smtpd.rst:159 -msgid "" -"*data_size_limit* specifies the maximum number of bytes that will be " -"accepted in a ``DATA`` command. A value of ``None`` or ``0`` means no limit." -msgstr "" - -#: library/smtpd.rst:53 -msgid "" -"*map* is the socket map to use for connections (an initially empty " -"dictionary is a suitable value). If not specified the :mod:`asyncore` " -"global socket map is used." -msgstr "" - -#: library/smtpd.rst:57 -msgid "" -"*enable_SMTPUTF8* determines whether the ``SMTPUTF8`` extension (as defined " -"in :RFC:`6531`) should be enabled. The default is ``False``. When ``True``, " -"``SMTPUTF8`` is accepted as a parameter to the ``MAIL`` command and when " -"present is passed to :meth:`process_message` in the " -"``kwargs['mail_options']`` list. *decode_data* and *enable_SMTPUTF8* cannot " -"be set to ``True`` at the same time." -msgstr "" - -#: library/smtpd.rst:64 -msgid "" -"*decode_data* specifies whether the data portion of the SMTP transaction " -"should be decoded using UTF-8. When *decode_data* is ``False`` (the " -"default), the server advertises the ``8BITMIME`` extension (:rfc:`6152`), " -"accepts the ``BODY=8BITMIME`` parameter to the ``MAIL`` command, and when " -"present passes it to :meth:`process_message` in the " -"``kwargs['mail_options']`` list. *decode_data* and *enable_SMTPUTF8* cannot " -"be set to ``True`` at the same time." -msgstr "" - -#: library/smtpd.rst:74 -msgid "" -"Raise a :exc:`NotImplementedError` exception. Override this in subclasses to " -"do something useful with this message. Whatever was passed in the " -"constructor as *remoteaddr* will be available as the :attr:`_remoteaddr` " -"attribute. *peer* is the remote host's address, *mailfrom* is the envelope " -"originator, *rcpttos* are the envelope recipients and *data* is a string " -"containing the contents of the e-mail (which should be in :rfc:`5321` " -"format)." -msgstr "" - -#: library/smtpd.rst:82 -msgid "" -"If the *decode_data* constructor keyword is set to ``True``, the *data* " -"argument will be a unicode string. If it is set to ``False``, it will be a " -"bytes object." -msgstr "" - -#: library/smtpd.rst:86 -msgid "" -"*kwargs* is a dictionary containing additional information. It is empty if " -"``decode_data=True`` was given as an init argument, otherwise it contains " -"the following keys:" -msgstr "" - -#: library/smtpd.rst:93 -msgid "*mail_options*:" -msgstr "" - -#: library/smtpd.rst:91 -msgid "" -"a list of all received parameters to the ``MAIL`` command (the elements are " -"uppercase strings; example: ``['BODY=8BITMIME', 'SMTPUTF8']``)." -msgstr "" - -#: library/smtpd.rst:98 -msgid "*rcpt_options*:" -msgstr "" - -#: library/smtpd.rst:96 -msgid "" -"same as *mail_options* but for the ``RCPT`` command. Currently no ``RCPT " -"TO`` options are supported, so for now this will always be an empty list." -msgstr "" - -#: library/smtpd.rst:100 -msgid "" -"Implementations of ``process_message`` should use the ``**kwargs`` signature " -"to accept arbitrary keyword arguments, since future feature enhancements may " -"add keys to the kwargs dictionary." -msgstr "" - -#: library/smtpd.rst:104 -msgid "" -"Return ``None`` to request a normal ``250 Ok`` response; otherwise return " -"the desired response string in :RFC:`5321` format." -msgstr "" - -#: library/smtpd.rst:109 -msgid "" -"Override this in subclasses to use a custom :class:`SMTPChannel` for " -"managing SMTP clients." -msgstr "" - -#: library/smtpd.rst:112 -msgid "The *map* constructor argument." -msgstr "" - -#: library/smtpd.rst:115 -msgid "*localaddr* and *remoteaddr* may now contain IPv6 addresses." -msgstr "" - -#: library/smtpd.rst:118 -msgid "" -"The *decode_data* and *enable_SMTPUTF8* constructor parameters, and the " -"*kwargs* parameter to :meth:`process_message` when *decode_data* is " -"``False``." -msgstr "" - -#: library/smtpd.rst:181 -msgid "*decode_data* is now ``False`` by default." -msgstr "" - -#: library/smtpd.rst:128 -msgid "DebuggingServer Objects" -msgstr "" - -#: library/smtpd.rst:133 -msgid "" -"Create a new debugging server. Arguments are as per :class:`SMTPServer`. " -"Messages will be discarded, and printed on stdout." -msgstr "" - -#: library/smtpd.rst:138 -msgid "PureProxy Objects" -msgstr "" - -#: library/smtpd.rst:143 -msgid "" -"Create a new pure proxy server. Arguments are as per :class:`SMTPServer`. " -"Everything will be relayed to *remoteaddr*. Note that running this has a " -"good chance to make you into an open relay, so please be careful." -msgstr "" - -#: library/smtpd.rst:149 -msgid "SMTPChannel Objects" -msgstr "" - -#: library/smtpd.rst:154 -msgid "" -"Create a new :class:`SMTPChannel` object which manages the communication " -"between the server and a single SMTP client." -msgstr "" - -#: library/smtpd.rst:157 -msgid "*conn* and *addr* are as per the instance variables described below." -msgstr "" - -#: library/smtpd.rst:163 -msgid "" -"*enable_SMTPUTF8* determines whether the ``SMTPUTF8`` extension (as defined " -"in :RFC:`6531`) should be enabled. The default is ``False``. *decode_data* " -"and *enable_SMTPUTF8* cannot be set to ``True`` at the same time." -msgstr "" - -#: library/smtpd.rst:168 -msgid "" -"A dictionary can be specified in *map* to avoid using a global socket map." -msgstr "" - -#: library/smtpd.rst:170 -msgid "" -"*decode_data* specifies whether the data portion of the SMTP transaction " -"should be decoded using UTF-8. The default is ``False``. *decode_data* and " -"*enable_SMTPUTF8* cannot be set to ``True`` at the same time." -msgstr "" - -#: library/smtpd.rst:175 -msgid "" -"To use a custom SMTPChannel implementation you need to override the :attr:" -"`SMTPServer.channel_class` of your :class:`SMTPServer`." -msgstr "" - -#: library/smtpd.rst:178 -msgid "The *decode_data* and *enable_SMTPUTF8* parameters were added." -msgstr "" - -#: library/smtpd.rst:184 -msgid "The :class:`SMTPChannel` has the following instance variables:" -msgstr "" - -#: library/smtpd.rst:188 -msgid "Holds the :class:`SMTPServer` that spawned this channel." -msgstr "" - -#: library/smtpd.rst:192 -msgid "Holds the socket object connecting to the client." -msgstr "" - -#: library/smtpd.rst:196 -msgid "" -"Holds the address of the client, the second value returned by :func:`socket." -"accept `" -msgstr "" - -#: library/smtpd.rst:201 -msgid "" -"Holds a list of the line strings (decoded using UTF-8) received from the " -"client. The lines have their ``\"\\r\\n\"`` line ending translated to " -"``\"\\n\"``." -msgstr "" - -#: library/smtpd.rst:207 -msgid "" -"Holds the current state of the channel. This will be either :attr:`COMMAND` " -"initially and then :attr:`DATA` after the client sends a \"DATA\" line." -msgstr "" - -#: library/smtpd.rst:213 -msgid "" -"Holds a string containing the greeting sent by the client in its \"HELO\"." -msgstr "" - -#: library/smtpd.rst:217 -msgid "" -"Holds a string containing the address identified in the \"MAIL FROM:\" line " -"from the client." -msgstr "" - -#: library/smtpd.rst:222 -msgid "" -"Holds a list of strings containing the addresses identified in the \"RCPT TO:" -"\" lines from the client." -msgstr "" - -#: library/smtpd.rst:227 -msgid "" -"Holds a string containing all of the data sent by the client during the DATA " -"state, up to but not including the terminating ``\"\\r\\n.\\r\\n\"``." -msgstr "" - -#: library/smtpd.rst:232 -msgid "" -"Holds the fully qualified domain name of the server as returned by :func:" -"`socket.getfqdn`." -msgstr "" - -#: library/smtpd.rst:237 -msgid "" -"Holds the name of the client peer as returned by ``conn.getpeername()`` " -"where ``conn`` is :attr:`conn`." -msgstr "" - -#: library/smtpd.rst:240 -msgid "" -"The :class:`SMTPChannel` operates by invoking methods named " -"``smtp_`` upon reception of a command line from the client. Built " -"into the base :class:`SMTPChannel` class are methods for handling the " -"following commands (and responding to them appropriately):" -msgstr "" - -#: library/smtpd.rst:246 -msgid "Command" -msgstr "" - -#: library/smtpd.rst:246 -msgid "Action taken" -msgstr "" - -#: library/smtpd.rst:248 -msgid "HELO" -msgstr "" - -#: library/smtpd.rst:248 -msgid "" -"Accepts the greeting from the client and stores it in :attr:" -"`seen_greeting`. Sets server to base command mode." -msgstr "" - -#: library/smtpd.rst:250 -msgid "EHLO" -msgstr "" - -#: library/smtpd.rst:250 -msgid "" -"Accepts the greeting from the client and stores it in :attr:" -"`seen_greeting`. Sets server to extended command mode." -msgstr "" - -#: library/smtpd.rst:252 -msgid "NOOP" -msgstr "" - -#: library/smtpd.rst:252 -msgid "Takes no action." -msgstr "" - -#: library/smtpd.rst:253 -msgid "QUIT" -msgstr "" - -#: library/smtpd.rst:253 -msgid "Closes the connection cleanly." -msgstr "" - -#: library/smtpd.rst:254 -msgid "MAIL" -msgstr "" - -#: library/smtpd.rst:254 -msgid "" -"Accepts the \"MAIL FROM:\" syntax and stores the supplied address as :attr:" -"`mailfrom`. In extended command mode, accepts the :rfc:`1870` SIZE " -"attribute and responds appropriately based on the value of *data_size_limit*." -msgstr "" - -#: library/smtpd.rst:258 -msgid "RCPT" -msgstr "" - -#: library/smtpd.rst:258 -msgid "" -"Accepts the \"RCPT TO:\" syntax and stores the supplied addresses in the :" -"attr:`rcpttos` list." -msgstr "" - -#: library/smtpd.rst:260 -msgid "RSET" -msgstr "" - -#: library/smtpd.rst:260 -msgid "" -"Resets the :attr:`mailfrom`, :attr:`rcpttos`, and :attr:`received_data`, but " -"not the greeting." -msgstr "" - -#: library/smtpd.rst:262 -msgid "DATA" -msgstr "" - -#: library/smtpd.rst:262 -msgid "" -"Sets the internal state to :attr:`DATA` and stores remaining lines from the " -"client in :attr:`received_data` until the terminator ``\"\\r\\n.\\r\\n\"`` " -"is received." -msgstr "" - -#: library/smtpd.rst:265 -msgid "HELP" -msgstr "" - -#: library/smtpd.rst:265 -msgid "Returns minimal information on command syntax" -msgstr "" - -#: library/smtpd.rst:266 -msgid "VRFY" -msgstr "" - -#: library/smtpd.rst:266 -msgid "Returns code 252 (the server doesn't know if the address is valid)" -msgstr "" - -#: library/smtpd.rst:267 -msgid "EXPN" -msgstr "" - -#: library/smtpd.rst:267 -msgid "Reports that the command is not implemented." -msgstr "" diff --git a/library/smtplib.po b/library/smtplib.po index 6f30f220e..372171f1e 100644 --- a/library/smtplib.po +++ b/library/smtplib.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -93,21 +93,21 @@ msgstr "" msgid "Support for the :keyword:`with` statement was added." msgstr "" -#: library/smtplib.rst:100 -msgid "source_address argument was added." +#: library/smtplib.rst:68 +msgid "*source_address* argument was added." msgstr "" #: library/smtplib.rst:71 msgid "The SMTPUTF8 extension (:rfc:`6531`) is now supported." msgstr "" -#: library/smtplib.rst:115 +#: library/smtplib.rst:74 msgid "" "If the *timeout* parameter is set to be zero, it will raise a :class:" -"`ValueError` to prevent the creation of a non-blocking socket" +"`ValueError` to prevent the creation of a non-blocking socket." msgstr "" -#: library/smtplib.rst:82 +#: library/smtplib.rst:81 msgid "" "An :class:`SMTP_SSL` instance behaves exactly the same as instances of :" "class:`SMTP`. :class:`SMTP_SSL` should be used for situations where SSL is " @@ -121,73 +121,73 @@ msgid "" "practices." msgstr "" -#: library/smtplib.rst:93 -msgid "" -"*keyfile* and *certfile* are a legacy alternative to *context*, and can " -"point to a PEM formatted private key and certificate chain file for the SSL " -"connection." +#: library/smtplib.rst:415 +msgid "*context* was added." msgstr "" -#: library/smtplib.rst:428 -msgid "*context* was added." +#: library/smtplib.rst:95 +msgid "The *source_address* argument was added." msgstr "" -#: library/smtplib.rst:103 +#: library/smtplib.rst:98 msgid "" "The class now supports hostname check with :attr:`ssl.SSLContext." "check_hostname` and *Server Name Indication* (see :const:`ssl.HAS_SNI`)." msgstr "" -#: library/smtplib.rst:414 +#: library/smtplib.rst:103 msgid "" -"*keyfile* and *certfile* are deprecated in favor of *context*. Please use :" -"meth:`ssl.SSLContext.load_cert_chain` instead, or let :func:`ssl." -"create_default_context` select the system's trusted CA certificates for you." +"If the *timeout* parameter is set to be zero, it will raise a :class:" +"`ValueError` to prevent the creation of a non-blocking socket" msgstr "" -#: library/smtplib.rst:122 +#: library/smtplib.rst:403 +msgid "The deprecated *keyfile* and *certfile* parameters have been removed." +msgstr "" + +#: library/smtplib.rst:113 msgid "" "The LMTP protocol, which is very similar to ESMTP, is heavily based on the " "standard SMTP client. It's common to use Unix sockets for LMTP, so our :meth:" "`connect` method must support that as well as a regular host:port server. " -"The optional arguments local_hostname and source_address have the same " +"The optional arguments *local_hostname* and *source_address* have the same " "meaning as they do in the :class:`SMTP` class. To specify a Unix socket, you " "must use an absolute path for *host*, starting with a '/'." msgstr "" -#: library/smtplib.rst:129 +#: library/smtplib.rst:120 msgid "" "Authentication is supported, using the regular SMTP mechanism. When using a " "Unix socket, LMTP generally don't support or require any authentication, but " "your mileage might vary." msgstr "" -#: library/smtplib.rst:133 +#: library/smtplib.rst:124 msgid "The optional *timeout* parameter was added." msgstr "" -#: library/smtplib.rst:137 +#: library/smtplib.rst:128 msgid "A nice selection of exceptions is defined as well:" msgstr "" -#: library/smtplib.rst:142 +#: library/smtplib.rst:133 msgid "" "Subclass of :exc:`OSError` that is the base exception class for all the " "other exceptions provided by this module." msgstr "" -#: library/smtplib.rst:145 +#: library/smtplib.rst:136 msgid "SMTPException became subclass of :exc:`OSError`" msgstr "" -#: library/smtplib.rst:151 +#: library/smtplib.rst:142 msgid "" "This exception is raised when the server unexpectedly disconnects, or when " "an attempt is made to use the :class:`SMTP` instance before connecting it to " "a server." msgstr "" -#: library/smtplib.rst:158 +#: library/smtplib.rst:149 msgid "" "Base class for all exceptions that include an SMTP error code. These " "exceptions are generated in some instances when the SMTP server returns an " @@ -195,72 +195,72 @@ msgid "" "the error, and the :attr:`smtp_error` attribute is set to the error message." msgstr "" -#: library/smtplib.rst:166 +#: library/smtplib.rst:157 msgid "" "Sender address refused. In addition to the attributes set by on all :exc:" "`SMTPResponseException` exceptions, this sets 'sender' to the string that " "the SMTP server refused." msgstr "" -#: library/smtplib.rst:173 +#: library/smtplib.rst:164 msgid "" "All recipient addresses refused. The errors for each recipient are " "accessible through the attribute :attr:`recipients`, which is a dictionary " "of exactly the same sort as :meth:`SMTP.sendmail` returns." msgstr "" -#: library/smtplib.rst:180 +#: library/smtplib.rst:171 msgid "The SMTP server refused to accept the message data." msgstr "" -#: library/smtplib.rst:185 +#: library/smtplib.rst:176 msgid "Error occurred during establishment of a connection with the server." msgstr "" -#: library/smtplib.rst:190 +#: library/smtplib.rst:181 msgid "The server refused our ``HELO`` message." msgstr "" -#: library/smtplib.rst:195 +#: library/smtplib.rst:186 msgid "The command or option attempted is not supported by the server." msgstr "" -#: library/smtplib.rst:202 +#: library/smtplib.rst:193 msgid "" "SMTP authentication went wrong. Most probably the server didn't accept the " "username/password combination provided." msgstr "" -#: library/smtplib.rst:210 +#: library/smtplib.rst:201 msgid ":rfc:`821` - Simple Mail Transfer Protocol" msgstr "" -#: library/smtplib.rst:209 +#: library/smtplib.rst:200 msgid "" "Protocol definition for SMTP. This document covers the model, operating " "procedure, and protocol details for SMTP." msgstr "" -#: library/smtplib.rst:214 +#: library/smtplib.rst:205 msgid ":rfc:`1869` - SMTP Service Extensions" msgstr "" -#: library/smtplib.rst:213 +#: library/smtplib.rst:204 msgid "" "Definition of the ESMTP extensions for SMTP. This describes a framework for " "extending SMTP with new commands, supporting dynamic discovery of the " "commands provided by the server, and defines a few additional commands." msgstr "" -#: library/smtplib.rst:221 +#: library/smtplib.rst:212 msgid "SMTP Objects" msgstr "" -#: library/smtplib.rst:223 +#: library/smtplib.rst:214 msgid "An :class:`SMTP` instance has the following methods:" msgstr "" -#: library/smtplib.rst:228 +#: library/smtplib.rst:219 msgid "" "Set the debug output level. A value of 1 or ``True`` for *level* results in " "debug messages for connection and for all messages sent to and received from " @@ -268,36 +268,36 @@ msgid "" "timestamped." msgstr "" -#: library/smtplib.rst:233 +#: library/smtplib.rst:224 msgid "Added debuglevel 2." msgstr "" -#: library/smtplib.rst:238 +#: library/smtplib.rst:229 msgid "" "Send a command *cmd* to the server. The optional argument *args* is simply " "concatenated to the command, separated by a space." msgstr "" -#: library/smtplib.rst:241 +#: library/smtplib.rst:232 msgid "" "This returns a 2-tuple composed of a numeric response code and the actual " "response line (multiline responses are joined into one long line.)" msgstr "" -#: library/smtplib.rst:244 +#: library/smtplib.rst:235 msgid "" "In normal operation it should not be necessary to call this method " "explicitly. It is used to implement other methods and may be useful for " "testing private extensions." msgstr "" -#: library/smtplib.rst:248 +#: library/smtplib.rst:239 msgid "" "If the connection to the server is lost while waiting for the reply, :exc:" "`SMTPServerDisconnected` will be raised." msgstr "" -#: library/smtplib.rst:254 +#: library/smtplib.rst:245 msgid "" "Connect to a host on a given port. The defaults are to connect to the local " "host at the standard SMTP port (25). If the hostname ends with a colon " @@ -308,13 +308,13 @@ msgid "" "connection response." msgstr "" -#: library/smtplib.rst:273 +#: library/smtplib.rst:264 msgid "" "Raises an :ref:`auditing event ` ``smtplib.connect`` with " "arguments ``self``, ``host``, ``port``." msgstr "" -#: library/smtplib.rst:267 +#: library/smtplib.rst:258 msgid "" "Identify yourself to the SMTP server using ``HELO``. The hostname argument " "defaults to the fully qualified domain name of the local host. The message " @@ -322,14 +322,14 @@ msgid "" "object." msgstr "" -#: library/smtplib.rst:272 +#: library/smtplib.rst:263 msgid "" "In normal operation it should not be necessary to call this method " "explicitly. It will be implicitly called by the :meth:`sendmail` when " "necessary." msgstr "" -#: library/smtplib.rst:278 +#: library/smtplib.rst:269 msgid "" "Identify yourself to an ESMTP server using ``EHLO``. The hostname argument " "defaults to the fully qualified domain name of the local host. Examine the " @@ -341,35 +341,35 @@ msgid "" "service extensions this server supports, and their parameters (if any)." msgstr "" -#: library/smtplib.rst:288 +#: library/smtplib.rst:279 msgid "" "Unless you wish to use :meth:`has_extn` before sending mail, it should not " "be necessary to call this method explicitly. It will be implicitly called " "by :meth:`sendmail` when necessary." msgstr "" -#: library/smtplib.rst:294 +#: library/smtplib.rst:285 msgid "" "This method calls :meth:`ehlo` and/or :meth:`helo` if there has been no " "previous ``EHLO`` or ``HELO`` command this session. It tries ESMTP ``EHLO`` " "first." msgstr "" -#: library/smtplib.rst:328 library/smtplib.rst:489 +#: library/smtplib.rst:319 library/smtplib.rst:476 msgid ":exc:`SMTPHeloError`" msgstr "" -#: library/smtplib.rst:328 library/smtplib.rst:489 +#: library/smtplib.rst:319 library/smtplib.rst:476 msgid "The server didn't reply properly to the ``HELO`` greeting." msgstr "" -#: library/smtplib.rst:303 +#: library/smtplib.rst:294 msgid "" "Return :const:`True` if *name* is in the set of SMTP service extensions " "returned by the server, :const:`False` otherwise. Case is ignored." msgstr "" -#: library/smtplib.rst:309 +#: library/smtplib.rst:300 msgid "" "Check the validity of an address on this server using SMTP ``VRFY``. Returns " "a tuple consisting of code 250 and a full :rfc:`822` address (including " @@ -377,11 +377,11 @@ msgid "" "code of 400 or greater and an error string." msgstr "" -#: library/smtplib.rst:316 +#: library/smtplib.rst:307 msgid "Many sites disable SMTP ``VRFY`` in order to foil spammers." msgstr "" -#: library/smtplib.rst:321 +#: library/smtplib.rst:312 msgid "" "Log in on an SMTP server that requires authentication. The arguments are the " "username and the password to authenticate with. If there has been no " @@ -390,31 +390,31 @@ msgid "" "successful, or may raise the following exceptions:" msgstr "" -#: library/smtplib.rst:331 +#: library/smtplib.rst:322 msgid ":exc:`SMTPAuthenticationError`" msgstr "" -#: library/smtplib.rst:331 +#: library/smtplib.rst:322 msgid "The server didn't accept the username/password combination." msgstr "" -#: library/smtplib.rst:423 library/smtplib.rst:500 +#: library/smtplib.rst:410 library/smtplib.rst:487 msgid ":exc:`SMTPNotSupportedError`" msgstr "" -#: library/smtplib.rst:334 +#: library/smtplib.rst:325 msgid "The ``AUTH`` command is not supported by the server." msgstr "" -#: library/smtplib.rst:337 +#: library/smtplib.rst:328 msgid ":exc:`SMTPException`" msgstr "" -#: library/smtplib.rst:337 +#: library/smtplib.rst:328 msgid "No suitable authentication method was found." msgstr "" -#: library/smtplib.rst:339 +#: library/smtplib.rst:330 msgid "" "Each of the authentication methods supported by :mod:`smtplib` are tried in " "turn if they are advertised as supported by the server. See :meth:`auth` " @@ -422,7 +422,7 @@ msgid "" "passed through to :meth:`auth`." msgstr "" -#: library/smtplib.rst:344 +#: library/smtplib.rst:335 msgid "" "Optional keyword argument *initial_response_ok* specifies whether, for " "authentication methods that support it, an \"initial response\" as specified " @@ -430,35 +430,31 @@ msgid "" "requiring a challenge/response." msgstr "" -#: library/smtplib.rst:349 +#: library/smtplib.rst:340 msgid "" ":exc:`SMTPNotSupportedError` may be raised, and the *initial_response_ok* " "parameter was added." msgstr "" -#: library/smtplib.rst:356 +#: library/smtplib.rst:347 msgid "" "Issue an ``SMTP`` ``AUTH`` command for the specified authentication " "*mechanism*, and handle the challenge response via *authobject*." msgstr "" -#: library/smtplib.rst:359 +#: library/smtplib.rst:350 msgid "" "*mechanism* specifies which authentication mechanism is to be used as " "argument to the ``AUTH`` command; the valid values are those listed in the " "``auth`` element of :attr:`esmtp_features`." msgstr "" -#: library/smtplib.rst:363 +#: library/smtplib.rst:354 msgid "" -"*authobject* must be a callable object taking an optional single argument:" +"*authobject* must be a callable object taking an optional single argument::" msgstr "" -#: library/smtplib.rst:365 -msgid "data = authobject(challenge=None)" -msgstr "" - -#: library/smtplib.rst:367 +#: library/smtplib.rst:358 msgid "" "If optional keyword argument *initial_response_ok* is true, ``authobject()`` " "will be called first with no argument. It can return the :rfc:`4954` " @@ -469,7 +465,7 @@ msgid "" "false, then ``authobject()`` will not be called first with ``None``." msgstr "" -#: library/smtplib.rst:375 +#: library/smtplib.rst:366 msgid "" "If the initial response check returns ``None``, or if *initial_response_ok* " "is false, ``authobject()`` will be called to process the server's challenge " @@ -478,7 +474,7 @@ msgid "" "the server." msgstr "" -#: library/smtplib.rst:381 +#: library/smtplib.rst:372 msgid "" "The ``SMTP`` class provides ``authobjects`` for the ``CRAM-MD5``, ``PLAIN``, " "and ``LOGIN`` mechanisms; they are named ``SMTP.auth_cram_md5``, ``SMTP." @@ -487,7 +483,7 @@ msgid "" "appropriate values." msgstr "" -#: library/smtplib.rst:387 +#: library/smtplib.rst:378 msgid "" "User code does not normally need to call ``auth`` directly, but can instead " "call the :meth:`login` method, which will try each of the above mechanisms " @@ -496,57 +492,57 @@ msgid "" "by :mod:`smtplib`." msgstr "" -#: library/smtplib.rst:398 +#: library/smtplib.rst:389 msgid "" "Put the SMTP connection in TLS (Transport Layer Security) mode. All SMTP " "commands that follow will be encrypted. You should then call :meth:`ehlo` " "again." msgstr "" -#: library/smtplib.rst:402 +#: library/smtplib.rst:393 msgid "" "If *keyfile* and *certfile* are provided, they are used to create an :class:" "`ssl.SSLContext`." msgstr "" -#: library/smtplib.rst:405 +#: library/smtplib.rst:396 msgid "" "Optional *context* parameter is an :class:`ssl.SSLContext` object; This is " "an alternative to using a keyfile and a certfile and if specified both " "*keyfile* and *certfile* should be ``None``." msgstr "" -#: library/smtplib.rst:409 +#: library/smtplib.rst:400 msgid "" "If there has been no previous ``EHLO`` or ``HELO`` command this session, " "this method tries ESMTP ``EHLO`` first." msgstr "" -#: library/smtplib.rst:423 +#: library/smtplib.rst:410 msgid "The server does not support the STARTTLS extension." msgstr "" -#: library/smtplib.rst:426 +#: library/smtplib.rst:413 msgid ":exc:`RuntimeError`" msgstr "" -#: library/smtplib.rst:426 +#: library/smtplib.rst:413 msgid "SSL/TLS support is not available to your Python interpreter." msgstr "" -#: library/smtplib.rst:431 +#: library/smtplib.rst:418 msgid "" "The method now supports hostname check with :attr:`SSLContext." "check_hostname` and *Server Name Indicator* (see :const:`~ssl.HAS_SNI`)." msgstr "" -#: library/smtplib.rst:436 +#: library/smtplib.rst:423 msgid "" "The error raised for lack of STARTTLS support is now the :exc:" "`SMTPNotSupportedError` subclass instead of the base :exc:`SMTPException`." msgstr "" -#: library/smtplib.rst:444 +#: library/smtplib.rst:431 msgid "" "Send mail. The required arguments are an :rfc:`822` from-address string, a " "list of :rfc:`822` to-address strings (a bare string will be treated as a " @@ -559,14 +555,14 @@ msgid "" "the message.)" msgstr "" -#: library/smtplib.rst:455 +#: library/smtplib.rst:442 msgid "" "The *from_addr* and *to_addrs* parameters are used to construct the message " "envelope used by the transport agents. ``sendmail`` does not modify the " "message headers in any way." msgstr "" -#: library/smtplib.rst:459 +#: library/smtplib.rst:446 msgid "" "*msg* may be a string containing characters in the ASCII range, or a byte " "string. A string is encoded to bytes using the ascii codec, and lone " @@ -574,7 +570,7 @@ msgid "" "byte string is not modified." msgstr "" -#: library/smtplib.rst:464 +#: library/smtplib.rst:451 msgid "" "If there has been no previous ``EHLO`` or ``HELO`` command this session, " "this method tries ESMTP ``EHLO`` first. If the server does ESMTP, message " @@ -583,7 +579,7 @@ msgid "" "will be tried and ESMTP options suppressed." msgstr "" -#: library/smtplib.rst:470 +#: library/smtplib.rst:457 msgid "" "This method will return normally if the mail is accepted for at least one " "recipient. Otherwise it will raise an exception. That is, if this method " @@ -593,21 +589,21 @@ msgid "" "SMTP error code and the accompanying error message sent by the server." msgstr "" -#: library/smtplib.rst:477 +#: library/smtplib.rst:464 msgid "" "If ``SMTPUTF8`` is included in *mail_options*, and the server supports it, " "*from_addr* and *to_addrs* may contain non-ASCII characters." msgstr "" -#: library/smtplib.rst:480 +#: library/smtplib.rst:467 msgid "This method may raise the following exceptions:" msgstr "" -#: library/smtplib.rst:486 +#: library/smtplib.rst:473 msgid ":exc:`SMTPRecipientsRefused`" msgstr "" -#: library/smtplib.rst:483 +#: library/smtplib.rst:470 msgid "" "All recipients were refused. Nobody got the mail. The :attr:`recipients` " "attribute of the exception object is a dictionary with information about the " @@ -615,47 +611,47 @@ msgid "" "accepted)." msgstr "" -#: library/smtplib.rst:492 +#: library/smtplib.rst:479 msgid ":exc:`SMTPSenderRefused`" msgstr "" -#: library/smtplib.rst:492 +#: library/smtplib.rst:479 msgid "The server didn't accept the *from_addr*." msgstr "" -#: library/smtplib.rst:496 +#: library/smtplib.rst:483 msgid ":exc:`SMTPDataError`" msgstr "" -#: library/smtplib.rst:495 +#: library/smtplib.rst:482 msgid "" "The server replied with an unexpected error code (other than a refusal of a " "recipient)." msgstr "" -#: library/smtplib.rst:499 +#: library/smtplib.rst:486 msgid "" "``SMTPUTF8`` was given in the *mail_options* but is not supported by the " "server." msgstr "" -#: library/smtplib.rst:502 +#: library/smtplib.rst:489 msgid "" "Unless otherwise noted, the connection will be open even after an exception " "is raised." msgstr "" -#: library/smtplib.rst:505 +#: library/smtplib.rst:492 msgid "*msg* may be a byte string." msgstr "" -#: library/smtplib.rst:508 +#: library/smtplib.rst:495 msgid "" "``SMTPUTF8`` support added, and :exc:`SMTPNotSupportedError` may be raised " "if ``SMTPUTF8`` is specified but the server does not support it." msgstr "" -#: library/smtplib.rst:516 +#: library/smtplib.rst:503 msgid "" "This is a convenience method for calling :meth:`sendmail` with the message " "represented by an :class:`email.message.Message` object. The arguments have " @@ -663,7 +659,7 @@ msgid "" "object." msgstr "" -#: library/smtplib.rst:521 +#: library/smtplib.rst:508 msgid "" "If *from_addr* is ``None`` or *to_addrs* is ``None``, ``send_message`` fills " "those arguments with addresses extracted from the headers of *msg* as " @@ -678,7 +674,7 @@ msgid "" "most recent set of :mailheader:`Resent-` headers." msgstr "" -#: library/smtplib.rst:533 +#: library/smtplib.rst:520 msgid "" "``send_message`` serializes *msg* using :class:`~email.generator." "BytesGenerator` with ``\\r\\n`` as the *linesep*, and calls :meth:`sendmail` " @@ -693,17 +689,17 @@ msgid "" "to *mail_options*." msgstr "" -#: library/smtplib.rst:547 +#: library/smtplib.rst:534 msgid "Support for internationalized addresses (``SMTPUTF8``)." msgstr "" -#: library/smtplib.rst:553 +#: library/smtplib.rst:540 msgid "" "Terminate the SMTP session and close the connection. Return the result of " "the SMTP ``QUIT`` command." msgstr "" -#: library/smtplib.rst:557 +#: library/smtplib.rst:544 msgid "" "Low-level methods corresponding to the standard SMTP/ESMTP commands " "``HELP``, ``RSET``, ``NOOP``, ``MAIL``, ``RCPT``, and ``DATA`` are also " @@ -711,11 +707,11 @@ msgid "" "documented here. For details, consult the module code." msgstr "" -#: library/smtplib.rst:566 +#: library/smtplib.rst:553 msgid "SMTP Example" msgstr "" -#: library/smtplib.rst:568 +#: library/smtplib.rst:555 msgid "" "This example prompts the user for addresses needed in the message envelope " "('To' and 'From' addresses), and the message to be delivered. Note that the " @@ -725,7 +721,7 @@ msgid "" "headers explicitly. ::" msgstr "" -#: library/smtplib.rst:604 +#: library/smtplib.rst:591 msgid "" "In general, you will want to use the :mod:`email` package's features to " "construct an email message, which you can then send via :meth:`~smtplib.SMTP." diff --git a/library/socket.po b/library/socket.po index 7df65d264..963dc78de 100644 --- a/library/socket.po +++ b/library/socket.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -109,7 +109,7 @@ msgid "" "Previously, :const:`AF_UNIX` socket paths were assumed to use UTF-8 encoding." msgstr "" -#: library/socket.rst:1043 library/socket.rst:1844 +#: library/socket.rst:1142 library/socket.rst:1943 msgid "Writable :term:`bytes-like object` is now accepted." msgstr "" @@ -283,7 +283,7 @@ msgstr "" msgid "*feat* and *mask* are unsigned 32bit integers." msgstr "" -#: library/socket.rst:519 library/socket.rst:1766 +#: library/socket.rst:583 library/socket.rst:1865 msgid ":ref:`Availability `: Linux >= 2.6.38." msgstr "" @@ -298,7 +298,7 @@ msgid "" "context ID or CID and port are integers." msgstr "" -#: library/socket.rst:592 +#: library/socket.rst:656 msgid ":ref:`Availability `: Linux >= 3.9" msgstr "" @@ -319,54 +319,56 @@ msgstr "" #: library/socket.rst:192 msgid "" -"*proto* - An in network-byte-order integer specifying the Ethernet protocol " -"number." +"*proto* - The Ethernet protocol number. May be :data:`ETH_P_ALL` to capture " +"all protocols, one of the :ref:`ETHERTYPE_* constants ` or any other Ethernet protocol number. Value must be in network-byte-" +"order." msgstr "" -#: library/socket.rst:194 +#: library/socket.rst:197 msgid "*pkttype* - Optional integer specifying the packet type:" msgstr "" -#: library/socket.rst:196 +#: library/socket.rst:199 msgid "``PACKET_HOST`` (the default) - Packet addressed to the local host." msgstr "" -#: library/socket.rst:197 +#: library/socket.rst:200 msgid "``PACKET_BROADCAST`` - Physical-layer broadcast packet." msgstr "" -#: library/socket.rst:198 +#: library/socket.rst:201 msgid "" "``PACKET_MULTICAST`` - Packet sent to a physical-layer multicast address." msgstr "" -#: library/socket.rst:199 +#: library/socket.rst:202 msgid "" "``PACKET_OTHERHOST`` - Packet to some other host that has been caught by a " "device driver in promiscuous mode." msgstr "" -#: library/socket.rst:201 +#: library/socket.rst:204 msgid "" "``PACKET_OUTGOING`` - Packet originating from the local host that is looped " "back to a packet socket." msgstr "" -#: library/socket.rst:203 +#: library/socket.rst:206 msgid "*hatype* - Optional integer specifying the ARP hardware address type." msgstr "" -#: library/socket.rst:204 +#: library/socket.rst:207 msgid "" "*addr* - Optional bytes-like object specifying the hardware physical " "address, whose interpretation depends on the device." msgstr "" -#: library/socket.rst:480 +#: library/socket.rst:531 msgid ":ref:`Availability `: Linux >= 2.2." msgstr "" -#: library/socket.rst:209 +#: library/socket.rst:212 msgid "" ":const:`AF_QIPCRTR` is a Linux-only socket based interface for communicating " "with services running on co-processors in Qualcomm platforms. The address " @@ -374,11 +376,11 @@ msgid "" "*port* are non-negative integers." msgstr "" -#: library/socket.rst:568 +#: library/socket.rst:632 msgid ":ref:`Availability `: Linux >= 4.7." msgstr "" -#: library/socket.rst:218 +#: library/socket.rst:221 msgid "" ":const:`IPPROTO_UDPLITE` is a variant of UDP which allows you to specify " "what portion of a packet is covered with the checksum. It adds two socket " @@ -389,18 +391,68 @@ msgid "" "of their data. In both cases ``length`` should be in ``range(8, 2**16, 8)``." msgstr "" -#: library/socket.rst:227 +#: library/socket.rst:230 msgid "" "Such a socket should be constructed with ``socket(AF_INET, SOCK_DGRAM, " "IPPROTO_UDPLITE)`` for IPv4 or ``socket(AF_INET6, SOCK_DGRAM, " "IPPROTO_UDPLITE)`` for IPv6." msgstr "" -#: library/socket.rst:231 +#: library/socket.rst:234 msgid ":ref:`Availability `: Linux >= 2.6.20, FreeBSD >= 10.1" msgstr "" -#: library/socket.rst:235 +#: library/socket.rst:238 +msgid "" +":const:`AF_HYPERV` is a Windows-only socket based interface for " +"communicating with Hyper-V hosts and guests. The address family is " +"represented as a ``(vm_id, service_id)`` tuple where the ``vm_id`` and " +"``service_id`` are UUID strings." +msgstr "" + +#: library/socket.rst:243 +msgid "" +"The ``vm_id`` is the virtual machine identifier or a set of known VMID " +"values if the target is not a specific virtual machine. Known VMID constants " +"defined on ``socket`` are:" +msgstr "" + +#: library/socket.rst:247 +msgid "``HV_GUID_ZERO``" +msgstr "" + +#: library/socket.rst:248 +msgid "``HV_GUID_BROADCAST``" +msgstr "" + +#: library/socket.rst:249 +msgid "" +"``HV_GUID_WILDCARD`` - Used to bind on itself and accept connections from " +"all partitions." +msgstr "" + +#: library/socket.rst:251 +msgid "" +"``HV_GUID_CHILDREN`` - Used to bind on itself and accept connection from " +"child partitions." +msgstr "" + +#: library/socket.rst:253 +msgid "``HV_GUID_LOOPBACK`` - Used as a target to itself." +msgstr "" + +#: library/socket.rst:254 +msgid "" +"``HV_GUID_PARENT`` - When used as a bind accepts connection from the parent " +"partition. When used as an address target it will connect to the parent " +"partition." +msgstr "" + +#: library/socket.rst:257 +msgid "The ``service_id`` is the service identifier of the registered service." +msgstr "" + +#: library/socket.rst:261 msgid "" "If you use a hostname in the *host* portion of IPv4/v6 socket address, the " "program may show a nondeterministic behavior, as Python uses the first " @@ -410,41 +462,41 @@ msgid "" "deterministic behavior use a numeric address in *host* portion." msgstr "" -#: library/socket.rst:242 +#: library/socket.rst:268 msgid "" "All errors raise exceptions. The normal exceptions for invalid argument " "types and out-of-memory conditions can be raised. Errors related to socket " "or address semantics raise :exc:`OSError` or one of its subclasses." msgstr "" -#: library/socket.rst:247 +#: library/socket.rst:273 msgid "" "Non-blocking mode is supported through :meth:`~socket.setblocking`. A " "generalization of this based on timeouts is supported through :meth:`~socket." "settimeout`." msgstr "" -#: library/socket.rst:253 +#: library/socket.rst:279 msgid "Module contents" msgstr "" -#: library/socket.rst:255 +#: library/socket.rst:281 msgid "The module :mod:`socket` exports the following elements." msgstr "" -#: library/socket.rst:259 +#: library/socket.rst:285 msgid "Exceptions" msgstr "" -#: library/socket.rst:263 +#: library/socket.rst:289 msgid "A deprecated alias of :exc:`OSError`." msgstr "" -#: library/socket.rst:265 +#: library/socket.rst:291 msgid "Following :pep:`3151`, this class was made an alias of :exc:`OSError`." msgstr "" -#: library/socket.rst:271 +#: library/socket.rst:297 msgid "" "A subclass of :exc:`OSError`, this exception is raised for address-related " "errors, i.e. for functions that use *h_errno* in the POSIX C API, including :" @@ -454,11 +506,11 @@ msgid "" "description of *h_errno*, as returned by the :c:func:`hstrerror` C function." msgstr "" -#: library/socket.rst:292 library/socket.rst:305 +#: library/socket.rst:318 library/socket.rst:331 msgid "This class was made a subclass of :exc:`OSError`." msgstr "" -#: library/socket.rst:284 +#: library/socket.rst:310 msgid "" "A subclass of :exc:`OSError`, this exception is raised for address-related " "errors by :func:`getaddrinfo` and :func:`getnameinfo`. The accompanying " @@ -468,11 +520,11 @@ msgid "" "match one of the :const:`EAI_\\*` constants defined in this module." msgstr "" -#: library/socket.rst:297 +#: library/socket.rst:323 msgid "A deprecated alias of :exc:`TimeoutError`." msgstr "" -#: library/socket.rst:299 +#: library/socket.rst:325 msgid "" "A subclass of :exc:`OSError`, this exception is raised when a timeout occurs " "on a socket which has had timeouts enabled via a prior call to :meth:" @@ -481,21 +533,21 @@ msgid "" "currently always \"timed out\"." msgstr "" -#: library/socket.rst:308 +#: library/socket.rst:334 msgid "This class was made an alias of :exc:`TimeoutError`." msgstr "" -#: library/socket.rst:313 +#: library/socket.rst:339 msgid "Constants" msgstr "" -#: library/socket.rst:315 +#: library/socket.rst:341 msgid "" "The AF_* and SOCK_* constants are now :class:`AddressFamily` and :class:" "`SocketKind` :class:`.IntEnum` collections." msgstr "" -#: library/socket.rst:324 +#: library/socket.rst:350 msgid "" "These constants represent the address (and protocol) families, used for the " "first argument to :func:`.socket`. If the :const:`AF_UNIX` constant is not " @@ -503,7 +555,7 @@ msgid "" "depending on the system." msgstr "" -#: library/socket.rst:336 +#: library/socket.rst:362 msgid "" "These constants represent the socket types, used for the second argument to :" "func:`.socket`. More constants may be available depending on the system. " @@ -511,24 +563,24 @@ msgid "" "useful.)" msgstr "" -#: library/socket.rst:344 +#: library/socket.rst:370 msgid "" "These two constants, if defined, can be combined with the socket types and " "allow you to set some flags atomically (thus avoiding possible race " "conditions and the need for separate calls)." msgstr "" -#: library/socket.rst:350 +#: library/socket.rst:376 msgid "" "`Secure File Descriptor Handling `_ for a more thorough explanation." msgstr "" -#: library/socket.rst:353 +#: library/socket.rst:379 msgid ":ref:`Availability `: Linux >= 2.6.27." msgstr "" -#: library/socket.rst:372 +#: library/socket.rst:398 msgid "" "Many constants of these forms, documented in the Unix documentation on " "sockets and/or the IP protocol, are also defined in the socket module. They " @@ -538,174 +590,215 @@ msgid "" "default values are provided." msgstr "" -#: library/socket.rst:379 +#: library/socket.rst:405 msgid "" "``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC``, " "``TCP_USER_TIMEOUT``, ``TCP_CONGESTION`` were added." msgstr "" -#: library/socket.rst:383 +#: library/socket.rst:409 msgid "" "On Windows, ``TCP_FASTOPEN``, ``TCP_KEEPCNT`` appear if run-time Windows " "supports." msgstr "" -#: library/socket.rst:387 +#: library/socket.rst:413 msgid "``TCP_NOTSENT_LOWAT`` was added." msgstr "" -#: library/socket.rst:390 +#: library/socket.rst:416 msgid "" "On Windows, ``TCP_KEEPIDLE``, ``TCP_KEEPINTVL`` appear if run-time Windows " "supports." msgstr "" -#: library/socket.rst:393 +#: library/socket.rst:419 msgid "" "``IP_RECVTOS`` was added. Added ``TCP_KEEPALIVE``. On MacOS this constant " "can be used in the same way that ``TCP_KEEPIDLE`` is used on Linux." msgstr "" -#: library/socket.rst:398 +#: library/socket.rst:424 msgid "" "Added ``TCP_CONNECTION_INFO``. On MacOS this constant can be used in the " "same way that ``TCP_INFO`` is used on Linux and BSD." msgstr "" -#: library/socket.rst:477 library/socket.rst:488 +#: library/socket.rst:428 +msgid "" +"Added ``SO_RTABLE`` and ``SO_USER_COOKIE``. On OpenBSD and FreeBSD " +"respectively those constants can be used in the same way that ``SO_MARK`` is " +"used on Linux. Also added missing TCP socket options from Linux: " +"``TCP_MD5SIG``, ``TCP_THIN_LINEAR_TIMEOUTS``, ``TCP_THIN_DUPACK``, " +"``TCP_REPAIR``, ``TCP_REPAIR_QUEUE``, ``TCP_QUEUE_SEQ``, " +"``TCP_REPAIR_OPTIONS``, ``TCP_TIMESTAMP``, ``TCP_CC_INFO``, " +"``TCP_SAVE_SYN``, ``TCP_SAVED_SYN``, ``TCP_REPAIR_WINDOW``, " +"``TCP_FASTOPEN_CONNECT``, ``TCP_ULP``, ``TCP_MD5SIG_EXT``, " +"``TCP_FASTOPEN_KEY``, ``TCP_FASTOPEN_NO_COOKIE``, ``TCP_ZEROCOPY_RECEIVE``, " +"``TCP_INQ``, ``TCP_TX_DELAY``. Added ``IP_PKTINFO``, ``IP_UNBLOCK_SOURCE``, " +"``IP_BLOCK_SOURCE``, ``IP_ADD_SOURCE_MEMBERSHIP``, " +"``IP_DROP_SOURCE_MEMBERSHIP``." +msgstr "" + +#: library/socket.rst:528 library/socket.rst:552 msgid "" "Many constants of these forms, documented in the Linux documentation, are " "also defined in the socket module." msgstr "" -#: library/socket.rst:410 +#: library/socket.rst:450 msgid ":ref:`Availability `: Linux >= 2.6.25, NetBSD >= 8." msgstr "" -#: library/socket.rst:414 +#: library/socket.rst:454 msgid "NetBSD support was added." msgstr "" -#: library/socket.rst:420 +#: library/socket.rst:460 msgid "" "CAN_BCM, in the CAN protocol family, is the broadcast manager (BCM) " "protocol. Broadcast manager constants, documented in the Linux " "documentation, are also defined in the socket module." msgstr "" -#: library/socket.rst:459 +#: library/socket.rst:499 msgid ":ref:`Availability `: Linux >= 2.6.25." msgstr "" -#: library/socket.rst:427 +#: library/socket.rst:467 msgid "" "The :data:`CAN_BCM_CAN_FD_FRAME` flag is only available on Linux >= 4.8." msgstr "" -#: library/socket.rst:433 +#: library/socket.rst:473 msgid "" "Enables CAN FD support in a CAN_RAW socket. This is disabled by default. " "This allows your application to send both CAN and CAN FD frames; however, " "you must accept both CAN and CAN FD frames when reading from the socket." msgstr "" -#: library/socket.rst:448 +#: library/socket.rst:488 msgid "This constant is documented in the Linux documentation." msgstr "" -#: library/socket.rst:439 +#: library/socket.rst:479 msgid ":ref:`Availability `: Linux >= 3.6." msgstr "" -#: library/socket.rst:445 +#: library/socket.rst:485 msgid "" "Joins the applied CAN filters such that only CAN frames that match all given " "CAN filters are passed to user space." msgstr "" -#: library/socket.rst:450 +#: library/socket.rst:490 msgid ":ref:`Availability `: Linux >= 4.1." msgstr "" -#: library/socket.rst:456 +#: library/socket.rst:496 msgid "" "CAN_ISOTP, in the CAN protocol family, is the ISO-TP (ISO 15765-2) protocol. " "ISO-TP constants, documented in the Linux documentation." msgstr "" -#: library/socket.rst:465 +#: library/socket.rst:505 msgid "" "CAN_J1939, in the CAN protocol family, is the SAE J1939 protocol. J1939 " "constants, documented in the Linux documentation." msgstr "" -#: library/socket.rst:468 +#: library/socket.rst:508 msgid ":ref:`Availability `: Linux >= 5.4." msgstr "" -#: library/socket.rst:491 +#: library/socket.rst:516 +msgid "" +"These two constants, documented in the FreeBSD divert(4) manual page, are " +"also defined in the socket module." +msgstr "" + +#: library/socket.rst:519 +msgid ":ref:`Availability `: FreeBSD >= 14.0." +msgstr "" + +#: library/socket.rst:536 +msgid "" +":data:`!ETH_P_ALL` can be used in the :class:`~socket.socket` constructor as " +"*proto* for the :const:`AF_PACKET` family in order to capture every packet, " +"regardless of protocol." +msgstr "" + +#: library/socket.rst:540 +msgid "For more information, see the :manpage:`packet(7)` manpage." +msgstr "" + +#: library/socket.rst:542 +msgid ":ref:`Availability `: Linux." +msgstr "" + +#: library/socket.rst:555 msgid ":ref:`Availability `: Linux >= 2.6.30." msgstr "" -#: library/socket.rst:501 +#: library/socket.rst:565 msgid "" "Constants for Windows' WSAIoctl(). The constants are used as arguments to " "the :meth:`~socket.socket.ioctl` method of socket objects." msgstr "" -#: library/socket.rst:1458 +#: library/socket.rst:1557 msgid "``SIO_LOOPBACK_FAST_PATH`` was added." msgstr "" -#: library/socket.rst:510 +#: library/socket.rst:574 msgid "" "TIPC related constants, matching the ones exported by the C socket API. See " "the TIPC documentation for more information." msgstr "" -#: library/socket.rst:517 +#: library/socket.rst:581 msgid "Constants for Linux Kernel cryptography." msgstr "" -#: library/socket.rst:529 +#: library/socket.rst:593 msgid "Constants for Linux host/guest communication." msgstr "" -#: library/socket.rst:531 +#: library/socket.rst:595 msgid ":ref:`Availability `: Linux >= 4.8." msgstr "" -#: library/socket.rst:537 +#: library/socket.rst:601 msgid ":ref:`Availability `: BSD, macOS." msgstr "" -#: library/socket.rst:543 +#: library/socket.rst:607 msgid "" "This constant contains a boolean value which indicates if IPv6 is supported " "on this platform." msgstr "" -#: library/socket.rst:549 +#: library/socket.rst:613 msgid "" "These are string constants containing Bluetooth addresses with special " "meanings. For example, :const:`BDADDR_ANY` can be used to indicate any " "address when specifying the binding socket with :const:`BTPROTO_RFCOMM`." msgstr "" -#: library/socket.rst:558 +#: library/socket.rst:622 msgid "" "For use with :const:`BTPROTO_HCI`. :const:`HCI_FILTER` is not available for " "NetBSD or DragonFlyBSD. :const:`HCI_TIME_STAMP` and :const:`HCI_DATA_DIR` " "are not available for FreeBSD, NetBSD, or DragonFlyBSD." msgstr "" -#: library/socket.rst:565 +#: library/socket.rst:629 msgid "" "Constant for Qualcomm's IPC router protocol, used to communicate with " "service providing remote processors." msgstr "" -#: library/socket.rst:574 +#: library/socket.rst:638 msgid "" "LOCAL_CREDS and LOCAL_CREDS_PERSISTENT can be used with SOCK_DGRAM, " "SOCK_STREAM sockets, equivalent to Linux/DragonFlyBSD SO_PASSCRED, while " @@ -714,30 +807,48 @@ msgid "" "message type." msgstr "" -#: library/socket.rst:583 +#: library/socket.rst:647 msgid ":ref:`Availability `: FreeBSD." msgstr "" -#: library/socket.rst:587 +#: library/socket.rst:651 msgid "" "Constant to optimize CPU locality, to be used in conjunction with :data:" "`SO_REUSEPORT`." msgstr "" -#: library/socket.rst:595 +#: library/socket.rst:671 +msgid "Constants for Windows Hyper-V sockets for host/guest communications." +msgstr "" + +#: library/socket.rst:880 library/socket.rst:1971 +msgid ":ref:`Availability `: Windows." +msgstr "" + +#: library/socket.rst:684 +msgid "" +"`IEEE 802.3 protocol number `_. constants." +msgstr "" + +#: library/socket.rst:688 +msgid ":ref:`Availability `: Linux, FreeBSD, macOS." +msgstr "" + +#: library/socket.rst:694 msgid "Functions" msgstr "" -#: library/socket.rst:598 +#: library/socket.rst:697 msgid "Creating sockets" msgstr "" -#: library/socket.rst:600 +#: library/socket.rst:699 msgid "" "The following functions all create :ref:`socket objects `." msgstr "" -#: library/socket.rst:605 +#: library/socket.rst:704 msgid "" "Create a new socket using the given address family, socket type and protocol " "number. The address family should be :const:`AF_INET` (the default), :const:" @@ -750,7 +861,7 @@ msgid "" "`CAN_J1939`." msgstr "" -#: library/socket.rst:615 +#: library/socket.rst:714 msgid "" "If *fileno* is specified, the values for *family*, *type*, and *proto* are " "auto-detected from the specified file descriptor. Auto-detection can be " @@ -761,54 +872,54 @@ msgid "" "This may help close a detached socket using :meth:`socket.close()`." msgstr "" -#: library/socket.rst:770 library/socket.rst:1371 +#: library/socket.rst:869 library/socket.rst:1470 msgid "The newly created socket is :ref:`non-inheritable `." msgstr "" -#: library/socket.rst:637 +#: library/socket.rst:736 msgid "" "Raises an :ref:`auditing event ` ``socket.__new__`` with arguments " "``self``, ``family``, ``type``, ``protocol``." msgstr "" -#: library/socket.rst:628 +#: library/socket.rst:727 msgid "The AF_CAN family was added. The AF_RDS family was added." msgstr "" -#: library/socket.rst:632 +#: library/socket.rst:731 msgid "The CAN_BCM protocol was added." msgstr "" -#: library/socket.rst:772 +#: library/socket.rst:871 msgid "The returned socket is now non-inheritable." msgstr "" -#: library/socket.rst:638 +#: library/socket.rst:737 msgid "The CAN_ISOTP protocol was added." msgstr "" -#: library/socket.rst:641 +#: library/socket.rst:740 msgid "" "When :const:`SOCK_NONBLOCK` or :const:`SOCK_CLOEXEC` bit flags are applied " "to *type* they are cleared, and :attr:`socket.type` will not reflect them. " "They are still passed to the underlying system ``socket()`` call. Therefore," msgstr "" -#: library/socket.rst:653 +#: library/socket.rst:752 msgid "" "will still create a non-blocking socket on OSes that support " "``SOCK_NONBLOCK``, but ``sock.type`` will be set to ``socket.SOCK_STREAM``." msgstr "" -#: library/socket.rst:657 +#: library/socket.rst:756 msgid "The CAN_J1939 protocol was added." msgstr "" -#: library/socket.rst:660 +#: library/socket.rst:759 msgid "The IPPROTO_MPTCP protocol was added." msgstr "" -#: library/socket.rst:665 +#: library/socket.rst:764 msgid "" "Build a pair of connected socket objects using the given address family, " "socket type, and protocol number. Address family, socket type, and protocol " @@ -817,25 +928,25 @@ msgid "" "`AF_INET`." msgstr "" -#: library/socket.rst:670 +#: library/socket.rst:769 msgid "The newly created sockets are :ref:`non-inheritable `." msgstr "" -#: library/socket.rst:672 +#: library/socket.rst:771 msgid "" "The returned socket objects now support the whole socket API, rather than a " "subset." msgstr "" -#: library/socket.rst:676 +#: library/socket.rst:775 msgid "The returned sockets are now non-inheritable." msgstr "" -#: library/socket.rst:679 +#: library/socket.rst:778 msgid "Windows support added." msgstr "" -#: library/socket.rst:685 +#: library/socket.rst:784 msgid "" "Connect to a TCP service listening on the internet *address* (a 2-tuple " "``(host, port)``), and return the socket object. This is a higher-level " @@ -846,21 +957,21 @@ msgid "" "IPv4 and IPv6." msgstr "" -#: library/socket.rst:693 +#: library/socket.rst:792 msgid "" "Passing the optional *timeout* parameter will set the timeout on the socket " "instance before attempting to connect. If no *timeout* is supplied, the " "global default timeout setting returned by :func:`getdefaulttimeout` is used." msgstr "" -#: library/socket.rst:698 +#: library/socket.rst:797 msgid "" "If supplied, *source_address* must be a 2-tuple ``(host, port)`` for the " "socket to bind to as its source address before connecting. If host or port " "are '' or 0 respectively the OS default behavior will be used." msgstr "" -#: library/socket.rst:702 +#: library/socket.rst:801 msgid "" "When a connection cannot be created, an exception is raised. By default, it " "is the exception from the last address in the list. If *all_errors* is " @@ -868,21 +979,21 @@ msgid "" "attempts." msgstr "" -#: library/socket.rst:707 +#: library/socket.rst:806 msgid "*source_address* was added." msgstr "" -#: library/socket.rst:710 +#: library/socket.rst:809 msgid "*all_errors* was added." msgstr "" -#: library/socket.rst:716 +#: library/socket.rst:815 msgid "" "Convenience function which creates a TCP socket bound to *address* (a 2-" -"tuple ``(host, port)``) and return the socket object." +"tuple ``(host, port)``) and returns the socket object." msgstr "" -#: library/socket.rst:719 +#: library/socket.rst:818 msgid "" "*family* should be either :data:`AF_INET` or :data:`AF_INET6`. *backlog* is " "the queue size passed to :meth:`socket.listen`; if not specified , a default " @@ -890,7 +1001,7 @@ msgid "" "`SO_REUSEPORT` socket option." msgstr "" -#: library/socket.rst:724 +#: library/socket.rst:823 msgid "" "If *dualstack_ipv6* is true and the platform supports it the socket will be " "able to accept both IPv4 and IPv6 connections, else it will raise :exc:" @@ -903,20 +1014,20 @@ msgid "" "func:`has_dualstack_ipv6`:" msgstr "" -#: library/socket.rst:746 +#: library/socket.rst:845 msgid "" "On POSIX platforms the :data:`SO_REUSEADDR` socket option is set in order to " "immediately reuse previous sockets which were bound on the same *address* " "and remained in TIME_WAIT state." msgstr "" -#: library/socket.rst:754 +#: library/socket.rst:853 msgid "" "Return ``True`` if the platform supports creating a TCP socket which can " "handle both IPv4 and IPv6 connections." msgstr "" -#: library/socket.rst:761 +#: library/socket.rst:860 msgid "" "Duplicate the file descriptor *fd* (an integer as returned by a file " "object's :meth:`fileno` method) and build a socket object from the result. " @@ -929,38 +1040,34 @@ msgid "" "socket is assumed to be in blocking mode." msgstr "" -#: library/socket.rst:778 +#: library/socket.rst:877 msgid "" "Instantiate a socket from data obtained from the :meth:`socket.share` " "method. The socket is assumed to be in blocking mode." msgstr "" -#: library/socket.rst:1872 -msgid ":ref:`Availability `: Windows." -msgstr "" - -#: library/socket.rst:788 +#: library/socket.rst:887 msgid "" "This is a Python type object that represents the socket object type. It is " "the same as ``type(socket(...))``." msgstr "" -#: library/socket.rst:793 +#: library/socket.rst:892 msgid "Other functions" msgstr "" -#: library/socket.rst:795 +#: library/socket.rst:894 msgid "The :mod:`socket` module also offers various network-related services:" msgstr "" -#: library/socket.rst:800 +#: library/socket.rst:899 msgid "" "Close a socket file descriptor. This is like :func:`os.close`, but for " "sockets. On some platforms (most noticeable Windows) :func:`os.close` does " "not work for socket file descriptors." msgstr "" -#: library/socket.rst:808 +#: library/socket.rst:907 msgid "" "Translate the *host*/*port* argument into a sequence of 5-tuples that " "contain all the necessary arguments for creating a socket connected to that " @@ -970,7 +1077,7 @@ msgid "" "and *port*, you can pass ``NULL`` to the underlying C API." msgstr "" -#: library/socket.rst:815 +#: library/socket.rst:914 msgid "" "The *family*, *type* and *proto* arguments can be optionally specified in " "order to narrow the list of addresses returned. Passing zero as a value for " @@ -981,15 +1088,15 @@ msgid "" "domain name." msgstr "" -#: library/socket.rst:823 +#: library/socket.rst:922 msgid "The function returns a list of 5-tuples with the following structure:" msgstr "" -#: library/socket.rst:825 +#: library/socket.rst:924 msgid "``(family, type, proto, canonname, sockaddr)``" msgstr "" -#: library/socket.rst:827 +#: library/socket.rst:926 msgid "" "In these tuples, *family*, *type*, *proto* are all integers and are meant to " "be passed to the :func:`.socket` function. *canonname* will be a string " @@ -1001,30 +1108,30 @@ msgid "" "be passed to the :meth:`socket.connect` method." msgstr "" -#: library/socket.rst:848 +#: library/socket.rst:947 msgid "" "Raises an :ref:`auditing event ` ``socket.getaddrinfo`` with " "arguments ``host``, ``port``, ``family``, ``type``, ``protocol``." msgstr "" -#: library/socket.rst:839 +#: library/socket.rst:938 msgid "" "The following example fetches address information for a hypothetical TCP " "connection to ``example.org`` on port 80 (results may differ on your system " "if IPv6 isn't enabled)::" msgstr "" -#: library/socket.rst:849 +#: library/socket.rst:948 msgid "parameters can now be passed using keyword arguments." msgstr "" -#: library/socket.rst:852 +#: library/socket.rst:951 msgid "" "for IPv6 multicast addresses, string representing an address will not " "contain ``%scope_id`` part." msgstr "" -#: library/socket.rst:858 +#: library/socket.rst:957 msgid "" "Return a fully qualified domain name for *name*. If *name* is omitted or " "empty, it is interpreted as the local host. To find the fully qualified " @@ -1035,7 +1142,7 @@ msgid "" "``'0.0.0.0'``, the hostname from :func:`gethostname` is returned." msgstr "" -#: library/socket.rst:869 +#: library/socket.rst:968 msgid "" "Translate a host name to IPv4 address format. The IPv4 address is returned " "as a string, such as ``'100.50.200.5'``. If the host name is an IPv4 " @@ -1045,19 +1152,19 @@ msgid "" "stack support." msgstr "" -#: library/socket.rst:902 +#: library/socket.rst:1001 msgid "" "Raises an :ref:`auditing event ` ``socket.gethostbyname`` with " "argument ``hostname``." msgstr "" -#: library/socket.rst:893 library/socket.rst:921 library/socket.rst:949 -#: library/socket.rst:971 library/socket.rst:1342 library/socket.rst:1376 -#: library/socket.rst:1468 library/socket.rst:1860 +#: library/socket.rst:992 library/socket.rst:1020 library/socket.rst:1048 +#: library/socket.rst:1070 library/socket.rst:1441 library/socket.rst:1475 +#: library/socket.rst:1567 library/socket.rst:1959 msgid ":ref:`Availability `: not WASI." msgstr "" -#: library/socket.rst:882 +#: library/socket.rst:981 msgid "" "Translate a host name to IPv4 address format, extended interface. Return a 3-" "tuple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is the host's " @@ -1069,25 +1176,25 @@ msgid "" "stack support." msgstr "" -#: library/socket.rst:898 +#: library/socket.rst:997 msgid "" "Return a string containing the hostname of the machine where the Python " "interpreter is currently executing." msgstr "" -#: library/socket.rst:912 +#: library/socket.rst:1011 msgid "" "Raises an :ref:`auditing event ` ``socket.gethostname`` with no " "arguments." msgstr "" -#: library/socket.rst:903 +#: library/socket.rst:1002 msgid "" "Note: :func:`gethostname` doesn't always return the fully qualified domain " "name; use :func:`getfqdn` for that." msgstr "" -#: library/socket.rst:911 +#: library/socket.rst:1010 msgid "" "Return a 3-tuple ``(hostname, aliaslist, ipaddrlist)`` where *hostname* is " "the primary host name responding to the given *ip_address*, *aliaslist* is a " @@ -1098,13 +1205,13 @@ msgid "" "`gethostbyaddr` supports both IPv4 and IPv6." msgstr "" -#: library/socket.rst:930 +#: library/socket.rst:1029 msgid "" "Raises an :ref:`auditing event ` ``socket.gethostbyaddr`` with " "argument ``ip_address``." msgstr "" -#: library/socket.rst:926 +#: library/socket.rst:1025 msgid "" "Translate a socket address *sockaddr* into a 2-tuple ``(host, port)``. " "Depending on the settings of *flags*, the result can contain a fully " @@ -1112,24 +1219,24 @@ msgid "" "Similarly, *port* can contain a string port name or a numeric port number." msgstr "" -#: library/socket.rst:931 +#: library/socket.rst:1030 msgid "" "For IPv6 addresses, ``%scope_id`` is appended to the host part if *sockaddr* " "contains meaningful *scope_id*. Usually this happens for multicast addresses." msgstr "" -#: library/socket.rst:934 +#: library/socket.rst:1033 msgid "" "For more information about *flags* you can consult :manpage:`getnameinfo(3)`." msgstr "" -#: library/socket.rst:947 +#: library/socket.rst:1046 msgid "" "Raises an :ref:`auditing event ` ``socket.getnameinfo`` with " "argument ``sockaddr``." msgstr "" -#: library/socket.rst:943 +#: library/socket.rst:1042 msgid "" "Translate an internet protocol name (for example, ``'icmp'``) to a constant " "suitable for passing as the (optional) third argument to the :func:`.socket` " @@ -1138,66 +1245,66 @@ msgid "" "chosen automatically if the protocol is omitted or zero." msgstr "" -#: library/socket.rst:954 +#: library/socket.rst:1053 msgid "" "Translate an internet service name and protocol name to a port number for " "that service. The optional protocol name, if given, should be ``'tcp'`` or " "``'udp'``, otherwise any protocol will match." msgstr "" -#: library/socket.rst:969 +#: library/socket.rst:1068 msgid "" "Raises an :ref:`auditing event ` ``socket.getservbyname`` with " "arguments ``servicename``, ``protocolname``." msgstr "" -#: library/socket.rst:965 +#: library/socket.rst:1064 msgid "" "Translate an internet port number and protocol name to a service name for " "that service. The optional protocol name, if given, should be ``'tcp'`` or " "``'udp'``, otherwise any protocol will match." msgstr "" -#: library/socket.rst:980 +#: library/socket.rst:1079 msgid "" "Raises an :ref:`auditing event ` ``socket.getservbyport`` with " "arguments ``port``, ``protocolname``." msgstr "" -#: library/socket.rst:976 +#: library/socket.rst:1075 msgid "" "Convert 32-bit positive integers from network to host byte order. On " "machines where the host byte order is the same as network byte order, this " "is a no-op; otherwise, it performs a 4-byte swap operation." msgstr "" -#: library/socket.rst:983 +#: library/socket.rst:1082 msgid "" "Convert 16-bit positive integers from network to host byte order. On " "machines where the host byte order is the same as network byte order, this " "is a no-op; otherwise, it performs a 2-byte swap operation." msgstr "" -#: library/socket.rst:1005 +#: library/socket.rst:1104 msgid "" "Raises :exc:`OverflowError` if *x* does not fit in a 16-bit unsigned integer." msgstr "" -#: library/socket.rst:994 +#: library/socket.rst:1093 msgid "" "Convert 32-bit positive integers from host to network byte order. On " "machines where the host byte order is the same as network byte order, this " "is a no-op; otherwise, it performs a 4-byte swap operation." msgstr "" -#: library/socket.rst:1001 +#: library/socket.rst:1100 msgid "" "Convert 16-bit positive integers from host to network byte order. On " "machines where the host byte order is the same as network byte order, this " "is a no-op; otherwise, it performs a 2-byte swap operation." msgstr "" -#: library/socket.rst:1012 +#: library/socket.rst:1111 msgid "" "Convert an IPv4 address from dotted-quad string format (for example, " "'123.45.67.89') to 32-bit packed binary format, as a bytes object four " @@ -1206,26 +1313,26 @@ msgid "" "which is the C type for the 32-bit packed binary this function returns." msgstr "" -#: library/socket.rst:1018 +#: library/socket.rst:1117 msgid "" ":func:`inet_aton` also accepts strings with less than three dots; see the " "Unix manual page :manpage:`inet(3)` for details." msgstr "" -#: library/socket.rst:1021 +#: library/socket.rst:1120 msgid "" "If the IPv4 address string passed to this function is invalid, :exc:" "`OSError` will be raised. Note that exactly what is valid depends on the " "underlying C implementation of :c:func:`inet_aton`." msgstr "" -#: library/socket.rst:1025 +#: library/socket.rst:1124 msgid "" ":func:`inet_aton` does not support IPv6, and :func:`inet_pton` should be " "used instead for IPv4/v6 dual stack support." msgstr "" -#: library/socket.rst:1031 +#: library/socket.rst:1130 msgid "" "Convert a 32-bit packed IPv4 address (a :term:`bytes-like object` four bytes " "in length) to its standard dotted-quad string representation (for example, " @@ -1235,7 +1342,7 @@ msgid "" "argument." msgstr "" -#: library/socket.rst:1038 +#: library/socket.rst:1137 msgid "" "If the byte sequence passed to this function is not exactly 4 bytes in " "length, :exc:`OSError` will be raised. :func:`inet_ntoa` does not support " @@ -1243,7 +1350,7 @@ msgid "" "support." msgstr "" -#: library/socket.rst:1049 +#: library/socket.rst:1148 msgid "" "Convert an IP address from its family-specific string format to a packed, " "binary format. :func:`inet_pton` is useful when a library or network " @@ -1251,7 +1358,7 @@ msgid "" "`inet_aton`) or :c:struct:`in6_addr`." msgstr "" -#: library/socket.rst:1054 +#: library/socket.rst:1153 msgid "" "Supported values for *address_family* are currently :const:`AF_INET` and :" "const:`AF_INET6`. If the IP address string *ip_string* is invalid, :exc:" @@ -1260,15 +1367,15 @@ msgid "" "`inet_pton`." msgstr "" -#: library/socket.rst:1080 +#: library/socket.rst:1179 msgid ":ref:`Availability `: Unix, Windows." msgstr "" -#: library/socket.rst:1082 +#: library/socket.rst:1181 msgid "Windows support added" msgstr "" -#: library/socket.rst:1068 +#: library/socket.rst:1167 msgid "" "Convert a packed IP address (a :term:`bytes-like object` of some number of " "bytes) to its standard, family-specific string representation (for example, " @@ -1277,7 +1384,7 @@ msgid "" "(similar to :func:`inet_ntoa`) or :c:struct:`in6_addr`." msgstr "" -#: library/socket.rst:1075 +#: library/socket.rst:1174 msgid "" "Supported values for *address_family* are currently :const:`AF_INET` and :" "const:`AF_INET6`. If the bytes object *packed_ip* is not the correct length " @@ -1285,7 +1392,7 @@ msgid "" "`OSError` is raised for errors from the call to :func:`inet_ntop`." msgstr "" -#: library/socket.rst:1097 +#: library/socket.rst:1196 msgid "" "Return the total length, without trailing padding, of an ancillary data item " "with associated data of the given *length*. This value can often be used as " @@ -1296,15 +1403,15 @@ msgid "" "the permissible range of values." msgstr "" -#: library/socket.rst:1129 +#: library/socket.rst:1228 msgid ":ref:`Availability `: Unix, not Emscripten, not WASI." msgstr "" -#: library/socket.rst:1598 library/socket.rst:1750 +#: library/socket.rst:1697 library/socket.rst:1849 msgid "Most Unix platforms." msgstr "" -#: library/socket.rst:1115 +#: library/socket.rst:1214 msgid "" "Return the buffer size needed for :meth:`~socket.recvmsg` to receive an " "ancillary data item with associated data of the given *length*, along with " @@ -1314,7 +1421,7 @@ msgid "" "values." msgstr "" -#: library/socket.rst:1123 +#: library/socket.rst:1222 msgid "" "Note that some systems might support ancillary data without providing this " "function. Also note that setting the buffer size using the results of this " @@ -1322,140 +1429,140 @@ msgid "" "received, since additional data may be able to fit into the padding area." msgstr "" -#: library/socket.rst:1131 +#: library/socket.rst:1230 msgid "most Unix platforms." msgstr "" -#: library/socket.rst:1138 +#: library/socket.rst:1237 msgid "" "Return the default timeout in seconds (float) for new socket objects. A " "value of ``None`` indicates that new socket objects have no timeout. When " "the socket module is first imported, the default is ``None``." msgstr "" -#: library/socket.rst:1145 +#: library/socket.rst:1244 msgid "" "Set the default timeout in seconds (float) for new socket objects. When the " "socket module is first imported, the default is ``None``. See :meth:" "`~socket.settimeout` for possible values and their respective meanings." msgstr "" -#: library/socket.rst:1153 +#: library/socket.rst:1252 msgid "" "Set the machine's hostname to *name*. This will raise an :exc:`OSError` if " "you don't have enough rights." msgstr "" -#: library/socket.rst:1167 +#: library/socket.rst:1266 msgid "" "Raises an :ref:`auditing event ` ``socket.sethostname`` with " "argument ``name``." msgstr "" -#: library/socket.rst:1596 library/socket.rst:1640 +#: library/socket.rst:1695 library/socket.rst:1739 msgid ":ref:`Availability `: Unix." msgstr "" -#: library/socket.rst:1165 +#: library/socket.rst:1264 msgid "" "Return a list of network interface information (index int, name string) " "tuples. :exc:`OSError` if the system call fails." msgstr "" -#: library/socket.rst:1196 library/socket.rst:1230 library/socket.rst:1244 +#: library/socket.rst:1295 library/socket.rst:1329 library/socket.rst:1343 msgid "" ":ref:`Availability `: Unix, Windows, not Emscripten, not WASI." msgstr "" -#: library/socket.rst:1200 library/socket.rst:1217 +#: library/socket.rst:1299 library/socket.rst:1316 msgid "Windows support was added." msgstr "" -#: library/socket.rst:1178 +#: library/socket.rst:1277 msgid "" "On Windows network interfaces have different names in different contexts " "(all names are examples):" msgstr "" -#: library/socket.rst:1181 +#: library/socket.rst:1280 msgid "UUID: ``{FB605B73-AAC2-49A6-9A2F-25416AEA0573}``" msgstr "" -#: library/socket.rst:1182 +#: library/socket.rst:1281 msgid "name: ``ethernet_32770``" msgstr "" -#: library/socket.rst:1183 +#: library/socket.rst:1282 msgid "friendly name: ``vEthernet (nat)``" msgstr "" -#: library/socket.rst:1184 +#: library/socket.rst:1283 msgid "description: ``Hyper-V Virtual Ethernet Adapter``" msgstr "" -#: library/socket.rst:1186 +#: library/socket.rst:1285 msgid "" "This function returns names of the second form from the list, " "``ethernet_32770`` in this example case." msgstr "" -#: library/socket.rst:1192 +#: library/socket.rst:1291 msgid "" "Return a network interface index number corresponding to an interface name. :" "exc:`OSError` if no interface with the given name exists." msgstr "" -#: library/socket.rst:1221 +#: library/socket.rst:1320 msgid "\"Interface name\" is a name as documented in :func:`if_nameindex`." msgstr "" -#: library/socket.rst:1209 +#: library/socket.rst:1308 msgid "" "Return a network interface name corresponding to an interface index number. :" "exc:`OSError` if no interface with the given index exists." msgstr "" -#: library/socket.rst:1226 +#: library/socket.rst:1325 msgid "" "Send the list of file descriptors *fds* over an :const:`AF_UNIX` socket " "*sock*. The *fds* parameter is a sequence of file descriptors. Consult :meth:" "`sendmsg` for the documentation of these parameters." msgstr "" -#: library/socket.rst:1246 +#: library/socket.rst:1345 msgid "" "Unix platforms supporting :meth:`~socket.sendmsg` and :const:`SCM_RIGHTS` " "mechanism." msgstr "" -#: library/socket.rst:1240 +#: library/socket.rst:1339 msgid "" "Receive up to *maxfds* file descriptors from an :const:`AF_UNIX` socket " "*sock*. Return ``(msg, list(fds), flags, addr)``. Consult :meth:`recvmsg` " "for the documentation of these parameters." msgstr "" -#: library/socket.rst:1253 +#: library/socket.rst:1352 msgid "Any truncated integers at the end of the list of file descriptors." msgstr "" -#: library/socket.rst:1259 +#: library/socket.rst:1358 msgid "Socket Objects" msgstr "" -#: library/socket.rst:1261 +#: library/socket.rst:1360 msgid "" "Socket objects have the following methods. Except for :meth:`~socket." "makefile`, these correspond to Unix system calls applicable to sockets." msgstr "" -#: library/socket.rst:1265 +#: library/socket.rst:1364 msgid "" "Support for the :term:`context manager` protocol was added. Exiting the " "context manager is equivalent to calling :meth:`~socket.close`." msgstr "" -#: library/socket.rst:1272 +#: library/socket.rst:1371 msgid "" "Accept a connection. The socket must be bound to an address and listening " "for connections. The return value is a pair ``(conn, address)`` where *conn* " @@ -1464,31 +1571,31 @@ msgid "" "connection." msgstr "" -#: library/socket.rst:1373 +#: library/socket.rst:1472 msgid "The socket is now non-inheritable." msgstr "" -#: library/socket.rst:1511 library/socket.rst:1602 library/socket.rst:1694 -#: library/socket.rst:1756 +#: library/socket.rst:1610 library/socket.rst:1701 library/socket.rst:1793 +#: library/socket.rst:1855 msgid "" "If the system call is interrupted and the signal handler does not raise an " "exception, the method now retries the system call instead of raising an :exc:" "`InterruptedError` exception (see :pep:`475` for the rationale)." msgstr "" -#: library/socket.rst:1290 +#: library/socket.rst:1389 msgid "" "Bind the socket to *address*. The socket must not already be bound. (The " "format of *address* depends on the address family --- see above.)" msgstr "" -#: library/socket.rst:1304 +#: library/socket.rst:1403 msgid "" "Raises an :ref:`auditing event ` ``socket.bind`` with arguments " "``self``, ``address``." msgstr "" -#: library/socket.rst:1300 +#: library/socket.rst:1399 msgid "" "Mark the socket closed. The underlying system resource (e.g. a file " "descriptor) is also closed when all file objects from :meth:`makefile()` are " @@ -1497,20 +1604,20 @@ msgid "" "flushed)." msgstr "" -#: library/socket.rst:1306 +#: library/socket.rst:1405 msgid "" "Sockets are automatically closed when they are garbage-collected, but it is " "recommended to :meth:`close` them explicitly, or to use a :keyword:`with` " "statement around them." msgstr "" -#: library/socket.rst:1310 +#: library/socket.rst:1409 msgid "" ":exc:`OSError` is now raised if an error occurs when the underlying :c:func:" "`close` call is made." msgstr "" -#: library/socket.rst:1316 +#: library/socket.rst:1415 msgid "" ":meth:`close()` releases the resource associated with a connection but does " "not necessarily close the connection immediately. If you want to close the " @@ -1518,13 +1625,13 @@ msgid "" "`close()`." msgstr "" -#: library/socket.rst:1324 +#: library/socket.rst:1423 msgid "" "Connect to a remote socket at *address*. (The format of *address* depends on " "the address family --- see above.)" msgstr "" -#: library/socket.rst:1327 +#: library/socket.rst:1426 msgid "" "If the connection is interrupted by a signal, the method waits until the " "connection completes, or raise a :exc:`TimeoutError` on timeout, if the " @@ -1534,13 +1641,13 @@ msgid "" "(or the exception raised by the signal handler)." msgstr "" -#: library/socket.rst:1365 +#: library/socket.rst:1464 msgid "" "Raises an :ref:`auditing event ` ``socket.connect`` with arguments " "``self``, ``address``." msgstr "" -#: library/socket.rst:1336 +#: library/socket.rst:1435 msgid "" "The method now waits until the connection completes instead of raising an :" "exc:`InterruptedError` exception if the connection is interrupted by a " @@ -1548,7 +1655,7 @@ msgid "" "blocking or has a timeout (see the :pep:`475` for the rationale)." msgstr "" -#: library/socket.rst:1347 +#: library/socket.rst:1446 msgid "" "Like ``connect(address)``, but return an error indicator instead of raising " "an exception for errors returned by the C-level :c:func:`connect` call " @@ -1558,38 +1665,38 @@ msgid "" "asynchronous connects." msgstr "" -#: library/socket.rst:1360 +#: library/socket.rst:1459 msgid "" "Put the socket object into closed state without actually closing the " "underlying file descriptor. The file descriptor is returned, and can be " "reused for other purposes." msgstr "" -#: library/socket.rst:1369 +#: library/socket.rst:1468 msgid "Duplicate the socket." msgstr "" -#: library/socket.rst:1381 +#: library/socket.rst:1480 msgid "" "Return the socket's file descriptor (a small integer), or -1 on failure. " "This is useful with :func:`select.select`." msgstr "" -#: library/socket.rst:1384 +#: library/socket.rst:1483 msgid "" "Under Windows the small integer returned by this method cannot be used where " "a file descriptor can be used (such as :func:`os.fdopen`). Unix does not " "have this limitation." msgstr "" -#: library/socket.rst:1390 +#: library/socket.rst:1489 msgid "" "Get the :ref:`inheritable flag ` of the socket's file " "descriptor or socket's handle: ``True`` if the socket can be inherited in " "child processes, ``False`` if it cannot." msgstr "" -#: library/socket.rst:1399 +#: library/socket.rst:1498 msgid "" "Return the remote address to which the socket is connected. This is useful " "to find out the port number of a remote IPv4/v6 socket, for instance. (The " @@ -1597,14 +1704,14 @@ msgid "" "above.) On some systems this function is not supported." msgstr "" -#: library/socket.rst:1407 +#: library/socket.rst:1506 msgid "" "Return the socket's own address. This is useful to find out the port number " "of an IPv4/v6 socket, for instance. (The format of the address returned " "depends on the address family --- see above.)" msgstr "" -#: library/socket.rst:1414 +#: library/socket.rst:1513 msgid "" "Return the value of the given socket option (see the Unix man page :manpage:" "`getsockopt(2)`). The needed symbolic constants (:const:`SO_\\*` etc.) are " @@ -1616,16 +1723,16 @@ msgid "" "`struct` for a way to decode C structures encoded as byte strings)." msgstr "" -#: library/socket.rst:1428 +#: library/socket.rst:1527 msgid "" "Return ``True`` if socket is in blocking mode, ``False`` if in non-blocking." msgstr "" -#: library/socket.rst:1431 +#: library/socket.rst:1530 msgid "This is equivalent to checking ``socket.gettimeout() != 0``." msgstr "" -#: library/socket.rst:1438 +#: library/socket.rst:1537 msgid "" "Return the timeout in seconds (float) associated with socket operations, or " "``None`` if no timeout is set. This reflects the last call to :meth:" @@ -1636,30 +1743,30 @@ msgstr "" msgid "platform" msgstr "" -#: library/socket.rst:1445 +#: library/socket.rst:1544 msgid "Windows" msgstr "" -#: library/socket.rst:1447 +#: library/socket.rst:1546 msgid "" "The :meth:`ioctl` method is a limited interface to the WSAIoctl system " "interface. Please refer to the `Win32 documentation `_ for more information." msgstr "" -#: library/socket.rst:1452 +#: library/socket.rst:1551 msgid "" "On other platforms, the generic :func:`fcntl.fcntl` and :func:`fcntl.ioctl` " "functions may be used; they accept a socket object as their first argument." msgstr "" -#: library/socket.rst:1455 +#: library/socket.rst:1554 msgid "" "Currently only the following control codes are supported: ``SIO_RCVALL``, " "``SIO_KEEPALIVE_VALS``, and ``SIO_LOOPBACK_FAST_PATH``." msgstr "" -#: library/socket.rst:1463 +#: library/socket.rst:1562 msgid "" "Enable a server to accept connections. If *backlog* is specified, it must " "be at least 0 (if it is lower, it is set to 0); it specifies the number of " @@ -1667,11 +1774,11 @@ msgid "" "connections. If not specified, a default reasonable value is chosen." msgstr "" -#: library/socket.rst:1470 +#: library/socket.rst:1569 msgid "The *backlog* parameter is now optional." msgstr "" -#: library/socket.rst:1479 +#: library/socket.rst:1578 msgid "" "Return a :term:`file object` associated with the socket. The exact returned " "type depends on the arguments given to :meth:`makefile`. These arguments " @@ -1680,28 +1787,28 @@ msgid "" "``'b'``." msgstr "" -#: library/socket.rst:1484 +#: library/socket.rst:1583 msgid "" "The socket must be in blocking mode; it can have a timeout, but the file " "object's internal buffer may end up in an inconsistent state if a timeout " "occurs." msgstr "" -#: library/socket.rst:1488 +#: library/socket.rst:1587 msgid "" "Closing the file object returned by :meth:`makefile` won't close the " "original socket unless all other file objects have been closed and :meth:" "`socket.close` has been called on the socket object." msgstr "" -#: library/socket.rst:1494 +#: library/socket.rst:1593 msgid "" "On Windows, the file-like object created by :meth:`makefile` cannot be used " "where a file object with a file descriptor is expected, such as the stream " "arguments of :meth:`subprocess.Popen`." msgstr "" -#: library/socket.rst:1501 +#: library/socket.rst:1600 msgid "" "Receive data from the socket. The return value is a bytes object " "representing the data received. The maximum amount of data to be received " @@ -1710,13 +1817,13 @@ msgid "" "zero." msgstr "" -#: library/socket.rst:1508 +#: library/socket.rst:1607 msgid "" "For best match with hardware and network realities, the value of *bufsize* " "should be a relatively small power of 2, for example, 4096." msgstr "" -#: library/socket.rst:1519 +#: library/socket.rst:1618 msgid "" "Receive data from the socket. The return value is a pair ``(bytes, " "address)`` where *bytes* is a bytes object representing the data received " @@ -1726,14 +1833,14 @@ msgid "" "address family --- see above.)" msgstr "" -#: library/socket.rst:1530 +#: library/socket.rst:1629 msgid "" "For multicast IPv6 address, first item of *address* does not contain " "``%scope_id`` part anymore. In order to get full IPv6 address use :func:" "`getnameinfo`." msgstr "" -#: library/socket.rst:1537 +#: library/socket.rst:1636 msgid "" "Receive normal data (up to *bufsize* bytes) and ancillary data from the " "socket. The *ancbufsize* argument sets the size in bytes of the internal " @@ -1744,7 +1851,7 @@ msgid "" "*flags* argument defaults to 0 and has the same meaning as for :meth:`recv`." msgstr "" -#: library/socket.rst:1547 +#: library/socket.rst:1646 msgid "" "The return value is a 4-tuple: ``(data, ancdata, msg_flags, address)``. The " "*data* item is a :class:`bytes` object holding the non-ancillary data " @@ -1759,7 +1866,7 @@ msgid "" "socket, if available; otherwise, its value is unspecified." msgstr "" -#: library/socket.rst:1561 +#: library/socket.rst:1660 msgid "" "On some systems, :meth:`sendmsg` and :meth:`recvmsg` can be used to pass " "file descriptors between processes over an :const:`AF_UNIX` socket. When " @@ -1772,7 +1879,7 @@ msgid "" "descriptors received via this mechanism." msgstr "" -#: library/socket.rst:1572 +#: library/socket.rst:1671 msgid "" "Some systems do not indicate the truncated length of ancillary data items " "which have been only partially received. If an item appears to extend " @@ -1781,7 +1888,7 @@ msgid "" "provided it has not been truncated before the start of its associated data." msgstr "" -#: library/socket.rst:1579 +#: library/socket.rst:1678 msgid "" "On systems which support the :const:`SCM_RIGHTS` mechanism, the following " "function will receive up to *maxfds* file descriptors, returning the message " @@ -1790,7 +1897,7 @@ msgid "" "meth:`sendmsg`. ::" msgstr "" -#: library/socket.rst:1610 +#: library/socket.rst:1709 msgid "" "Receive normal data and ancillary data from the socket, behaving as :meth:" "`recvmsg` would, but scatter the non-ancillary data into a series of buffers " @@ -1803,7 +1910,7 @@ msgid "" "arguments have the same meaning as for :meth:`recvmsg`." msgstr "" -#: library/socket.rst:1621 +#: library/socket.rst:1720 msgid "" "The return value is a 4-tuple: ``(nbytes, ancdata, msg_flags, address)``, " "where *nbytes* is the total number of bytes of non-ancillary data written " @@ -1811,11 +1918,11 @@ msgid "" "for :meth:`recvmsg`." msgstr "" -#: library/socket.rst:1626 +#: library/socket.rst:1725 msgid "Example::" msgstr "" -#: library/socket.rst:1649 +#: library/socket.rst:1748 msgid "" "Receive data from the socket, writing it into *buffer* instead of creating a " "new bytestring. The return value is a pair ``(nbytes, address)`` where " @@ -1825,7 +1932,7 @@ msgid "" "format of *address* depends on the address family --- see above.)" msgstr "" -#: library/socket.rst:1659 +#: library/socket.rst:1758 msgid "" "Receive up to *nbytes* bytes from the socket, storing the data into a buffer " "rather than creating a new bytestring. If *nbytes* is not specified (or 0), " @@ -1834,7 +1941,7 @@ msgid "" "of the optional argument *flags*; it defaults to zero." msgstr "" -#: library/socket.rst:1668 +#: library/socket.rst:1767 msgid "" "Send data to the socket. The socket must be connected to a remote socket. " "The optional *flags* argument has the same meaning as for :meth:`recv` " @@ -1844,7 +1951,7 @@ msgid "" "data. For further information on this topic, consult the :ref:`socket-howto`." msgstr "" -#: library/socket.rst:1683 +#: library/socket.rst:1782 msgid "" "Send data to the socket. The socket must be connected to a remote socket. " "The optional *flags* argument has the same meaning as for :meth:`recv` " @@ -1854,13 +1961,13 @@ msgid "" "to determine how much data, if any, was successfully sent." msgstr "" -#: library/socket.rst:1690 +#: library/socket.rst:1789 msgid "" "The socket timeout is no longer reset each time data is sent successfully. " "The socket timeout is now the maximum total duration to send all data." msgstr "" -#: library/socket.rst:1703 +#: library/socket.rst:1802 msgid "" "Send data to the socket. The socket should not be connected to a remote " "socket, since the destination socket is specified by *address*. The " @@ -1869,13 +1976,13 @@ msgid "" "address family --- see above.)" msgstr "" -#: library/socket.rst:1720 +#: library/socket.rst:1819 msgid "" "Raises an :ref:`auditing event ` ``socket.sendto`` with arguments " "``self``, ``address``." msgstr "" -#: library/socket.rst:1719 +#: library/socket.rst:1818 msgid "" "Send normal and ancillary data to the socket, gathering the non-ancillary " "data from a series of buffers and concatenating it into a single message. " @@ -1895,31 +2002,31 @@ msgid "" "bytes of non-ancillary data sent." msgstr "" -#: library/socket.rst:1739 +#: library/socket.rst:1838 msgid "" "The following function sends the list of file descriptors *fds* over an :" "const:`AF_UNIX` socket, on systems which support the :const:`SCM_RIGHTS` " "mechanism. See also :meth:`recvmsg`. ::" msgstr "" -#: library/socket.rst:1748 +#: library/socket.rst:1847 msgid ":ref:`Availability `: Unix, not WASI." msgstr "" -#: library/socket.rst:1763 +#: library/socket.rst:1862 msgid "" "Raises an :ref:`auditing event ` ``socket.sendmsg`` with arguments " "``self``, ``address``." msgstr "" -#: library/socket.rst:1763 +#: library/socket.rst:1862 msgid "" "Specialized version of :meth:`~socket.sendmsg` for :const:`AF_ALG` socket. " "Set mode, IV, AEAD associated data length and flags for :const:`AF_ALG` " "socket." msgstr "" -#: library/socket.rst:1772 +#: library/socket.rst:1871 msgid "" "Send a file until EOF is reached by using high-performance :mod:`os." "sendfile` and return the total number of bytes which were sent. *file* must " @@ -1933,38 +2040,38 @@ msgid "" "be of :const:`SOCK_STREAM` type. Non-blocking sockets are not supported." msgstr "" -#: library/socket.rst:1788 +#: library/socket.rst:1887 msgid "" "Set the :ref:`inheritable flag ` of the socket's file " "descriptor or socket's handle." msgstr "" -#: library/socket.rst:1796 +#: library/socket.rst:1895 msgid "" "Set blocking or non-blocking mode of the socket: if *flag* is false, the " "socket is set to non-blocking, else to blocking mode." msgstr "" -#: library/socket.rst:1799 +#: library/socket.rst:1898 msgid "" "This method is a shorthand for certain :meth:`~socket.settimeout` calls:" msgstr "" -#: library/socket.rst:1801 +#: library/socket.rst:1900 msgid "``sock.setblocking(True)`` is equivalent to ``sock.settimeout(None)``" msgstr "" -#: library/socket.rst:1803 +#: library/socket.rst:1902 msgid "``sock.setblocking(False)`` is equivalent to ``sock.settimeout(0.0)``" msgstr "" -#: library/socket.rst:1805 +#: library/socket.rst:1904 msgid "" "The method no longer applies :const:`SOCK_NONBLOCK` flag on :attr:`socket." "type`." msgstr "" -#: library/socket.rst:1812 +#: library/socket.rst:1911 msgid "" "Set a timeout on blocking socket operations. The *value* argument can be a " "nonnegative floating point number expressing seconds, or ``None``. If a non-" @@ -1974,19 +2081,19 @@ msgid "" "blocking mode. If ``None`` is given, the socket is put in blocking mode." msgstr "" -#: library/socket.rst:1819 +#: library/socket.rst:1918 msgid "" "For further information, please consult the :ref:`notes on socket timeouts " "`." msgstr "" -#: library/socket.rst:1821 +#: library/socket.rst:1920 msgid "" "The method no longer toggles :const:`SOCK_NONBLOCK` flag on :attr:`socket." "type`." msgstr "" -#: library/socket.rst:1834 +#: library/socket.rst:1933 msgid "" "Set the value of the given socket option (see the Unix manual page :manpage:" "`setsockopt(2)`). The needed symbolic constants are defined in the :mod:" @@ -1999,11 +2106,11 @@ msgid "" "C function with ``optval=NULL`` and ``optlen=optlen``." msgstr "" -#: library/socket.rst:1847 +#: library/socket.rst:1946 msgid "setsockopt(level, optname, None, optlen: int) form added." msgstr "" -#: library/socket.rst:1855 +#: library/socket.rst:1954 msgid "" "Shut down one or both halves of the connection. If *how* is :const:" "`SHUT_RD`, further receives are disallowed. If *how* is :const:`SHUT_WR`, " @@ -2011,7 +2118,7 @@ msgid "" "and receives are disallowed." msgstr "" -#: library/socket.rst:1865 +#: library/socket.rst:1964 msgid "" "Duplicate a socket and prepare it for sharing with a target process. The " "target process must be provided with *process_id*. The resulting bytes " @@ -2022,48 +2129,48 @@ msgid "" "process." msgstr "" -#: library/socket.rst:1877 +#: library/socket.rst:1976 msgid "" "Note that there are no methods :meth:`read` or :meth:`write`; use :meth:" "`~socket.recv` and :meth:`~socket.send` without *flags* argument instead." msgstr "" -#: library/socket.rst:1880 +#: library/socket.rst:1979 msgid "" "Socket objects also have these (read-only) attributes that correspond to the " "values given to the :class:`~socket.socket` constructor." msgstr "" -#: library/socket.rst:1886 +#: library/socket.rst:1985 msgid "The socket family." msgstr "" -#: library/socket.rst:1891 +#: library/socket.rst:1990 msgid "The socket type." msgstr "" -#: library/socket.rst:1896 +#: library/socket.rst:1995 msgid "The socket protocol." msgstr "" -#: library/socket.rst:1903 +#: library/socket.rst:2002 msgid "Notes on socket timeouts" msgstr "" -#: library/socket.rst:1905 +#: library/socket.rst:2004 msgid "" "A socket object can be in one of three modes: blocking, non-blocking, or " "timeout. Sockets are by default always created in blocking mode, but this " "can be changed by calling :func:`setdefaulttimeout`." msgstr "" -#: library/socket.rst:1909 +#: library/socket.rst:2008 msgid "" "In *blocking mode*, operations block until complete or the system returns an " "error (such as connection timed out)." msgstr "" -#: library/socket.rst:1912 +#: library/socket.rst:2011 msgid "" "In *non-blocking mode*, operations fail (with an error that is unfortunately " "system-dependent) if they cannot be completed immediately: functions from " @@ -2071,14 +2178,14 @@ msgid "" "available for reading or writing." msgstr "" -#: library/socket.rst:1917 +#: library/socket.rst:2016 msgid "" "In *timeout mode*, operations fail if they cannot be completed within the " "timeout specified for the socket (they raise a :exc:`timeout` exception) or " "if the system returns an error." msgstr "" -#: library/socket.rst:1922 +#: library/socket.rst:2021 msgid "" "At the operating system level, sockets in *timeout mode* are internally set " "in non-blocking mode. Also, the blocking and timeout modes are shared " @@ -2087,11 +2194,11 @@ msgid "" "you decide to use the :meth:`~socket.fileno()` of a socket." msgstr "" -#: library/socket.rst:1929 +#: library/socket.rst:2028 msgid "Timeouts and the ``connect`` method" msgstr "" -#: library/socket.rst:1931 +#: library/socket.rst:2030 msgid "" "The :meth:`~socket.connect` operation is also subject to the timeout " "setting, and in general it is recommended to call :meth:`~socket.settimeout` " @@ -2101,24 +2208,24 @@ msgid "" "setting." msgstr "" -#: library/socket.rst:1939 +#: library/socket.rst:2038 msgid "Timeouts and the ``accept`` method" msgstr "" -#: library/socket.rst:1941 +#: library/socket.rst:2040 msgid "" "If :func:`getdefaulttimeout` is not :const:`None`, sockets returned by the :" "meth:`~socket.accept` method inherit that timeout. Otherwise, the behaviour " "depends on settings of the listening socket:" msgstr "" -#: library/socket.rst:1945 +#: library/socket.rst:2044 msgid "" "if the listening socket is in *blocking mode* or in *timeout mode*, the " "socket returned by :meth:`~socket.accept` is in *blocking mode*;" msgstr "" -#: library/socket.rst:1948 +#: library/socket.rst:2047 msgid "" "if the listening socket is in *non-blocking mode*, whether the socket " "returned by :meth:`~socket.accept` is in blocking or non-blocking mode is " @@ -2126,11 +2233,11 @@ msgid "" "it is recommended you manually override this setting." msgstr "" -#: library/socket.rst:1957 +#: library/socket.rst:2056 msgid "Example" msgstr "" -#: library/socket.rst:1959 +#: library/socket.rst:2058 msgid "" "Here are four minimal example programs using the TCP/IP protocol: a server " "that echoes all data that it receives back (servicing only one client), and " @@ -2143,11 +2250,11 @@ msgid "" "new socket returned by :meth:`~socket.accept`." msgstr "" -#: library/socket.rst:1969 +#: library/socket.rst:2068 msgid "The first two examples support IPv4 only. ::" msgstr "" -#: library/socket.rst:2000 +#: library/socket.rst:2099 msgid "" "The next two examples are identical to the above two, but support both IPv4 " "and IPv6. The server side will listen to the first address family available " @@ -2157,73 +2264,73 @@ msgid "" "resolution, and sends traffic to the first one connected successfully. ::" msgstr "" -#: library/socket.rst:2072 +#: library/socket.rst:2171 msgid "" "The next example shows how to write a very simple network sniffer with raw " "sockets on Windows. The example requires administrator privileges to modify " "the interface::" msgstr "" -#: library/socket.rst:2097 +#: library/socket.rst:2196 msgid "" "The next example shows how to use the socket interface to communicate to a " "CAN network using the raw socket protocol. To use CAN with the broadcast " "manager protocol instead, open a socket with::" msgstr "" -#: library/socket.rst:2103 +#: library/socket.rst:2202 msgid "" "After binding (:const:`CAN_RAW`) or connecting (:const:`CAN_BCM`) the " "socket, you can use the :meth:`socket.send` and :meth:`socket.recv` " "operations (and their counterparts) on the socket object as usual." msgstr "" -#: library/socket.rst:2107 +#: library/socket.rst:2206 msgid "This last example might require special privileges::" msgstr "" -#: library/socket.rst:2147 +#: library/socket.rst:2246 msgid "" "Running an example several times with too small delay between executions, " "could lead to this error::" msgstr "" -#: library/socket.rst:2152 +#: library/socket.rst:2251 msgid "" "This is because the previous execution has left the socket in a " "``TIME_WAIT`` state, and can't be immediately reused." msgstr "" -#: library/socket.rst:2155 +#: library/socket.rst:2254 msgid "" "There is a :mod:`socket` flag to set, in order to prevent this, :const:" "`socket.SO_REUSEADDR`::" msgstr "" -#: library/socket.rst:2162 +#: library/socket.rst:2261 msgid "" "the :data:`SO_REUSEADDR` flag tells the kernel to reuse a local socket in " "``TIME_WAIT`` state, without waiting for its natural timeout to expire." msgstr "" -#: library/socket.rst:2168 +#: library/socket.rst:2267 msgid "" "For an introduction to socket programming (in C), see the following papers:" msgstr "" -#: library/socket.rst:2170 +#: library/socket.rst:2269 msgid "" "*An Introductory 4.3BSD Interprocess Communication Tutorial*, by Stuart " "Sechrest" msgstr "" -#: library/socket.rst:2172 +#: library/socket.rst:2271 msgid "" "*An Advanced 4.3BSD Interprocess Communication Tutorial*, by Samuel J. " "Leffler et al," msgstr "" -#: library/socket.rst:2175 +#: library/socket.rst:2274 msgid "" "both in the UNIX Programmer's Manual, Supplementary Documents 1 (sections " "PS1:7 and PS1:8). The platform-specific reference material for the various " @@ -2242,18 +2349,18 @@ msgstr "" msgid "socket" msgstr "" -#: library/socket.rst:1477 +#: library/socket.rst:1576 msgid "I/O control" msgstr "" -#: library/socket.rst:1477 +#: library/socket.rst:1576 msgid "buffering" msgstr "" -#: library/socket.rst:1832 +#: library/socket.rst:1931 msgid "module" msgstr "" -#: library/socket.rst:1832 +#: library/socket.rst:1931 msgid "struct" msgstr "" diff --git a/library/socketserver.po b/library/socketserver.po index 1f43a1764..88c58e8f8 100644 --- a/library/socketserver.po +++ b/library/socketserver.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -172,11 +172,17 @@ msgid "" "block_on_close` class attribute to opt-in for the pre-3.7 behaviour." msgstr "" -#: library/socketserver.rst:144 +#: library/socketserver.rst:148 msgid "These classes are pre-defined using the mix-in classes." msgstr "" -#: library/socketserver.rst:147 +#: library/socketserver.rst:150 +msgid "" +"The ``ForkingUnixStreamServer`` and ``ForkingUnixDatagramServer`` classes " +"were added." +msgstr "" + +#: library/socketserver.rst:154 msgid "" "To implement a service, you must derive a class from :class:" "`BaseRequestHandler` and redefine its :meth:`~BaseRequestHandler.handle` " @@ -187,7 +193,7 @@ msgid "" "`DatagramRequestHandler`." msgstr "" -#: library/socketserver.rst:155 +#: library/socketserver.rst:162 msgid "" "Of course, you still have to use your head! For instance, it makes no sense " "to use a forking server if the service contains state in memory that can be " @@ -197,7 +203,7 @@ msgid "" "probably have to use locks to protect the integrity of the shared data." msgstr "" -#: library/socketserver.rst:162 +#: library/socketserver.rst:169 msgid "" "On the other hand, if you are building an HTTP server where all data is " "stored externally (for instance, in the file system), a synchronous class " @@ -207,7 +213,7 @@ msgid "" "appropriate." msgstr "" -#: library/socketserver.rst:168 +#: library/socketserver.rst:175 msgid "" "In some cases, it may be appropriate to process part of a request " "synchronously, but to finish processing in a forked child depending on the " @@ -216,7 +222,7 @@ msgid "" "`~BaseRequestHandler.handle` method." msgstr "" -#: library/socketserver.rst:173 +#: library/socketserver.rst:180 msgid "" "Another approach to handling multiple simultaneous requests in an " "environment that supports neither threads nor :func:`~os.fork` (or where " @@ -225,15 +231,14 @@ msgid "" "decide which request to work on next (or whether to handle a new incoming " "request). This is particularly important for stream services where each " "client can potentially be connected for a long time (if threads or " -"subprocesses cannot be used). See :mod:`asyncore` for another way to manage " -"this." +"subprocesses cannot be used)." msgstr "" -#: library/socketserver.rst:187 +#: library/socketserver.rst:193 msgid "Server Objects" msgstr "" -#: library/socketserver.rst:191 +#: library/socketserver.rst:197 msgid "" "This is the superclass of all Server objects in the module. It defines the " "interface, given below, but does not implement most of the methods, which is " @@ -241,14 +246,14 @@ msgid "" "`server_address` and :attr:`RequestHandlerClass` attributes." msgstr "" -#: library/socketserver.rst:199 +#: library/socketserver.rst:205 msgid "" "Return an integer file descriptor for the socket on which the server is " "listening. This function is most commonly passed to :mod:`selectors`, to " "allow monitoring multiple servers in the same process." msgstr "" -#: library/socketserver.rst:206 +#: library/socketserver.rst:212 msgid "" "Process a single request. This function calls the following methods in " "order: :meth:`get_request`, :meth:`verify_request`, and :meth:" @@ -259,7 +264,7 @@ msgid "" "`handle_request` will return." msgstr "" -#: library/socketserver.rst:218 +#: library/socketserver.rst:224 msgid "" "Handle requests until an explicit :meth:`shutdown` request. Poll for " "shutdown every *poll_interval* seconds. Ignores the :attr:`timeout` " @@ -269,41 +274,41 @@ msgid "" "clean up zombie child processes." msgstr "" -#: library/socketserver.rst:226 +#: library/socketserver.rst:232 msgid "Added ``service_actions`` call to the ``serve_forever`` method." msgstr "" -#: library/socketserver.rst:232 +#: library/socketserver.rst:238 msgid "" "This is called in the :meth:`serve_forever` loop. This method can be " "overridden by subclasses or mixin classes to perform actions specific to a " "given service, such as cleanup actions." msgstr "" -#: library/socketserver.rst:240 +#: library/socketserver.rst:246 msgid "" "Tell the :meth:`serve_forever` loop to stop and wait until it does. :meth:" "`shutdown` must be called while :meth:`serve_forever` is running in a " "different thread otherwise it will deadlock." msgstr "" -#: library/socketserver.rst:247 +#: library/socketserver.rst:253 msgid "Clean up the server. May be overridden." msgstr "" -#: library/socketserver.rst:252 +#: library/socketserver.rst:258 msgid "" "The family of protocols to which the server's socket belongs. Common " "examples are :const:`socket.AF_INET` and :const:`socket.AF_UNIX`." msgstr "" -#: library/socketserver.rst:258 +#: library/socketserver.rst:264 msgid "" "The user-provided request handler class; an instance of this class is " "created for each request." msgstr "" -#: library/socketserver.rst:264 +#: library/socketserver.rst:270 msgid "" "The address on which the server is listening. The format of addresses " "varies depending on the protocol family; see the documentation for the :mod:" @@ -312,22 +317,22 @@ msgid "" "``('127.0.0.1', 80)``, for example." msgstr "" -#: library/socketserver.rst:273 +#: library/socketserver.rst:279 msgid "" "The socket object on which the server will listen for incoming requests." msgstr "" -#: library/socketserver.rst:276 +#: library/socketserver.rst:282 msgid "The server classes support the following class variables:" msgstr "" -#: library/socketserver.rst:282 +#: library/socketserver.rst:288 msgid "" "Whether the server will allow the reuse of an address. This defaults to :" "const:`False`, and can be set in subclasses to change the policy." msgstr "" -#: library/socketserver.rst:288 +#: library/socketserver.rst:294 msgid "" "The size of the request queue. If it takes a long time to process a single " "request, any requests that arrive while the server is busy are placed into a " @@ -336,40 +341,40 @@ msgid "" "default value is usually 5, but this can be overridden by subclasses." msgstr "" -#: library/socketserver.rst:297 +#: library/socketserver.rst:303 msgid "" "The type of socket used by the server; :const:`socket.SOCK_STREAM` and :" "const:`socket.SOCK_DGRAM` are two common values." msgstr "" -#: library/socketserver.rst:303 +#: library/socketserver.rst:309 msgid "" "Timeout duration, measured in seconds, or :const:`None` if no timeout is " "desired. If :meth:`handle_request` receives no incoming requests within the " "timeout period, the :meth:`handle_timeout` method is called." msgstr "" -#: library/socketserver.rst:308 +#: library/socketserver.rst:314 msgid "" "There are various server methods that can be overridden by subclasses of " "base server classes like :class:`TCPServer`; these methods aren't useful to " "external users of the server object." msgstr "" -#: library/socketserver.rst:317 +#: library/socketserver.rst:323 msgid "" "Actually processes the request by instantiating :attr:`RequestHandlerClass` " "and calling its :meth:`~BaseRequestHandler.handle` method." msgstr "" -#: library/socketserver.rst:323 +#: library/socketserver.rst:329 msgid "" "Must accept a request from the socket, and return a 2-tuple containing the " "*new* socket object to be used to communicate with the client, and the " "client's address." msgstr "" -#: library/socketserver.rst:330 +#: library/socketserver.rst:336 msgid "" "This function is called if the :meth:`~BaseRequestHandler.handle` method of " "a :attr:`RequestHandlerClass` instance raises an exception. The default " @@ -377,11 +382,11 @@ msgid "" "further requests." msgstr "" -#: library/socketserver.rst:335 +#: library/socketserver.rst:341 msgid "Now only called for exceptions derived from the :exc:`Exception` class." msgstr "" -#: library/socketserver.rst:342 +#: library/socketserver.rst:348 msgid "" "This function is called when the :attr:`timeout` attribute has been set to a " "value other than :const:`None` and the timeout period has passed with no " @@ -390,7 +395,7 @@ msgid "" "threading servers this method does nothing." msgstr "" -#: library/socketserver.rst:351 +#: library/socketserver.rst:357 msgid "" "Calls :meth:`finish_request` to create an instance of the :attr:" "`RequestHandlerClass`. If desired, this function can create a new process " @@ -398,20 +403,20 @@ msgid "" "`ThreadingMixIn` classes do this." msgstr "" -#: library/socketserver.rst:363 +#: library/socketserver.rst:369 msgid "" "Called by the server's constructor to activate the server. The default " "behavior for a TCP server just invokes :meth:`~socket.socket.listen` on the " "server's socket. May be overridden." msgstr "" -#: library/socketserver.rst:370 +#: library/socketserver.rst:376 msgid "" "Called by the server's constructor to bind the socket to the desired " "address. May be overridden." msgstr "" -#: library/socketserver.rst:376 +#: library/socketserver.rst:382 msgid "" "Must return a Boolean value; if the value is :const:`True`, the request will " "be processed, and if it's :const:`False`, the request will be denied. This " @@ -419,17 +424,17 @@ msgid "" "default implementation always returns :const:`True`." msgstr "" -#: library/socketserver.rst:382 +#: library/socketserver.rst:388 msgid "" "Support for the :term:`context manager` protocol was added. Exiting the " "context manager is equivalent to calling :meth:`server_close`." msgstr "" -#: library/socketserver.rst:388 +#: library/socketserver.rst:394 msgid "Request Handler Objects" msgstr "" -#: library/socketserver.rst:392 +#: library/socketserver.rst:398 msgid "" "This is the superclass of all request handler objects. It defines the " "interface, given below. A concrete request handler subclass must define a " @@ -437,13 +442,13 @@ msgid "" "instance of the subclass is created for each request." msgstr "" -#: library/socketserver.rst:401 +#: library/socketserver.rst:407 msgid "" "Called before the :meth:`handle` method to perform any initialization " "actions required. The default implementation does nothing." msgstr "" -#: library/socketserver.rst:407 +#: library/socketserver.rst:413 msgid "" "This function must do all the work required to service a request. The " "default implementation does nothing. Several instance attributes are " @@ -452,21 +457,21 @@ msgid "" "attr:`self.server`, in case it needs access to per-server information." msgstr "" -#: library/socketserver.rst:413 +#: library/socketserver.rst:419 msgid "" "The type of :attr:`self.request` is different for datagram or stream " "services. For stream services, :attr:`self.request` is a socket object; for " "datagram services, :attr:`self.request` is a pair of string and socket." msgstr "" -#: library/socketserver.rst:420 +#: library/socketserver.rst:426 msgid "" "Called after the :meth:`handle` method to perform any clean-up actions " "required. The default implementation does nothing. If :meth:`setup` raises " "an exception, this function will not be called." msgstr "" -#: library/socketserver.rst:428 +#: library/socketserver.rst:434 msgid "" "These :class:`BaseRequestHandler` subclasses override the :meth:" "`~BaseRequestHandler.setup` and :meth:`~BaseRequestHandler.finish` methods, " @@ -478,32 +483,32 @@ msgid "" "BufferedIOBase` writable interface." msgstr "" -#: library/socketserver.rst:437 +#: library/socketserver.rst:443 msgid "" ":attr:`StreamRequestHandler.wfile` also supports the :class:`io." "BufferedIOBase` writable interface." msgstr "" -#: library/socketserver.rst:443 +#: library/socketserver.rst:449 msgid "Examples" msgstr "" -#: library/socketserver.rst:446 +#: library/socketserver.rst:452 msgid ":class:`socketserver.TCPServer` Example" msgstr "" -#: library/socketserver.rst:547 +#: library/socketserver.rst:553 msgid "This is the server side::" msgstr "" -#: library/socketserver.rst:478 +#: library/socketserver.rst:484 msgid "" "An alternative request handler class that makes use of streams (file-like " "objects that simplify communication by providing the standard file " "interface)::" msgstr "" -#: library/socketserver.rst:493 +#: library/socketserver.rst:499 msgid "" "The difference is that the ``readline()`` call in the second handler will " "call ``recv()`` multiple times until it encounters a newline character, " @@ -511,47 +516,47 @@ msgid "" "has been sent from the client in one ``sendall()`` call." msgstr "" -#: library/socketserver.rst:571 +#: library/socketserver.rst:577 msgid "This is the client side::" msgstr "" -#: library/socketserver.rst:646 +#: library/socketserver.rst:652 msgid "The output of the example should look something like this:" msgstr "" -#: library/socketserver.rst:522 +#: library/socketserver.rst:528 msgid "Server:" msgstr "" -#: library/socketserver.rst:532 +#: library/socketserver.rst:538 msgid "Client:" msgstr "" -#: library/socketserver.rst:545 +#: library/socketserver.rst:551 msgid ":class:`socketserver.UDPServer` Example" msgstr "" -#: library/socketserver.rst:590 +#: library/socketserver.rst:596 msgid "" "The output of the example should look exactly like for the TCP server " "example." msgstr "" -#: library/socketserver.rst:594 +#: library/socketserver.rst:600 msgid "Asynchronous Mixins" msgstr "" -#: library/socketserver.rst:596 +#: library/socketserver.rst:602 msgid "" "To build asynchronous handlers, use the :class:`ThreadingMixIn` and :class:" "`ForkingMixIn` classes." msgstr "" -#: library/socketserver.rst:599 +#: library/socketserver.rst:605 msgid "An example for the :class:`ThreadingMixIn` class::" msgstr "" -#: library/socketserver.rst:657 +#: library/socketserver.rst:663 msgid "" "The :class:`ForkingMixIn` class is used in the same way, except that the " "server will spawn a new process for each request. Available only on POSIX " diff --git a/library/sqlite3.po b/library/sqlite3.po index b6c684c38..2dfe5bc1a 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-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\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:558 +#: library/sqlite3.rst:625 msgid ":ref:`sqlite3-connection-context-manager`" msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Module functions" msgstr "" -#: library/sqlite3.rst:264 +#: library/sqlite3.rst:265 msgid "Open a connection to an SQLite database." msgstr "" @@ -263,14 +263,14 @@ msgstr "" msgid "Parameters" msgstr "" -#: library/sqlite3.rst:266 +#: library/sqlite3.rst:267 msgid "" "The path to the database file to be opened. You can pass ``\":memory:\"`` to " "create an `SQLite database existing only in memory `_, and open a connection to it." msgstr "" -#: library/sqlite3.rst:273 +#: library/sqlite3.rst:274 msgid "" "How many seconds the connection should wait before raising an :exc:" "`OperationalError` when a table is locked. If another connection opens a " @@ -278,7 +278,7 @@ msgid "" "transaction is committed. Default five seconds." msgstr "" -#: library/sqlite3.rst:280 +#: library/sqlite3.rst:281 msgid "" "Control whether and how data types not :ref:`natively supported by SQLite " "` are looked up to be converted to Python types, using the " @@ -291,16 +291,17 @@ msgid "" "disabled." msgstr "" -#: library/sqlite3.rst:294 +#: library/sqlite3.rst:295 msgid "" -"The :attr:`~Connection.isolation_level` of the connection, controlling " -"whether and how transactions are implicitly opened. Can be ``\"DEFERRED\"`` " -"(default), ``\"EXCLUSIVE\"`` or ``\"IMMEDIATE\"``; or ``None`` to disable " -"opening transactions implicitly. See :ref:`sqlite3-controlling-transactions` " -"for more." +"Control legacy transaction handling behaviour. See :attr:`Connection." +"isolation_level` and :ref:`sqlite3-transaction-control-isolation-level` for " +"more information. Can be ``\"DEFERRED\"`` (default), ``\"EXCLUSIVE\"`` or " +"``\"IMMEDIATE\"``; or ``None`` to disable opening transactions implicitly. " +"Has no effect unless :attr:`Connection.autocommit` is set to :const:" +"`~sqlite3.LEGACY_TRANSACTION_CONTROL` (the default)." msgstr "" -#: library/sqlite3.rst:302 +#: library/sqlite3.rst:305 msgid "" "If ``True`` (default), :exc:`ProgrammingError` will be raised if the " "database connection is used by a thread other than the one that created it. " @@ -309,19 +310,19 @@ msgid "" "See :attr:`threadsafety` for more information." msgstr "" -#: library/sqlite3.rst:311 +#: library/sqlite3.rst:314 msgid "" "A custom subclass of :class:`Connection` to create the connection with, if " "not the default :class:`Connection` class." msgstr "" -#: library/sqlite3.rst:315 +#: library/sqlite3.rst:318 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:320 +#: library/sqlite3.rst:323 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 " @@ -330,36 +331,49 @@ msgid "" "various :ref:`sqlite3-uri-tricks`." msgstr "" +#: library/sqlite3.rst:332 +msgid "" +"Control :pep:`249` transaction handling behaviour. See :attr:`Connection." +"autocommit` and :ref:`sqlite3-transaction-control-autocommit` for more " +"information. *autocommit* currently defaults to :const:`~sqlite3." +"LEGACY_TRANSACTION_CONTROL`. The default will change to ``False`` in a " +"future Python release." +msgstr "" + #: library/sqlite3.rst:0 msgid "Return type" msgstr "" -#: library/sqlite3.rst:331 +#: library/sqlite3.rst:343 msgid "" "Raises an :ref:`auditing event ` ``sqlite3.connect`` with argument " "``database``." msgstr "" -#: library/sqlite3.rst:332 +#: library/sqlite3.rst:344 msgid "" "Raises an :ref:`auditing event ` ``sqlite3.connect/handle`` with " "argument ``connection_handle``." msgstr "" -#: library/sqlite3.rst:334 +#: library/sqlite3.rst:346 msgid "The *uri* parameter." msgstr "" -#: library/sqlite3.rst:337 +#: library/sqlite3.rst:349 msgid "" "*database* can now also be a :term:`path-like object`, not only a string." msgstr "" -#: library/sqlite3.rst:340 +#: library/sqlite3.rst:352 msgid "The ``sqlite3.connect/handle`` auditing event." msgstr "" -#: library/sqlite3.rst:345 +#: library/sqlite3.rst:355 +msgid "The *autocommit* parameter." +msgstr "" + +#: library/sqlite3.rst:360 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 " @@ -367,18 +381,24 @@ msgid "" "and the statement is terminated by a semicolon." msgstr "" -#: library/sqlite3.rst:351 +#: library/sqlite3.rst:366 msgid "For example:" msgstr "" -#: library/sqlite3.rst:360 +#: library/sqlite3.rst:375 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:366 +#: library/sqlite3.rst:379 +msgid "" +"See :func:`!runsource` in :source:`Lib/sqlite3/__main__.py` for real-world " +"use." +msgstr "" + +#: library/sqlite3.rst:384 msgid "" "Enable or disable callback tracebacks. By default you will not get any " "tracebacks in user-defined functions, aggregates, converters, authorizer " @@ -387,13 +407,13 @@ msgid "" "on :data:`sys.stderr`. Use ``False`` to disable the feature again." msgstr "" -#: library/sqlite3.rst:373 +#: library/sqlite3.rst:391 msgid "" "Register an :func:`unraisable hook handler ` for an " "improved debug experience:" msgstr "" -#: library/sqlite3.rst:398 +#: library/sqlite3.rst:417 msgid "" "Register an *adapter* :term:`callable` to adapt the Python type *type* into " "an SQLite type. The adapter is called with a Python object of type *type* as " @@ -401,7 +421,7 @@ msgid "" "natively understands `." msgstr "" -#: library/sqlite3.rst:406 +#: library/sqlite3.rst:425 msgid "" "Register the *converter* :term:`callable` to convert SQLite objects of type " "*typename* into a Python object of a specific type. The converter is invoked " @@ -411,17 +431,24 @@ msgid "" "type detection works." msgstr "" -#: library/sqlite3.rst:414 +#: library/sqlite3.rst:433 msgid "" "Note: *typename* and the name of the type in your query are matched case-" "insensitively." msgstr "" -#: library/sqlite3.rst:421 +#: library/sqlite3.rst:440 msgid "Module constants" msgstr "" -#: library/sqlite3.rst:425 +#: library/sqlite3.rst:444 +msgid "" +"Set :attr:`~Connection.autocommit` to this constant to select old style (pre-" +"Python 3.12) transaction control behaviour. See :ref:`sqlite3-transaction-" +"control-isolation-level` for more information." +msgstr "" + +#: library/sqlite3.rst:450 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 " @@ -429,13 +456,13 @@ msgid "" "in square brackets (``[]``)." msgstr "" -#: library/sqlite3.rst:435 +#: library/sqlite3.rst:460 msgid "" "This flag may be combined with :const:`PARSE_DECLTYPES` using the ``|`` " "(bitwise or) operator." msgstr "" -#: library/sqlite3.rst:440 +#: library/sqlite3.rst:465 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 " @@ -444,61 +471,61 @@ msgid "" "the converter dictionary key. For example:" msgstr "" -#: library/sqlite3.rst:456 +#: library/sqlite3.rst:481 msgid "" "This flag may be combined with :const:`PARSE_COLNAMES` using the ``|`` " "(bitwise or) operator." msgstr "" -#: library/sqlite3.rst:463 +#: library/sqlite3.rst:488 msgid "" "Flags that should be returned by the *authorizer_callback* :term:`callable` " "passed to :meth:`Connection.set_authorizer`, to indicate whether:" msgstr "" -#: library/sqlite3.rst:466 +#: library/sqlite3.rst:491 msgid "Access is allowed (:const:`!SQLITE_OK`)," msgstr "" -#: library/sqlite3.rst:467 +#: library/sqlite3.rst:492 msgid "" "The SQL statement should be aborted with an error (:const:`!SQLITE_DENY`)" msgstr "" -#: library/sqlite3.rst:468 +#: library/sqlite3.rst:493 msgid "" "The column should be treated as a ``NULL`` value (:const:`!SQLITE_IGNORE`)" msgstr "" -#: library/sqlite3.rst:472 +#: library/sqlite3.rst:497 msgid "" "String constant stating the supported DB-API level. Required by the DB-API. " "Hard-coded to ``\"2.0\"``." msgstr "" -#: library/sqlite3.rst:477 +#: library/sqlite3.rst:502 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:483 +#: library/sqlite3.rst:508 msgid "The ``named`` DB-API parameter style is also supported." msgstr "" -#: library/sqlite3.rst:487 +#: library/sqlite3.rst:512 msgid "" "Version number of the runtime SQLite library as a :class:`string `." msgstr "" -#: library/sqlite3.rst:491 +#: library/sqlite3.rst:516 msgid "" "Version number of the runtime SQLite library as a :class:`tuple` of :class:" "`integers `." msgstr "" -#: library/sqlite3.rst:496 +#: library/sqlite3.rst:521 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 " @@ -506,154 +533,181 @@ msgid "" "underlying SQLite library is compiled with. The SQLite threading modes are:" msgstr "" -#: library/sqlite3.rst:501 +#: library/sqlite3.rst:526 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:503 +#: library/sqlite3.rst:528 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:506 +#: library/sqlite3.rst:531 msgid "" "**Serialized**: In serialized mode, SQLite can be safely used by multiple " "threads with no restriction." msgstr "" -#: library/sqlite3.rst:509 +#: library/sqlite3.rst:534 msgid "" "The mappings from SQLite threading modes to DB-API 2.0 threadsafety levels " "are as follows:" msgstr "" -#: library/sqlite3.rst:513 +#: library/sqlite3.rst:538 msgid "SQLite threading mode" msgstr "" -#: library/sqlite3.rst:513 +#: library/sqlite3.rst:538 msgid "`threadsafety`_" msgstr "" -#: library/sqlite3.rst:513 +#: library/sqlite3.rst:538 msgid "`SQLITE_THREADSAFE`_" msgstr "" -#: library/sqlite3.rst:513 +#: library/sqlite3.rst:538 msgid "DB-API 2.0 meaning" msgstr "" -#: library/sqlite3.rst:516 +#: library/sqlite3.rst:541 msgid "single-thread" msgstr "" -#: library/sqlite3.rst:516 +#: library/sqlite3.rst:541 msgid "0" msgstr "" -#: library/sqlite3.rst:516 +#: library/sqlite3.rst:541 msgid "Threads may not share the module" msgstr "" -#: library/sqlite3.rst:519 +#: library/sqlite3.rst:544 msgid "multi-thread" msgstr "" -#: library/sqlite3.rst:522 +#: library/sqlite3.rst:547 msgid "1" msgstr "" -#: library/sqlite3.rst:519 +#: library/sqlite3.rst:544 msgid "2" msgstr "" -#: library/sqlite3.rst:519 +#: library/sqlite3.rst:544 msgid "Threads may share the module, but not connections" msgstr "" -#: library/sqlite3.rst:522 +#: library/sqlite3.rst:547 msgid "serialized" msgstr "" -#: library/sqlite3.rst:522 +#: library/sqlite3.rst:547 msgid "3" msgstr "" -#: library/sqlite3.rst:522 +#: library/sqlite3.rst:547 msgid "Threads may share the module, connections and cursors" msgstr "" -#: library/sqlite3.rst:529 +#: library/sqlite3.rst:554 msgid "Set *threadsafety* dynamically instead of hard-coding it to ``1``." msgstr "" -#: library/sqlite3.rst:534 +#: library/sqlite3.rst:559 msgid "" "Version number of this module as a :class:`string `. This is not the " "version of the SQLite library." msgstr "" -#: library/sqlite3.rst:539 +#: library/sqlite3.rst:575 +msgid "" +"This constant used to reflect the version number of the ``pysqlite`` " +"package, a third-party library which used to upstream changes to :mod:`!" +"sqlite3`. Today, it carries no meaning or practical value." +msgstr "" + +#: library/sqlite3.rst:569 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:546 +#: library/sqlite3.rst:596 +msgid "" +"These constants are used for the :meth:`Connection.setconfig` and :meth:" +"`~Connection.getconfig` methods." +msgstr "" + +#: library/sqlite3.rst:599 +msgid "" +"The availability of these constants varies depending on the version of " +"SQLite Python was compiled with." +msgstr "" + +#: library/sqlite3.rst:606 +msgid "https://www.sqlite.org/c3ref/c_dbconfig_defensive.html" +msgstr "" + +#: library/sqlite3.rst:607 +msgid "SQLite docs: Database Connection Configuration Options" +msgstr "" + +#: library/sqlite3.rst:613 msgid "Connection objects" msgstr "" -#: library/sqlite3.rst:550 +#: library/sqlite3.rst:617 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:557 +#: library/sqlite3.rst:624 msgid ":ref:`sqlite3-connection-shortcuts`" msgstr "" -#: library/sqlite3.rst:560 +#: library/sqlite3.rst:627 msgid "An SQLite database connection has the following attributes and methods:" msgstr "" -#: library/sqlite3.rst:564 +#: library/sqlite3.rst:631 msgid "" "Create and return a :class:`Cursor` object. The cursor method accepts a " "single optional parameter *factory*. If supplied, this must be a :term:" "`callable` returning an instance of :class:`Cursor` or its subclasses." msgstr "" -#: library/sqlite3.rst:571 +#: library/sqlite3.rst:638 msgid "" "Open a :class:`Blob` handle to an existing :abbr:`BLOB (Binary Large " "OBject)`." msgstr "" -#: library/sqlite3.rst:574 +#: library/sqlite3.rst:641 msgid "The name of the table where the blob is located." msgstr "" -#: library/sqlite3.rst:577 +#: library/sqlite3.rst:644 msgid "The name of the column where the blob is located." msgstr "" -#: library/sqlite3.rst:580 +#: library/sqlite3.rst:647 msgid "The name of the row where the blob is located." msgstr "" -#: library/sqlite3.rst:583 +#: library/sqlite3.rst:650 msgid "" "Set to ``True`` if the blob should be opened without write permissions. " "Defaults to ``False``." msgstr "" -#: library/sqlite3.rst:588 +#: library/sqlite3.rst:655 msgid "" "The name of the database where the blob is located. Defaults to ``\"main\"``." msgstr "" @@ -662,109 +716,115 @@ msgstr "" msgid "Raises" msgstr "" -#: library/sqlite3.rst:592 +#: library/sqlite3.rst:659 msgid "When trying to open a blob in a ``WITHOUT ROWID`` table." msgstr "" -#: library/sqlite3.rst:599 +#: library/sqlite3.rst:666 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:606 +#: library/sqlite3.rst:673 msgid "" -"Commit any pending transaction to the database. If there is no open " -"transaction, this method is a no-op." +"Commit any pending transaction to the database. If :attr:`autocommit` is " +"``True``, or there is no open transaction, this method does nothing. If :" +"attr:`!autocommit` is ``False``, a new transaction is implicitly opened if a " +"pending transaction was committed by this method." msgstr "" -#: library/sqlite3.rst:611 +#: library/sqlite3.rst:681 msgid "" -"Roll back to the start of any pending transaction. If there is no open " -"transaction, this method is a no-op." +"Roll back to the start of any pending transaction. If :attr:`autocommit` is " +"``True``, or there is no open transaction, this method does nothing. If :" +"attr:`!autocommit` is ``False``, a new transaction is implicitly opened if a " +"pending transaction was rolled back by this method." msgstr "" -#: library/sqlite3.rst:616 +#: library/sqlite3.rst:689 msgid "" -"Close the database connection. Any pending transaction is not committed " -"implicitly; make sure to :meth:`commit` before closing to avoid losing " -"pending changes." +"Close the database connection. If :attr:`autocommit` is ``False``, any " +"pending transaction is implicitly rolled back. If :attr:`!autocommit` is " +"``True`` or :data:`LEGACY_TRANSACTION_CONTROL`, no implicit transaction " +"control is executed. Make sure to :meth:`commit` before closing to avoid " +"losing pending changes." msgstr "" -#: library/sqlite3.rst:623 +#: library/sqlite3.rst:699 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:629 +#: library/sqlite3.rst:705 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:635 +#: library/sqlite3.rst:711 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:641 +#: library/sqlite3.rst:717 msgid "Create or remove a user-defined SQL function." msgstr "" -#: library/sqlite3.rst:643 +#: library/sqlite3.rst:719 msgid "The name of the SQL function." msgstr "" -#: library/sqlite3.rst:646 +#: library/sqlite3.rst:722 msgid "" "The number of arguments the SQL function can accept. If ``-1``, it may take " "any number of arguments." msgstr "" -#: library/sqlite3.rst:650 +#: library/sqlite3.rst:726 msgid "" "A :term:`callable` that is called when the SQL function is invoked. The " "callable must return :ref:`a type natively supported by SQLite `. Set to ``None`` to remove an existing SQL function." msgstr "" -#: library/sqlite3.rst:657 +#: library/sqlite3.rst:733 msgid "" "If ``True``, the created SQL function is marked as `deterministic `_, which allows SQLite to perform additional " "optimizations." msgstr "" -#: library/sqlite3.rst:662 +#: library/sqlite3.rst:738 msgid "If *deterministic* is used with SQLite versions older than 3.8.3." msgstr "" -#: library/sqlite3.rst:665 +#: library/sqlite3.rst:741 msgid "The *deterministic* parameter." msgstr "" -#: library/sqlite3.rst:706 library/sqlite3.rst:1021 library/sqlite3.rst:1385 -#: library/sqlite3.rst:1413 +#: library/sqlite3.rst:782 library/sqlite3.rst:1115 library/sqlite3.rst:1552 +#: library/sqlite3.rst:1591 msgid "Example:" msgstr "" -#: library/sqlite3.rst:684 +#: library/sqlite3.rst:760 msgid "Create or remove a user-defined SQL aggregate function." msgstr "" -#: library/sqlite3.rst:686 +#: library/sqlite3.rst:762 msgid "The name of the SQL aggregate function." msgstr "" -#: library/sqlite3.rst:689 +#: library/sqlite3.rst:765 msgid "" "The number of arguments the SQL aggregate function can accept. If ``-1``, it " "may take any number of arguments." msgstr "" -#: library/sqlite3.rst:693 +#: library/sqlite3.rst:769 msgid "" "A class must implement the following methods: * ``step()``: Add a row to " "the aggregate. * ``finalize()``: Return the final result of the aggregate " @@ -773,45 +833,45 @@ msgid "" "*n_arg*. Set to ``None`` to remove an existing SQL aggregate function." msgstr "" -#: library/sqlite3.rst:694 +#: library/sqlite3.rst:770 msgid "A class must implement the following methods:" msgstr "" -#: library/sqlite3.rst:696 +#: library/sqlite3.rst:772 msgid "``step()``: Add a row to the aggregate." msgstr "" -#: library/sqlite3.rst:753 +#: library/sqlite3.rst:829 msgid "" "``finalize()``: Return the final result of the aggregate as :ref:`a type " "natively supported by SQLite `." msgstr "" -#: library/sqlite3.rst:700 +#: library/sqlite3.rst:776 msgid "" "The number of arguments that the ``step()`` method must accept is controlled " "by *n_arg*." msgstr "" -#: library/sqlite3.rst:703 +#: library/sqlite3.rst:779 msgid "Set to ``None`` to remove an existing SQL aggregate function." msgstr "" -#: library/sqlite3.rst:738 +#: library/sqlite3.rst:814 msgid "Create or remove a user-defined aggregate window function." msgstr "" -#: library/sqlite3.rst:740 +#: library/sqlite3.rst:816 msgid "The name of the SQL aggregate window function to create or remove." msgstr "" -#: library/sqlite3.rst:743 +#: library/sqlite3.rst:819 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:747 +#: library/sqlite3.rst:823 msgid "" "A class that must implement the following methods: * ``step()``: Add a row " "to the current window. * ``value()``: Return the current value of the " @@ -823,79 +883,79 @@ msgid "" "function." msgstr "" -#: library/sqlite3.rst:748 +#: library/sqlite3.rst:824 msgid "A class that must implement the following methods:" msgstr "" -#: library/sqlite3.rst:750 +#: library/sqlite3.rst:826 msgid "``step()``: Add a row to the current window." msgstr "" -#: library/sqlite3.rst:751 +#: library/sqlite3.rst:827 msgid "``value()``: Return the current value of the aggregate." msgstr "" -#: library/sqlite3.rst:752 +#: library/sqlite3.rst:828 msgid "``inverse()``: Remove a row from the current window." msgstr "" -#: library/sqlite3.rst:756 +#: library/sqlite3.rst:832 msgid "" "The number of arguments that the ``step()`` and ``value()`` methods must " "accept is controlled by *num_params*." msgstr "" -#: library/sqlite3.rst:759 +#: library/sqlite3.rst:835 msgid "Set to ``None`` to remove an existing SQL aggregate window function." msgstr "" -#: library/sqlite3.rst:761 +#: library/sqlite3.rst:837 msgid "" "If used with a version of SQLite older than 3.25.0, which does not support " "aggregate window functions." msgstr "" -#: library/sqlite3.rst:824 +#: library/sqlite3.rst:900 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:828 +#: library/sqlite3.rst:904 msgid "``1`` if the first is ordered higher than the second" msgstr "" -#: library/sqlite3.rst:829 +#: library/sqlite3.rst:905 msgid "``-1`` if the first is ordered lower than the second" msgstr "" -#: library/sqlite3.rst:830 +#: library/sqlite3.rst:906 msgid "``0`` if they are ordered equal" msgstr "" -#: library/sqlite3.rst:832 +#: library/sqlite3.rst:908 msgid "The following example shows a reverse sorting collation:" msgstr "" -#: library/sqlite3.rst:860 +#: library/sqlite3.rst:936 msgid "Remove a collation function by setting *callable* to ``None``." msgstr "" -#: library/sqlite3.rst:862 +#: library/sqlite3.rst:938 msgid "" "The collation name can contain any Unicode character. Earlier, only ASCII " "characters were allowed." msgstr "" -#: library/sqlite3.rst:869 +#: library/sqlite3.rst:945 msgid "" "Call this method from a different thread to abort any queries that might be " "executing on the connection. Aborted queries will raise an :exc:" "`OperationalError`." msgstr "" -#: library/sqlite3.rst:876 +#: library/sqlite3.rst:952 msgid "" "Register :term:`callable` *authorizer_callback* to be invoked for each " "attempt to access a column of a table in the database. The callback should " @@ -904,7 +964,7 @@ msgid "" "underlying SQLite library." msgstr "" -#: library/sqlite3.rst:883 +#: library/sqlite3.rst:959 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`` " @@ -914,7 +974,7 @@ msgid "" "attempt or ``None`` if this access attempt is directly from input SQL code." msgstr "" -#: library/sqlite3.rst:890 +#: library/sqlite3.rst:966 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 " @@ -922,15 +982,15 @@ msgid "" "module." msgstr "" -#: library/sqlite3.rst:894 +#: library/sqlite3.rst:970 msgid "Passing ``None`` as *authorizer_callback* will disable the authorizer." msgstr "" -#: library/sqlite3.rst:896 +#: library/sqlite3.rst:972 msgid "Added support for disabling the authorizer using ``None``." msgstr "" -#: library/sqlite3.rst:902 +#: library/sqlite3.rst:978 msgid "" "Register :term:`callable` *progress_handler* to be invoked for every *n* " "instructions of the SQLite virtual machine. This is useful if you want to " @@ -938,26 +998,26 @@ msgid "" "a GUI." msgstr "" -#: library/sqlite3.rst:907 +#: library/sqlite3.rst:983 msgid "" "If you want to clear any previously installed progress handler, call the " "method with ``None`` for *progress_handler*." msgstr "" -#: library/sqlite3.rst:910 +#: library/sqlite3.rst:986 msgid "" "Returning a non-zero value from the handler function will terminate the " -"currently executing query and cause it to raise an :exc:`OperationalError` " +"currently executing query and cause it to raise a :exc:`DatabaseError` " "exception." msgstr "" -#: library/sqlite3.rst:917 +#: library/sqlite3.rst:993 msgid "" "Register :term:`callable` *trace_callback* to be invoked for each SQL " "statement that is actually executed by the SQLite backend." msgstr "" -#: library/sqlite3.rst:920 +#: library/sqlite3.rst:996 msgid "" "The only argument passed to the callback is the statement (as :class:`str`) " "that is being executed. The return value of the callback is ignored. Note " @@ -967,18 +1027,18 @@ msgid "" "execution of triggers defined in the current database." msgstr "" -#: library/sqlite3.rst:928 +#: library/sqlite3.rst:1004 msgid "Passing ``None`` as *trace_callback* will disable the trace callback." msgstr "" -#: library/sqlite3.rst:931 +#: library/sqlite3.rst:1007 msgid "" "Exceptions raised in the trace callback are not propagated. As a development " "and debugging aid, use :meth:`~sqlite3.enable_callback_tracebacks` to enable " "printing tracebacks from exceptions raised in the trace callback." msgstr "" -#: library/sqlite3.rst:941 +#: library/sqlite3.rst:1017 msgid "" "Enable the SQLite engine to load SQLite extensions from shared libraries if " "*enabled* is ``True``; else, disallow loading SQLite extensions. SQLite " @@ -987,7 +1047,7 @@ msgid "" "distributed with SQLite." msgstr "" -#: library/sqlite3.rst:950 +#: library/sqlite3.rst:1026 msgid "" "The :mod:`!sqlite3` module is not built with loadable extension support by " "default, because some platforms (notably macOS) have SQLite libraries which " @@ -996,61 +1056,75 @@ msgid "" "program:`configure`." msgstr "" -#: library/sqlite3.rst:957 +#: library/sqlite3.rst:1033 msgid "" "Raises an :ref:`auditing event ` ``sqlite3.enable_load_extension`` " "with arguments ``connection``, ``enabled``." msgstr "" -#: library/sqlite3.rst:961 +#: library/sqlite3.rst:1037 msgid "Added the ``sqlite3.enable_load_extension`` auditing event." msgstr "" -#: library/sqlite3.rst:1004 +#: library/sqlite3.rst:1080 +msgid "" +"Load an SQLite extension from a shared library. Enable extension loading " +"with :meth:`enable_load_extension` before calling this method." +msgstr "" + +#: library/sqlite3.rst:1084 +msgid "The path to the SQLite extension." +msgstr "" + +#: library/sqlite3.rst:1088 msgid "" -"Load an SQLite extension from a shared library located at *path*. Enable " -"extension loading with :meth:`enable_load_extension` before calling this " -"method." +"Entry point name. If ``None`` (the default), SQLite will come up with an " +"entry point name of its own; see the SQLite docs `Loading an Extension`_ for " +"details." msgstr "" -#: library/sqlite3.rst:1008 +#: library/sqlite3.rst:1097 msgid "" "Raises an :ref:`auditing event ` ``sqlite3.load_extension`` with " "arguments ``connection``, ``path``." msgstr "" -#: library/sqlite3.rst:1012 +#: library/sqlite3.rst:1101 msgid "Added the ``sqlite3.load_extension`` auditing event." msgstr "" -#: library/sqlite3.rst:1017 +#: library/sqlite3.rst:1104 +msgid "The *entrypoint* parameter." +msgstr "" + +#: library/sqlite3.rst:1111 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:1035 +#: library/sqlite3.rst:1129 msgid "Create a backup of an SQLite database." msgstr "" -#: library/sqlite3.rst:1037 +#: library/sqlite3.rst:1131 msgid "" "Works even if the database is being accessed by other clients or " "concurrently by the same connection." msgstr "" -#: library/sqlite3.rst:1040 +#: library/sqlite3.rst:1134 msgid "The database connection to save the backup to." msgstr "" -#: library/sqlite3.rst:1043 +#: library/sqlite3.rst:1137 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:1049 +#: library/sqlite3.rst:1143 msgid "" "If set to a :term:`callable`, it is invoked with three integer arguments for " "every backup iteration: the *status* of the last iteration, the *remaining* " @@ -1058,46 +1132,46 @@ msgid "" "Defaults to ``None``." msgstr "" -#: library/sqlite3.rst:1058 +#: library/sqlite3.rst:1152 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:1065 +#: library/sqlite3.rst:1159 msgid "" "The number of seconds to sleep between successive attempts to back up " "remaining pages." msgstr "" -#: library/sqlite3.rst:1069 +#: library/sqlite3.rst:1163 msgid "Example 1, copy an existing database into another:" msgstr "" -#: library/sqlite3.rst:1088 +#: library/sqlite3.rst:1182 msgid "Example 2, copy an existing database into a transient copy:" msgstr "" -#: library/sqlite3.rst:1100 +#: library/sqlite3.rst:1194 msgid "Get a connection runtime limit." msgstr "" -#: library/sqlite3.rst:1102 +#: library/sqlite3.rst:1196 msgid "The `SQLite limit category`_ to be queried." msgstr "" -#: library/sqlite3.rst:1144 +#: library/sqlite3.rst:1238 msgid "If *category* is not recognised by the underlying SQLite library." msgstr "" -#: library/sqlite3.rst:1110 +#: library/sqlite3.rst:1204 msgid "" "Example, query the maximum length of an SQL statement for :class:" "`Connection` ``con`` (the default is 1000000000):" msgstr "" -#: library/sqlite3.rst:1130 +#: library/sqlite3.rst:1224 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 " @@ -1105,22 +1179,40 @@ msgid "" "returned." msgstr "" -#: library/sqlite3.rst:1135 +#: library/sqlite3.rst:1229 msgid "The `SQLite limit category`_ to be set." msgstr "" -#: library/sqlite3.rst:1138 +#: library/sqlite3.rst:1232 msgid "" "The value of the new limit. If negative, the current limit is unchanged." msgstr "" -#: library/sqlite3.rst:1147 +#: library/sqlite3.rst:1241 msgid "" "Example, limit the number of attached databases to 1 for :class:`Connection` " "``con`` (the default limit is 10):" msgstr "" -#: library/sqlite3.rst:1164 +#: library/sqlite3.rst:1258 +msgid "Query a boolean connection configuration option." +msgstr "" + +#: library/sqlite3.rst:1271 +msgid "A :ref:`SQLITE_DBCONFIG code `." +msgstr "" + +#: library/sqlite3.rst:1269 +msgid "Set a boolean connection configuration option." +msgstr "" + +#: library/sqlite3.rst:1274 +msgid "" +"``True`` if the configuration option should be enabled (default); ``False`` " +"if it should be disabled." +msgstr "" + +#: library/sqlite3.rst:1282 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-" @@ -1129,17 +1221,17 @@ msgid "" "backed up to disk." msgstr "" -#: library/sqlite3.rst:1170 +#: library/sqlite3.rst:1288 msgid "The database name to be serialized. Defaults to ``\"main\"``." msgstr "" -#: library/sqlite3.rst:1178 +#: library/sqlite3.rst:1296 msgid "" "This method is only available if the underlying SQLite library has the " "serialize API." msgstr "" -#: library/sqlite3.rst:1186 +#: library/sqlite3.rst:1304 msgid "" "Deserialize a :meth:`serialized ` database into a :class:" "`Connection`. This method causes the database connection to disconnect from " @@ -1147,63 +1239,120 @@ msgid "" "serialization contained in *data*." msgstr "" -#: library/sqlite3.rst:1192 +#: library/sqlite3.rst:1310 msgid "A serialized database." msgstr "" -#: library/sqlite3.rst:1195 +#: library/sqlite3.rst:1313 msgid "The database name to deserialize into. Defaults to ``\"main\"``." msgstr "" -#: library/sqlite3.rst:1199 +#: library/sqlite3.rst:1317 msgid "" "If the database connection is currently involved in a read transaction or a " "backup operation." msgstr "" -#: library/sqlite3.rst:1203 +#: library/sqlite3.rst:1321 msgid "If *data* does not contain a valid SQLite database." msgstr "" -#: library/sqlite3.rst:1206 +#: library/sqlite3.rst:1324 msgid "If :func:`len(data) ` is larger than ``2**63 - 1``." msgstr "" -#: library/sqlite3.rst:1211 +#: library/sqlite3.rst:1329 msgid "" "This method is only available if the underlying SQLite library has the " "deserialize API." msgstr "" -#: library/sqlite3.rst:1218 +#: library/sqlite3.rst:1336 +msgid "" +"This attribute controls :pep:`249`-compliant transaction behaviour. :attr:`!" +"autocommit` has three allowed values:" +msgstr "" + +#: library/sqlite3.rst:1339 +msgid "" +"``False``: Select :pep:`249`-compliant transaction behaviour, implying that :" +"mod:`!sqlite3` ensures a transaction is always open. Use :meth:`commit` and :" +"meth:`rollback` to close transactions." +msgstr "" + +#: library/sqlite3.rst:1343 +msgid "This is the recommended value of :attr:`!autocommit`." +msgstr "" + +#: library/sqlite3.rst:1345 +msgid "" +"``True``: Use SQLite's `autocommit mode`_. :meth:`commit` and :meth:" +"`rollback` have no effect in this mode." +msgstr "" + +#: library/sqlite3.rst:1348 +msgid "" +":data:`LEGACY_TRANSACTION_CONTROL`: Pre-Python 3.12 (non-:pep:`249`-" +"compliant) transaction control. See :attr:`isolation_level` for more details." +msgstr "" + +#: library/sqlite3.rst:1352 +msgid "This is currently the default value of :attr:`!autocommit`." +msgstr "" + +#: library/sqlite3.rst:1354 +msgid "" +"Changing :attr:`!autocommit` to ``False`` will open a new transaction, and " +"changing it to ``True`` will commit any pending transaction." +msgstr "" + +#: library/sqlite3.rst:1357 +msgid "See :ref:`sqlite3-transaction-control-autocommit` for more details." +msgstr "" + +#: library/sqlite3.rst:1361 +msgid "" +"The :attr:`isolation_level` attribute has no effect unless :attr:" +"`autocommit` is :data:`LEGACY_TRANSACTION_CONTROL`." +msgstr "" + +#: library/sqlite3.rst:1368 msgid "" "This read-only attribute corresponds to the low-level SQLite `autocommit " "mode`_." msgstr "" -#: library/sqlite3.rst:1221 +#: library/sqlite3.rst:1371 msgid "" "``True`` if a transaction is active (there are uncommitted changes), " "``False`` otherwise." msgstr "" -#: library/sqlite3.rst:1228 +#: library/sqlite3.rst:1378 msgid "" -"This attribute controls the :ref:`transaction handling ` performed by :mod:`!sqlite3`. If set to ``None``, " +"Controls the :ref:`legacy transaction handling mode ` of :mod:`!sqlite3`. If set to ``None``, " "transactions are never implicitly opened. If set to one of ``\"DEFERRED\"``, " "``\"IMMEDIATE\"``, or ``\"EXCLUSIVE\"``, corresponding to the underlying " -"`SQLite transaction behaviour`_, implicit :ref:`transaction management " -"` is performed." +"`SQLite transaction behaviour`_, :ref:`implicit transaction management " +"` is performed." msgstr "" -#: library/sqlite3.rst:1236 +#: library/sqlite3.rst:1386 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:1241 +#: library/sqlite3.rst:1391 +msgid "" +"Using :attr:`autocommit` to control transaction handling is recommended over " +"using :attr:`!isolation_level`. :attr:`!isolation_level` has no effect " +"unless :attr:`autocommit` is set to :data:`LEGACY_TRANSACTION_CONTROL` (the " +"default)." +msgstr "" + +#: library/sqlite3.rst:1398 msgid "" "The initial :attr:`~Cursor.row_factory` for :class:`Cursor` objects created " "from this connection. Assigning to this attribute does not affect the :attr:" @@ -1212,11 +1361,11 @@ msgid "" "`tuple`." msgstr "" -#: library/sqlite3.rst:1540 library/sqlite3.rst:1563 +#: library/sqlite3.rst:1718 library/sqlite3.rst:1741 msgid "See :ref:`sqlite3-howto-row-factory` for more details." msgstr "" -#: library/sqlite3.rst:1252 +#: library/sqlite3.rst:1409 msgid "" "A :term:`callable` that accepts a :class:`bytes` parameter and returns a " "text representation of it. The callable is invoked for SQLite values with " @@ -1224,17 +1373,17 @@ msgid "" "If you want to return ``bytes`` instead, set *text_factory* to ``bytes``." msgstr "" -#: library/sqlite3.rst:1292 +#: library/sqlite3.rst:1449 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:1299 +#: library/sqlite3.rst:1456 msgid "Cursor objects" msgstr "" -#: library/sqlite3.rst:1301 +#: library/sqlite3.rst:1458 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 " @@ -1242,108 +1391,125 @@ msgid "" "`connection shortcut methods `." msgstr "" -#: library/sqlite3.rst:1308 +#: library/sqlite3.rst:1465 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:1333 +#: library/sqlite3.rst:1490 msgid "A :class:`Cursor` instance has the following attributes and methods." msgstr "" -#: library/sqlite3.rst:1340 +#: library/sqlite3.rst:1497 msgid "" "Execute SQL a single SQL statement, optionally binding Python values using :" "ref:`placeholders `." msgstr "" -#: library/sqlite3.rst:1344 +#: library/sqlite3.rst:1501 msgid "A single SQL statement." msgstr "" -#: library/sqlite3.rst:1347 +#: library/sqlite3.rst:1504 msgid "" "Python values to bind to placeholders in *sql*. A :class:`!dict` if named " "placeholders are used. A :term:`!sequence` if unnamed placeholders are used. " "See :ref:`sqlite3-placeholders`." msgstr "" -#: library/sqlite3.rst:1354 +#: library/sqlite3.rst:1511 msgid "If *sql* contains more than one SQL statement." msgstr "" -#: library/sqlite3.rst:1357 +#: library/sqlite3.rst:1514 msgid "" -"If :attr:`~Connection.isolation_level` is not ``None``, *sql* is an " -"``INSERT``, ``UPDATE``, ``DELETE``, or ``REPLACE`` statement, and there is " -"no open transaction, a transaction is implicitly opened before executing " -"*sql*." +"If :attr:`~Connection.autocommit` is :data:`LEGACY_TRANSACTION_CONTROL`, :" +"attr:`~Connection.isolation_level` is not ``None``, *sql* is an ``INSERT``, " +"``UPDATE``, ``DELETE``, or ``REPLACE`` statement, and there is no open " +"transaction, a transaction is implicitly opened before executing *sql*." msgstr "" -#: library/sqlite3.rst:1362 +#: library/sqlite3.rst:1523 +msgid "" +":exc:`DeprecationWarning` is emitted if :ref:`named placeholders ` are used and *parameters* is a sequence instead of a :class:" +"`dict`. Starting with Python 3.14, :exc:`ProgrammingError` will be raised " +"instead." +msgstr "" + +#: library/sqlite3.rst:1529 msgid "Use :meth:`executescript` to execute multiple SQL statements." msgstr "" -#: library/sqlite3.rst:1366 +#: library/sqlite3.rst:1533 msgid "" "For every item in *parameters*, repeatedly execute the :ref:`parameterized " "` :abbr:`DML (Data Manipulation Language)` SQL " "statement *sql*." msgstr "" -#: library/sqlite3.rst:1370 +#: library/sqlite3.rst:1537 msgid "Uses the same implicit transaction handling as :meth:`~Cursor.execute`." msgstr "" -#: library/sqlite3.rst:1372 +#: library/sqlite3.rst:1539 msgid "A single SQL DML statement." msgstr "" -#: library/sqlite3.rst:1375 +#: library/sqlite3.rst:1542 msgid "" "An :term:`!iterable` of parameters to bind with the placeholders in *sql*. " "See :ref:`sqlite3-placeholders`." msgstr "" -#: library/sqlite3.rst:1381 +#: library/sqlite3.rst:1548 msgid "" "If *sql* contains more than one SQL statement, or is not a DML statement." msgstr "" -#: library/sqlite3.rst:1398 +#: library/sqlite3.rst:1565 msgid "" "Any resulting rows are discarded, including DML statements with `RETURNING " "clauses`_." msgstr "" -#: library/sqlite3.rst:1405 +#: library/sqlite3.rst:1572 msgid "" -"Execute the SQL statements in *sql_script*. If there is a pending " +":exc:`DeprecationWarning` is emitted if :ref:`named placeholders ` are used and the items in *parameters* are sequences instead " +"of :class:`dict`\\s. Starting with Python 3.14, :exc:`ProgrammingError` will " +"be raised instead." +msgstr "" + +#: library/sqlite3.rst:1581 +msgid "" +"Execute the SQL statements in *sql_script*. If the :attr:`~Connection." +"autocommit` is :data:`LEGACY_TRANSACTION_CONTROL` and there is a pending " "transaction, an implicit ``COMMIT`` statement is executed first. No other " "implicit transaction control is performed; any transaction control must be " "added to *sql_script*." msgstr "" -#: library/sqlite3.rst:1411 +#: library/sqlite3.rst:1589 msgid "*sql_script* must be a :class:`string `." msgstr "" -#: library/sqlite3.rst:1429 +#: library/sqlite3.rst:1607 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:1437 +#: library/sqlite3.rst:1615 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:1440 +#: library/sqlite3.rst:1618 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 " @@ -1351,7 +1517,7 @@ msgid "" "available are returned." msgstr "" -#: library/sqlite3.rst:1446 +#: library/sqlite3.rst:1624 msgid "" "Note there are performance considerations involved with the *size* " "parameter. For optimal performance, it is usually best to use the arraysize " @@ -1359,36 +1525,36 @@ msgid "" "the same value from one :meth:`fetchmany` call to the next." msgstr "" -#: library/sqlite3.rst:1453 +#: library/sqlite3.rst:1631 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:1460 +#: library/sqlite3.rst:1638 msgid "Close the cursor now (rather than whenever ``__del__`` is called)." msgstr "" -#: library/sqlite3.rst:1462 +#: library/sqlite3.rst:1640 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:1471 +#: library/sqlite3.rst:1649 msgid "Required by the DB-API. Does nothing in :mod:`!sqlite3`." msgstr "" -#: library/sqlite3.rst:1475 +#: library/sqlite3.rst:1653 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:1480 +#: library/sqlite3.rst:1658 msgid "" "Read-only attribute that provides the SQLite database :class:`Connection` " "belonging to the cursor. A :class:`Cursor` object created by calling :meth:" @@ -1396,18 +1562,18 @@ msgid "" "that refers to *con*:" msgstr "" -#: library/sqlite3.rst:1494 +#: library/sqlite3.rst:1672 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:1498 +#: library/sqlite3.rst:1676 msgid "It is set for ``SELECT`` statements without any matching rows as well." msgstr "" -#: library/sqlite3.rst:1502 +#: library/sqlite3.rst:1680 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 " @@ -1417,15 +1583,15 @@ msgid "" "``None``." msgstr "" -#: library/sqlite3.rst:1510 +#: library/sqlite3.rst:1688 msgid "Inserts into ``WITHOUT ROWID`` tables are not recorded." msgstr "" -#: library/sqlite3.rst:1512 +#: library/sqlite3.rst:1690 msgid "Added support for the ``REPLACE`` statement." msgstr "" -#: library/sqlite3.rst:1517 +#: library/sqlite3.rst:1695 msgid "" "Read-only attribute that provides the number of modified rows for " "``INSERT``, ``UPDATE``, ``DELETE``, and ``REPLACE`` statements; is ``-1`` " @@ -1435,7 +1601,7 @@ msgid "" "resulting rows must be fetched in order for :attr:`!rowcount` to be updated." msgstr "" -#: library/sqlite3.rst:1528 +#: library/sqlite3.rst:1706 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 " @@ -1444,18 +1610,18 @@ msgid "" "and returns a custom object representing an SQLite row." msgstr "" -#: library/sqlite3.rst:1535 +#: library/sqlite3.rst:1713 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:1551 +#: library/sqlite3.rst:1729 msgid "Row objects" msgstr "" -#: library/sqlite3.rst:1555 +#: library/sqlite3.rst:1733 msgid "" "A :class:`!Row` instance serves as a highly optimized :attr:`~Connection." "row_factory` for :class:`Connection` objects. It supports iteration, " @@ -1463,28 +1629,28 @@ msgid "" "index." msgstr "" -#: library/sqlite3.rst:1560 +#: library/sqlite3.rst:1738 msgid "" "Two :class:`!Row` objects compare equal if they have identical column names " "and values." msgstr "" -#: library/sqlite3.rst:1567 +#: library/sqlite3.rst:1745 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:1571 +#: library/sqlite3.rst:1749 msgid "Added support of slicing." msgstr "" -#: library/sqlite3.rst:1578 +#: library/sqlite3.rst:1756 msgid "Blob objects" msgstr "" -#: library/sqlite3.rst:1584 +#: library/sqlite3.rst:1762 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:" @@ -1492,24 +1658,24 @@ msgid "" "and :term:`slices ` for direct access to the blob data." msgstr "" -#: library/sqlite3.rst:1589 +#: library/sqlite3.rst:1767 msgid "" "Use the :class:`Blob` as a :term:`context manager` to ensure that the blob " "handle is closed after use." msgstr "" -#: library/sqlite3.rst:1619 +#: library/sqlite3.rst:1797 msgid "Close the blob." msgstr "" -#: library/sqlite3.rst:1621 +#: library/sqlite3.rst:1799 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:1627 +#: library/sqlite3.rst:1805 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)` " @@ -1517,18 +1683,18 @@ msgid "" "`~Blob.read` will read until the end of the blob." msgstr "" -#: library/sqlite3.rst:1635 +#: library/sqlite3.rst:1813 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:1641 +#: library/sqlite3.rst:1819 msgid "Return the current access position of the blob." msgstr "" -#: library/sqlite3.rst:1645 +#: library/sqlite3.rst:1823 msgid "" "Set the current access position of the blob to *offset*. The *origin* " "argument defaults to :const:`os.SEEK_SET` (absolute blob positioning). Other " @@ -1536,26 +1702,26 @@ msgid "" "position) and :const:`os.SEEK_END` (seek relative to the blob’s end)." msgstr "" -#: library/sqlite3.rst:1653 +#: library/sqlite3.rst:1831 msgid "PrepareProtocol objects" msgstr "" -#: library/sqlite3.rst:1657 +#: library/sqlite3.rst:1835 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:1665 +#: library/sqlite3.rst:1843 msgid "Exceptions" msgstr "" -#: library/sqlite3.rst:1667 +#: library/sqlite3.rst:1845 msgid "The exception hierarchy is defined by the DB-API 2.0 (:pep:`249`)." msgstr "" -#: library/sqlite3.rst:1671 +#: library/sqlite3.rst:1849 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-" @@ -1563,39 +1729,39 @@ msgid "" "of :exc:`Exception`." msgstr "" -#: library/sqlite3.rst:1678 +#: library/sqlite3.rst:1856 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:1682 +#: library/sqlite3.rst:1860 msgid "" "If the exception originated from within the SQLite library, the following " "two attributes are added to the exception:" msgstr "" -#: library/sqlite3.rst:1687 +#: library/sqlite3.rst:1865 msgid "" "The numeric error code from the `SQLite API `_" msgstr "" -#: library/sqlite3.rst:1694 +#: library/sqlite3.rst:1872 msgid "" "The symbolic name of the numeric error code from the `SQLite API `_" msgstr "" -#: library/sqlite3.rst:1701 +#: library/sqlite3.rst:1879 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:1708 +#: library/sqlite3.rst:1886 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 " @@ -1603,14 +1769,14 @@ msgid "" "subclass of :exc:`Error`." msgstr "" -#: library/sqlite3.rst:1715 +#: library/sqlite3.rst:1893 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:1721 +#: library/sqlite3.rst:1899 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 " @@ -1618,20 +1784,20 @@ msgid "" "``OperationalError`` is a subclass of :exc:`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1729 +#: library/sqlite3.rst:1907 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:1734 +#: library/sqlite3.rst:1912 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:1741 +#: library/sqlite3.rst:1919 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 " @@ -1639,7 +1805,7 @@ msgid "" "`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1748 +#: library/sqlite3.rst:1926 msgid "" "Exception raised in case a method or database API is not supported by the " "underlying SQLite library. For example, setting *deterministic* to ``True`` " @@ -1648,78 +1814,78 @@ msgid "" "subclass of :exc:`DatabaseError`." msgstr "" -#: library/sqlite3.rst:1758 +#: library/sqlite3.rst:1936 msgid "SQLite and Python types" msgstr "" -#: library/sqlite3.rst:1760 +#: library/sqlite3.rst:1938 msgid "" "SQLite natively supports the following types: ``NULL``, ``INTEGER``, " "``REAL``, ``TEXT``, ``BLOB``." msgstr "" -#: library/sqlite3.rst:1763 +#: library/sqlite3.rst:1941 msgid "" "The following Python types can thus be sent to SQLite without any problem:" msgstr "" -#: library/sqlite3.rst:1783 +#: library/sqlite3.rst:1961 msgid "Python type" msgstr "" -#: library/sqlite3.rst:1783 +#: library/sqlite3.rst:1961 msgid "SQLite type" msgstr "" -#: library/sqlite3.rst:1785 +#: library/sqlite3.rst:1963 msgid "``None``" msgstr "" -#: library/sqlite3.rst:1785 +#: library/sqlite3.rst:1963 msgid "``NULL``" msgstr "" -#: library/sqlite3.rst:1787 +#: library/sqlite3.rst:1965 msgid ":class:`int`" msgstr "" -#: library/sqlite3.rst:1787 +#: library/sqlite3.rst:1965 msgid "``INTEGER``" msgstr "" -#: library/sqlite3.rst:1789 +#: library/sqlite3.rst:1967 msgid ":class:`float`" msgstr "" -#: library/sqlite3.rst:1789 +#: library/sqlite3.rst:1967 msgid "``REAL``" msgstr "" -#: library/sqlite3.rst:1774 +#: library/sqlite3.rst:1952 msgid ":class:`str`" msgstr "" -#: library/sqlite3.rst:1791 +#: library/sqlite3.rst:1969 msgid "``TEXT``" msgstr "" -#: library/sqlite3.rst:1794 +#: library/sqlite3.rst:1972 msgid ":class:`bytes`" msgstr "" -#: library/sqlite3.rst:1794 +#: library/sqlite3.rst:1972 msgid "``BLOB``" msgstr "" -#: library/sqlite3.rst:1780 +#: library/sqlite3.rst:1958 msgid "This is how SQLite types are converted to Python types by default:" msgstr "" -#: library/sqlite3.rst:1791 +#: library/sqlite3.rst:1969 msgid "depends on :attr:`~Connection.text_factory`, :class:`str` by default" msgstr "" -#: library/sqlite3.rst:1797 +#: library/sqlite3.rst:1975 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 " @@ -1728,42 +1894,47 @@ msgid "" "converters>`." msgstr "" -#: library/sqlite3.rst:1807 -msgid "Default adapters and converters" +#: library/sqlite3.rst:1985 +msgid "Default adapters and converters (deprecated)" msgstr "" -#: library/sqlite3.rst:1809 +#: library/sqlite3.rst:1989 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." +"The default adapters and converters are deprecated as of Python 3.12. " +"Instead, use the :ref:`sqlite3-adapter-converter-recipes` and tailor them to " +"your needs." msgstr "" -#: library/sqlite3.rst:1812 +#: library/sqlite3.rst:1993 +msgid "The deprecated default adapters and converters consist of:" +msgstr "" + +#: library/sqlite3.rst:1995 msgid "" -"The default converters are registered under the name \"date\" for :class:" -"`datetime.date` and under the name \"timestamp\" for :class:`datetime." -"datetime`." +"An adapter for :class:`datetime.date` objects to :class:`strings ` in " +"`ISO 8601`_ format." msgstr "" -#: library/sqlite3.rst:1816 +#: library/sqlite3.rst:1997 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." +"An adapter for :class:`datetime.datetime` objects to strings in ISO 8601 " +"format." msgstr "" -#: library/sqlite3.rst:1820 -msgid "The following example demonstrates this." +#: library/sqlite3.rst:1999 +msgid "" +"A converter for :ref:`declared ` \"date\" types to :" +"class:`datetime.date` objects." msgstr "" -#: library/sqlite3.rst:1824 +#: library/sqlite3.rst:2001 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." +"A converter for declared \"timestamp\" types to :class:`datetime.datetime` " +"objects. Fractional parts will be truncated to 6 digits (microsecond " +"precision)." msgstr "" -#: library/sqlite3.rst:1830 +#: library/sqlite3.rst:2007 msgid "" "The default \"timestamp\" converter ignores UTC offsets in the database and " "always returns a naive :class:`datetime.datetime` object. To preserve UTC " @@ -1771,15 +1942,38 @@ msgid "" "offset-aware converter with :func:`register_converter`." msgstr "" -#: library/sqlite3.rst:1839 +#: library/sqlite3.rst:2020 +msgid "Command-line interface" +msgstr "" + +#: library/sqlite3.rst:2022 +msgid "" +"The :mod:`!sqlite3` module can be invoked as a script, using the " +"interpreter's :option:`-m` switch, in order to provide a simple SQLite " +"shell. The argument signature is as follows::" +msgstr "" + +#: library/sqlite3.rst:2029 +msgid "Type ``.quit`` or CTRL-D to exit the shell." +msgstr "" + +#: library/sqlite3.rst:2035 +msgid "Print CLI help." +msgstr "" + +#: library/sqlite3.rst:2039 +msgid "Print underlying SQLite library version." +msgstr "" + +#: library/sqlite3.rst:2047 msgid "How-to guides" msgstr "" -#: library/sqlite3.rst:1844 +#: library/sqlite3.rst:2052 msgid "How to use placeholders to bind values in SQL queries" msgstr "" -#: library/sqlite3.rst:1846 +#: library/sqlite3.rst:2054 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 " @@ -1787,7 +1981,7 @@ msgid "" "close the single quote and inject ``OR TRUE`` to select all rows::" msgstr "" -#: library/sqlite3.rst:1859 +#: library/sqlite3.rst:2067 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 " @@ -1795,35 +1989,35 @@ msgid "" "second argument of the cursor's :meth:`~Cursor.execute` method." msgstr "" -#: library/sqlite3.rst:1864 +#: library/sqlite3.rst:2072 msgid "" "An SQL statement may use one of two kinds of placeholders: question marks " "(qmark style) or named placeholders (named style). For the qmark style, " "*parameters* must be a :term:`sequence` whose length must match the number " "of placeholders, or a :exc:`ProgrammingError` is raised. For the named " -"style, *parameters* should be an instance of a :class:`dict` (or a " -"subclass), which must contain keys for all named parameters; any extra items " -"are ignored. Here's an example of both styles:" +"style, *parameters* must be an instance of a :class:`dict` (or a subclass), " +"which must contain keys for all named parameters; any extra items are " +"ignored. Here's an example of both styles:" msgstr "" -#: library/sqlite3.rst:1901 +#: library/sqlite3.rst:2109 msgid "" ":pep:`249` numeric placeholders are *not* supported. If used, they will be " "interpreted as named placeholders." msgstr "" -#: library/sqlite3.rst:1908 +#: library/sqlite3.rst:2116 msgid "How to adapt custom Python types to SQLite values" msgstr "" -#: library/sqlite3.rst:1910 +#: library/sqlite3.rst:2118 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:1914 +#: library/sqlite3.rst:2122 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 " @@ -1833,11 +2027,11 @@ msgid "" "custom adapter functions." msgstr "" -#: library/sqlite3.rst:1926 +#: library/sqlite3.rst:2134 msgid "How to write adaptable objects" msgstr "" -#: library/sqlite3.rst:1928 +#: library/sqlite3.rst:2136 msgid "" "Suppose we have a :class:`!Point` class that represents a pair of " "coordinates, ``x`` and ``y``, in a Cartesian coordinate system. The " @@ -1847,84 +2041,84 @@ msgid "" "object passed to *protocol* will be of type :class:`PrepareProtocol`." msgstr "" -#: library/sqlite3.rst:1959 +#: library/sqlite3.rst:2167 msgid "How to register adapter callables" msgstr "" -#: library/sqlite3.rst:1961 +#: library/sqlite3.rst:2169 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:1991 +#: library/sqlite3.rst:2199 msgid "How to convert SQLite values to custom Python types" msgstr "" -#: library/sqlite3.rst:1993 +#: library/sqlite3.rst:2201 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:1998 +#: library/sqlite3.rst:2206 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:2001 +#: library/sqlite3.rst:2209 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:2006 +#: library/sqlite3.rst:2214 msgid "" "Converter functions are **always** passed a :class:`bytes` object, no matter " "the underlying SQLite data type." msgstr "" -#: library/sqlite3.rst:2015 +#: library/sqlite3.rst:2223 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:2019 +#: library/sqlite3.rst:2227 msgid "Implicit: set *detect_types* to :const:`PARSE_DECLTYPES`" msgstr "" -#: library/sqlite3.rst:2020 +#: library/sqlite3.rst:2228 msgid "Explicit: set *detect_types* to :const:`PARSE_COLNAMES`" msgstr "" -#: library/sqlite3.rst:2021 +#: library/sqlite3.rst:2229 msgid "" "Both: set *detect_types* to ``sqlite3.PARSE_DECLTYPES | sqlite3." "PARSE_COLNAMES``. Column names take precedence over declared types." msgstr "" -#: library/sqlite3.rst:2025 +#: library/sqlite3.rst:2233 msgid "The following example illustrates the implicit and explicit approaches:" msgstr "" -#: library/sqlite3.rst:2076 +#: library/sqlite3.rst:2284 msgid "Adapter and converter recipes" msgstr "" -#: library/sqlite3.rst:2078 +#: library/sqlite3.rst:2286 msgid "This section shows recipes for common adapters and converters." msgstr "" -#: library/sqlite3.rst:2140 +#: library/sqlite3.rst:2348 msgid "How to use connection shortcut methods" msgstr "" -#: library/sqlite3.rst:2142 +#: library/sqlite3.rst:2350 msgid "" "Using the :meth:`~Connection.execute`, :meth:`~Connection.executemany`, and :" "meth:`~Connection.executescript` methods of the :class:`Connection` class, " @@ -1936,72 +2130,75 @@ msgid "" "object." msgstr "" -#: library/sqlite3.rst:2183 +#: library/sqlite3.rst:2391 msgid "How to use the connection context manager" msgstr "" -#: library/sqlite3.rst:2185 +#: library/sqlite3.rst:2393 msgid "" "A :class:`Connection` object can be used as a context manager that " "automatically commits or rolls back open transactions when leaving the body " "of the context manager. If the body of the :keyword:`with` statement " "finishes without exceptions, the transaction is committed. If this commit " "fails, or if the body of the ``with`` statement raises an uncaught " -"exception, the transaction is rolled back." +"exception, the transaction is rolled back. If :attr:`~Connection.autocommit` " +"is ``False``, a new transaction is implicitly opened after committing or " +"rolling back." msgstr "" -#: library/sqlite3.rst:2194 +#: library/sqlite3.rst:2404 msgid "" "If there is no open transaction upon leaving the body of the ``with`` " -"statement, the context manager is a no-op." +"statement, or if :attr:`~Connection.autocommit` is ``True``, the context " +"manager does nothing." msgstr "" -#: library/sqlite3.rst:2199 +#: library/sqlite3.rst:2410 msgid "" "The context manager neither implicitly opens a new transaction nor closes " "the connection." msgstr "" -#: library/sqlite3.rst:2232 +#: library/sqlite3.rst:2443 msgid "How to work with SQLite URIs" msgstr "" -#: library/sqlite3.rst:2234 +#: library/sqlite3.rst:2445 msgid "Some useful URI tricks include:" msgstr "" -#: library/sqlite3.rst:2236 +#: library/sqlite3.rst:2447 msgid "Open a database in read-only mode:" msgstr "" -#: library/sqlite3.rst:2245 +#: library/sqlite3.rst:2456 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:2255 +#: library/sqlite3.rst:2466 msgid "Create a shared named in-memory database:" msgstr "" -#: library/sqlite3.rst:2269 +#: library/sqlite3.rst:2480 msgid "" "More information about this feature, including a list of parameters, can be " "found in the `SQLite URI documentation`_." msgstr "" -#: library/sqlite3.rst:2278 +#: library/sqlite3.rst:2489 msgid "How to create and use row factories" msgstr "" -#: library/sqlite3.rst:2280 +#: library/sqlite3.rst:2491 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:2285 +#: library/sqlite3.rst:2496 msgid "" "While :attr:`!row_factory` exists as an attribute both on the :class:" "`Cursor` and the :class:`Connection`, it is recommended to set :class:" @@ -2009,7 +2206,7 @@ msgid "" "use the same row factory." msgstr "" -#: library/sqlite3.rst:2290 +#: library/sqlite3.rst:2501 msgid "" ":class:`!Row` provides indexed and case-insensitive named access to columns, " "with minimal memory overhead and performance impact over a :class:`!tuple`. " @@ -2017,11 +2214,11 @@ msgid "" "attribute:" msgstr "" -#: library/sqlite3.rst:2300 +#: library/sqlite3.rst:2511 msgid "Queries now return :class:`!Row` objects:" msgstr "" -#: library/sqlite3.rst:2317 +#: library/sqlite3.rst:2528 msgid "" "The ``FROM`` clause can be omitted in the ``SELECT`` statement, as in the " "above example. In such cases, SQLite returns a single row with columns " @@ -2029,47 +2226,124 @@ msgid "" "alias``." msgstr "" -#: library/sqlite3.rst:2322 +#: library/sqlite3.rst:2533 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:2331 +#: library/sqlite3.rst:2542 msgid "" "Using it, queries now return a :class:`!dict` instead of a :class:`!tuple`:" msgstr "" -#: library/sqlite3.rst:2341 +#: library/sqlite3.rst:2552 msgid "The following row factory returns a :term:`named tuple`:" msgstr "" -#: library/sqlite3.rst:2352 +#: library/sqlite3.rst:2563 msgid ":func:`!namedtuple_factory` can be used as follows:" msgstr "" -#: library/sqlite3.rst:2367 +#: library/sqlite3.rst:2578 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:2375 +#: library/sqlite3.rst:2586 msgid "Explanation" msgstr "" -#: library/sqlite3.rst:2380 +#: library/sqlite3.rst:2592 msgid "Transaction control" msgstr "" -#: library/sqlite3.rst:2382 +#: library/sqlite3.rst:2594 +msgid "" +":mod:`!sqlite3` offers multiple methods of controlling whether, when and how " +"database transactions are opened and closed. :ref:`sqlite3-transaction-" +"control-autocommit` is recommended, while :ref:`sqlite3-transaction-control-" +"isolation-level` retains the pre-Python 3.12 behaviour." +msgstr "" + +#: library/sqlite3.rst:2603 +msgid "Transaction control via the ``autocommit`` attribute" +msgstr "" + +#: library/sqlite3.rst:2605 +msgid "" +"The recommended way of controlling transaction behaviour is through the :" +"attr:`Connection.autocommit` attribute, which should preferably be set using " +"the *autocommit* parameter of :func:`connect`." +msgstr "" + +#: library/sqlite3.rst:2610 +msgid "" +"It is suggested to set *autocommit* to ``False``, which implies :pep:`249`-" +"compliant transaction control. This means:" +msgstr "" + +#: library/sqlite3.rst:2614 +msgid "" +":mod:`!sqlite3` ensures that a transaction is always open, so :func:" +"`connect`, :meth:`Connection.commit`, and :meth:`Connection.rollback` will " +"implicitly open a new transaction (immediately after closing the pending " +"one, for the latter two). :mod:`!sqlite3` uses ``BEGIN DEFERRED`` statements " +"when opening transactions." +msgstr "" + +#: library/sqlite3.rst:2619 +msgid "Transactions should be committed explicitly using :meth:`!commit`." +msgstr "" + +#: library/sqlite3.rst:2620 +msgid "Transactions should be rolled back explicitly using :meth:`!rollback`." +msgstr "" + +#: library/sqlite3.rst:2621 msgid "" -"The :mod:`!sqlite3` module does not adhere to the transaction handling " -"recommended by :pep:`249`." +"An implicit rollback is performed if the database is :meth:`~Connection." +"close`-ed with pending changes." +msgstr "" + +#: library/sqlite3.rst:2624 +msgid "" +"Set *autocommit* to ``True`` to enable SQLite's `autocommit mode`_. In this " +"mode, :meth:`Connection.commit` and :meth:`Connection.rollback` have no " +"effect. Note that SQLite's autocommit mode is distinct from the :pep:`249`-" +"compliant :attr:`Connection.autocommit` attribute; use :attr:`Connection." +"in_transaction` to query the low-level SQLite autocommit mode." +msgstr "" + +#: library/sqlite3.rst:2632 +msgid "" +"Set *autocommit* to :data:`LEGACY_TRANSACTION_CONTROL` to leave transaction " +"control behaviour to the :attr:`Connection.isolation_level` attribute. See :" +"ref:`sqlite3-transaction-control-isolation-level` for more information." +msgstr "" + +#: library/sqlite3.rst:2641 +msgid "Transaction control via the ``isolation_level`` attribute" msgstr "" -#: library/sqlite3.rst:2385 +#: library/sqlite3.rst:2645 +msgid "" +"The recommended way of controlling transactions is via the :attr:" +"`~Connection.autocommit` attribute. See :ref:`sqlite3-transaction-control-" +"autocommit`." +msgstr "" + +#: library/sqlite3.rst:2649 +msgid "" +"If :attr:`Connection.autocommit` is set to :data:" +"`LEGACY_TRANSACTION_CONTROL` (the default), transaction behaviour is " +"controlled using the :attr:`Connection.isolation_level` attribute. " +"Otherwise, :attr:`!isolation_level` has no effect." +msgstr "" + +#: library/sqlite3.rst:2655 msgid "" "If the connection attribute :attr:`~Connection.isolation_level` is not " "``None``, new transactions are implicitly opened before :meth:`~Cursor." @@ -2083,7 +2357,7 @@ msgid "" "attribute." msgstr "" -#: library/sqlite3.rst:2398 +#: library/sqlite3.rst:2668 msgid "" "If :attr:`~Connection.isolation_level` is set to ``None``, no transactions " "are implicitly opened at all. This leaves the underlying SQLite library in " @@ -2093,27 +2367,33 @@ msgid "" "in_transaction` attribute." msgstr "" -#: library/sqlite3.rst:2406 +#: library/sqlite3.rst:2676 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:2410 +#: library/sqlite3.rst:2680 msgid "" ":mod:`!sqlite3` used to implicitly commit an open transaction before DDL " "statements. This is no longer the case." msgstr "" -#: library/sqlite3.rst:1335 +#: library/sqlite3.rst:2684 +msgid "" +"The recommended way of controlling transactions is now via the :attr:" +"`~Connection.autocommit` attribute." +msgstr "" + +#: library/sqlite3.rst:1492 msgid "? (question mark)" msgstr "" -#: library/sqlite3.rst:1336 +#: library/sqlite3.rst:1493 msgid "in SQL statements" msgstr "" -#: library/sqlite3.rst:1336 +#: library/sqlite3.rst:1493 msgid ": (colon)" msgstr "" diff --git a/library/ssl.po b/library/ssl.po index 4089d10c8..2d9bb2c47 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -115,37 +115,34 @@ msgstr "" #: library/ssl.rst:77 msgid "" -"Since Python 3.2 and 2.7.9, it is recommended to use the :meth:`SSLContext." -"wrap_socket` of an :class:`SSLContext` instance to wrap sockets as :class:" -"`SSLSocket` objects. The helper functions :func:`create_default_context` " -"returns a new context with secure default settings. The old :func:" -"`wrap_socket` function is deprecated since it is both inefficient and has no " -"support for server name indication (SNI) and hostname matching." +"Instances of :class:`SSLSocket` must be created using the :meth:`SSLContext." +"wrap_socket` method. The helper function :func:`create_default_context` " +"returns a new context with secure default settings." msgstr "" -#: library/ssl.rst:85 +#: library/ssl.rst:82 msgid "Client socket example with default context and IPv4/IPv6 dual stack::" msgstr "" -#: library/ssl.rst:98 +#: library/ssl.rst:95 msgid "Client socket example with custom context and IPv4::" msgstr "" -#: library/ssl.rst:110 +#: library/ssl.rst:107 msgid "Server socket example listening on localhost IPv4::" msgstr "" -#: library/ssl.rst:124 +#: library/ssl.rst:121 msgid "Context creation" msgstr "" -#: library/ssl.rst:126 +#: library/ssl.rst:123 msgid "" "A convenience function helps create :class:`SSLContext` objects for common " "purposes." msgstr "" -#: library/ssl.rst:131 +#: library/ssl.rst:128 msgid "" "Return a new :class:`SSLContext` object with default settings for the given " "*purpose*. The settings are chosen by the :mod:`ssl` module, and usually " @@ -153,7 +150,7 @@ msgid "" "constructor directly." msgstr "" -#: library/ssl.rst:136 +#: library/ssl.rst:133 msgid "" "*cafile*, *capath*, *cadata* represent optional CA certificates to trust for " "certificate verification, as in :meth:`SSLContext.load_verify_locations`. " @@ -161,7 +158,7 @@ msgid "" "system's default CA certificates instead." msgstr "" -#: library/ssl.rst:142 +#: library/ssl.rst:139 msgid "" "The settings are: :data:`PROTOCOL_TLS_CLIENT` or :data:" "`PROTOCOL_TLS_SERVER`, :data:`OP_NO_SSLv2`, and :data:`OP_NO_SSLv3` with " @@ -173,27 +170,27 @@ msgid "" "certificates." msgstr "" -#: library/ssl.rst:151 +#: library/ssl.rst:148 msgid "" "When :attr:`~SSLContext.keylog_filename` is supported and the environment " "variable :envvar:`SSLKEYLOGFILE` is set, :func:`create_default_context` " "enables key logging." msgstr "" -#: library/ssl.rst:156 +#: library/ssl.rst:153 msgid "" "The protocol, options, cipher and other settings may change to more " "restrictive values anytime without prior deprecation. The values represent " "a fair balance between compatibility and security." msgstr "" -#: library/ssl.rst:160 +#: library/ssl.rst:157 msgid "" "If your application needs specific settings, you should create a :class:" "`SSLContext` and apply the settings yourself." msgstr "" -#: library/ssl.rst:164 +#: library/ssl.rst:161 msgid "" "If you find that when certain older clients or servers attempt to connect " "with a :class:`SSLContext` created by this function that they get an error " @@ -204,33 +201,33 @@ msgid "" "still allow SSL 3.0 connections you can re-enable them using::" msgstr "" -#: library/ssl.rst:180 +#: library/ssl.rst:177 msgid "RC4 was dropped from the default cipher string." msgstr "" -#: library/ssl.rst:184 +#: library/ssl.rst:181 msgid "ChaCha20/Poly1305 was added to the default cipher string." msgstr "" -#: library/ssl.rst:186 +#: library/ssl.rst:183 msgid "3DES was dropped from the default cipher string." msgstr "" -#: library/ssl.rst:190 +#: library/ssl.rst:187 msgid "Support for key logging to :envvar:`SSLKEYLOGFILE` was added." msgstr "" -#: library/ssl.rst:194 +#: library/ssl.rst:191 msgid "" "The context now uses :data:`PROTOCOL_TLS_CLIENT` or :data:" "`PROTOCOL_TLS_SERVER` protocol instead of generic :data:`PROTOCOL_TLS`." msgstr "" -#: library/ssl.rst:200 +#: library/ssl.rst:197 msgid "Exceptions" msgstr "" -#: library/ssl.rst:204 +#: library/ssl.rst:201 msgid "" "Raised to signal an error from the underlying SSL implementation (currently " "provided by the OpenSSL library). This signifies some problem in the higher-" @@ -240,85 +237,85 @@ msgid "" "OpenSSL library." msgstr "" -#: library/ssl.rst:211 +#: library/ssl.rst:208 msgid ":exc:`SSLError` used to be a subtype of :exc:`socket.error`." msgstr "" -#: library/ssl.rst:216 +#: library/ssl.rst:213 msgid "" "A string mnemonic designating the OpenSSL submodule in which the error " "occurred, such as ``SSL``, ``PEM`` or ``X509``. The range of possible " "values depends on the OpenSSL version." msgstr "" -#: library/ssl.rst:224 +#: library/ssl.rst:221 msgid "" "A string mnemonic designating the reason this error occurred, for example " "``CERTIFICATE_VERIFY_FAILED``. The range of possible values depends on the " "OpenSSL version." msgstr "" -#: library/ssl.rst:232 +#: library/ssl.rst:229 msgid "" "A subclass of :exc:`SSLError` raised when trying to read or write and the " "SSL connection has been closed cleanly. Note that this doesn't mean that " "the underlying transport (read TCP) has been closed." msgstr "" -#: library/ssl.rst:240 +#: library/ssl.rst:237 msgid "" "A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket ` when trying to read or write data, but more data needs to be " "received on the underlying TCP transport before the request can be fulfilled." msgstr "" -#: library/ssl.rst:249 +#: library/ssl.rst:246 msgid "" "A subclass of :exc:`SSLError` raised by a :ref:`non-blocking SSL socket ` when trying to read or write data, but more data needs to be " "sent on the underlying TCP transport before the request can be fulfilled." msgstr "" -#: library/ssl.rst:258 +#: library/ssl.rst:255 msgid "" "A subclass of :exc:`SSLError` raised when a system error was encountered " "while trying to fulfill an operation on a SSL socket. Unfortunately, there " "is no easy way to inspect the original errno number." msgstr "" -#: library/ssl.rst:266 +#: library/ssl.rst:263 msgid "" "A subclass of :exc:`SSLError` raised when the SSL connection has been " "terminated abruptly. Generally, you shouldn't try to reuse the underlying " "transport when this error is encountered." msgstr "" -#: library/ssl.rst:274 +#: library/ssl.rst:271 msgid "" "A subclass of :exc:`SSLError` raised when certificate validation has failed." msgstr "" -#: library/ssl.rst:281 +#: library/ssl.rst:278 msgid "A numeric error number that denotes the verification error." msgstr "" -#: library/ssl.rst:285 +#: library/ssl.rst:282 msgid "A human readable string of the verification error." msgstr "" -#: library/ssl.rst:289 +#: library/ssl.rst:286 msgid "An alias for :exc:`SSLCertVerificationError`." msgstr "" -#: library/ssl.rst:291 +#: library/ssl.rst:288 msgid "The exception is now an alias for :exc:`SSLCertVerificationError`." msgstr "" -#: library/ssl.rst:296 +#: library/ssl.rst:293 msgid "Random generation" msgstr "" -#: library/ssl.rst:300 +#: library/ssl.rst:297 msgid "" "Return *num* cryptographically strong pseudo-random bytes. Raises an :class:" "`SSLError` if the PRNG has not been seeded with enough data or if the " @@ -327,11 +324,11 @@ msgid "" "to seed the PRNG." msgstr "" -#: library/ssl.rst:327 +#: library/ssl.rst:303 msgid "For almost all applications :func:`os.urandom` is preferable." msgstr "" -#: library/ssl.rst:308 +#: library/ssl.rst:305 msgid "" "Read the Wikipedia article, `Cryptographically secure pseudorandom number " "generator (CSPRNG) `: Windows." msgstr "" -#: library/ssl.rst:505 +#: library/ssl.rst:438 msgid "" "Retrieve CRLs from Windows' system cert store. *store_name* may be one of " "``CA``, ``ROOT`` or ``MY``. Windows may provide additional cert stores, too." msgstr "" -#: library/ssl.rst:509 +#: library/ssl.rst:442 msgid "" "The function returns a list of (cert_bytes, encoding_type, trust) tuples. " "The encoding_type specifies the encoding of cert_bytes. It is either :const:" "`x509_asn` for X.509 ASN.1 data or :const:`pkcs_7_asn` for PKCS#7 ASN.1 data." msgstr "" -#: library/ssl.rst:523 -msgid "" -"Takes an instance ``sock`` of :class:`socket.socket`, and returns an " -"instance of :class:`ssl.SSLSocket`, a subtype of :class:`socket.socket`, " -"which wraps the underlying socket in an SSL context. ``sock`` must be a :" -"data:`~socket.SOCK_STREAM` socket; other socket types are unsupported." -msgstr "" - -#: library/ssl.rst:528 -msgid "" -"Internally, function creates a :class:`SSLContext` with protocol " -"*ssl_version* and :attr:`SSLContext.options` set to *cert_reqs*. If " -"parameters *keyfile*, *certfile*, *ca_certs* or *ciphers* are set, then the " -"values are passed to :meth:`SSLContext.load_cert_chain`, :meth:`SSLContext." -"load_verify_locations`, and :meth:`SSLContext.set_ciphers`." -msgstr "" - -#: library/ssl.rst:535 -msgid "" -"The arguments *server_side*, *do_handshake_on_connect*, and " -"*suppress_ragged_eofs* have the same meaning as :meth:`SSLContext." -"wrap_socket`." -msgstr "" - -#: library/ssl.rst:541 -msgid "" -"Since Python 3.2 and 2.7.9, it is recommended to use the :meth:`SSLContext." -"wrap_socket` instead of :func:`wrap_socket`. The top-level function is " -"limited and creates an insecure client socket without server name indication " -"or hostname matching." -msgstr "" - -#: library/ssl.rst:547 +#: library/ssl.rst:453 msgid "Constants" msgstr "" -#: library/ssl.rst:549 +#: library/ssl.rst:455 msgid "" "All constants are now :class:`enum.IntEnum` or :class:`enum.IntFlag` " "collections." msgstr "" -#: library/ssl.rst:555 +#: library/ssl.rst:461 msgid "" -"Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs`` " -"parameter to :func:`wrap_socket`. Except for :const:`PROTOCOL_TLS_CLIENT`, " -"it is the default mode. With client-side sockets, just about any cert is " -"accepted. Validation errors, such as untrusted or expired cert, are ignored " -"and do not abort the TLS/SSL handshake." +"Possible value for :attr:`SSLContext.verify_mode`. Except for :const:" +"`PROTOCOL_TLS_CLIENT`, it is the default mode. With client-side sockets, " +"just about any cert is accepted. Validation errors, such as untrusted or " +"expired cert, are ignored and do not abort the TLS/SSL handshake." msgstr "" -#: library/ssl.rst:561 +#: library/ssl.rst:467 msgid "" "In server mode, no certificate is requested from the client, so the client " "does not send any for client cert authentication." msgstr "" -#: library/ssl.rst:2340 +#: library/ssl.rst:2245 msgid "See the discussion of :ref:`ssl-security` below." msgstr "" -#: library/ssl.rst:568 +#: library/ssl.rst:474 msgid "" -"Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs`` " -"parameter to :func:`wrap_socket`. In client mode, :const:`CERT_OPTIONAL` " -"has the same meaning as :const:`CERT_REQUIRED`. It is recommended to use :" -"const:`CERT_REQUIRED` for client-side sockets instead." +"Possible value for :attr:`SSLContext.verify_mode`. In client mode, :const:" +"`CERT_OPTIONAL` has the same meaning as :const:`CERT_REQUIRED`. It is " +"recommended to use :const:`CERT_REQUIRED` for client-side sockets instead." msgstr "" -#: library/ssl.rst:573 +#: library/ssl.rst:479 msgid "" "In server mode, a client certificate request is sent to the client. The " "client may either ignore the request or send a certificate in order perform " @@ -643,45 +542,43 @@ msgid "" "TLS handshake." msgstr "" -#: library/ssl.rst:599 +#: library/ssl.rst:504 msgid "" -"Use of this setting requires a valid set of CA certificates to be passed, " -"either to :meth:`SSLContext.load_verify_locations` or as a value of the " -"``ca_certs`` parameter to :func:`wrap_socket`." +"Use of this setting requires a valid set of CA certificates to be passed to :" +"meth:`SSLContext.load_verify_locations`." msgstr "" -#: library/ssl.rst:585 +#: library/ssl.rst:490 msgid "" -"Possible value for :attr:`SSLContext.verify_mode`, or the ``cert_reqs`` " -"parameter to :func:`wrap_socket`. In this mode, certificates are required " -"from the other side of the socket connection; an :class:`SSLError` will be " -"raised if no certificate is provided, or if its validation fails. This mode " -"is **not** sufficient to verify a certificate in client mode as it does not " -"match hostnames. :attr:`~SSLContext.check_hostname` must be enabled as well " -"to verify the authenticity of a cert. :const:`PROTOCOL_TLS_CLIENT` uses :" -"const:`CERT_REQUIRED` and enables :attr:`~SSLContext.check_hostname` by " -"default." +"Possible value for :attr:`SSLContext.verify_mode`. In this mode, " +"certificates are required from the other side of the socket connection; an :" +"class:`SSLError` will be raised if no certificate is provided, or if its " +"validation fails. This mode is **not** sufficient to verify a certificate in " +"client mode as it does not match hostnames. :attr:`~SSLContext." +"check_hostname` must be enabled as well to verify the authenticity of a " +"cert. :const:`PROTOCOL_TLS_CLIENT` uses :const:`CERT_REQUIRED` and enables :" +"attr:`~SSLContext.check_hostname` by default." msgstr "" -#: library/ssl.rst:595 +#: library/ssl.rst:500 msgid "" "With server socket, this mode provides mandatory TLS client cert " "authentication. A client certificate request is sent to the client and the " "client must provide a valid and trusted certificate." msgstr "" -#: library/ssl.rst:605 +#: library/ssl.rst:509 msgid ":class:`enum.IntEnum` collection of CERT_* constants." msgstr "" -#: library/ssl.rst:611 +#: library/ssl.rst:515 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. In this mode, " "certificate revocation lists (CRLs) are not checked. By default OpenSSL does " "neither require nor verify CRLs." msgstr "" -#: library/ssl.rst:619 +#: library/ssl.rst:523 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. In this mode, only the " "peer cert is checked but none of the intermediate CA certificates. The mode " @@ -690,32 +587,32 @@ msgid "" "load_verify_locations`, validation will fail." msgstr "" -#: library/ssl.rst:629 +#: library/ssl.rst:533 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. In this mode, CRLs of " "all certificates in the peer cert chain are checked." msgstr "" -#: library/ssl.rst:636 +#: library/ssl.rst:540 msgid "" "Possible value for :attr:`SSLContext.verify_flags` to disable workarounds " "for broken X.509 certificates." msgstr "" -#: library/ssl.rst:643 +#: library/ssl.rst:547 msgid "" "Possible value for :attr:`SSLContext.verify_flags` to enables proxy " "certificate verification." msgstr "" -#: library/ssl.rst:650 +#: library/ssl.rst:554 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to " "prefer trusted certificates when building the trust chain to validate a " "certificate. This flag is enabled by default." msgstr "" -#: library/ssl.rst:658 +#: library/ssl.rst:562 msgid "" "Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to " "accept intermediate CAs in the trust store to be treated as trust-anchors, " @@ -724,25 +621,25 @@ msgid "" "to trust its ancestor root CA." msgstr "" -#: library/ssl.rst:669 +#: library/ssl.rst:573 msgid ":class:`enum.IntFlag` collection of VERIFY_* constants." msgstr "" -#: library/ssl.rst:675 +#: library/ssl.rst:579 msgid "" "Selects the highest protocol version that both the client and server " "support. Despite the name, this option can select both \"SSL\" and \"TLS\" " "protocols." msgstr "" -#: library/ssl.rst:682 +#: library/ssl.rst:586 msgid "" "TLS clients and servers require different default settings for secure " "communication. The generic TLS protocol constant is deprecated in favor of :" "data:`PROTOCOL_TLS_CLIENT` and :data:`PROTOCOL_TLS_SERVER`." msgstr "" -#: library/ssl.rst:688 +#: library/ssl.rst:592 msgid "" "Auto-negotiate the highest protocol version that both the client and server " "support, and configure the context client-side connections. The protocol " @@ -750,53 +647,35 @@ msgid "" "default." msgstr "" -#: library/ssl.rst:697 +#: library/ssl.rst:601 msgid "" "Auto-negotiate the highest protocol version that both the client and server " "support, and configure the context server-side connections." msgstr "" -#: library/ssl.rst:704 +#: library/ssl.rst:608 msgid "Alias for :data:`PROTOCOL_TLS`." msgstr "" -#: library/ssl.rst:708 +#: library/ssl.rst:612 msgid "Use :data:`PROTOCOL_TLS` instead." msgstr "" -#: library/ssl.rst:712 -msgid "Selects SSL version 2 as the channel encryption protocol." -msgstr "" - -#: library/ssl.rst:714 -msgid "" -"This protocol is not available if OpenSSL is compiled with the ``no-ssl2`` " -"option." -msgstr "" - -#: library/ssl.rst:719 -msgid "SSL version 2 is insecure. Its use is highly discouraged." -msgstr "" - -#: library/ssl.rst:723 -msgid "OpenSSL has removed support for SSLv2." -msgstr "" - -#: library/ssl.rst:727 +#: library/ssl.rst:616 msgid "Selects SSL version 3 as the channel encryption protocol." msgstr "" -#: library/ssl.rst:729 +#: library/ssl.rst:618 msgid "" "This protocol is not available if OpenSSL is compiled with the ``no-ssl3`` " "option." msgstr "" -#: library/ssl.rst:734 +#: library/ssl.rst:623 msgid "SSL version 3 is insecure. Its use is highly discouraged." msgstr "" -#: library/ssl.rst:738 +#: library/ssl.rst:627 msgid "" "OpenSSL has deprecated all version specific protocols. Use the default " "protocol :data:`PROTOCOL_TLS_SERVER` or :data:`PROTOCOL_TLS_CLIENT` with :" @@ -804,87 +683,87 @@ msgid "" "instead." msgstr "" -#: library/ssl.rst:746 +#: library/ssl.rst:635 msgid "Selects TLS version 1.0 as the channel encryption protocol." msgstr "" -#: library/ssl.rst:761 library/ssl.rst:772 +#: library/ssl.rst:650 library/ssl.rst:661 msgid "OpenSSL has deprecated all version specific protocols." msgstr "" -#: library/ssl.rst:754 +#: library/ssl.rst:643 msgid "" "Selects TLS version 1.1 as the channel encryption protocol. Available only " "with openssl version 1.0.1+." msgstr "" -#: library/ssl.rst:765 +#: library/ssl.rst:654 msgid "" "Selects TLS version 1.2 as the channel encryption protocol. Available only " "with openssl version 1.0.1+." msgstr "" -#: library/ssl.rst:776 +#: library/ssl.rst:665 msgid "" "Enables workarounds for various bugs present in other SSL implementations. " "This option is set by default. It does not necessarily set the same flags " "as OpenSSL's ``SSL_OP_ALL`` constant." msgstr "" -#: library/ssl.rst:784 +#: library/ssl.rst:673 msgid "" "Prevents an SSLv2 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing SSLv2 as " "the protocol version." msgstr "" -#: library/ssl.rst:792 +#: library/ssl.rst:681 msgid "SSLv2 is deprecated" msgstr "" -#: library/ssl.rst:796 +#: library/ssl.rst:685 msgid "" "Prevents an SSLv3 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing SSLv3 as " "the protocol version." msgstr "" -#: library/ssl.rst:804 +#: library/ssl.rst:693 msgid "SSLv3 is deprecated" msgstr "" -#: library/ssl.rst:808 +#: library/ssl.rst:697 msgid "" "Prevents a TLSv1 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1 as " "the protocol version." msgstr "" -#: library/ssl.rst:814 +#: library/ssl.rst:703 msgid "" "The option is deprecated since OpenSSL 1.1.0, use the new :attr:`SSLContext." "minimum_version` and :attr:`SSLContext.maximum_version` instead." msgstr "" -#: library/ssl.rst:821 +#: library/ssl.rst:710 msgid "" "Prevents a TLSv1.1 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.1 as " "the protocol version. Available only with openssl version 1.0.1+." msgstr "" -#: library/ssl.rst:838 +#: library/ssl.rst:727 msgid "The option is deprecated since OpenSSL 1.1.0." msgstr "" -#: library/ssl.rst:832 +#: library/ssl.rst:721 msgid "" "Prevents a TLSv1.2 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.2 as " "the protocol version. Available only with openssl version 1.0.1+." msgstr "" -#: library/ssl.rst:843 +#: library/ssl.rst:732 msgid "" "Prevents a TLSv1.3 connection. This option is only applicable in conjunction " "with :const:`PROTOCOL_TLS`. It prevents the peers from choosing TLSv1.3 as " @@ -893,100 +772,122 @@ msgid "" "defaults to *0*." msgstr "" -#: library/ssl.rst:851 +#: library/ssl.rst:740 msgid "" "The option is deprecated since OpenSSL 1.1.0. It was added to 2.7.15, 3.6.3 " "and 3.7.0 for backwards compatibility with OpenSSL 1.0.2." msgstr "" -#: library/ssl.rst:857 +#: library/ssl.rst:746 msgid "" "Disable all renegotiation in TLSv1.2 and earlier. Do not send HelloRequest " "messages, and ignore renegotiation requests via ClientHello." msgstr "" -#: library/ssl.rst:860 +#: library/ssl.rst:749 msgid "This option is only available with OpenSSL 1.1.0h and later." msgstr "" -#: library/ssl.rst:866 +#: library/ssl.rst:755 msgid "" "Use the server's cipher ordering preference, rather than the client's. This " "option has no effect on client sockets and SSLv2 server sockets." msgstr "" -#: library/ssl.rst:873 +#: library/ssl.rst:762 msgid "" "Prevents re-use of the same DH key for distinct SSL sessions. This improves " "forward secrecy but requires more computational resources. This option only " "applies to server sockets." msgstr "" -#: library/ssl.rst:881 +#: library/ssl.rst:770 msgid "" "Prevents re-use of the same ECDH key for distinct SSL sessions. This " "improves forward secrecy but requires more computational resources. This " "option only applies to server sockets." msgstr "" -#: library/ssl.rst:889 +#: library/ssl.rst:778 msgid "" "Send dummy Change Cipher Spec (CCS) messages in TLS 1.3 handshake to make a " "TLS 1.3 connection look more like a TLS 1.2 connection." msgstr "" -#: library/ssl.rst:892 +#: library/ssl.rst:781 msgid "This option is only available with OpenSSL 1.1.1 and later." msgstr "" -#: library/ssl.rst:898 +#: library/ssl.rst:787 msgid "" "Disable compression on the SSL channel. This is useful if the application " "protocol supports its own compression scheme." msgstr "" -#: library/ssl.rst:905 +#: library/ssl.rst:794 msgid ":class:`enum.IntFlag` collection of OP_* constants." msgstr "" -#: library/ssl.rst:909 +#: library/ssl.rst:798 msgid "Prevent client side from requesting a session ticket." msgstr "" -#: library/ssl.rst:915 +#: library/ssl.rst:804 msgid "Ignore unexpected shutdown of TLS connections." msgstr "" -#: library/ssl.rst:917 +#: library/ssl.rst:822 msgid "This option is only available with OpenSSL 3.0.0 and later." msgstr "" -#: library/ssl.rst:923 +#: library/ssl.rst:812 +msgid "" +"Enable the use of the kernel TLS. To benefit from the feature, OpenSSL must " +"have been compiled with support for it, and the negotiated cipher suites and " +"extensions must be supported by it (a list of supported ones may vary by " +"platform and kernel version)." +msgstr "" + +#: library/ssl.rst:817 +msgid "" +"Note that with enabled kernel TLS some cryptographic operations are " +"performed by the kernel directly and not via any available OpenSSL " +"Providers. This might be undesirable if, for example, the application " +"requires all cryptographic operations to be performed by the FIPS provider." +msgstr "" + +#: library/ssl.rst:828 +msgid "" +"Allow legacy insecure renegotiation between OpenSSL and unpatched servers " +"only." +msgstr "" + +#: library/ssl.rst:835 msgid "" "Whether the OpenSSL library has built-in support for the *Application-Layer " "Protocol Negotiation* TLS extension as described in :rfc:`7301`." msgstr "" -#: library/ssl.rst:930 +#: library/ssl.rst:842 msgid "" "Whether the OpenSSL library has built-in support not checking subject common " "name and :attr:`SSLContext.hostname_checks_common_name` is writeable." msgstr "" -#: library/ssl.rst:938 +#: library/ssl.rst:850 msgid "" "Whether the OpenSSL library has built-in support for the Elliptic Curve-" "based Diffie-Hellman key exchange. This should be true unless the feature " "was explicitly disabled by the distributor." msgstr "" -#: library/ssl.rst:946 +#: library/ssl.rst:858 msgid "" "Whether the OpenSSL library has built-in support for the *Server Name " "Indication* extension (as defined in :rfc:`6066`)." msgstr "" -#: library/ssl.rst:953 +#: library/ssl.rst:865 msgid "" "Whether the OpenSSL library has built-in support for the *Next Protocol " "Negotiation* as described in the `Application Layer Protocol Negotiation " @@ -995,57 +896,57 @@ msgid "" "advertise which protocols you want to support." msgstr "" -#: library/ssl.rst:963 +#: library/ssl.rst:875 msgid "" "Whether the OpenSSL library has built-in support for the SSL 2.0 protocol." msgstr "" -#: library/ssl.rst:969 +#: library/ssl.rst:881 msgid "" "Whether the OpenSSL library has built-in support for the SSL 3.0 protocol." msgstr "" -#: library/ssl.rst:975 +#: library/ssl.rst:887 msgid "" "Whether the OpenSSL library has built-in support for the TLS 1.0 protocol." msgstr "" -#: library/ssl.rst:981 +#: library/ssl.rst:893 msgid "" "Whether the OpenSSL library has built-in support for the TLS 1.1 protocol." msgstr "" -#: library/ssl.rst:987 +#: library/ssl.rst:899 msgid "" "Whether the OpenSSL library has built-in support for the TLS 1.2 protocol." msgstr "" -#: library/ssl.rst:993 +#: library/ssl.rst:905 msgid "" "Whether the OpenSSL library has built-in support for the TLS 1.3 protocol." msgstr "" -#: library/ssl.rst:999 +#: library/ssl.rst:911 msgid "" "List of supported TLS channel binding types. Strings in this list can be " "used as arguments to :meth:`SSLSocket.get_channel_binding`." msgstr "" -#: library/ssl.rst:1006 +#: library/ssl.rst:918 msgid "The version string of the OpenSSL library loaded by the interpreter::" msgstr "" -#: library/ssl.rst:1015 +#: library/ssl.rst:927 msgid "" "A tuple of five integers representing version information about the OpenSSL " "library::" msgstr "" -#: library/ssl.rst:1025 +#: library/ssl.rst:937 msgid "The raw version number of the OpenSSL library, as a single integer::" msgstr "" -#: library/ssl.rst:1038 +#: library/ssl.rst:950 msgid "" "Alert Descriptions from :rfc:`5246` and others. The `IANA TLS Alert Registry " "`." msgstr "" -#: library/ssl.rst:1137 +#: library/ssl.rst:1049 msgid "" "Instances of :class:`SSLSocket` must be created using the :meth:`SSLContext." "wrap_socket` method." msgstr "" -#: library/ssl.rst:1140 +#: library/ssl.rst:1052 msgid "The :meth:`sendfile` method was added." msgstr "" -#: library/ssl.rst:1143 +#: library/ssl.rst:1055 msgid "" "The :meth:`shutdown` does not reset the socket timeout each time bytes are " "received or sent. The socket timeout is now the maximum total duration of " "the shutdown." msgstr "" -#: library/ssl.rst:1148 +#: library/ssl.rst:1060 msgid "" "It is deprecated to create a :class:`SSLSocket` instance directly, use :meth:" "`SSLContext.wrap_socket` to wrap a socket." msgstr "" -#: library/ssl.rst:1152 +#: library/ssl.rst:1064 msgid "" ":class:`SSLSocket` instances must to created with :meth:`~SSLContext." "wrap_socket`. In earlier versions, it was possible to create instances " "directly. This was never documented or officially supported." msgstr "" -#: library/ssl.rst:1158 +#: library/ssl.rst:1070 msgid "" "Python now uses ``SSL_read_ex`` and ``SSL_write_ex`` internally. The " "functions support reading and writing of data larger than 2 GB. Writing zero-" "length data no longer fails with a protocol violation error." msgstr "" -#: library/ssl.rst:1163 +#: library/ssl.rst:1075 msgid "SSL sockets also have the following additional methods and attributes:" msgstr "" -#: library/ssl.rst:1167 +#: library/ssl.rst:1079 msgid "" "Read up to *len* bytes of data from the SSL socket and return the result as " "a ``bytes`` instance. If *buffer* is specified, then read into the buffer " "instead, and return the number of bytes read." msgstr "" -#: library/ssl.rst:1171 +#: library/ssl.rst:1083 msgid "" "Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket is :" "ref:`non-blocking ` and the read would block." msgstr "" -#: library/ssl.rst:1174 +#: library/ssl.rst:1086 msgid "" "As at any time a re-negotiation is possible, a call to :meth:`read` can also " "cause write operations." msgstr "" -#: library/ssl.rst:1177 +#: library/ssl.rst:1089 msgid "" "The socket timeout is no longer reset each time bytes are received or sent. " "The socket timeout is now the maximum total duration to read up to *len* " "bytes." msgstr "" -#: library/ssl.rst:1182 +#: library/ssl.rst:1094 msgid "Use :meth:`~SSLSocket.recv` instead of :meth:`~SSLSocket.read`." msgstr "" -#: library/ssl.rst:1187 +#: library/ssl.rst:1099 msgid "" "Write *buf* to the SSL socket and return the number of bytes written. The " "*buf* argument must be an object supporting the buffer interface." msgstr "" -#: library/ssl.rst:1190 +#: library/ssl.rst:1102 msgid "" "Raise :exc:`SSLWantReadError` or :exc:`SSLWantWriteError` if the socket is :" "ref:`non-blocking ` and the write would block." msgstr "" -#: library/ssl.rst:1193 +#: library/ssl.rst:1105 msgid "" "As at any time a re-negotiation is possible, a call to :meth:`write` can " "also cause read operations." msgstr "" -#: library/ssl.rst:1196 +#: library/ssl.rst:1108 msgid "" "The socket timeout is no longer reset each time bytes are received or sent. " "The socket timeout is now the maximum total duration to write *buf*." msgstr "" -#: library/ssl.rst:1200 +#: library/ssl.rst:1112 msgid "Use :meth:`~SSLSocket.send` instead of :meth:`~SSLSocket.write`." msgstr "" -#: library/ssl.rst:1205 +#: library/ssl.rst:1117 msgid "" "The :meth:`~SSLSocket.read` and :meth:`~SSLSocket.write` methods are the low-" "level methods that read and write unencrypted, application-level data and " @@ -1300,30 +1201,30 @@ msgid "" "unwrap` was not called." msgstr "" -#: library/ssl.rst:1211 +#: library/ssl.rst:1123 msgid "" "Normally you should use the socket API methods like :meth:`~socket.socket." "recv` and :meth:`~socket.socket.send` instead of these methods." msgstr "" -#: library/ssl.rst:1217 +#: library/ssl.rst:1129 msgid "Perform the SSL setup handshake." msgstr "" -#: library/ssl.rst:1219 +#: library/ssl.rst:1131 msgid "" "The handshake method also performs :func:`match_hostname` when the :attr:" "`~SSLContext.check_hostname` attribute of the socket's :attr:`~SSLSocket." "context` is true." msgstr "" -#: library/ssl.rst:1224 +#: library/ssl.rst:1136 msgid "" "The socket timeout is no longer reset each time bytes are received or sent. " "The socket timeout is now the maximum total duration of the handshake." msgstr "" -#: library/ssl.rst:1228 +#: library/ssl.rst:1140 msgid "" "Hostname or IP address is matched by OpenSSL during handshake. The function :" "func:`match_hostname` is no longer used. In case OpenSSL refuses a hostname " @@ -1331,14 +1232,14 @@ msgid "" "sent to the peer." msgstr "" -#: library/ssl.rst:1236 +#: library/ssl.rst:1148 msgid "" "If there is no certificate for the peer on the other end of the connection, " "return ``None``. If the SSL handshake hasn't been done yet, raise :exc:" "`ValueError`." msgstr "" -#: library/ssl.rst:1240 +#: library/ssl.rst:1152 msgid "" "If the ``binary_form`` parameter is :const:`False`, and a certificate was " "received from the peer, this method returns a :class:`dict` instance. If " @@ -1350,7 +1251,7 @@ msgid "" "also be a ``subjectAltName`` key in the dictionary." msgstr "" -#: library/ssl.rst:1249 +#: library/ssl.rst:1161 msgid "" "The ``subject`` and ``issuer`` fields are tuples containing the sequence of " "relative distinguished names (RDNs) given in the certificate's data " @@ -1358,13 +1259,7 @@ msgid "" "value pairs. Here is a real-world example::" msgstr "" -#: library/ssl.rst:1275 -msgid "" -"To validate a certificate for a particular service, you can use the :func:" -"`match_hostname` function." -msgstr "" - -#: library/ssl.rst:1278 +#: library/ssl.rst:1185 msgid "" "If the ``binary_form`` parameter is :const:`True`, and a certificate was " "provided, this method returns the DER-encoded form of the entire certificate " @@ -1373,13 +1268,13 @@ msgid "" "socket's role:" msgstr "" -#: library/ssl.rst:1284 +#: library/ssl.rst:1191 msgid "" "for a client SSL socket, the server will always provide a certificate, " "regardless of whether validation was required;" msgstr "" -#: library/ssl.rst:1287 +#: library/ssl.rst:1194 msgid "" "for a server SSL socket, the client will only provide a certificate when " "requested by the server; therefore :meth:`getpeercert` will return :const:" @@ -1387,24 +1282,28 @@ msgid "" "or :const:`CERT_REQUIRED`)." msgstr "" -#: library/ssl.rst:1292 +#: library/ssl.rst:1199 +msgid "See also :attr:`SSLContext.check_hostname`." +msgstr "" + +#: library/ssl.rst:1201 msgid "" "The returned dictionary includes additional items such as ``issuer`` and " "``notBefore``." msgstr "" -#: library/ssl.rst:1296 +#: library/ssl.rst:1205 msgid "" ":exc:`ValueError` is raised when the handshake isn't done. The returned " "dictionary includes additional X509v3 extension items such as " "``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs." msgstr "" -#: library/ssl.rst:1301 +#: library/ssl.rst:1210 msgid "IPv6 address strings no longer have a trailing new line." msgstr "" -#: library/ssl.rst:1306 +#: library/ssl.rst:1215 msgid "" "Returns a three-value tuple containing the name of the cipher being used, " "the version of the SSL protocol that defines its use, and the number of " @@ -1412,7 +1311,7 @@ msgid "" "``None``." msgstr "" -#: library/ssl.rst:1312 +#: library/ssl.rst:1221 msgid "" "Return the list of ciphers available in both the client and server. Each " "entry of the returned list is a three-value tuple containing the name of the " @@ -1422,25 +1321,25 @@ msgid "" "socket." msgstr "" -#: library/ssl.rst:1323 +#: library/ssl.rst:1232 msgid "" "Return the compression algorithm being used as a string, or ``None`` if the " "connection isn't compressed." msgstr "" -#: library/ssl.rst:1326 +#: library/ssl.rst:1235 msgid "" "If the higher-level protocol supports its own compression mechanism, you can " "use :data:`OP_NO_COMPRESSION` to disable SSL-level compression." msgstr "" -#: library/ssl.rst:1333 +#: library/ssl.rst:1242 msgid "" "Get channel binding data for current connection, as a bytes object. Returns " "``None`` if not connected or the handshake has not been completed." msgstr "" -#: library/ssl.rst:1336 +#: library/ssl.rst:1245 msgid "" "The *cb_type* parameter allow selection of the desired channel binding type. " "Valid channel binding types are listed in the :data:`CHANNEL_BINDING_TYPES` " @@ -1449,7 +1348,7 @@ msgid "" "channel binding type is requested." msgstr "" -#: library/ssl.rst:1346 +#: library/ssl.rst:1255 msgid "" "Return the protocol that was selected during the TLS handshake. If :meth:" "`SSLContext.set_alpn_protocols` was not called, if the other party does not " @@ -1457,7 +1356,7 @@ msgid "" "protocols, or if the handshake has not happened yet, ``None`` is returned." msgstr "" -#: library/ssl.rst:1356 +#: library/ssl.rst:1265 msgid "" "Return the higher-level protocol that was selected during the TLS/SSL " "handshake. If :meth:`SSLContext.set_npn_protocols` was not called, or if the " @@ -1465,11 +1364,11 @@ msgid "" "this will return ``None``." msgstr "" -#: library/ssl.rst:1725 +#: library/ssl.rst:1630 msgid "NPN has been superseded by ALPN" msgstr "" -#: library/ssl.rst:1369 +#: library/ssl.rst:1278 msgid "" "Performs the SSL shutdown handshake, which removes the TLS layer from the " "underlying socket, and returns the underlying socket object. This can be " @@ -1478,7 +1377,7 @@ msgid "" "other side of the connection, rather than the original socket." msgstr "" -#: library/ssl.rst:1377 +#: library/ssl.rst:1286 msgid "" "Requests post-handshake authentication (PHA) from a TLS 1.3 client. PHA can " "only be initiated for a TLS 1.3 connection from a server-side socket, after " @@ -1486,26 +1385,26 @@ msgid "" "`SSLContext.post_handshake_auth`." msgstr "" -#: library/ssl.rst:1382 +#: library/ssl.rst:1291 msgid "" "The method does not perform a cert exchange immediately. The server-side " "sends a CertificateRequest during the next write event and expects the " "client to respond with a certificate on the next read event." msgstr "" -#: library/ssl.rst:1386 +#: library/ssl.rst:1295 msgid "" "If any precondition isn't met (e.g. not TLS 1.3, PHA not enabled), an :exc:" "`SSLError` is raised." msgstr "" -#: library/ssl.rst:1390 +#: library/ssl.rst:1299 msgid "" "Only available with OpenSSL 1.1.1 and TLS 1.3 enabled. Without TLS 1.3 " "support, the method raises :exc:`NotImplementedError`." msgstr "" -#: library/ssl.rst:1397 +#: library/ssl.rst:1306 msgid "" "Return the actual SSL protocol version negotiated by the connection as a " "string, or ``None`` if no secure connection is established. As of this " @@ -1514,33 +1413,29 @@ msgid "" "may define more return values." msgstr "" -#: library/ssl.rst:1407 +#: library/ssl.rst:1316 msgid "" "Returns the number of already decrypted bytes available for read, pending on " "the connection." msgstr "" -#: library/ssl.rst:1412 -msgid "" -"The :class:`SSLContext` object this SSL socket is tied to. If the SSL " -"socket was created using the deprecated :func:`wrap_socket` function (rather " -"than :meth:`SSLContext.wrap_socket`), this is a custom context object " -"created for this SSL socket." +#: library/ssl.rst:1321 +msgid "The :class:`SSLContext` object this SSL socket is tied to." msgstr "" -#: library/ssl.rst:1421 +#: library/ssl.rst:1327 msgid "" "A boolean which is ``True`` for server-side sockets and ``False`` for client-" "side sockets." msgstr "" -#: library/ssl.rst:1428 +#: library/ssl.rst:1334 msgid "" "Hostname of the server: :class:`str` type, or ``None`` for server-side " "socket or if the hostname was not specified in the constructor." msgstr "" -#: library/ssl.rst:1433 +#: library/ssl.rst:1339 msgid "" "The attribute is now always ASCII text. When ``server_hostname`` is an " "internationalized domain name (IDN), this attribute now stores the A-label " @@ -1548,7 +1443,7 @@ msgid "" "org\"``)." msgstr "" -#: library/ssl.rst:1441 +#: library/ssl.rst:1347 msgid "" "The :class:`SSLSession` for this SSL connection. The session is available " "for client and server side sockets after the TLS handshake has been " @@ -1556,11 +1451,11 @@ msgid "" "`~SSLSocket.do_handshake` has been called to reuse a session." msgstr "" -#: library/ssl.rst:1454 +#: library/ssl.rst:1360 msgid "SSL Contexts" msgstr "" -#: library/ssl.rst:1458 +#: library/ssl.rst:1364 msgid "" "An SSL context holds various data longer-lived than single SSL connections, " "such as SSL configuration options, certificate(s) and private key(s). It " @@ -1568,7 +1463,7 @@ msgid "" "speed up repeated connections from the same clients." msgstr "" -#: library/ssl.rst:1465 +#: library/ssl.rst:1371 msgid "" "Create a new SSL context. You may pass *protocol* which must be one of the " "``PROTOCOL_*`` constants defined in this module. The parameter specifies " @@ -1579,123 +1474,122 @@ msgid "" "provides the most compatibility with other versions." msgstr "" -#: library/ssl.rst:1474 +#: library/ssl.rst:1380 msgid "" "Here's a table showing which versions in a client (down the side) can " "connect to which versions in a server (along the top):" msgstr "" -#: library/ssl.rst:1480 +#: library/ssl.rst:1386 msgid "*client* / **server**" msgstr "" -#: library/ssl.rst:1480 +#: library/ssl.rst:1386 msgid "**SSLv2**" msgstr "" -#: library/ssl.rst:1480 +#: library/ssl.rst:1386 msgid "**SSLv3**" msgstr "" -#: library/ssl.rst:1480 +#: library/ssl.rst:1386 msgid "**TLS** [3]_" msgstr "" -#: library/ssl.rst:1480 +#: library/ssl.rst:1386 msgid "**TLSv1**" msgstr "" -#: library/ssl.rst:1480 +#: library/ssl.rst:1386 msgid "**TLSv1.1**" msgstr "" -#: library/ssl.rst:1480 +#: library/ssl.rst:1386 msgid "**TLSv1.2**" msgstr "" -#: library/ssl.rst:1482 +#: library/ssl.rst:1388 msgid "*SSLv2*" msgstr "" -#: library/ssl.rst:1483 library/ssl.rst:1485 library/ssl.rst:1487 +#: library/ssl.rst:1389 library/ssl.rst:1391 library/ssl.rst:1393 msgid "yes" msgstr "" -#: library/ssl.rst:1483 library/ssl.rst:1486 library/ssl.rst:1487 +#: library/ssl.rst:1389 library/ssl.rst:1392 library/ssl.rst:1393 msgid "no" msgstr "" -#: library/ssl.rst:1484 +#: library/ssl.rst:1390 msgid "no [1]_" msgstr "" -#: library/ssl.rst:1483 +#: library/ssl.rst:1389 msgid "*SSLv3*" msgstr "" -#: library/ssl.rst:1484 +#: library/ssl.rst:1390 msgid "no [2]_" msgstr "" -#: library/ssl.rst:1484 +#: library/ssl.rst:1390 msgid "*TLS* (*SSLv23*) [3]_" msgstr "" -#: library/ssl.rst:1485 +#: library/ssl.rst:1391 msgid "*TLSv1*" msgstr "" -#: library/ssl.rst:1486 +#: library/ssl.rst:1392 msgid "*TLSv1.1*" msgstr "" -#: library/ssl.rst:1487 +#: library/ssl.rst:1393 msgid "*TLSv1.2*" msgstr "" -#: library/ssl.rst:1490 +#: library/ssl.rst:1396 msgid "Footnotes" msgstr "" -#: library/ssl.rst:1491 +#: library/ssl.rst:1397 msgid ":class:`SSLContext` disables SSLv2 with :data:`OP_NO_SSLv2` by default." msgstr "" -#: library/ssl.rst:1492 +#: library/ssl.rst:1398 msgid ":class:`SSLContext` disables SSLv3 with :data:`OP_NO_SSLv3` by default." msgstr "" -#: library/ssl.rst:1493 +#: library/ssl.rst:1399 msgid "" "TLS 1.3 protocol will be available with :data:`PROTOCOL_TLS` in OpenSSL >= " "1.1.1. There is no dedicated PROTOCOL constant for just TLS 1.3." msgstr "" -#: library/ssl.rst:1498 +#: library/ssl.rst:1404 msgid "" ":func:`create_default_context` lets the :mod:`ssl` module choose security " "settings for a given purpose." msgstr "" -#: library/ssl.rst:1503 +#: library/ssl.rst:1409 msgid "" "The context is created with secure default values. The options :data:" "`OP_NO_COMPRESSION`, :data:`OP_CIPHER_SERVER_PREFERENCE`, :data:" -"`OP_SINGLE_DH_USE`, :data:`OP_SINGLE_ECDH_USE`, :data:`OP_NO_SSLv2` (except " -"for :data:`PROTOCOL_SSLv2`), and :data:`OP_NO_SSLv3` (except for :data:" -"`PROTOCOL_SSLv3`) are set by default. The initial cipher suite list contains " -"only ``HIGH`` ciphers, no ``NULL`` ciphers and no ``MD5`` ciphers (except " -"for :data:`PROTOCOL_SSLv2`)." +"`OP_SINGLE_DH_USE`, :data:`OP_SINGLE_ECDH_USE`, :data:`OP_NO_SSLv2`, and :" +"data:`OP_NO_SSLv3` (except for :data:`PROTOCOL_SSLv3`) are set by default. " +"The initial cipher suite list contains only ``HIGH`` ciphers, no ``NULL`` " +"ciphers and no ``MD5`` ciphers." msgstr "" -#: library/ssl.rst:1514 +#: library/ssl.rst:1419 msgid "" ":class:`SSLContext` without protocol argument is deprecated. The context " "class will either require :data:`PROTOCOL_TLS_CLIENT` or :data:" "`PROTOCOL_TLS_SERVER` protocol in the future." msgstr "" -#: library/ssl.rst:1520 +#: library/ssl.rst:1425 msgid "" "The default cipher suites now include only secure AES and ChaCha20 ciphers " "with forward secrecy and security level 2. RSA and DH keys with less than " @@ -1704,22 +1598,22 @@ msgid "" "use TLS 1.2 as minimum TLS version." msgstr "" -#: library/ssl.rst:1527 +#: library/ssl.rst:1432 msgid ":class:`SSLContext` objects have the following methods and attributes:" msgstr "" -#: library/ssl.rst:1531 +#: library/ssl.rst:1436 msgid "" "Get statistics about quantities of loaded X.509 certificates, count of X.509 " "certificates flagged as CA certificates and certificate revocation lists as " "dictionary." msgstr "" -#: library/ssl.rst:1535 +#: library/ssl.rst:1440 msgid "Example for a context with one CA cert and one other cert::" msgstr "" -#: library/ssl.rst:1545 +#: library/ssl.rst:1450 msgid "" "Load a private key and the corresponding certificate. The *certfile* string " "must be the path to a single file in PEM format containing the certificate " @@ -1730,7 +1624,7 @@ msgid "" "more information on how the certificate is stored in the *certfile*." msgstr "" -#: library/ssl.rst:1554 +#: library/ssl.rst:1459 msgid "" "The *password* argument may be a function to call to get the password for " "decrypting the private key. It will only be called if the private key is " @@ -1742,24 +1636,24 @@ msgid "" "encrypted and no password is needed." msgstr "" -#: library/ssl.rst:1563 +#: library/ssl.rst:1468 msgid "" "If the *password* argument is not specified and a password is required, " "OpenSSL's built-in password prompting mechanism will be used to " "interactively prompt the user for a password." msgstr "" -#: library/ssl.rst:1567 +#: library/ssl.rst:1472 msgid "" "An :class:`SSLError` is raised if the private key doesn't match with the " "certificate." msgstr "" -#: library/ssl.rst:1570 +#: library/ssl.rst:1475 msgid "New optional argument *password*." msgstr "" -#: library/ssl.rst:1575 +#: library/ssl.rst:1480 msgid "" "Load a set of default \"certification authority\" (CA) certificates from " "default locations. On Windows it loads CA certs from the ``CA`` and ``ROOT`` " @@ -1768,7 +1662,7 @@ msgid "" "from other locations, too." msgstr "" -#: library/ssl.rst:1581 +#: library/ssl.rst:1486 msgid "" "The *purpose* flag specifies what kind of CA certificates are loaded. The " "default settings :const:`Purpose.SERVER_AUTH` loads certificates, that are " @@ -1777,28 +1671,28 @@ msgid "" "certificate verification on the server side." msgstr "" -#: library/ssl.rst:1591 +#: library/ssl.rst:1496 msgid "" "Load a set of \"certification authority\" (CA) certificates used to validate " "other peers' certificates when :data:`verify_mode` is other than :data:" "`CERT_NONE`. At least one of *cafile* or *capath* must be specified." msgstr "" -#: library/ssl.rst:1595 +#: library/ssl.rst:1500 msgid "" "This method can also load certification revocation lists (CRLs) in PEM or " "DER format. In order to make use of CRLs, :attr:`SSLContext.verify_flags` " "must be configured properly." msgstr "" -#: library/ssl.rst:1599 +#: library/ssl.rst:1504 msgid "" "The *cafile* string, if present, is the path to a file of concatenated CA " "certificates in PEM format. See the discussion of :ref:`ssl-certificates` " "for more information about how to arrange the certificates in this file." msgstr "" -#: library/ssl.rst:1604 +#: library/ssl.rst:1509 msgid "" "The *capath* string, if present, is the path to a directory containing " "several CA certificates in PEM format, following an `OpenSSL specific layout " @@ -1806,7 +1700,7 @@ msgid "" "html>`_." msgstr "" -#: library/ssl.rst:1609 +#: library/ssl.rst:1514 msgid "" "The *cadata* object, if present, is either an ASCII string of one or more " "PEM-encoded certificates or a :term:`bytes-like object` of DER-encoded " @@ -1814,11 +1708,11 @@ msgid "" "are ignored but at least one certificate must be present." msgstr "" -#: library/ssl.rst:1614 +#: library/ssl.rst:1519 msgid "New optional argument *cadata*" msgstr "" -#: library/ssl.rst:1619 +#: library/ssl.rst:1524 msgid "" "Get a list of loaded \"certification authority\" (CA) certificates. If the " "``binary_form`` parameter is :const:`False` each list entry is a dict like " @@ -1828,19 +1722,19 @@ msgid "" "a SSL connection." msgstr "" -#: library/ssl.rst:1627 +#: library/ssl.rst:1532 msgid "" "Certificates in a capath directory aren't loaded unless they have been used " "at least once." msgstr "" -#: library/ssl.rst:1634 +#: library/ssl.rst:1539 msgid "" "Get a list of enabled ciphers. The list is in order of cipher priority. See :" "meth:`SSLContext.set_ciphers`." msgstr "" -#: library/ssl.rst:1671 +#: library/ssl.rst:1576 msgid "" "Load a set of default \"certification authority\" (CA) certificates from a " "filesystem path defined when building the OpenSSL library. Unfortunately, " @@ -1850,7 +1744,7 @@ msgid "" "configured properly." msgstr "" -#: library/ssl.rst:1680 +#: library/ssl.rst:1585 msgid "" "Set the available ciphers for sockets created with this context. It should " "be a string in the `OpenSSL cipher list format `_" msgstr "" -#: library/ssl.rst:1818 +#: library/ssl.rst:1723 msgid "Vincent Bernat." msgstr "" -#: library/ssl.rst:1824 +#: library/ssl.rst:1729 msgid "" "Wrap an existing Python socket *sock* and return an instance of :attr:" "`SSLContext.sslsocket_class` (default :class:`SSLSocket`). The returned SSL " @@ -2039,13 +1933,13 @@ msgid "" "a :const:`~socket.SOCK_STREAM` socket; other socket types are unsupported." msgstr "" -#: library/ssl.rst:1830 +#: library/ssl.rst:1735 msgid "" "The parameter ``server_side`` is a boolean which identifies whether server-" "side or client-side behavior is desired from this socket." msgstr "" -#: library/ssl.rst:1833 +#: library/ssl.rst:1738 msgid "" "For client-side sockets, the context construction is lazy; if the underlying " "socket isn't connected yet, the context construction will be performed " @@ -2056,7 +1950,7 @@ msgid "" "exc:`SSLError`." msgstr "" -#: library/ssl.rst:1841 +#: library/ssl.rst:1746 msgid "" "On client connections, the optional parameter *server_hostname* specifies " "the hostname of the service which we are connecting to. This allows a " @@ -2065,7 +1959,7 @@ msgid "" "*server_hostname* will raise a :exc:`ValueError` if *server_side* is true." msgstr "" -#: library/ssl.rst:1847 +#: library/ssl.rst:1752 msgid "" "The parameter ``do_handshake_on_connect`` specifies whether to do the SSL " "handshake automatically after doing a :meth:`socket.connect`, or whether the " @@ -2075,7 +1969,7 @@ msgid "" "socket I/O involved in the handshake." msgstr "" -#: library/ssl.rst:1854 +#: library/ssl.rst:1759 msgid "" "The parameter ``suppress_ragged_eofs`` specifies how the :meth:`SSLSocket." "recv` method should signal unexpected EOF from the other end of the " @@ -2085,34 +1979,34 @@ msgid "" "exceptions back to the caller." msgstr "" -#: library/ssl.rst:1861 +#: library/ssl.rst:1766 msgid "*session*, see :attr:`~SSLSocket.session`." msgstr "" -#: library/ssl.rst:1863 +#: library/ssl.rst:1768 msgid "" "Always allow a server_hostname to be passed, even if OpenSSL does not have " "SNI." msgstr "" -#: library/ssl.rst:1893 +#: library/ssl.rst:1798 msgid "*session* argument was added." msgstr "" -#: library/ssl.rst:1870 +#: library/ssl.rst:1775 msgid "" "The method returns an instance of :attr:`SSLContext.sslsocket_class` instead " "of hard-coded :class:`SSLSocket`." msgstr "" -#: library/ssl.rst:1876 +#: library/ssl.rst:1781 msgid "" "The return type of :meth:`SSLContext.wrap_socket`, defaults to :class:" "`SSLSocket`. The attribute can be overridden on instance of class in order " "to return a custom subclass of :class:`SSLSocket`." msgstr "" -#: library/ssl.rst:1885 +#: library/ssl.rst:1790 msgid "" "Wrap the BIO objects *incoming* and *outgoing* and return an instance of :" "attr:`SSLContext.sslobject_class` (default :class:`SSLObject`). The SSL " @@ -2120,26 +2014,26 @@ msgid "" "outgoing BIO." msgstr "" -#: library/ssl.rst:1890 +#: library/ssl.rst:1795 msgid "" "The *server_side*, *server_hostname* and *session* parameters have the same " "meaning as in :meth:`SSLContext.wrap_socket`." msgstr "" -#: library/ssl.rst:1896 +#: library/ssl.rst:1801 msgid "" "The method returns an instance of :attr:`SSLContext.sslobject_class` instead " "of hard-coded :class:`SSLObject`." msgstr "" -#: library/ssl.rst:1902 +#: library/ssl.rst:1807 msgid "" "The return type of :meth:`SSLContext.wrap_bio`, defaults to :class:" "`SSLObject`. The attribute can be overridden on instance of class in order " "to return a custom subclass of :class:`SSLObject`." msgstr "" -#: library/ssl.rst:1910 +#: library/ssl.rst:1815 msgid "" "Get statistics about the SSL sessions created or managed by this context. A " "dictionary is returned which maps the names of each `piece of information " @@ -2148,7 +2042,7 @@ msgid "" "misses in the session cache since the context was created::" msgstr "" -#: library/ssl.rst:1921 +#: library/ssl.rst:1826 msgid "" "Whether to match the peer cert's hostname in :meth:`SSLSocket.do_handshake`. " "The context's :attr:`~SSLContext.verify_mode` must be set to :data:" @@ -2161,7 +2055,7 @@ msgid "" "With other protocols, hostname checking must be enabled explicitly." msgstr "" -#: library/ssl.rst:1949 +#: library/ssl.rst:1854 msgid "" ":attr:`~SSLContext.verify_mode` is now automatically changed to :data:" "`CERT_REQUIRED` when hostname checking is enabled and :attr:`~SSLContext." @@ -2169,7 +2063,7 @@ msgid "" "failed with a :exc:`ValueError`." msgstr "" -#: library/ssl.rst:1956 +#: library/ssl.rst:1861 msgid "" "Write TLS keys to a keylog file, whenever key material is generated or " "received. The keylog file is designed for debugging purposes only. The file " @@ -2178,7 +2072,7 @@ msgid "" "synchronized between threads, but not between processes." msgstr "" -#: library/ssl.rst:1966 +#: library/ssl.rst:1871 msgid "" "A :class:`TLSVersion` enum member representing the highest supported TLS " "version. The value defaults to :attr:`TLSVersion.MAXIMUM_SUPPORTED`. The " @@ -2186,7 +2080,7 @@ msgid "" "`PROTOCOL_TLS_CLIENT`, and :attr:`PROTOCOL_TLS_SERVER`." msgstr "" -#: library/ssl.rst:1971 +#: library/ssl.rst:1876 msgid "" "The attributes :attr:`~SSLContext.maximum_version`, :attr:`~SSLContext." "minimum_version` and :attr:`SSLContext.options` all affect the supported SSL " @@ -2196,38 +2090,38 @@ msgid "" "`TLSVersion.TLSv1_2` will not be able to establish a TLS 1.2 connection." msgstr "" -#: library/ssl.rst:1984 +#: library/ssl.rst:1889 msgid "" "Like :attr:`SSLContext.maximum_version` except it is the lowest supported " "version or :attr:`TLSVersion.MINIMUM_SUPPORTED`." msgstr "" -#: library/ssl.rst:1991 +#: library/ssl.rst:1896 msgid "" "Control the number of TLS 1.3 session tickets of a :attr:" "`PROTOCOL_TLS_SERVER` context. The setting has no impact on TLS 1.0 to 1.2 " "connections." msgstr "" -#: library/ssl.rst:1999 +#: library/ssl.rst:1904 msgid "" "An integer representing the set of SSL options enabled on this context. The " "default value is :data:`OP_ALL`, but you can specify other options such as :" "data:`OP_NO_SSLv2` by ORing them together." msgstr "" -#: library/ssl.rst:2003 +#: library/ssl.rst:1908 msgid ":attr:`SSLContext.options` returns :class:`Options` flags:" msgstr "" -#: library/ssl.rst:2011 +#: library/ssl.rst:1916 msgid "" "All ``OP_NO_SSL*`` and ``OP_NO_TLS*`` options have been deprecated since " "Python 3.7. Use :attr:`SSLContext.minimum_version` and :attr:`SSLContext." "maximum_version` instead." msgstr "" -#: library/ssl.rst:2017 +#: library/ssl.rst:1922 msgid "" "Enable TLS 1.3 post-handshake client authentication. Post-handshake auth is " "disabled by default and a server can only request a TLS client certificate " @@ -2235,13 +2129,13 @@ msgid "" "client certificate at any time after the handshake." msgstr "" -#: library/ssl.rst:2022 +#: library/ssl.rst:1927 msgid "" "When enabled on client-side sockets, the client signals the server that it " "supports post-handshake authentication." msgstr "" -#: library/ssl.rst:2025 +#: library/ssl.rst:1930 msgid "" "When enabled on server-side sockets, :attr:`SSLContext.verify_mode` must be " "set to :data:`CERT_OPTIONAL` or :data:`CERT_REQUIRED`, too. The actual " @@ -2249,59 +2143,59 @@ msgid "" "verify_client_post_handshake` is called and some I/O is performed." msgstr "" -#: library/ssl.rst:2035 +#: library/ssl.rst:1940 msgid "" "The protocol version chosen when constructing the context. This attribute " "is read-only." msgstr "" -#: library/ssl.rst:2040 +#: library/ssl.rst:1945 msgid "" "Whether :attr:`~SSLContext.check_hostname` falls back to verify the cert's " "subject common name in the absence of a subject alternative name extension " "(default: true)." msgstr "" -#: library/ssl.rst:2048 +#: library/ssl.rst:1953 msgid "" "The flag had no effect with OpenSSL before version 1.1.1k. Python 3.8.9, " "3.9.3, and 3.10 include workarounds for previous versions." msgstr "" -#: library/ssl.rst:2053 +#: library/ssl.rst:1958 msgid "" "An integer representing the `security level `_ for the context. This " "attribute is read-only." msgstr "" -#: library/ssl.rst:2061 +#: library/ssl.rst:1966 msgid "" "The flags for certificate verification operations. You can set flags like :" "data:`VERIFY_CRL_CHECK_LEAF` by ORing them together. By default OpenSSL does " "neither require nor verify certificate revocation lists (CRLs)." msgstr "" -#: library/ssl.rst:2067 +#: library/ssl.rst:1972 msgid ":attr:`SSLContext.verify_flags` returns :class:`VerifyFlags` flags:" msgstr "" -#: library/ssl.rst:2075 +#: library/ssl.rst:1980 msgid "" "Whether to try to verify other peers' certificates and how to behave if " "verification fails. This attribute must be one of :data:`CERT_NONE`, :data:" "`CERT_OPTIONAL` or :data:`CERT_REQUIRED`." msgstr "" -#: library/ssl.rst:2079 +#: library/ssl.rst:1984 msgid ":attr:`SSLContext.verify_mode` returns :class:`VerifyMode` enum:" msgstr "" -#: library/ssl.rst:2092 +#: library/ssl.rst:1997 msgid "Certificates" msgstr "" -#: library/ssl.rst:2094 +#: library/ssl.rst:1999 msgid "" "Certificates in general are part of a public-key / private-key system. In " "this system, each *principal*, (which may be a machine, or a person, or an " @@ -2312,7 +2206,7 @@ msgid "" "other part, and **only** with the other part." msgstr "" -#: library/ssl.rst:2102 +#: library/ssl.rst:2007 msgid "" "A certificate contains information about two principals. It contains the " "name of a *subject*, and the subject's public key. It also contains a " @@ -2326,7 +2220,7 @@ msgid "" "as two fields, called \"notBefore\" and \"notAfter\"." msgstr "" -#: library/ssl.rst:2112 +#: library/ssl.rst:2017 msgid "" "In the Python use of certificates, a client or server can use a certificate " "to prove who they are. The other side of a network connection can also be " @@ -2339,18 +2233,18 @@ msgid "" "take place." msgstr "" -#: library/ssl.rst:2122 +#: library/ssl.rst:2027 msgid "" "Python uses files to contain certificates. They should be formatted as " "\"PEM\" (see :rfc:`1422`), which is a base-64 encoded form wrapped with a " "header line and a footer line::" msgstr "" -#: library/ssl.rst:2131 +#: library/ssl.rst:2036 msgid "Certificate chains" msgstr "" -#: library/ssl.rst:2133 +#: library/ssl.rst:2038 msgid "" "The Python files which contain certificates can contain a sequence of " "certificates, sometimes called a *certificate chain*. This chain should " @@ -2366,11 +2260,11 @@ msgid "" "agency which issued the certification authority's certificate::" msgstr "" -#: library/ssl.rst:2157 +#: library/ssl.rst:2062 msgid "CA certificates" msgstr "" -#: library/ssl.rst:2159 +#: library/ssl.rst:2064 msgid "" "If you are going to require validation of the other side of the connection's " "certificate, you need to provide a \"CA certs\" file, filled with the " @@ -2382,24 +2276,23 @@ msgid "" "create_default_context`." msgstr "" -#: library/ssl.rst:2168 +#: library/ssl.rst:2073 msgid "Combined key and certificate" msgstr "" -#: library/ssl.rst:2170 +#: library/ssl.rst:2075 msgid "" "Often the private key is stored in the same file as the certificate; in this " "case, only the ``certfile`` parameter to :meth:`SSLContext.load_cert_chain` " -"and :func:`wrap_socket` needs to be passed. If the private key is stored " -"with the certificate, it should come before the first certificate in the " -"certificate chain::" +"needs to be passed. If the private key is stored with the certificate, it " +"should come before the first certificate in the certificate chain::" msgstr "" -#: library/ssl.rst:2184 +#: library/ssl.rst:2089 msgid "Self-signed certificates" msgstr "" -#: library/ssl.rst:2186 +#: library/ssl.rst:2091 msgid "" "If you are going to create a server that provides SSL-encrypted connection " "services, you will need to acquire a certificate for that service. There " @@ -2409,51 +2302,51 @@ msgid "" "package, using something like the following::" msgstr "" -#: library/ssl.rst:2215 +#: library/ssl.rst:2120 msgid "" "The disadvantage of a self-signed certificate is that it is its own root " "certificate, and no one else will have it in their cache of known (and " "trusted) root certificates." msgstr "" -#: library/ssl.rst:2221 +#: library/ssl.rst:2126 msgid "Examples" msgstr "" -#: library/ssl.rst:2224 +#: library/ssl.rst:2129 msgid "Testing for SSL support" msgstr "" -#: library/ssl.rst:2226 +#: library/ssl.rst:2131 msgid "" "To test for the presence of SSL support in a Python installation, user code " "should use the following idiom::" msgstr "" -#: library/ssl.rst:2237 +#: library/ssl.rst:2142 msgid "Client-side operation" msgstr "" -#: library/ssl.rst:2239 +#: library/ssl.rst:2144 msgid "" "This example creates a SSL context with the recommended security settings " "for client sockets, including automatic certificate verification::" msgstr "" -#: library/ssl.rst:2244 +#: library/ssl.rst:2149 msgid "" "If you prefer to tune security settings yourself, you might create a context " "from scratch (but beware that you might not get the settings right)::" msgstr "" -#: library/ssl.rst:2251 +#: library/ssl.rst:2156 msgid "" "(this snippet assumes your operating system places a bundle of all CA " "certificates in ``/etc/ssl/certs/ca-bundle.crt``; if not, you'll get an " "error and have to adjust the location)" msgstr "" -#: library/ssl.rst:2255 +#: library/ssl.rst:2160 msgid "" "The :data:`PROTOCOL_TLS_CLIENT` protocol configures the context for cert " "validation and hostname verification. :attr:`~SSLContext.verify_mode` is set " @@ -2461,7 +2354,7 @@ msgid "" "``True``. All other protocols create SSL contexts with insecure defaults." msgstr "" -#: library/ssl.rst:2260 +#: library/ssl.rst:2165 msgid "" "When you use the context to connect to a server, :const:`CERT_REQUIRED` and :" "attr:`~SSLContext.check_hostname` validate the server certificate: it " @@ -2470,27 +2363,27 @@ msgid "" "properties like validity and identity of the hostname::" msgstr "" -#: library/ssl.rst:2270 +#: library/ssl.rst:2175 msgid "You may then fetch the certificate::" msgstr "" -#: library/ssl.rst:2274 +#: library/ssl.rst:2179 msgid "" "Visual inspection shows that the certificate does identify the desired " "service (that is, the HTTPS host ``www.python.org``)::" msgstr "" -#: library/ssl.rst:2317 +#: library/ssl.rst:2222 msgid "" "Now the SSL channel is established and the certificate verified, you can " "proceed to talk with the server::" msgstr "" -#: library/ssl.rst:2344 +#: library/ssl.rst:2249 msgid "Server-side operation" msgstr "" -#: library/ssl.rst:2346 +#: library/ssl.rst:2251 msgid "" "For server operation, typically you'll need to have a server certificate, " "and private key, each in a file. You'll first create a context holding the " @@ -2499,20 +2392,20 @@ msgid "" "start waiting for clients to connect::" msgstr "" -#: library/ssl.rst:2361 +#: library/ssl.rst:2266 msgid "" "When a client connects, you'll call :meth:`accept` on the socket to get the " "new socket from the other end, and use the context's :meth:`SSLContext." "wrap_socket` method to create a server-side SSL socket for the connection::" msgstr "" -#: library/ssl.rst:2374 +#: library/ssl.rst:2279 msgid "" "Then you'll read data from the ``connstream`` and do something with it till " "you are finished with the client (or the client is finished with you)::" msgstr "" -#: library/ssl.rst:2388 +#: library/ssl.rst:2293 msgid "" "And go back to listening for new client connections (of course, a real " "server would probably handle each client connection in a separate thread, or " @@ -2520,18 +2413,18 @@ msgid "" "event loop)." msgstr "" -#: library/ssl.rst:2396 +#: library/ssl.rst:2301 msgid "Notes on non-blocking sockets" msgstr "" -#: library/ssl.rst:2398 +#: library/ssl.rst:2303 msgid "" "SSL sockets behave slightly different than regular sockets in non-blocking " "mode. When working with non-blocking sockets, there are thus several things " "you need to be aware of:" msgstr "" -#: library/ssl.rst:2402 +#: library/ssl.rst:2307 msgid "" "Most :class:`SSLSocket` methods will raise either :exc:`SSLWantWriteError` " "or :exc:`SSLWantReadError` instead of :exc:`BlockingIOError` if an I/O " @@ -2543,13 +2436,13 @@ msgid "" "require a prior *write* to the underlying socket." msgstr "" -#: library/ssl.rst:2414 +#: library/ssl.rst:2319 msgid "" "In earlier Python versions, the :meth:`!SSLSocket.send` method returned zero " "instead of raising :exc:`SSLWantWriteError` or :exc:`SSLWantReadError`." msgstr "" -#: library/ssl.rst:2418 +#: library/ssl.rst:2323 msgid "" "Calling :func:`~select.select` tells you that the OS-level socket can be " "read from (or written to), but it does not imply that there is sufficient " @@ -2559,7 +2452,7 @@ msgid "" "`~select.select`." msgstr "" -#: library/ssl.rst:2425 +#: library/ssl.rst:2330 msgid "" "Conversely, since the SSL layer has its own framing, a SSL socket may still " "have data available for reading without :func:`~select.select` being aware " @@ -2568,13 +2461,13 @@ msgid "" "call if still necessary." msgstr "" -#: library/ssl.rst:2431 +#: library/ssl.rst:2336 msgid "" "(of course, similar provisions apply when using other primitives such as :" "func:`~select.poll`, or those in the :mod:`selectors` module)" msgstr "" -#: library/ssl.rst:2434 +#: library/ssl.rst:2339 msgid "" "The SSL handshake itself will be non-blocking: the :meth:`SSLSocket." "do_handshake` method has to be retried until it returns successfully. Here " @@ -2582,7 +2475,7 @@ msgid "" "readiness::" msgstr "" -#: library/ssl.rst:2450 +#: library/ssl.rst:2355 msgid "" "The :mod:`asyncio` module supports :ref:`non-blocking SSL sockets ` and provides a higher level API. It polls for events using " @@ -2591,26 +2484,26 @@ msgid "" "handshake asynchronously as well." msgstr "" -#: library/ssl.rst:2459 +#: library/ssl.rst:2364 msgid "Memory BIO Support" msgstr "" -#: library/ssl.rst:2463 +#: library/ssl.rst:2368 msgid "" "Ever since the SSL module was introduced in Python 2.6, the :class:" "`SSLSocket` class has provided two related but distinct areas of " "functionality:" msgstr "" -#: library/ssl.rst:2466 +#: library/ssl.rst:2371 msgid "SSL protocol handling" msgstr "" -#: library/ssl.rst:2467 +#: library/ssl.rst:2372 msgid "Network IO" msgstr "" -#: library/ssl.rst:2469 +#: library/ssl.rst:2374 msgid "" "The network IO API is identical to that provided by :class:`socket.socket`, " "from which :class:`SSLSocket` also inherits. This allows an SSL socket to be " @@ -2618,7 +2511,7 @@ msgid "" "add SSL support to an existing application." msgstr "" -#: library/ssl.rst:2474 +#: library/ssl.rst:2379 msgid "" "Combining SSL protocol handling and network IO usually works well, but there " "are some cases where it doesn't. An example is async IO frameworks that want " @@ -2630,7 +2523,7 @@ msgid "" "`SSLObject` is provided." msgstr "" -#: library/ssl.rst:2485 +#: library/ssl.rst:2390 msgid "" "A reduced-scope variant of :class:`SSLSocket` representing an SSL protocol " "instance that does not contain any network IO methods. This class is " @@ -2638,7 +2531,7 @@ msgid "" "for SSL through memory buffers." msgstr "" -#: library/ssl.rst:2490 +#: library/ssl.rst:2395 msgid "" "This class implements an interface on top of a low-level SSL object as " "implemented by OpenSSL. This object captures the state of an SSL connection " @@ -2646,7 +2539,7 @@ msgid "" "separate \"BIO\" objects which are OpenSSL's IO abstraction layer." msgstr "" -#: library/ssl.rst:2495 +#: library/ssl.rst:2400 msgid "" "This class has no public constructor. An :class:`SSLObject` instance must " "be created using the :meth:`~SSLContext.wrap_bio` method. This method will " @@ -2655,214 +2548,214 @@ msgid "" "instance, while the *outgoing* BIO is used to pass data the other way around." msgstr "" -#: library/ssl.rst:2502 +#: library/ssl.rst:2407 msgid "The following methods are available:" msgstr "" -#: library/ssl.rst:2504 +#: library/ssl.rst:2409 msgid ":attr:`~SSLSocket.context`" msgstr "" -#: library/ssl.rst:2505 +#: library/ssl.rst:2410 msgid ":attr:`~SSLSocket.server_side`" msgstr "" -#: library/ssl.rst:2506 +#: library/ssl.rst:2411 msgid ":attr:`~SSLSocket.server_hostname`" msgstr "" -#: library/ssl.rst:2507 +#: library/ssl.rst:2412 msgid ":attr:`~SSLSocket.session`" msgstr "" -#: library/ssl.rst:2508 +#: library/ssl.rst:2413 msgid ":attr:`~SSLSocket.session_reused`" msgstr "" -#: library/ssl.rst:2509 +#: library/ssl.rst:2414 msgid ":meth:`~SSLSocket.read`" msgstr "" -#: library/ssl.rst:2510 +#: library/ssl.rst:2415 msgid ":meth:`~SSLSocket.write`" msgstr "" -#: library/ssl.rst:2511 +#: library/ssl.rst:2416 msgid ":meth:`~SSLSocket.getpeercert`" msgstr "" -#: library/ssl.rst:2512 +#: library/ssl.rst:2417 msgid ":meth:`~SSLSocket.selected_alpn_protocol`" msgstr "" -#: library/ssl.rst:2513 +#: library/ssl.rst:2418 msgid ":meth:`~SSLSocket.selected_npn_protocol`" msgstr "" -#: library/ssl.rst:2514 +#: library/ssl.rst:2419 msgid ":meth:`~SSLSocket.cipher`" msgstr "" -#: library/ssl.rst:2515 +#: library/ssl.rst:2420 msgid ":meth:`~SSLSocket.shared_ciphers`" msgstr "" -#: library/ssl.rst:2516 +#: library/ssl.rst:2421 msgid ":meth:`~SSLSocket.compression`" msgstr "" -#: library/ssl.rst:2517 +#: library/ssl.rst:2422 msgid ":meth:`~SSLSocket.pending`" msgstr "" -#: library/ssl.rst:2518 +#: library/ssl.rst:2423 msgid ":meth:`~SSLSocket.do_handshake`" msgstr "" -#: library/ssl.rst:2519 +#: library/ssl.rst:2424 msgid ":meth:`~SSLSocket.verify_client_post_handshake`" msgstr "" -#: library/ssl.rst:2520 +#: library/ssl.rst:2425 msgid ":meth:`~SSLSocket.unwrap`" msgstr "" -#: library/ssl.rst:2521 +#: library/ssl.rst:2426 msgid ":meth:`~SSLSocket.get_channel_binding`" msgstr "" -#: library/ssl.rst:2522 +#: library/ssl.rst:2427 msgid ":meth:`~SSLSocket.version`" msgstr "" -#: library/ssl.rst:2524 +#: library/ssl.rst:2429 msgid "" "When compared to :class:`SSLSocket`, this object lacks the following " "features:" msgstr "" -#: library/ssl.rst:2527 +#: library/ssl.rst:2432 msgid "" "Any form of network IO; ``recv()`` and ``send()`` read and write only to the " "underlying :class:`MemoryBIO` buffers." msgstr "" -#: library/ssl.rst:2530 +#: library/ssl.rst:2435 msgid "" "There is no *do_handshake_on_connect* machinery. You must always manually " "call :meth:`~SSLSocket.do_handshake` to start the handshake." msgstr "" -#: library/ssl.rst:2533 +#: library/ssl.rst:2438 msgid "" "There is no handling of *suppress_ragged_eofs*. All end-of-file conditions " "that are in violation of the protocol are reported via the :exc:" "`SSLEOFError` exception." msgstr "" -#: library/ssl.rst:2537 +#: library/ssl.rst:2442 msgid "" "The method :meth:`~SSLSocket.unwrap` call does not return anything, unlike " "for an SSL socket where it returns the underlying socket." msgstr "" -#: library/ssl.rst:2540 +#: library/ssl.rst:2445 msgid "" "The *server_name_callback* callback passed to :meth:`SSLContext." "set_servername_callback` will get an :class:`SSLObject` instance instead of " "a :class:`SSLSocket` instance as its first parameter." msgstr "" -#: library/ssl.rst:2544 +#: library/ssl.rst:2449 msgid "Some notes related to the use of :class:`SSLObject`:" msgstr "" -#: library/ssl.rst:2546 +#: library/ssl.rst:2451 msgid "" "All IO on an :class:`SSLObject` is :ref:`non-blocking `. " "This means that for example :meth:`~SSLSocket.read` will raise an :exc:" "`SSLWantReadError` if it needs more data than the incoming BIO has available." msgstr "" -#: library/ssl.rst:2551 +#: library/ssl.rst:2456 msgid "" "There is no module-level ``wrap_bio()`` call like there is for :meth:" "`~SSLContext.wrap_socket`. An :class:`SSLObject` is always created via an :" "class:`SSLContext`." msgstr "" -#: library/ssl.rst:2555 +#: library/ssl.rst:2460 msgid "" ":class:`SSLObject` instances must to created with :meth:`~SSLContext." "wrap_bio`. In earlier versions, it was possible to create instances " "directly. This was never documented or officially supported." msgstr "" -#: library/ssl.rst:2561 +#: library/ssl.rst:2466 msgid "" "An SSLObject communicates with the outside world using memory buffers. The " "class :class:`MemoryBIO` provides a memory buffer that can be used for this " "purpose. It wraps an OpenSSL memory BIO (Basic IO) object:" msgstr "" -#: library/ssl.rst:2567 +#: library/ssl.rst:2472 msgid "" "A memory buffer that can be used to pass data between Python and an SSL " "protocol instance." msgstr "" -#: library/ssl.rst:2572 +#: library/ssl.rst:2477 msgid "Return the number of bytes currently in the memory buffer." msgstr "" -#: library/ssl.rst:2576 +#: library/ssl.rst:2481 msgid "" "A boolean indicating whether the memory BIO is current at the end-of-file " "position." msgstr "" -#: library/ssl.rst:2581 +#: library/ssl.rst:2486 msgid "" "Read up to *n* bytes from the memory buffer. If *n* is not specified or " "negative, all bytes are returned." msgstr "" -#: library/ssl.rst:2586 +#: library/ssl.rst:2491 msgid "" "Write the bytes from *buf* to the memory BIO. The *buf* argument must be an " "object supporting the buffer protocol." msgstr "" -#: library/ssl.rst:2589 +#: library/ssl.rst:2494 msgid "" "The return value is the number of bytes written, which is always equal to " "the length of *buf*." msgstr "" -#: library/ssl.rst:2594 +#: library/ssl.rst:2499 msgid "" "Write an EOF marker to the memory BIO. After this method has been called, it " "is illegal to call :meth:`~MemoryBIO.write`. The attribute :attr:`eof` will " "become true after all data currently in the buffer has been read." msgstr "" -#: library/ssl.rst:2600 +#: library/ssl.rst:2505 msgid "SSL session" msgstr "" -#: library/ssl.rst:2606 +#: library/ssl.rst:2511 msgid "Session object used by :attr:`~SSLSocket.session`." msgstr "" -#: library/ssl.rst:2618 +#: library/ssl.rst:2523 msgid "Security considerations" msgstr "" -#: library/ssl.rst:2621 +#: library/ssl.rst:2526 msgid "Best defaults" msgstr "" -#: library/ssl.rst:2623 +#: library/ssl.rst:2528 msgid "" "For **client use**, if you don't have any special requirements for your " "security policy, it is highly recommended that you use the :func:" @@ -2872,19 +2765,19 @@ msgid "" "settings." msgstr "" -#: library/ssl.rst:2630 +#: library/ssl.rst:2535 msgid "" "For example, here is how you would use the :class:`smtplib.SMTP` class to " "create a trusted, secure connection to a SMTP server::" msgstr "" -#: library/ssl.rst:2639 +#: library/ssl.rst:2544 msgid "" "If a client certificate is needed for the connection, it can be added with :" "meth:`SSLContext.load_cert_chain`." msgstr "" -#: library/ssl.rst:2642 +#: library/ssl.rst:2547 msgid "" "By contrast, if you create the SSL context by calling the :class:" "`SSLContext` constructor yourself, it will not have certificate validation " @@ -2892,15 +2785,15 @@ msgid "" "paragraphs below to achieve a good security level." msgstr "" -#: library/ssl.rst:2648 +#: library/ssl.rst:2553 msgid "Manual settings" msgstr "" -#: library/ssl.rst:2651 +#: library/ssl.rst:2556 msgid "Verifying certificates" msgstr "" -#: library/ssl.rst:2653 +#: library/ssl.rst:2558 msgid "" "When calling the :class:`SSLContext` constructor directly, :const:" "`CERT_NONE` is the default. Since it does not authenticate the other peer, " @@ -2910,18 +2803,18 @@ msgid "" "`CERT_REQUIRED`. However, it is in itself not sufficient; you also have to " "check that the server certificate, which can be obtained by calling :meth:" "`SSLSocket.getpeercert`, matches the desired service. For many protocols " -"and applications, the service can be identified by the hostname; in this " -"case, the :func:`match_hostname` function can be used. This common check is " -"automatically performed when :attr:`SSLContext.check_hostname` is enabled." +"and applications, the service can be identified by the hostname. This common " +"check is automatically performed when :attr:`SSLContext.check_hostname` is " +"enabled." msgstr "" -#: library/ssl.rst:2666 +#: library/ssl.rst:2570 msgid "" "Hostname matchings is now performed by OpenSSL. Python no longer uses :func:" "`match_hostname`." msgstr "" -#: library/ssl.rst:2670 +#: library/ssl.rst:2574 msgid "" "In server mode, if you want to authenticate your clients using the SSL layer " "(rather than using a higher-level authentication mechanism), you'll also " @@ -2929,11 +2822,11 @@ msgid "" "certificate." msgstr "" -#: library/ssl.rst:2676 +#: library/ssl.rst:2580 msgid "Protocol versions" msgstr "" -#: library/ssl.rst:2678 +#: library/ssl.rst:2582 msgid "" "SSL versions 2 and 3 are considered insecure and are therefore dangerous to " "use. If you want maximum compatibility between clients and servers, it is " @@ -2942,7 +2835,7 @@ msgid "" "by default." msgstr "" -#: library/ssl.rst:2691 +#: library/ssl.rst:2595 msgid "" "The SSL context created above will only allow TLSv1.3 and later (if " "supported by your system) connections to a server. :const:" @@ -2950,11 +2843,11 @@ msgid "" "default. You have to load certificates into the context." msgstr "" -#: library/ssl.rst:2698 +#: library/ssl.rst:2602 msgid "Cipher selection" msgstr "" -#: library/ssl.rst:2700 +#: library/ssl.rst:2604 msgid "" "If you have advanced security requirements, fine-tuning of the ciphers " "enabled when negotiating a SSL session is possible through the :meth:" @@ -2967,32 +2860,32 @@ msgid "" "ciphers`` command on your system." msgstr "" -#: library/ssl.rst:2711 +#: library/ssl.rst:2615 msgid "Multi-processing" msgstr "" -#: library/ssl.rst:2713 +#: library/ssl.rst:2617 msgid "" "If using this module as part of a multi-processed application (using, for " "example the :mod:`multiprocessing` or :mod:`concurrent.futures` modules), be " "aware that OpenSSL's internal random number generator does not properly " "handle forked processes. Applications must change the PRNG state of the " "parent process if they use any SSL feature with :func:`os.fork`. Any " -"successful call of :func:`~ssl.RAND_add`, :func:`~ssl.RAND_bytes` or :func:" -"`~ssl.RAND_pseudo_bytes` is sufficient." +"successful call of :func:`~ssl.RAND_add` or :func:`~ssl.RAND_bytes` is " +"sufficient." msgstr "" -#: library/ssl.rst:2725 +#: library/ssl.rst:2629 msgid "TLS 1.3" msgstr "" -#: library/ssl.rst:2729 +#: library/ssl.rst:2633 msgid "" "The TLS 1.3 protocol behaves slightly differently than previous version of " "TLS/SSL. Some new TLS 1.3 features are not yet available." msgstr "" -#: library/ssl.rst:2732 +#: library/ssl.rst:2636 msgid "" "TLS 1.3 uses a disjunct set of cipher suites. All AES-GCM and ChaCha20 " "cipher suites are enabled by default. The method :meth:`SSLContext." @@ -3000,14 +2893,14 @@ msgid "" "`SSLContext.get_ciphers` returns them." msgstr "" -#: library/ssl.rst:2736 +#: library/ssl.rst:2640 msgid "" "Session tickets are no longer sent as part of the initial handshake and are " "handled differently. :attr:`SSLSocket.session` and :class:`SSLSession` are " "not compatible with TLS 1.3." msgstr "" -#: library/ssl.rst:2739 +#: library/ssl.rst:2643 msgid "" "Client-side certificates are also no longer verified during the initial " "handshake. A server can request a certificate at any time. Clients process " @@ -3015,103 +2908,103 @@ msgid "" "server." msgstr "" -#: library/ssl.rst:2743 +#: library/ssl.rst:2647 msgid "" "TLS 1.3 features like early data, deferred TLS client cert request, " "signature algorithm configuration, and rekeying are not supported yet." msgstr "" -#: library/ssl.rst:2750 +#: library/ssl.rst:2654 msgid "Class :class:`socket.socket`" msgstr "" -#: library/ssl.rst:2750 +#: library/ssl.rst:2654 msgid "Documentation of underlying :mod:`socket` class" msgstr "" -#: library/ssl.rst:2753 +#: library/ssl.rst:2657 msgid "" "`SSL/TLS Strong Encryption: An Introduction `_" msgstr "" -#: library/ssl.rst:2753 +#: library/ssl.rst:2657 msgid "Intro from the Apache HTTP Server documentation" msgstr "" -#: library/ssl.rst:2756 +#: library/ssl.rst:2660 msgid "" ":rfc:`RFC 1422: Privacy Enhancement for Internet Electronic Mail: Part II: " "Certificate-Based Key Management <1422>`" msgstr "" -#: library/ssl.rst:2756 +#: library/ssl.rst:2660 msgid "Steve Kent" msgstr "" -#: library/ssl.rst:2759 +#: library/ssl.rst:2663 msgid ":rfc:`RFC 4086: Randomness Requirements for Security <4086>`" msgstr "" -#: library/ssl.rst:2759 +#: library/ssl.rst:2663 msgid "Donald E., Jeffrey I. Schiller" msgstr "" -#: library/ssl.rst:2762 +#: library/ssl.rst:2666 msgid "" ":rfc:`RFC 5280: Internet X.509 Public Key Infrastructure Certificate and " "Certificate Revocation List (CRL) Profile <5280>`" msgstr "" -#: library/ssl.rst:2762 +#: library/ssl.rst:2666 msgid "D. Cooper" msgstr "" -#: library/ssl.rst:2765 +#: library/ssl.rst:2669 msgid "" ":rfc:`RFC 5246: The Transport Layer Security (TLS) Protocol Version 1.2 " "<5246>`" msgstr "" -#: library/ssl.rst:2765 +#: library/ssl.rst:2669 msgid "T. Dierks et. al." msgstr "" -#: library/ssl.rst:2768 +#: library/ssl.rst:2672 msgid ":rfc:`RFC 6066: Transport Layer Security (TLS) Extensions <6066>`" msgstr "" -#: library/ssl.rst:2768 +#: library/ssl.rst:2672 msgid "D. Eastlake" msgstr "" -#: library/ssl.rst:2771 +#: library/ssl.rst:2675 msgid "" "`IANA TLS: Transport Layer Security (TLS) Parameters `_" msgstr "" -#: library/ssl.rst:2771 +#: library/ssl.rst:2675 msgid "IANA" msgstr "" -#: library/ssl.rst:2774 +#: library/ssl.rst:2678 msgid "" ":rfc:`RFC 7525: Recommendations for Secure Use of Transport Layer Security " "(TLS) and Datagram Transport Layer Security (DTLS) <7525>`" msgstr "" -#: library/ssl.rst:2774 +#: library/ssl.rst:2678 msgid "IETF" msgstr "" -#: library/ssl.rst:2776 +#: library/ssl.rst:2680 msgid "" "`Mozilla's Server Side TLS recommendations `_" msgstr "" -#: library/ssl.rst:2777 +#: library/ssl.rst:2681 msgid "Mozilla" msgstr "" @@ -3139,10 +3032,10 @@ msgstr "" msgid "Secure Sockets Layer" msgstr "" -#: library/ssl.rst:2085 +#: library/ssl.rst:1990 msgid "certificates" msgstr "" -#: library/ssl.rst:2087 +#: library/ssl.rst:1992 msgid "X509 certificate" msgstr "" diff --git a/library/statistics.po b/library/statistics.po index 86a2f5858..d983922d8 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -223,7 +223,7 @@ msgid ":func:`correlation`" msgstr "" #: library/statistics.rst:107 -msgid "Pearson's correlation coefficient for two variables." +msgid "Pearson and Spearman's correlation coefficients." msgstr "" #: library/statistics.rst:108 @@ -575,7 +575,7 @@ msgstr "" msgid "Raises :exc:`StatisticsError` if *data* is empty." msgstr "" -#: library/statistics.rst:531 library/statistics.rst:663 +#: library/statistics.rst:531 library/statistics.rst:635 msgid "Examples:" msgstr "" @@ -743,18 +743,42 @@ msgid "" "Return the `Pearson's correlation coefficient `_ for two inputs. Pearson's correlation " "coefficient *r* takes values between -1 and +1. It measures the strength and " -"direction of the linear relationship, where +1 means very strong, positive " -"linear relationship, -1 very strong, negative linear relationship, and 0 no " -"linear relationship." +"direction of a linear relationship." msgstr "" -#: library/statistics.rst:660 +#: library/statistics.rst:659 +msgid "" +"If *method* is \"ranked\", computes `Spearman's rank correlation coefficient " +"`_ " +"for two inputs. The data is replaced by ranks. Ties are averaged so that " +"equal values receive the same rank. The resulting coefficient measures the " +"strength of a monotonic relationship." +msgstr "" + +#: library/statistics.rst:665 +msgid "" +"Spearman's correlation coefficient is appropriate for ordinal data or for " +"continuous data that doesn't meet the linear proportion requirement for " +"Pearson's correlation coefficient." +msgstr "" + +#: library/statistics.rst:669 msgid "" "Both inputs must be of the same length (no less than two), and need not to " "be constant, otherwise :exc:`StatisticsError` is raised." msgstr "" -#: library/statistics.rst:678 +#: library/statistics.rst:672 +msgid "" +"Example with `Kepler's laws of planetary motion `_:" +msgstr "" + +#: library/statistics.rst:699 +msgid "Added support for Spearman's rank correlation coefficient." +msgstr "" + +#: library/statistics.rst:704 msgid "" "Return the slope and intercept of `simple linear regression `_ parameters estimated using " @@ -763,11 +787,11 @@ msgid "" "this linear function:" msgstr "" -#: library/statistics.rst:684 +#: library/statistics.rst:710 msgid "*y = slope \\* x + intercept + noise*" msgstr "" -#: library/statistics.rst:686 +#: library/statistics.rst:712 msgid "" "where ``slope`` and ``intercept`` are the regression parameters that are " "estimated, and ``noise`` represents the variability of the data that was not " @@ -775,14 +799,14 @@ msgid "" "predicted and actual values of the dependent variable)." msgstr "" -#: library/statistics.rst:692 +#: library/statistics.rst:718 msgid "" "Both inputs must be of the same length (no less than two), and the " "independent variable *x* cannot be constant; otherwise a :exc:" "`StatisticsError` is raised." msgstr "" -#: library/statistics.rst:696 +#: library/statistics.rst:722 msgid "" "For example, we can use the `release dates of the Monty Python films " "`_ to predict the " @@ -790,7 +814,7 @@ msgid "" "2019 assuming that they had kept the pace." msgstr "" -#: library/statistics.rst:710 +#: library/statistics.rst:736 msgid "" "If *proportional* is true, the independent variable *x* and the dependent " "variable *y* are assumed to be directly proportional. The data is fit to a " @@ -798,31 +822,31 @@ msgid "" "the underlying linear function simplifies to:" msgstr "" -#: library/statistics.rst:716 +#: library/statistics.rst:742 msgid "*y = slope \\* x + noise*" msgstr "" -#: library/statistics.rst:720 +#: library/statistics.rst:746 msgid "Added support for *proportional*." msgstr "" -#: library/statistics.rst:724 +#: library/statistics.rst:750 msgid "Exceptions" msgstr "" -#: library/statistics.rst:726 +#: library/statistics.rst:752 msgid "A single exception is defined:" msgstr "" -#: library/statistics.rst:730 +#: library/statistics.rst:756 msgid "Subclass of :exc:`ValueError` for statistics-related exceptions." msgstr "" -#: library/statistics.rst:734 +#: library/statistics.rst:760 msgid ":class:`NormalDist` objects" msgstr "" -#: library/statistics.rst:736 +#: library/statistics.rst:762 msgid "" ":class:`NormalDist` is a tool for creating and manipulating normal " "distributions of a `random variable `_ and have a wide range of " "applications in statistics." msgstr "" -#: library/statistics.rst:748 +#: library/statistics.rst:774 msgid "" "Returns a new *NormalDist* object where *mu* represents the `arithmetic mean " "`_ and *sigma* represents the " "`standard deviation `_." msgstr "" -#: library/statistics.rst:753 +#: library/statistics.rst:779 msgid "If *sigma* is negative, raises :exc:`StatisticsError`." msgstr "" -#: library/statistics.rst:757 +#: library/statistics.rst:783 msgid "" "A read-only property for the `arithmetic mean `_ of a normal distribution." msgstr "" -#: library/statistics.rst:763 +#: library/statistics.rst:789 msgid "" "A read-only property for the `median `_ of a normal distribution." msgstr "" -#: library/statistics.rst:769 +#: library/statistics.rst:795 msgid "" "A read-only property for the `mode `_ of a normal distribution." msgstr "" -#: library/statistics.rst:775 +#: library/statistics.rst:801 msgid "" "A read-only property for the `standard deviation `_ of a normal distribution." msgstr "" -#: library/statistics.rst:781 +#: library/statistics.rst:807 msgid "" "A read-only property for the `variance `_ of a normal distribution. Equal to the square of the standard " "deviation." msgstr "" -#: library/statistics.rst:787 +#: library/statistics.rst:813 msgid "" "Makes a normal distribution instance with *mu* and *sigma* parameters " "estimated from the *data* using :func:`fmean` and :func:`stdev`." msgstr "" -#: library/statistics.rst:790 +#: library/statistics.rst:816 msgid "" "The *data* can be any :term:`iterable` and should consist of values that can " "be converted to type :class:`float`. If *data* does not contain at least " @@ -894,20 +918,20 @@ msgid "" "dispersion." msgstr "" -#: library/statistics.rst:798 +#: library/statistics.rst:824 msgid "" "Generates *n* random samples for a given mean and standard deviation. " "Returns a :class:`list` of :class:`float` values." msgstr "" -#: library/statistics.rst:801 +#: library/statistics.rst:827 msgid "" "If *seed* is given, creates a new instance of the underlying random number " "generator. This is useful for creating reproducible results, even in a " "multi-threading context." msgstr "" -#: library/statistics.rst:807 +#: library/statistics.rst:833 msgid "" "Using a `probability density function (pdf) `_, compute the relative likelihood that a " @@ -915,7 +939,7 @@ msgid "" "the limit of the ratio ``P(x <= X < x+dx) / dx`` as *dx* approaches zero." msgstr "" -#: library/statistics.rst:813 +#: library/statistics.rst:839 msgid "" "The relative likelihood is computed as the probability of a sample occurring " "in a narrow range divided by the width of the range (hence the word " @@ -923,7 +947,7 @@ msgid "" "can be greater than ``1.0``." msgstr "" -#: library/statistics.rst:820 +#: library/statistics.rst:846 msgid "" "Using a `cumulative distribution function (cdf) `_, compute the probability that a " @@ -931,7 +955,7 @@ msgid "" "is written ``P(X <= x)``." msgstr "" -#: library/statistics.rst:827 +#: library/statistics.rst:853 msgid "" "Compute the inverse cumulative distribution function, also known as the " "`quantile function `_ or " @@ -940,34 +964,34 @@ msgid "" "function. Mathematically, it is written ``x : P(X <= x) = p``." msgstr "" -#: library/statistics.rst:833 +#: library/statistics.rst:859 msgid "" "Finds the value *x* of the random variable *X* such that the probability of " "the variable being less than or equal to that value equals the given " "probability *p*." msgstr "" -#: library/statistics.rst:839 +#: library/statistics.rst:865 msgid "" "Measures the agreement between two normal probability distributions. Returns " "a value between 0.0 and 1.0 giving `the overlapping area for the two " "probability density functions `_." msgstr "" -#: library/statistics.rst:846 +#: library/statistics.rst:872 msgid "" "Divide the normal distribution into *n* continuous intervals with equal " "probability. Returns a list of (n - 1) cut points separating the intervals." msgstr "" -#: library/statistics.rst:850 +#: library/statistics.rst:876 msgid "" "Set *n* to 4 for quartiles (the default). Set *n* to 10 for deciles. Set " "*n* to 100 for percentiles which gives the 99 cuts points that separate the " "normal distribution into 100 equal sized groups." msgstr "" -#: library/statistics.rst:856 +#: library/statistics.rst:882 msgid "" "Compute the `Standard Score `_ describing *x* in terms of the number of standard " @@ -975,20 +999,20 @@ msgid "" "mean) / stdev``." msgstr "" -#: library/statistics.rst:864 +#: library/statistics.rst:890 msgid "" "Instances of :class:`NormalDist` support addition, subtraction, " "multiplication and division by a constant. These operations are used for " "translation and scaling. For example:" msgstr "" -#: library/statistics.rst:874 +#: library/statistics.rst:900 msgid "" "Dividing a constant by an instance of :class:`NormalDist` is not supported " "because the result wouldn't be normally distributed." msgstr "" -#: library/statistics.rst:877 +#: library/statistics.rst:903 msgid "" "Since normal distributions arise from additive effects of independent " "variables, it is possible to `add and subtract two independent normally " @@ -997,15 +1021,19 @@ msgid "" "class:`NormalDist`. For example:" msgstr "" -#: library/statistics.rst:897 +#: library/statistics.rst:923 msgid ":class:`NormalDist` Examples and Recipes" msgstr "" -#: library/statistics.rst:899 +#: library/statistics.rst:927 +msgid "Classic probability problems" +msgstr "" + +#: library/statistics.rst:929 msgid ":class:`NormalDist` readily solves classic probability problems." msgstr "" -#: library/statistics.rst:901 +#: library/statistics.rst:931 msgid "" "For example, given `historical data for SAT exams `_ showing that scores are " @@ -1014,27 +1042,35 @@ msgid "" "after rounding to the nearest whole number:" msgstr "" -#: library/statistics.rst:914 +#: library/statistics.rst:944 msgid "" "Find the `quartiles `_ and `deciles " "`_ for the SAT scores:" msgstr "" -#: library/statistics.rst:924 +#: library/statistics.rst:956 +msgid "Monte Carlo inputs for simulations" +msgstr "" + +#: library/statistics.rst:958 msgid "" "To estimate the distribution for a model than isn't easy to solve " "analytically, :class:`NormalDist` can generate input samples for a `Monte " "Carlo simulation `_:" msgstr "" -#: library/statistics.rst:940 +#: library/statistics.rst:975 +msgid "Approximating binomial distributions" +msgstr "" + +#: library/statistics.rst:977 msgid "" "Normal distributions can be used to approximate `Binomial distributions " "`_ when the sample " "size is large and when the probability of a successful trial is near 50%." msgstr "" -#: library/statistics.rst:945 +#: library/statistics.rst:982 msgid "" "For example, an open source conference has 750 attendees and two rooms with " "a 500 person capacity. There is a talk about Python and another about Ruby. " @@ -1043,11 +1079,15 @@ msgid "" "probability that the Python room will stay within its capacity limits?" msgstr "" -#: library/statistics.rst:976 +#: library/statistics.rst:1016 +msgid "Naive bayesian classifier" +msgstr "" + +#: library/statistics.rst:1018 msgid "Normal distributions commonly arise in machine learning problems." msgstr "" -#: library/statistics.rst:978 +#: library/statistics.rst:1020 msgid "" "Wikipedia has a `nice example of a Naive Bayesian Classifier `_. The " @@ -1055,20 +1095,20 @@ msgid "" "distributed features including height, weight, and foot size." msgstr "" -#: library/statistics.rst:983 +#: library/statistics.rst:1025 msgid "" "We're given a training dataset with measurements for eight people. The " "measurements are assumed to be normally distributed, so we summarize the " "data with :class:`NormalDist`:" msgstr "" -#: library/statistics.rst:996 +#: library/statistics.rst:1038 msgid "" "Next, we encounter a new person whose feature measurements are known but " "whose gender is unknown:" msgstr "" -#: library/statistics.rst:1005 +#: library/statistics.rst:1047 msgid "" "Starting with a 50% `prior probability `_ of being male or female, we compute the posterior as " @@ -1076,9 +1116,45 @@ msgid "" "given the gender:" msgstr "" -#: library/statistics.rst:1020 +#: library/statistics.rst:1062 msgid "" "The final prediction goes to the largest posterior. This is known as the " "`maximum a posteriori `_ or MAP:" msgstr "" + +#: library/statistics.rst:1073 +msgid "Kernel density estimation" +msgstr "" + +#: library/statistics.rst:1075 +msgid "" +"It is possible to estimate a continuous probability density function from a " +"fixed number of discrete samples." +msgstr "" + +#: library/statistics.rst:1078 +msgid "" +"The basic idea is to smooth the data using `a kernel function such as a " +"normal distribution, triangular distribution, or uniform distribution " +"`_. The degree of " +"smoothing is controlled by a single parameter, ``h``, representing the " +"variance of the kernel function." +msgstr "" + +#: library/statistics.rst:1097 +msgid "" +"`Wikipedia has an example `_ where we can use the ``kde_normal()`` " +"recipe to generate and plot a probability density function estimated from a " +"small sample:" +msgstr "" + +#: library/statistics.rst:1109 +msgid "The points in ``xarr`` and ``yarr`` can be used to make a PDF plot:" +msgstr "" + +#: library/statistics.rst:-1 +msgid "Scatter plot of the estimated probability density function." +msgstr "" diff --git a/library/stdtypes.po b/library/stdtypes.po index 73c58bb7b..5a20d45e2 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2023-02-01 18:55-0500\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -128,17 +128,17 @@ msgstr "Boolean İşlemleri --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not` msgid "These are the Boolean operations, ordered by ascending priority:" msgstr "Bunlar artan önceliğe göre sıralanmış Boolean işlemleridir:" -#: library/stdtypes.rst:143 library/stdtypes.rst:365 library/stdtypes.rst:924 -#: library/stdtypes.rst:1129 +#: library/stdtypes.rst:143 library/stdtypes.rst:365 library/stdtypes.rst:963 +#: library/stdtypes.rst:1168 msgid "Operation" msgstr "İşlem" -#: library/stdtypes.rst:275 library/stdtypes.rst:415 library/stdtypes.rst:1129 +#: library/stdtypes.rst:275 library/stdtypes.rst:415 library/stdtypes.rst:1168 msgid "Result" msgstr "Sonuç" -#: library/stdtypes.rst:275 library/stdtypes.rst:924 library/stdtypes.rst:2374 -#: library/stdtypes.rst:3592 +#: library/stdtypes.rst:275 library/stdtypes.rst:963 library/stdtypes.rst:2418 +#: library/stdtypes.rst:3636 msgid "Notes" msgstr "Notlar" @@ -150,7 +150,7 @@ msgstr "``x or y``" msgid "if *x* is true, then *x*, else *y*" msgstr "*x* doğruysa, *x*, aksi halde *y*" -#: library/stdtypes.rst:926 library/stdtypes.rst:1140 library/stdtypes.rst:3598 +#: library/stdtypes.rst:965 library/stdtypes.rst:1179 library/stdtypes.rst:3642 msgid "\\(1)" msgstr "\\(1)" @@ -162,8 +162,8 @@ msgstr "``x and y``" msgid "if *x* is false, then *x*, else *y*" msgstr "*x* yanlışsa, *x*, aksi halde *y*" -#: library/stdtypes.rst:288 library/stdtypes.rst:1168 library/stdtypes.rst:2386 -#: library/stdtypes.rst:3604 +#: library/stdtypes.rst:288 library/stdtypes.rst:1207 library/stdtypes.rst:2430 +#: library/stdtypes.rst:3648 msgid "\\(2)" msgstr "\\(2)" @@ -175,14 +175,14 @@ msgstr "``not x``" msgid "if *x* is false, then ``True``, else ``False``" msgstr "*x* yanlışsa, ``True``, aksi halde ``False``" -#: library/stdtypes.rst:938 library/stdtypes.rst:2388 library/stdtypes.rst:2392 -#: library/stdtypes.rst:3606 library/stdtypes.rst:3610 -#: library/stdtypes.rst:3612 +#: library/stdtypes.rst:977 library/stdtypes.rst:2432 library/stdtypes.rst:2436 +#: library/stdtypes.rst:3650 library/stdtypes.rst:3654 +#: library/stdtypes.rst:3656 msgid "\\(3)" msgstr "\\(3)" -#: library/stdtypes.rst:319 library/stdtypes.rst:975 library/stdtypes.rst:2420 -#: library/stdtypes.rst:3642 +#: library/stdtypes.rst:319 library/stdtypes.rst:1014 library/stdtypes.rst:2464 +#: library/stdtypes.rst:3686 msgid "Notes:" msgstr "Notlar:" @@ -233,8 +233,8 @@ msgstr "" msgid "This table summarizes the comparison operations:" msgstr "Bu tablo karşılaştırma operatörlerini özetlemektedir:" -#: library/stdtypes.rst:2351 library/stdtypes.rst:3569 -#: library/stdtypes.rst:3592 +#: library/stdtypes.rst:2395 library/stdtypes.rst:3613 +#: library/stdtypes.rst:3636 msgid "Meaning" msgstr "Anlamı" @@ -571,7 +571,7 @@ msgstr "" "gerçek kısmı *re*, sanal kısmı *im* olan bir karmaşık sayı. *im* varsayılan " "olarak sıfırdır." -#: library/stdtypes.rst:1161 library/stdtypes.rst:3629 +#: library/stdtypes.rst:1200 library/stdtypes.rst:3673 msgid "\\(6)" msgstr "\\(6)" @@ -607,8 +607,8 @@ msgstr "``pow(x, y)``" msgid "*x* to the power *y*" msgstr "*x* üzeri *y*" -#: library/stdtypes.rst:312 library/stdtypes.rst:1153 library/stdtypes.rst:2410 -#: library/stdtypes.rst:3625 library/stdtypes.rst:3632 +#: library/stdtypes.rst:312 library/stdtypes.rst:1192 library/stdtypes.rst:2454 +#: library/stdtypes.rst:3669 library/stdtypes.rst:3676 msgid "\\(5)" msgstr "\\(5)" @@ -682,9 +682,11 @@ msgstr "" "içerir." #: library/stdtypes.rst:357 +#, fuzzy msgid "" -"See https://www.unicode.org/Public/14.0.0/ucd/extracted/DerivedNumericType." -"txt for a complete list of code points with the ``Nd`` property." +"See `the Unicode Standard `_ for a complete list of code points with the ``Nd`` " +"property." msgstr "" "``Nd`` özelliğine sahip kod noktalarının tam listesi için https://www." "unicode.org/Public/14.0.0/ucd/extracted/DerivedNumericType.txt adresine " @@ -779,8 +781,8 @@ msgstr "``x | y``" msgid "bitwise :dfn:`or` of *x* and *y*" msgstr "bit düzeyinde *x* :dfn:`or` *y*" -#: library/stdtypes.rst:420 library/stdtypes.rst:1174 library/stdtypes.rst:2400 -#: library/stdtypes.rst:3618 +#: library/stdtypes.rst:420 library/stdtypes.rst:1213 library/stdtypes.rst:2444 +#: library/stdtypes.rst:3662 msgid "\\(4)" msgstr "\\(4)" @@ -1004,21 +1006,27 @@ msgid "Added default argument value for ``byteorder``." msgstr "" #: library/stdtypes.rst:608 +#, fuzzy msgid "" -"Return a pair of integers whose ratio is exactly equal to the original " -"integer and with a positive denominator. The integer ratio of integers " -"(whole numbers) is always the integer as the numerator and ``1`` as the " -"denominator." +"Return a pair of integers whose ratio is equal to the original integer and " +"has a positive denominator. The integer ratio of integers (whole numbers) " +"is always the integer as the numerator and ``1`` as the denominator." msgstr "" "Oranı, orijinal tam sayıya tam olarak eşit ve pozitif bir paydaya sahip bir " "tam sayı çifti döndürür. Integerlerin tam sayı oranı her zaman pay olarak " "tam sayı ve payda olarak ``1`` dir." -#: library/stdtypes.rst:616 +#: library/stdtypes.rst:617 +msgid "" +"Returns ``True``. Exists for duck type compatibility with :meth:`float." +"is_integer`." +msgstr "" + +#: library/stdtypes.rst:622 msgid "Additional Methods on Float" msgstr "Gerçel Sayılarda Ek Metotlar" -#: library/stdtypes.rst:618 +#: library/stdtypes.rst:624 msgid "" "The float type implements the :class:`numbers.Real` :term:`abstract base " "class`. float also has the following additional methods." @@ -1026,17 +1034,18 @@ msgstr "" "Float türü, :class:`numbers.Real` :term:`abstract base class` 'ı uygular. " "Float ayrıca aşağıdaki ek metotlara sahiptir." -#: library/stdtypes.rst:623 +#: library/stdtypes.rst:629 +#, fuzzy msgid "" -"Return a pair of integers whose ratio is exactly equal to the original float " -"and with a positive denominator. Raises :exc:`OverflowError` on infinities " -"and a :exc:`ValueError` on NaNs." +"Return a pair of integers whose ratio is exactly equal to the original " +"float. The ratio is in lowest terms and has a positive denominator. Raises :" +"exc:`OverflowError` on infinities and a :exc:`ValueError` on NaNs." msgstr "" "Oranı tam olarak orijinal gerçel sayıya eşit ve pozitif bir paydaya sahip " "bir çift tam sayı döndürür. Sonsuzluklarda :exc:`OverflowError` ve NaN'lerde " "(SayıDeğil) :exc:`ValueError` hataları ortaya çıkar." -#: library/stdtypes.rst:630 +#: library/stdtypes.rst:636 msgid "" "Return ``True`` if the float instance is finite with integral value, and " "``False`` otherwise::" @@ -1044,7 +1053,7 @@ msgstr "" "Float örneği integral değeriyle sonluysa ``True``, aksi takdirde ``False`` " "döndürür::" -#: library/stdtypes.rst:638 +#: library/stdtypes.rst:644 msgid "" "Two methods support conversion to and from hexadecimal strings. Since " "Python's floats are stored internally as binary numbers, converting a float " @@ -1061,7 +1070,7 @@ msgstr "" "belirtilmesine izin verir. Bu, hata ayıklama sırasında ve sayısal " "çalışmalarda yararlı olabilir." -#: library/stdtypes.rst:649 +#: library/stdtypes.rst:655 msgid "" "Return a representation of a floating-point number as a hexadecimal string. " "For finite floating-point numbers, this representation will always include a " @@ -1071,7 +1080,7 @@ msgstr "" "gerçel sayılar için, bu gösterim her zaman başında bir ``0x`` ve sonunda bir " "``p`` ve üs içerecektir." -#: library/stdtypes.rst:657 +#: library/stdtypes.rst:663 msgid "" "Class method to return the float represented by a hexadecimal string *s*. " "The string *s* may have leading and trailing whitespace." @@ -1079,7 +1088,7 @@ msgstr "" "Gerçel sayıyı temsil eden bir onaltılık dize *s*'yi döndüren için sınıf " "(class) metodu. *s* dizesinin başında ve sonunda boşluk olabilir." -#: library/stdtypes.rst:662 +#: library/stdtypes.rst:668 msgid "" "Note that :meth:`float.hex` is an instance method, while :meth:`float." "fromhex` is a class method." @@ -1087,11 +1096,11 @@ msgstr "" ":meth:`float.hex` 'in bir örnek (instance) metodu olduğunu, :meth:`float." "fromhex` 'in ise bir sınıf (class) metodu olduğunu unutmayın." -#: library/stdtypes.rst:665 +#: library/stdtypes.rst:671 msgid "A hexadecimal string takes the form::" msgstr "Onaltılık bir dize şu biçimi alır::" -#: library/stdtypes.rst:669 +#: library/stdtypes.rst:675 #, fuzzy msgid "" "where the optional ``sign`` may by either ``+`` or ``-``, ``integer`` and " @@ -1116,7 +1125,7 @@ msgstr "" "toHexString`` 'i tarafından üretilen onaltılık dizeler :meth:`float.fromhex` " "tarafından kabul edilir." -#: library/stdtypes.rst:682 +#: library/stdtypes.rst:688 msgid "" "Note that the exponent is written in decimal rather than hexadecimal, and " "that it gives the power of 2 by which to multiply the coefficient. For " @@ -1128,7 +1137,7 @@ msgstr "" "``(3 + 10./16 + 7./16**2) * 2.0**10`` veya ``3740.0`` gerçel sayısını temsil " "eder::" -#: library/stdtypes.rst:692 +#: library/stdtypes.rst:698 msgid "" "Applying the reverse conversion to ``3740.0`` gives a different hexadecimal " "string representing the same number::" @@ -1136,11 +1145,11 @@ msgstr "" "``3740.0`` 'a ters dönüştürme uygulamak, aynı sayıyı temsil eden farklı bir " "onaltılık dize verir::" -#: library/stdtypes.rst:702 +#: library/stdtypes.rst:708 msgid "Hashing of numeric types" msgstr "Sayısal türlerin hashlemesi" -#: library/stdtypes.rst:704 +#: library/stdtypes.rst:710 msgid "" "For numbers ``x`` and ``y``, possibly of different types, it's a requirement " "that ``hash(x) == hash(y)`` whenever ``x == y`` (see the :meth:`~object." @@ -1167,7 +1176,7 @@ msgstr "" "``P`` için ``reduction modulo`` ``P`` ile verilir. ``P`` değeri Python'a :" "data:`sys.hash_info` 'nun :attr:`modulus` özelliği olarak sunulur." -#: library/stdtypes.rst:719 +#: library/stdtypes.rst:725 msgid "" "Currently, the prime used is ``P = 2**31 - 1`` on machines with 32-bit C " "longs and ``P = 2**61 - 1`` on machines with 64-bit C longs." @@ -1175,11 +1184,11 @@ msgstr "" "Şu anda kullanılan asal sayı, 32 bit C uzunluğundaki makinelerde ``P = 2**31 " "- 1`` ve 64-bit C uzunluğundaki makinelerde ``P = 2**61 - 1`` şeklindedir." -#: library/stdtypes.rst:722 +#: library/stdtypes.rst:728 msgid "Here are the rules in detail:" msgstr "İşte ayrıntılı kurallar:" -#: library/stdtypes.rst:724 +#: library/stdtypes.rst:730 msgid "" "If ``x = m / n`` is a nonnegative rational number and ``n`` is not divisible " "by ``P``, define ``hash(x)`` as ``m * invmod(n, P) % P``, where ``invmod(n, " @@ -1189,7 +1198,7 @@ msgstr "" "bölünemiyorsa, ``hash(x)`` 'i ``m * invmod(n, P) % P`` olarak tanımlayın, bu " "durumda ``invmod(n, P)``, ``n`` modül ``P`` 'nin tersini verir." -#: library/stdtypes.rst:728 +#: library/stdtypes.rst:734 msgid "" "If ``x = m / n`` is a nonnegative rational number and ``n`` is divisible by " "``P`` (but ``m`` is not) then ``n`` has no inverse modulo ``P`` and the rule " @@ -1201,7 +1210,7 @@ msgstr "" "ters modülü yoktur ve yukarıdaki kural geçerli değildir; bu durumda " "``hash(x)`` i ``sys.hash_info.inf`` olarak tanımlayın." -#: library/stdtypes.rst:733 +#: library/stdtypes.rst:739 msgid "" "If ``x = m / n`` is a negative rational number define ``hash(x)`` as ``-" "hash(-x)``. If the resulting hash is ``-1``, replace it with ``-2``." @@ -1210,7 +1219,7 @@ msgstr "" "olarak tanımlayın. Elde edilen ``hash`` ``-1`` ise, bunu ``-2`` ile " "değiştirin." -#: library/stdtypes.rst:737 +#: library/stdtypes.rst:743 msgid "" "The particular values ``sys.hash_info.inf`` and ``-sys.hash_info.inf`` are " "used as hash values for positive infinity or negative infinity " @@ -1219,7 +1228,7 @@ msgstr "" "``sys.hash_info.inf`` ve ``-sys.hash_info.inf``, pozitif sonsuz veya negatif " "sonsuz (sırasıyla) için ``hash`` değerleri olarak kullanılır." -#: library/stdtypes.rst:741 +#: library/stdtypes.rst:747 #, fuzzy msgid "" "For a :class:`complex` number ``z``, the hash values of the real and " @@ -1234,7 +1243,7 @@ msgstr "" "``range(-2**(sys.hash_info.width - 1), 2**(sys.hash_info.width - 1))`` 'de " "bulunur. Yine sonuç ``-1`` ise, ``-2`` ile değiştirilir." -#: library/stdtypes.rst:749 +#: library/stdtypes.rst:755 msgid "" "To clarify the above rules, here's some example Python code, equivalent to " "the built-in hash, for computing the hash of a rational number, :class:" @@ -1244,11 +1253,51 @@ msgstr "" "`complex` olan rasyonel bir sayının ``hash`` 'ini hesaplamak için gömülü " "``hash`` 'e eş değer örnek Python kodu::" -#: library/stdtypes.rst:804 +#: library/stdtypes.rst:810 +#, fuzzy +msgid "Boolean Type - :class:`bool`" +msgstr "Mapping Types --- :class:`dict`" + +#: library/stdtypes.rst:812 +msgid "" +"Booleans represent truth values. The :class:`bool` type has exactly two " +"constant instances: ``True`` and ``False``." +msgstr "" + +#: library/stdtypes.rst:820 +msgid "" +"The built-in function :func:`bool` converts any value to a boolean, if the " +"value can be interpreted as a truth value (see section :ref:`truth` above)." +msgstr "" + +#: library/stdtypes.rst:823 +msgid "" +"For logical operations, use the :ref:`boolean operators ` ``and``, " +"``or`` and ``not``. When applying the bitwise operators ``&``, ``|``, ``^`` " +"to two booleans, they return a bool equivalent to the logical operations " +"\"and\", \"or\", \"xor\". However, the logical operators ``and``, ``or`` and " +"``!=`` should be preferred over ``&``, ``|`` and ``^``." +msgstr "" + +#: library/stdtypes.rst:832 +msgid "" +"The use of the bitwise inversion operator ``~`` is deprecated and will raise " +"an error in Python 3.14." +msgstr "" + +#: library/stdtypes.rst:835 +msgid "" +":class:`bool` is a subclass of :class:`int` (see :ref:`typesnumeric`). In " +"many numeric contexts, ``False`` and ``True`` behave like the integers 0 and " +"1, respectively. However, relying on this is discouraged; explicitly convert " +"using :func:`int` instead." +msgstr "" + +#: library/stdtypes.rst:843 msgid "Iterator Types" msgstr "Yineleyici Türleri" -#: library/stdtypes.rst:812 +#: library/stdtypes.rst:851 msgid "" "Python supports a concept of iteration over containers. This is implemented " "using two distinct methods; these are used to allow user-defined classes to " @@ -1260,7 +1309,7 @@ msgstr "" "yinelemeyi desteklemesine izin vermek için kullanılır. Aşağıda daha " "ayrıntılı olarak açıklanan diziler, her zaman yineleme metotlarını destekler." -#: library/stdtypes.rst:817 +#: library/stdtypes.rst:856 msgid "" "One method needs to be defined for container objects to provide :term:" "`iterable` support:" @@ -1268,7 +1317,7 @@ msgstr "" "Container nesnelerinin :term:`iterable` desteği sağlaması için bir metodun " "tanımlanması gerekir:" -#: library/stdtypes.rst:824 +#: library/stdtypes.rst:863 msgid "" "Return an :term:`iterator` object. The object is required to support the " "iterator protocol described below. If a container supports different types " @@ -1288,7 +1337,7 @@ msgstr "" "C API'sindeki Python nesneleri için tür yapısının :c:member:`~PyTypeObject." "tp_iter` yuvasına karşılık gelir." -#: library/stdtypes.rst:833 +#: library/stdtypes.rst:872 msgid "" "The iterator objects themselves are required to support the following two " "methods, which together form the :dfn:`iterator protocol`:" @@ -1296,7 +1345,7 @@ msgstr "" "Yineleyici nesnelerinin kendilerinin, birlikte :dfn:`iterator protocol` 'ü " "oluşturan aşağıdaki iki metodu desteklemesi gerekir:" -#: library/stdtypes.rst:839 +#: library/stdtypes.rst:878 msgid "" "Return the :term:`iterator` object itself. This is required to allow both " "containers and iterators to be used with the :keyword:`for` and :keyword:" @@ -1309,7 +1358,7 @@ msgstr "" "Python nesneleri için tür yapısının :c:member:`~PyTypeObject.tp_iter` " "yuvasına karşılık gelir." -#: library/stdtypes.rst:848 +#: library/stdtypes.rst:887 msgid "" "Return the next item from the :term:`iterator`. If there are no further " "items, raise the :exc:`StopIteration` exception. This method corresponds to " @@ -1321,7 +1370,7 @@ msgstr "" "nesneleri için tür yapısının :c:member:`~PyTypeObject.tp_iternext` yuvasına " "karşılık gelir." -#: library/stdtypes.rst:853 +#: library/stdtypes.rst:892 msgid "" "Python defines several iterator objects to support iteration over general " "and specific sequence types, dictionaries, and other more specialized " @@ -1333,7 +1382,7 @@ msgstr "" "Belirli türler, yineleyici protokolünün uygulanmasının ötesinde önemli " "değildir." -#: library/stdtypes.rst:858 +#: library/stdtypes.rst:897 msgid "" "Once an iterator's :meth:`~iterator.__next__` method raises :exc:" "`StopIteration`, it must continue to do so on subsequent calls. " @@ -1343,11 +1392,11 @@ msgstr "" "hatasını verdiğinde, sonraki çağrılarda bunu yapmaya devam etmelidir. Bu " "özelliğe uymayan uygulamalar bozuk sayılır." -#: library/stdtypes.rst:866 +#: library/stdtypes.rst:905 msgid "Generator Types" msgstr "Oluşturucu Tipleri" -#: library/stdtypes.rst:868 +#: library/stdtypes.rst:907 msgid "" "Python's :term:`generator`\\s provide a convenient way to implement the " "iterator protocol. If a container object's :meth:`__iter__` method is " @@ -1364,11 +1413,11 @@ msgstr "" "bilgi :ref:`the documentation for the yield expression ` " "adresinde bulunabilir." -#: library/stdtypes.rst:880 +#: library/stdtypes.rst:919 msgid "Sequence Types --- :class:`list`, :class:`tuple`, :class:`range`" msgstr "Dizi Tipleri --- :class:`list`, :class:`tuple`, :class:`range`" -#: library/stdtypes.rst:882 +#: library/stdtypes.rst:921 msgid "" "There are three basic sequence types: lists, tuples, and range objects. " "Additional sequence types tailored for processing of :ref:`binary data " @@ -1379,11 +1428,11 @@ msgstr "" "`binary data ` ve :ref:`text strings ` 'in işlenmesi " "için uyarlanmış ek dizi türleri, özel bölümlerde açıklanmıştır." -#: library/stdtypes.rst:891 +#: library/stdtypes.rst:930 msgid "Common Sequence Operations" msgstr "Yaygın Dizi İşlemleri" -#: library/stdtypes.rst:895 +#: library/stdtypes.rst:934 msgid "" "The operations in the following table are supported by most sequence types, " "both mutable and immutable. The :class:`collections.abc.Sequence` ABC is " @@ -1395,7 +1444,7 @@ msgstr "" "Sequence` ABC, bu işlemleri özel dize türlerinde doğru şekilde uygulamayı " "kolaylaştırmak için sağlanmıştır." -#: library/stdtypes.rst:900 +#: library/stdtypes.rst:939 msgid "" "This table lists the sequence operations sorted in ascending priority. In " "the table, *s* and *t* are sequences of the same type, *n*, *i*, *j* and *k* " @@ -1407,7 +1456,7 @@ msgstr "" "*x*, *s* tarafından dayatılan her tür ve değer kısıtlamasını karşılayan " "isteğe bağlı bir nesnedir." -#: library/stdtypes.rst:905 +#: library/stdtypes.rst:944 msgid "" "The ``in`` and ``not in`` operations have the same priorities as the " "comparison operations. The ``+`` (concatenation) and ``*`` (repetition) " @@ -1418,109 +1467,109 @@ msgstr "" "sahiptir. ``+`` (birleştirme) ve ``*`` (yineleme) işlemleri, karşılık gelen " "sayısal işlemlerle aynı önceliğe sahiptir. [3]_" -#: library/stdtypes.rst:926 +#: library/stdtypes.rst:965 msgid "``x in s``" msgstr "``x in s``" -#: library/stdtypes.rst:926 +#: library/stdtypes.rst:965 msgid "``True`` if an item of *s* is equal to *x*, else ``False``" msgstr "*s* 'nin bir öğesi *x* 'e eşitse ``True``, aksi takdirde ``False``" -#: library/stdtypes.rst:929 +#: library/stdtypes.rst:968 msgid "``x not in s``" msgstr "``x not in s``" -#: library/stdtypes.rst:929 +#: library/stdtypes.rst:968 msgid "``False`` if an item of *s* is equal to *x*, else ``True``" msgstr "*s* 'nin bir öğesi *x* 'e eşitse ``False``, aksi taktirde ``True``" -#: library/stdtypes.rst:932 +#: library/stdtypes.rst:971 msgid "``s + t``" msgstr "``s + t``" -#: library/stdtypes.rst:932 +#: library/stdtypes.rst:971 msgid "the concatenation of *s* and *t*" msgstr "*s* ve *t* 'nin birleşimi" -#: library/stdtypes.rst:932 +#: library/stdtypes.rst:971 msgid "(6)(7)" msgstr "(6)(7)" -#: library/stdtypes.rst:935 +#: library/stdtypes.rst:974 msgid "``s * n`` or ``n * s``" msgstr "``s * n`` veya ``n * s``" -#: library/stdtypes.rst:935 +#: library/stdtypes.rst:974 msgid "equivalent to adding *s* to itself *n* times" msgstr "*s* 'yi kendisine *n* kez eklemeye eş değer" -#: library/stdtypes.rst:935 +#: library/stdtypes.rst:974 msgid "(2)(7)" msgstr "(2)(7)" -#: library/stdtypes.rst:938 +#: library/stdtypes.rst:977 msgid "``s[i]``" msgstr "``s[i]``" -#: library/stdtypes.rst:938 +#: library/stdtypes.rst:977 msgid "*i*\\ th item of *s*, origin 0" msgstr "*s* 'nin *i*\\ 'inci öğesi, orijin 0" -#: library/stdtypes.rst:940 +#: library/stdtypes.rst:979 msgid "``s[i:j]``" msgstr "``s[i:j]``" -#: library/stdtypes.rst:940 +#: library/stdtypes.rst:979 msgid "slice of *s* from *i* to *j*" msgstr "*s* 'nin *i* 'den *j* 'ye kadar olan dilimi" -#: library/stdtypes.rst:940 +#: library/stdtypes.rst:979 msgid "(3)(4)" msgstr "(3)(4)" -#: library/stdtypes.rst:942 +#: library/stdtypes.rst:981 msgid "``s[i:j:k]``" msgstr "``s[i:j:k]``" -#: library/stdtypes.rst:942 +#: library/stdtypes.rst:981 msgid "slice of *s* from *i* to *j* with step *k*" msgstr "" "*s* 'nin *i* 'den *j* 'ye kadar olan dilimi, *k* 'lik adımlarla (örneğin *k* " "= 2 ise, ikişer ikişer)" -#: library/stdtypes.rst:942 +#: library/stdtypes.rst:981 msgid "(3)(5)" msgstr "(3)(5)" -#: library/stdtypes.rst:945 +#: library/stdtypes.rst:984 msgid "``len(s)``" msgstr "``len(s)``" -#: library/stdtypes.rst:945 +#: library/stdtypes.rst:984 msgid "length of *s*" msgstr "*s* 'nin uzunluğu" -#: library/stdtypes.rst:947 +#: library/stdtypes.rst:986 msgid "``min(s)``" msgstr "``min(s)``" -#: library/stdtypes.rst:947 +#: library/stdtypes.rst:986 msgid "smallest item of *s*" msgstr "*s* 'nin en küçük öğesi" -#: library/stdtypes.rst:949 +#: library/stdtypes.rst:988 msgid "``max(s)``" msgstr "``max(s)``" -#: library/stdtypes.rst:949 +#: library/stdtypes.rst:988 msgid "largest item of *s*" msgstr "*s* 'nin en büyük öğesi" -#: library/stdtypes.rst:951 +#: library/stdtypes.rst:990 msgid "``s.index(x[, i[, j]])``" msgstr "``s.index(x[, i[, j]])``" -#: library/stdtypes.rst:951 +#: library/stdtypes.rst:990 msgid "" "index of the first occurrence of *x* in *s* (at or after index *i* and " "before index *j*)" @@ -1528,19 +1577,19 @@ msgstr "" "*x* 'in *s* içindeki ilk görüldüğü dizini (*i* dizininde veya sonrasında ve " "*j* dizininden önce)" -#: library/stdtypes.rst:3600 +#: library/stdtypes.rst:3644 msgid "\\(8)" msgstr "\\(8)" -#: library/stdtypes.rst:955 +#: library/stdtypes.rst:994 msgid "``s.count(x)``" msgstr "``s.count(x)``" -#: library/stdtypes.rst:955 +#: library/stdtypes.rst:994 msgid "total number of occurrences of *x* in *s*" msgstr "*s* 'de *x*'in toplam görülme sayısı" -#: library/stdtypes.rst:959 +#: library/stdtypes.rst:998 msgid "" "Sequences of the same type also support comparisons. In particular, tuples " "and lists are compared lexicographically by comparing corresponding " @@ -1555,7 +1604,7 @@ msgstr "" "gerektiği anlamına gelir. (Tüm ayrıntılar için dil referansındaki :ref:" "`comparisons` bölümüne bakın.)" -#: library/stdtypes.rst:969 +#: library/stdtypes.rst:1008 msgid "" "Forward and reversed iterators over mutable sequences access values using an " "index. That index will continue to march forward (or backward) even if the " @@ -1564,7 +1613,7 @@ msgid "" "drops below zero)." msgstr "" -#: library/stdtypes.rst:978 +#: library/stdtypes.rst:1017 msgid "" "While the ``in`` and ``not in`` operations are used only for simple " "containment testing in the general case, some specialised sequences (such " @@ -1575,7 +1624,7 @@ msgstr "" "için kullanılırken, bazı özel diziler (örneğin: :class:`str`, :class:`bytes` " "ve :class:`bytearray`) bunları sonraki dizi testi için de kullanır:" -#: library/stdtypes.rst:987 +#: library/stdtypes.rst:1026 msgid "" "Values of *n* less than ``0`` are treated as ``0`` (which yields an empty " "sequence of the same type as *s*). Note that items in the sequence *s* are " @@ -1587,7 +1636,7 @@ msgstr "" "birden çok kez referans gösterilir (kullanılır). Bu, çoğunlukla yeni Python " "programcılarına musallat olur; şunu düşünün::" -#: library/stdtypes.rst:999 +#: library/stdtypes.rst:1038 msgid "" "What has happened is that ``[[]]`` is a one-element list containing an empty " "list, so all three elements of ``[[]] * 3`` are references to this single " @@ -1599,7 +1648,7 @@ msgstr "" "``lists`` öğelerinin herhangi birinin değiştirilmesi bu listeyi değiştirir. " "Bu şekilde farklı listelerin bir listesini oluşturabilirsiniz::" -#: library/stdtypes.rst:1011 +#: library/stdtypes.rst:1050 msgid "" "Further explanation is available in the FAQ entry :ref:`faq-multidimensional-" "list`." @@ -1607,7 +1656,7 @@ msgstr "" "Daha fazla açıklama SSS gönderisinde mevcuttur: :ref:`faq-multidimensional-" "list`." -#: library/stdtypes.rst:1015 +#: library/stdtypes.rst:1054 msgid "" "If *i* or *j* is negative, the index is relative to the end of sequence *s*: " "``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is " @@ -1617,7 +1666,7 @@ msgstr "" "veya ``len(s) + j`` değiştirilir. Ancak ``-0`` 'ın hala ``0`` olduğuna " "dikkat edin." -#: library/stdtypes.rst:1020 +#: library/stdtypes.rst:1059 msgid "" "The slice of *s* from *i* to *j* is defined as the sequence of items with " "index *k* such that ``i <= k < j``. If *i* or *j* is greater than " @@ -1631,7 +1680,7 @@ msgstr "" "kullanın. *j* atlanırsa veya ``None`` ise, ``len(s)`` kullanın. *i*, *j* " "'den büyük veya ona eşitse, dilim boştur." -#: library/stdtypes.rst:1027 +#: library/stdtypes.rst:1066 msgid "" "The slice of *s* from *i* to *j* with step *k* is defined as the sequence of " "items with index ``x = i + n*k`` such that ``0 <= n < (j-i)/k``. In other " @@ -1644,7 +1693,7 @@ msgid "" "``None``, it is treated like ``1``." msgstr "" -#: library/stdtypes.rst:1038 +#: library/stdtypes.rst:1077 msgid "" "Concatenating immutable sequences always results in a new object. This " "means that building up a sequence by repeated concatenation will have a " @@ -1657,7 +1706,7 @@ msgstr "" "olacağı anlamına gelir. Doğrusal bir çalışma zamanı maliyeti elde etmek " "için aşağıdaki alternatiflerden birine geçmelisiniz:" -#: library/stdtypes.rst:1043 +#: library/stdtypes.rst:1082 msgid "" "if concatenating :class:`str` objects, you can build a list and use :meth:" "`str.join` at the end or else write to an :class:`io.StringIO` instance and " @@ -1667,7 +1716,7 @@ msgstr "" "sonunda :meth:`str.join` kullanabilir veya bir :class:`io.StringIO` örneğine " "yazabilir ve tamamlandığında değerini alabilirsiniz" -#: library/stdtypes.rst:1047 +#: library/stdtypes.rst:1086 msgid "" "if concatenating :class:`bytes` objects, you can similarly use :meth:`bytes." "join` or :class:`io.BytesIO`, or you can do in-place concatenation with a :" @@ -1679,17 +1728,17 @@ msgstr "" "nesnesiyle yerinde birleştirme yapabilirsiniz. :class:`bytearray` nesneleri " "değiştirilebilirdir ve verimli bir aşırı tahsis mekanizmasına sahiptir" -#: library/stdtypes.rst:1052 +#: library/stdtypes.rst:1091 msgid "if concatenating :class:`tuple` objects, extend a :class:`list` instead" msgstr "" ":class:`tuple` nesneleri birleştiriyorsanız, bunun yerine bir :class:`list` " "öğesini genişletin" -#: library/stdtypes.rst:1054 +#: library/stdtypes.rst:1093 msgid "for other types, investigate the relevant class documentation" msgstr "diğer türler için ilgili sınıf dokümantasyonunu inceleyin" -#: library/stdtypes.rst:1058 +#: library/stdtypes.rst:1097 msgid "" "Some sequence types (such as :class:`range`) only support item sequences " "that follow specific patterns, and hence don't support sequence " @@ -1699,7 +1748,7 @@ msgstr "" "eden öğe dizilerini destekler ve bu nedenle dizi birleştirmeyi veya " "tekrarlamayı desteklemez." -#: library/stdtypes.rst:1063 +#: library/stdtypes.rst:1102 msgid "" "``index`` raises :exc:`ValueError` when *x* is not found in *s*. Not all " "implementations support passing the additional arguments *i* and *j*. These " @@ -1715,11 +1764,11 @@ msgstr "" "değerdir, yalnızca herhangi bir veri kopyalamadan ve döndürülen index " "dilimin başlangıcından ziyade dizinin başlangıcına göredir." -#: library/stdtypes.rst:1074 +#: library/stdtypes.rst:1113 msgid "Immutable Sequence Types" msgstr "Değiştirilemez Dizi Tipleri" -#: library/stdtypes.rst:1081 +#: library/stdtypes.rst:1120 msgid "" "The only operation that immutable sequence types generally implement that is " "not also implemented by mutable sequence types is support for the :func:" @@ -1729,7 +1778,7 @@ msgstr "" "değişken dizi türleri tarafından uygulanmayan tek işlem, gömülü :func:`hash` " "desteğidir." -#: library/stdtypes.rst:1085 +#: library/stdtypes.rst:1124 msgid "" "This support allows immutable sequences, such as :class:`tuple` instances, " "to be used as :class:`dict` keys and stored in :class:`set` and :class:" @@ -1739,7 +1788,7 @@ msgstr "" "`dict` anahtarları olarak kullanılmasına, :class:`set` ve :class:`frozenset` " "örneklerinde saklanmasına izin verir." -#: library/stdtypes.rst:1089 +#: library/stdtypes.rst:1128 #, fuzzy msgid "" "Attempting to hash an immutable sequence that contains unhashable values " @@ -1748,11 +1797,11 @@ msgstr "" "Hash edilemez değerler içeren değiştirilemez bir diziyi hashlemeye çalışmak :" "exc:`TypeError` ile sonuçlanır." -#: library/stdtypes.rst:1096 +#: library/stdtypes.rst:1135 msgid "Mutable Sequence Types" msgstr "Değiştirilebilir Dizi Tipleri" -#: library/stdtypes.rst:1103 +#: library/stdtypes.rst:1142 msgid "" "The operations in the following table are defined on mutable sequence types. " "The :class:`collections.abc.MutableSequence` ABC is provided to make it " @@ -1763,7 +1812,7 @@ msgstr "" "özel dizi türlerinde doğru şekilde uygulamayı kolaylaştırmak için " "sağlanmıştır." -#: library/stdtypes.rst:1107 +#: library/stdtypes.rst:1146 msgid "" "In the table *s* is an instance of a mutable sequence type, *t* is any " "iterable object and *x* is an arbitrary object that meets any type and value " @@ -1776,79 +1825,79 @@ msgstr "" "(örneğin, :class:`bytearray` yalnızca ``0 <= x <= 255`` değer kısıtlamasını " "karşılayan tam sayıları kabul eder)." -#: library/stdtypes.rst:1131 +#: library/stdtypes.rst:1170 msgid "``s[i] = x``" msgstr "``s[i] = x``" -#: library/stdtypes.rst:1131 +#: library/stdtypes.rst:1170 msgid "item *i* of *s* is replaced by *x*" msgstr "*s* 'nin *i* öğesi *x* ile değiştirilir" -#: library/stdtypes.rst:1134 +#: library/stdtypes.rst:1173 msgid "``s[i:j] = t``" msgstr "``s[i:j] = t``" -#: library/stdtypes.rst:1134 +#: library/stdtypes.rst:1173 msgid "" "slice of *s* from *i* to *j* is replaced by the contents of the iterable *t*" msgstr "" "*s* 'nin *i* ile *j* arasındaki dilimi, yinelenebilir *t* içeriğiyle " "değiştirilir" -#: library/stdtypes.rst:1138 +#: library/stdtypes.rst:1177 msgid "``del s[i:j]``" msgstr "``del s[i:j]``" -#: library/stdtypes.rst:1138 +#: library/stdtypes.rst:1177 msgid "same as ``s[i:j] = []``" msgstr "``s[i:j] = []`` ile eş değerdir" -#: library/stdtypes.rst:1140 +#: library/stdtypes.rst:1179 msgid "``s[i:j:k] = t``" msgstr "``s[i:j:k] = t``" -#: library/stdtypes.rst:1140 +#: library/stdtypes.rst:1179 msgid "the elements of ``s[i:j:k]`` are replaced by those of *t*" msgstr "``s[i:j:k]`` 'nin öğelerinin yerini *t* öğelerininkiler alır" -#: library/stdtypes.rst:1143 +#: library/stdtypes.rst:1182 msgid "``del s[i:j:k]``" msgstr "``del s[i:j:k]``" -#: library/stdtypes.rst:1143 +#: library/stdtypes.rst:1182 msgid "removes the elements of ``s[i:j:k]`` from the list" msgstr "``s[i:j:k]`` 'nin öğelerini listeden kaldırır" -#: library/stdtypes.rst:1146 +#: library/stdtypes.rst:1185 msgid "``s.append(x)``" msgstr "``s.append(x)``" -#: library/stdtypes.rst:1146 +#: library/stdtypes.rst:1185 msgid "" "appends *x* to the end of the sequence (same as ``s[len(s):len(s)] = [x]``)" msgstr "dizinin sonuna *x* ekler (``s[len(s):len(s)] = [x]`` ile eş değerdir)" -#: library/stdtypes.rst:1150 +#: library/stdtypes.rst:1189 msgid "``s.clear()``" msgstr "``s.clear()``" -#: library/stdtypes.rst:1150 +#: library/stdtypes.rst:1189 msgid "removes all items from *s* (same as ``del s[:]``)" msgstr "*s* içindeki tüm öğeleri kaldırır (``del s[:]`` ile eş değerdir)" -#: library/stdtypes.rst:1153 +#: library/stdtypes.rst:1192 msgid "``s.copy()``" msgstr "``s.copy()``" -#: library/stdtypes.rst:1153 +#: library/stdtypes.rst:1192 msgid "creates a shallow copy of *s* (same as ``s[:]``)" msgstr "*s*'nin sığ bir kopyasını oluşturur (``s[:]`` ile eş değerdir)" -#: library/stdtypes.rst:1156 +#: library/stdtypes.rst:1195 msgid "``s.extend(t)`` or ``s += t``" msgstr "``s.extend(t)`` veya ``s += t``" -#: library/stdtypes.rst:1156 +#: library/stdtypes.rst:1195 msgid "" "extends *s* with the contents of *t* (for the most part the same as " "``s[len(s):len(s)] = t``)" @@ -1856,55 +1905,55 @@ msgstr "" "*s* 'yi *t* 'nin içeriğiyle genişletir (çoğunlukla ``s[len(s):len(s)] = t`` " "ile eş değerdir)" -#: library/stdtypes.rst:1161 +#: library/stdtypes.rst:1200 msgid "``s *= n``" msgstr "``s *= n``" -#: library/stdtypes.rst:1161 +#: library/stdtypes.rst:1200 msgid "updates *s* with its contents repeated *n* times" msgstr "*n* kez tekrarlanan içeriğiyle *s* 'yi günceller" -#: library/stdtypes.rst:1164 +#: library/stdtypes.rst:1203 msgid "``s.insert(i, x)``" msgstr "``s.insert(i, x)``" -#: library/stdtypes.rst:1164 +#: library/stdtypes.rst:1203 msgid "" "inserts *x* into *s* at the index given by *i* (same as ``s[i:i] = [x]``)" msgstr "" "*i* tarafından verilen dizinde *s* 'nin içine *x* ekler (``s[i:i] = [x]`` " "ile eş değerdir)" -#: library/stdtypes.rst:1168 +#: library/stdtypes.rst:1207 msgid "``s.pop()`` or ``s.pop(i)``" msgstr "``s.pop()`` veya ``s.pop(i)``" -#: library/stdtypes.rst:1168 +#: library/stdtypes.rst:1207 msgid "retrieves the item at *i* and also removes it from *s*" msgstr "*i* noktasındaki öğeyi alır ve *s* öğesinden kaldırır" -#: library/stdtypes.rst:1171 +#: library/stdtypes.rst:1210 msgid "``s.remove(x)``" msgstr "``s.remove(x)``" -#: library/stdtypes.rst:1171 +#: library/stdtypes.rst:1210 #, fuzzy msgid "remove the first item from *s* where ``s[i]`` is equal to *x*" msgstr "``s[i]`` 'nin *x* 'e eşit olduğu *s* 'den ilk öğeyi kaldırır" -#: library/stdtypes.rst:1174 +#: library/stdtypes.rst:1213 msgid "``s.reverse()``" msgstr "``s.reverse()``" -#: library/stdtypes.rst:1174 +#: library/stdtypes.rst:1213 msgid "reverses the items of *s* in place" msgstr "*s* 'nin öğelerini yerinde tersine çevirir" -#: library/stdtypes.rst:1182 +#: library/stdtypes.rst:1221 msgid "*t* must have the same length as the slice it is replacing." msgstr "*t*, değiştirdiği dilimle aynı uzunlukta olmalıdır." -#: library/stdtypes.rst:1185 +#: library/stdtypes.rst:1224 msgid "" "The optional argument *i* defaults to ``-1``, so that by default the last " "item is removed and returned." @@ -1912,13 +1961,13 @@ msgstr "" "İsteğe bağlı *i* argümanı varsayılan olarak ``-1`` şeklindedir, böylece " "varsayılan olarak son öğe kaldırılır ve döndürülür." -#: library/stdtypes.rst:1189 +#: library/stdtypes.rst:1228 msgid ":meth:`remove` raises :exc:`ValueError` when *x* is not found in *s*." msgstr "" "*s* 'nin içinde *x* bulunmadığında :meth:`remove` işlemi :exc:`ValueError` " "hatasını verir." -#: library/stdtypes.rst:1192 +#: library/stdtypes.rst:1231 msgid "" "The :meth:`reverse` method modifies the sequence in place for economy of " "space when reversing a large sequence. To remind users that it operates by " @@ -1928,7 +1977,7 @@ msgstr "" "sağlamak için diziyi yerinde değiştirir. Kullanıcılara yan etki ile " "çalıştığını hatırlatmak için ters diziyi döndürmez." -#: library/stdtypes.rst:1197 +#: library/stdtypes.rst:1236 #, fuzzy msgid "" ":meth:`clear` and :meth:`!copy` are included for consistency with the " @@ -1943,11 +1992,11 @@ msgstr "" "`collections.abc.MutableSequence` ABC'nin bir parçası değildir, ancak çoğu " "somut değiştirilebilir dizi sınıfı bunu sağlar." -#: library/stdtypes.rst:1203 +#: library/stdtypes.rst:1242 msgid ":meth:`clear` and :meth:`!copy` methods." msgstr ":meth:`clear` ve :meth:`!copy` metotları." -#: library/stdtypes.rst:1207 +#: library/stdtypes.rst:1246 msgid "" "The value *n* is an integer, or an object implementing :meth:`~object." "__index__`. Zero and negative values of *n* clear the sequence. Items in " @@ -1959,11 +2008,11 @@ msgstr "" "öğeler kopyalanmaz; :ref:`typesseq-common` altında ``s * n`` için " "açıklandığı gibi, bunlara birden çok kez başvurulur." -#: library/stdtypes.rst:1216 +#: library/stdtypes.rst:1255 msgid "Lists" msgstr "Listeler" -#: library/stdtypes.rst:1220 +#: library/stdtypes.rst:1259 msgid "" "Lists are mutable sequences, typically used to store collections of " "homogeneous items (where the precise degree of similarity will vary by " @@ -1973,29 +2022,29 @@ msgstr "" "değişeceği) homojen öğelerin koleksiyonlarını depolamak için kullanılan " "değiştirilebilir dizilerdir." -#: library/stdtypes.rst:1226 +#: library/stdtypes.rst:1265 msgid "Lists may be constructed in several ways:" msgstr "Listeler birkaç şekilde oluşturulabilir:" -#: library/stdtypes.rst:1228 +#: library/stdtypes.rst:1267 msgid "Using a pair of square brackets to denote the empty list: ``[]``" msgstr "Boş listeyi belirtmek için bir çift köşeli parantez kullanma: ``[]``" -#: library/stdtypes.rst:1229 +#: library/stdtypes.rst:1268 msgid "" "Using square brackets, separating items with commas: ``[a]``, ``[a, b, c]``" msgstr "" "Köşeli parantez kullanarak, öğeleri virgülle ayırarak: ``[a]``, ``[a, b, c]``" -#: library/stdtypes.rst:1230 +#: library/stdtypes.rst:1269 msgid "Using a list comprehension: ``[x for x in iterable]``" msgstr "Liste kavrayışını kullanma: ``[x for x in iterable]``" -#: library/stdtypes.rst:1231 +#: library/stdtypes.rst:1270 msgid "Using the type constructor: ``list()`` or ``list(iterable)``" msgstr "Tür oluşturucuyu kullanma: ``list()`` veya ``list(iterable)``" -#: library/stdtypes.rst:1233 +#: library/stdtypes.rst:1272 msgid "" "The constructor builds a list whose items are the same and in the same order " "as *iterable*'s items. *iterable* may be either a sequence, a container " @@ -2013,7 +2062,7 @@ msgstr "" "3) )``, ``[ 1, 2, 3]``. Argüman verilmezse, yapıcı ``[]`` yeni bir boş liste " "oluşturur." -#: library/stdtypes.rst:1242 +#: library/stdtypes.rst:1281 msgid "" "Many other operations also produce lists, including the :func:`sorted` built-" "in." @@ -2021,7 +2070,7 @@ msgstr "" "Gömülü :func:`sorted` dahil olmak üzere diğer birçok işlem de listeler " "üretir." -#: library/stdtypes.rst:1245 +#: library/stdtypes.rst:1284 msgid "" "Lists implement all of the :ref:`common ` and :ref:`mutable " "` sequence operations. Lists also provide the following " @@ -2031,7 +2080,7 @@ msgstr "" "mutable>` dizi işlemlerini uygular. Listeler ayrıca aşağıdaki ek metodu da " "sağlar:" -#: library/stdtypes.rst:1251 +#: library/stdtypes.rst:1290 msgid "" "This method sorts the list in place, using only ``<`` comparisons between " "items. Exceptions are not suppressed - if any comparison operations fail, " @@ -2043,7 +2092,7 @@ msgstr "" "işlemi başarısız olursa, tüm sıralama işlemi başarısız olur (ve liste büyük " "olasılıkla kısmen değiştirilmiş durumda kalır)." -#: library/stdtypes.rst:1256 +#: library/stdtypes.rst:1295 msgid "" ":meth:`sort` accepts two arguments that can only be passed by keyword (:ref:" "`keyword-only arguments `):" @@ -2051,7 +2100,7 @@ msgstr "" ":meth:`sort` yalnızca anahtar kelime tarafından iletilebilen iki argümanı " "kabul eder (:ref:`keyword-only arguments `):" -#: library/stdtypes.rst:1259 +#: library/stdtypes.rst:1298 msgid "" "*key* specifies a function of one argument that is used to extract a " "comparison key from each list element (for example, ``key=str.lower``). The " @@ -2066,7 +2115,7 @@ msgstr "" "``None``, liste öğelerinin ayrı bir anahtar değeri hesaplamadan doğrudan " "sıralandığı anlamına gelir." -#: library/stdtypes.rst:1266 +#: library/stdtypes.rst:1305 msgid "" "The :func:`functools.cmp_to_key` utility is available to convert a 2.x style " "*cmp* function to a *key* function." @@ -2074,7 +2123,7 @@ msgstr "" ":func:`functools.cmp_to_key` yardımcı programı, 2.x stili *cmp* işlevini bir " "*key* işlevine dönüştürmek için kullanılabilir." -#: library/stdtypes.rst:1269 +#: library/stdtypes.rst:1308 msgid "" "*reverse* is a boolean value. If set to ``True``, then the list elements " "are sorted as if each comparison were reversed." @@ -2082,7 +2131,7 @@ msgstr "" "*reverse* bir boolean değeridir. ``True`` olarak ayarlanırsa, liste öğeleri, " "her karşılaştırma tersine çevrilmiş gibi sıralanır." -#: library/stdtypes.rst:1272 +#: library/stdtypes.rst:1311 msgid "" "This method modifies the sequence in place for economy of space when sorting " "a large sequence. To remind users that it operates by side effect, it does " @@ -2094,7 +2143,7 @@ msgstr "" "sıralanan diziyi döndürmez (açıkça yeni bir sıralanmış liste örneği istemek " "için :func:`sorted` kullanın)." -#: library/stdtypes.rst:1277 +#: library/stdtypes.rst:1316 msgid "" "The :meth:`sort` method is guaranteed to be stable. A sort is stable if it " "guarantees not to change the relative order of elements that compare equal " @@ -2106,14 +2155,14 @@ msgstr "" "ediyorsa kararlıdır --- bu, birden çok geçişte sıralama için yararlıdır " "(örneğin, departmana göre sıralama, ardından maaş derecesine göre)." -#: library/stdtypes.rst:1282 +#: library/stdtypes.rst:1321 msgid "" "For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`." msgstr "" "Sıralama örnekleri ve kısa bir sıralama eğitimi için bkz. :ref:" "`sortinghowto`." -#: library/stdtypes.rst:1286 +#: library/stdtypes.rst:1325 msgid "" "While a list is being sorted, the effect of attempting to mutate, or even " "inspect, the list is undefined. The C implementation of Python makes the " @@ -2125,11 +2174,11 @@ msgstr "" "görünmesini sağlar ve bir sıralama sırasında listenin mutasyona uğradığını " "algılayabilirse :exc:`ValueError` hatasını verir." -#: library/stdtypes.rst:1295 +#: library/stdtypes.rst:1334 msgid "Tuples" msgstr "Demetler" -#: library/stdtypes.rst:1299 +#: library/stdtypes.rst:1338 msgid "" "Tuples are immutable sequences, typically used to store collections of " "heterogeneous data (such as the 2-tuples produced by the :func:`enumerate` " @@ -2143,27 +2192,27 @@ msgstr "" "dizisinin gerekli olduğu durumlarda da kullanılır (bir :class:`set` veya :" "class:`dict` örneğinde depolamaya izin vermek gibi)." -#: library/stdtypes.rst:1307 +#: library/stdtypes.rst:1346 msgid "Tuples may be constructed in a number of ways:" msgstr "Tuple'lar çeşitli şekillerde oluşturulabilir:" -#: library/stdtypes.rst:1309 +#: library/stdtypes.rst:1348 msgid "Using a pair of parentheses to denote the empty tuple: ``()``" msgstr "Boş demeti belirtmek için bir çift parantez kullanma: ``()``" -#: library/stdtypes.rst:1310 +#: library/stdtypes.rst:1349 msgid "Using a trailing comma for a singleton tuple: ``a,`` or ``(a,)``" msgstr "Tekli bir tuple için sonunda virgül kullanma: ``a,`` veya ``(a,)``" -#: library/stdtypes.rst:1311 +#: library/stdtypes.rst:1350 msgid "Separating items with commas: ``a, b, c`` or ``(a, b, c)``" msgstr "Öğeleri virgülle ayırma: ``a, b, c`` veya ``(a, b, c)``" -#: library/stdtypes.rst:1312 +#: library/stdtypes.rst:1351 msgid "Using the :func:`tuple` built-in: ``tuple()`` or ``tuple(iterable)``" msgstr "Gömülü :func:`tuple` kullanmak: ``tuple()`` veya ``tuple(iterable)``" -#: library/stdtypes.rst:1314 +#: library/stdtypes.rst:1353 msgid "" "The constructor builds a tuple whose items are the same and in the same " "order as *iterable*'s items. *iterable* may be either a sequence, a " @@ -2180,7 +2229,7 @@ msgstr "" "``tuple( [1, 2, 3] )``, ``(1, 2, 3)`` 'yi döndürür. Herhangi bir argüman " "verilmezse, yapıcı yeni bir boş demet oluşturur ``()``." -#: library/stdtypes.rst:1322 +#: library/stdtypes.rst:1361 msgid "" "Note that it is actually the comma which makes a tuple, not the parentheses. " "The parentheses are optional, except in the empty tuple case, or when they " @@ -2194,14 +2243,14 @@ msgstr "" "fonksiyon çağrısı iken ``f((a, b, c))``, tek argüman olarak 3'lü bir tuple " "içeren bir fonksiyon çağrısıdır." -#: library/stdtypes.rst:1328 +#: library/stdtypes.rst:1367 msgid "" "Tuples implement all of the :ref:`common ` sequence " "operations." msgstr "" "Tuple'lar, tüm :ref:`common ` dizi işlemlerini uygular." -#: library/stdtypes.rst:1331 +#: library/stdtypes.rst:1370 msgid "" "For heterogeneous collections of data where access by name is clearer than " "access by index, :func:`collections.namedtuple` may be a more appropriate " @@ -2211,11 +2260,11 @@ msgstr "" "koleksiyonları için, :func:`collections.namedtuple` basit bir tuple " "nesnesinden daha uygun bir seçim olabilir." -#: library/stdtypes.rst:1339 +#: library/stdtypes.rst:1378 msgid "Ranges" msgstr "Aralıklar" -#: library/stdtypes.rst:1343 +#: library/stdtypes.rst:1382 msgid "" "The :class:`range` type represents an immutable sequence of numbers and is " "commonly used for looping a specific number of times in :keyword:`for` loops." @@ -2224,7 +2273,7 @@ msgstr "" "genellikle :keyword:`for` döngülerinde belirli sayıda döngü yapmak için " "kullanılır." -#: library/stdtypes.rst:1350 +#: library/stdtypes.rst:1389 msgid "" "The arguments to the range constructor must be integers (either built-in :" "class:`int` or any object that implements the :meth:`~object.__index__` " @@ -2238,7 +2287,7 @@ msgstr "" "atlanırsa, varsayılan olarak ``0`` olur. *step* sıfırsa, :exc:`ValueError` " "hatası ortaya çıkar." -#: library/stdtypes.rst:1356 +#: library/stdtypes.rst:1395 msgid "" "For a positive *step*, the contents of a range ``r`` are determined by the " "formula ``r[i] = start + step*i`` where ``i >= 0`` and ``r[i] < stop``." @@ -2246,7 +2295,7 @@ msgstr "" "Pozitif *step* için, ``r`` aralığının içeriği, ``i >= 0`` ve ``r[i] < stop`` " "olmak üzere ``r[i] = start + step*i`` formülüyle belirlenir." -#: library/stdtypes.rst:1360 +#: library/stdtypes.rst:1399 msgid "" "For a negative *step*, the contents of the range are still determined by the " "formula ``r[i] = start + step*i``, but the constraints are ``i >= 0`` and " @@ -2255,7 +2304,7 @@ msgstr "" "Negatif bir *step* için, aralığın içeriği hala ``r[i] = start + step*i`` " "formülüyle belirlenir, ancak kısıtlamalar ``i >= 0`` ve ``r[i] > stop`` 'dir." -#: library/stdtypes.rst:1364 +#: library/stdtypes.rst:1403 msgid "" "A range object will be empty if ``r[0]`` does not meet the value constraint. " "Ranges do support negative indices, but these are interpreted as indexing " @@ -2266,7 +2315,7 @@ msgstr "" "indeksler tarafından belirlenen dizinin sonundan indeksleme olarak " "yorumlanır." -#: library/stdtypes.rst:1369 +#: library/stdtypes.rst:1408 msgid "" "Ranges containing absolute values larger than :data:`sys.maxsize` are " "permitted but some features (such as :func:`len`) may raise :exc:" @@ -2276,11 +2325,11 @@ msgstr "" "verilir, ancak bazı özellikler (:func:`len` gibi), :exc:`OverflowError` " "hatasınının ortaya çıkmasını sağlayabilir." -#: library/stdtypes.rst:1373 +#: library/stdtypes.rst:1412 msgid "Range examples::" msgstr "Aralık örnekleri::" -#: library/stdtypes.rst:1390 +#: library/stdtypes.rst:1429 msgid "" "Ranges implement all of the :ref:`common ` sequence " "operations except concatenation and repetition (due to the fact that range " @@ -2292,23 +2341,23 @@ msgstr "" "izleyen dizileri temsil edebilmesi ve tekrarlama ve birleştirmenin " "genellikle bu kalıbı ihlal etmesi nedeniyle)." -#: library/stdtypes.rst:1397 +#: library/stdtypes.rst:1436 msgid "" "The value of the *start* parameter (or ``0`` if the parameter was not " "supplied)" msgstr "*start* parametresinin değeri (veya parametre sağlanmadıysa ``0``)" -#: library/stdtypes.rst:1402 +#: library/stdtypes.rst:1441 msgid "The value of the *stop* parameter" msgstr "*stop* parametresinin değeri" -#: library/stdtypes.rst:1406 +#: library/stdtypes.rst:1445 msgid "" "The value of the *step* parameter (or ``1`` if the parameter was not " "supplied)" msgstr "*step* parametresinin değeri (veya parametre sağlanmadıysa ``1``)" -#: library/stdtypes.rst:1409 +#: library/stdtypes.rst:1448 msgid "" "The advantage of the :class:`range` type over a regular :class:`list` or :" "class:`tuple` is that a :class:`range` object will always take the same " @@ -2322,7 +2371,7 @@ msgstr "" "(yalnızca ``start``, ``stop`` ve ``step`` değerlerini sakladığı için, tek " "tek öğeleri ve alt aralıkları gerektiği gibi hesaplar)." -#: library/stdtypes.rst:1415 +#: library/stdtypes.rst:1454 msgid "" "Range objects implement the :class:`collections.abc.Sequence` ABC, and " "provide features such as containment tests, element index lookup, slicing " @@ -2332,7 +2381,7 @@ msgstr "" "ve sınırlama testleri, eleman indeksi araması, dilimleme ve negatif " "indeksler için destek gibi özellikler sağlar (bkz. :ref:`typesseq`):" -#: library/stdtypes.rst:1435 +#: library/stdtypes.rst:1474 msgid "" "Testing range objects for equality with ``==`` and ``!=`` compares them as " "sequences. That is, two range objects are considered equal if they " @@ -2348,7 +2397,7 @@ msgstr "" "`~range.step` niteliklerine sahip olabileceğini unutmayın, örneğin " "``range(0) == range(2, 1, 3)`` veya ``range(0, 3, 2) == range(0, 4, 2)``.)" -#: library/stdtypes.rst:1442 +#: library/stdtypes.rst:1481 msgid "" "Implement the Sequence ABC. Support slicing and negative indices. Test :" "class:`int` objects for membership in constant time instead of iterating " @@ -2358,7 +2407,7 @@ msgstr "" "öğeleri yinelemek yerine sabit zamanda üyelik için :class:`int` nesnelerini " "test eder." -#: library/stdtypes.rst:1448 +#: library/stdtypes.rst:1487 msgid "" "Define '==' and '!=' to compare range objects based on the sequence of " "values they define (instead of comparing based on object identity)." @@ -2366,14 +2415,14 @@ msgstr "" "Aralık nesnelerini tanımladıkları değer sırasına göre karşılaştırmak için " "'==' ve '!=' tanımlayın (nesne kimliğine göre karşılaştırmak yerine)." -#: library/stdtypes.rst:1453 +#: library/stdtypes.rst:1492 msgid "" "The :attr:`~range.start`, :attr:`~range.stop` and :attr:`~range.step` " "attributes." msgstr "" ":attr:`~range.start`, :attr:`~range.stop` ve :attr:`~range.step` özellikleri." -#: library/stdtypes.rst:1459 +#: library/stdtypes.rst:1498 #, fuzzy msgid "" "The `linspace recipe `_ shows " @@ -2384,11 +2433,11 @@ msgstr "" "nokta uygulamaları için uygun olan tembel bir aralığın nasıl uygulanacağını " "gösterir." -#: library/stdtypes.rst:1471 +#: library/stdtypes.rst:1510 msgid "Text Sequence Type --- :class:`str`" msgstr "Metin Sırası Türü --- :class:`str`" -#: library/stdtypes.rst:1473 +#: library/stdtypes.rst:1512 msgid "" "Textual data in Python is handled with :class:`str` objects, or :dfn:" "`strings`. Strings are immutable :ref:`sequences ` of Unicode code " @@ -2398,21 +2447,21 @@ msgstr "" "işlenir. Dizeler, Unicode kod noktalarının değişmez :ref:`dizgeleridir " "`. Dize değişmezleri çeşitli şekillerde yazılır:" -#: library/stdtypes.rst:1478 +#: library/stdtypes.rst:1517 msgid "Single quotes: ``'allows embedded \"double\" quotes'``" msgstr "Tek tırnak: ``'katıştırılmış \"çift\" tırnaklara izin verir'``" -#: library/stdtypes.rst:1479 +#: library/stdtypes.rst:1518 msgid "Double quotes: ``\"allows embedded 'single' quotes\"``" msgstr "Çift tırnak: ``\"katıştırılmış 'tek' tırnaklara izin verir\"``" -#: library/stdtypes.rst:1480 +#: library/stdtypes.rst:1519 msgid "" "Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double " "quotes\"\"\"``" msgstr "Üçlü tırnak: ``'''Üç tek tırnak'''``, ``\"\"\"Üç çift tırnak\"\"\"``" -#: library/stdtypes.rst:1482 +#: library/stdtypes.rst:1521 msgid "" "Triple quoted strings may span multiple lines - all associated whitespace " "will be included in the string literal." @@ -2420,7 +2469,7 @@ msgstr "" "Üçlü tırnak içine alınmış dizeler birden çok satıra yayılabilir - ilişkili " "tüm boşluklar dize değişmezine dahil edilecektir." -#: library/stdtypes.rst:1485 +#: library/stdtypes.rst:1524 msgid "" "String literals that are part of a single expression and have only " "whitespace between them will be implicitly converted to a single string " @@ -2430,7 +2479,7 @@ msgstr "" "değişmezleri, örtük olarak tek bir dize değişmezine dönüştürülür. Yani, " "``(\"spam\" \"yumurtalar\") == \"spam yumurtalar\"``." -#: library/stdtypes.rst:1489 +#: library/stdtypes.rst:1528 msgid "" "See :ref:`strings` for more about the various forms of string literal, " "including supported escape sequences, and the ``r`` (\"raw\") prefix that " @@ -2441,7 +2490,7 @@ msgstr "" "değişmezinin çeşitli biçimleri hakkında daha fazla bilgi için bkz. :ref:" "`strings`." -#: library/stdtypes.rst:1493 +#: library/stdtypes.rst:1532 msgid "" "Strings may also be created from other objects using the :class:`str` " "constructor." @@ -2449,7 +2498,7 @@ msgstr "" "Dizeler, :class:`str` yapıcısı kullanılarak diğer nesnelerden de " "oluşturulabilir." -#: library/stdtypes.rst:1496 +#: library/stdtypes.rst:1535 msgid "" "Since there is no separate \"character\" type, indexing a string produces " "strings of length 1. That is, for a non-empty string *s*, ``s[0] == s[0:1]``." @@ -2458,7 +2507,7 @@ msgstr "" "uzunluğunda dizeler üretir. Yani, boş olmayan bir *s* dizesi için ``s[0] == " "s[0:1]``." -#: library/stdtypes.rst:1502 +#: library/stdtypes.rst:1541 msgid "" "There is also no mutable string type, but :meth:`str.join` or :class:`io." "StringIO` can be used to efficiently construct strings from multiple " @@ -2468,7 +2517,7 @@ msgstr "" "`io.StringIO` birden çok parçadan dizeleri verimli bir şekilde oluşturmak " "için kullanılabilir." -#: library/stdtypes.rst:1506 +#: library/stdtypes.rst:1545 msgid "" "For backwards compatibility with the Python 2 series, the ``u`` prefix is " "once again permitted on string literals. It has no effect on the meaning of " @@ -2478,7 +2527,7 @@ msgstr "" "ön ekine izin verilir. Bunun dize değişmezlerinin anlamı üzerinde hiçbir " "etkisi yoktur ve ``r`` ön ekiyle birleştirilemez." -#: library/stdtypes.rst:1518 +#: library/stdtypes.rst:1557 #, fuzzy msgid "" "Return a :ref:`string ` version of *object*. If *object* is not " @@ -2489,14 +2538,14 @@ msgstr "" "boş dizeyi döndürür. Aksi takdirde, ``str()`` davranışı, aşağıdaki gibi " "*kodlama* veya *hatalar* 'ın verilmesine bağlıdır." -#: library/stdtypes.rst:1522 +#: library/stdtypes.rst:1561 #, fuzzy msgid "" "If neither *encoding* nor *errors* is given, ``str(object)`` returns :meth:" "`type(object).__str__(object) `, which is the \"informal\" " "or nicely printable string representation of *object*. For string objects, " "this is the string itself. If *object* does not have a :meth:`~object." -"__str__` method, then :func:`str` falls back to returning :meth:" +"__str__` method, then :func:`str` falls back to returning :func:" "`repr(object) `." msgstr "" "Ne *kodlama* ne de *hatalar* verilmezse, ``str(object)`` :meth:`object." @@ -2505,7 +2554,7 @@ msgstr "" "kendisidir. *object*'in bir :meth:`~object.__str__` metodu yoksa, :func:" "`str`, :meth:`repr(object) ` döndürmeye geri döner." -#: library/stdtypes.rst:1534 +#: library/stdtypes.rst:1573 msgid "" "If at least one of *encoding* or *errors* is given, *object* should be a :" "term:`bytes-like object` (e.g. :class:`bytes` or :class:`bytearray`). In " @@ -2525,7 +2574,7 @@ msgstr "" "elde edilir. Arabellek nesneleri hakkında bilgi için bkz. :ref:`binaryseq` " "ve :ref:`bufferobjects`." -#: library/stdtypes.rst:1543 +#: library/stdtypes.rst:1582 msgid "" "Passing a :class:`bytes` object to :func:`str` without the *encoding* or " "*errors* arguments falls under the first case of returning the informal " @@ -2537,7 +2586,7 @@ msgstr "" "girer (ayrıca bkz. Python için :option:`-b` komut satırı seçeneği). " "Örneğin::" -#: library/stdtypes.rst:1551 +#: library/stdtypes.rst:1590 msgid "" "For more information on the ``str`` class and its methods, see :ref:" "`textseq` and the :ref:`string-methods` section below. To output formatted " @@ -2549,11 +2598,11 @@ msgstr "" "dizelerin çıktısını almak için :ref:`f-strings` ve :ref:`formatstrings` " "bölümlerine bakın. Ayrıca, :ref:`stringservices` bölümüne de bakın." -#: library/stdtypes.rst:1563 +#: library/stdtypes.rst:1602 msgid "String Methods" msgstr "String (Dize) Metotları" -#: library/stdtypes.rst:1568 +#: library/stdtypes.rst:1607 msgid "" "Strings implement all of the :ref:`common ` sequence " "operations, along with the additional methods described below." @@ -2561,7 +2610,7 @@ msgstr "" "Dizeler, aşağıda açıklanan ek yöntemlerle birlikte tüm :ref:`ortak ` dizi işlemlerini uygular." -#: library/stdtypes.rst:1571 +#: library/stdtypes.rst:1610 #, fuzzy msgid "" "Strings also support two styles of string formatting, one providing a large " @@ -2578,7 +2627,7 @@ msgstr "" "stilini destekler, ancak genellikle işleyebileceği durumlar için daha " "hızlıdır (:ref:`old-string-formatting`)." -#: library/stdtypes.rst:1578 +#: library/stdtypes.rst:1617 msgid "" "The :ref:`textservices` section of the standard library covers a number of " "other modules that provide various text related utilities (including regular " @@ -2588,7 +2637,7 @@ msgstr "" "yardımcı programlar sağlayan bir dizi başka modülü kapsar (:mod:`re` " "modülündeki normal ifade desteği dahil)." -#: library/stdtypes.rst:1584 +#: library/stdtypes.rst:1623 msgid "" "Return a copy of the string with its first character capitalized and the " "rest lowercased." @@ -2596,7 +2645,7 @@ msgstr "" "İlk karakteri büyük ve geri kalanı küçük harf ile, dizenin bir kopyasını " "döndürür." -#: library/stdtypes.rst:1587 +#: library/stdtypes.rst:1626 #, fuzzy msgid "" "The first character is now put into titlecase rather than uppercase. This " @@ -2607,7 +2656,7 @@ msgstr "" "digraf gibi karakterlerin, sadece ilk harflerinin büyütüleceği anlamına " "gelir." -#: library/stdtypes.rst:1594 +#: library/stdtypes.rst:1633 msgid "" "Return a casefolded copy of the string. Casefolded strings may be used for " "caseless matching." @@ -2615,7 +2664,7 @@ msgstr "" "Dizenin küçük harfe katlanmış bir kopyasını döndürür. Küçük harfe katlanmış " "dizeler, büyük/küçük harfsiz eşleştirme için kullanılabilir." -#: library/stdtypes.rst:1597 +#: library/stdtypes.rst:1636 msgid "" "Casefolding is similar to lowercasing but more aggressive because it is " "intended to remove all case distinctions in a string. For example, the " @@ -2629,14 +2678,16 @@ msgstr "" "Zaten küçük harf olduğundan, :meth:`lower` ``'ß'`` için hiçbir şey yapmaz; :" "meth:`casefold` onu ``\"ss\"`` biçimine dönüştürür." -#: library/stdtypes.rst:1603 +#: library/stdtypes.rst:1642 +#, fuzzy msgid "" -"The casefolding algorithm is described in section 3.13 of the Unicode " -"Standard." +"The casefolding algorithm is `described in section 3.13 'Default Case " +"Folding' of the Unicode Standard `__." msgstr "" "Casefolding algoritması, Unicode Standardının 3.13 bölümünde açıklanmıştır." -#: library/stdtypes.rst:1611 +#: library/stdtypes.rst:1651 msgid "" "Return centered in a string of length *width*. Padding is done using the " "specified *fillchar* (default is an ASCII space). The original string is " @@ -2647,7 +2698,7 @@ msgstr "" "boşluğudur). *width*, ``len(s)`` değerinden küçük veya ona eşitse orijinal " "dize döndürülür." -#: library/stdtypes.rst:1619 +#: library/stdtypes.rst:1659 msgid "" "Return the number of non-overlapping occurrences of substring *sub* in the " "range [*start*, *end*]. Optional arguments *start* and *end* are " @@ -2657,23 +2708,23 @@ msgstr "" "sayısını döndürür. İsteğe bağlı bağımsız değişkenler *start* ve *end*, dilim " "notasyonunda olduğu gibi yorumlanır." -#: library/stdtypes.rst:1623 +#: library/stdtypes.rst:1663 msgid "" "If *sub* is empty, returns the number of empty strings between characters " "which is the length of the string plus one." msgstr "" -#: library/stdtypes.rst:1629 +#: library/stdtypes.rst:1669 msgid "Return the string encoded to :class:`bytes`." msgstr "" -#: library/stdtypes.rst:2766 +#: library/stdtypes.rst:2810 msgid "" "*encoding* defaults to ``'utf-8'``; see :ref:`standard-encodings` for " "possible values." msgstr "" -#: library/stdtypes.rst:1634 +#: library/stdtypes.rst:1674 msgid "" "*errors* controls how encoding errors are handled. If ``'strict'`` (the " "default), a :exc:`UnicodeError` exception is raised. Other possible values " @@ -2688,18 +2739,18 @@ msgstr "" "register_error` ile kaydedilen diğer isimlerdir. Ayrıntılar için :ref:`error-" "handlers` bölümüne bakınız." -#: library/stdtypes.rst:1641 +#: library/stdtypes.rst:1681 msgid "" "For performance reasons, the value of *errors* is not checked for validity " "unless an encoding error actually occurs, :ref:`devmode` is enabled or a :" "ref:`debug build ` is used." msgstr "" -#: library/stdtypes.rst:2785 +#: library/stdtypes.rst:2829 msgid "Added support for keyword arguments." msgstr "" -#: library/stdtypes.rst:2788 +#: library/stdtypes.rst:2832 msgid "" "The value of the *errors* argument is now checked in :ref:`devmode` and in :" "ref:`debug mode `." @@ -2707,7 +2758,7 @@ msgstr "" "*errors* şimdi :ref:`devmode` ve :ref:`hata ayıklama modunda ` " "kontrol edilir." -#: library/stdtypes.rst:1656 +#: library/stdtypes.rst:1696 msgid "" "Return ``True`` if the string ends with the specified *suffix*, otherwise " "return ``False``. *suffix* can also be a tuple of suffixes to look for. " @@ -2719,7 +2770,7 @@ msgstr "" "bağlı *start* ile, o konumdan başlayarak test edin. İsteğe bağlı *end* ile, " "o konumda karşılaştırmayı bırakın." -#: library/stdtypes.rst:1664 +#: library/stdtypes.rst:1704 msgid "" "Return a copy of the string where all tab characters are replaced by one or " "more spaces, depending on the current column and the given tab size. Tab " @@ -2746,7 +2797,7 @@ msgstr "" "karakter değiştirilmeden kopyalanır ve mevcut sütun, karakterin " "yazdırıldığında nasıl temsil edildiğine bakılmaksızın bir artırılır." -#: library/stdtypes.rst:1685 +#: library/stdtypes.rst:1725 msgid "" "Return the lowest index in the string where substring *sub* is found within " "the slice ``s[start:end]``. Optional arguments *start* and *end* are " @@ -2756,7 +2807,7 @@ msgstr "" "dizini döndür. İsteğe bağlı argümanlar *start* ve *end*, dilim notasyonunda " "olduğu gibi yorumlanır. *sub* bulunamazsa ``-1`` döndürür." -#: library/stdtypes.rst:1691 +#: library/stdtypes.rst:1731 msgid "" "The :meth:`~str.find` method should be used only if you need to know the " "position of *sub*. To check if *sub* is a substring or not, use the :" @@ -2766,7 +2817,7 @@ msgstr "" "gerekiyorsa kullanılmalıdır. *sub* 'ın bir alt dize olup olmadığını kontrol " "etmek için :keyword:`in` operatörünü kullanın::" -#: library/stdtypes.rst:1701 +#: library/stdtypes.rst:1741 msgid "" "Perform a string formatting operation. The string on which this method is " "called can contain literal text or replacement fields delimited by braces " @@ -2782,7 +2833,7 @@ msgstr "" "değiştirme alanının, karşılık gelen argümanın dize değeriyle değiştirildiği " "dizenin bir kopyasını döndürür." -#: library/stdtypes.rst:1711 +#: library/stdtypes.rst:1751 msgid "" "See :ref:`formatstrings` for a description of the various formatting options " "that can be specified in format strings." @@ -2790,7 +2841,7 @@ msgstr "" "Biçim dizelerinde (f string) belirtilebilecek çeşitli biçimlendirme " "seçeneklerinin açıklaması için bkz. :ref:`formatstrings`." -#: library/stdtypes.rst:1715 +#: library/stdtypes.rst:1755 msgid "" "When formatting a number (:class:`int`, :class:`float`, :class:`complex`, :" "class:`decimal.Decimal` and subclasses) with the ``n`` type (ex: ``'{:n}'." @@ -2808,7 +2859,7 @@ msgstr "" "için ``LC_CTYPE`` yerel ayarını geçici olarak ``LC_NUMERIC`` yerel ayarına " "ayarlar. Bu geçici değişiklik diğer iş parçacıklarını etkiler." -#: library/stdtypes.rst:1724 +#: library/stdtypes.rst:1764 msgid "" "When formatting a number with the ``n`` type, the function sets temporarily " "the ``LC_CTYPE`` locale to the ``LC_NUMERIC`` locale in some cases." @@ -2817,7 +2868,7 @@ msgstr "" "``LC_CTYPE`` yerel ayarını geçici olarak ``LC_NUMERIC`` yerel ayarına " "ayarlar." -#: library/stdtypes.rst:1732 +#: library/stdtypes.rst:1772 msgid "" "Similar to ``str.format(**mapping)``, except that ``mapping`` is used " "directly and not copied to a :class:`dict`. This is useful if for example " @@ -2827,7 +2878,7 @@ msgstr "" "kullanılır ve bir :class:`dict` 'e kopyalanmaz. Örneğin, ``mapping`` bir " "dict alt sınıfı ise bu kullanışlıdır:" -#: library/stdtypes.rst:1748 +#: library/stdtypes.rst:1788 msgid "" "Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is " "not found." @@ -2835,7 +2886,7 @@ msgstr "" ":meth:`~str.find` gibi, ancak alt dize bulunamadığında :exc:`ValueError` " "yükseltir." -#: library/stdtypes.rst:1754 +#: library/stdtypes.rst:1794 msgid "" "Return ``True`` if all characters in the string are alphanumeric and there " "is at least one character, ``False`` otherwise. A character ``c`` is " @@ -2847,14 +2898,17 @@ msgstr "" "``True`` döndürüyorsa alfasayısaldır: ``c.isalpha()``, ``c.isdecimal()``, " "``c.isdigit()`` veya ``c.isnumeric()``." -#: library/stdtypes.rst:1762 +#: library/stdtypes.rst:1802 +#, fuzzy msgid "" "Return ``True`` if all characters in the string are alphabetic and there is " "at least one character, ``False`` otherwise. Alphabetic characters are " "those characters defined in the Unicode character database as \"Letter\", i." "e., those with general category property being one of \"Lm\", \"Lt\", " -"\"Lu\", \"Ll\", or \"Lo\". Note that this is different from the " -"\"Alphabetic\" property defined in the Unicode Standard." +"\"Lu\", \"Ll\", or \"Lo\". Note that this is different from the `Alphabetic " +"property defined in the section 4.10 'Letters, Alphabetic, and Ideographic' " +"of the Unicode Standard `_." msgstr "" "Dizedeki tüm karakterler alfabetikse ve en az bir karakter varsa ``True``, " "aksi takdirde ``False`` döndürür. Alfabetik karakterler, Unicode karakter " @@ -2863,7 +2917,7 @@ msgstr "" "karakterlerdir. Bunun Unicode Standardında tanımlanan \"Alfabetik\" " "özelliğinden farklı olduğunu unutmayın." -#: library/stdtypes.rst:1771 +#: library/stdtypes.rst:1813 msgid "" "Return ``True`` if the string is empty or all characters in the string are " "ASCII, ``False`` otherwise. ASCII characters have code points in the range " @@ -2873,7 +2927,7 @@ msgstr "" "``False`` döndürür. ASCII karakterleri U+0000-U+007F aralığında kod " "noktalarına sahiptir." -#: library/stdtypes.rst:1780 +#: library/stdtypes.rst:1822 msgid "" "Return ``True`` if all characters in the string are decimal characters and " "there is at least one character, ``False`` otherwise. Decimal characters are " @@ -2887,7 +2941,7 @@ msgstr "" "ARAPÇA-HİNTÇE RAKAM SIFIR. Resmi olarak bir ondalık karakter Unicode Genel " "Kategorisi \"Nd\" içerisindeki bir karakterdir." -#: library/stdtypes.rst:1790 +#: library/stdtypes.rst:1832 msgid "" "Return ``True`` if all characters in the string are digits and there is at " "least one character, ``False`` otherwise. Digits include decimal characters " @@ -2903,7 +2957,7 @@ msgstr "" "rakamları kapsar. Resmi olarak rakam, Numeric_Type=Digit veya " "Numeric_Type=Decimal özellik değerine sahip bir karakterdir." -#: library/stdtypes.rst:1800 +#: library/stdtypes.rst:1842 msgid "" "Return ``True`` if the string is a valid identifier according to the " "language definition, section :ref:`identifiers`." @@ -2911,19 +2965,20 @@ msgstr "" ":ref:`identifiers` bölümüne göre dizge dil tanımına göre geçerli bir " "tanımlayıcı ise ``True`` döndürür." -#: library/stdtypes.rst:1803 +#: library/stdtypes.rst:1845 +#, fuzzy msgid "" -"Call :func:`keyword.iskeyword` to test whether string ``s`` is a reserved " -"identifier, such as :keyword:`def` and :keyword:`class`." +":func:`keyword.iskeyword` can be used to test whether string ``s`` is a " +"reserved identifier, such as :keyword:`def` and :keyword:`class`." msgstr "" ":func:`keyword.iskeyword` çağrısı yaparak ``s`` dizesinin :keyword:`def` ve :" "keyword:`class` gibi ayrılmış bir tanımlayıcı olup olmadığını test eder." -#: library/stdtypes.rst:1806 +#: library/stdtypes.rst:1848 msgid "Example: ::" msgstr "Örnek: ::" -#: library/stdtypes.rst:1819 +#: library/stdtypes.rst:1861 msgid "" "Return ``True`` if all cased characters [4]_ in the string are lowercase and " "there is at least one cased character, ``False`` otherwise." @@ -2931,7 +2986,7 @@ msgstr "" "Dizedeki tüm büyük harfli karakterler [4]_ küçük harfli ise ve en az bir " "büyük harfli karakter varsa ``True``, aksi takdirde ``False`` döndürür." -#: library/stdtypes.rst:1825 +#: library/stdtypes.rst:1867 msgid "" "Return ``True`` if all characters in the string are numeric characters, and " "there is at least one character, ``False`` otherwise. Numeric characters " @@ -2947,7 +3002,7 @@ msgstr "" "karakterler Numeric_Type=Digit, Numeric_Type=Decimal veya " "Numeric_Type=Numeric özellik değerine sahip karakterlerdir." -#: library/stdtypes.rst:1835 +#: library/stdtypes.rst:1877 msgid "" "Return ``True`` if all characters in the string are printable or the string " "is empty, ``False`` otherwise. Nonprintable characters are those characters " @@ -2966,7 +3021,7 @@ msgstr "" "data:`sys.stdout` veya :data:`sys.stderr` dosyalarına yazılan dizelerin " "işlenmesiyle bir ilgisi yoktur)" -#: library/stdtypes.rst:1846 +#: library/stdtypes.rst:1888 msgid "" "Return ``True`` if there are only whitespace characters in the string and " "there is at least one character, ``False`` otherwise." @@ -2974,7 +3029,7 @@ msgstr "" "Dizede yalnızca boşluk karakterleri varsa ve en az bir karakter varsa " "``True``, aksi takdirde ``False`` döndürür." -#: library/stdtypes.rst:1849 +#: library/stdtypes.rst:1891 msgid "" "A character is *whitespace* if in the Unicode character database (see :mod:" "`unicodedata`), either its general category is ``Zs`` (\"Separator, " @@ -2984,7 +3039,7 @@ msgstr "" "sınıfı ``WS``, ``B`` veya ``S``’den biri ise Unicode karakter veritabanında " "(bkz. :mod:`unicodedata`) *beyaz boşluk karakteri*’dir." -#: library/stdtypes.rst:1857 +#: library/stdtypes.rst:1899 msgid "" "Return ``True`` if the string is a titlecased string and there is at least " "one character, for example uppercase characters may only follow uncased " @@ -2996,7 +3051,7 @@ msgstr "" "karakterleri ve küçük harfli karakterler sadece büyük harfli karakterleri " "takip edebilir. Aksi takdirde ``False`` döndürür." -#: library/stdtypes.rst:1864 +#: library/stdtypes.rst:1906 msgid "" "Return ``True`` if all cased characters [4]_ in the string are uppercase and " "there is at least one cased character, ``False`` otherwise." @@ -3004,7 +3059,7 @@ msgstr "" "Dizedeki tüm karakterler [4]_ büyük harfli ise ve en az bir büyük harfli " "karakter varsa ``True``, aksi takdirde ``False`` döndürür." -#: library/stdtypes.rst:1882 +#: library/stdtypes.rst:1924 msgid "" "Return a string which is the concatenation of the strings in *iterable*. A :" "exc:`TypeError` will be raised if there are any non-string values in " @@ -3016,7 +3071,7 @@ msgstr "" "olmayan değerler varsa bir :exc:`TypeError` oluşacaktır. Öğeler arasındaki " "ayırıcı, bu yöntemi sağlayan dizedir." -#: library/stdtypes.rst:1890 +#: library/stdtypes.rst:1932 msgid "" "Return the string left justified in a string of length *width*. Padding is " "done using the specified *fillchar* (default is an ASCII space). The " @@ -3027,7 +3082,7 @@ msgstr "" "boşluğudur). *width*, ``len(s)`` değerinden küçük veya ona eşitse orijinal " "dize döndürülür." -#: library/stdtypes.rst:1897 +#: library/stdtypes.rst:1939 msgid "" "Return a copy of the string with all the cased characters [4]_ converted to " "lowercase." @@ -3035,14 +3090,16 @@ msgstr "" "Dizenin tüm büyük harfli karakterlerini [4]_ küçük harfe dönüştürerek bir " "kopyasını döndürür." -#: library/stdtypes.rst:1900 +#: library/stdtypes.rst:1942 +#, fuzzy msgid "" -"The lowercasing algorithm used is described in section 3.13 of the Unicode " -"Standard." +"The lowercasing algorithm used is `described in section 3.13 'Default Case " +"Folding' of the Unicode Standard `__." msgstr "" "Harf küçültme algoritması, Unicode Standardının 3.13 bölümünde açıklanmıştır." -#: library/stdtypes.rst:1906 +#: library/stdtypes.rst:1949 msgid "" "Return a copy of the string with leading characters removed. The *chars* " "argument is a string specifying the set of characters to be removed. If " @@ -3056,7 +3113,7 @@ msgstr "" "boşlukları kaldırır. *chars* bağımsız değişkeni bir ön ek değildir; bunun " "yerine, değerlerinin tüm kombinasyonları çıkarılır::" -#: library/stdtypes.rst:1916 +#: library/stdtypes.rst:1959 msgid "" "See :meth:`str.removeprefix` for a method that will remove a single prefix " "string rather than all of a set of characters. For example::" @@ -3065,7 +3122,7 @@ msgstr "" "kaldıracak bir yöntem için :meth:`str.removeprefix` bölümüne bakın. " "Örneğin::" -#: library/stdtypes.rst:1927 +#: library/stdtypes.rst:1970 msgid "" "This static method returns a translation table usable for :meth:`str." "translate`." @@ -3073,7 +3130,7 @@ msgstr "" "Bu statik yöntem :meth:`str.translate` için kullanılabilecek bir çeviri " "tablosu döndürür." -#: library/stdtypes.rst:1929 +#: library/stdtypes.rst:1972 msgid "" "If there is only one argument, it must be a dictionary mapping Unicode " "ordinals (integers) or characters (strings of length 1) to Unicode ordinals, " @@ -3086,7 +3143,7 @@ msgstr "" "sözlük olmalıdır. Karakter anahtarları daha sonra sıradanlara " "dönüştürülecektir." -#: library/stdtypes.rst:1934 +#: library/stdtypes.rst:1977 msgid "" "If there are two arguments, they must be strings of equal length, and in the " "resulting dictionary, each character in x will be mapped to the character at " @@ -3098,7 +3155,7 @@ msgstr "" "eşlenecektir. Üçüncü bir bağımsız değişken varsa, karakterleri sonuçta " "``None`` ile eşlenecek bir dizge olmalıdır." -#: library/stdtypes.rst:1942 +#: library/stdtypes.rst:1985 msgid "" "Split the string at the first occurrence of *sep*, and return a 3-tuple " "containing the part before the separator, the separator itself, and the part " @@ -3110,7 +3167,7 @@ msgstr "" "Ayırıcı bulunamazsa, dizenin kendisini ve ardından iki boş dizeyi içeren bir " "3'lü döndürür." -#: library/stdtypes.rst:1950 +#: library/stdtypes.rst:1993 msgid "" "If the string starts with the *prefix* string, return " "``string[len(prefix):]``. Otherwise, return a copy of the original string::" @@ -3118,7 +3175,7 @@ msgstr "" "Eğer dize *prefix* dizesi ile başlıyorsa, ``dize[len(prefix):]`` döndürür. " "Aksi takdirde, orijinal dizgenin bir kopyasını döndürür::" -#: library/stdtypes.rst:1964 +#: library/stdtypes.rst:2007 msgid "" "If the string ends with the *suffix* string and that *suffix* is not empty, " "return ``string[:-len(suffix)]``. Otherwise, return a copy of the original " @@ -3128,7 +3185,7 @@ msgstr "" "``dize[:-len(suffix)]`` döndürür. Aksi takdirde, orijinal dizenin bir " "kopyasını döndürür::" -#: library/stdtypes.rst:1978 +#: library/stdtypes.rst:2021 msgid "" "Return a copy of the string with all occurrences of substring *old* replaced " "by *new*. If the optional argument *count* is given, only the first *count* " @@ -3138,7 +3195,7 @@ msgstr "" "kopyasını döndürür. İsteğe bağlı olarak *count* bağımsız değişkeni " "verilirse, yalnızca ilk *count* oluşumu değiştirilir." -#: library/stdtypes.rst:1985 +#: library/stdtypes.rst:2028 msgid "" "Return the highest index in the string where substring *sub* is found, such " "that *sub* is contained within ``s[start:end]``. Optional arguments *start* " @@ -3149,7 +3206,7 @@ msgstr "" "*end* dilim gösterimindeki gibi yorumlanır. Başarısızlık durumunda ``-1`` " "döndürür." -#: library/stdtypes.rst:1992 +#: library/stdtypes.rst:2035 msgid "" "Like :meth:`rfind` but raises :exc:`ValueError` when the substring *sub* is " "not found." @@ -3157,7 +3214,7 @@ msgstr "" ":meth:`rfind` gibi, ancak *sub* alt dizesi bulunamadığında :exc:`ValueError` " "yükseltir." -#: library/stdtypes.rst:1998 +#: library/stdtypes.rst:2041 msgid "" "Return the string right justified in a string of length *width*. Padding is " "done using the specified *fillchar* (default is an ASCII space). The " @@ -3168,7 +3225,7 @@ msgstr "" "boşluğudur). *width*, ``len(s)`` değerinden küçük veya ona eşitse orijinal " "dize döndürülür." -#: library/stdtypes.rst:2005 +#: library/stdtypes.rst:2048 msgid "" "Split the string at the last occurrence of *sep*, and return a 3-tuple " "containing the part before the separator, the separator itself, and the part " @@ -3180,7 +3237,7 @@ msgstr "" "Ayırıcı bulunamazsa, dizenin kendisini ve ardından iki boş dizeyi içeren bir " "3'lü döndürür." -#: library/stdtypes.rst:2013 +#: library/stdtypes.rst:2056 msgid "" "Return a list of the words in the string, using *sep* as the delimiter " "string. If *maxsplit* is given, at most *maxsplit* splits are done, the " @@ -3194,7 +3251,7 @@ msgstr "" "herhangi bir boşluk dizesi ayırıcıdır. Sağdan bölme dışında, :meth:`rsplit` " "aşağıda ayrıntılı olarak açıklanan :meth:`split` gibi davranır." -#: library/stdtypes.rst:2022 +#: library/stdtypes.rst:2065 msgid "" "Return a copy of the string with trailing characters removed. The *chars* " "argument is a string specifying the set of characters to be removed. If " @@ -3208,7 +3265,7 @@ msgstr "" "boşlukları kaldırır. *chars* bağımsız değişkeni bir ön ek değildir; bunun " "yerine, değerlerinin tüm kombinasyonları çıkarılır::" -#: library/stdtypes.rst:2032 +#: library/stdtypes.rst:2075 msgid "" "See :meth:`str.removesuffix` for a method that will remove a single suffix " "string rather than all of a set of characters. For example::" @@ -3217,7 +3274,7 @@ msgstr "" "kaldıracak bir yöntem için :meth:`str.removeprefix` bölümüne bakın. " "Örneğin::" -#: library/stdtypes.rst:2042 +#: library/stdtypes.rst:2085 msgid "" "Return a list of the words in the string, using *sep* as the delimiter " "string. If *maxsplit* is given, at most *maxsplit* splits are done (thus, " @@ -3231,7 +3288,7 @@ msgstr "" "Eğer *maxsplit* belirtilmemişse veya ``-1`` ise, bölme sayısında bir " "sınırlama yoktur (tüm olası bölmeler yapılır)." -#: library/stdtypes.rst:2048 +#: library/stdtypes.rst:2091 msgid "" "If *sep* is given, consecutive delimiters are not grouped together and are " "deemed to delimit empty strings (for example, ``'1,,2'.split(',')`` returns " @@ -3245,15 +3302,15 @@ msgstr "" "(örneğin, ``'1<>2<>3'.split('<>')``, ``['1', '2', '3']`` döndürür). Boş bir " "dizeyi belirtilen bir ayırıcıyla bölmek ``['']`` döndürür." -#: library/stdtypes.rst:2070 library/stdtypes.rst:2190 -#: library/stdtypes.rst:3104 library/stdtypes.rst:3211 -#: library/stdtypes.rst:3252 library/stdtypes.rst:3294 -#: library/stdtypes.rst:3326 library/stdtypes.rst:3376 -#: library/stdtypes.rst:3445 library/stdtypes.rst:3469 +#: library/stdtypes.rst:2113 library/stdtypes.rst:2233 +#: library/stdtypes.rst:3148 library/stdtypes.rst:3255 +#: library/stdtypes.rst:3296 library/stdtypes.rst:3338 +#: library/stdtypes.rst:3370 library/stdtypes.rst:3420 +#: library/stdtypes.rst:3489 library/stdtypes.rst:3513 msgid "For example::" msgstr "Örneğin: ::" -#: library/stdtypes.rst:2063 +#: library/stdtypes.rst:2106 msgid "" "If *sep* is not specified or is ``None``, a different splitting algorithm is " "applied: runs of consecutive whitespace are regarded as a single separator, " @@ -3268,7 +3325,7 @@ msgstr "" "dizeler olmaz. Dolayısıyla, boş bir dizeyi veya sadece beyaz boşluktan " "oluşan bir dizeyi ``None`` ayırıcısıyla bölmek ``[]`` döndürür." -#: library/stdtypes.rst:2085 +#: library/stdtypes.rst:2128 msgid "" "Return a list of the lines in the string, breaking at line boundaries. Line " "breaks are not included in the resulting list unless *keepends* is given and " @@ -3278,7 +3335,7 @@ msgstr "" "Satır sonları için *keepends* belirtilmediği ve true değerinde olmadığı " "sürece, satır sonları sonuç listesine dahil edilmez." -#: library/stdtypes.rst:2089 +#: library/stdtypes.rst:2132 msgid "" "This method splits on the following line boundaries. In particular, the " "boundaries are a superset of :term:`universal newlines`." @@ -3286,107 +3343,107 @@ msgstr "" "Bu yöntem aşağıdaki satır sınırlarında bölme yapar. Spesifik olarak, " "sınırlar :term:`universal newlines` 'ın bir üst kümesidir." -#: library/stdtypes.rst:2093 +#: library/stdtypes.rst:2136 msgid "Representation" msgstr "Temsil" -#: library/stdtypes.rst:2093 +#: library/stdtypes.rst:2136 msgid "Description" msgstr "Açıklama" -#: library/stdtypes.rst:2095 +#: library/stdtypes.rst:2138 msgid "``\\n``" msgstr "``\\n``" -#: library/stdtypes.rst:2095 +#: library/stdtypes.rst:2138 msgid "Line Feed" msgstr "Satır Atlama" -#: library/stdtypes.rst:2097 +#: library/stdtypes.rst:2140 msgid "``\\r``" msgstr "``\\r``" -#: library/stdtypes.rst:2097 +#: library/stdtypes.rst:2140 msgid "Carriage Return" msgstr "Satır Başına Alma" -#: library/stdtypes.rst:2099 +#: library/stdtypes.rst:2142 msgid "``\\r\\n``" msgstr "``\\r\\n``" -#: library/stdtypes.rst:2099 +#: library/stdtypes.rst:2142 msgid "Carriage Return + Line Feed" msgstr "Satır Başına Alma + Satır Atlama" -#: library/stdtypes.rst:2101 +#: library/stdtypes.rst:2144 msgid "``\\v`` or ``\\x0b``" msgstr "``\\v`` or ``\\x0b``" -#: library/stdtypes.rst:2101 +#: library/stdtypes.rst:2144 msgid "Line Tabulation" msgstr "Satır Tablolama" -#: library/stdtypes.rst:2103 +#: library/stdtypes.rst:2146 msgid "``\\f`` or ``\\x0c``" msgstr "``\\f`` or ``\\x0c``" -#: library/stdtypes.rst:2103 +#: library/stdtypes.rst:2146 msgid "Form Feed" msgstr "Form Besleme" -#: library/stdtypes.rst:2105 +#: library/stdtypes.rst:2148 msgid "``\\x1c``" msgstr "``\\x1c``" -#: library/stdtypes.rst:2105 +#: library/stdtypes.rst:2148 msgid "File Separator" msgstr "Dosya Ayırıcı" -#: library/stdtypes.rst:2107 +#: library/stdtypes.rst:2150 msgid "``\\x1d``" msgstr "``\\x1d``" -#: library/stdtypes.rst:2107 +#: library/stdtypes.rst:2150 msgid "Group Separator" msgstr "Grup Ayırıcı" -#: library/stdtypes.rst:2109 +#: library/stdtypes.rst:2152 msgid "``\\x1e``" msgstr "``\\x1e``" -#: library/stdtypes.rst:2109 +#: library/stdtypes.rst:2152 msgid "Record Separator" msgstr "Kayıt Ayırıcı" -#: library/stdtypes.rst:2111 +#: library/stdtypes.rst:2154 msgid "``\\x85``" msgstr "``\\x85``" -#: library/stdtypes.rst:2111 +#: library/stdtypes.rst:2154 msgid "Next Line (C1 Control Code)" msgstr "Yeni Satır (C1 Denetim Kodu)" -#: library/stdtypes.rst:2113 +#: library/stdtypes.rst:2156 msgid "``\\u2028``" msgstr "``\\u2028``" -#: library/stdtypes.rst:2113 +#: library/stdtypes.rst:2156 msgid "Line Separator" msgstr "Satır Ayrıcı" -#: library/stdtypes.rst:2115 +#: library/stdtypes.rst:2158 msgid "``\\u2029``" msgstr "``\\u2029``" -#: library/stdtypes.rst:2115 +#: library/stdtypes.rst:2158 msgid "Paragraph Separator" msgstr "Paragraf Ayırıcı" -#: library/stdtypes.rst:2120 +#: library/stdtypes.rst:2163 msgid "``\\v`` and ``\\f`` added to list of line boundaries." msgstr "``\\v`` ve ``\\f`` satır sınırlarına eklenir." -#: library/stdtypes.rst:2129 +#: library/stdtypes.rst:2172 msgid "" "Unlike :meth:`~str.split` when a delimiter string *sep* is given, this " "method returns an empty list for the empty string, and a terminal line break " @@ -3396,11 +3453,11 @@ msgstr "" "farklı olarak, bu yöntem boş dize için boş bir liste döndürür ve bir " "terminal satır sonu fazladan bir satır ile sonuçlanmaz::" -#: library/stdtypes.rst:2138 +#: library/stdtypes.rst:2181 msgid "For comparison, ``split('\\n')`` gives::" msgstr "Kıyaslayacak olursak ``split(‘\\n’)`` şu değeri verir::" -#: library/stdtypes.rst:2148 +#: library/stdtypes.rst:2191 msgid "" "Return ``True`` if string starts with the *prefix*, otherwise return " "``False``. *prefix* can also be a tuple of prefixes to look for. With " @@ -3412,7 +3469,7 @@ msgstr "" "İsteğe bağlı *start* ile, o konumdan başlayan dizeyi sınar. İsteğe bağlı " "*end* ile, dizeyi o konumda karşılaştırmayı durdurur." -#: library/stdtypes.rst:2156 +#: library/stdtypes.rst:2199 msgid "" "Return a copy of the string with the leading and trailing characters " "removed. The *chars* argument is a string specifying the set of characters " @@ -3427,7 +3484,7 @@ msgstr "" "veya son ek değildir; bunun yerine, değerlerinin tüm kombinasyonları " "çıkarılır::" -#: library/stdtypes.rst:2167 +#: library/stdtypes.rst:2210 msgid "" "The outermost leading and trailing *chars* argument values are stripped from " "the string. Characters are removed from the leading end until reaching a " @@ -3439,7 +3496,7 @@ msgstr "" "karakterine ulaşılana kadar önde gelen uçtan çıkarılır. Benzer bir işlem son " "uçta da gerçekleşir. Örneğin::" -#: library/stdtypes.rst:2180 +#: library/stdtypes.rst:2223 msgid "" "Return a copy of the string with uppercase characters converted to lowercase " "and vice versa. Note that it is not necessarily true that ``s.swapcase()." @@ -3449,7 +3506,7 @@ msgstr "" "dizenin bir kopyasını döndürür. ``s.swapcase().swapcase() == s`` ifadesinin " "mutlaka doğru olması gerekmediğine dikkat edin." -#: library/stdtypes.rst:2187 +#: library/stdtypes.rst:2230 msgid "" "Return a titlecased version of the string where words start with an " "uppercase character and the remaining characters are lowercase." @@ -3457,7 +3514,7 @@ msgstr "" "Sözcüklerin büyük harfle başladığı ve kalan karakterlerin küçük harf olduğu " "dizenin başlıklandırılmış bir sürümünü döndürür." -#: library/stdtypes.rst:3413 +#: library/stdtypes.rst:3457 msgid "" "The algorithm uses a simple language-independent definition of a word as " "groups of consecutive letters. The definition works in many contexts but it " @@ -3469,13 +3526,13 @@ msgstr "" "kısaltmalar ve iyeliklerdeki kesme işaretlerinin kelime sınırları " "oluşturduğu anlamına gelir ve bu istenen sonuç olmayabilir::" -#: library/stdtypes.rst:2203 +#: library/stdtypes.rst:2246 msgid "" "The :func:`string.capwords` function does not have this problem, as it " "splits words on spaces only." msgstr "" -#: library/stdtypes.rst:2206 +#: library/stdtypes.rst:2249 #, fuzzy msgid "" "Alternatively, a workaround for apostrophes can be constructed using regular " @@ -3484,7 +3541,7 @@ msgstr "" "Alternatif olarak, kesme işaretleri için geçici bir çözüm düzenli ifadeler " "kullanılarak oluşturulabilir::" -#: library/stdtypes.rst:2221 +#: library/stdtypes.rst:2264 msgid "" "Return a copy of the string in which each character has been mapped through " "the given translation table. The table must be an object that implements " @@ -3505,19 +3562,19 @@ msgstr "" "veya karakteri kendisiyle eşlemek için bir :exc:`LookupError` istisnası " "oluşturmak." -#: library/stdtypes.rst:2230 +#: library/stdtypes.rst:2273 msgid "" "You can use :meth:`str.maketrans` to create a translation map from character-" "to-character mappings in different formats." msgstr "" -#: library/stdtypes.rst:2233 +#: library/stdtypes.rst:2276 msgid "" "See also the :mod:`codecs` module for a more flexible approach to custom " "character mappings." msgstr "" -#: library/stdtypes.rst:2239 +#: library/stdtypes.rst:2282 msgid "" "Return a copy of the string with all the cased characters [4]_ converted to " "uppercase. Note that ``s.upper().isupper()`` might be ``False`` if ``s`` " @@ -3526,14 +3583,16 @@ msgid "" "titlecase)." msgstr "" -#: library/stdtypes.rst:2245 +#: library/stdtypes.rst:2288 +#, fuzzy msgid "" -"The uppercasing algorithm used is described in section 3.13 of the Unicode " -"Standard." +"The uppercasing algorithm used is `described in section 3.13 'Default Case " +"Folding' of the Unicode Standard `__." msgstr "" "Harf büyütme algoritması, Unicode Standardının 3.13 bölümünde açıklanmıştır." -#: library/stdtypes.rst:2251 +#: library/stdtypes.rst:2295 msgid "" "Return a copy of the string left filled with ASCII ``'0'`` digits to make a " "string of length *width*. A leading sign prefix (``'+'``/``'-'``) is handled " @@ -3541,11 +3600,11 @@ msgid "" "original string is returned if *width* is less than or equal to ``len(s)``." msgstr "" -#: library/stdtypes.rst:2269 +#: library/stdtypes.rst:2313 msgid "``printf``-style String Formatting" msgstr "" -#: library/stdtypes.rst:2282 +#: library/stdtypes.rst:2326 msgid "" "The formatting operations described here exhibit a variety of quirks that " "lead to a number of common errors (such as failing to display tuples and " @@ -3556,7 +3615,7 @@ msgid "" "or extensibility." msgstr "" -#: library/stdtypes.rst:2290 +#: library/stdtypes.rst:2334 msgid "" "String objects have one unique built-in operation: the ``%`` operator " "(modulo). This is also known as the string *formatting* or *interpolation* " @@ -3566,7 +3625,7 @@ msgid "" "in the C language." msgstr "" -#: library/stdtypes.rst:2296 +#: library/stdtypes.rst:2340 msgid "" "If *format* requires a single argument, *values* may be a single non-tuple " "object. [5]_ Otherwise, *values* must be a tuple with exactly the number of " @@ -3574,36 +3633,36 @@ msgid "" "example, a dictionary)." msgstr "" -#: library/stdtypes.rst:3524 +#: library/stdtypes.rst:3568 msgid "" "A conversion specifier contains two or more characters and has the following " "components, which must occur in this order:" msgstr "" -#: library/stdtypes.rst:3527 +#: library/stdtypes.rst:3571 msgid "The ``'%'`` character, which marks the start of the specifier." msgstr "" -#: library/stdtypes.rst:3529 +#: library/stdtypes.rst:3573 msgid "" "Mapping key (optional), consisting of a parenthesised sequence of characters " "(for example, ``(somename)``)." msgstr "" -#: library/stdtypes.rst:3532 +#: library/stdtypes.rst:3576 msgid "" "Conversion flags (optional), which affect the result of some conversion " "types." msgstr "" -#: library/stdtypes.rst:3535 +#: library/stdtypes.rst:3579 msgid "" "Minimum field width (optional). If specified as an ``'*'`` (asterisk), the " "actual width is read from the next element of the tuple in *values*, and the " "object to convert comes after the minimum field width and optional precision." msgstr "" -#: library/stdtypes.rst:3539 +#: library/stdtypes.rst:3583 msgid "" "Precision (optional), given as a ``'.'`` (dot) followed by the precision. " "If specified as ``'*'`` (an asterisk), the actual precision is read from the " @@ -3611,15 +3670,15 @@ msgid "" "the precision." msgstr "" -#: library/stdtypes.rst:3544 +#: library/stdtypes.rst:3588 msgid "Length modifier (optional)." msgstr "" -#: library/stdtypes.rst:3546 +#: library/stdtypes.rst:3590 msgid "Conversion type." msgstr "" -#: library/stdtypes.rst:2330 +#: library/stdtypes.rst:2374 msgid "" "When the right argument is a dictionary (or other mapping type), then the " "formats in the string *must* include a parenthesised mapping key into that " @@ -3627,277 +3686,277 @@ msgid "" "selects the value to be formatted from the mapping. For example:" msgstr "" -#: library/stdtypes.rst:3557 +#: library/stdtypes.rst:3601 msgid "" "In this case no ``*`` specifiers may occur in a format (since they require a " "sequential parameter list)." msgstr "" -#: library/stdtypes.rst:3560 +#: library/stdtypes.rst:3604 msgid "The conversion flag characters are:" msgstr "" -#: library/stdtypes.rst:3569 +#: library/stdtypes.rst:3613 msgid "Flag" msgstr "" -#: library/stdtypes.rst:3571 +#: library/stdtypes.rst:3615 msgid "``'#'``" msgstr "" -#: library/stdtypes.rst:3571 +#: library/stdtypes.rst:3615 msgid "" "The value conversion will use the \"alternate form\" (where defined below)." msgstr "" -#: library/stdtypes.rst:3574 +#: library/stdtypes.rst:3618 msgid "``'0'``" msgstr "" -#: library/stdtypes.rst:3574 +#: library/stdtypes.rst:3618 msgid "The conversion will be zero padded for numeric values." msgstr "" -#: library/stdtypes.rst:3576 +#: library/stdtypes.rst:3620 msgid "``'-'``" msgstr "" -#: library/stdtypes.rst:3576 +#: library/stdtypes.rst:3620 msgid "" "The converted value is left adjusted (overrides the ``'0'`` conversion if " "both are given)." msgstr "" -#: library/stdtypes.rst:3579 +#: library/stdtypes.rst:3623 msgid "``' '``" msgstr "" -#: library/stdtypes.rst:3579 +#: library/stdtypes.rst:3623 msgid "" "(a space) A blank should be left before a positive number (or empty string) " "produced by a signed conversion." msgstr "" -#: library/stdtypes.rst:3582 +#: library/stdtypes.rst:3626 msgid "``'+'``" msgstr "" -#: library/stdtypes.rst:3582 +#: library/stdtypes.rst:3626 msgid "" "A sign character (``'+'`` or ``'-'``) will precede the conversion (overrides " "a \"space\" flag)." msgstr "" -#: library/stdtypes.rst:3586 +#: library/stdtypes.rst:3630 msgid "" "A length modifier (``h``, ``l``, or ``L``) may be present, but is ignored as " "it is not necessary for Python -- so e.g. ``%ld`` is identical to ``%d``." msgstr "" -#: library/stdtypes.rst:3589 +#: library/stdtypes.rst:3633 msgid "The conversion types are:" msgstr "" -#: library/stdtypes.rst:3592 +#: library/stdtypes.rst:3636 msgid "Conversion" msgstr "" -#: library/stdtypes.rst:3594 +#: library/stdtypes.rst:3638 msgid "``'d'``" msgstr "" -#: library/stdtypes.rst:2378 library/stdtypes.rst:3596 +#: library/stdtypes.rst:2422 library/stdtypes.rst:3640 msgid "Signed integer decimal." msgstr "" -#: library/stdtypes.rst:3596 +#: library/stdtypes.rst:3640 msgid "``'i'``" msgstr "" -#: library/stdtypes.rst:3598 +#: library/stdtypes.rst:3642 msgid "``'o'``" msgstr "" -#: library/stdtypes.rst:3598 +#: library/stdtypes.rst:3642 msgid "Signed octal value." msgstr "" -#: library/stdtypes.rst:3600 +#: library/stdtypes.rst:3644 msgid "``'u'``" msgstr "" -#: library/stdtypes.rst:3600 +#: library/stdtypes.rst:3644 msgid "Obsolete type -- it is identical to ``'d'``." msgstr "" -#: library/stdtypes.rst:3602 +#: library/stdtypes.rst:3646 msgid "``'x'``" msgstr "" -#: library/stdtypes.rst:3602 +#: library/stdtypes.rst:3646 msgid "Signed hexadecimal (lowercase)." msgstr "" -#: library/stdtypes.rst:3604 +#: library/stdtypes.rst:3648 msgid "``'X'``" msgstr "" -#: library/stdtypes.rst:3604 +#: library/stdtypes.rst:3648 msgid "Signed hexadecimal (uppercase)." msgstr "" -#: library/stdtypes.rst:3606 +#: library/stdtypes.rst:3650 msgid "``'e'``" msgstr "" -#: library/stdtypes.rst:3606 +#: library/stdtypes.rst:3650 msgid "Floating point exponential format (lowercase)." msgstr "" -#: library/stdtypes.rst:3608 +#: library/stdtypes.rst:3652 msgid "``'E'``" msgstr "" -#: library/stdtypes.rst:3608 +#: library/stdtypes.rst:3652 msgid "Floating point exponential format (uppercase)." msgstr "" -#: library/stdtypes.rst:3610 +#: library/stdtypes.rst:3654 msgid "``'f'``" msgstr "" -#: library/stdtypes.rst:2394 library/stdtypes.rst:3612 +#: library/stdtypes.rst:2438 library/stdtypes.rst:3656 msgid "Floating point decimal format." msgstr "" -#: library/stdtypes.rst:3612 +#: library/stdtypes.rst:3656 msgid "``'F'``" msgstr "" -#: library/stdtypes.rst:3614 +#: library/stdtypes.rst:3658 msgid "``'g'``" msgstr "" -#: library/stdtypes.rst:3614 +#: library/stdtypes.rst:3658 msgid "" "Floating point format. Uses lowercase exponential format if exponent is less " "than -4 or not less than precision, decimal format otherwise." msgstr "" -#: library/stdtypes.rst:3618 +#: library/stdtypes.rst:3662 msgid "``'G'``" msgstr "" -#: library/stdtypes.rst:3618 +#: library/stdtypes.rst:3662 msgid "" "Floating point format. Uses uppercase exponential format if exponent is less " "than -4 or not less than precision, decimal format otherwise." msgstr "" -#: library/stdtypes.rst:3622 +#: library/stdtypes.rst:3666 msgid "``'c'``" msgstr "" -#: library/stdtypes.rst:2404 +#: library/stdtypes.rst:2448 msgid "Single character (accepts integer or single character string)." msgstr "" -#: library/stdtypes.rst:3635 +#: library/stdtypes.rst:3679 msgid "``'r'``" msgstr "" -#: library/stdtypes.rst:2407 +#: library/stdtypes.rst:2451 msgid "String (converts any Python object using :func:`repr`)." msgstr "" -#: library/stdtypes.rst:3629 +#: library/stdtypes.rst:3673 msgid "``'s'``" msgstr "" -#: library/stdtypes.rst:2410 +#: library/stdtypes.rst:2454 msgid "String (converts any Python object using :func:`str`)." msgstr "" -#: library/stdtypes.rst:3632 +#: library/stdtypes.rst:3676 msgid "``'a'``" msgstr "" -#: library/stdtypes.rst:2413 +#: library/stdtypes.rst:2457 msgid "String (converts any Python object using :func:`ascii`)." msgstr "" -#: library/stdtypes.rst:3638 +#: library/stdtypes.rst:3682 msgid "``'%'``" msgstr "" -#: library/stdtypes.rst:3638 +#: library/stdtypes.rst:3682 msgid "No argument is converted, results in a ``'%'`` character in the result." msgstr "" -#: library/stdtypes.rst:3645 +#: library/stdtypes.rst:3689 msgid "" "The alternate form causes a leading octal specifier (``'0o'``) to be " "inserted before the first digit." msgstr "" -#: library/stdtypes.rst:3649 +#: library/stdtypes.rst:3693 msgid "" "The alternate form causes a leading ``'0x'`` or ``'0X'`` (depending on " "whether the ``'x'`` or ``'X'`` format was used) to be inserted before the " "first digit." msgstr "" -#: library/stdtypes.rst:3653 +#: library/stdtypes.rst:3697 msgid "" "The alternate form causes the result to always contain a decimal point, even " "if no digits follow it." msgstr "" -#: library/stdtypes.rst:3656 +#: library/stdtypes.rst:3700 msgid "" "The precision determines the number of digits after the decimal point and " "defaults to 6." msgstr "" -#: library/stdtypes.rst:3660 +#: library/stdtypes.rst:3704 msgid "" "The alternate form causes the result to always contain a decimal point, and " "trailing zeroes are not removed as they would otherwise be." msgstr "" -#: library/stdtypes.rst:3663 +#: library/stdtypes.rst:3707 msgid "" "The precision determines the number of significant digits before and after " "the decimal point and defaults to 6." msgstr "" -#: library/stdtypes.rst:3667 +#: library/stdtypes.rst:3711 msgid "If precision is ``N``, the output is truncated to ``N`` characters." msgstr "" -#: library/stdtypes.rst:3676 +#: library/stdtypes.rst:3720 msgid "See :pep:`237`." msgstr "" -#: library/stdtypes.rst:2450 +#: library/stdtypes.rst:2494 msgid "" "Since Python strings have an explicit length, ``%s`` conversions do not " "assume that ``'\\0'`` is the end of the string." msgstr "" -#: library/stdtypes.rst:2455 +#: library/stdtypes.rst:2499 msgid "" "``%f`` conversions for numbers whose absolute value is over 1e50 are no " "longer replaced by ``%g`` conversions." msgstr "" -#: library/stdtypes.rst:2466 +#: library/stdtypes.rst:2510 msgid "" "Binary Sequence Types --- :class:`bytes`, :class:`bytearray`, :class:" "`memoryview`" msgstr "" -#: library/stdtypes.rst:2474 +#: library/stdtypes.rst:2518 msgid "" "The core built-in types for manipulating binary data are :class:`bytes` and :" "class:`bytearray`. They are supported by :class:`memoryview` which uses the :" @@ -3905,17 +3964,17 @@ msgid "" "objects without needing to make a copy." msgstr "" -#: library/stdtypes.rst:2479 +#: library/stdtypes.rst:2523 msgid "" "The :mod:`array` module supports efficient storage of basic data types like " "32-bit integers and IEEE754 double-precision floating values." msgstr "" -#: library/stdtypes.rst:2485 +#: library/stdtypes.rst:2529 msgid "Bytes Objects" msgstr "" -#: library/stdtypes.rst:2489 +#: library/stdtypes.rst:2533 msgid "" "Bytes objects are immutable sequences of single bytes. Since many major " "binary protocols are based on the ASCII text encoding, bytes objects offer " @@ -3923,41 +3982,41 @@ msgid "" "and are closely related to string objects in a variety of other ways." msgstr "" -#: library/stdtypes.rst:2496 +#: library/stdtypes.rst:2540 msgid "" "Firstly, the syntax for bytes literals is largely the same as that for " "string literals, except that a ``b`` prefix is added:" msgstr "" -#: library/stdtypes.rst:2499 +#: library/stdtypes.rst:2543 msgid "Single quotes: ``b'still allows embedded \"double\" quotes'``" msgstr "" -#: library/stdtypes.rst:2500 +#: library/stdtypes.rst:2544 #, fuzzy msgid "Double quotes: ``b\"still allows embedded 'single' quotes\"``" msgstr "Çift tırnak: ``b\"katıştırılmış 'tek' tırnaklara izin verir\"``" -#: library/stdtypes.rst:2501 +#: library/stdtypes.rst:2545 msgid "" "Triple quoted: ``b'''3 single quotes'''``, ``b\"\"\"3 double quotes\"\"\"``" msgstr "" -#: library/stdtypes.rst:2503 +#: library/stdtypes.rst:2547 msgid "" "Only ASCII characters are permitted in bytes literals (regardless of the " "declared source code encoding). Any binary values over 127 must be entered " "into bytes literals using the appropriate escape sequence." msgstr "" -#: library/stdtypes.rst:2507 +#: library/stdtypes.rst:2551 msgid "" "As with string literals, bytes literals may also use a ``r`` prefix to " "disable processing of escape sequences. See :ref:`strings` for more about " "the various forms of bytes literal, including supported escape sequences." msgstr "" -#: library/stdtypes.rst:2511 +#: library/stdtypes.rst:2555 msgid "" "While bytes literals and representations are based on ASCII text, bytes " "objects actually behave like immutable sequences of integers, with each " @@ -3970,29 +4029,29 @@ msgid "" "compatible will usually lead to data corruption)." msgstr "" -#: library/stdtypes.rst:2521 +#: library/stdtypes.rst:2565 msgid "" "In addition to the literal forms, bytes objects can be created in a number " "of other ways:" msgstr "" -#: library/stdtypes.rst:2524 +#: library/stdtypes.rst:2568 msgid "A zero-filled bytes object of a specified length: ``bytes(10)``" msgstr "" -#: library/stdtypes.rst:2525 +#: library/stdtypes.rst:2569 msgid "From an iterable of integers: ``bytes(range(20))``" msgstr "" -#: library/stdtypes.rst:2526 +#: library/stdtypes.rst:2570 msgid "Copying existing binary data via the buffer protocol: ``bytes(obj)``" msgstr "" -#: library/stdtypes.rst:2528 +#: library/stdtypes.rst:2572 msgid "Also see the :ref:`bytes ` built-in." msgstr "" -#: library/stdtypes.rst:2530 +#: library/stdtypes.rst:2574 msgid "" "Since 2 hexadecimal digits correspond precisely to a single byte, " "hexadecimal numbers are a commonly used format for describing binary data. " @@ -4000,32 +4059,32 @@ msgid "" "that format:" msgstr "" -#: library/stdtypes.rst:2536 +#: library/stdtypes.rst:2580 msgid "" "This :class:`bytes` class method returns a bytes object, decoding the given " "string object. The string must contain two hexadecimal digits per byte, " "with ASCII whitespace being ignored." msgstr "" -#: library/stdtypes.rst:2543 +#: library/stdtypes.rst:2587 msgid "" ":meth:`bytes.fromhex` now skips all ASCII whitespace in the string, not just " "spaces." msgstr "" -#: library/stdtypes.rst:2547 +#: library/stdtypes.rst:2591 msgid "" "A reverse conversion function exists to transform a bytes object into its " "hexadecimal representation." msgstr "" -#: library/stdtypes.rst:2637 +#: library/stdtypes.rst:2681 msgid "" "Return a string object containing two hexadecimal digits for each byte in " "the instance." msgstr "" -#: library/stdtypes.rst:2558 +#: library/stdtypes.rst:2602 msgid "" "If you want to make the hex string easier to read, you can specify a single " "character separator *sep* parameter to include in the output. By default, " @@ -4034,13 +4093,13 @@ msgid "" "the separator position from the right, negative values from the left." msgstr "" -#: library/stdtypes.rst:2575 +#: library/stdtypes.rst:2619 msgid "" ":meth:`bytes.hex` now supports optional *sep* and *bytes_per_sep* parameters " "to insert separators between bytes in the hex output." msgstr "" -#: library/stdtypes.rst:2579 +#: library/stdtypes.rst:2623 msgid "" "Since bytes objects are sequences of integers (akin to a tuple), for a bytes " "object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be a bytes " @@ -4048,58 +4107,58 @@ msgid "" "and slicing will produce a string of length 1)" msgstr "" -#: library/stdtypes.rst:2584 +#: library/stdtypes.rst:2628 msgid "" "The representation of bytes objects uses the literal format (``b'...'``) " "since it is often more useful than e.g. ``bytes([46, 46, 46])``. You can " "always convert a bytes object into a list of integers using ``list(b)``." msgstr "" -#: library/stdtypes.rst:2592 +#: library/stdtypes.rst:2636 msgid "Bytearray Objects" msgstr "" -#: library/stdtypes.rst:2596 +#: library/stdtypes.rst:2640 msgid "" ":class:`bytearray` objects are a mutable counterpart to :class:`bytes` " "objects." msgstr "" -#: library/stdtypes.rst:2601 +#: library/stdtypes.rst:2645 msgid "" "There is no dedicated literal syntax for bytearray objects, instead they are " "always created by calling the constructor:" msgstr "" -#: library/stdtypes.rst:2604 +#: library/stdtypes.rst:2648 msgid "Creating an empty instance: ``bytearray()``" msgstr "" -#: library/stdtypes.rst:2605 +#: library/stdtypes.rst:2649 msgid "Creating a zero-filled instance with a given length: ``bytearray(10)``" msgstr "" -#: library/stdtypes.rst:2606 +#: library/stdtypes.rst:2650 msgid "From an iterable of integers: ``bytearray(range(20))``" msgstr "" -#: library/stdtypes.rst:2607 +#: library/stdtypes.rst:2651 msgid "" "Copying existing binary data via the buffer protocol: ``bytearray(b'Hi!')``" msgstr "" -#: library/stdtypes.rst:2609 +#: library/stdtypes.rst:2653 msgid "" "As bytearray objects are mutable, they support the :ref:`mutable ` sequence operations in addition to the common bytes and bytearray " "operations described in :ref:`bytes-methods`." msgstr "" -#: library/stdtypes.rst:2613 +#: library/stdtypes.rst:2657 msgid "Also see the :ref:`bytearray ` built-in." msgstr "" -#: library/stdtypes.rst:2615 +#: library/stdtypes.rst:2659 msgid "" "Since 2 hexadecimal digits correspond precisely to a single byte, " "hexadecimal numbers are a commonly used format for describing binary data. " @@ -4107,33 +4166,33 @@ msgid "" "in that format:" msgstr "" -#: library/stdtypes.rst:2621 +#: library/stdtypes.rst:2665 msgid "" "This :class:`bytearray` class method returns bytearray object, decoding the " "given string object. The string must contain two hexadecimal digits per " "byte, with ASCII whitespace being ignored." msgstr "" -#: library/stdtypes.rst:2628 +#: library/stdtypes.rst:2672 msgid "" ":meth:`bytearray.fromhex` now skips all ASCII whitespace in the string, not " "just spaces." msgstr "" -#: library/stdtypes.rst:2632 +#: library/stdtypes.rst:2676 msgid "" "A reverse conversion function exists to transform a bytearray object into " "its hexadecimal representation." msgstr "" -#: library/stdtypes.rst:2645 +#: library/stdtypes.rst:2689 msgid "" "Similar to :meth:`bytes.hex`, :meth:`bytearray.hex` now supports optional " "*sep* and *bytes_per_sep* parameters to insert separators between bytes in " "the hex output." msgstr "" -#: library/stdtypes.rst:2650 +#: library/stdtypes.rst:2694 msgid "" "Since bytearray objects are sequences of integers (akin to a list), for a " "bytearray object *b*, ``b[0]`` will be an integer, while ``b[0:1]`` will be " @@ -4141,7 +4200,7 @@ msgid "" "both indexing and slicing will produce a string of length 1)" msgstr "" -#: library/stdtypes.rst:2655 +#: library/stdtypes.rst:2699 msgid "" "The representation of bytearray objects uses the bytes literal format " "(``bytearray(b'...')``) since it is often more useful than e.g. " @@ -4149,11 +4208,11 @@ msgid "" "a list of integers using ``list(b)``." msgstr "" -#: library/stdtypes.rst:2664 +#: library/stdtypes.rst:2708 msgid "Bytes and Bytearray Operations" msgstr "" -#: library/stdtypes.rst:2669 +#: library/stdtypes.rst:2713 msgid "" "Both bytes and bytearray objects support the :ref:`common ` " "sequence operations. They interoperate not just with operands of the same " @@ -4162,98 +4221,98 @@ msgid "" "return type of the result may depend on the order of operands." msgstr "" -#: library/stdtypes.rst:2677 +#: library/stdtypes.rst:2721 msgid "" "The methods on bytes and bytearray objects don't accept strings as their " "arguments, just as the methods on strings don't accept bytes as their " "arguments. For example, you have to write::" msgstr "" -#: library/stdtypes.rst:2684 +#: library/stdtypes.rst:2728 msgid "and::" msgstr "" -#: library/stdtypes.rst:2689 +#: library/stdtypes.rst:2733 msgid "" "Some bytes and bytearray operations assume the use of ASCII compatible " "binary formats, and hence should be avoided when working with arbitrary " "binary data. These restrictions are covered below." msgstr "" -#: library/stdtypes.rst:2694 +#: library/stdtypes.rst:2738 msgid "" "Using these ASCII based operations to manipulate binary data that is not " "stored in an ASCII based format may lead to data corruption." msgstr "" -#: library/stdtypes.rst:2697 +#: library/stdtypes.rst:2741 msgid "" "The following methods on bytes and bytearray objects can be used with " "arbitrary binary data." msgstr "" -#: library/stdtypes.rst:2703 +#: library/stdtypes.rst:2747 msgid "" "Return the number of non-overlapping occurrences of subsequence *sub* in the " "range [*start*, *end*]. Optional arguments *start* and *end* are " "interpreted as in slice notation." msgstr "" -#: library/stdtypes.rst:2812 library/stdtypes.rst:2900 -#: library/stdtypes.rst:2913 +#: library/stdtypes.rst:2856 library/stdtypes.rst:2944 +#: library/stdtypes.rst:2957 msgid "" "The subsequence to search for may be any :term:`bytes-like object` or an " "integer in the range 0 to 255." msgstr "" -#: library/stdtypes.rst:2710 +#: library/stdtypes.rst:2754 msgid "" "If *sub* is empty, returns the number of empty slices between characters " "which is the length of the bytes object plus one." msgstr "" -#: library/stdtypes.rst:2824 library/stdtypes.rst:2903 -#: library/stdtypes.rst:2916 +#: library/stdtypes.rst:2868 library/stdtypes.rst:2947 +#: library/stdtypes.rst:2960 msgid "Also accept an integer in the range 0 to 255 as the subsequence." msgstr "" -#: library/stdtypes.rst:2720 +#: library/stdtypes.rst:2764 msgid "" "If the binary data starts with the *prefix* string, return " "``bytes[len(prefix):]``. Otherwise, return a copy of the original binary " "data::" msgstr "" -#: library/stdtypes.rst:2729 +#: library/stdtypes.rst:2773 msgid "The *prefix* may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:2755 library/stdtypes.rst:2981 -#: library/stdtypes.rst:3026 library/stdtypes.rst:3082 -#: library/stdtypes.rst:3170 library/stdtypes.rst:3337 -#: library/stdtypes.rst:3435 library/stdtypes.rst:3478 -#: library/stdtypes.rst:3680 +#: library/stdtypes.rst:2799 library/stdtypes.rst:3025 +#: library/stdtypes.rst:3070 library/stdtypes.rst:3126 +#: library/stdtypes.rst:3214 library/stdtypes.rst:3381 +#: library/stdtypes.rst:3479 library/stdtypes.rst:3522 +#: library/stdtypes.rst:3724 msgid "" "The bytearray version of this method does *not* operate in place - it always " "produces a new object, even if no changes were made." msgstr "" -#: library/stdtypes.rst:2742 +#: library/stdtypes.rst:2786 msgid "" "If the binary data ends with the *suffix* string and that *suffix* is not " "empty, return ``bytes[:-len(suffix)]``. Otherwise, return a copy of the " "original binary data::" msgstr "" -#: library/stdtypes.rst:2751 +#: library/stdtypes.rst:2795 msgid "The *suffix* may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:2764 +#: library/stdtypes.rst:2808 msgid "Return the bytes decoded to a :class:`str`." msgstr "" -#: library/stdtypes.rst:2769 +#: library/stdtypes.rst:2813 msgid "" "*errors* controls how decoding errors are handled. If ``'strict'`` (the " "default), a :exc:`UnicodeError` exception is raised. Other possible values " @@ -4261,21 +4320,21 @@ msgid "" "`codecs.register_error`. See :ref:`error-handlers` for details." msgstr "" -#: library/stdtypes.rst:2775 +#: library/stdtypes.rst:2819 msgid "" "For performance reasons, the value of *errors* is not checked for validity " "unless a decoding error actually occurs, :ref:`devmode` is enabled or a :ref:" "`debug build ` is used." msgstr "" -#: library/stdtypes.rst:2781 +#: library/stdtypes.rst:2825 msgid "" "Passing the *encoding* argument to :class:`str` allows decoding any :term:" "`bytes-like object` directly, without needing to make a temporary :class:`!" "bytes` or :class:`!bytearray` object." msgstr "" -#: library/stdtypes.rst:2796 +#: library/stdtypes.rst:2840 msgid "" "Return ``True`` if the binary data ends with the specified *suffix*, " "otherwise return ``False``. *suffix* can also be a tuple of suffixes to " @@ -4283,11 +4342,11 @@ msgid "" "optional *end*, stop comparing at that position." msgstr "" -#: library/stdtypes.rst:2801 +#: library/stdtypes.rst:2845 msgid "The suffix(es) to search for may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:2807 +#: library/stdtypes.rst:2851 msgid "" "Return the lowest index in the data where the subsequence *sub* is found, " "such that *sub* is contained in the slice ``s[start:end]``. Optional " @@ -4295,20 +4354,20 @@ msgid "" "``-1`` if *sub* is not found." msgstr "" -#: library/stdtypes.rst:2817 +#: library/stdtypes.rst:2861 msgid "" "The :meth:`~bytes.find` method should be used only if you need to know the " "position of *sub*. To check if *sub* is a substring or not, use the :" "keyword:`in` operator::" msgstr "" -#: library/stdtypes.rst:2831 +#: library/stdtypes.rst:2875 msgid "" "Like :meth:`~bytes.find`, but raise :exc:`ValueError` when the subsequence " "is not found." msgstr "" -#: library/stdtypes.rst:2844 +#: library/stdtypes.rst:2888 msgid "" "Return a bytes or bytearray object which is the concatenation of the binary " "data sequences in *iterable*. A :exc:`TypeError` will be raised if there " @@ -4318,7 +4377,7 @@ msgid "" "method." msgstr "" -#: library/stdtypes.rst:2855 +#: library/stdtypes.rst:2899 msgid "" "This static method returns a translation table usable for :meth:`bytes." "translate` that will map each character in *from* into the character at the " @@ -4326,7 +4385,7 @@ msgid "" "objects ` and have the same length." msgstr "" -#: library/stdtypes.rst:2866 +#: library/stdtypes.rst:2910 msgid "" "Split the sequence at the first occurrence of *sep*, and return a 3-tuple " "containing the part before the separator, the separator itself or its " @@ -4335,24 +4394,24 @@ msgid "" "by two empty bytes or bytearray objects." msgstr "" -#: library/stdtypes.rst:2930 +#: library/stdtypes.rst:2974 msgid "The separator to search for may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:2879 +#: library/stdtypes.rst:2923 msgid "" "Return a copy of the sequence with all occurrences of subsequence *old* " "replaced by *new*. If the optional argument *count* is given, only the " "first *count* occurrences are replaced." msgstr "" -#: library/stdtypes.rst:2883 +#: library/stdtypes.rst:2927 msgid "" "The subsequence to search for and its replacement may be any :term:`bytes-" "like object`." msgstr "" -#: library/stdtypes.rst:2895 +#: library/stdtypes.rst:2939 msgid "" "Return the highest index in the sequence where the subsequence *sub* is " "found, such that *sub* is contained within ``s[start:end]``. Optional " @@ -4360,13 +4419,13 @@ msgid "" "``-1`` on failure." msgstr "" -#: library/stdtypes.rst:2910 +#: library/stdtypes.rst:2954 msgid "" "Like :meth:`~bytes.rfind` but raises :exc:`ValueError` when the subsequence " "*sub* is not found." msgstr "" -#: library/stdtypes.rst:2923 +#: library/stdtypes.rst:2967 msgid "" "Split the sequence at the last occurrence of *sep*, and return a 3-tuple " "containing the part before the separator, the separator itself or its " @@ -4375,7 +4434,7 @@ msgid "" "followed by a copy of the original sequence." msgstr "" -#: library/stdtypes.rst:2936 +#: library/stdtypes.rst:2980 msgid "" "Return ``True`` if the binary data starts with the specified *prefix*, " "otherwise return ``False``. *prefix* can also be a tuple of prefixes to " @@ -4383,11 +4442,11 @@ msgid "" "optional *end*, stop comparing at that position." msgstr "" -#: library/stdtypes.rst:2941 +#: library/stdtypes.rst:2985 msgid "The prefix(es) to search for may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:2947 +#: library/stdtypes.rst:2991 msgid "" "Return a copy of the bytes or bytearray object where all bytes occurring in " "the optional argument *delete* are removed, and the remaining bytes have " @@ -4395,22 +4454,22 @@ msgid "" "object of length 256." msgstr "" -#: library/stdtypes.rst:2952 +#: library/stdtypes.rst:2996 msgid "" "You can use the :func:`bytes.maketrans` method to create a translation table." msgstr "" -#: library/stdtypes.rst:2955 +#: library/stdtypes.rst:2999 msgid "" "Set the *table* argument to ``None`` for translations that only delete " "characters::" msgstr "" -#: library/stdtypes.rst:2961 +#: library/stdtypes.rst:3005 msgid "*delete* is now supported as a keyword argument." msgstr "" -#: library/stdtypes.rst:2965 +#: library/stdtypes.rst:3009 msgid "" "The following methods on bytes and bytearray objects have default behaviours " "that assume the use of ASCII compatible binary formats, but can still be " @@ -4419,7 +4478,7 @@ msgid "" "instead produce new objects." msgstr "" -#: library/stdtypes.rst:2974 +#: library/stdtypes.rst:3018 msgid "" "Return a copy of the object centered in a sequence of length *width*. " "Padding is done using the specified *fillbyte* (default is an ASCII space). " @@ -4427,7 +4486,7 @@ msgid "" "less than or equal to ``len(s)``." msgstr "" -#: library/stdtypes.rst:2988 +#: library/stdtypes.rst:3032 msgid "" "Return a copy of the object left justified in a sequence of length *width*. " "Padding is done using the specified *fillbyte* (default is an ASCII space). " @@ -4435,7 +4494,7 @@ msgid "" "less than or equal to ``len(s)``." msgstr "" -#: library/stdtypes.rst:3002 +#: library/stdtypes.rst:3046 msgid "" "Return a copy of the sequence with specified leading bytes removed. The " "*chars* argument is a binary sequence specifying the set of byte values to " @@ -4445,14 +4504,14 @@ msgid "" "all combinations of its values are stripped::" msgstr "" -#: library/stdtypes.rst:3014 +#: library/stdtypes.rst:3058 msgid "" "The binary sequence of byte values to remove may be any :term:`bytes-like " "object`. See :meth:`~bytes.removeprefix` for a method that will remove a " "single prefix string rather than all of a set of characters. For example::" msgstr "" -#: library/stdtypes.rst:3033 +#: library/stdtypes.rst:3077 msgid "" "Return a copy of the object right justified in a sequence of length *width*. " "Padding is done using the specified *fillbyte* (default is an ASCII space). " @@ -4460,7 +4519,7 @@ msgid "" "less than or equal to ``len(s)``." msgstr "" -#: library/stdtypes.rst:3047 +#: library/stdtypes.rst:3091 msgid "" "Split the binary sequence into subsequences of the same type, using *sep* as " "the delimiter string. If *maxsplit* is given, at most *maxsplit* splits are " @@ -4470,7 +4529,7 @@ msgid "" "described in detail below." msgstr "" -#: library/stdtypes.rst:3058 +#: library/stdtypes.rst:3102 msgid "" "Return a copy of the sequence with specified trailing bytes removed. The " "*chars* argument is a binary sequence specifying the set of byte values to " @@ -4480,14 +4539,14 @@ msgid "" "all combinations of its values are stripped::" msgstr "" -#: library/stdtypes.rst:3070 +#: library/stdtypes.rst:3114 msgid "" "The binary sequence of byte values to remove may be any :term:`bytes-like " "object`. See :meth:`~bytes.removesuffix` for a method that will remove a " "single suffix string rather than all of a set of characters. For example::" msgstr "" -#: library/stdtypes.rst:3089 +#: library/stdtypes.rst:3133 msgid "" "Split the binary sequence into subsequences of the same type, using *sep* as " "the delimiter string. If *maxsplit* is given and non-negative, at most " @@ -4496,7 +4555,7 @@ msgid "" "limit on the number of splits (all possible splits are made)." msgstr "" -#: library/stdtypes.rst:3095 +#: library/stdtypes.rst:3139 msgid "" "If *sep* is given, consecutive delimiters are not grouped together and are " "deemed to delimit empty subsequences (for example, ``b'1,,2'.split(b',')`` " @@ -4507,7 +4566,7 @@ msgid "" "object being split. The *sep* argument may be any :term:`bytes-like object`." msgstr "" -#: library/stdtypes.rst:3113 +#: library/stdtypes.rst:3157 msgid "" "If *sep* is not specified or is ``None``, a different splitting algorithm is " "applied: runs of consecutive ASCII whitespace are regarded as a single " @@ -4517,7 +4576,7 @@ msgid "" "without a specified separator returns ``[]``." msgstr "" -#: library/stdtypes.rst:3134 +#: library/stdtypes.rst:3178 msgid "" "Return a copy of the sequence with specified leading and trailing bytes " "removed. The *chars* argument is a binary sequence specifying the set of " @@ -4527,13 +4586,13 @@ msgid "" "a prefix or suffix; rather, all combinations of its values are stripped::" msgstr "" -#: library/stdtypes.rst:3147 +#: library/stdtypes.rst:3191 msgid "" "The binary sequence of byte values to remove may be any :term:`bytes-like " "object`." msgstr "" -#: library/stdtypes.rst:3156 +#: library/stdtypes.rst:3200 msgid "" "The following methods on bytes and bytearray objects assume the use of ASCII " "compatible binary formats and should not be applied to arbitrary binary " @@ -4541,14 +4600,14 @@ msgid "" "operate in place, and instead produce new objects." msgstr "" -#: library/stdtypes.rst:3164 +#: library/stdtypes.rst:3208 msgid "" "Return a copy of the sequence with each byte interpreted as an ASCII " "character, and the first byte capitalized and the rest lowercased. Non-ASCII " "byte values are passed through unchanged." msgstr "" -#: library/stdtypes.rst:3177 +#: library/stdtypes.rst:3221 msgid "" "Return a copy of the sequence where all ASCII tab characters are replaced by " "one or more ASCII spaces, depending on the current column and the given tab " @@ -4564,7 +4623,7 @@ msgid "" "by one regardless of how the byte value is represented when printed::" msgstr "" -#: library/stdtypes.rst:3205 +#: library/stdtypes.rst:3249 msgid "" "Return ``True`` if all bytes in the sequence are alphabetical ASCII " "characters or ASCII decimal digits and the sequence is not empty, ``False`` " @@ -4573,7 +4632,7 @@ msgid "" "digits are those byte values in the sequence ``b'0123456789'``." msgstr "" -#: library/stdtypes.rst:3222 +#: library/stdtypes.rst:3266 msgid "" "Return ``True`` if all bytes in the sequence are alphabetic ASCII characters " "and the sequence is not empty, ``False`` otherwise. Alphabetic ASCII " @@ -4581,34 +4640,34 @@ msgid "" "``b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" -#: library/stdtypes.rst:3238 +#: library/stdtypes.rst:3282 msgid "" "Return ``True`` if the sequence is empty or all bytes in the sequence are " "ASCII, ``False`` otherwise. ASCII bytes are in the range 0-0x7F." msgstr "" -#: library/stdtypes.rst:3248 +#: library/stdtypes.rst:3292 msgid "" "Return ``True`` if all bytes in the sequence are ASCII decimal digits and " "the sequence is not empty, ``False`` otherwise. ASCII decimal digits are " "those byte values in the sequence ``b'0123456789'``." msgstr "" -#: library/stdtypes.rst:3263 +#: library/stdtypes.rst:3307 msgid "" "Return ``True`` if there is at least one lowercase ASCII character in the " "sequence and no uppercase ASCII characters, ``False`` otherwise." msgstr "" -#: library/stdtypes.rst:3315 library/stdtypes.rst:3381 -#: library/stdtypes.rst:3450 +#: library/stdtypes.rst:3359 library/stdtypes.rst:3425 +#: library/stdtypes.rst:3494 msgid "" "Lowercase ASCII characters are those byte values in the sequence " "``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte " "values in the sequence ``b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'``." msgstr "" -#: library/stdtypes.rst:3281 +#: library/stdtypes.rst:3325 msgid "" "Return ``True`` if all bytes in the sequence are ASCII whitespace and the " "sequence is not empty, ``False`` otherwise. ASCII whitespace characters are " @@ -4616,27 +4675,27 @@ msgid "" "newline, carriage return, vertical tab, form feed)." msgstr "" -#: library/stdtypes.rst:3290 +#: library/stdtypes.rst:3334 msgid "" "Return ``True`` if the sequence is ASCII titlecase and the sequence is not " "empty, ``False`` otherwise. See :meth:`bytes.title` for more details on the " "definition of \"titlecase\"." msgstr "" -#: library/stdtypes.rst:3305 +#: library/stdtypes.rst:3349 msgid "" "Return ``True`` if there is at least one uppercase alphabetic ASCII " "character in the sequence and no lowercase ASCII characters, ``False`` " "otherwise." msgstr "" -#: library/stdtypes.rst:3323 +#: library/stdtypes.rst:3367 msgid "" "Return a copy of the sequence with all the uppercase ASCII characters " "converted to their corresponding lowercase counterpart." msgstr "" -#: library/stdtypes.rst:3348 +#: library/stdtypes.rst:3392 msgid "" "Return a list of the lines in the binary sequence, breaking at ASCII line " "boundaries. This method uses the :term:`universal newlines` approach to " @@ -4644,20 +4703,20 @@ msgid "" "*keepends* is given and true." msgstr "" -#: library/stdtypes.rst:3360 +#: library/stdtypes.rst:3404 msgid "" "Unlike :meth:`~bytes.split` when a delimiter string *sep* is given, this " "method returns an empty list for the empty string, and a terminal line break " "does not result in an extra line::" msgstr "" -#: library/stdtypes.rst:3373 +#: library/stdtypes.rst:3417 msgid "" "Return a copy of the sequence with all the lowercase ASCII characters " "converted to their corresponding uppercase counterpart and vice-versa." msgstr "" -#: library/stdtypes.rst:3385 +#: library/stdtypes.rst:3429 msgid "" "Unlike :func:`str.swapcase()`, it is always the case that ``bin.swapcase()." "swapcase() == bin`` for the binary versions. Case conversions are " @@ -4665,14 +4724,14 @@ msgid "" "Unicode code points." msgstr "" -#: library/stdtypes.rst:3399 +#: library/stdtypes.rst:3443 msgid "" "Return a titlecased version of the binary sequence where words start with an " "uppercase ASCII character and the remaining characters are lowercase. " "Uncased byte values are left unmodified." msgstr "" -#: library/stdtypes.rst:3408 +#: library/stdtypes.rst:3452 msgid "" "Lowercase ASCII characters are those byte values in the sequence " "``b'abcdefghijklmnopqrstuvwxyz'``. Uppercase ASCII characters are those byte " @@ -4680,20 +4739,20 @@ msgid "" "values are uncased." msgstr "" -#: library/stdtypes.rst:3421 +#: library/stdtypes.rst:3465 msgid "" "A workaround for apostrophes can be constructed using regular expressions::" msgstr "" "Kesme işaretleri için geçici bir çözüm düzenli ifadeler kullanılarak " "oluşturulabilir::" -#: library/stdtypes.rst:3442 +#: library/stdtypes.rst:3486 msgid "" "Return a copy of the sequence with all the lowercase ASCII characters " "converted to their corresponding uppercase counterpart." msgstr "" -#: library/stdtypes.rst:3463 +#: library/stdtypes.rst:3507 msgid "" "Return a copy of the sequence left filled with ASCII ``b'0'`` digits to make " "a sequence of length *width*. A leading sign prefix (``b'+'``/ ``b'-'``) is " @@ -4702,11 +4761,11 @@ msgid "" "*width* is less than or equal to ``len(seq)``." msgstr "" -#: library/stdtypes.rst:3485 +#: library/stdtypes.rst:3529 msgid "``printf``-style Bytes Formatting" msgstr "" -#: library/stdtypes.rst:3502 +#: library/stdtypes.rst:3546 msgid "" "The formatting operations described here exhibit a variety of quirks that " "lead to a number of common errors (such as failing to display tuples and " @@ -4714,7 +4773,7 @@ msgid "" "dictionary, wrap it in a tuple." msgstr "" -#: library/stdtypes.rst:3507 +#: library/stdtypes.rst:3551 msgid "" "Bytes objects (``bytes``/``bytearray``) have one unique built-in operation: " "the ``%`` operator (modulo). This is also known as the bytes *formatting* or " @@ -4724,7 +4783,7 @@ msgid "" "func:`sprintf` in the C language." msgstr "" -#: library/stdtypes.rst:3514 +#: library/stdtypes.rst:3558 msgid "" "If *format* requires a single argument, *values* may be a single non-tuple " "object. [5]_ Otherwise, *values* must be a tuple with exactly the number of " @@ -4732,7 +4791,7 @@ msgid "" "example, a dictionary)." msgstr "" -#: library/stdtypes.rst:3548 +#: library/stdtypes.rst:3592 msgid "" "When the right argument is a dictionary (or other mapping type), then the " "formats in the bytes object *must* include a parenthesised mapping key into " @@ -4740,73 +4799,73 @@ msgid "" "mapping key selects the value to be formatted from the mapping. For example:" msgstr "" -#: library/stdtypes.rst:3622 +#: library/stdtypes.rst:3666 msgid "Single byte (accepts integer or single byte objects)." msgstr "" -#: library/stdtypes.rst:3625 +#: library/stdtypes.rst:3669 msgid "``'b'``" msgstr "" -#: library/stdtypes.rst:3625 +#: library/stdtypes.rst:3669 msgid "" "Bytes (any object that follows the :ref:`buffer protocol ` or " "has :meth:`__bytes__`)." msgstr "" -#: library/stdtypes.rst:3629 +#: library/stdtypes.rst:3673 msgid "" "``'s'`` is an alias for ``'b'`` and should only be used for Python2/3 code " "bases." msgstr "" -#: library/stdtypes.rst:3632 +#: library/stdtypes.rst:3676 msgid "" "Bytes (converts any Python object using ``repr(obj).encode('ascii', " "'backslashreplace')``)." msgstr "" -#: library/stdtypes.rst:3635 +#: library/stdtypes.rst:3679 msgid "" "``'r'`` is an alias for ``'a'`` and should only be used for Python2/3 code " "bases." msgstr "" -#: library/stdtypes.rst:3635 +#: library/stdtypes.rst:3679 msgid "\\(7)" msgstr "" -#: library/stdtypes.rst:3670 +#: library/stdtypes.rst:3714 msgid "``b'%s'`` is deprecated, but will not be removed during the 3.x series." msgstr "" -#: library/stdtypes.rst:3673 +#: library/stdtypes.rst:3717 msgid "``b'%r'`` is deprecated, but will not be removed during the 3.x series." msgstr "" -#: library/stdtypes.rst:3685 +#: library/stdtypes.rst:3729 msgid ":pep:`461` - Adding % formatting to bytes and bytearray" msgstr "" -#: library/stdtypes.rst:3692 +#: library/stdtypes.rst:3736 msgid "Memory Views" msgstr "" -#: library/stdtypes.rst:3694 +#: library/stdtypes.rst:3738 msgid "" ":class:`memoryview` objects allow Python code to access the internal data of " "an object that supports the :ref:`buffer protocol ` without " "copying." msgstr "" -#: library/stdtypes.rst:3700 +#: library/stdtypes.rst:3744 msgid "" "Create a :class:`memoryview` that references *object*. *object* must " "support the buffer protocol. Built-in objects that support the buffer " "protocol include :class:`bytes` and :class:`bytearray`." msgstr "" -#: library/stdtypes.rst:3704 +#: library/stdtypes.rst:3748 msgid "" "A :class:`memoryview` has the notion of an *element*, which is the atomic " "memory unit handled by the originating *object*. For many simple types such " @@ -4814,23 +4873,32 @@ msgid "" "other types such as :class:`array.array` may have bigger elements." msgstr "" -#: library/stdtypes.rst:3709 +#: library/stdtypes.rst:3753 +msgid "" +"``len(view)`` is equal to the length of :class:`~memoryview.tolist`, which " +"is the nested list representation of the view. If ``view.ndim = 1``, this is " +"equal to the number of elements in the view." +msgstr "" + +#: library/stdtypes.rst:3757 +msgid "" +"If ``view.ndim == 0``, ``len(view)`` now raises :exc:`TypeError` instead of " +"returning 1." +msgstr "" + +#: library/stdtypes.rst:3760 msgid "" -"``len(view)`` is equal to the length of :class:`~memoryview.tolist`. If " -"``view.ndim = 0``, the length is 1. If ``view.ndim = 1``, the length is " -"equal to the number of elements in the view. For higher dimensions, the " -"length is equal to the length of the nested list representation of the view. " "The :class:`~memoryview.itemsize` attribute will give you the number of " "bytes in a single element." msgstr "" -#: library/stdtypes.rst:3716 +#: library/stdtypes.rst:3763 msgid "" "A :class:`memoryview` supports slicing and indexing to expose its data. One-" "dimensional slicing will result in a subview::" msgstr "" -#: library/stdtypes.rst:3729 +#: library/stdtypes.rst:3776 msgid "" "If :class:`~memoryview.format` is one of the native format specifiers from " "the :mod:`struct` module, indexing with an integer or a tuple of integers is " @@ -4841,82 +4909,82 @@ msgid "" "memoryviews can be indexed with the empty tuple." msgstr "" -#: library/stdtypes.rst:3738 +#: library/stdtypes.rst:3785 msgid "Here is an example with a non-byte format::" msgstr "" -#: library/stdtypes.rst:3750 +#: library/stdtypes.rst:3797 msgid "" "If the underlying object is writable, the memoryview supports one-" "dimensional slice assignment. Resizing is not allowed::" msgstr "" -#: library/stdtypes.rst:3771 +#: library/stdtypes.rst:3818 msgid "" "One-dimensional memoryviews of :term:`hashable` (read-only) types with " "formats 'B', 'b' or 'c' are also hashable. The hash is defined as ``hash(m) " "== hash(m.tobytes())``::" msgstr "" -#: library/stdtypes.rst:3783 +#: library/stdtypes.rst:3830 msgid "" "One-dimensional memoryviews can now be sliced. One-dimensional memoryviews " "with formats 'B', 'b' or 'c' are now :term:`hashable`." msgstr "" -#: library/stdtypes.rst:3787 +#: library/stdtypes.rst:3834 msgid "" "memoryview is now registered automatically with :class:`collections.abc." "Sequence`" msgstr "" -#: library/stdtypes.rst:3791 +#: library/stdtypes.rst:3838 msgid "memoryviews can now be indexed with tuple of integers." msgstr "" -#: library/stdtypes.rst:3794 +#: library/stdtypes.rst:3841 msgid ":class:`memoryview` has several methods:" msgstr "" -#: library/stdtypes.rst:3798 +#: library/stdtypes.rst:3845 msgid "" "A memoryview and a :pep:`3118` exporter are equal if their shapes are " "equivalent and if all corresponding values are equal when the operands' " "respective format codes are interpreted using :mod:`struct` syntax." msgstr "" -#: library/stdtypes.rst:3802 +#: library/stdtypes.rst:3849 msgid "" "For the subset of :mod:`struct` format strings currently supported by :meth:" "`tolist`, ``v`` and ``w`` are equal if ``v.tolist() == w.tolist()``::" msgstr "" -#: library/stdtypes.rst:3821 +#: library/stdtypes.rst:3868 msgid "" "If either format string is not supported by the :mod:`struct` module, then " "the objects will always compare as unequal (even if the format strings and " "buffer contents are identical)::" msgstr "" -#: library/stdtypes.rst:3837 +#: library/stdtypes.rst:3884 msgid "" "Note that, as with floating point numbers, ``v is w`` does *not* imply ``v " "== w`` for memoryview objects." msgstr "" -#: library/stdtypes.rst:3840 +#: library/stdtypes.rst:3887 msgid "" "Previous versions compared the raw memory disregarding the item format and " "the logical array structure." msgstr "" -#: library/stdtypes.rst:3846 +#: library/stdtypes.rst:3893 msgid "" "Return the data in the buffer as a bytestring. This is equivalent to " "calling the :class:`bytes` constructor on the memoryview. ::" msgstr "" -#: library/stdtypes.rst:3855 +#: library/stdtypes.rst:3902 msgid "" "For non-contiguous arrays the result is equal to the flattened list " "representation with all elements converted to bytes. :meth:`tobytes` " @@ -4924,7 +4992,7 @@ msgid "" "module syntax." msgstr "" -#: library/stdtypes.rst:3860 +#: library/stdtypes.rst:3907 msgid "" "*order* can be {'C', 'F', 'A'}. When *order* is 'C' or 'F', the data of the " "original array is converted to C or Fortran order. For contiguous views, 'A' " @@ -4933,36 +5001,36 @@ msgid "" "to C first. *order=None* is the same as *order='C'*." msgstr "" -#: library/stdtypes.rst:3869 +#: library/stdtypes.rst:3916 msgid "" "Return a string object containing two hexadecimal digits for each byte in " "the buffer. ::" msgstr "" -#: library/stdtypes.rst:3878 +#: library/stdtypes.rst:3925 msgid "" "Similar to :meth:`bytes.hex`, :meth:`memoryview.hex` now supports optional " "*sep* and *bytes_per_sep* parameters to insert separators between bytes in " "the hex output." msgstr "" -#: library/stdtypes.rst:3885 +#: library/stdtypes.rst:3932 msgid "Return the data in the buffer as a list of elements. ::" msgstr "" -#: library/stdtypes.rst:3895 +#: library/stdtypes.rst:3942 msgid "" ":meth:`tolist` now supports all single character native formats in :mod:" "`struct` module syntax as well as multi-dimensional representations." msgstr "" -#: library/stdtypes.rst:3902 +#: library/stdtypes.rst:3949 msgid "" "Return a readonly version of the memoryview object. The original memoryview " "object is unchanged. ::" msgstr "" -#: library/stdtypes.rst:3921 +#: library/stdtypes.rst:3968 msgid "" "Release the underlying buffer exposed by the memoryview object. Many " "objects take special actions when a view is held on them (for example, a :" @@ -4971,20 +5039,20 @@ msgid "" "resources) as soon as possible." msgstr "" -#: library/stdtypes.rst:3927 +#: library/stdtypes.rst:3974 msgid "" "After this method has been called, any further operation on the view raises " "a :class:`ValueError` (except :meth:`release()` itself which can be called " "multiple times)::" msgstr "" -#: library/stdtypes.rst:3938 +#: library/stdtypes.rst:3985 msgid "" "The context management protocol can be used for a similar effect, using the " "``with`` statement::" msgstr "" -#: library/stdtypes.rst:3954 +#: library/stdtypes.rst:4001 msgid "" "Cast a memoryview to a new format or shape. *shape* defaults to " "``[byte_length//new_itemsize]``, which means that the result view will be " @@ -4993,7 +5061,7 @@ msgid "" "contiguous -> 1D." msgstr "" -#: library/stdtypes.rst:3960 +#: library/stdtypes.rst:4007 msgid "" "The destination format is restricted to a single element native format in :" "mod:`struct` syntax. One of the formats must be a byte format ('B', 'b' or " @@ -5001,50 +5069,50 @@ msgid "" "Note that all byte lengths may depend on the operating system." msgstr "" -#: library/stdtypes.rst:3966 +#: library/stdtypes.rst:4013 msgid "Cast 1D/long to 1D/unsigned bytes::" msgstr "" -#: library/stdtypes.rst:3989 +#: library/stdtypes.rst:4036 msgid "Cast 1D/unsigned bytes to 1D/char::" msgstr "" -#: library/stdtypes.rst:4002 +#: library/stdtypes.rst:4049 msgid "Cast 1D/bytes to 3D/ints to 1D/signed char::" msgstr "" -#: library/stdtypes.rst:4028 +#: library/stdtypes.rst:4075 msgid "Cast 1D/unsigned long to 2D/unsigned long::" msgstr "" -#: library/stdtypes.rst:4042 +#: library/stdtypes.rst:4089 msgid "The source format is no longer restricted when casting to a byte view." msgstr "" -#: library/stdtypes.rst:4045 +#: library/stdtypes.rst:4092 msgid "There are also several readonly attributes available:" msgstr "" -#: library/stdtypes.rst:4049 +#: library/stdtypes.rst:4096 msgid "The underlying object of the memoryview::" msgstr "" -#: library/stdtypes.rst:4060 +#: library/stdtypes.rst:4107 msgid "" "``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the " "amount of space in bytes that the array would use in a contiguous " "representation. It is not necessarily equal to ``len(m)``::" msgstr "" -#: library/stdtypes.rst:4079 +#: library/stdtypes.rst:4126 msgid "Multi-dimensional arrays::" msgstr "" -#: library/stdtypes.rst:4096 +#: library/stdtypes.rst:4143 msgid "A bool indicating whether the memory is read only." msgstr "" -#: library/stdtypes.rst:4100 +#: library/stdtypes.rst:4147 msgid "" "A string containing the format (in :mod:`struct` module style) for each " "element in the view. A memoryview can be created from exporters with " @@ -5052,59 +5120,59 @@ msgid "" "restricted to native single element formats." msgstr "" -#: library/stdtypes.rst:4105 +#: library/stdtypes.rst:4152 msgid "" "format ``'B'`` is now handled according to the struct module syntax. This " "means that ``memoryview(b'abc')[0] == b'abc'[0] == 97``." msgstr "" -#: library/stdtypes.rst:4111 +#: library/stdtypes.rst:4158 msgid "The size in bytes of each element of the memoryview::" msgstr "" -#: library/stdtypes.rst:4124 +#: library/stdtypes.rst:4171 msgid "" "An integer indicating how many dimensions of a multi-dimensional array the " "memory represents." msgstr "" -#: library/stdtypes.rst:4129 +#: library/stdtypes.rst:4176 msgid "" "A tuple of integers the length of :attr:`ndim` giving the shape of the " "memory as an N-dimensional array." msgstr "" -#: library/stdtypes.rst:4140 +#: library/stdtypes.rst:4187 msgid "An empty tuple instead of ``None`` when ndim = 0." msgstr "" -#: library/stdtypes.rst:4137 +#: library/stdtypes.rst:4184 msgid "" "A tuple of integers the length of :attr:`ndim` giving the size in bytes to " "access each element for each dimension of the array." msgstr "" -#: library/stdtypes.rst:4145 +#: library/stdtypes.rst:4192 msgid "Used internally for PIL-style arrays. The value is informational only." msgstr "" -#: library/stdtypes.rst:4149 +#: library/stdtypes.rst:4196 msgid "A bool indicating whether the memory is C-:term:`contiguous`." msgstr "Belleğin C-:term:`contiguous` olup olmadığını gösteren bir bool." -#: library/stdtypes.rst:4155 +#: library/stdtypes.rst:4202 msgid "A bool indicating whether the memory is Fortran :term:`contiguous`." msgstr "Belleğin Fortran :term:`contiguous` olup olmadığını gösteren bir bool." -#: library/stdtypes.rst:4161 +#: library/stdtypes.rst:4208 msgid "A bool indicating whether the memory is :term:`contiguous`." msgstr "Belleğin :term:`contiguous` olup olmadığını gösteren bir bool." -#: library/stdtypes.rst:4169 +#: library/stdtypes.rst:4216 msgid "Set Types --- :class:`set`, :class:`frozenset`" msgstr "Set Türleri --- :class:`set`, :class:`frozenset`" -#: library/stdtypes.rst:4173 +#: library/stdtypes.rst:4220 msgid "" "A :dfn:`set` object is an unordered collection of distinct :term:`hashable` " "objects. Common uses include membership testing, removing duplicates from a " @@ -5120,7 +5188,7 @@ msgstr "" "için yerleşik :class:`dict`, :class:`list` ve :class:`tuple` sınıflarına ve :" "mod:`collections` modülüne bakın)" -#: library/stdtypes.rst:4180 +#: library/stdtypes.rst:4227 msgid "" "Like other collections, sets support ``x in set``, ``len(set)``, and ``for x " "in set``. Being an unordered collection, sets do not record element " @@ -5132,7 +5200,7 @@ msgstr "" "eleman konumunu veya ekleme sırasını kaydetmez. Buna göre, kümeler " "dizinleme, dilimleme veya sıra benzeri davranışları desteklemez." -#: library/stdtypes.rst:4185 +#: library/stdtypes.rst:4232 msgid "" "There are currently two built-in set types, :class:`set` and :class:" "`frozenset`. The :class:`set` type is mutable --- the contents can be " @@ -5151,7 +5219,7 @@ msgstr "" "term:`hashable` --- içeriği oluşturulduktan sonra değiştirilemez; bu nedenle " "bir sözlük anahtarı veya başka bir kümenin öğesi olarak kullanılabilir." -#: library/stdtypes.rst:4193 +#: library/stdtypes.rst:4240 msgid "" "Non-empty sets (not frozensets) can be created by placing a comma-separated " "list of elements within braces, for example: ``{'jack', 'sjoerd'}``, in " @@ -5161,11 +5229,11 @@ msgstr "" "parantez içine virgülle ayrılmış bir öğe listesi yerleştirilerek " "oluşturulabilir, örneğin: ``{'jack', 'sjoerd'}``." -#: library/stdtypes.rst:4197 +#: library/stdtypes.rst:4244 msgid "The constructors for both classes work the same:" msgstr "Her iki sınıfın kurucuları aynı şekilde çalışır:" -#: library/stdtypes.rst:4202 +#: library/stdtypes.rst:4249 msgid "" "Return a new set or frozenset object whose elements are taken from " "*iterable*. The elements of a set must be :term:`hashable`. To represent " @@ -5177,24 +5245,24 @@ msgstr "" "kümelerini temsil etmek için, iç kümeler :class:`frozenset` nesneleri " "olmalıdır. Eğer *iterable* belirtilmemişse, yeni bir boş küme döndürülür." -#: library/stdtypes.rst:4208 +#: library/stdtypes.rst:4255 msgid "Sets can be created by several means:" msgstr "Setler çeşitli yollarla oluşturulabilir:" -#: library/stdtypes.rst:4210 +#: library/stdtypes.rst:4257 msgid "" "Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``" msgstr "" "Parantez içinde virgülle ayrılmış bir öğe listesi kullanın: ``{'jack', " "'sjoerd'}``" -#: library/stdtypes.rst:4211 +#: library/stdtypes.rst:4258 msgid "" "Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``" msgstr "" "Bir küme kavrayışı kullanın: ``{c for c in 'abracadabra' if c not in 'abc'}``" -#: library/stdtypes.rst:4212 +#: library/stdtypes.rst:4259 msgid "" "Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', " "'foo'])``" @@ -5202,26 +5270,26 @@ msgstr "" "Tür kurucusunu kullanın: ``set()``, ``set('foobar')``, ``set(['a', 'b', " "'foo'])``" -#: library/stdtypes.rst:4214 +#: library/stdtypes.rst:4261 msgid "" "Instances of :class:`set` and :class:`frozenset` provide the following " "operations:" msgstr "" ":class:`set` ve :class:`frozenset` örnekleri aşağıdaki işlemleri sağlar:" -#: library/stdtypes.rst:4219 +#: library/stdtypes.rst:4266 msgid "Return the number of elements in set *s* (cardinality of *s*)." msgstr "*s* kümesindeki eleman sayısını döndürür (*s*'nin kardinalitesi)." -#: library/stdtypes.rst:4223 +#: library/stdtypes.rst:4270 msgid "Test *x* for membership in *s*." msgstr "*x*'i *s* üyeliği için test edin." -#: library/stdtypes.rst:4227 +#: library/stdtypes.rst:4274 msgid "Test *x* for non-membership in *s*." msgstr "*x*'in *s*'ye üye olup olmadığını test edin." -#: library/stdtypes.rst:4231 +#: library/stdtypes.rst:4278 msgid "" "Return ``True`` if the set has no elements in common with *other*. Sets are " "disjoint if and only if their intersection is the empty set." @@ -5229,11 +5297,11 @@ msgstr "" "Kümenin *other* kümelerle ortak hiçbir elemanı yoksa ``True`` döndürür. " "Kümeler, ancak ve ancak kesişimleri boş küme ise ayrıktır." -#: library/stdtypes.rst:4237 +#: library/stdtypes.rst:4284 msgid "Test whether every element in the set is in *other*." msgstr "Kümedeki her elemanın *other* içinde olup olmadığını test edin." -#: library/stdtypes.rst:4241 +#: library/stdtypes.rst:4288 msgid "" "Test whether the set is a proper subset of *other*, that is, ``set <= other " "and set != other``." @@ -5241,11 +5309,11 @@ msgstr "" "Kümenin *other* kümenin uygun bir alt kümesi olup olmadığını, yani ``set <= " "other and set != other`` olup olmadığını test eder." -#: library/stdtypes.rst:4247 +#: library/stdtypes.rst:4294 msgid "Test whether every element in *other* is in the set." msgstr "Kümedeki her elemanın *other* içinde olup olmadığını test edin." -#: library/stdtypes.rst:4251 +#: library/stdtypes.rst:4298 msgid "" "Test whether the set is a proper superset of *other*, that is, ``set >= " "other and set != other``." @@ -5253,33 +5321,33 @@ msgstr "" "Kümenin *other* kümenin uygun bir üst kümesi olup olmadığını, yani ``set >= " "other and set != other`` olup olmadığını test edin." -#: library/stdtypes.rst:4257 +#: library/stdtypes.rst:4304 msgid "Return a new set with elements from the set and all others." msgstr "" "Kümedeki ve diğer tüm kümelerdeki elemanları içeren yeni bir küme döndürür." -#: library/stdtypes.rst:4262 +#: library/stdtypes.rst:4309 msgid "Return a new set with elements common to the set and all others." msgstr "" "Küme ve diğer tüm kümeler için ortak öğeler içeren yeni bir küme döndürür." -#: library/stdtypes.rst:4267 +#: library/stdtypes.rst:4314 msgid "Return a new set with elements in the set that are not in the others." msgstr "" "Küme içinde diğerlerinde olmayan elemanlar içeren yeni bir küme döndürür." -#: library/stdtypes.rst:4272 +#: library/stdtypes.rst:4319 msgid "" "Return a new set with elements in either the set or *other* but not both." msgstr "" "Elemanları ya kümede ya da *diğer* kümede olan ancak her ikisinde de olmayan " "yeni bir küme döndürür." -#: library/stdtypes.rst:4276 +#: library/stdtypes.rst:4323 msgid "Return a shallow copy of the set." msgstr "Kümenin yüzeysel bir kopyasını döndürür." -#: library/stdtypes.rst:4279 +#: library/stdtypes.rst:4326 msgid "" "Note, the non-operator versions of :meth:`union`, :meth:`intersection`, :" "meth:`difference`, :meth:`symmetric_difference`, :meth:`issubset`, and :meth:" @@ -5297,7 +5365,7 @@ msgstr "" "\n" "Translated with www.DeepL.com/Translator (free version)" -#: library/stdtypes.rst:4286 +#: library/stdtypes.rst:4333 msgid "" "Both :class:`set` and :class:`frozenset` support set to set comparisons. Two " "sets are equal if and only if every element of each set is contained in the " @@ -5316,7 +5384,7 @@ msgstr "" "\n" "Translated with www.DeepL.com/Translator (free version)" -#: library/stdtypes.rst:4293 +#: library/stdtypes.rst:4340 msgid "" "Instances of :class:`set` are compared to instances of :class:`frozenset` " "based on their members. For example, ``set('abc') == frozenset('abc')`` " @@ -5326,7 +5394,7 @@ msgstr "" "karşılaştırılır. Örneğin, ``set('abc') == frozenset('abc')`` ``True`` " "döndürür ve ``set('abc') in set([frozenset('abc')])`` de öyle." -#: library/stdtypes.rst:4297 +#: library/stdtypes.rst:4344 msgid "" "The subset and equality comparisons do not generalize to a total ordering " "function. For example, any two nonempty disjoint sets are not equal and are " @@ -5338,7 +5406,7 @@ msgstr "" "değildir ve birbirinin alt kümesi değildir, bu nedenle aşağıdakilerin *all* " "``Yanlış`` döndürür: ``ab``." -#: library/stdtypes.rst:4302 +#: library/stdtypes.rst:4349 msgid "" "Since sets only define partial ordering (subset relationships), the output " "of the :meth:`list.sort` method is undefined for lists of sets." @@ -5346,11 +5414,11 @@ msgstr "" "Kümeler yalnızca kısmi sıralama (alt küme ilişkileri) tanımladığından, :meth:" "`list.sort` yönteminin çıktısı küme listeleri için tanımsızdır." -#: library/stdtypes.rst:4305 +#: library/stdtypes.rst:4352 msgid "Set elements, like dictionary keys, must be :term:`hashable`." msgstr "Sözlük anahtarları gibi küme öğeleri de :term:`hashable` olmalıdır." -#: library/stdtypes.rst:4307 +#: library/stdtypes.rst:4354 msgid "" "Binary operations that mix :class:`set` instances with :class:`frozenset` " "return the type of the first operand. For example: ``frozenset('ab') | " @@ -5360,7 +5428,7 @@ msgstr "" "ilk işlenenin türünü döndürür. Örneğin: ``frozenset('ab') | set('bc')`` " "bir :class:`frozenset` örneği döndürür." -#: library/stdtypes.rst:4311 +#: library/stdtypes.rst:4358 msgid "" "The following table lists operations available for :class:`set` that do not " "apply to immutable instances of :class:`frozenset`:" @@ -5368,31 +5436,31 @@ msgstr "" "Aşağıdaki tabloda :class:`set` için kullanılabilen ve :class:`frozenset` 'in " "değişmez örneklerine uygulanmayan işlemler listelenmektedir:" -#: library/stdtypes.rst:4317 +#: library/stdtypes.rst:4364 msgid "Update the set, adding elements from all others." msgstr "Diğer tüm öğeleri ekleyerek seti güncelleyin." -#: library/stdtypes.rst:4322 +#: library/stdtypes.rst:4369 msgid "Update the set, keeping only elements found in it and all others." msgstr "" "Yalnızca içinde bulunan öğeleri ve diğerlerini koruyarak seti güncelleyin." -#: library/stdtypes.rst:4327 +#: library/stdtypes.rst:4374 msgid "Update the set, removing elements found in others." msgstr "Diğerlerinde bulunan öğeleri kaldırarak kümeyi güncelleyin." -#: library/stdtypes.rst:4332 +#: library/stdtypes.rst:4379 msgid "" "Update the set, keeping only elements found in either set, but not in both." msgstr "" "Kümeyi güncelleyin, yalnızca her iki kümede de bulunan öğeleri saklayın, " "ancak her ikisinde de bulunmayın." -#: library/stdtypes.rst:4336 +#: library/stdtypes.rst:4383 msgid "Add element *elem* to the set." msgstr "Kümeye *elem* öğesini ekleyin." -#: library/stdtypes.rst:4340 +#: library/stdtypes.rst:4387 msgid "" "Remove element *elem* from the set. Raises :exc:`KeyError` if *elem* is not " "contained in the set." @@ -5400,11 +5468,11 @@ msgstr "" "Kümeden *elem* elemanını kaldırır. Eğer *elem* kümede bulunmuyorsa :exc:" "`KeyError` değerini yükseltir." -#: library/stdtypes.rst:4345 +#: library/stdtypes.rst:4392 msgid "Remove element *elem* from the set if it is present." msgstr "Eğer varsa *elem* öğesini kümeden kaldırır." -#: library/stdtypes.rst:4349 +#: library/stdtypes.rst:4396 msgid "" "Remove and return an arbitrary element from the set. Raises :exc:`KeyError` " "if the set is empty." @@ -5412,11 +5480,11 @@ msgstr "" "Kümeden rastgele bir elemanı kaldırır ve döndürür. Küme boşsa :exc:" "`KeyError` değerini yükseltir." -#: library/stdtypes.rst:4354 +#: library/stdtypes.rst:4401 msgid "Remove all elements from the set." msgstr "Kümeden tüm öğeleri kaldırın." -#: library/stdtypes.rst:4357 +#: library/stdtypes.rst:4404 msgid "" "Note, the non-operator versions of the :meth:`update`, :meth:" "`intersection_update`, :meth:`difference_update`, and :meth:" @@ -5427,7 +5495,7 @@ msgstr "" "ve :meth:`symmetric_difference_update` metotlarının operatör olmayan " "versiyonları herhangi bir iterable'ı argüman olarak kabul edecektir." -#: library/stdtypes.rst:4362 +#: library/stdtypes.rst:4409 msgid "" "Note, the *elem* argument to the :meth:`__contains__`, :meth:`remove`, and :" "meth:`discard` methods may be a set. To support searching for an equivalent " @@ -5437,11 +5505,11 @@ msgstr "" "*elem* argümanı bir küme olabilir. Eş değer bir frozenset aramayı " "desteklemek için, *elem*'den geçici bir tane oluşturulur." -#: library/stdtypes.rst:4370 +#: library/stdtypes.rst:4417 msgid "Mapping Types --- :class:`dict`" msgstr "Mapping Types --- :class:`dict`" -#: library/stdtypes.rst:4380 +#: library/stdtypes.rst:4427 msgid "" "A :term:`mapping` object maps :term:`hashable` values to arbitrary objects. " "Mappings are mutable objects. There is currently only one standard mapping " @@ -5455,7 +5523,7 @@ msgstr "" "class:`list`, :class:`set` ve :class:`tuple` sınıflarına ve :mod:" "`collections` modülüne bakın)." -#: library/stdtypes.rst:4386 +#: library/stdtypes.rst:4433 msgid "" "A dictionary's keys are *almost* arbitrary values. Values that are not :" "term:`hashable`, that is, values containing lists, dictionaries or other " @@ -5470,7 +5538,7 @@ msgstr "" "``True`` gibi) aynı sözlük girdisini indekslemek için birbirinin yerine " "kullanılabilir." -#: library/stdtypes.rst:4397 +#: library/stdtypes.rst:4444 msgid "" "Return a new dictionary initialized from an optional positional argument and " "a possibly empty set of keyword arguments." @@ -5478,27 +5546,27 @@ msgstr "" "İsteğe bağlı bir konumsal bağımsız değişken ve muhtemelen boş bir anahtar " "sözcük bağımsız değişken kümesinden başlatılan yeni bir sözlük döndürür." -#: library/stdtypes.rst:4400 +#: library/stdtypes.rst:4447 msgid "Dictionaries can be created by several means:" msgstr "Sözlükler çeşitli yollarla oluşturulabilir:" -#: library/stdtypes.rst:4402 +#: library/stdtypes.rst:4449 msgid "" "Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': " "4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``" msgstr "" -#: library/stdtypes.rst:4404 +#: library/stdtypes.rst:4451 msgid "Use a dict comprehension: ``{}``, ``{x: x ** 2 for x in range(10)}``" msgstr "" -#: library/stdtypes.rst:4405 +#: library/stdtypes.rst:4452 msgid "" "Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', " "200)])``, ``dict(foo=100, bar=200)``" msgstr "" -#: library/stdtypes.rst:4408 +#: library/stdtypes.rst:4455 msgid "" "If no positional argument is given, an empty dictionary is created. If a " "positional argument is given and it is a mapping object, a dictionary is " @@ -5510,7 +5578,7 @@ msgid "" "value for that key becomes the corresponding value in the new dictionary." msgstr "" -#: library/stdtypes.rst:4418 +#: library/stdtypes.rst:4465 msgid "" "If keyword arguments are given, the keyword arguments and their values are " "added to the dictionary created from the positional argument. If a key " @@ -5518,39 +5586,39 @@ msgid "" "the value from the positional argument." msgstr "" -#: library/stdtypes.rst:4423 +#: library/stdtypes.rst:4470 msgid "" "To illustrate, the following examples all return a dictionary equal to " "``{\"one\": 1, \"two\": 2, \"three\": 3}``::" msgstr "" -#: library/stdtypes.rst:4435 +#: library/stdtypes.rst:4482 msgid "" "Providing keyword arguments as in the first example only works for keys that " "are valid Python identifiers. Otherwise, any valid keys can be used." msgstr "" -#: library/stdtypes.rst:4439 +#: library/stdtypes.rst:4486 msgid "" "These are the operations that dictionaries support (and therefore, custom " "mapping types should support too):" msgstr "" -#: library/stdtypes.rst:4444 +#: library/stdtypes.rst:4491 msgid "Return a list of all the keys used in the dictionary *d*." msgstr "" -#: library/stdtypes.rst:4448 +#: library/stdtypes.rst:4495 msgid "Return the number of items in the dictionary *d*." msgstr "" -#: library/stdtypes.rst:4452 +#: library/stdtypes.rst:4499 msgid "" "Return the item of *d* with key *key*. Raises a :exc:`KeyError` if *key* is " "not in the map." msgstr "" -#: library/stdtypes.rst:4457 +#: library/stdtypes.rst:4504 msgid "" "If a subclass of dict defines a method :meth:`__missing__` and *key* is not " "present, the ``d[key]`` operation calls that method with the key *key* as " @@ -5561,51 +5629,51 @@ msgid "" "an instance variable::" msgstr "" -#: library/stdtypes.rst:4475 +#: library/stdtypes.rst:4523 msgid "" "The example above shows part of the implementation of :class:`collections." "Counter`. A different ``__missing__`` method is used by :class:`collections." "defaultdict`." msgstr "" -#: library/stdtypes.rst:4481 +#: library/stdtypes.rst:4529 msgid "Set ``d[key]`` to *value*." msgstr "" -#: library/stdtypes.rst:4485 +#: library/stdtypes.rst:4533 msgid "" "Remove ``d[key]`` from *d*. Raises a :exc:`KeyError` if *key* is not in the " "map." msgstr "" -#: library/stdtypes.rst:4490 +#: library/stdtypes.rst:4538 msgid "Return ``True`` if *d* has a key *key*, else ``False``." msgstr "" -#: library/stdtypes.rst:4494 +#: library/stdtypes.rst:4542 msgid "Equivalent to ``not key in d``." msgstr "" -#: library/stdtypes.rst:4498 +#: library/stdtypes.rst:4546 msgid "" "Return an iterator over the keys of the dictionary. This is a shortcut for " "``iter(d.keys())``." msgstr "" -#: library/stdtypes.rst:4503 +#: library/stdtypes.rst:4551 msgid "Remove all items from the dictionary." msgstr "" -#: library/stdtypes.rst:4507 +#: library/stdtypes.rst:4555 msgid "Return a shallow copy of the dictionary." msgstr "" -#: library/stdtypes.rst:4511 +#: library/stdtypes.rst:4559 msgid "" "Create a new dictionary with keys from *iterable* and values set to *value*." msgstr "" -#: library/stdtypes.rst:4513 +#: library/stdtypes.rst:4561 msgid "" ":meth:`fromkeys` is a class method that returns a new dictionary. *value* " "defaults to ``None``. All of the values refer to just a single instance, so " @@ -5614,70 +5682,70 @@ msgid "" "` instead." msgstr "" -#: library/stdtypes.rst:4521 +#: library/stdtypes.rst:4569 msgid "" "Return the value for *key* if *key* is in the dictionary, else *default*. If " "*default* is not given, it defaults to ``None``, so that this method never " "raises a :exc:`KeyError`." msgstr "" -#: library/stdtypes.rst:4527 +#: library/stdtypes.rst:4575 msgid "" "Return a new view of the dictionary's items (``(key, value)`` pairs). See " "the :ref:`documentation of view objects `." msgstr "" -#: library/stdtypes.rst:4532 +#: library/stdtypes.rst:4580 msgid "" "Return a new view of the dictionary's keys. See the :ref:`documentation of " "view objects `." msgstr "" -#: library/stdtypes.rst:4537 +#: library/stdtypes.rst:4585 msgid "" "If *key* is in the dictionary, remove it and return its value, else return " "*default*. If *default* is not given and *key* is not in the dictionary, a :" "exc:`KeyError` is raised." msgstr "" -#: library/stdtypes.rst:4543 +#: library/stdtypes.rst:4591 msgid "" "Remove and return a ``(key, value)`` pair from the dictionary. Pairs are " "returned in :abbr:`LIFO (last-in, first-out)` order." msgstr "" -#: library/stdtypes.rst:4546 +#: library/stdtypes.rst:4594 msgid "" ":meth:`popitem` is useful to destructively iterate over a dictionary, as " "often used in set algorithms. If the dictionary is empty, calling :meth:" "`popitem` raises a :exc:`KeyError`." msgstr "" -#: library/stdtypes.rst:4550 +#: library/stdtypes.rst:4598 msgid "" "LIFO order is now guaranteed. In prior versions, :meth:`popitem` would " "return an arbitrary key/value pair." msgstr "" -#: library/stdtypes.rst:4556 +#: library/stdtypes.rst:4604 msgid "" "Return a reverse iterator over the keys of the dictionary. This is a " "shortcut for ``reversed(d.keys())``." msgstr "" -#: library/stdtypes.rst:4563 +#: library/stdtypes.rst:4611 msgid "" "If *key* is in the dictionary, return its value. If not, insert *key* with " "a value of *default* and return *default*. *default* defaults to ``None``." msgstr "" -#: library/stdtypes.rst:4569 +#: library/stdtypes.rst:4617 msgid "" "Update the dictionary with the key/value pairs from *other*, overwriting " "existing keys. Return ``None``." msgstr "" -#: library/stdtypes.rst:4572 +#: library/stdtypes.rst:4620 msgid "" ":meth:`update` accepts either another dictionary object or an iterable of " "key/value pairs (as tuples or other iterables of length two). If keyword " @@ -5685,71 +5753,71 @@ msgid "" "pairs: ``d.update(red=1, blue=2)``." msgstr "" -#: library/stdtypes.rst:4579 +#: library/stdtypes.rst:4627 msgid "" "Return a new view of the dictionary's values. See the :ref:`documentation " "of view objects `." msgstr "" -#: library/stdtypes.rst:4582 +#: library/stdtypes.rst:4630 msgid "" "An equality comparison between one ``dict.values()`` view and another will " "always return ``False``. This also applies when comparing ``dict.values()`` " "to itself::" msgstr "" -#: library/stdtypes.rst:4592 +#: library/stdtypes.rst:4640 msgid "" "Create a new dictionary with the merged keys and values of *d* and *other*, " "which must both be dictionaries. The values of *other* take priority when " "*d* and *other* share keys." msgstr "" -#: library/stdtypes.rst:4600 +#: library/stdtypes.rst:4648 msgid "" "Update the dictionary *d* with keys and values from *other*, which may be " "either a :term:`mapping` or an :term:`iterable` of key/value pairs. The " "values of *other* take priority when *d* and *other* share keys." msgstr "" -#: library/stdtypes.rst:4606 +#: library/stdtypes.rst:4654 msgid "" "Dictionaries compare equal if and only if they have the same ``(key, " "value)`` pairs (regardless of ordering). Order comparisons ('<', '<=', '>=', " "'>') raise :exc:`TypeError`." msgstr "" -#: library/stdtypes.rst:4610 +#: library/stdtypes.rst:4658 msgid "" "Dictionaries preserve insertion order. Note that updating a key does not " "affect the order. Keys added after deletion are inserted at the end. ::" msgstr "" -#: library/stdtypes.rst:4628 +#: library/stdtypes.rst:4676 msgid "" "Dictionary order is guaranteed to be insertion order. This behavior was an " "implementation detail of CPython from 3.6." msgstr "" -#: library/stdtypes.rst:4632 +#: library/stdtypes.rst:4680 msgid "Dictionaries and dictionary views are reversible. ::" msgstr "" -#: library/stdtypes.rst:4644 +#: library/stdtypes.rst:4692 msgid "Dictionaries are now reversible." msgstr "" -#: library/stdtypes.rst:4649 +#: library/stdtypes.rst:4697 msgid "" ":class:`types.MappingProxyType` can be used to create a read-only view of a :" "class:`dict`." msgstr "" -#: library/stdtypes.rst:4656 +#: library/stdtypes.rst:4704 msgid "Dictionary view objects" msgstr "" -#: library/stdtypes.rst:4658 +#: library/stdtypes.rst:4706 msgid "" "The objects returned by :meth:`dict.keys`, :meth:`dict.values` and :meth:" "`dict.items` are *view objects*. They provide a dynamic view on the " @@ -5757,23 +5825,23 @@ msgid "" "reflects these changes." msgstr "" -#: library/stdtypes.rst:4663 +#: library/stdtypes.rst:4711 msgid "" "Dictionary views can be iterated over to yield their respective data, and " "support membership tests:" msgstr "" -#: library/stdtypes.rst:4668 +#: library/stdtypes.rst:4716 msgid "Return the number of entries in the dictionary." msgstr "" -#: library/stdtypes.rst:4672 +#: library/stdtypes.rst:4720 msgid "" "Return an iterator over the keys, values or items (represented as tuples of " "``(key, value)``) in the dictionary." msgstr "" -#: library/stdtypes.rst:4675 +#: library/stdtypes.rst:4723 msgid "" "Keys and values are iterated over in insertion order. This allows the " "creation of ``(value, key)`` pairs using :func:`zip`: ``pairs = zip(d." @@ -5781,39 +5849,39 @@ msgid "" "[(v, k) for (k, v) in d.items()]``." msgstr "" -#: library/stdtypes.rst:4680 +#: library/stdtypes.rst:4728 msgid "" "Iterating views while adding or deleting entries in the dictionary may raise " "a :exc:`RuntimeError` or fail to iterate over all entries." msgstr "" -#: library/stdtypes.rst:4683 +#: library/stdtypes.rst:4731 msgid "Dictionary order is guaranteed to be insertion order." msgstr "" -#: library/stdtypes.rst:4688 +#: library/stdtypes.rst:4736 msgid "" "Return ``True`` if *x* is in the underlying dictionary's keys, values or " "items (in the latter case, *x* should be a ``(key, value)`` tuple)." msgstr "" -#: library/stdtypes.rst:4693 +#: library/stdtypes.rst:4741 msgid "" "Return a reverse iterator over the keys, values or items of the dictionary. " "The view will be iterated in reverse order of the insertion." msgstr "" -#: library/stdtypes.rst:4696 +#: library/stdtypes.rst:4744 msgid "Dictionary views are now reversible." msgstr "" -#: library/stdtypes.rst:4701 +#: library/stdtypes.rst:4749 msgid "" "Return a :class:`types.MappingProxyType` that wraps the original dictionary " "to which the view refers." msgstr "" -#: library/stdtypes.rst:4706 +#: library/stdtypes.rst:4754 msgid "" "Keys views are set-like since their entries are unique and :term:" "`hashable`. If all values are hashable, so that ``(key, value)`` pairs are " @@ -5821,18 +5889,20 @@ msgid "" "are not treated as set-like since the entries are generally not unique.) " "For set-like views, all of the operations defined for the abstract base " "class :class:`collections.abc.Set` are available (for example, ``==``, " -"``<``, or ``^``)." +"``<``, or ``^``). While using set operators, set-like views accept any " +"iterable as the other operand, unlike sets which only accept sets as the " +"input." msgstr "" -#: library/stdtypes.rst:4713 +#: library/stdtypes.rst:4763 msgid "An example of dictionary view usage::" msgstr "" -#: library/stdtypes.rst:4756 +#: library/stdtypes.rst:4807 msgid "Context Manager Types" msgstr "Bağlam Yöneticisi Türleri" -#: library/stdtypes.rst:4763 +#: library/stdtypes.rst:4814 msgid "" "Python's :keyword:`with` statement supports the concept of a runtime context " "defined by a context manager. This is implemented using a pair of methods " @@ -5840,7 +5910,7 @@ msgid "" "before the statement body is executed and exited when the statement ends:" msgstr "" -#: library/stdtypes.rst:4771 +#: library/stdtypes.rst:4822 msgid "" "Enter the runtime context and return either this object or another object " "related to the runtime context. The value returned by this method is bound " @@ -5848,14 +5918,14 @@ msgid "" "using this context manager." msgstr "" -#: library/stdtypes.rst:4776 +#: library/stdtypes.rst:4827 msgid "" "An example of a context manager that returns itself is a :term:`file " "object`. File objects return themselves from __enter__() to allow :func:" "`open` to be used as the context expression in a :keyword:`with` statement." msgstr "" -#: library/stdtypes.rst:4780 +#: library/stdtypes.rst:4831 msgid "" "An example of a context manager that returns a related object is the one " "returned by :func:`decimal.localcontext`. These managers set the active " @@ -5865,7 +5935,7 @@ msgid "" "the :keyword:`!with` statement." msgstr "" -#: library/stdtypes.rst:4790 +#: library/stdtypes.rst:4841 msgid "" "Exit the runtime context and return a Boolean flag indicating if any " "exception that occurred should be suppressed. If an exception occurred while " @@ -5874,7 +5944,7 @@ msgid "" "arguments are ``None``." msgstr "" -#: library/stdtypes.rst:4795 +#: library/stdtypes.rst:4846 msgid "" "Returning a true value from this method will cause the :keyword:`with` " "statement to suppress the exception and continue execution with the " @@ -5885,7 +5955,7 @@ msgid "" "statement." msgstr "" -#: library/stdtypes.rst:4802 +#: library/stdtypes.rst:4853 msgid "" "The exception passed in should never be reraised explicitly - instead, this " "method should return a false value to indicate that the method completed " @@ -5894,7 +5964,7 @@ msgid "" "method has actually failed." msgstr "" -#: library/stdtypes.rst:4808 +#: library/stdtypes.rst:4859 msgid "" "Python defines several context managers to support easy thread " "synchronisation, prompt closure of files or other objects, and simpler " @@ -5903,7 +5973,7 @@ msgid "" "management protocol. See the :mod:`contextlib` module for some examples." msgstr "" -#: library/stdtypes.rst:4814 +#: library/stdtypes.rst:4865 msgid "" "Python's :term:`generator`\\s and the :class:`contextlib.contextmanager` " "decorator provide a convenient way to implement these protocols. If a " @@ -5913,7 +5983,7 @@ msgid "" "rather than the iterator produced by an undecorated generator function." msgstr "" -#: library/stdtypes.rst:4821 +#: library/stdtypes.rst:4872 msgid "" "Note that there is no specific slot for any of these methods in the type " "structure for Python objects in the Python/C API. Extension types wanting to " @@ -5922,23 +5992,23 @@ msgid "" "a single class dictionary lookup is negligible." msgstr "" -#: library/stdtypes.rst:4829 +#: library/stdtypes.rst:4880 msgid "" "Type Annotation Types --- :ref:`Generic Alias `, :ref:" "`Union `" msgstr "" -#: library/stdtypes.rst:4834 +#: library/stdtypes.rst:4885 msgid "" "The core built-in types for :term:`type annotations ` are :ref:" "`Generic Alias ` and :ref:`Union `." msgstr "" -#: library/stdtypes.rst:4841 +#: library/stdtypes.rst:4892 msgid "Generic Alias Type" msgstr "Genel Takma Ad Türü" -#: library/stdtypes.rst:4847 +#: library/stdtypes.rst:4898 msgid "" "``GenericAlias`` objects are generally created by :ref:`subscripting " "` a class. They are most often used with :ref:`container " @@ -5948,13 +6018,13 @@ msgid "" "are intended primarily for use with :term:`type annotations `." msgstr "" -#: library/stdtypes.rst:4857 +#: library/stdtypes.rst:4908 msgid "" "It is generally only possible to subscript a class if the class implements " "the special method :meth:`~object.__class_getitem__`." msgstr "" -#: library/stdtypes.rst:4860 +#: library/stdtypes.rst:4911 msgid "" "A ``GenericAlias`` object acts as a proxy for a :term:`generic type`, " "implementing *parameterized generics*." @@ -5962,7 +6032,7 @@ msgstr "" "Bir ``GenericAlias`` nesnesi, :term:`generic type` için bir vekil olarak " "hareket eder ve *parameterized generics* uygular." -#: library/stdtypes.rst:4863 +#: library/stdtypes.rst:4914 msgid "" "For a container class, the argument(s) supplied to a :ref:`subscription " "` of the class may indicate the type(s) of the elements an " @@ -5971,7 +6041,7 @@ msgid "" "`bytes`." msgstr "" -#: library/stdtypes.rst:4869 +#: library/stdtypes.rst:4920 msgid "" "For a class which defines :meth:`~object.__class_getitem__` but is not a " "container, the argument(s) supplied to a subscription of the class will " @@ -5980,7 +6050,7 @@ msgid "" "the :class:`str` data type and the :class:`bytes` data type:" msgstr "" -#: library/stdtypes.rst:4875 +#: library/stdtypes.rst:4926 msgid "" "If ``x = re.search('foo', 'foo')``, ``x`` will be a :ref:`re.Match ` object where the return values of ``x.group(0)`` and ``x[0]`` will " @@ -5988,7 +6058,7 @@ msgid "" "annotations with the ``GenericAlias`` ``re.Match[str]``." msgstr "" -#: library/stdtypes.rst:4881 +#: library/stdtypes.rst:4932 msgid "" "If ``y = re.search(b'bar', b'bar')``, (note the ``b`` for :class:`bytes`), " "``y`` will also be an instance of ``re.Match``, but the return values of ``y." @@ -5997,7 +6067,7 @@ msgid "" "objects>` objects with ``re.Match[bytes]``." msgstr "" -#: library/stdtypes.rst:4887 +#: library/stdtypes.rst:4938 msgid "" "``GenericAlias`` objects are instances of the class :class:`types." "GenericAlias`, which can also be used to create ``GenericAlias`` objects " @@ -6006,7 +6076,7 @@ msgstr "" "``GenericAlias`` nesneleri, doğrudan ``GenericAlias`` nesneleri oluşturmak " "için de kullanılabilen :class:`types.GenericAlias` sınıfının örnekleridir." -#: library/stdtypes.rst:4893 +#: library/stdtypes.rst:4944 msgid "" "Creates a ``GenericAlias`` representing a type ``T`` parameterized by types " "*X*, *Y*, and more depending on the ``T`` used. For example, a function " @@ -6017,7 +6087,7 @@ msgstr "" "Örneğin, :class:`float` elemanları içeren bir :class:`list` bekleyen bir " "fonksiyon::" -#: library/stdtypes.rst:4901 +#: library/stdtypes.rst:4952 msgid "" "Another example for :term:`mapping` objects, using a :class:`dict`, which is " "a generic type expecting two type parameters representing the key type and " @@ -6029,7 +6099,7 @@ msgstr "" "başka bir örnek. Bu örnekte, fonksiyon :class:`str` türünde anahtarları ve :" "class:`int` türünde değerleri olan bir ``dict`` bekler::" -#: library/stdtypes.rst:4909 +#: library/stdtypes.rst:4960 msgid "" "The builtin functions :func:`isinstance` and :func:`issubclass` do not " "accept ``GenericAlias`` types for their second argument::" @@ -6037,7 +6107,7 @@ msgstr "" "Yerleşik :func:`isinstance` ve :func:`issubclass` işlevleri ikinci " "argümanları için ``GenericAlias`` türlerini kabul etmez::" -#: library/stdtypes.rst:4917 +#: library/stdtypes.rst:4968 msgid "" "The Python runtime does not enforce :term:`type annotations `. " "This extends to generic types and their type parameters. When creating a " @@ -6051,7 +6121,7 @@ msgstr "" "elemanlar türlerine göre kontrol edilmez. Örneğin, aşağıdaki kod tavsiye " "edilmez, ancak hatasız çalışacaktır::" -#: library/stdtypes.rst:4927 +#: library/stdtypes.rst:4978 msgid "" "Furthermore, parameterized generics erase type parameters during object " "creation::" @@ -6059,7 +6129,7 @@ msgstr "" "Ayrıca, parametrelendirilmiş jenerikler nesne oluşturma sırasında tip " "parametrelerini siler::" -#: library/stdtypes.rst:4938 +#: library/stdtypes.rst:4989 msgid "" "Calling :func:`repr` or :func:`str` on a generic shows the parameterized " "type::" @@ -6067,7 +6137,7 @@ msgstr "" "Bir jenerik üzerinde :func:`repr` veya :func:`str` çağrısı " "parametrelendirilmiş türü gösterir::" -#: library/stdtypes.rst:4946 +#: library/stdtypes.rst:4997 msgid "" "The :meth:`~object.__getitem__` method of generic containers will raise an " "exception to disallow mistakes like ``dict[str][str]``::" @@ -6075,7 +6145,7 @@ msgstr "" "Genel kapsayıcıların :meth:`~object.__getitem__` metodu, ``dict[str][str]`` " "gibi hatalara izin vermemek için bir istisna oluşturacaktır::" -#: library/stdtypes.rst:4954 +#: library/stdtypes.rst:5005 msgid "" "However, such expressions are valid when :ref:`type variables ` " "are used. The index must have as many elements as there are type variable " @@ -6085,11 +6155,11 @@ msgstr "" "geçerlidir. Dizin, ``GenericAlias`` nesnesinin :attr:`~genericalias." "__args__` öğesindeki tür değişkeni öğeleri kadar öğeye sahip olmalıdır::" -#: library/stdtypes.rst:4965 +#: library/stdtypes.rst:5016 msgid "Standard Generic Classes" msgstr "Standart Jenerik Sınıflar" -#: library/stdtypes.rst:4967 +#: library/stdtypes.rst:5018 msgid "" "The following standard library classes support parameterized generics. This " "list is non-exhaustive." @@ -6097,235 +6167,235 @@ msgstr "" "Bu standart kütüphane sınıfları parametrelendirilmiş jenerikleri destekler. " "Bu liste kapsamlı değildir." -#: library/stdtypes.rst:4970 +#: library/stdtypes.rst:5021 msgid ":class:`tuple`" msgstr ":class:`tuple`" -#: library/stdtypes.rst:4971 +#: library/stdtypes.rst:5022 msgid ":class:`list`" msgstr ":class:`list`" -#: library/stdtypes.rst:4972 +#: library/stdtypes.rst:5023 msgid ":class:`dict`" msgstr ":class:`dict`" -#: library/stdtypes.rst:4973 +#: library/stdtypes.rst:5024 msgid ":class:`set`" msgstr ":class:`set`" -#: library/stdtypes.rst:4974 +#: library/stdtypes.rst:5025 msgid ":class:`frozenset`" msgstr ":class:`frozenset`" -#: library/stdtypes.rst:4975 +#: library/stdtypes.rst:5026 msgid ":class:`type`" msgstr ":class:`type`" -#: library/stdtypes.rst:4976 +#: library/stdtypes.rst:5027 msgid ":class:`collections.deque`" msgstr ":class:`collections.deque`" -#: library/stdtypes.rst:4977 +#: library/stdtypes.rst:5028 msgid ":class:`collections.defaultdict`" msgstr ":class:`collections.defaultdict`" -#: library/stdtypes.rst:4978 +#: library/stdtypes.rst:5029 msgid ":class:`collections.OrderedDict`" msgstr ":class:`collections.OrderedDict`" -#: library/stdtypes.rst:4979 +#: library/stdtypes.rst:5030 msgid ":class:`collections.Counter`" msgstr ":class:`collections.Counter`" -#: library/stdtypes.rst:4980 +#: library/stdtypes.rst:5031 msgid ":class:`collections.ChainMap`" msgstr ":class:`collections.ChainMap`" -#: library/stdtypes.rst:4981 +#: library/stdtypes.rst:5032 msgid ":class:`collections.abc.Awaitable`" msgstr ":class:`collections.abc.Awaitable`" -#: library/stdtypes.rst:4982 +#: library/stdtypes.rst:5033 msgid ":class:`collections.abc.Coroutine`" msgstr ":class:`collections.abc.Coroutine`" -#: library/stdtypes.rst:4983 +#: library/stdtypes.rst:5034 msgid ":class:`collections.abc.AsyncIterable`" msgstr ":class:`collections.abc.AsyncIterable`" -#: library/stdtypes.rst:4984 +#: library/stdtypes.rst:5035 msgid ":class:`collections.abc.AsyncIterator`" msgstr ":class:`collections.abc.AsyncIterator`" -#: library/stdtypes.rst:4985 +#: library/stdtypes.rst:5036 msgid ":class:`collections.abc.AsyncGenerator`" msgstr ":class:`collections.abc.AsyncGenerator`" -#: library/stdtypes.rst:4986 +#: library/stdtypes.rst:5037 msgid ":class:`collections.abc.Iterable`" msgstr ":class:`collections.abc.Iterable`" -#: library/stdtypes.rst:4987 +#: library/stdtypes.rst:5038 msgid ":class:`collections.abc.Iterator`" msgstr ":class:`collections.abc.Iterator`" -#: library/stdtypes.rst:4988 +#: library/stdtypes.rst:5039 msgid ":class:`collections.abc.Generator`" msgstr ":class:`collections.abc.Generator`" -#: library/stdtypes.rst:4989 +#: library/stdtypes.rst:5040 msgid ":class:`collections.abc.Reversible`" msgstr ":class:`collections.abc.Reversible`" -#: library/stdtypes.rst:4990 +#: library/stdtypes.rst:5041 msgid ":class:`collections.abc.Container`" msgstr ":class:`collections.abc.Container`" -#: library/stdtypes.rst:4991 +#: library/stdtypes.rst:5042 msgid ":class:`collections.abc.Collection`" msgstr ":class:`collections.abc.Collection`" -#: library/stdtypes.rst:4992 +#: library/stdtypes.rst:5043 msgid ":class:`collections.abc.Callable`" msgstr ":class:`collections.abc.Callable`" -#: library/stdtypes.rst:4993 +#: library/stdtypes.rst:5044 msgid ":class:`collections.abc.Set`" msgstr ":class:`collections.abc.Set`" -#: library/stdtypes.rst:4994 +#: library/stdtypes.rst:5045 msgid ":class:`collections.abc.MutableSet`" msgstr ":class:`collections.abc.MutableSet`" -#: library/stdtypes.rst:4995 +#: library/stdtypes.rst:5046 msgid ":class:`collections.abc.Mapping`" msgstr ":class:`collections.abc.Mapping`" -#: library/stdtypes.rst:4996 +#: library/stdtypes.rst:5047 msgid ":class:`collections.abc.MutableMapping`" msgstr ":class:`collections.abc.MutableMapping`" -#: library/stdtypes.rst:4997 +#: library/stdtypes.rst:5048 msgid ":class:`collections.abc.Sequence`" msgstr ":class:`collections.abc.Sequence`" -#: library/stdtypes.rst:4998 +#: library/stdtypes.rst:5049 msgid ":class:`collections.abc.MutableSequence`" msgstr ":class:`collections.abc.MutableSequence`" -#: library/stdtypes.rst:4999 +#: library/stdtypes.rst:5050 msgid ":class:`collections.abc.ByteString`" msgstr ":class:`collections.abc.ByteString`" -#: library/stdtypes.rst:5000 +#: library/stdtypes.rst:5051 msgid ":class:`collections.abc.MappingView`" msgstr ":class:`collections.abc.MappingView`" -#: library/stdtypes.rst:5001 +#: library/stdtypes.rst:5052 msgid ":class:`collections.abc.KeysView`" msgstr ":class:`collections.abc.KeysView`" -#: library/stdtypes.rst:5002 +#: library/stdtypes.rst:5053 msgid ":class:`collections.abc.ItemsView`" msgstr ":class:`collections.abc.ItemsView`" -#: library/stdtypes.rst:5003 +#: library/stdtypes.rst:5054 msgid ":class:`collections.abc.ValuesView`" msgstr ":class:`collections.abc.ValuesView`" -#: library/stdtypes.rst:5004 +#: library/stdtypes.rst:5055 msgid ":class:`contextlib.AbstractContextManager`" msgstr ":class:`contextlib.AbstractContextManager`" -#: library/stdtypes.rst:5005 +#: library/stdtypes.rst:5056 msgid ":class:`contextlib.AbstractAsyncContextManager`" msgstr ":class:`contextlib.AbstractAsyncContextManager`" -#: library/stdtypes.rst:5006 +#: library/stdtypes.rst:5057 msgid ":class:`dataclasses.Field`" msgstr ":class:`dataclasses.Field`" -#: library/stdtypes.rst:5007 +#: library/stdtypes.rst:5058 msgid ":class:`functools.cached_property`" msgstr ":class:`functools.cached_property`" -#: library/stdtypes.rst:5008 +#: library/stdtypes.rst:5059 msgid ":class:`functools.partialmethod`" msgstr "" -#: library/stdtypes.rst:5009 +#: library/stdtypes.rst:5060 msgid ":class:`os.PathLike`" msgstr ":class:`os.PathLike`" -#: library/stdtypes.rst:5010 +#: library/stdtypes.rst:5061 msgid ":class:`queue.LifoQueue`" msgstr ":class:`queue.LifoQueue`" -#: library/stdtypes.rst:5011 +#: library/stdtypes.rst:5062 msgid ":class:`queue.Queue`" msgstr ":class:`queue.Queue`" -#: library/stdtypes.rst:5012 +#: library/stdtypes.rst:5063 msgid ":class:`queue.PriorityQueue`" msgstr ":class:`queue.PriorityQueue`" -#: library/stdtypes.rst:5013 +#: library/stdtypes.rst:5064 msgid ":class:`queue.SimpleQueue`" msgstr ":class:`tuple`" -#: library/stdtypes.rst:5014 +#: library/stdtypes.rst:5065 msgid ":ref:`re.Pattern `" msgstr ":ref:`re.Pattern `" -#: library/stdtypes.rst:5015 +#: library/stdtypes.rst:5066 msgid ":ref:`re.Match `" msgstr ":ref:`re.Match `" -#: library/stdtypes.rst:5016 +#: library/stdtypes.rst:5067 msgid ":class:`shelve.BsdDbShelf`" msgstr ":class:`shelve.BsdDbShelf`" -#: library/stdtypes.rst:5017 +#: library/stdtypes.rst:5068 msgid ":class:`shelve.DbfilenameShelf`" msgstr ":class:`shelve.DbfilenameShelf`" -#: library/stdtypes.rst:5018 +#: library/stdtypes.rst:5069 msgid ":class:`shelve.Shelf`" msgstr ":class:`shelve.Shelf`" -#: library/stdtypes.rst:5019 +#: library/stdtypes.rst:5070 msgid ":class:`types.MappingProxyType`" msgstr ":class:`types.MappingProxyType`" -#: library/stdtypes.rst:5020 +#: library/stdtypes.rst:5071 msgid ":class:`weakref.WeakKeyDictionary`" msgstr "" -#: library/stdtypes.rst:5021 +#: library/stdtypes.rst:5072 msgid ":class:`weakref.WeakMethod`" msgstr "" -#: library/stdtypes.rst:5022 +#: library/stdtypes.rst:5073 msgid ":class:`weakref.WeakSet`" msgstr ":class:`weakref.WeakSet`" -#: library/stdtypes.rst:5023 +#: library/stdtypes.rst:5074 msgid ":class:`weakref.WeakValueDictionary`" msgstr "" -#: library/stdtypes.rst:5028 +#: library/stdtypes.rst:5079 msgid "Special Attributes of ``GenericAlias`` objects" msgstr "``GenericAlias`` objesinin Özel Öznitelikleri" -#: library/stdtypes.rst:5030 +#: library/stdtypes.rst:5081 msgid "All parameterized generics implement special read-only attributes." msgstr "Tüm parametreli jenerikler özel salt okunur öznitelikler uygular." -#: library/stdtypes.rst:5034 +#: library/stdtypes.rst:5085 msgid "This attribute points at the non-parameterized generic class::" msgstr "Bu öznitelik, parametrelendirilmemiş genel sınıfa işaret eder::" -#: library/stdtypes.rst:5042 +#: library/stdtypes.rst:5093 msgid "" "This attribute is a :class:`tuple` (possibly of length 1) of generic types " "passed to the original :meth:`~object.__class_getitem__` of the generic " @@ -6335,7 +6405,7 @@ msgstr "" "öğesine iletilen jenerik tiplerinden bir :class:`tuple` 'dır (muhtemelen 1 " "uzunluğunda)::" -#: library/stdtypes.rst:5052 +#: library/stdtypes.rst:5103 msgid "" "This attribute is a lazily computed tuple (possibly empty) of unique type " "variables found in ``__args__``::" @@ -6343,7 +6413,7 @@ msgstr "" "Bu öznitelik, ''__args__'' içinde bulunan benzersiz tür değişkenlerin tembel " "bir şekilde hesaplanmış bir demetidir (muhtemelen boş):" -#: library/stdtypes.rst:5063 +#: library/stdtypes.rst:5114 msgid "" "A ``GenericAlias`` object with :class:`typing.ParamSpec` parameters may not " "have correct ``__parameters__`` after substitution because :class:`typing." @@ -6353,49 +6423,49 @@ msgstr "" "değiştirildikten sonra doğru ``__parameters__`` olmayabilir çünkü :class:" "`typing.ParamSpec` öncelikle statik tip kontrolü için tasarlanmıştır." -#: library/stdtypes.rst:5070 +#: library/stdtypes.rst:5121 msgid "" "A boolean that is true if the alias has been unpacked using the ``*`` " "operator (see :data:`~typing.TypeVarTuple`)." msgstr "" -#: library/stdtypes.rst:5079 +#: library/stdtypes.rst:5130 msgid ":pep:`484` - Type Hints" msgstr "" -#: library/stdtypes.rst:5079 +#: library/stdtypes.rst:5130 msgid "Introducing Python's framework for type annotations." msgstr "" -#: library/stdtypes.rst:5084 +#: library/stdtypes.rst:5135 msgid ":pep:`585` - Type Hinting Generics In Standard Collections" msgstr "" ":pep:`585` - Standart Koleksiyonlarda Tip İma Etme (Type Hinting) Jenerikleri" -#: library/stdtypes.rst:5082 +#: library/stdtypes.rst:5133 msgid "" "Introducing the ability to natively parameterize standard-library classes, " "provided they implement the special class method :meth:`~object." "__class_getitem__`." msgstr "" -#: library/stdtypes.rst:5087 +#: library/stdtypes.rst:5138 msgid "" ":ref:`Generics`, :ref:`user-defined generics ` and :" "class:`typing.Generic`" msgstr "" -#: library/stdtypes.rst:5087 +#: library/stdtypes.rst:5138 msgid "" "Documentation on how to implement generic classes that can be parameterized " "at runtime and understood by static type-checkers." msgstr "" -#: library/stdtypes.rst:5096 +#: library/stdtypes.rst:5147 msgid "Union Type" msgstr "Sendika Türü" -#: library/stdtypes.rst:5102 +#: library/stdtypes.rst:5153 msgid "" "A union object holds the value of the ``|`` (bitwise or) operation on " "multiple :ref:`type objects `. These types are intended " @@ -6409,7 +6479,7 @@ msgstr "" "Birleşim türü ifadesi, aşağıdakilere kıyasla daha temiz tür ipucu sözdizimi " "sağlar :data:`typing.Union`." -#: library/stdtypes.rst:5109 +#: library/stdtypes.rst:5160 msgid "" "Defines a union object which holds types *X*, *Y*, and so forth. ``X | Y`` " "means either X or Y. It is equivalent to ``typing.Union[X, Y]``. For " @@ -6420,7 +6490,7 @@ msgstr "" "anlamına gelir. Bu, ``typing.Union[X, Y]`` ile eş değerdir. Örneğin, " "aşağıdaki işlev :class:`int` veya :class:`float`::" -#: library/stdtypes.rst:5119 +#: library/stdtypes.rst:5170 msgid "" "The ``|`` operand cannot be used at runtime to define unions where one or " "more members is a forward reference. For example, ``int | \"Foo\"``, where " @@ -6429,34 +6499,34 @@ msgid "" "a string, e.g. ``\"int | Foo\"``." msgstr "" -#: library/stdtypes.rst:5127 +#: library/stdtypes.rst:5178 msgid "" "Union objects can be tested for equality with other union objects. Details:" msgstr "" "Birlik nesneleri, diğer birlik nesneleriyle eşitlik açısından test " "edilebilir. Detaylar:" -#: library/stdtypes.rst:5129 +#: library/stdtypes.rst:5180 msgid "Unions of unions are flattened::" msgstr "Birliklerin birlikleri düzleştirimiştir::" -#: library/stdtypes.rst:5133 +#: library/stdtypes.rst:5184 msgid "Redundant types are removed::" msgstr "Gereksiz türler kaldırılır::" -#: library/stdtypes.rst:5137 +#: library/stdtypes.rst:5188 msgid "When comparing unions, the order is ignored::" msgstr "Birlikleri karşılaştırırken, sipariş göz ardı edilir::" -#: library/stdtypes.rst:5141 +#: library/stdtypes.rst:5192 msgid "It is compatible with :data:`typing.Union`::" msgstr ":data:`typing.Union`:: ile uyumludur:" -#: library/stdtypes.rst:5145 +#: library/stdtypes.rst:5196 msgid "Optional types can be spelled as a union with ``None``::" msgstr "İsteğe bağlı türler ``None``:: ile bir birlik olarak yazılabilir:" -#: library/stdtypes.rst:5152 +#: library/stdtypes.rst:5203 msgid "" "Calls to :func:`isinstance` and :func:`issubclass` are also supported with a " "union object::" @@ -6464,14 +6534,14 @@ msgstr "" ":func:`isinstance` ve :func:`issubclass` çağrıları da bir birlik nesnesiyle " "desteklenir::" -#: library/stdtypes.rst:5158 +#: library/stdtypes.rst:5209 #, fuzzy msgid "" "However, :ref:`parameterized generics ` in union objects " "cannot be checked::" msgstr "Ancak, :ref:`types-genericalias` içeren union nesneleri kullanılamaz::" -#: library/stdtypes.rst:5168 +#: library/stdtypes.rst:5219 msgid "" "The user-exposed type for the union object can be accessed from :data:`types." "UnionType` and used for :func:`isinstance` checks. An object cannot be " @@ -6481,7 +6551,7 @@ msgstr "" "erişilebilir ve :func:`isinstance` kontrolleri için kullanılabilir. Bir " "nesne şu türden örneklenemez::" -#: library/stdtypes.rst:5181 +#: library/stdtypes.rst:5232 msgid "" "The :meth:`__or__` method for type objects was added to support the syntax " "``X | Y``. If a metaclass implements :meth:`__or__`, the Union may override " @@ -6491,15 +6561,15 @@ msgstr "" "için eklendi. Eğer bir metaclass :meth:`__or__` metodunu uygularsa, Union " "bunu geçersiz kılabilir::" -#: library/stdtypes.rst:5199 +#: library/stdtypes.rst:5250 msgid ":pep:`604` -- PEP proposing the ``X | Y`` syntax and the Union type." msgstr ":pep:`604` -- ``X | Y`` sözdizimini ve Birlik türünü öneren PEP." -#: library/stdtypes.rst:5207 +#: library/stdtypes.rst:5258 msgid "Other Built-in Types" msgstr "Diğer Yerleşik Tipler" -#: library/stdtypes.rst:5209 +#: library/stdtypes.rst:5260 msgid "" "The interpreter supports several other kinds of objects. Most of these " "support only one or two operations." @@ -6507,11 +6577,11 @@ msgstr "" "Yorumlayıcı başka nesne türlerini de destekler. Bunların çoğu yalnızca bir " "veya iki işlemi destekler." -#: library/stdtypes.rst:5216 +#: library/stdtypes.rst:5267 msgid "Modules" msgstr "Modüller" -#: library/stdtypes.rst:5218 +#: library/stdtypes.rst:5269 msgid "" "The only special operation on a module is attribute access: ``m.name``, " "where *m* is a module and *name* accesses a name defined in *m*'s symbol " @@ -6529,7 +6599,7 @@ msgstr "" "bunun yerine bir yerlerde *foo* adında bir modül için (harici) bir " "*tanımlama* gerektirir)" -#: library/stdtypes.rst:5225 +#: library/stdtypes.rst:5276 msgid "" "A special attribute of every module is :attr:`~object.__dict__`. This is the " "dictionary containing the module's symbol table. Modifying this dictionary " @@ -6547,7 +6617,7 @@ msgstr "" "`` yazamazsınız). :attr:`~object.__dict__` öğesinin doğrudan değiştirilmesi " "önerilmez." -#: library/stdtypes.rst:5233 +#: library/stdtypes.rst:5284 msgid "" "Modules built into the interpreter are written like this: ````. If loaded from a file, they are written as ````. Eğer bir dosyadan yüklenmişlerse, ```` şeklinde yazılırlar." -#: library/stdtypes.rst:5241 +#: library/stdtypes.rst:5292 msgid "Classes and Class Instances" msgstr "Sınıflar ve Sınıf Örnekleri" -#: library/stdtypes.rst:5243 +#: library/stdtypes.rst:5294 msgid "See :ref:`objects` and :ref:`class` for these." msgstr "Bunlar için :ref:`class` ve :ref:`objects` bakın." -#: library/stdtypes.rst:5249 +#: library/stdtypes.rst:5300 msgid "Functions" msgstr "Fonksiyonlar" -#: library/stdtypes.rst:5251 +#: library/stdtypes.rst:5302 msgid "" "Function objects are created by function definitions. The only operation on " "a function object is to call it: ``func(argument-list)``." @@ -6578,7 +6648,7 @@ msgstr "" "fonksiyon nesnesi üzerindeki tek işlem onu çağırmaktır: ``func(argument-" "list)``." -#: library/stdtypes.rst:5254 +#: library/stdtypes.rst:5305 msgid "" "There are really two flavors of function objects: built-in functions and " "user-defined functions. Both support the same operation (to call the " @@ -6590,15 +6660,15 @@ msgstr "" "çağırmak için), ancak uygulama farklıdır, dolayısıyla farklı nesne türleri " "vardır." -#: library/stdtypes.rst:5258 +#: library/stdtypes.rst:5309 msgid "See :ref:`function` for more information." msgstr "Daha fazla bilgi için :ref:`function` bölümüne bakınız." -#: library/stdtypes.rst:5264 +#: library/stdtypes.rst:5315 msgid "Methods" msgstr "Yöntemler" -#: library/stdtypes.rst:5268 +#: library/stdtypes.rst:5319 msgid "" "Methods are functions that are called using the attribute notation. There " "are two flavors: built-in methods (such as :meth:`append` on lists) and " @@ -6610,7 +6680,7 @@ msgstr "" "yöntemleri. Yerleşik yöntemler, onları destekleyen türlerle birlikte " "tanımlanır." -#: library/stdtypes.rst:5273 +#: library/stdtypes.rst:5324 msgid "" "If you access a method (a function defined in a class namespace) through an " "instance, you get a special object: a :dfn:`bound method` (also called :dfn:" @@ -6630,7 +6700,7 @@ msgstr "" "``m(arg-1, arg-2, ..., arg-n)`` çağrısı tamamen ``m.__func__(m.__self__, " "arg-1, arg-2, ..., arg-n)`` çağrısına eş değerdir." -#: library/stdtypes.rst:5282 +#: library/stdtypes.rst:5333 msgid "" "Like function objects, bound method objects support getting arbitrary " "attributes. However, since method attributes are actually stored on the " @@ -6647,15 +6717,15 @@ msgstr "" "ayarlamak için, bunu temel işlev nesnesi üzerinde açıkça ayarlamanız " "gerekir::" -#: library/stdtypes.rst:5333 +#: library/stdtypes.rst:5384 msgid "See :ref:`types` for more information." msgstr "Daha fazla bilgi için :ref:`types` sayfasına bakın." -#: library/stdtypes.rst:5310 +#: library/stdtypes.rst:5361 msgid "Code Objects" msgstr "Kod Nesneleri" -#: library/stdtypes.rst:5316 +#: library/stdtypes.rst:5367 msgid "" "Code objects are used by the implementation to represent \"pseudo-compiled\" " "executable Python code such as a function body. They differ from function " @@ -6671,7 +6741,7 @@ msgstr "" "tarafından döndürülür ve :attr:`__code__` niteliği aracılığıyla işlev " "nesnelerinden çıkarılabilir. Ayrıca :mod:`code` modülüne de bakınız." -#: library/stdtypes.rst:5323 +#: library/stdtypes.rst:5374 msgid "" "Accessing ``__code__`` raises an :ref:`auditing event ` ``object." "__getattr__`` with arguments ``obj`` and ``\"__code__\"``." @@ -6679,7 +6749,7 @@ msgstr "" "``__code__`` 'e erişmek,``obj`` ve ``\"__code__\"`` argümanlarıyla :ref:" "`denetim etkinliği ` ``object.__getattr__`` oluşturur." -#: library/stdtypes.rst:5330 +#: library/stdtypes.rst:5381 msgid "" "A code object can be executed or evaluated by passing it (instead of a " "source string) to the :func:`exec` or :func:`eval` built-in functions." @@ -6687,11 +6757,11 @@ msgstr "" "Bir kod nesnesi (kaynak dize yerine) :func:`exec` veya :func:`eval` yerleşik " "işlevlerine geçirilerek yürütülebilir veya değerlendirilebilir." -#: library/stdtypes.rst:5339 +#: library/stdtypes.rst:5390 msgid "Type Objects" msgstr "Type Objects" -#: library/stdtypes.rst:5345 +#: library/stdtypes.rst:5396 msgid "" "Type objects represent the various object types. An object's type is " "accessed by the built-in function :func:`type`. There are no special " @@ -6703,15 +6773,15 @@ msgstr "" "işlem yoktur. Standart modül :mod:`types` tüm standart yerleşik türler için " "isimleri tanımlar." -#: library/stdtypes.rst:5350 +#: library/stdtypes.rst:5401 msgid "Types are written like this: ````." msgstr "Türler şu şekilde yazılır: ````." -#: library/stdtypes.rst:5356 +#: library/stdtypes.rst:5407 msgid "The Null Object" msgstr "Null Nesne" -#: library/stdtypes.rst:5358 +#: library/stdtypes.rst:5409 msgid "" "This object is returned by functions that don't explicitly return a value. " "It supports no special operations. There is exactly one null object, named " @@ -6721,15 +6791,15 @@ msgstr "" "operasyonları desteklemez. Tam olarak ``None`` (yerleşik bir ad) adlı bir " "null nesne vardır. ``type(None)()`` aynı singleton'u üretir." -#: library/stdtypes.rst:5362 +#: library/stdtypes.rst:5413 msgid "It is written as ``None``." msgstr "''Yok'' olarak yazılmıştır." -#: library/stdtypes.rst:5369 +#: library/stdtypes.rst:5420 msgid "The Ellipsis Object" msgstr "Üç Nokta Nesnesi" -#: library/stdtypes.rst:5371 +#: library/stdtypes.rst:5422 msgid "" "This object is commonly used by slicing (see :ref:`slicings`). It supports " "no special operations. There is exactly one ellipsis object, named :const:" @@ -6741,15 +6811,15 @@ msgstr "" "ad) adında bir elips nesnesi vardır. ``type(Ellipsis)()``, :const:" "`Ellipsis` singletonunu üretir." -#: library/stdtypes.rst:5376 +#: library/stdtypes.rst:5427 msgid "It is written as ``Ellipsis`` or ``...``." msgstr "``Ellipsis`` veya ``...`` olarak yazılmıştır." -#: library/stdtypes.rst:5382 +#: library/stdtypes.rst:5433 msgid "The NotImplemented Object" msgstr "NotImplemented Nesnesi" -#: library/stdtypes.rst:5384 +#: library/stdtypes.rst:5435 msgid "" "This object is returned from comparisons and binary operations when they are " "asked to operate on types they don't support. See :ref:`comparisons` for " @@ -6761,42 +6831,15 @@ msgstr "" "ref:`comparisons` sayfasına bakın. Tam olarak bir ``NotImplemented`` " "nesnesi vardır. ``type(NotImplemented)()``, singleton örneğini üretir." -#: library/stdtypes.rst:5389 +#: library/stdtypes.rst:5440 msgid "It is written as ``NotImplemented``." msgstr "''NotImplemented'' olarak yazılmıştır." -#: library/stdtypes.rst:5395 -msgid "Boolean Values" -msgstr "Boolean Değerleri" - -#: library/stdtypes.rst:5397 -msgid "" -"Boolean values are the two constant objects ``False`` and ``True``. They " -"are used to represent truth values (although other values can also be " -"considered false or true). In numeric contexts (for example when used as " -"the argument to an arithmetic operator), they behave like the integers 0 and " -"1, respectively. The built-in function :func:`bool` can be used to convert " -"any value to a Boolean, if the value can be interpreted as a truth value " -"(see section :ref:`truth` above)." -msgstr "" -"Boolean değerleri, ``Yanlış`` ve ``Doğru`` olmak üzere iki sabit nesnedir. " -"Doğruluk değerlerini temsil etmek için kullanılırlar (diğer değerler de " -"yanlış veya doğru olarak kabul edilebilir). Sayısal bağlamlarda (örneğin, " -"bir aritmetik işlecinin bağımsız değişkeni olarak kullanıldığında), " -"sırasıyla 0 ve 1 tamsayıları gibi davranırlar. Yerleşik işlev :func:`bool`, " -"değer bir doğruluk değeri olarak yorumlanabiliyorsa, herhangi bir değeri bir " -"Boolean'a dönüştürmek için kullanılabilir (yukarıdaki bölüm :ref:`truth` a " -"bakın)." - -#: library/stdtypes.rst:5410 -msgid "They are written as ``False`` and ``True``, respectively." -msgstr "Sırasıyla ``Yanlış`` ve ``Doğru`` olarak yazılırlar." - -#: library/stdtypes.rst:5416 +#: library/stdtypes.rst:5446 msgid "Internal Objects" msgstr "İç Nesneler" -#: library/stdtypes.rst:5418 +#: library/stdtypes.rst:5448 msgid "" "See :ref:`types` for this information. It describes stack frame objects, " "traceback objects, and slice objects." @@ -6804,11 +6847,11 @@ msgstr "" "Bu bilgi için :ref:`types` sayfasına bakın. Yığın çerçeve nesnelerini, geri " "izleme nesnelerini ve dilim nesnelerini açıklar." -#: library/stdtypes.rst:5425 +#: library/stdtypes.rst:5455 msgid "Special Attributes" msgstr "Özel Özellikler" -#: library/stdtypes.rst:5427 +#: library/stdtypes.rst:5457 msgid "" "The implementation adds a few special read-only attributes to several object " "types, where they are relevant. Some of these are not reported by the :func:" @@ -6818,7 +6861,7 @@ msgstr "" "öznitelik ekler. Bunlardan bazıları :func:`dir` yerleşik işlevi tarafından " "bildirilmez." -#: library/stdtypes.rst:5434 +#: library/stdtypes.rst:5464 msgid "" "A dictionary or other mapping object used to store an object's (writable) " "attributes." @@ -6826,20 +6869,20 @@ msgstr "" "Bir nesnenin (yazılabilir) özniteliklerini depolamak için kullanılan sözlük " "veya başka bir eşleme nesnesi." -#: library/stdtypes.rst:5440 +#: library/stdtypes.rst:5470 msgid "The class to which a class instance belongs." msgstr "Bir sınıf örneğinin ait olduğu sınıf." -#: library/stdtypes.rst:5445 +#: library/stdtypes.rst:5475 msgid "The tuple of base classes of a class object." msgstr "Bir sınıf elemanının temel sınıflarının kümesi." -#: library/stdtypes.rst:5450 +#: library/stdtypes.rst:5480 msgid "" "The name of the class, function, method, descriptor, or generator instance." msgstr "Sınıf, fonksiyon, yöntem, tanımlayıcı veya üretici örneğinin adı." -#: library/stdtypes.rst:5456 +#: library/stdtypes.rst:5486 msgid "" "The :term:`qualified name` of the class, function, method, descriptor, or " "generator instance." @@ -6847,7 +6890,13 @@ msgstr "" "Sınıf, fonksiyon, yöntem, tanımlayıcı veya üretici örneğinin :term:" "`qualified name`." -#: library/stdtypes.rst:5464 +#: library/stdtypes.rst:5494 +msgid "" +"The :ref:`type parameters ` of generic classes, functions, and :" +"ref:`type aliases `." +msgstr "" + +#: library/stdtypes.rst:5502 msgid "" "This attribute is a tuple of classes that are considered when looking for " "base classes during method resolution." @@ -6855,7 +6904,7 @@ msgstr "" "Bu öznitelik, yöntem çözümlemesi sırasında temel sınıfları ararken dikkate " "alınan bir sınıf kümesidir." -#: library/stdtypes.rst:5470 +#: library/stdtypes.rst:5508 msgid "" "This method can be overridden by a metaclass to customize the method " "resolution order for its instances. It is called at class instantiation, " @@ -6865,7 +6914,7 @@ msgstr "" "meta sınıf tarafından geçersiz kılınabilir. Sınıf örneğinde çağrılır ve " "sonucu :attr:`~class.__mro__` içinde depolanır." -#: library/stdtypes.rst:5477 +#: library/stdtypes.rst:5515 msgid "" "Each class keeps a list of weak references to its immediate subclasses. " "This method returns a list of all those references still alive. The list is " @@ -6875,11 +6924,11 @@ msgstr "" "tutar. Bu yöntem, hala var olan tüm bu başvuruların bir listesini " "döndürür. Liste tanım sırasına göredir. Örnek::" -#: library/stdtypes.rst:5488 +#: library/stdtypes.rst:5526 msgid "Integer string conversion length limitation" msgstr "" -#: library/stdtypes.rst:5490 +#: library/stdtypes.rst:5528 msgid "" "CPython has a global limit for converting between :class:`int` and :class:" "`str` to mitigate denial of service attacks. This limit *only* applies to " @@ -6887,7 +6936,7 @@ msgid "" "binary conversions are unlimited. The limit can be configured." msgstr "" -#: library/stdtypes.rst:5495 +#: library/stdtypes.rst:5533 msgid "" "The :class:`int` type in CPython is an arbitrary length number stored in " "binary form (commonly known as a \"bignum\"). There exists no algorithm that " @@ -6897,25 +6946,25 @@ msgid "" "value such as ``int('1' * 500_000)`` can take over a second on a fast CPU." msgstr "" -#: library/stdtypes.rst:5502 +#: library/stdtypes.rst:5540 msgid "" "Limiting conversion size offers a practical way to avoid `CVE-2020-10735 " "`_." msgstr "" -#: library/stdtypes.rst:5505 +#: library/stdtypes.rst:5543 msgid "" "The limit is applied to the number of digit characters in the input or " "output string when a non-linear conversion algorithm would be involved. " "Underscores and the sign are not counted towards the limit." msgstr "" -#: library/stdtypes.rst:5509 +#: library/stdtypes.rst:5547 msgid "" "When an operation would exceed the limit, a :exc:`ValueError` is raised:" msgstr "" -#: library/stdtypes.rst:5531 +#: library/stdtypes.rst:5569 msgid "" "The default limit is 4300 digits as provided in :data:`sys.int_info." "default_max_str_digits `. The lowest limit that can be " @@ -6923,95 +6972,95 @@ msgid "" "str_digits_check_threshold `." msgstr "" -#: library/stdtypes.rst:5536 +#: library/stdtypes.rst:5574 msgid "Verification:" msgstr "Doğrulama" -#: library/stdtypes.rst:5551 +#: library/stdtypes.rst:5589 msgid "Affected APIs" msgstr "" -#: library/stdtypes.rst:5553 +#: library/stdtypes.rst:5591 msgid "" "The limitation only applies to potentially slow conversions between :class:" "`int` and :class:`str` or :class:`bytes`:" msgstr "" -#: library/stdtypes.rst:5556 +#: library/stdtypes.rst:5594 msgid "``int(string)`` with default base 10." msgstr "" -#: library/stdtypes.rst:5557 +#: library/stdtypes.rst:5595 msgid "``int(string, base)`` for all bases that are not a power of 2." msgstr "" -#: library/stdtypes.rst:5558 +#: library/stdtypes.rst:5596 msgid "``str(integer)``." msgstr "" -#: library/stdtypes.rst:5559 +#: library/stdtypes.rst:5597 msgid "``repr(integer)``." msgstr "" -#: library/stdtypes.rst:5560 +#: library/stdtypes.rst:5598 msgid "" "any other string conversion to base 10, for example ``f\"{integer}\"``, " "``\"{}\".format(integer)``, or ``b\"%d\" % integer``." msgstr "" -#: library/stdtypes.rst:5563 +#: library/stdtypes.rst:5601 msgid "The limitations do not apply to functions with a linear algorithm:" msgstr "" -#: library/stdtypes.rst:5565 +#: library/stdtypes.rst:5603 msgid "``int(string, base)`` with base 2, 4, 8, 16, or 32." msgstr "" -#: library/stdtypes.rst:5566 +#: library/stdtypes.rst:5604 msgid ":func:`int.from_bytes` and :func:`int.to_bytes`." msgstr "" -#: library/stdtypes.rst:5567 +#: library/stdtypes.rst:5605 msgid ":func:`hex`, :func:`oct`, :func:`bin`." msgstr "" -#: library/stdtypes.rst:5568 +#: library/stdtypes.rst:5606 msgid ":ref:`formatspec` for hex, octal, and binary numbers." msgstr "" -#: library/stdtypes.rst:5569 +#: library/stdtypes.rst:5607 #, fuzzy msgid ":class:`str` to :class:`float`." msgstr ":class:`str` 'den :class:`float` 'a." -#: library/stdtypes.rst:5570 +#: library/stdtypes.rst:5608 msgid ":class:`str` to :class:`decimal.Decimal`." msgstr "" -#: library/stdtypes.rst:5573 +#: library/stdtypes.rst:5611 msgid "Configuring the limit" msgstr "" -#: library/stdtypes.rst:5575 +#: library/stdtypes.rst:5613 msgid "" "Before Python starts up you can use an environment variable or an " "interpreter command line flag to configure the limit:" msgstr "" -#: library/stdtypes.rst:5578 +#: library/stdtypes.rst:5616 msgid "" ":envvar:`PYTHONINTMAXSTRDIGITS`, e.g. ``PYTHONINTMAXSTRDIGITS=640 python3`` " "to set the limit to 640 or ``PYTHONINTMAXSTRDIGITS=0 python3`` to disable " "the limitation." msgstr "" -#: library/stdtypes.rst:5581 +#: library/stdtypes.rst:5619 msgid "" ":option:`-X int_max_str_digits <-X>`, e.g. ``python3 -X " "int_max_str_digits=640``" msgstr "" -#: library/stdtypes.rst:5583 +#: library/stdtypes.rst:5621 msgid "" ":data:`sys.flags.int_max_str_digits` contains the value of :envvar:" "`PYTHONINTMAXSTRDIGITS` or :option:`-X int_max_str_digits <-X>`. If both the " @@ -7020,38 +7069,38 @@ msgid "" "int_info.default_max_str_digits` was used during initialization." msgstr "" -#: library/stdtypes.rst:5589 +#: library/stdtypes.rst:5627 msgid "" "From code, you can inspect the current limit and set a new one using these :" "mod:`sys` APIs:" msgstr "" -#: library/stdtypes.rst:5592 +#: library/stdtypes.rst:5630 msgid "" ":func:`sys.get_int_max_str_digits` and :func:`sys.set_int_max_str_digits` " "are a getter and setter for the interpreter-wide limit. Subinterpreters have " "their own limit." msgstr "" -#: library/stdtypes.rst:5596 +#: library/stdtypes.rst:5634 msgid "" "Information about the default and minimum can be found in :data:`sys." "int_info`:" msgstr "" -#: library/stdtypes.rst:5598 +#: library/stdtypes.rst:5636 msgid "" ":data:`sys.int_info.default_max_str_digits ` is the compiled-" "in default limit." msgstr "" -#: library/stdtypes.rst:5600 +#: library/stdtypes.rst:5638 msgid "" ":data:`sys.int_info.str_digits_check_threshold ` is the lowest " "accepted value for the limit (other than 0 which disables it)." msgstr "" -#: library/stdtypes.rst:5607 +#: library/stdtypes.rst:5645 msgid "" "Setting a low limit *can* lead to problems. While rare, code exists that " "contains integer constants in decimal in their source that exceed the " @@ -7063,7 +7112,7 @@ msgid "" "constants is to convert them to ``0x`` hexadecimal form as it has no limit." msgstr "" -#: library/stdtypes.rst:5616 +#: library/stdtypes.rst:5654 msgid "" "Test your application thoroughly if you use a low limit. Ensure your tests " "run with the limit set early via the environment or flag so that it applies " @@ -7071,31 +7120,31 @@ msgid "" "to precompile ``.py`` sources to ``.pyc`` files." msgstr "" -#: library/stdtypes.rst:5622 +#: library/stdtypes.rst:5660 msgid "Recommended configuration" msgstr "" -#: library/stdtypes.rst:5624 +#: library/stdtypes.rst:5662 msgid "" "The default :data:`sys.int_info.default_max_str_digits` is expected to be " "reasonable for most applications. If your application requires a different " "limit, set it from your main entry point using Python version agnostic code " -"as these APIs were added in security patch releases in versions before 3.11." +"as these APIs were added in security patch releases in versions before 3.12." msgstr "" -#: library/stdtypes.rst:5629 +#: library/stdtypes.rst:5667 msgid "Example::" msgstr "Örnek::" -#: library/stdtypes.rst:5641 +#: library/stdtypes.rst:5679 msgid "If you need to disable it entirely, set it to ``0``." msgstr "" -#: library/stdtypes.rst:5645 +#: library/stdtypes.rst:5683 msgid "Footnotes" msgstr "Dipnotlar" -#: library/stdtypes.rst:5646 +#: library/stdtypes.rst:5684 msgid "" "Additional information on these special methods may be found in the Python " "Reference Manual (:ref:`customization`)." @@ -7103,7 +7152,7 @@ msgstr "" "Bu özel yöntemler hakkında daha fazla bilgi Python Referans El Kitabında (:" "ref:`customization`) bulunabilir." -#: library/stdtypes.rst:5649 +#: library/stdtypes.rst:5687 msgid "" "As a consequence, the list ``[1, 2]`` is considered equal to ``[1.0, 2.0]``, " "and similarly for tuples." @@ -7111,12 +7160,12 @@ msgstr "" "Sonuç olarak, ``[1, 2]`` listesi ``[1.0, 2.0]`` ve benzer şekilde demetler " "için eşit kabul edilir." -#: library/stdtypes.rst:5652 +#: library/stdtypes.rst:5690 msgid "They must have since the parser can't tell the type of the operands." msgstr "" "Ayrıştırıcı, işlenenlerin türünü söyleyemediğinden sahip olmaları gerekir." -#: library/stdtypes.rst:5654 +#: library/stdtypes.rst:5692 msgid "" "Cased characters are those with general category property being one of " "\"Lu\" (Letter, uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, " @@ -7126,7 +7175,7 @@ msgstr "" "\"Ll\" (Harf, küçük harf) veya \"Lt\" (Harf, başlık) karakterlerinden biri " "olan karakterlerdir." -#: library/stdtypes.rst:5657 +#: library/stdtypes.rst:5695 msgid "" "To format only a tuple you should therefore provide a singleton tuple whose " "only element is the tuple to be formatted." @@ -7139,12 +7188,12 @@ msgstr "" msgid "built-in" msgstr "Gömülü Türler" -#: library/stdtypes.rst:315 library/stdtypes.rst:909 library/stdtypes.rst:1098 -#: library/stdtypes.rst:4372 library/stdtypes.rst:5341 +#: library/stdtypes.rst:315 library/stdtypes.rst:948 library/stdtypes.rst:1137 +#: library/stdtypes.rst:4419 library/stdtypes.rst:5392 msgid "types" msgstr "" -#: library/stdtypes.rst:1113 library/stdtypes.rst:4372 +#: library/stdtypes.rst:1152 library/stdtypes.rst:4419 msgid "statement" msgstr "" @@ -7164,7 +7213,7 @@ msgstr "" msgid "value" msgstr "" -#: library/stdtypes.rst:80 library/stdtypes.rst:5405 +#: library/stdtypes.rst:80 library/stdtypes.rst:815 #, fuzzy msgid "Boolean" msgstr "Boolean Değerleri" @@ -7191,7 +7240,7 @@ msgid "False (Built-in object)" msgstr "" #: library/stdtypes.rst:97 library/stdtypes.rst:194 library/stdtypes.rst:392 -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 #, fuzzy msgid "operator" msgstr "İşlem" @@ -7204,11 +7253,11 @@ msgstr "" msgid "and" msgstr "" -#: library/stdtypes.rst:5405 +#: library/stdtypes.rst:815 msgid "False" msgstr "" -#: library/stdtypes.rst:5405 +#: library/stdtypes.rst:815 msgid "True" msgstr "" @@ -7264,11 +7313,11 @@ msgstr "" msgid "is not" msgstr "``is not``" -#: library/stdtypes.rst:207 library/stdtypes.rst:1076 library/stdtypes.rst:1218 -#: library/stdtypes.rst:1341 library/stdtypes.rst:1499 -#: library/stdtypes.rst:2487 library/stdtypes.rst:4171 -#: library/stdtypes.rst:4843 library/stdtypes.rst:5266 -#: library/stdtypes.rst:5305 +#: library/stdtypes.rst:207 library/stdtypes.rst:1115 library/stdtypes.rst:1257 +#: library/stdtypes.rst:1380 library/stdtypes.rst:1538 +#: library/stdtypes.rst:2531 library/stdtypes.rst:4218 +#: library/stdtypes.rst:4894 library/stdtypes.rst:5317 +#: library/stdtypes.rst:5356 #, fuzzy msgid "object" msgstr "Kod Nesneleri" @@ -7311,11 +7360,11 @@ msgstr "" msgid "__ge__() (instance method)" msgstr "" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 msgid "in" msgstr "" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 #, fuzzy msgid "not in" msgstr "``x not in s``" @@ -7361,8 +7410,8 @@ msgstr "" msgid "arithmetic" msgstr "" -#: library/stdtypes.rst:909 library/stdtypes.rst:4372 library/stdtypes.rst:5326 -#: library/stdtypes.rst:5341 +#: library/stdtypes.rst:948 library/stdtypes.rst:4419 library/stdtypes.rst:5377 +#: library/stdtypes.rst:5392 msgid "built-in function" msgstr "" @@ -7379,7 +7428,7 @@ msgstr "" msgid "complex" msgstr ":func:`complex`" -#: library/stdtypes.rst:2344 library/stdtypes.rst:3562 +#: library/stdtypes.rst:2388 library/stdtypes.rst:3606 msgid "+ (plus)" msgstr "" @@ -7393,11 +7442,11 @@ msgstr "Grup Ayırıcı" msgid "binary operator" msgstr "Satır Ayrıcı" -#: library/stdtypes.rst:2344 library/stdtypes.rst:3562 +#: library/stdtypes.rst:2388 library/stdtypes.rst:3606 msgid "- (minus)" msgstr "" -#: library/stdtypes.rst:2301 library/stdtypes.rst:3519 +#: library/stdtypes.rst:2345 library/stdtypes.rst:3563 msgid "* (asterisk)" msgstr "" @@ -7409,7 +7458,7 @@ msgstr "" msgid "//" msgstr "" -#: library/stdtypes.rst:2271 library/stdtypes.rst:3487 +#: library/stdtypes.rst:2315 library/stdtypes.rst:3531 msgid "% (percent)" msgstr "" @@ -7417,7 +7466,7 @@ msgstr "" msgid "**" msgstr "" -#: library/stdtypes.rst:392 library/stdtypes.rst:1113 library/stdtypes.rst:4372 +#: library/stdtypes.rst:392 library/stdtypes.rst:1152 library/stdtypes.rst:4419 #, fuzzy msgid "operations on" msgstr "İşlem" @@ -7427,7 +7476,7 @@ msgstr "İşlem" msgid "conjugate() (complex number method)" msgstr "*c* karmaşık sayısının eşleniği" -#: library/stdtypes.rst:1565 library/stdtypes.rst:5341 +#: library/stdtypes.rst:1604 library/stdtypes.rst:5392 #, fuzzy msgid "module" msgstr "Modüller" @@ -7488,404 +7537,428 @@ msgstr "" msgid "~ (tilde)" msgstr "" -#: library/stdtypes.rst:806 +#: library/stdtypes.rst:815 +msgid "values" +msgstr "" + +#: library/stdtypes.rst:845 msgid "iterator protocol" msgstr "" -#: library/stdtypes.rst:4758 +#: library/stdtypes.rst:4809 msgid "protocol" msgstr "" -#: library/stdtypes.rst:806 +#: library/stdtypes.rst:845 #, fuzzy msgid "iterator" msgstr "Yineleyici Türleri" -#: library/stdtypes.rst:893 library/stdtypes.rst:1076 library/stdtypes.rst:1113 +#: library/stdtypes.rst:932 library/stdtypes.rst:1115 library/stdtypes.rst:1152 msgid "sequence" msgstr "" -#: library/stdtypes.rst:806 +#: library/stdtypes.rst:845 #, fuzzy msgid "iteration" msgstr "İşlem" -#: library/stdtypes.rst:806 +#: library/stdtypes.rst:845 msgid "container" msgstr "" -#: library/stdtypes.rst:806 +#: library/stdtypes.rst:845 #, fuzzy msgid "iteration over" msgstr "İşlem" -#: library/stdtypes.rst:4372 +#: library/stdtypes.rst:4419 msgid "len" msgstr "" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 msgid "min" msgstr "" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 msgid "max" msgstr "" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 msgid "concatenation" msgstr "" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 #, fuzzy msgid "operation" msgstr "İşlem" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 #, fuzzy msgid "repetition" msgstr "Temsil" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 #, fuzzy msgid "subscript" msgstr "Açıklama" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "slice" msgstr "" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 msgid "count() (sequence method)" msgstr "" -#: library/stdtypes.rst:909 +#: library/stdtypes.rst:948 msgid "index() (sequence method)" msgstr "" -#: library/stdtypes.rst:965 +#: library/stdtypes.rst:1004 msgid "loop" msgstr "" -#: library/stdtypes.rst:965 +#: library/stdtypes.rst:1004 #, fuzzy msgid "over mutable sequence" msgstr "Değiştirilemez Dizi Tipleri" -#: library/stdtypes.rst:965 +#: library/stdtypes.rst:1004 #, fuzzy msgid "mutable sequence" msgstr "Değiştirilemez Dizi Tipleri" -#: library/stdtypes.rst:965 +#: library/stdtypes.rst:1004 msgid "loop over" msgstr "" -#: library/stdtypes.rst:1076 +#: library/stdtypes.rst:1115 msgid "immutable" msgstr "" -#: library/stdtypes.rst:1297 +#: library/stdtypes.rst:1336 #, fuzzy msgid "tuple" msgstr "Demetler" -#: library/stdtypes.rst:1076 +#: library/stdtypes.rst:1115 msgid "hash" msgstr "" -#: library/stdtypes.rst:1098 +#: library/stdtypes.rst:1137 msgid "mutable" msgstr "" -#: library/stdtypes.rst:1113 library/stdtypes.rst:1218 +#: library/stdtypes.rst:1152 library/stdtypes.rst:1257 msgid "list" msgstr "" -#: library/stdtypes.rst:2468 library/stdtypes.rst:2666 -#: library/stdtypes.rst:3487 +#: library/stdtypes.rst:2512 library/stdtypes.rst:2710 +#: library/stdtypes.rst:3531 msgid "bytearray" msgstr "" -#: library/stdtypes.rst:4372 library/stdtypes.rst:5341 +#: library/stdtypes.rst:4419 library/stdtypes.rst:5392 msgid "type" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "assignment" msgstr "" -#: library/stdtypes.rst:4372 +#: library/stdtypes.rst:4419 msgid "del" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "append() (sequence method)" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "clear() (sequence method)" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "copy() (sequence method)" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "extend() (sequence method)" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "insert() (sequence method)" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "pop() (sequence method)" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "remove() (sequence method)" msgstr "" -#: library/stdtypes.rst:1113 +#: library/stdtypes.rst:1152 msgid "reverse() (sequence method)" msgstr "" -#: library/stdtypes.rst:1341 +#: library/stdtypes.rst:1380 #, fuzzy msgid "range" msgstr "Aralıklar" -#: library/stdtypes.rst:1512 library/stdtypes.rst:2271 +#: library/stdtypes.rst:1551 library/stdtypes.rst:2315 msgid "string" msgstr "" -#: library/stdtypes.rst:1463 +#: library/stdtypes.rst:1502 #, fuzzy msgid "text sequence type" msgstr "Değiştirilebilir Dizi Tipleri" -#: library/stdtypes.rst:1512 library/stdtypes.rst:1530 +#: library/stdtypes.rst:1551 library/stdtypes.rst:1569 #, fuzzy msgid "str (built-in class)" msgstr "Diğer Yerleşik Tipler" -#: library/stdtypes.rst:1463 +#: library/stdtypes.rst:1502 msgid "(see also string)" msgstr "" -#: library/stdtypes.rst:1499 +#: library/stdtypes.rst:1538 msgid "io.StringIO" msgstr "" -#: library/stdtypes.rst:2460 +#: library/stdtypes.rst:2504 msgid "buffer protocol" msgstr "" -#: library/stdtypes.rst:2468 library/stdtypes.rst:2666 -#: library/stdtypes.rst:3487 +#: library/stdtypes.rst:2512 library/stdtypes.rst:2710 +#: library/stdtypes.rst:3531 msgid "bytes" msgstr "" -#: library/stdtypes.rst:2666 +#: library/stdtypes.rst:2710 #, fuzzy msgid "methods" msgstr "Yöntemler" -#: library/stdtypes.rst:1565 +#: library/stdtypes.rst:1604 msgid "re" msgstr "" -#: library/stdtypes.rst:3341 +#: library/stdtypes.rst:3385 msgid "universal newlines" msgstr "" -#: library/stdtypes.rst:2080 +#: library/stdtypes.rst:2123 msgid "str.splitlines method" msgstr "" -#: library/stdtypes.rst:2271 +#: library/stdtypes.rst:2315 msgid "formatting, string (%)" msgstr "" -#: library/stdtypes.rst:2271 +#: library/stdtypes.rst:2315 msgid "interpolation, string (%)" msgstr "" -#: library/stdtypes.rst:2271 +#: library/stdtypes.rst:2315 msgid "formatting, printf" msgstr "" -#: library/stdtypes.rst:2271 +#: library/stdtypes.rst:2315 msgid "interpolation, printf" msgstr "" -#: library/stdtypes.rst:3487 +#: library/stdtypes.rst:3531 msgid "printf-style formatting" msgstr "" -#: library/stdtypes.rst:3487 +#: library/stdtypes.rst:3531 msgid "sprintf-style formatting" msgstr "" -#: library/stdtypes.rst:3519 +#: library/stdtypes.rst:3563 msgid "() (parentheses)" msgstr "" -#: library/stdtypes.rst:2344 library/stdtypes.rst:3562 +#: library/stdtypes.rst:2388 library/stdtypes.rst:3606 msgid "in printf-style formatting" msgstr "" -#: library/stdtypes.rst:3519 +#: library/stdtypes.rst:3563 msgid ". (dot)" msgstr "" -#: library/stdtypes.rst:3562 +#: library/stdtypes.rst:3606 msgid "# (hash)" msgstr "" -#: library/stdtypes.rst:3562 +#: library/stdtypes.rst:3606 msgid "space" msgstr "" -#: library/stdtypes.rst:2460 +#: library/stdtypes.rst:2504 #, fuzzy msgid "binary sequence types" msgstr "Değiştirilebilir Dizi Tipleri" -#: library/stdtypes.rst:2468 +#: library/stdtypes.rst:2512 msgid "memoryview" msgstr "" -#: library/stdtypes.rst:2468 +#: library/stdtypes.rst:2512 msgid "array" msgstr "" -#: library/stdtypes.rst:3341 +#: library/stdtypes.rst:3385 msgid "bytes.splitlines method" msgstr "" -#: library/stdtypes.rst:3341 +#: library/stdtypes.rst:3385 msgid "bytearray.splitlines method" msgstr "" -#: library/stdtypes.rst:3487 +#: library/stdtypes.rst:3531 msgid "formatting" msgstr "" -#: library/stdtypes.rst:3487 +#: library/stdtypes.rst:3531 msgid "bytes (%)" msgstr "" -#: library/stdtypes.rst:3487 +#: library/stdtypes.rst:3531 msgid "bytearray (%)" msgstr "" -#: library/stdtypes.rst:3487 +#: library/stdtypes.rst:3531 #, fuzzy msgid "interpolation" msgstr "Satır Tablolama" -#: library/stdtypes.rst:4171 +#: library/stdtypes.rst:4218 msgid "set" msgstr "" -#: library/stdtypes.rst:4372 +#: library/stdtypes.rst:4419 msgid "mapping" msgstr "" -#: library/stdtypes.rst:4372 +#: library/stdtypes.rst:4419 msgid "dictionary" msgstr "" -#: library/stdtypes.rst:4455 +#: library/stdtypes.rst:4502 msgid "__missing__()" msgstr "" -#: library/stdtypes.rst:4758 +#: library/stdtypes.rst:4809 #, fuzzy msgid "context manager" msgstr "Bağlam Yöneticisi Türleri" -#: library/stdtypes.rst:4758 +#: library/stdtypes.rst:4809 msgid "context management protocol" msgstr "" -#: library/stdtypes.rst:4758 +#: library/stdtypes.rst:4809 #, fuzzy msgid "context management" msgstr "Bağlam Yöneticisi Türleri" -#: library/stdtypes.rst:4831 +#: library/stdtypes.rst:4882 msgid "annotation" msgstr "" -#: library/stdtypes.rst:4831 +#: library/stdtypes.rst:4882 msgid "type annotation; type hint" msgstr "" -#: library/stdtypes.rst:4843 +#: library/stdtypes.rst:4894 #, fuzzy msgid "GenericAlias" msgstr "Genel Takma Ad Türü" -#: library/stdtypes.rst:4843 +#: library/stdtypes.rst:4894 msgid "Generic" msgstr "" -#: library/stdtypes.rst:4843 +#: library/stdtypes.rst:4894 msgid "Alias" msgstr "" -#: library/stdtypes.rst:5098 +#: library/stdtypes.rst:5149 #, fuzzy msgid "Union" msgstr "Sendika Türü" -#: library/stdtypes.rst:5098 +#: library/stdtypes.rst:5149 msgid "union" msgstr "" -#: library/stdtypes.rst:5266 +#: library/stdtypes.rst:5317 #, fuzzy msgid "method" msgstr "Yöntemler" -#: library/stdtypes.rst:5305 +#: library/stdtypes.rst:5356 msgid "code" msgstr "" -#: library/stdtypes.rst:5305 +#: library/stdtypes.rst:5356 #, fuzzy msgid "code object" msgstr "Kod Nesneleri" -#: library/stdtypes.rst:5312 +#: library/stdtypes.rst:5363 msgid "compile" msgstr "" -#: library/stdtypes.rst:5312 +#: library/stdtypes.rst:5363 msgid "__code__ (function object attribute)" msgstr "" -#: library/stdtypes.rst:5326 +#: library/stdtypes.rst:5377 msgid "exec" msgstr "" -#: library/stdtypes.rst:5326 +#: library/stdtypes.rst:5377 msgid "eval" msgstr "" -#: library/stdtypes.rst:5365 +#: library/stdtypes.rst:5416 msgid "..." msgstr "" -#: library/stdtypes.rst:5365 +#: library/stdtypes.rst:5416 msgid "ellipsis literal" msgstr "" -#: library/stdtypes.rst:5405 -msgid "values" -msgstr "" +#~ msgid "Boolean Values" +#~ msgstr "Boolean Değerleri" + +#~ msgid "" +#~ "Boolean values are the two constant objects ``False`` and ``True``. They " +#~ "are used to represent truth values (although other values can also be " +#~ "considered false or true). In numeric contexts (for example when used as " +#~ "the argument to an arithmetic operator), they behave like the integers 0 " +#~ "and 1, respectively. The built-in function :func:`bool` can be used to " +#~ "convert any value to a Boolean, if the value can be interpreted as a " +#~ "truth value (see section :ref:`truth` above)." +#~ msgstr "" +#~ "Boolean değerleri, ``Yanlış`` ve ``Doğru`` olmak üzere iki sabit " +#~ "nesnedir. Doğruluk değerlerini temsil etmek için kullanılırlar (diğer " +#~ "değerler de yanlış veya doğru olarak kabul edilebilir). Sayısal " +#~ "bağlamlarda (örneğin, bir aritmetik işlecinin bağımsız değişkeni olarak " +#~ "kullanıldığında), sırasıyla 0 ve 1 tamsayıları gibi davranırlar. Yerleşik " +#~ "işlev :func:`bool`, değer bir doğruluk değeri olarak yorumlanabiliyorsa, " +#~ "herhangi bir değeri bir Boolean'a dönüştürmek için kullanılabilir " +#~ "(yukarıdaki bölüm :ref:`truth` a bakın)." + +#~ msgid "They are written as ``False`` and ``True``, respectively." +#~ msgstr "Sırasıyla ``Yanlış`` ve ``Doğru`` olarak yazılırlar." #~ msgid "if *x* is false, then *y*, else *x*" #~ msgstr "*x* yanlışsa, *y*, aksi halde *x*" diff --git a/library/string.po b/library/string.po index 5ce793fa6..247c7cf8a 100644 --- a/library/string.po +++ b/library/string.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -280,7 +280,7 @@ msgid "" "*arg_name* can be followed by any number of index or attribute expressions. " "An expression of the form ``'.name'`` selects the named attribute using :" "func:`getattr`, while an expression of the form ``'[index]'`` does an index " -"lookup using :func:`__getitem__`." +"lookup using :meth:`~object.__getitem__`." msgstr "" #: library/string.rst:242 @@ -301,11 +301,11 @@ msgstr "" #: library/string.rst:258 msgid "" "The *conversion* field causes a type coercion before formatting. Normally, " -"the job of formatting a value is done by the :meth:`__format__` method of " -"the value itself. However, in some cases it is desirable to force a type to " -"be formatted as a string, overriding its own definition of formatting. By " -"converting the value to a string before calling :meth:`__format__`, the " -"normal formatting logic is bypassed." +"the job of formatting a value is done by the :meth:`~object.__format__` " +"method of the value itself. However, in some cases it is desirable to force " +"a type to be formatted as a string, overriding its own definition of " +"formatting. By converting the value to a string before calling :meth:" +"`~object.__format__`, the normal formatting logic is bypassed." msgstr "" #: library/string.rst:265 diff --git a/library/struct.po b/library/struct.po index ccbd8f331..19e55ae8e 100644 --- a/library/struct.po +++ b/library/struct.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -787,7 +787,7 @@ msgid "" "and data sizes. Internal pad bytes are normally inserted automatically. It " "is possible that a zero-repeat format code will be needed at the end of a " "format string to round up to the correct byte boundary for proper alignment " -"of consective chunks of data." +"of consecutive chunks of data." msgstr "" #: library/struct.rst:467 @@ -857,10 +857,9 @@ msgstr "" #: library/struct.rst:550 msgid "" -"The compiled versions of the most recent format strings passed to :class:" -"`Struct` and the module-level functions are cached, so programs that use " -"only a few format strings needn't worry about reusing a single :class:" -"`Struct` instance." +"The compiled versions of the most recent format strings passed to the module-" +"level functions are cached, so programs that use only a few format strings " +"needn't worry about reusing a single :class:`Struct` instance." msgstr "" #: library/struct.rst:555 diff --git a/library/subprocess.po b/library/subprocess.po index fc482eed2..a270944b7 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -149,8 +149,8 @@ msgid "" "*universal_newlines*. Added the *capture_output* parameter." msgstr "" -#: library/subprocess.rst:504 library/subprocess.rst:1227 -#: library/subprocess.rst:1290 +#: library/subprocess.rst:503 library/subprocess.rst:1225 +#: library/subprocess.rst:1288 msgid "" "Changed Windows shell search order for ``shell=True``. The current directory " "and ``%PATH%`` are replaced with ``%COMSPEC%`` and ``%SystemRoot%" @@ -174,7 +174,7 @@ msgid "" "that it ran successfully." msgstr "" -#: library/subprocess.rst:934 +#: library/subprocess.rst:932 msgid "" "A negative value ``-N`` indicates that the child was terminated by signal " "``N`` (POSIX only)." @@ -318,18 +318,17 @@ msgstr "" msgid "" "*stdin*, *stdout* and *stderr* specify the executed program's standard " "input, standard output and standard error file handles, respectively. Valid " -"values are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a " -"positive integer), an existing file object with a valid file descriptor, and " -"``None``. :data:`PIPE` indicates that a new pipe to the child should be " -"created. :data:`DEVNULL` indicates that the special file :data:`os.devnull` " -"will be used. With the default settings of ``None``, no redirection will " -"occur; the child's file handles will be inherited from the parent. " -"Additionally, *stderr* can be :data:`STDOUT`, which indicates that the " -"stderr data from the child process should be captured into the same file " -"handle as for *stdout*." +"values are ``None``, :data:`PIPE`, :data:`DEVNULL`, an existing file " +"descriptor (a positive integer), and an existing :term:`file object` with a " +"valid file descriptor. With the default settings of ``None``, no " +"redirection will occur. :data:`PIPE` indicates that a new pipe to the child " +"should be created. :data:`DEVNULL` indicates that the special file :data:" +"`os.devnull` will be used. Additionally, *stderr* can be :data:`STDOUT`, " +"which indicates that the stderr data from the child process should be " +"captured into the same file handle as for *stdout*." msgstr "" -#: library/subprocess.rst:297 +#: library/subprocess.rst:296 msgid "" "If *encoding* or *errors* are specified, or *text* (also known as " "*universal_newlines*) is true, the file objects *stdin*, *stdout* and " @@ -337,7 +336,7 @@ msgid "" "specified in the call or the defaults for :class:`io.TextIOWrapper`." msgstr "" -#: library/subprocess.rst:303 +#: library/subprocess.rst:302 msgid "" "For *stdin*, line ending characters ``'\\n'`` in the input will be converted " "to the default line separator :data:`os.linesep`. For *stdout* and *stderr*, " @@ -346,28 +345,28 @@ msgid "" "when the *newline* argument to its constructor is ``None``." msgstr "" -#: library/subprocess.rst:309 +#: library/subprocess.rst:308 msgid "" "If text mode is not used, *stdin*, *stdout* and *stderr* will be opened as " "binary streams. No encoding or line ending conversion is performed." msgstr "" -#: library/subprocess.rst:312 +#: library/subprocess.rst:311 msgid "Added *encoding* and *errors* parameters." msgstr "" -#: library/subprocess.rst:315 +#: library/subprocess.rst:314 msgid "Added the *text* parameter as an alias for *universal_newlines*." msgstr "" -#: library/subprocess.rst:320 +#: library/subprocess.rst:319 msgid "" "The newlines attribute of the file objects :attr:`Popen.stdin`, :attr:`Popen." "stdout` and :attr:`Popen.stderr` are not updated by the :meth:`Popen." "communicate` method." msgstr "" -#: library/subprocess.rst:324 +#: library/subprocess.rst:323 msgid "" "If *shell* is ``True``, the specified command will be executed through the " "shell. This can be useful if you are using Python primarily for the " @@ -380,7 +379,7 @@ msgid "" "expanduser`, and :mod:`shutil`)." msgstr "" -#: library/subprocess.rst:334 +#: library/subprocess.rst:333 msgid "" "When *universal_newlines* is ``True``, the class uses the encoding :func:" "`locale.getpreferredencoding(False) ` instead " @@ -388,22 +387,22 @@ msgid "" "class for more information on this change." msgstr "" -#: library/subprocess.rst:463 +#: library/subprocess.rst:462 msgid "" "Read the `Security Considerations`_ section before using ``shell=True``." msgstr "" -#: library/subprocess.rst:344 +#: library/subprocess.rst:343 msgid "" "These options, along with all of the other options, are described in more " "detail in the :class:`Popen` constructor documentation." msgstr "" -#: library/subprocess.rst:349 +#: library/subprocess.rst:348 msgid "Popen Constructor" msgstr "" -#: library/subprocess.rst:351 +#: library/subprocess.rst:350 msgid "" "The underlying process creation and management in this module is handled by " "the :class:`Popen` class. It offers a lot of flexibility so that developers " @@ -411,7 +410,7 @@ msgid "" "functions." msgstr "" -#: library/subprocess.rst:366 +#: library/subprocess.rst:365 msgid "" "Execute a child program in a new process. On POSIX, the class uses :meth:" "`os.execvpe`-like behavior to execute the child program. On Windows, the " @@ -419,7 +418,7 @@ msgid "" "class:`Popen` are as follows." msgstr "" -#: library/subprocess.rst:371 +#: library/subprocess.rst:370 msgid "" "*args* should be a sequence of program arguments or else a single string or :" "term:`path-like object`. By default, the program to execute is the first " @@ -430,7 +429,7 @@ msgid "" "sequence." msgstr "" -#: library/subprocess.rst:381 +#: library/subprocess.rst:380 msgid "" "For maximum reliability, use a fully qualified path for the executable. To " "search for an unqualified name on :envvar:`PATH`, use :meth:`shutil.which`. " @@ -439,7 +438,7 @@ msgid "" "format to launch an installed module." msgstr "" -#: library/subprocess.rst:387 +#: library/subprocess.rst:386 msgid "" "Resolving the path of *executable* (or the first item of *args*) is platform " "dependent. For POSIX, see :meth:`os.execvpe`, and note that when resolving " @@ -453,27 +452,27 @@ msgid "" "variations." msgstr "" -#: library/subprocess.rst:398 +#: library/subprocess.rst:397 msgid "" "An example of passing some arguments to an external program as a sequence " "is::" msgstr "" -#: library/subprocess.rst:403 +#: library/subprocess.rst:402 msgid "" "On POSIX, if *args* is a string, the string is interpreted as the name or " "path of the program to execute. However, this can only be done if not " "passing arguments to the program." msgstr "" -#: library/subprocess.rst:409 +#: library/subprocess.rst:408 msgid "" "It may not be obvious how to break a shell command into a sequence of " "arguments, especially in complex cases. :meth:`shlex.split` can illustrate " "how to determine the correct tokenization for *args*::" msgstr "" -#: library/subprocess.rst:421 +#: library/subprocess.rst:420 msgid "" "Note in particular that options (such as *-input*) and arguments (such as " "*eggs.txt*) that are separated by whitespace in the shell go in separate " @@ -482,33 +481,33 @@ msgid "" "shown above) are single list elements." msgstr "" -#: library/subprocess.rst:427 +#: library/subprocess.rst:426 msgid "" "On Windows, if *args* is a sequence, it will be converted to a string in a " "manner described in :ref:`converting-argument-sequence`. This is because " "the underlying ``CreateProcess()`` operates on strings." msgstr "" -#: library/subprocess.rst:431 +#: library/subprocess.rst:430 msgid "" "*args* parameter accepts a :term:`path-like object` if *shell* is ``False`` " "and a sequence containing path-like objects on POSIX." msgstr "" -#: library/subprocess.rst:435 +#: library/subprocess.rst:434 msgid "" "*args* parameter accepts a :term:`path-like object` if *shell* is ``False`` " "and a sequence containing bytes and path-like objects on Windows." msgstr "" -#: library/subprocess.rst:440 +#: library/subprocess.rst:439 msgid "" "The *shell* argument (which defaults to ``False``) specifies whether to use " "the shell as the program to execute. If *shell* is ``True``, it is " "recommended to pass *args* as a string rather than as a sequence." msgstr "" -#: library/subprocess.rst:444 +#: library/subprocess.rst:443 msgid "" "On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If " "*args* is a string, the string specifies the command to execute through the " @@ -520,7 +519,7 @@ msgid "" "class:`Popen` does the equivalent of::" msgstr "" -#: library/subprocess.rst:455 +#: library/subprocess.rst:454 msgid "" "On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable " "specifies the default shell. The only time you need to specify " @@ -529,35 +528,35 @@ msgid "" "``shell=True`` to run a batch file or console-based executable." msgstr "" -#: library/subprocess.rst:465 +#: library/subprocess.rst:464 msgid "" "*bufsize* will be supplied as the corresponding argument to the :func:`open` " "function when creating the stdin/stdout/stderr pipe file objects:" msgstr "" -#: library/subprocess.rst:469 +#: library/subprocess.rst:468 msgid "" "``0`` means unbuffered (read and write are one system call and can return " "short)" msgstr "" -#: library/subprocess.rst:471 +#: library/subprocess.rst:470 msgid "" "``1`` means line buffered (only usable if ``text=True`` or " "``universal_newlines=True``)" msgstr "" -#: library/subprocess.rst:473 +#: library/subprocess.rst:472 msgid "any other positive value means use a buffer of approximately that size" msgstr "" -#: library/subprocess.rst:475 +#: library/subprocess.rst:474 msgid "" "negative bufsize (the default) means the system default of io." "DEFAULT_BUFFER_SIZE will be used." msgstr "" -#: library/subprocess.rst:478 +#: library/subprocess.rst:477 msgid "" "*bufsize* now defaults to -1 to enable buffering by default to match the " "behavior that most code expects. In versions prior to Python 3.2.4 and " @@ -566,7 +565,7 @@ msgid "" "Python 2 as most code expected." msgstr "" -#: library/subprocess.rst:485 +#: library/subprocess.rst:484 msgid "" "The *executable* argument specifies a replacement program to execute. It " "is very seldom needed. When ``shell=False``, *executable* replaces the " @@ -579,44 +578,43 @@ msgid "" "default :file:`/bin/sh`." msgstr "" -#: library/subprocess.rst:495 +#: library/subprocess.rst:494 msgid "*executable* parameter accepts a :term:`path-like object` on POSIX." msgstr "" -#: library/subprocess.rst:498 +#: library/subprocess.rst:497 msgid "" "*executable* parameter accepts a bytes and :term:`path-like object` on " "Windows." msgstr "" -#: library/subprocess.rst:510 +#: library/subprocess.rst:509 msgid "" "*stdin*, *stdout* and *stderr* specify the executed program's standard " "input, standard output and standard error file handles, respectively. Valid " -"values are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a " -"positive integer), an existing :term:`file object` with a valid file " -"descriptor, and ``None``. :data:`PIPE` indicates that a new pipe to the " -"child should be created. :data:`DEVNULL` indicates that the special file :" -"data:`os.devnull` will be used. With the default settings of ``None``, no " -"redirection will occur; the child's file handles will be inherited from the " -"parent. Additionally, *stderr* can be :data:`STDOUT`, which indicates that " -"the stderr data from the applications should be captured into the same file " -"handle as for stdout." +"values are ``None``, :data:`PIPE`, :data:`DEVNULL`, an existing file " +"descriptor (a positive integer), and an existing :term:`file object` with a " +"valid file descriptor. With the default settings of ``None``, no " +"redirection will occur. :data:`PIPE` indicates that a new pipe to the child " +"should be created. :data:`DEVNULL` indicates that the special file :data:" +"`os.devnull` will be used. Additionally, *stderr* can be :data:`STDOUT`, " +"which indicates that the stderr data from the applications should be " +"captured into the same file handle as for *stdout*." msgstr "" -#: library/subprocess.rst:522 +#: library/subprocess.rst:520 msgid "" "If *preexec_fn* is set to a callable object, this object will be called in " "the child process just before the child is executed. (POSIX only)" msgstr "" -#: library/subprocess.rst:528 +#: library/subprocess.rst:526 msgid "" "The *preexec_fn* parameter is NOT SAFE to use in the presence of threads in " "your application. The child process could deadlock before exec is called." msgstr "" -#: library/subprocess.rst:534 +#: library/subprocess.rst:532 msgid "" "If you need to modify the environment for the child use the *env* parameter " "rather than doing it in a *preexec_fn*. The *start_new_session* and " @@ -624,7 +622,7 @@ msgid "" "to call :func:`os.setsid` or :func:`os.setpgid` in the child." msgstr "" -#: library/subprocess.rst:541 +#: library/subprocess.rst:539 msgid "" "The *preexec_fn* parameter is no longer supported in subinterpreters. The " "use of the parameter in a subinterpreter raises :exc:`RuntimeError`. The new " @@ -632,7 +630,7 @@ msgid "" "and other embedded environments." msgstr "" -#: library/subprocess.rst:546 +#: library/subprocess.rst:544 msgid "" "If *close_fds* is true, all file descriptors except ``0``, ``1`` and ``2`` " "will be closed before the child process is executed. Otherwise when " @@ -640,38 +638,38 @@ msgid "" "described in :ref:`fd_inheritance`." msgstr "" -#: library/subprocess.rst:551 +#: library/subprocess.rst:549 msgid "" "On Windows, if *close_fds* is true then no handles will be inherited by the " "child process unless explicitly passed in the ``handle_list`` element of :" "attr:`STARTUPINFO.lpAttributeList`, or by standard handle redirection." msgstr "" -#: library/subprocess.rst:555 +#: library/subprocess.rst:553 msgid "" "The default for *close_fds* was changed from :const:`False` to what is " "described above." msgstr "" -#: library/subprocess.rst:559 +#: library/subprocess.rst:557 msgid "" "On Windows the default for *close_fds* was changed from :const:`False` to :" "const:`True` when redirecting the standard handles. It's now possible to set " "*close_fds* to :const:`True` when redirecting the standard handles." msgstr "" -#: library/subprocess.rst:564 +#: library/subprocess.rst:562 msgid "" "*pass_fds* is an optional sequence of file descriptors to keep open between " "the parent and child. Providing any *pass_fds* forces *close_fds* to be :" "const:`True`. (POSIX only)" msgstr "" -#: library/subprocess.rst:568 +#: library/subprocess.rst:566 msgid "The *pass_fds* parameter was added." msgstr "" -#: library/subprocess.rst:571 +#: library/subprocess.rst:569 msgid "" "If *cwd* is not ``None``, the function changes the working directory to " "*cwd* before executing the child. *cwd* can be a string, bytes or :term:" @@ -680,56 +678,56 @@ msgid "" "executable path is a relative path." msgstr "" -#: library/subprocess.rst:577 +#: library/subprocess.rst:575 msgid "*cwd* parameter accepts a :term:`path-like object` on POSIX." msgstr "" -#: library/subprocess.rst:580 +#: library/subprocess.rst:578 msgid "*cwd* parameter accepts a :term:`path-like object` on Windows." msgstr "" -#: library/subprocess.rst:583 +#: library/subprocess.rst:581 msgid "*cwd* parameter accepts a bytes object on Windows." msgstr "" -#: library/subprocess.rst:586 +#: library/subprocess.rst:584 msgid "" "If *restore_signals* is true (the default) all signals that Python has set " "to SIG_IGN are restored to SIG_DFL in the child process before the exec. " "Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals. (POSIX only)" msgstr "" -#: library/subprocess.rst:591 +#: library/subprocess.rst:589 msgid "*restore_signals* was added." msgstr "" -#: library/subprocess.rst:594 +#: library/subprocess.rst:592 msgid "" "If *start_new_session* is true the ``setsid()`` system call will be made in " "the child process prior to the execution of the subprocess." msgstr "" -#: library/subprocess.rst:604 library/subprocess.rst:623 -#: library/subprocess.rst:638 +#: library/subprocess.rst:602 library/subprocess.rst:621 +#: library/subprocess.rst:636 msgid ":ref:`Availability `: POSIX" msgstr "" -#: library/subprocess.rst:598 +#: library/subprocess.rst:596 msgid "*start_new_session* was added." msgstr "" -#: library/subprocess.rst:601 +#: library/subprocess.rst:599 msgid "" "If *process_group* is a non-negative integer, the ``setpgid(0, value)`` " "system call will be made in the child process prior to the execution of the " "subprocess." msgstr "" -#: library/subprocess.rst:605 +#: library/subprocess.rst:603 msgid "*process_group* was added." msgstr "" -#: library/subprocess.rst:608 +#: library/subprocess.rst:606 msgid "" "If *group* is not ``None``, the setregid() system call will be made in the " "child process prior to the execution of the subprocess. If the provided " @@ -738,7 +736,7 @@ msgid "" "passed verbatim. (POSIX only)" msgstr "" -#: library/subprocess.rst:617 +#: library/subprocess.rst:615 msgid "" "If *extra_groups* is not ``None``, the setgroups() system call will be made " "in the child process prior to the execution of the subprocess. Strings " @@ -747,7 +745,7 @@ msgid "" "verbatim. (POSIX only)" msgstr "" -#: library/subprocess.rst:626 +#: library/subprocess.rst:624 msgid "" "If *user* is not ``None``, the setreuid() system call will be made in the " "child process prior to the execution of the subprocess. If the provided " @@ -756,13 +754,13 @@ msgid "" "passed verbatim. (POSIX only)" msgstr "" -#: library/subprocess.rst:635 +#: library/subprocess.rst:633 msgid "" "If *umask* is not negative, the umask() system call will be made in the " "child process prior to the execution of the subprocess." msgstr "" -#: library/subprocess.rst:641 +#: library/subprocess.rst:639 msgid "" "If *env* is not ``None``, it must be a mapping that defines the environment " "variables for the new process; these are used instead of the default " @@ -771,14 +769,14 @@ msgid "" "data:`os.environ` or :data:`os.environb`." msgstr "" -#: library/subprocess.rst:649 +#: library/subprocess.rst:647 msgid "" "If specified, *env* must provide any variables required for the program to " "execute. On Windows, in order to run a `side-by-side assembly`_ the " "specified *env* **must** include a valid :envvar:`SystemRoot`." msgstr "" -#: library/subprocess.rst:655 +#: library/subprocess.rst:653 msgid "" "If *encoding* or *errors* are specified, or *text* is true, the file objects " "*stdin*, *stdout* and *stderr* are opened in text mode with the specified " @@ -788,70 +786,70 @@ msgid "" "in binary mode." msgstr "" -#: library/subprocess.rst:661 +#: library/subprocess.rst:659 msgid "*encoding* and *errors* were added." msgstr "" -#: library/subprocess.rst:1285 +#: library/subprocess.rst:1283 msgid "*text* was added as a more readable alias for *universal_newlines*." msgstr "" -#: library/subprocess.rst:667 +#: library/subprocess.rst:665 msgid "" "If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is " "passed to the underlying ``CreateProcess`` function. *creationflags*, if " "given, can be one or more of the following flags:" msgstr "" -#: library/subprocess.rst:671 +#: library/subprocess.rst:669 msgid ":data:`CREATE_NEW_CONSOLE`" msgstr "" -#: library/subprocess.rst:672 +#: library/subprocess.rst:670 msgid ":data:`CREATE_NEW_PROCESS_GROUP`" msgstr "" -#: library/subprocess.rst:673 +#: library/subprocess.rst:671 msgid ":data:`ABOVE_NORMAL_PRIORITY_CLASS`" msgstr "" -#: library/subprocess.rst:674 +#: library/subprocess.rst:672 msgid ":data:`BELOW_NORMAL_PRIORITY_CLASS`" msgstr "" -#: library/subprocess.rst:675 +#: library/subprocess.rst:673 msgid ":data:`HIGH_PRIORITY_CLASS`" msgstr "" -#: library/subprocess.rst:676 +#: library/subprocess.rst:674 msgid ":data:`IDLE_PRIORITY_CLASS`" msgstr "" -#: library/subprocess.rst:677 +#: library/subprocess.rst:675 msgid ":data:`NORMAL_PRIORITY_CLASS`" msgstr "" -#: library/subprocess.rst:678 +#: library/subprocess.rst:676 msgid ":data:`REALTIME_PRIORITY_CLASS`" msgstr "" -#: library/subprocess.rst:679 +#: library/subprocess.rst:677 msgid ":data:`CREATE_NO_WINDOW`" msgstr "" -#: library/subprocess.rst:680 +#: library/subprocess.rst:678 msgid ":data:`DETACHED_PROCESS`" msgstr "" -#: library/subprocess.rst:681 +#: library/subprocess.rst:679 msgid ":data:`CREATE_DEFAULT_ERROR_MODE`" msgstr "" -#: library/subprocess.rst:682 +#: library/subprocess.rst:680 msgid ":data:`CREATE_BREAKAWAY_FROM_JOB`" msgstr "" -#: library/subprocess.rst:684 +#: library/subprocess.rst:682 msgid "" "*pipesize* can be used to change the size of the pipe when :data:`PIPE` is " "used for *stdin*, *stdout* or *stderr*. The size of the pipe is only changed " @@ -859,24 +857,24 @@ msgid "" "platforms will ignore this parameter." msgstr "" -#: library/subprocess.rst:689 +#: library/subprocess.rst:687 msgid "The ``pipesize`` parameter was added." msgstr "" -#: library/subprocess.rst:692 +#: library/subprocess.rst:690 msgid "" "Popen objects are supported as context managers via the :keyword:`with` " "statement: on exit, standard file descriptors are closed, and the process is " "waited for. ::" msgstr "" -#: library/subprocess.rst:710 +#: library/subprocess.rst:708 msgid "" "Raises an :ref:`auditing event ` ``subprocess.Popen`` with " "arguments ``executable``, ``args``, ``cwd``, ``env``." msgstr "" -#: library/subprocess.rst:701 +#: library/subprocess.rst:699 msgid "" "Popen and the other functions in this module that use it raise an :ref:" "`auditing event ` ``subprocess.Popen`` with arguments " @@ -884,17 +882,17 @@ msgid "" "be a single string or a list of strings, depending on platform." msgstr "" -#: library/subprocess.rst:706 +#: library/subprocess.rst:704 msgid "Added context manager support." msgstr "" -#: library/subprocess.rst:709 +#: library/subprocess.rst:707 msgid "" "Popen destructor now emits a :exc:`ResourceWarning` warning if the child " "process is still running." msgstr "" -#: library/subprocess.rst:713 +#: library/subprocess.rst:711 msgid "" "Popen can use :func:`os.posix_spawn` in some cases for better performance. " "On Windows Subsystem for Linux and QEMU User Emulation, Popen constructor " @@ -903,17 +901,17 @@ msgid "" "returncode`." msgstr "" -#: library/subprocess.rst:722 +#: library/subprocess.rst:720 msgid "Exceptions" msgstr "" -#: library/subprocess.rst:724 +#: library/subprocess.rst:722 msgid "" "Exceptions raised in the child process, before the new program has started " "to execute, will be re-raised in the parent." msgstr "" -#: library/subprocess.rst:727 +#: library/subprocess.rst:725 msgid "" "The most common exception raised is :exc:`OSError`. This occurs, for " "example, when trying to execute a non-existent file. Applications should " @@ -924,39 +922,39 @@ msgid "" "subprocess." msgstr "" -#: library/subprocess.rst:734 +#: library/subprocess.rst:732 msgid "" "A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid " "arguments." msgstr "" -#: library/subprocess.rst:737 +#: library/subprocess.rst:735 msgid "" ":func:`check_call` and :func:`check_output` will raise :exc:" "`CalledProcessError` if the called process returns a non-zero return code." msgstr "" -#: library/subprocess.rst:741 +#: library/subprocess.rst:739 msgid "" "All of the functions and methods that accept a *timeout* parameter, such as :" "func:`run` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if " "the timeout expires before the process exits." msgstr "" -#: library/subprocess.rst:745 +#: library/subprocess.rst:743 msgid "" "Exceptions defined in this module all inherit from :exc:`SubprocessError`." msgstr "" -#: library/subprocess.rst:747 +#: library/subprocess.rst:745 msgid "The :exc:`SubprocessError` base class was added." msgstr "" -#: library/subprocess.rst:753 +#: library/subprocess.rst:751 msgid "Security Considerations" msgstr "" -#: library/subprocess.rst:755 +#: library/subprocess.rst:753 msgid "" "Unlike some other popen functions, this implementation will never implicitly " "call a system shell. This means that all characters, including shell " @@ -969,34 +967,34 @@ msgid "" "escaping." msgstr "" -#: library/subprocess.rst:767 +#: library/subprocess.rst:765 msgid "Popen Objects" msgstr "" -#: library/subprocess.rst:769 +#: library/subprocess.rst:767 msgid "Instances of the :class:`Popen` class have the following methods:" msgstr "" -#: library/subprocess.rst:774 +#: library/subprocess.rst:772 msgid "" "Check if child process has terminated. Set and return :attr:`~Popen." "returncode` attribute. Otherwise, returns ``None``." msgstr "" -#: library/subprocess.rst:780 +#: library/subprocess.rst:778 msgid "" "Wait for child process to terminate. Set and return :attr:`~Popen." "returncode` attribute." msgstr "" -#: library/subprocess.rst:783 +#: library/subprocess.rst:781 msgid "" "If the process does not terminate after *timeout* seconds, raise a :exc:" "`TimeoutExpired` exception. It is safe to catch this exception and retry " "the wait." msgstr "" -#: library/subprocess.rst:789 +#: library/subprocess.rst:787 msgid "" "This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE`` and the " "child process generates enough output to a pipe such that it blocks waiting " @@ -1004,19 +1002,19 @@ msgid "" "when using pipes to avoid that." msgstr "" -#: library/subprocess.rst:796 +#: library/subprocess.rst:794 msgid "" "The function is implemented using a busy loop (non-blocking call and short " "sleeps). Use the :mod:`asyncio` module for an asynchronous wait: see :class:" "`asyncio.create_subprocess_exec`." msgstr "" -#: library/subprocess.rst:841 library/subprocess.rst:1222 -#: library/subprocess.rst:1276 +#: library/subprocess.rst:839 library/subprocess.rst:1220 +#: library/subprocess.rst:1274 msgid "*timeout* was added." msgstr "" -#: library/subprocess.rst:805 +#: library/subprocess.rst:803 msgid "" "Interact with process: Send data to stdin. Read data from stdout and " "stderr, until end-of-file is reached. Wait for process to terminate and set " @@ -1026,13 +1024,13 @@ msgid "" "must be a string. Otherwise, it must be bytes." msgstr "" -#: library/subprocess.rst:812 +#: library/subprocess.rst:810 msgid "" ":meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``. The data " "will be strings if streams were opened in text mode; otherwise, bytes." msgstr "" -#: library/subprocess.rst:816 +#: library/subprocess.rst:814 msgid "" "Note that if you want to send data to the process's stdin, you need to " "create the Popen object with ``stdin=PIPE``. Similarly, to get anything " @@ -1040,67 +1038,67 @@ msgid "" "and/or ``stderr=PIPE`` too." msgstr "" -#: library/subprocess.rst:821 +#: library/subprocess.rst:819 msgid "" "If the process does not terminate after *timeout* seconds, a :exc:" "`TimeoutExpired` exception will be raised. Catching this exception and " "retrying communication will not lose any output." msgstr "" -#: library/subprocess.rst:825 +#: library/subprocess.rst:823 msgid "" "The child process is not killed if the timeout expires, so in order to " "cleanup properly a well-behaved application should kill the child process " "and finish communication::" msgstr "" -#: library/subprocess.rst:838 +#: library/subprocess.rst:836 msgid "" "The data read is buffered in memory, so do not use this method if the data " "size is large or unlimited." msgstr "" -#: library/subprocess.rst:847 +#: library/subprocess.rst:845 msgid "Sends the signal *signal* to the child." msgstr "" -#: library/subprocess.rst:849 +#: library/subprocess.rst:847 msgid "Do nothing if the process completed." msgstr "" -#: library/subprocess.rst:853 +#: library/subprocess.rst:851 msgid "" "On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and " "CTRL_BREAK_EVENT can be sent to processes started with a *creationflags* " "parameter which includes ``CREATE_NEW_PROCESS_GROUP``." msgstr "" -#: library/subprocess.rst:860 +#: library/subprocess.rst:858 msgid "" "Stop the child. On POSIX OSs the method sends SIGTERM to the child. On " "Windows the Win32 API function :c:func:`TerminateProcess` is called to stop " "the child." msgstr "" -#: library/subprocess.rst:867 +#: library/subprocess.rst:865 msgid "" "Kills the child. On POSIX OSs the function sends SIGKILL to the child. On " "Windows :meth:`kill` is an alias for :meth:`terminate`." msgstr "" -#: library/subprocess.rst:871 +#: library/subprocess.rst:869 msgid "" "The following attributes are also set by the class for you to access. " "Reassigning them to new values is unsupported:" msgstr "" -#: library/subprocess.rst:876 +#: library/subprocess.rst:874 msgid "" "The *args* argument as it was passed to :class:`Popen` -- a sequence of " "program arguments or else a single string." msgstr "" -#: library/subprocess.rst:883 +#: library/subprocess.rst:881 msgid "" "If the *stdin* argument was :data:`PIPE`, this attribute is a writeable " "stream object as returned by :func:`open`. If the *encoding* or *errors* " @@ -1109,7 +1107,7 @@ msgid "" "*stdin* argument was not :data:`PIPE`, this attribute is ``None``." msgstr "" -#: library/subprocess.rst:892 +#: library/subprocess.rst:890 msgid "" "If the *stdout* argument was :data:`PIPE`, this attribute is a readable " "stream object as returned by :func:`open`. Reading from the stream provides " @@ -1119,7 +1117,7 @@ msgid "" "argument was not :data:`PIPE`, this attribute is ``None``." msgstr "" -#: library/subprocess.rst:902 +#: library/subprocess.rst:900 msgid "" "If the *stderr* argument was :data:`PIPE`, this attribute is a readable " "stream object as returned by :func:`open`. Reading from the stream provides " @@ -1129,7 +1127,7 @@ msgid "" "argument was not :data:`PIPE`, this attribute is ``None``." msgstr "" -#: library/subprocess.rst:911 +#: library/subprocess.rst:909 msgid "" "Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write `, :attr:`.stdout.read ` or :attr:`.stderr.read `__ structure is used for :class:`Popen` " @@ -1178,38 +1176,38 @@ msgid "" "only arguments." msgstr "" -#: library/subprocess.rst:952 +#: library/subprocess.rst:950 msgid "Keyword-only argument support was added." msgstr "" -#: library/subprocess.rst:957 +#: library/subprocess.rst:955 msgid "" "A bit field that determines whether certain :class:`STARTUPINFO` attributes " "are used when the process creates a window. ::" msgstr "" -#: library/subprocess.rst:965 +#: library/subprocess.rst:963 msgid "" "If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is " "the standard input handle for the process. If :data:`STARTF_USESTDHANDLES` " "is not specified, the default for standard input is the keyboard buffer." msgstr "" -#: library/subprocess.rst:972 +#: library/subprocess.rst:970 msgid "" "If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is " "the standard output handle for the process. Otherwise, this attribute is " "ignored and the default for standard output is the console window's buffer." msgstr "" -#: library/subprocess.rst:979 +#: library/subprocess.rst:977 msgid "" "If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute is " "the standard error handle for the process. Otherwise, this attribute is " "ignored and the default for standard error is the console window's buffer." msgstr "" -#: library/subprocess.rst:985 +#: library/subprocess.rst:983 msgid "" "If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute " "can be any of the values that can be specified in the ``nCmdShow`` parameter " @@ -1218,34 +1216,34 @@ msgid "" "Otherwise, this attribute is ignored." msgstr "" -#: library/subprocess.rst:992 +#: library/subprocess.rst:990 msgid "" ":data:`SW_HIDE` is provided for this attribute. It is used when :class:" "`Popen` is called with ``shell=True``." msgstr "" -#: library/subprocess.rst:997 +#: library/subprocess.rst:995 msgid "" "A dictionary of additional attributes for process creation as given in " "``STARTUPINFOEX``, see `UpdateProcThreadAttribute `__." msgstr "" -#: library/subprocess.rst:1001 +#: library/subprocess.rst:999 msgid "Supported attributes:" msgstr "" -#: library/subprocess.rst:1019 +#: library/subprocess.rst:1017 msgid "**handle_list**" msgstr "" -#: library/subprocess.rst:1004 +#: library/subprocess.rst:1002 msgid "" "Sequence of handles that will be inherited. *close_fds* must be true if non-" "empty." msgstr "" -#: library/subprocess.rst:1007 +#: library/subprocess.rst:1005 msgid "" "The handles must be temporarily made inheritable by :func:`os." "set_handle_inheritable` when passed to the :class:`Popen` constructor, else :" @@ -1253,7 +1251,7 @@ msgid "" "``ERROR_INVALID_PARAMETER`` (87)." msgstr "" -#: library/subprocess.rst:1014 +#: library/subprocess.rst:1012 msgid "" "In a multithreaded process, use caution to avoid leaking handles that are " "marked inheritable when combining this feature with concurrent calls to " @@ -1262,97 +1260,97 @@ msgid "" "temporarily creates inheritable handles." msgstr "" -#: library/subprocess.rst:1024 +#: library/subprocess.rst:1022 msgid "Windows Constants" msgstr "" -#: library/subprocess.rst:1026 +#: library/subprocess.rst:1024 msgid "The :mod:`subprocess` module exposes the following constants." msgstr "" -#: library/subprocess.rst:1030 +#: library/subprocess.rst:1028 msgid "" "The standard input device. Initially, this is the console input buffer, " "``CONIN$``." msgstr "" -#: library/subprocess.rst:1035 +#: library/subprocess.rst:1033 msgid "" "The standard output device. Initially, this is the active console screen " "buffer, ``CONOUT$``." msgstr "" -#: library/subprocess.rst:1040 +#: library/subprocess.rst:1038 msgid "" "The standard error device. Initially, this is the active console screen " "buffer, ``CONOUT$``." msgstr "" -#: library/subprocess.rst:1045 +#: library/subprocess.rst:1043 msgid "Hides the window. Another window will be activated." msgstr "" -#: library/subprocess.rst:1049 +#: library/subprocess.rst:1047 msgid "" "Specifies that the :attr:`STARTUPINFO.hStdInput`, :attr:`STARTUPINFO." "hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes contain additional " "information." msgstr "" -#: library/subprocess.rst:1055 +#: library/subprocess.rst:1053 msgid "" "Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains " "additional information." msgstr "" -#: library/subprocess.rst:1060 +#: library/subprocess.rst:1058 msgid "" "The new process has a new console, instead of inheriting its parent's " "console (the default)." msgstr "" -#: library/subprocess.rst:1065 +#: library/subprocess.rst:1063 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "group will be created. This flag is necessary for using :func:`os.kill` on " "the subprocess." msgstr "" -#: library/subprocess.rst:1069 +#: library/subprocess.rst:1067 msgid "This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified." msgstr "" -#: library/subprocess.rst:1073 +#: library/subprocess.rst:1071 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "will have an above average priority." msgstr "" -#: library/subprocess.rst:1080 +#: library/subprocess.rst:1078 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "will have a below average priority." msgstr "" -#: library/subprocess.rst:1087 +#: library/subprocess.rst:1085 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "will have a high priority." msgstr "" -#: library/subprocess.rst:1094 +#: library/subprocess.rst:1092 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "will have an idle (lowest) priority." msgstr "" -#: library/subprocess.rst:1101 +#: library/subprocess.rst:1099 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "will have an normal priority. (default)" msgstr "" -#: library/subprocess.rst:1108 +#: library/subprocess.rst:1106 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "will have realtime priority. You should almost never use " @@ -1362,20 +1360,20 @@ msgid "" "perform brief tasks that should have limited interruptions." msgstr "" -#: library/subprocess.rst:1119 +#: library/subprocess.rst:1117 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "will not create a window." msgstr "" -#: library/subprocess.rst:1126 +#: library/subprocess.rst:1124 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "will not inherit its parent's console. This value cannot be used with " "CREATE_NEW_CONSOLE." msgstr "" -#: library/subprocess.rst:1134 +#: library/subprocess.rst:1132 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "does not inherit the error mode of the calling process. Instead, the new " @@ -1383,39 +1381,39 @@ msgid "" "multithreaded shell applications that run with hard errors disabled." msgstr "" -#: library/subprocess.rst:1144 +#: library/subprocess.rst:1142 msgid "" "A :class:`Popen` ``creationflags`` parameter to specify that a new process " "is not associated with the job." msgstr "" -#: library/subprocess.rst:1152 +#: library/subprocess.rst:1150 msgid "Older high-level API" msgstr "" -#: library/subprocess.rst:1154 +#: library/subprocess.rst:1152 msgid "" "Prior to Python 3.5, these three functions comprised the high level API to " "subprocess. You can now use :func:`run` in many cases, but lots of existing " "code calls these functions." msgstr "" -#: library/subprocess.rst:1161 +#: library/subprocess.rst:1159 msgid "" "Run the command described by *args*. Wait for command to complete, then " "return the :attr:`~Popen.returncode` attribute." msgstr "" -#: library/subprocess.rst:1204 +#: library/subprocess.rst:1202 msgid "" "Code needing to capture stdout or stderr should use :func:`run` instead::" msgstr "" -#: library/subprocess.rst:1208 +#: library/subprocess.rst:1206 msgid "To suppress stdout or stderr, supply a value of :data:`DEVNULL`." msgstr "" -#: library/subprocess.rst:1210 +#: library/subprocess.rst:1208 msgid "" "The arguments shown above are merely some common ones. The full function " "signature is the same as that of the :class:`Popen` constructor - this " @@ -1423,14 +1421,14 @@ msgid "" "to that interface." msgstr "" -#: library/subprocess.rst:1217 +#: library/subprocess.rst:1215 msgid "" "Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this function. The child " "process will block if it generates enough output to a pipe to fill up the OS " "pipe buffer as the pipes are not being read from." msgstr "" -#: library/subprocess.rst:1197 +#: library/subprocess.rst:1195 msgid "" "Run command with arguments. Wait for command to complete. If the return " "code was zero then return, otherwise raise :exc:`CalledProcessError`. The :" @@ -1439,11 +1437,11 @@ msgid "" "to start the process it will propagate the exception that was raised." msgstr "" -#: library/subprocess.rst:1239 +#: library/subprocess.rst:1237 msgid "Run command with arguments and return its output." msgstr "" -#: library/subprocess.rst:1241 +#: library/subprocess.rst:1239 msgid "" "If the return code was non-zero it raises a :exc:`CalledProcessError`. The :" "exc:`CalledProcessError` object will have the return code in the :attr:" @@ -1451,11 +1449,11 @@ msgid "" "`~CalledProcessError.output` attribute." msgstr "" -#: library/subprocess.rst:1246 +#: library/subprocess.rst:1244 msgid "This is equivalent to::" msgstr "" -#: library/subprocess.rst:1250 +#: library/subprocess.rst:1248 msgid "" "The arguments shown above are merely some common ones. The full function " "signature is largely the same as that of :func:`run` - most arguments are " @@ -1465,52 +1463,52 @@ msgid "" "using the parent's standard input file handle." msgstr "" -#: library/subprocess.rst:1257 +#: library/subprocess.rst:1255 msgid "" "By default, this function will return the data as encoded bytes. The actual " "encoding of the output data may depend on the command being invoked, so the " "decoding to text will often need to be handled at the application level." msgstr "" -#: library/subprocess.rst:1261 +#: library/subprocess.rst:1259 msgid "" "This behaviour may be overridden by setting *text*, *encoding*, *errors*, or " "*universal_newlines* to ``True`` as described in :ref:`frequently-used-" "arguments` and :func:`run`." msgstr "" -#: library/subprocess.rst:1265 +#: library/subprocess.rst:1263 msgid "" "To also capture standard error in the result, use ``stderr=subprocess." "STDOUT``::" msgstr "" -#: library/subprocess.rst:1279 +#: library/subprocess.rst:1277 msgid "Support for the *input* keyword argument was added." msgstr "" -#: library/subprocess.rst:1282 +#: library/subprocess.rst:1280 msgid "*encoding* and *errors* were added. See :func:`run` for details." msgstr "" -#: library/subprocess.rst:1300 +#: library/subprocess.rst:1298 msgid "Replacing Older Functions with the :mod:`subprocess` Module" msgstr "" -#: library/subprocess.rst:1302 +#: library/subprocess.rst:1300 msgid "" "In this section, \"a becomes b\" means that b can be used as a replacement " "for a." msgstr "" -#: library/subprocess.rst:1306 +#: library/subprocess.rst:1304 msgid "" "All \"a\" functions in this section fail (more or less) silently if the " "executed program cannot be found; the \"b\" replacements raise :exc:" "`OSError` instead." msgstr "" -#: library/subprocess.rst:1310 +#: library/subprocess.rst:1308 msgid "" "In addition, the replacements using :func:`check_output` will fail with a :" "exc:`CalledProcessError` if the requested operation produces a non-zero " @@ -1518,133 +1516,133 @@ msgid "" "output` attribute of the raised exception." msgstr "" -#: library/subprocess.rst:1315 +#: library/subprocess.rst:1313 msgid "" "In the following examples, we assume that the relevant functions have " "already been imported from the :mod:`subprocess` module." msgstr "" -#: library/subprocess.rst:1320 +#: library/subprocess.rst:1318 msgid "Replacing :program:`/bin/sh` shell command substitution" msgstr "" -#: library/subprocess.rst:1337 library/subprocess.rst:1354 +#: library/subprocess.rst:1335 library/subprocess.rst:1352 msgid "becomes::" msgstr "" -#: library/subprocess.rst:1331 +#: library/subprocess.rst:1329 msgid "Replacing shell pipeline" msgstr "" -#: library/subprocess.rst:1344 +#: library/subprocess.rst:1342 msgid "" "The ``p1.stdout.close()`` call after starting the p2 is important in order " "for p1 to receive a SIGPIPE if p2 exits before p1." msgstr "" -#: library/subprocess.rst:1347 +#: library/subprocess.rst:1345 msgid "" "Alternatively, for trusted input, the shell's own pipeline support may still " "be used directly:" msgstr "" -#: library/subprocess.rst:1360 +#: library/subprocess.rst:1358 msgid "Replacing :func:`os.system`" msgstr "" -#: library/subprocess.rst:1368 +#: library/subprocess.rst:1366 msgid "Notes:" msgstr "" -#: library/subprocess.rst:1370 +#: library/subprocess.rst:1368 msgid "Calling the program through the shell is usually not required." msgstr "" -#: library/subprocess.rst:1371 +#: library/subprocess.rst:1369 msgid "" "The :func:`call` return value is encoded differently to that of :func:`os." "system`." msgstr "" -#: library/subprocess.rst:1374 +#: library/subprocess.rst:1372 msgid "" "The :func:`os.system` function ignores SIGINT and SIGQUIT signals while the " "command is running, but the caller must do this separately when using the :" "mod:`subprocess` module." msgstr "" -#: library/subprocess.rst:1378 +#: library/subprocess.rst:1376 msgid "A more realistic example would look like this::" msgstr "" -#: library/subprocess.rst:1391 +#: library/subprocess.rst:1389 msgid "Replacing the :func:`os.spawn ` family" msgstr "" -#: library/subprocess.rst:1393 +#: library/subprocess.rst:1391 msgid "P_NOWAIT example::" msgstr "" -#: library/subprocess.rst:1399 +#: library/subprocess.rst:1397 msgid "P_WAIT example::" msgstr "" -#: library/subprocess.rst:1405 +#: library/subprocess.rst:1403 msgid "Vector example::" msgstr "" -#: library/subprocess.rst:1411 +#: library/subprocess.rst:1409 msgid "Environment example::" msgstr "" -#: library/subprocess.rst:1420 +#: library/subprocess.rst:1418 msgid "Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`" msgstr "" -#: library/subprocess.rst:1450 +#: library/subprocess.rst:1448 msgid "Return code handling translates as follows::" msgstr "" -#: library/subprocess.rst:1466 +#: library/subprocess.rst:1464 msgid "Replacing functions from the :mod:`popen2` module" msgstr "" -#: library/subprocess.rst:1470 +#: library/subprocess.rst:1468 msgid "" "If the cmd argument to popen2 functions is a string, the command is executed " "through /bin/sh. If it is a list, the command is directly executed." msgstr "" -#: library/subprocess.rst:1489 +#: library/subprocess.rst:1487 msgid "" ":class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as :class:" "`subprocess.Popen`, except that:" msgstr "" -#: library/subprocess.rst:1492 +#: library/subprocess.rst:1490 msgid ":class:`Popen` raises an exception if the execution fails." msgstr "" -#: library/subprocess.rst:1494 +#: library/subprocess.rst:1492 msgid "The *capturestderr* argument is replaced with the *stderr* argument." msgstr "" -#: library/subprocess.rst:1496 +#: library/subprocess.rst:1494 msgid "``stdin=PIPE`` and ``stdout=PIPE`` must be specified." msgstr "" -#: library/subprocess.rst:1498 +#: library/subprocess.rst:1496 msgid "" "popen2 closes all file descriptors by default, but you have to specify " "``close_fds=True`` with :class:`Popen` to guarantee this behavior on all " "platforms or past Python versions." msgstr "" -#: library/subprocess.rst:1504 +#: library/subprocess.rst:1502 msgid "Legacy Shell Invocation Functions" msgstr "" -#: library/subprocess.rst:1506 +#: library/subprocess.rst:1504 msgid "" "This module also provides the following legacy functions from the 2.x " "``commands`` module. These operations implicitly invoke the system shell and " @@ -1652,11 +1650,11 @@ msgid "" "handling consistency are valid for these functions." msgstr "" -#: library/subprocess.rst:1513 +#: library/subprocess.rst:1511 msgid "Return ``(exitcode, output)`` of executing *cmd* in a shell." msgstr "" -#: library/subprocess.rst:1515 +#: library/subprocess.rst:1513 msgid "" "Execute the string *cmd* in a shell with :meth:`Popen.check_output` and " "return a 2-tuple ``(exitcode, output)``. *encoding* and *errors* are used to " @@ -1664,85 +1662,85 @@ msgid "" "details." msgstr "" -#: library/subprocess.rst:1520 +#: library/subprocess.rst:1518 msgid "" "A trailing newline is stripped from the output. The exit code for the " "command can be interpreted as the return code of subprocess. Example::" msgstr "" -#: library/subprocess.rst:1555 +#: library/subprocess.rst:1553 msgid ":ref:`Availability `: Unix, Windows." msgstr "" -#: library/subprocess.rst:1535 +#: library/subprocess.rst:1533 msgid "Windows support was added." msgstr "" -#: library/subprocess.rst:1538 +#: library/subprocess.rst:1536 msgid "" "The function now returns (exitcode, output) instead of (status, output) as " "it did in Python 3.3.3 and earlier. exitcode has the same value as :attr:" "`~Popen.returncode`." msgstr "" -#: library/subprocess.rst:1560 +#: library/subprocess.rst:1558 msgid "Added *encoding* and *errors* arguments." msgstr "" -#: library/subprocess.rst:1547 +#: library/subprocess.rst:1545 msgid "Return output (stdout and stderr) of executing *cmd* in a shell." msgstr "" -#: library/subprocess.rst:1549 +#: library/subprocess.rst:1547 msgid "" "Like :func:`getstatusoutput`, except the exit code is ignored and the return " "value is a string containing the command's output. Example::" msgstr "" -#: library/subprocess.rst:1557 +#: library/subprocess.rst:1555 msgid "Windows support added" msgstr "" -#: library/subprocess.rst:1565 +#: library/subprocess.rst:1563 msgid "Notes" msgstr "" -#: library/subprocess.rst:1570 +#: library/subprocess.rst:1568 msgid "Converting an argument sequence to a string on Windows" msgstr "" -#: library/subprocess.rst:1572 +#: library/subprocess.rst:1570 msgid "" "On Windows, an *args* sequence is converted to a string that can be parsed " "using the following rules (which correspond to the rules used by the MS C " "runtime):" msgstr "" -#: library/subprocess.rst:1576 +#: library/subprocess.rst:1574 msgid "" "Arguments are delimited by white space, which is either a space or a tab." msgstr "" -#: library/subprocess.rst:1579 +#: library/subprocess.rst:1577 msgid "" "A string surrounded by double quotation marks is interpreted as a single " "argument, regardless of white space contained within. A quoted string can " "be embedded in an argument." msgstr "" -#: library/subprocess.rst:1584 +#: library/subprocess.rst:1582 msgid "" "A double quotation mark preceded by a backslash is interpreted as a literal " "double quotation mark." msgstr "" -#: library/subprocess.rst:1587 +#: library/subprocess.rst:1585 msgid "" "Backslashes are interpreted literally, unless they immediately precede a " "double quotation mark." msgstr "" -#: library/subprocess.rst:1590 +#: library/subprocess.rst:1588 msgid "" "If backslashes immediately precede a double quotation mark, every pair of " "backslashes is interpreted as a literal backslash. If the number of " @@ -1750,33 +1748,33 @@ msgid "" "mark as described in rule 3." msgstr "" -#: library/subprocess.rst:1599 +#: library/subprocess.rst:1597 msgid ":mod:`shlex`" msgstr "" -#: library/subprocess.rst:1600 +#: library/subprocess.rst:1598 msgid "Module which provides function to parse and escape command lines." msgstr "" -#: library/subprocess.rst:1607 +#: library/subprocess.rst:1605 msgid "Disabling use of ``vfork()`` or ``posix_spawn()``" msgstr "" -#: library/subprocess.rst:1609 +#: library/subprocess.rst:1607 msgid "" "On Linux, :mod:`subprocess` defaults to using the ``vfork()`` system call " "internally when it is safe to do so rather than ``fork()``. This greatly " "improves performance." msgstr "" -#: library/subprocess.rst:1613 +#: library/subprocess.rst:1611 msgid "" "If you ever encounter a presumed highly unusual situation where you need to " "prevent ``vfork()`` from being used by Python, you can set the :const:" "`subprocess._USE_VFORK` attribute to a false value." msgstr "" -#: library/subprocess.rst:1621 +#: library/subprocess.rst:1619 msgid "" "Setting this has no impact on use of ``posix_spawn()`` which could use " "``vfork()`` internally within its libc implementation. There is a similar :" @@ -1784,7 +1782,7 @@ msgid "" "that." msgstr "" -#: library/subprocess.rst:1630 +#: library/subprocess.rst:1628 msgid "" "It is safe to set these to false on any Python version. They will have no " "effect on older versions when unsupported. Do not assume the attributes are " @@ -1792,25 +1790,25 @@ msgid "" "the corresponding function will be used, only that it may be." msgstr "" -#: library/subprocess.rst:1635 +#: library/subprocess.rst:1633 msgid "" "Please file issues any time you have to use these private knobs with a way " "to reproduce the issue you were seeing. Link to that issue from a comment in " "your code." msgstr "" -#: library/subprocess.rst:1639 +#: library/subprocess.rst:1637 msgid "``_USE_POSIX_SPAWN``" msgstr "" -#: library/subprocess.rst:1640 +#: library/subprocess.rst:1638 msgid "``_USE_VFORK``" msgstr "" -#: library/subprocess.rst:294 +#: library/subprocess.rst:293 msgid "universal newlines" msgstr "" -#: library/subprocess.rst:294 +#: library/subprocess.rst:293 msgid "subprocess module" msgstr "" diff --git a/library/sys.monitoring.po b/library/sys.monitoring.po new file mode 100644 index 000000000..ee2e02970 --- /dev/null +++ b/library/sys.monitoring.po @@ -0,0 +1,539 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2001-2023, Python Software Foundation +# This file is distributed under the same license as the Python package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Python 3.12\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: library/sys.monitoring.rst:2 +msgid ":mod:`sys.monitoring` --- Execution event monitoring" +msgstr "" + +#: library/sys.monitoring.rst:11 +msgid "" +"``sys.monitoring`` is a namespace within the ``sys`` module, not an " +"independent module, so there is no need to ``import sys.monitoring``, simply " +"``import sys`` and then use ``sys.monitoring``." +msgstr "" + +#: library/sys.monitoring.rst:17 +msgid "" +"This namespace provides access to the functions and constants necessary to " +"activate and control event monitoring." +msgstr "" + +#: library/sys.monitoring.rst:20 +msgid "" +"As programs execute, events occur that might be of interest to tools that " +"monitor execution. The :mod:`!sys.monitoring` namespace provides means to " +"receive callbacks when events of interest occur." +msgstr "" + +#: library/sys.monitoring.rst:24 +msgid "The monitoring API consists of three components:" +msgstr "" + +#: library/sys.monitoring.rst:31 +msgid "Tool identifiers" +msgstr "" + +#: library/sys.monitoring.rst:74 +msgid "Events" +msgstr "" + +#: library/sys.monitoring.rst:28 +msgid "Callbacks" +msgstr "" + +#: library/sys.monitoring.rst:33 +msgid "" +"A tool identifier is an integer and associated name. Tool identifiers are " +"used to discourage tools from interfering with each other and to allow " +"multiple tools to operate at the same time. Currently tools are completely " +"independent and cannot be used to monitor each other. This restriction may " +"be lifted in the future." +msgstr "" + +#: library/sys.monitoring.rst:39 +msgid "" +"Before registering or activating events, a tool should choose an identifier. " +"Identifiers are integers in the range 0 to 5." +msgstr "" + +#: library/sys.monitoring.rst:43 +msgid "Registering and using tools" +msgstr "" + +#: library/sys.monitoring.rst:47 +msgid "" +"Must be called before ``id`` can be used. ``id`` must be in the range 0 to 5 " +"inclusive. Raises a ``ValueError`` if ``id`` is in use." +msgstr "" + +#: library/sys.monitoring.rst:53 +msgid "Should be called once a tool no longer requires ``id``." +msgstr "" + +#: library/sys.monitoring.rst:57 +msgid "" +"Returns the name of the tool if ``id`` is in use, otherwise it returns " +"``None``. ``id`` must be in the range 0 to 5 inclusive." +msgstr "" + +#: library/sys.monitoring.rst:61 +msgid "" +"All IDs are treated the same by the VM with regard to events, but the " +"following IDs are pre-defined to make co-operation of tools easier::" +msgstr "" + +#: library/sys.monitoring.rst:69 +msgid "" +"There is no obligation to set an ID, nor is there anything preventing a tool " +"from using an ID even it is already in use. However, tools are encouraged to " +"use a unique ID and respect other tools." +msgstr "" + +#: library/sys.monitoring.rst:76 +msgid "The following events are supported:" +msgstr "" + +#: library/sys.monitoring.rst:138 +msgid "BRANCH" +msgstr "" + +#: library/sys.monitoring.rst:79 +msgid "A conditional branch is taken (or not)." +msgstr "" + +#: library/sys.monitoring.rst:134 +msgid "CALL" +msgstr "" + +#: library/sys.monitoring.rst:81 +msgid "A call in Python code (event occurs before the call)." +msgstr "" + +#: library/sys.monitoring.rst:147 +msgid "C_RAISE" +msgstr "" + +#: library/sys.monitoring.rst:83 +msgid "" +"Exception raised from any callable, except Python functions (event occurs " +"after the exit)." +msgstr "" + +#: library/sys.monitoring.rst:148 +msgid "C_RETURN" +msgstr "" + +#: library/sys.monitoring.rst:85 +msgid "" +"Return from any callable, except Python functions (event occurs after the " +"return)." +msgstr "" + +#: library/sys.monitoring.rst:165 +msgid "EXCEPTION_HANDLED" +msgstr "" + +#: library/sys.monitoring.rst:87 +msgid "An exception is handled." +msgstr "" + +#: library/sys.monitoring.rst:136 +msgid "INSTRUCTION" +msgstr "" + +#: library/sys.monitoring.rst:89 +msgid "A VM instruction is about to be executed." +msgstr "" + +#: library/sys.monitoring.rst:137 +msgid "JUMP" +msgstr "" + +#: library/sys.monitoring.rst:91 +msgid "An unconditional jump in the control flow graph is made." +msgstr "" + +#: library/sys.monitoring.rst:135 +msgid "LINE" +msgstr "" + +#: library/sys.monitoring.rst:93 +msgid "" +"An instruction is about to be executed that has a different line number from " +"the preceding instruction." +msgstr "" + +#: library/sys.monitoring.rst:131 +msgid "PY_RESUME" +msgstr "" + +#: library/sys.monitoring.rst:95 +msgid "" +"Resumption of a Python function (for generator and coroutine functions), " +"except for throw() calls." +msgstr "" + +#: library/sys.monitoring.rst:132 +msgid "PY_RETURN" +msgstr "" + +#: library/sys.monitoring.rst:97 +msgid "" +"Return from a Python function (occurs immediately before the return, the " +"callee's frame will be on the stack)." +msgstr "" + +#: library/sys.monitoring.rst:130 +msgid "PY_START" +msgstr "" + +#: library/sys.monitoring.rst:99 +msgid "" +"Start of a Python function (occurs immediately after the call, the callee's " +"frame will be on the stack)" +msgstr "" + +#: library/sys.monitoring.rst:162 +msgid "PY_THROW" +msgstr "" + +#: library/sys.monitoring.rst:101 +msgid "A Python function is resumed by a throw() call." +msgstr "" + +#: library/sys.monitoring.rst:163 +msgid "PY_UNWIND" +msgstr "" + +#: library/sys.monitoring.rst:103 +msgid "Exit from a Python function during exception unwinding." +msgstr "" + +#: library/sys.monitoring.rst:133 +msgid "PY_YIELD" +msgstr "" + +#: library/sys.monitoring.rst:105 +msgid "" +"Yield from a Python function (occurs immediately before the yield, the " +"callee's frame will be on the stack)." +msgstr "" + +#: library/sys.monitoring.rst:164 +msgid "RAISE" +msgstr "" + +#: library/sys.monitoring.rst:107 +msgid "" +"An exception is raised, except those that cause a ``STOP_ITERATION`` event." +msgstr "" + +#: library/sys.monitoring.rst:108 +msgid "RERAISE" +msgstr "" + +#: library/sys.monitoring.rst:109 +msgid "" +"An exception is re-raised, for example at the end of a ``finally`` block." +msgstr "" + +#: library/sys.monitoring.rst:139 +msgid "STOP_ITERATION" +msgstr "" + +#: library/sys.monitoring.rst:111 +msgid "" +"An artificial ``StopIteration`` is raised; see `the STOP_ITERATION event`_." +msgstr "" + +#: library/sys.monitoring.rst:113 +msgid "More events may be added in the future." +msgstr "" + +#: library/sys.monitoring.rst:115 +msgid "" +"These events are attributes of the :mod:`!sys.monitoring.events` namespace. " +"Each event is represented as a power-of-2 integer constant. To define a set " +"of events, simply bitwise or the individual events together. For example, to " +"specify both ``PY_RETURN`` and ``PY_START`` events, use the expression " +"``PY_RETURN | PY_START``." +msgstr "" + +#: library/sys.monitoring.rst:121 +msgid "Events are divided into three groups:" +msgstr "" + +#: library/sys.monitoring.rst:124 +msgid "Local events" +msgstr "" + +#: library/sys.monitoring.rst:126 +msgid "" +"Local events are associated with normal execution of the program and happen " +"at clearly defined locations. All local events can be disabled. The local " +"events are:" +msgstr "" + +#: library/sys.monitoring.rst:142 +msgid "Ancillary events" +msgstr "" + +#: library/sys.monitoring.rst:144 +msgid "" +"Ancillary events can be monitored like other events, but are controlled by " +"another event:" +msgstr "" + +#: library/sys.monitoring.rst:150 +msgid "" +"The ``C_RETURN`` and ``C_RAISE`` events are are controlled by the ``CALL`` " +"event. ``C_RETURN`` and ``C_RAISE`` events will only be seen if the " +"corresponding ``CALL`` event is being monitored." +msgstr "" + +#: library/sys.monitoring.rst:155 +msgid "Other events" +msgstr "" + +#: library/sys.monitoring.rst:157 +msgid "" +"Other events are not necessarily tied to a specific location in the program " +"and cannot be individually disabled." +msgstr "" + +#: library/sys.monitoring.rst:160 +msgid "The other events that can be monitored are:" +msgstr "" + +#: library/sys.monitoring.rst:169 +msgid "The STOP_ITERATION event" +msgstr "" + +#: library/sys.monitoring.rst:171 +msgid "" +":pep:`PEP 380 <380#use-of-stopiteration-to-return-values>` specifies that a " +"``StopIteration`` exception is raised when returning a value from a " +"generator or coroutine. However, this is a very inefficient way to return a " +"value, so some Python implementations, notably CPython 3.12+, do not raise " +"an exception unless it would be visible to other code." +msgstr "" + +#: library/sys.monitoring.rst:177 +msgid "" +"To allow tools to monitor for real exceptions without slowing down " +"generators and coroutines, the ``STOP_ITERATION`` event is provided. " +"``STOP_ITERATION`` can be locally disabled, unlike ``RAISE``." +msgstr "" + +#: library/sys.monitoring.rst:183 +msgid "Turning events on and off" +msgstr "" + +#: library/sys.monitoring.rst:185 +msgid "" +"In order to monitor an event, it must be turned on and a callback " +"registered. Events can be turned on or off by setting the events either " +"globally or for a particular code object." +msgstr "" + +#: library/sys.monitoring.rst:191 +msgid "Setting events globally" +msgstr "" + +#: library/sys.monitoring.rst:193 +msgid "" +"Events can be controlled globally by modifying the set of events being " +"monitored." +msgstr "" + +#: library/sys.monitoring.rst:197 +msgid "Returns the ``int`` representing all the active events." +msgstr "" + +#: library/sys.monitoring.rst:201 +msgid "" +"Activates all events which are set in ``event_set``. Raises a ``ValueError`` " +"if ``tool_id`` is not in use." +msgstr "" + +#: library/sys.monitoring.rst:204 +msgid "No events are active by default." +msgstr "" + +#: library/sys.monitoring.rst:207 +msgid "Per code object events" +msgstr "" + +#: library/sys.monitoring.rst:209 +msgid "Events can also be controlled on a per code object basis." +msgstr "" + +#: library/sys.monitoring.rst:213 +msgid "Returns all the local events for ``code``" +msgstr "" + +#: library/sys.monitoring.rst:217 +msgid "" +"Activates all the local events for ``code`` which are set in ``event_set``. " +"Raises a ``ValueError`` if ``tool_id`` is not in use." +msgstr "" + +#: library/sys.monitoring.rst:220 +msgid "" +"Local events add to global events, but do not mask them. In other words, all " +"global events will trigger for a code object, regardless of the local events." +msgstr "" + +#: library/sys.monitoring.rst:226 +msgid "Disabling events" +msgstr "" + +#: library/sys.monitoring.rst:228 +msgid "" +"Local events can be disabled for a specific code location by returning ``sys." +"monitoring.DISABLE`` from a callback function. This does not change which " +"events are set, or any other code locations for the same event." +msgstr "" + +#: library/sys.monitoring.rst:232 +msgid "" +"Disabling events for specific locations is very important for high " +"performance monitoring. For example, a program can be run under a debugger " +"with no overhead if the debugger disables all monitoring except for a few " +"breakpoints." +msgstr "" + +#: library/sys.monitoring.rst:239 +msgid "Registering callback functions" +msgstr "" + +#: library/sys.monitoring.rst:241 +msgid "To register a callable for events call" +msgstr "" + +#: library/sys.monitoring.rst:245 +msgid "" +"Registers the callable ``func`` for the ``event`` with the given ``tool_id``" +msgstr "" + +#: library/sys.monitoring.rst:247 +msgid "" +"If another callback was registered for the given ``tool_id`` and ``event``, " +"it is unregistered and returned. Otherwise ``register_callback`` returns " +"``None``." +msgstr "" + +#: library/sys.monitoring.rst:252 +msgid "" +"Functions can be unregistered by calling ``sys.monitoring." +"register_callback(tool_id, event, None)``." +msgstr "" + +#: library/sys.monitoring.rst:255 +msgid "Callback functions can be registered and unregistered at any time." +msgstr "" + +#: library/sys.monitoring.rst:257 +msgid "" +"Registering or unregistering a callback function will generate a ``sys." +"audit`` event." +msgstr "" + +#: library/sys.monitoring.rst:261 +msgid "Callback function arguments" +msgstr "" + +#: library/sys.monitoring.rst:263 +msgid "" +"When an active event occurs, the registered callback function is called. " +"Different events will provide the callback function with different " +"arguments, as follows:" +msgstr "" + +#: library/sys.monitoring.rst:266 +msgid "``PY_START`` and ``PY_RESUME``::" +msgstr "" + +#: library/sys.monitoring.rst:270 +msgid "``PY_RETURN`` and ``PY_YIELD``:" +msgstr "" + +#: library/sys.monitoring.rst:272 +msgid "" +"``func(code: CodeType, instruction_offset: int, retval: object) -> DISABLE | " +"Any``" +msgstr "" + +#: library/sys.monitoring.rst:274 +msgid "``CALL``, ``C_RAISE`` and ``C_RETURN``:" +msgstr "" + +#: library/sys.monitoring.rst:276 +msgid "" +"``func(code: CodeType, instruction_offset: int, callable: object, arg0: " +"object | MISSING) -> DISABLE | Any``" +msgstr "" + +#: library/sys.monitoring.rst:278 +msgid "If there are no arguments, ``arg0`` is set to ``MISSING``." +msgstr "" + +#: library/sys.monitoring.rst:280 +msgid "" +"``RAISE``, ``RERAISE``, ``EXCEPTION_HANDLED``, ``PY_UNWIND``, ``PY_THROW`` " +"and ``STOP_ITERATION``:" +msgstr "" + +#: library/sys.monitoring.rst:282 +msgid "" +"``func(code: CodeType, instruction_offset: int, exception: BaseException) -> " +"DISABLE | Any``" +msgstr "" + +#: library/sys.monitoring.rst:284 +msgid "``LINE``:" +msgstr "" + +#: library/sys.monitoring.rst:286 +msgid "``func(code: CodeType, line_number: int) -> DISABLE | Any``" +msgstr "" + +#: library/sys.monitoring.rst:288 +msgid "``BRANCH`` and ``JUMP``:" +msgstr "" + +#: library/sys.monitoring.rst:290 +msgid "" +"``func(code: CodeType, instruction_offset: int, destination_offset: int) -> " +"DISABLE | Any``" +msgstr "" + +#: library/sys.monitoring.rst:292 +msgid "" +"Note that the ``destination_offset`` is where the code will next execute. " +"For an untaken branch this will be the offset of the instruction following " +"the branch." +msgstr "" + +#: library/sys.monitoring.rst:296 +msgid "``INSTRUCTION``:" +msgstr "" + +#: library/sys.monitoring.rst:298 +msgid "``func(code: CodeType, instruction_offset: int) -> DISABLE | Any``" +msgstr "" diff --git a/library/sys.po b/library/sys.po index 33f0621b3..0f33b7cfa 100644 --- a/library/sys.po +++ b/library/sys.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -276,14 +276,20 @@ msgid "" "no arguments." msgstr "" -#: library/sys.rst:225 +#: library/sys.rst:223 +msgid "" +"Each value in the dictionary is now a single exception instance, rather than " +"a 3-tuple as returned from ``sys.exc_info()``." +msgstr "" + +#: library/sys.rst:229 msgid "" "This hook function is called by built-in :func:`breakpoint`. By default, it " "drops you into the :mod:`pdb` debugger, but it can be set to any other " "function so that you can choose which debugger gets used." msgstr "" -#: library/sys.rst:229 +#: library/sys.rst:233 msgid "" "The signature of this function is dependent on what it calls. For example, " "the default binding (e.g. ``pdb.set_trace()``) expects no arguments, but you " @@ -293,7 +299,7 @@ msgid "" "returns is returned from ``breakpoint()``." msgstr "" -#: library/sys.rst:236 +#: library/sys.rst:240 msgid "" "The default implementation first consults the environment variable :envvar:" "`PYTHONBREAKPOINT`. If that is set to ``\"0\"`` then this function returns " @@ -307,47 +313,47 @@ msgid "" "breakpointhook()`` returns to the built-in :func:`breakpoint` function." msgstr "" -#: library/sys.rst:248 +#: library/sys.rst:252 msgid "" "Note that if anything goes wrong while importing the callable named by :" "envvar:`PYTHONBREAKPOINT`, a :exc:`RuntimeWarning` is reported and the " "breakpoint is ignored." msgstr "" -#: library/sys.rst:252 +#: library/sys.rst:256 msgid "" "Also note that if ``sys.breakpointhook()`` is overridden programmatically, :" "envvar:`PYTHONBREAKPOINT` is *not* consulted." msgstr "" -#: library/sys.rst:259 +#: library/sys.rst:263 msgid "" "Print low-level information to stderr about the state of CPython's memory " "allocator." msgstr "" -#: library/sys.rst:262 +#: library/sys.rst:266 msgid "" "If Python is :ref:`built in debug mode ` (:option:`configure --" "with-pydebug option <--with-pydebug>`), it also performs some expensive " "internal consistency checks." msgstr "" -#: library/sys.rst:270 +#: library/sys.rst:274 msgid "" "This function is specific to CPython. The exact output format is not " "defined here, and may change." msgstr "" -#: library/sys.rst:276 +#: library/sys.rst:280 msgid "Integer specifying the handle of the Python DLL." msgstr "" -#: library/sys.rst:939 library/sys.rst:1889 +#: library/sys.rst:972 library/sys.rst:1953 msgid ":ref:`Availability `: Windows." msgstr "" -#: library/sys.rst:283 +#: library/sys.rst:287 msgid "" "If *value* is not ``None``, this function prints ``repr(value)`` to ``sys." "stdout``, and saves *value* in ``builtins._``. If ``repr(value)`` is not " @@ -356,7 +362,7 @@ msgid "" "encoding`` with ``'backslashreplace'`` error handler." msgstr "" -#: library/sys.rst:289 +#: library/sys.rst:293 msgid "" "``sys.displayhook`` is called on the result of evaluating an :term:" "`expression` entered in an interactive Python session. The display of these " @@ -364,15 +370,15 @@ msgid "" "displayhook``." msgstr "" -#: library/sys.rst:293 +#: library/sys.rst:297 msgid "Pseudo-code::" msgstr "" -#: library/sys.rst:313 +#: library/sys.rst:317 msgid "Use ``'backslashreplace'`` error handler on :exc:`UnicodeEncodeError`." msgstr "" -#: library/sys.rst:319 +#: library/sys.rst:323 msgid "" "If this is true, Python won't try to write ``.pyc`` files on the import of " "source modules. This value is initially set to ``True`` or ``False`` " @@ -381,38 +387,38 @@ msgid "" "to control bytecode file generation." msgstr "" -#: library/sys.rst:328 +#: library/sys.rst:332 msgid "" "A :term:`named tuple` holding information about the environment on the " "*wasm32-emscripten* platform. The named tuple is provisional and may change " "in the future." msgstr "" -#: library/sys.rst:334 +#: library/sys.rst:338 msgid "" "Emscripten version as tuple of ints (major, minor, micro), e.g. ``(3, 1, " "8)``." msgstr "" -#: library/sys.rst:338 +#: library/sys.rst:342 msgid "" "Runtime string, e.g. browser user agent, ``'Node.js v14.18.2'``, or " "``'UNKNOWN'``." msgstr "" -#: library/sys.rst:342 +#: library/sys.rst:346 msgid "``True`` if Python is compiled with Emscripten pthreads support." msgstr "" -#: library/sys.rst:346 +#: library/sys.rst:350 msgid "``True`` if Python is compiled with shared memory support." msgstr "" -#: library/sys.rst:348 +#: library/sys.rst:352 msgid ":ref:`Availability `: Emscripten." msgstr "" -#: library/sys.rst:355 +#: library/sys.rst:359 msgid "" "If this is set (not ``None``), Python will write bytecode-cache ``.pyc`` " "files to (and read them from) a parallel directory tree rooted at this " @@ -423,12 +429,12 @@ msgid "" "with the same pycache prefix (if any) that you will use at runtime." msgstr "" -#: library/sys.rst:363 +#: library/sys.rst:367 msgid "" "A relative path is interpreted relative to the current working directory." msgstr "" -#: library/sys.rst:365 +#: library/sys.rst:369 msgid "" "This value is initially set based on the value of the :option:`-X` " "``pycache_prefix=PATH`` command-line option or the :envvar:" @@ -436,12 +442,12 @@ msgid "" "If neither are set, it is ``None``." msgstr "" -#: library/sys.rst:375 +#: library/sys.rst:379 msgid "" "This function prints out a given traceback and exception to ``sys.stderr``." msgstr "" -#: library/sys.rst:377 +#: library/sys.rst:381 msgid "" "When an exception other than :exc:`SystemExit` is raised and uncaught, the " "interpreter calls ``sys.excepthook`` with three arguments, the exception " @@ -452,13 +458,13 @@ msgid "" "argument function to ``sys.excepthook``." msgstr "" -#: library/sys.rst:384 +#: library/sys.rst:388 msgid "" "Raises an :ref:`auditing event ` ``sys.excepthook`` with arguments " "``hook``, ``type``, ``value``, ``traceback``." msgstr "" -#: library/sys.rst:386 +#: library/sys.rst:390 msgid "" "Raise an auditing event ``sys.excepthook`` with arguments ``hook``, " "``type``, ``value``, ``traceback`` when an uncaught exception occurs. If no " @@ -468,14 +474,14 @@ msgid "" "excepthook`` will be called." msgstr "" -#: library/sys.rst:395 +#: library/sys.rst:399 msgid "" "The :func:`sys.unraisablehook` function handles unraisable exceptions and " "the :func:`threading.excepthook` function handles exception raised by :func:" "`threading.Thread.run`." msgstr "" -#: library/sys.rst:405 +#: library/sys.rst:409 msgid "" "These objects contain the original values of ``breakpointhook``, " "``displayhook``, ``excepthook``, and ``unraisablehook`` at the start of the " @@ -484,15 +490,15 @@ msgid "" "get replaced with broken or alternative objects." msgstr "" -#: library/sys.rst:411 +#: library/sys.rst:415 msgid "__breakpointhook__" msgstr "" -#: library/sys.rst:414 +#: library/sys.rst:418 msgid "__unraisablehook__" msgstr "" -#: library/sys.rst:420 +#: library/sys.rst:424 msgid "" "This function, when called while an exception handler is executing (such as " "an ``except`` or ``except*`` clause), returns the exception instance that " @@ -500,11 +506,11 @@ msgid "" "another, only the exception handled by the innermost handler is accessible." msgstr "" -#: library/sys.rst:425 +#: library/sys.rst:429 msgid "If no exception handler is executing, this function returns ``None``." msgstr "" -#: library/sys.rst:432 +#: library/sys.rst:436 msgid "" "This function returns the old-style representation of the handled exception. " "If an exception ``e`` is currently handled (so :func:`exception` would " @@ -515,13 +521,13 @@ msgid "" "stack at the point where the exception last occurred." msgstr "" -#: library/sys.rst:443 +#: library/sys.rst:447 msgid "" "If no exception is being handled anywhere on the stack, this function return " "a tuple containing three ``None`` values." msgstr "" -#: library/sys.rst:446 +#: library/sys.rst:450 msgid "" "The ``type`` and ``traceback`` fields are now derived from the ``value`` " "(the exception instance), so when an exception is modified while it is being " @@ -529,7 +535,7 @@ msgid "" "func:`exc_info`." msgstr "" -#: library/sys.rst:454 +#: library/sys.rst:458 msgid "" "A string giving the site-specific directory prefix where the platform-" "dependent Python files are installed; by default, this is also ``'/usr/" @@ -541,7 +547,7 @@ msgid "" "is the version number of Python, for example ``3.2``." msgstr "" -#: library/sys.rst:465 +#: library/sys.rst:469 msgid "" "If a :ref:`virtual environment ` is in effect, this value will be " "changed in ``site.py`` to point to the virtual environment. The value for " @@ -549,7 +555,7 @@ msgid "" "`base_exec_prefix`." msgstr "" -#: library/sys.rst:473 +#: library/sys.rst:477 msgid "" "A string giving the absolute path of the executable binary for the Python " "interpreter, on systems where this makes sense. If Python is unable to " @@ -557,13 +563,13 @@ msgid "" "empty string or ``None``." msgstr "" -#: library/sys.rst:481 +#: library/sys.rst:485 msgid "" "Raise a :exc:`SystemExit` exception, signaling an intention to exit the " "interpreter." msgstr "" -#: library/sys.rst:483 +#: library/sys.rst:487 msgid "" "The optional argument *arg* can be an integer giving the exit status " "(defaulting to zero), or another type of object. If it is an integer, zero " @@ -579,7 +585,7 @@ msgid "" "way to exit a program when an error occurs." msgstr "" -#: library/sys.rst:496 +#: library/sys.rst:500 msgid "" "Since :func:`exit` ultimately \"only\" raises an exception, it will only " "exit the process when called from the main thread, and the exception is not " @@ -588,127 +594,127 @@ msgid "" "an outer level." msgstr "" -#: library/sys.rst:501 +#: library/sys.rst:505 msgid "" "If an error occurs in the cleanup after the Python interpreter has caught :" "exc:`SystemExit` (such as an error flushing buffered data in the standard " "streams), the exit status is changed to 120." msgstr "" -#: library/sys.rst:509 +#: library/sys.rst:513 msgid "" "The :term:`named tuple` *flags* exposes the status of command line flags. " "The attributes are read only." msgstr "" -#: library/sys.rst:515 +#: library/sys.rst:519 msgid ":option:`-d`" msgstr "" -#: library/sys.rst:521 +#: library/sys.rst:525 msgid ":option:`-i`" msgstr "" -#: library/sys.rst:524 +#: library/sys.rst:528 msgid ":option:`-I`" msgstr "" -#: library/sys.rst:527 +#: library/sys.rst:531 msgid ":option:`-O` or :option:`-OO`" msgstr "" -#: library/sys.rst:530 +#: library/sys.rst:534 msgid ":option:`-B`" msgstr "" -#: library/sys.rst:533 +#: library/sys.rst:537 msgid ":option:`-s`" msgstr "" -#: library/sys.rst:536 +#: library/sys.rst:540 msgid ":option:`-S`" msgstr "" -#: library/sys.rst:539 +#: library/sys.rst:543 msgid ":option:`-E`" msgstr "" -#: library/sys.rst:542 +#: library/sys.rst:546 msgid ":option:`-v`" msgstr "" -#: library/sys.rst:545 +#: library/sys.rst:549 msgid ":option:`-b`" msgstr "" -#: library/sys.rst:548 +#: library/sys.rst:552 msgid ":option:`-q`" msgstr "" -#: library/sys.rst:551 +#: library/sys.rst:555 msgid ":option:`-R`" msgstr "" -#: library/sys.rst:554 +#: library/sys.rst:558 msgid ":option:`-X dev <-X>` (:ref:`Python Development Mode `)" msgstr "" -#: library/sys.rst:557 +#: library/sys.rst:561 msgid ":option:`-X utf8 <-X>`" msgstr "" -#: library/sys.rst:560 +#: library/sys.rst:564 msgid ":option:`-P`" msgstr "" -#: library/sys.rst:563 +#: library/sys.rst:567 msgid "" ":option:`-X int_max_str_digits <-X>` (:ref:`integer string conversion length " "limitation `)" msgstr "" -#: library/sys.rst:567 +#: library/sys.rst:571 msgid ":option:`-X warn_default_encoding <-X>`" msgstr "" -#: library/sys.rst:569 +#: library/sys.rst:573 msgid "Added ``quiet`` attribute for the new :option:`-q` flag." msgstr "" -#: library/sys.rst:572 +#: library/sys.rst:576 msgid "The ``hash_randomization`` attribute." msgstr "" -#: library/sys.rst:575 +#: library/sys.rst:579 msgid "Removed obsolete ``division_warning`` attribute." msgstr "" -#: library/sys.rst:578 +#: library/sys.rst:582 msgid "Added ``isolated`` attribute for :option:`-I` ``isolated`` flag." msgstr "" -#: library/sys.rst:581 +#: library/sys.rst:585 msgid "" "Added the ``dev_mode`` attribute for the new :ref:`Python Development Mode " "` and the ``utf8_mode`` attribute for the new :option:`-X` " "``utf8`` flag." msgstr "" -#: library/sys.rst:586 +#: library/sys.rst:590 msgid "" "Added ``warn_default_encoding`` attribute for :option:`-X` " "``warn_default_encoding`` flag." msgstr "" -#: library/sys.rst:589 +#: library/sys.rst:593 msgid "Added the ``safe_path`` attribute for :option:`-P` option." msgstr "" -#: library/sys.rst:592 +#: library/sys.rst:596 msgid "Added the ``int_max_str_digits`` attribute." msgstr "" -#: library/sys.rst:598 +#: library/sys.rst:602 msgid "" "A :term:`named tuple` holding information about the float type. It contains " "low level information about the precision and internal representation. The " @@ -718,161 +724,161 @@ msgid "" "floating types', for details." msgstr "" -#: library/sys.rst:605 +#: library/sys.rst:609 msgid "Attributes of the :data:`!float_info` :term:`named tuple`" msgstr "" -#: library/sys.rst:608 +#: library/sys.rst:612 msgid "attribute" msgstr "" -#: library/sys.rst:609 +#: library/sys.rst:613 msgid "float.h macro" msgstr "" -#: library/sys.rst:610 +#: library/sys.rst:614 msgid "explanation" msgstr "" -#: library/sys.rst:613 +#: library/sys.rst:617 msgid ":c:macro:`!DBL_EPSILON`" msgstr "" -#: library/sys.rst:614 +#: library/sys.rst:618 msgid "" "difference between 1.0 and the least value greater than 1.0 that is " "representable as a float." msgstr "" -#: library/sys.rst:617 +#: library/sys.rst:621 msgid "See also :func:`math.ulp`." msgstr "" -#: library/sys.rst:620 +#: library/sys.rst:624 msgid ":c:macro:`!DBL_DIG`" msgstr "" -#: library/sys.rst:621 +#: library/sys.rst:625 msgid "" "The maximum number of decimal digits that can be faithfully represented in a " "float; see below." msgstr "" -#: library/sys.rst:625 +#: library/sys.rst:629 msgid ":c:macro:`!DBL_MANT_DIG`" msgstr "" -#: library/sys.rst:626 +#: library/sys.rst:630 msgid "" "Float precision: the number of base-``radix`` digits in the significand of a " "float." msgstr "" -#: library/sys.rst:630 +#: library/sys.rst:634 msgid ":c:macro:`!DBL_MAX`" msgstr "" -#: library/sys.rst:631 +#: library/sys.rst:635 msgid "The maximum representable positive finite float." msgstr "" -#: library/sys.rst:634 +#: library/sys.rst:638 msgid ":c:macro:`!DBL_MAX_EXP`" msgstr "" -#: library/sys.rst:635 +#: library/sys.rst:639 msgid "" "The maximum integer *e* such that ``radix**(e-1)`` is a representable finite " "float." msgstr "" -#: library/sys.rst:639 +#: library/sys.rst:643 msgid ":c:macro:`!DBL_MAX_10_EXP`" msgstr "" -#: library/sys.rst:640 +#: library/sys.rst:644 msgid "" "The maximum integer *e* such that ``10**e`` is in the range of representable " "finite floats." msgstr "" -#: library/sys.rst:644 +#: library/sys.rst:648 msgid ":c:macro:`!DBL_MIN`" msgstr "" -#: library/sys.rst:645 +#: library/sys.rst:649 msgid "The minimum representable positive *normalized* float." msgstr "" -#: library/sys.rst:647 +#: library/sys.rst:651 msgid "" "Use :func:`math.ulp(0.0) ` to get the smallest positive " "*denormalized* representable float." msgstr "" -#: library/sys.rst:651 +#: library/sys.rst:655 msgid ":c:macro:`!DBL_MIN_EXP`" msgstr "" -#: library/sys.rst:652 +#: library/sys.rst:656 msgid "" "The minimum integer *e* such that ``radix**(e-1)`` is a normalized float." msgstr "" -#: library/sys.rst:656 +#: library/sys.rst:660 msgid ":c:macro:`!DBL_MIN_10_EXP`" msgstr "" -#: library/sys.rst:657 +#: library/sys.rst:661 msgid "The minimum integer *e* such that ``10**e`` is a normalized float." msgstr "" -#: library/sys.rst:660 +#: library/sys.rst:664 msgid ":c:macro:`!FLT_RADIX`" msgstr "" -#: library/sys.rst:661 +#: library/sys.rst:665 msgid "The radix of exponent representation." msgstr "" -#: library/sys.rst:664 +#: library/sys.rst:668 msgid ":c:macro:`!FLT_ROUNDS`" msgstr "" -#: library/sys.rst:665 +#: library/sys.rst:669 msgid "" "An integer representing the rounding mode for floating-point arithmetic. " "This reflects the value of the system :c:macro:`!FLT_ROUNDS` macro at " "interpreter startup time:" msgstr "" -#: library/sys.rst:669 +#: library/sys.rst:673 msgid "``-1``: indeterminable" msgstr "" -#: library/sys.rst:670 +#: library/sys.rst:674 msgid "``0``: toward zero" msgstr "" -#: library/sys.rst:671 +#: library/sys.rst:675 msgid "``1``: to nearest" msgstr "" -#: library/sys.rst:672 +#: library/sys.rst:676 msgid "``2``: toward positive infinity" msgstr "" -#: library/sys.rst:673 +#: library/sys.rst:677 msgid "``3``: toward negative infinity" msgstr "" -#: library/sys.rst:675 +#: library/sys.rst:679 msgid "" "All other values for :c:macro:`!FLT_ROUNDS` characterize implementation-" "defined rounding behavior." msgstr "" -#: library/sys.rst:678 +#: library/sys.rst:682 msgid "" "The attribute :attr:`sys.float_info.dig` needs further explanation. If " "``s`` is any string representing a decimal number with at most :attr:`!sys." @@ -880,13 +886,13 @@ msgid "" "back again will recover a string representing the same decimal value::" msgstr "" -#: library/sys.rst:691 +#: library/sys.rst:695 msgid "" "But for strings with more than :attr:`sys.float_info.dig` significant " "digits, this isn't always true::" msgstr "" -#: library/sys.rst:700 +#: library/sys.rst:704 msgid "" "A string indicating how the :func:`repr` function behaves for floats. If " "the string has value ``'short'`` then for a finite float ``x``, ``repr(x)`` " @@ -896,7 +902,7 @@ msgid "" "same way as it did in versions of Python prior to 3.1." msgstr "" -#: library/sys.rst:713 +#: library/sys.rst:717 msgid "" "Return the number of memory blocks currently allocated by the interpreter, " "regardless of their size. This function is mainly useful for tracking and " @@ -906,38 +912,42 @@ msgid "" "results." msgstr "" -#: library/sys.rst:720 +#: library/sys.rst:724 msgid "" "If a Python build or implementation cannot reasonably compute this " "information, :func:`getallocatedblocks()` is allowed to return 0 instead." msgstr "" -#: library/sys.rst:728 +#: library/sys.rst:732 +msgid "Return the number of unicode objects that have been interned." +msgstr "" + +#: library/sys.rst:739 msgid "Return the build time API version of Android as an integer." msgstr "" -#: library/sys.rst:730 +#: library/sys.rst:741 msgid ":ref:`Availability `: Android." msgstr "" -#: library/sys.rst:737 +#: library/sys.rst:748 msgid "" "Return the name of the current default string encoding used by the Unicode " "implementation." msgstr "" -#: library/sys.rst:743 +#: library/sys.rst:754 msgid "" "Return the current value of the flags that are used for :c:func:`dlopen` " "calls. Symbolic names for the flag values can be found in the :mod:`os` " "module (``RTLD_xxx`` constants, e.g. :const:`os.RTLD_LAZY`)." msgstr "" -#: library/sys.rst:1415 +#: library/sys.rst:1447 msgid ":ref:`Availability `: Unix." msgstr "" -#: library/sys.rst:753 +#: library/sys.rst:764 msgid "" "Get the :term:`filesystem encoding `: " "the encoding used with the :term:`filesystem error handler ` is enabled." msgstr "" -#: library/sys.rst:786 +#: library/sys.rst:797 msgid "" "Get the :term:`filesystem error handler `: the error handler used with the :term:`filesystem encoding " @@ -992,27 +1002,35 @@ msgid "" "func:`getfilesystemencoding`." msgstr "" -#: library/sys.rst:804 +#: library/sys.rst:815 msgid "" "Returns the current value for the :ref:`integer string conversion length " "limitation `. See also :func:`set_int_max_str_digits`." msgstr "" -#: library/sys.rst:811 +#: library/sys.rst:822 msgid "" "Return the reference count of the *object*. The count returned is generally " "one higher than you might expect, because it includes the (temporary) " "reference as an argument to :func:`getrefcount`." msgstr "" -#: library/sys.rst:815 +#: library/sys.rst:826 msgid "" "Note that the returned value may not actually reflect how many references to " -"the object are actually held. Consequently, do not rely on the returned " -"value to be accurate, other than a value of 0 or 1." +"the object are actually held. For example, some objects are \"immortal\" " +"and have a very high refcount that does not reflect the actual number of " +"references. Consequently, do not rely on the returned value to be accurate, " +"other than a value of 0 or 1." +msgstr "" + +#: library/sys.rst:832 +msgid "" +"Immortal objects have very large refcounts that do not match the actual " +"number of references to the object." msgstr "" -#: library/sys.rst:821 +#: library/sys.rst:838 msgid "" "Return the current value of the recursion limit, the maximum depth of the " "Python interpreter stack. This limit prevents infinite recursion from " @@ -1020,46 +1038,46 @@ msgid "" "func:`setrecursionlimit`." msgstr "" -#: library/sys.rst:829 +#: library/sys.rst:846 msgid "" "Return the size of an object in bytes. The object can be any type of object. " "All built-in objects will return correct results, but this does not have to " "hold true for third-party extensions as it is implementation specific." msgstr "" -#: library/sys.rst:834 +#: library/sys.rst:851 msgid "" "Only the memory consumption directly attributed to the object is accounted " "for, not the memory consumption of objects it refers to." msgstr "" -#: library/sys.rst:837 +#: library/sys.rst:854 msgid "" "If given, *default* will be returned if the object does not provide means to " "retrieve the size. Otherwise a :exc:`TypeError` will be raised." msgstr "" -#: library/sys.rst:840 +#: library/sys.rst:857 msgid "" ":func:`getsizeof` calls the object's ``__sizeof__`` method and adds an " "additional garbage collector overhead if the object is managed by the " "garbage collector." msgstr "" -#: library/sys.rst:844 +#: library/sys.rst:861 msgid "" "See `recursive sizeof recipe `_ for an example of using :func:`getsizeof` recursively to find the size " "of containers and all their contents." msgstr "" -#: library/sys.rst:850 +#: library/sys.rst:867 msgid "" "Return the interpreter's \"thread switch interval\"; see :func:" "`setswitchinterval`." msgstr "" -#: library/sys.rst:858 +#: library/sys.rst:875 msgid "" "Return a frame object from the call stack. If optional integer *depth* is " "given, return the frame object that many calls below the top of the stack. " @@ -1068,27 +1086,42 @@ msgid "" "stack." msgstr "" -#: library/sys.rst:863 +#: library/sys.rst:880 msgid "" "Raises an :ref:`auditing event ` ``sys._getframe`` with argument " "``frame``." msgstr "" -#: library/sys.rst:867 +#: library/sys.rst:900 msgid "" "This function should be used for internal and specialized purposes only. It " "is not guaranteed to exist in all implementations of Python." msgstr "" -#: library/sys.rst:877 +#: library/sys.rst:890 +msgid "" +"Return the name of a module from the call stack. If optional integer " +"*depth* is given, return the module that many calls below the top of the " +"stack. If that is deeper than the call stack, or if the module is " +"unidentifiable, ``None`` is returned. The default for *depth* is zero, " +"returning the module at the top of the call stack." +msgstr "" + +#: library/sys.rst:896 +msgid "" +"Raises an :ref:`auditing event ` ``sys._getframemodulename`` with " +"argument ``depth``." +msgstr "" + +#: library/sys.rst:910 msgid "Get the profiler function as set by :func:`setprofile`." msgstr "" -#: library/sys.rst:886 +#: library/sys.rst:919 msgid "Get the trace function as set by :func:`settrace`." msgstr "" -#: library/sys.rst:890 +#: library/sys.rst:923 msgid "" "The :func:`gettrace` function is intended only for implementing debuggers, " "profilers, coverage tools and the like. Its behavior is part of the " @@ -1096,7 +1129,7 @@ msgid "" "thus may not be available in all Python implementations." msgstr "" -#: library/sys.rst:898 +#: library/sys.rst:931 msgid "" "Return a named tuple describing the Windows version currently running. The " "named elements are *major*, *minor*, *build*, *platform*, *service_pack*, " @@ -1108,54 +1141,54 @@ msgid "" "first 5 elements are retrievable by indexing." msgstr "" -#: library/sys.rst:909 +#: library/sys.rst:942 msgid "*platform* will be ``2`` (VER_PLATFORM_WIN32_NT)." msgstr "" -#: library/sys.rst:911 +#: library/sys.rst:944 msgid "*product_type* may be one of the following values:" msgstr "" -#: library/sys.rst:914 +#: library/sys.rst:947 msgid "Constant" msgstr "" -#: library/sys.rst:914 +#: library/sys.rst:947 msgid "Meaning" msgstr "" -#: library/sys.rst:916 +#: library/sys.rst:949 msgid "``1`` (VER_NT_WORKSTATION)" msgstr "" -#: library/sys.rst:916 +#: library/sys.rst:949 msgid "The system is a workstation." msgstr "" -#: library/sys.rst:918 +#: library/sys.rst:951 msgid "``2`` (VER_NT_DOMAIN_CONTROLLER)" msgstr "" -#: library/sys.rst:918 +#: library/sys.rst:951 msgid "The system is a domain controller." msgstr "" -#: library/sys.rst:921 +#: library/sys.rst:954 msgid "``3`` (VER_NT_SERVER)" msgstr "" -#: library/sys.rst:921 +#: library/sys.rst:954 msgid "The system is a server, but not a domain controller." msgstr "" -#: library/sys.rst:925 +#: library/sys.rst:958 msgid "" "This function wraps the Win32 :c:func:`!GetVersionEx` function; see the " "Microsoft documentation on :c:func:`!OSVERSIONINFOEX` for more information " "about these fields." msgstr "" -#: library/sys.rst:929 +#: library/sys.rst:962 msgid "" "*platform_version* returns the major version, minor version and build number " "of the current operating system, rather than the version that is being " @@ -1163,24 +1196,24 @@ msgid "" "feature detection." msgstr "" -#: library/sys.rst:935 +#: library/sys.rst:968 msgid "" "*platform_version* derives the version from kernel32.dll which can be of a " "different version than the OS version. Please use :mod:`platform` module for " "achieving accurate OS version." msgstr "" -#: library/sys.rst:941 +#: library/sys.rst:974 msgid "" "Changed to a named tuple and added *service_pack_minor*, " "*service_pack_major*, *suite_mask*, and *product_type*." msgstr "" -#: library/sys.rst:945 +#: library/sys.rst:978 msgid "Added *platform_version*" msgstr "" -#: library/sys.rst:951 +#: library/sys.rst:984 msgid "" "Returns an *asyncgen_hooks* object, which is similar to a :class:" "`~collections.namedtuple` of the form ``(firstiter, finalizer)``, where " @@ -1190,71 +1223,71 @@ msgid "" "loop." msgstr "" -#: library/sys.rst:958 +#: library/sys.rst:991 msgid "See :pep:`525` for more details." msgstr "" -#: library/sys.rst:1617 +#: library/sys.rst:1649 msgid "" "This function has been added on a provisional basis (see :pep:`411` for " "details.)" msgstr "" -#: library/sys.rst:968 +#: library/sys.rst:1001 msgid "" "Get the current coroutine origin tracking depth, as set by :func:" "`set_coroutine_origin_tracking_depth`." msgstr "" -#: library/sys.rst:1638 +#: library/sys.rst:1670 msgid "" "This function has been added on a provisional basis (see :pep:`411` for " "details.) Use it only for debugging purposes." msgstr "" -#: library/sys.rst:980 +#: library/sys.rst:1013 msgid "" "A :term:`named tuple` giving parameters of the numeric hash implementation. " "For more details about hashing of numeric types, see :ref:`numeric-hash`." msgstr "" -#: library/sys.rst:986 +#: library/sys.rst:1019 msgid "The width in bits used for hash values" msgstr "" -#: library/sys.rst:990 +#: library/sys.rst:1023 msgid "The prime modulus P used for numeric hash scheme" msgstr "" -#: library/sys.rst:994 +#: library/sys.rst:1027 msgid "The hash value returned for a positive infinity" msgstr "" -#: library/sys.rst:998 +#: library/sys.rst:1031 msgid "(This attribute is no longer used)" msgstr "" -#: library/sys.rst:1002 +#: library/sys.rst:1035 msgid "The multiplier used for the imaginary part of a complex number" msgstr "" -#: library/sys.rst:1006 +#: library/sys.rst:1039 msgid "The name of the algorithm for hashing of str, bytes, and memoryview" msgstr "" -#: library/sys.rst:1010 +#: library/sys.rst:1043 msgid "The internal output size of the hash algorithm" msgstr "" -#: library/sys.rst:1014 +#: library/sys.rst:1047 msgid "The size of the seed key of the hash algorithm" msgstr "" -#: library/sys.rst:1018 +#: library/sys.rst:1051 msgid "Added *algorithm*, *hash_bits* and *seed_bits*" msgstr "" -#: library/sys.rst:1024 +#: library/sys.rst:1057 msgid "" "The version number encoded as a single integer. This is guaranteed to " "increase with each version, including proper support for non-production " @@ -1262,7 +1295,7 @@ msgid "" "version 1.5.2, use::" msgstr "" -#: library/sys.rst:1035 +#: library/sys.rst:1068 msgid "" "This is called ``hexversion`` since it only really looks meaningful when " "viewed as the result of passing it to the built-in :func:`hex` function. " @@ -1270,25 +1303,25 @@ msgid "" "human-friendly encoding of the same information." msgstr "" -#: library/sys.rst:1040 +#: library/sys.rst:1073 msgid "More details of ``hexversion`` can be found at :ref:`apiabiversion`." msgstr "" -#: library/sys.rst:1045 +#: library/sys.rst:1078 msgid "" "An object containing information about the implementation of the currently " "running Python interpreter. The following attributes are required to exist " "in all Python implementations." msgstr "" -#: library/sys.rst:1049 +#: library/sys.rst:1082 msgid "" "*name* is the implementation's identifier, e.g. ``'cpython'``. The actual " "string is defined by the Python implementation, but it is guaranteed to be " "lower case." msgstr "" -#: library/sys.rst:1053 +#: library/sys.rst:1086 msgid "" "*version* is a named tuple, in the same format as :data:`sys.version_info`. " "It represents the version of the Python *implementation*. This has a " @@ -1300,13 +1333,13 @@ msgid "" "the same value, since it is the reference implementation." msgstr "" -#: library/sys.rst:1063 +#: library/sys.rst:1096 msgid "" "*hexversion* is the implementation version in hexadecimal format, like :data:" "`sys.hexversion`." msgstr "" -#: library/sys.rst:1066 +#: library/sys.rst:1099 msgid "" "*cache_tag* is the tag used by the import machinery in the filenames of " "cached modules. By convention, it would be a composite of the " @@ -1315,7 +1348,7 @@ msgid "" "set to ``None``, it indicates that module caching should be disabled." msgstr "" -#: library/sys.rst:1073 +#: library/sys.rst:1106 msgid "" ":data:`sys.implementation` may contain additional attributes specific to the " "Python implementation. These non-standard attributes must start with an " @@ -1325,47 +1358,47 @@ msgid "" "versions, however.) See :pep:`421` for more information." msgstr "" -#: library/sys.rst:1084 +#: library/sys.rst:1117 msgid "" "The addition of new required attributes must go through the normal PEP " "process. See :pep:`421` for more information." msgstr "" -#: library/sys.rst:1089 +#: library/sys.rst:1122 msgid "" "A :term:`named tuple` that holds information about Python's internal " "representation of integers. The attributes are read only." msgstr "" -#: library/sys.rst:1094 +#: library/sys.rst:1127 msgid "" "The number of bits held in each digit. Python integers are stored internally " "in base ``2**int_info.bits_per_digit``." msgstr "" -#: library/sys.rst:1099 +#: library/sys.rst:1132 msgid "The size in bytes of the C type used to represent a digit." msgstr "" -#: library/sys.rst:1103 +#: library/sys.rst:1136 msgid "" "The default value for :func:`sys.get_int_max_str_digits` when it is not " "otherwise explicitly configured." msgstr "" -#: library/sys.rst:1108 +#: library/sys.rst:1141 msgid "" "The minimum non-zero value for :func:`sys.set_int_max_str_digits`, :envvar:" "`PYTHONINTMAXSTRDIGITS`, or :option:`-X int_max_str_digits <-X>`." msgstr "" -#: library/sys.rst:1115 +#: library/sys.rst:1148 msgid "" "Added :attr:`~int_info.default_max_str_digits` and :attr:`~int_info." "str_digits_check_threshold`." msgstr "" -#: library/sys.rst:1121 +#: library/sys.rst:1154 msgid "" "When this attribute exists, its value is automatically called (with no " "arguments) when the interpreter is launched in :ref:`interactive mode `." msgstr "" -#: library/sys.rst:1127 +#: library/sys.rst:1160 msgid "" "Raises an :ref:`auditing event ` ``cpython.run_interactivehook`` " "with argument ``hook``." msgstr "" -#: library/sys.rst:1129 +#: library/sys.rst:1162 msgid "" "Raises an :ref:`auditing event ` ``cpython.run_interactivehook`` " "with the hook object as the argument when the hook is called on startup." msgstr "" -#: library/sys.rst:1138 +#: library/sys.rst:1171 msgid "" "Enter *string* in the table of \"interned\" strings and return the interned " "string -- which is *string* itself or a copy. Interning strings is useful to " @@ -1398,56 +1431,57 @@ msgid "" "attributes have interned keys." msgstr "" -#: library/sys.rst:1146 +#: library/sys.rst:1179 msgid "" "Interned strings are not immortal; you must keep a reference to the return " "value of :func:`intern` around to benefit from it." msgstr "" -#: library/sys.rst:1152 +#: library/sys.rst:1185 msgid "" "Return :const:`True` if the Python interpreter is :term:`shutting down " "`, :const:`False` otherwise." msgstr "" -#: library/sys.rst:1162 +#: library/sys.rst:1192 msgid "" -"These three variables are not always defined; they are set when an exception " -"is not handled and the interpreter prints an error message and a stack " -"traceback. Their intended use is to allow an interactive user to import a " -"debugger module and engage in post-mortem debugging without having to re-" -"execute the command that caused the error. (Typical use is ``import pdb; " -"pdb.pm()`` to enter the post-mortem debugger; see :mod:`pdb` module for more " -"information.)" +"This variable is not always defined; it is set to the exception instance " +"when an exception is not handled and the interpreter prints an error message " +"and a stack traceback. Its intended use is to allow an interactive user to " +"import a debugger module and engage in post-mortem debugging without having " +"to re-execute the command that caused the error. (Typical use is ``import " +"pdb; pdb.pm()`` to enter the post-mortem debugger; see :mod:`pdb` module for " +"more information.)" msgstr "" -#: library/sys.rst:1170 +#: library/sys.rst:1206 msgid "" -"The meaning of the variables is the same as that of the return values from :" -"func:`exc_info` above." +"These three variables are deprecated; use :data:`sys.last_exc` instead. They " +"hold the legacy representation of ``sys.last_exc``, as returned from :func:" +"`exc_info` above." msgstr "" -#: library/sys.rst:1176 +#: library/sys.rst:1212 msgid "" "An integer giving the maximum value a variable of type :c:type:`Py_ssize_t` " "can take. It's usually ``2**31 - 1`` on a 32-bit platform and ``2**63 - 1`` " "on a 64-bit platform." msgstr "" -#: library/sys.rst:1183 +#: library/sys.rst:1219 msgid "" "An integer giving the value of the largest Unicode code point, i.e. " "``1114111`` (``0x10FFFF`` in hexadecimal)." msgstr "" -#: library/sys.rst:1186 +#: library/sys.rst:1222 msgid "" "Before :pep:`393`, ``sys.maxunicode`` used to be either ``0xFFFF`` or " "``0x10FFFF``, depending on the configuration option that specified whether " "Unicode characters were stored as UCS-2 or UCS-4." msgstr "" -#: library/sys.rst:1194 +#: library/sys.rst:1230 msgid "" "A list of :term:`meta path finder` objects that have their :meth:`~importlib." "abc.MetaPathFinder.find_spec` methods called to see if one of the objects " @@ -1460,36 +1494,35 @@ msgid "" "if the module cannot be found." msgstr "" -#: library/sys.rst:1207 +#: library/sys.rst:1243 msgid ":class:`importlib.abc.MetaPathFinder`" msgstr "" -#: library/sys.rst:1207 +#: library/sys.rst:1243 msgid "" "The abstract base class defining the interface of finder objects on :data:" "`meta_path`." msgstr "" -#: library/sys.rst:1211 +#: library/sys.rst:1247 msgid ":class:`importlib.machinery.ModuleSpec`" msgstr "" -#: library/sys.rst:1210 +#: library/sys.rst:1246 msgid "" "The concrete class which :meth:`~importlib.abc.MetaPathFinder.find_spec` " "should return instances of." msgstr "" -#: library/sys.rst:1216 +#: library/sys.rst:1252 msgid "" ":term:`Module specs ` were introduced in Python 3.4, by :pep:" -"`451`. Earlier versions of Python looked for a method called :meth:" -"`~importlib.abc.MetaPathFinder.find_module`. This is still called as a " -"fallback if a :data:`meta_path` entry doesn't have a :meth:`~importlib.abc." -"MetaPathFinder.find_spec` method." +"`451`. Earlier versions of Python looked for a method called :meth:`!" +"find_module`. This is still called as a fallback if a :data:`meta_path` " +"entry doesn't have a :meth:`~importlib.abc.MetaPathFinder.find_spec` method." msgstr "" -#: library/sys.rst:1224 +#: library/sys.rst:1260 msgid "" "This is a dictionary that maps module names to modules which have already " "been loaded. This can be manipulated to force reloading of modules and " @@ -1501,78 +1534,78 @@ msgid "" "other threads." msgstr "" -#: library/sys.rst:1236 +#: library/sys.rst:1272 msgid "" "The list of the original command line arguments passed to the Python " "executable." msgstr "" -#: library/sys.rst:1239 +#: library/sys.rst:1275 msgid "See also :data:`sys.argv`." msgstr "" -#: library/sys.rst:1248 +#: library/sys.rst:1284 msgid "" "A list of strings that specifies the search path for modules. Initialized " "from the environment variable :envvar:`PYTHONPATH`, plus an installation-" "dependent default." msgstr "" -#: library/sys.rst:1252 +#: library/sys.rst:1288 msgid "" "By default, as initialized upon program startup, a potentially unsafe path " "is prepended to :data:`sys.path` (*before* the entries inserted as a result " "of :envvar:`PYTHONPATH`):" msgstr "" -#: library/sys.rst:1256 +#: library/sys.rst:1292 msgid "" "``python -m module`` command line: prepend the current working directory." msgstr "" -#: library/sys.rst:1258 +#: library/sys.rst:1294 msgid "" "``python script.py`` command line: prepend the script's directory. If it's a " "symbolic link, resolve symbolic links." msgstr "" -#: library/sys.rst:1260 +#: library/sys.rst:1296 msgid "" "``python -c code`` and ``python`` (REPL) command lines: prepend an empty " "string, which means the current working directory." msgstr "" -#: library/sys.rst:1263 +#: library/sys.rst:1299 msgid "" "To not prepend this potentially unsafe path, use the :option:`-P` command " "line option or the :envvar:`PYTHONSAFEPATH` environment variable." msgstr "" -#: library/sys.rst:1266 +#: library/sys.rst:1302 msgid "" "A program is free to modify this list for its own purposes. Only strings " "should be added to :data:`sys.path`; all other data types are ignored during " "import." msgstr "" -#: library/sys.rst:1272 +#: library/sys.rst:1308 msgid "" "Module :mod:`site` This describes how to use .pth files to extend :data:`sys." "path`." msgstr "" -#: library/sys.rst:1277 +#: library/sys.rst:1313 msgid "" "A list of callables that take a path argument to try to create a :term:" "`finder` for the path. If a finder can be created, it is to be returned by " "the callable, else raise :exc:`ImportError`." msgstr "" -#: library/sys.rst:1292 +#: library/sys.rst:1328 msgid "Originally specified in :pep:`302`." msgstr "" -#: library/sys.rst:1286 +#: library/sys.rst:1322 msgid "" "A dictionary acting as a cache for :term:`finder` objects. The keys are " "paths that have been passed to :data:`sys.path_hooks` and the values are the " @@ -1580,19 +1613,13 @@ msgid "" "is found on :data:`sys.path_hooks` then ``None`` is stored." msgstr "" -#: library/sys.rst:1294 -msgid "" -"``None`` is stored instead of :class:`imp.NullImporter` when no finder is " -"found." -msgstr "" - -#: library/sys.rst:1301 +#: library/sys.rst:1333 msgid "" "This string contains a platform identifier that can be used to append " "platform-specific components to :data:`sys.path`, for instance." msgstr "" -#: library/sys.rst:1304 +#: library/sys.rst:1336 msgid "" "For Unix systems, except on Linux and AIX, this is the lowercased OS name as " "returned by ``uname -s`` with the first part of the version as returned by " @@ -1601,75 +1628,75 @@ msgid "" "version, it is therefore recommended to use the following idiom::" msgstr "" -#: library/sys.rst:1317 +#: library/sys.rst:1349 msgid "For other systems, the values are:" msgstr "" -#: library/sys.rst:1320 +#: library/sys.rst:1352 msgid "System" msgstr "" -#: library/sys.rst:1320 +#: library/sys.rst:1352 msgid "``platform`` value" msgstr "" -#: library/sys.rst:1322 +#: library/sys.rst:1354 msgid "AIX" msgstr "" -#: library/sys.rst:1322 +#: library/sys.rst:1354 msgid "``'aix'``" msgstr "" -#: library/sys.rst:1323 +#: library/sys.rst:1355 msgid "Emscripten" msgstr "" -#: library/sys.rst:1323 +#: library/sys.rst:1355 msgid "``'emscripten'``" msgstr "" -#: library/sys.rst:1324 +#: library/sys.rst:1356 msgid "Linux" msgstr "" -#: library/sys.rst:1324 +#: library/sys.rst:1356 msgid "``'linux'``" msgstr "" -#: library/sys.rst:1325 +#: library/sys.rst:1357 msgid "WASI" msgstr "" -#: library/sys.rst:1325 +#: library/sys.rst:1357 msgid "``'wasi'``" msgstr "" -#: library/sys.rst:1326 +#: library/sys.rst:1358 msgid "Windows" msgstr "" -#: library/sys.rst:1326 +#: library/sys.rst:1358 msgid "``'win32'``" msgstr "" -#: library/sys.rst:1327 +#: library/sys.rst:1359 msgid "Windows/Cygwin" msgstr "" -#: library/sys.rst:1327 +#: library/sys.rst:1359 msgid "``'cygwin'``" msgstr "" -#: library/sys.rst:1328 +#: library/sys.rst:1360 msgid "macOS" msgstr "" -#: library/sys.rst:1328 +#: library/sys.rst:1360 msgid "``'darwin'``" msgstr "" -#: library/sys.rst:1331 +#: library/sys.rst:1363 msgid "" "On Linux, :data:`sys.platform` doesn't contain the major version anymore. It " "is always ``'linux'``, instead of ``'linux2'`` or ``'linux3'``. Since older " @@ -1677,7 +1704,7 @@ msgid "" "the ``startswith`` idiom presented above." msgstr "" -#: library/sys.rst:1337 +#: library/sys.rst:1369 msgid "" "On AIX, :data:`sys.platform` doesn't contain the major version anymore. It " "is always ``'aix'``, instead of ``'aix5'`` or ``'aix7'``. Since older " @@ -1685,57 +1712,57 @@ msgid "" "the ``startswith`` idiom presented above." msgstr "" -#: library/sys.rst:1345 +#: library/sys.rst:1377 msgid "" ":data:`os.name` has a coarser granularity. :func:`os.uname` gives system-" "dependent version information." msgstr "" -#: library/sys.rst:1348 +#: library/sys.rst:1380 msgid "" "The :mod:`platform` module provides detailed checks for the system's " "identity." msgstr "" -#: library/sys.rst:1354 +#: library/sys.rst:1386 msgid "" "Name of the platform-specific library directory. It is used to build the " "path of standard library and the paths of installed extension modules." msgstr "" -#: library/sys.rst:1357 +#: library/sys.rst:1389 msgid "" "It is equal to ``\"lib\"`` on most platforms. On Fedora and SuSE, it is " "equal to ``\"lib64\"`` on 64-bit platforms which gives the following ``sys." "path`` paths (where ``X.Y`` is the Python ``major.minor`` version):" msgstr "" -#: library/sys.rst:1361 +#: library/sys.rst:1393 msgid "" "``/usr/lib64/pythonX.Y/``: Standard library (like ``os.py`` of the :mod:`os` " "module)" msgstr "" -#: library/sys.rst:1363 +#: library/sys.rst:1395 msgid "" "``/usr/lib64/pythonX.Y/lib-dynload/``: C extension modules of the standard " "library (like the :mod:`errno` module, the exact filename is platform " "specific)" msgstr "" -#: library/sys.rst:1366 +#: library/sys.rst:1398 msgid "" "``/usr/lib/pythonX.Y/site-packages/`` (always use ``lib``, not :data:`sys." "platlibdir`): Third-party modules" msgstr "" -#: library/sys.rst:1368 +#: library/sys.rst:1400 msgid "" "``/usr/lib64/pythonX.Y/site-packages/``: C extension modules of third-party " "packages" msgstr "" -#: library/sys.rst:1376 +#: library/sys.rst:1408 msgid "" "A string giving the site-specific directory prefix where the platform " "independent Python files are installed; on Unix, the default is :file:`/usr/" @@ -1744,14 +1771,14 @@ msgid "" "derived paths." msgstr "" -#: library/sys.rst:1382 +#: library/sys.rst:1414 msgid "" "If a :ref:`virtual environment ` is in effect, this value will be " "changed in ``site.py`` to point to the virtual environment. The value for " "the Python installation will still be available, via :data:`base_prefix`." msgstr "" -#: library/sys.rst:1397 +#: library/sys.rst:1429 msgid "" "Strings specifying the primary and secondary prompt of the interpreter. " "These are only defined if the interpreter is in interactive mode. Their " @@ -1761,7 +1788,7 @@ msgid "" "used to implement a dynamic prompt." msgstr "" -#: library/sys.rst:1407 +#: library/sys.rst:1439 msgid "" "Set the flags used by the interpreter for :c:func:`dlopen` calls, such as " "when the interpreter loads extension modules. Among other things, this will " @@ -1772,14 +1799,14 @@ msgid "" "const:`os.RTLD_LAZY`)." msgstr "" -#: library/sys.rst:1419 +#: library/sys.rst:1451 msgid "" "Set the :ref:`integer string conversion length limitation " "` used by this interpreter. See also :func:" "`get_int_max_str_digits`." msgstr "" -#: library/sys.rst:1431 +#: library/sys.rst:1463 msgid "" "Set the system's profile function, which allows you to implement a Python " "source code profiler in Python. See chapter :ref:`profile` for more " @@ -1794,7 +1821,7 @@ msgid "" "in the profile function will cause itself unset." msgstr "" -#: library/sys.rst:1442 +#: library/sys.rst:1474 msgid "" "Profile functions should have three arguments: *frame*, *event*, and *arg*. " "*frame* is the current stack frame. *event* is a string: ``'call'``, " @@ -1802,71 +1829,71 @@ msgid "" "depends on the event type." msgstr "" -#: library/sys.rst:1447 +#: library/sys.rst:1479 msgid "" "Raises an :ref:`auditing event ` ``sys.setprofile`` with no " "arguments." msgstr "" -#: library/sys.rst:1530 +#: library/sys.rst:1562 msgid "The events have the following meaning:" msgstr "" -#: library/sys.rst:1535 +#: library/sys.rst:1567 msgid "``'call'``" msgstr "" -#: library/sys.rst:1452 +#: library/sys.rst:1484 msgid "" "A function is called (or some other code block entered). The profile " "function is called; *arg* is ``None``." msgstr "" -#: library/sys.rst:1550 +#: library/sys.rst:1582 msgid "``'return'``" msgstr "" -#: library/sys.rst:1456 +#: library/sys.rst:1488 msgid "" "A function (or other code block) is about to return. The profile function " "is called; *arg* is the value that will be returned, or ``None`` if the " "event is caused by an exception being raised." msgstr "" -#: library/sys.rst:1462 +#: library/sys.rst:1494 msgid "``'c_call'``" msgstr "" -#: library/sys.rst:1461 +#: library/sys.rst:1493 msgid "" "A C function is about to be called. This may be an extension function or a " "built-in. *arg* is the C function object." msgstr "" -#: library/sys.rst:1465 +#: library/sys.rst:1497 msgid "``'c_return'``" msgstr "" -#: library/sys.rst:1465 +#: library/sys.rst:1497 msgid "A C function has returned. *arg* is the C function object." msgstr "" -#: library/sys.rst:1467 +#: library/sys.rst:1499 msgid "``'c_exception'``" msgstr "" -#: library/sys.rst:1468 +#: library/sys.rst:1500 msgid "A C function has raised an exception. *arg* is the C function object." msgstr "" -#: library/sys.rst:1472 +#: library/sys.rst:1504 msgid "" "Set the maximum depth of the Python interpreter stack to *limit*. This " "limit prevents infinite recursion from causing an overflow of the C stack " "and crashing Python." msgstr "" -#: library/sys.rst:1476 +#: library/sys.rst:1508 msgid "" "The highest possible limit is platform-dependent. A user may need to set " "the limit higher when they have a program that requires deep recursion and a " @@ -1874,19 +1901,19 @@ msgid "" "because a too-high limit can lead to a crash." msgstr "" -#: library/sys.rst:1481 +#: library/sys.rst:1513 msgid "" "If the new limit is too low at the current recursion depth, a :exc:" "`RecursionError` exception is raised." msgstr "" -#: library/sys.rst:1484 +#: library/sys.rst:1516 msgid "" "A :exc:`RecursionError` exception is now raised if the new limit is too low " "at the current recursion depth." msgstr "" -#: library/sys.rst:1491 +#: library/sys.rst:1523 msgid "" "Set the interpreter's thread switch interval (in seconds). This floating-" "point value determines the ideal duration of the \"timeslices\" allocated to " @@ -1897,7 +1924,7 @@ msgid "" "scheduler." msgstr "" -#: library/sys.rst:1508 +#: library/sys.rst:1540 msgid "" "Set the system's trace function, which allows you to implement a Python " "source code debugger in Python. The function is thread-specific; for a " @@ -1906,7 +1933,7 @@ msgid "" "`threading.settrace`." msgstr "" -#: library/sys.rst:1513 +#: library/sys.rst:1545 msgid "" "Trace functions should have three arguments: *frame*, *event*, and *arg*. " "*frame* is the current stack frame. *event* is a string: ``'call'``, " @@ -1914,7 +1941,7 @@ msgid "" "the event type." msgstr "" -#: library/sys.rst:1518 +#: library/sys.rst:1550 msgid "" "The trace function is invoked (with *event* set to ``'call'``) whenever a " "new local scope is entered; it should return a reference to a local trace " @@ -1922,31 +1949,31 @@ msgid "" "traced." msgstr "" -#: library/sys.rst:1523 +#: library/sys.rst:1555 msgid "" "The local trace function should return a reference to itself (or to another " "function for further tracing in that scope), or ``None`` to turn off tracing " "in that scope." msgstr "" -#: library/sys.rst:1527 +#: library/sys.rst:1559 msgid "" "If there is any error occurred in the trace function, it will be unset, just " "like ``settrace(None)`` is called." msgstr "" -#: library/sys.rst:1533 +#: library/sys.rst:1565 msgid "" "A function is called (or some other code block entered). The global trace " "function is called; *arg* is ``None``; the return value specifies the local " "trace function." msgstr "" -#: library/sys.rst:1544 +#: library/sys.rst:1576 msgid "``'line'``" msgstr "" -#: library/sys.rst:1538 +#: library/sys.rst:1570 msgid "" "The interpreter is about to execute a new line of code or re-execute the " "condition of a loop. The local trace function is called; *arg* is ``None``; " @@ -1956,7 +1983,7 @@ msgid "" "const:`False` on that :ref:`frame `." msgstr "" -#: library/sys.rst:1547 +#: library/sys.rst:1579 msgid "" "A function (or other code block) is about to return. The local trace " "function is called; *arg* is the value that will be returned, or ``None`` if " @@ -1964,22 +1991,22 @@ msgid "" "return value is ignored." msgstr "" -#: library/sys.rst:1555 +#: library/sys.rst:1587 msgid "``'exception'``" msgstr "" -#: library/sys.rst:1553 +#: library/sys.rst:1585 msgid "" "An exception has occurred. The local trace function is called; *arg* is a " "tuple ``(exception, value, traceback)``; the return value specifies the new " "local trace function." msgstr "" -#: library/sys.rst:1563 +#: library/sys.rst:1595 msgid "``'opcode'``" msgstr "" -#: library/sys.rst:1558 +#: library/sys.rst:1590 msgid "" "The interpreter is about to execute a new opcode (see :mod:`dis` for opcode " "details). The local trace function is called; *arg* is ``None``; the return " @@ -1988,13 +2015,13 @@ msgid "" "f_trace_opcodes` to :const:`True` on the :ref:`frame `." msgstr "" -#: library/sys.rst:1565 +#: library/sys.rst:1597 msgid "" "Note that as an exception is propagated down the chain of callers, an " "``'exception'`` event is generated at each level." msgstr "" -#: library/sys.rst:1568 +#: library/sys.rst:1600 msgid "" "For more fine-grained usage, it's possible to set a trace function by " "assigning ``frame.f_trace = tracefunc`` explicitly, rather than relying on " @@ -2008,17 +2035,17 @@ msgid "" "on each frame)." msgstr "" -#: library/sys.rst:1579 +#: library/sys.rst:1611 msgid "For more information on code and frame objects, refer to :ref:`types`." msgstr "" -#: library/sys.rst:1581 +#: library/sys.rst:1613 msgid "" "Raises an :ref:`auditing event ` ``sys.settrace`` with no " "arguments." msgstr "" -#: library/sys.rst:1585 +#: library/sys.rst:1617 msgid "" "The :func:`settrace` function is intended only for implementing debuggers, " "profilers, coverage tools and the like. Its behavior is part of the " @@ -2026,13 +2053,13 @@ msgid "" "thus may not be available in all Python implementations." msgstr "" -#: library/sys.rst:1592 +#: library/sys.rst:1624 msgid "" "``'opcode'`` event type added; :attr:`!f_trace_lines` and :attr:`!" "f_trace_opcodes` attributes added to frames" msgstr "" -#: library/sys.rst:1597 +#: library/sys.rst:1629 msgid "" "Accepts two optional keyword arguments which are callables that accept an :" "term:`asynchronous generator iterator` as an argument. The *firstiter* " @@ -2041,32 +2068,32 @@ msgid "" "about to be garbage collected." msgstr "" -#: library/sys.rst:1603 +#: library/sys.rst:1635 msgid "" "Raises an :ref:`auditing event ` ``sys." "set_asyncgen_hooks_firstiter`` with no arguments." msgstr "" -#: library/sys.rst:1605 +#: library/sys.rst:1637 msgid "" "Raises an :ref:`auditing event ` ``sys." "set_asyncgen_hooks_finalizer`` with no arguments." msgstr "" -#: library/sys.rst:1607 +#: library/sys.rst:1639 msgid "" "Two auditing events are raised because the underlying API consists of two " "calls, each of which must raise its own event." msgstr "" -#: library/sys.rst:1610 +#: library/sys.rst:1642 msgid "" "See :pep:`525` for more details, and for a reference example of a " "*finalizer* method see the implementation of ``asyncio.Loop." "shutdown_asyncgens`` in :source:`Lib/asyncio/base_events.py`" msgstr "" -#: library/sys.rst:1622 +#: library/sys.rst:1654 msgid "" "Allows enabling or disabling coroutine origin tracking. When enabled, the " "``cr_origin`` attribute on coroutine objects will contain a tuple of " @@ -2075,74 +2102,104 @@ msgid "" "disabled, ``cr_origin`` will be None." msgstr "" -#: library/sys.rst:1629 +#: library/sys.rst:1661 msgid "" "To enable, pass a *depth* value greater than zero; this sets the number of " "frames whose information will be captured. To disable, pass set *depth* to " "zero." msgstr "" -#: library/sys.rst:1633 +#: library/sys.rst:1665 msgid "This setting is thread-specific." msgstr "" -#: library/sys.rst:1643 +#: library/sys.rst:1675 +msgid "" +"Activate the stack profiler trampoline *backend*. The only supported backend " +"is ``\"perf\"``." +msgstr "" + +#: library/sys.rst:1693 library/sys.rst:1701 +msgid ":ref:`Availability `: Linux." +msgstr "" + +#: library/sys.rst:1684 +msgid ":ref:`perf_profiling`" +msgstr "" + +#: library/sys.rst:1685 +msgid "https://perf.wiki.kernel.org" +msgstr "" + +#: library/sys.rst:1689 +msgid "Deactivate the current stack profiler trampoline backend." +msgstr "" + +#: library/sys.rst:1691 +msgid "If no stack profiler is activated, this function has no effect." +msgstr "" + +#: library/sys.rst:1699 +msgid "Return ``True`` if a stack profiler trampoline is active." +msgstr "" + +#: library/sys.rst:1707 msgid "" "Changes the :term:`filesystem encoding and error handler` to 'mbcs' and " "'replace' respectively, for consistency with versions of Python prior to 3.6." msgstr "" -#: library/sys.rst:1647 +#: library/sys.rst:1711 msgid "" "This is equivalent to defining the :envvar:`PYTHONLEGACYWINDOWSFSENCODING` " "environment variable before launching Python." msgstr "" -#: library/sys.rst:1650 +#: library/sys.rst:1714 msgid "" "See also :func:`sys.getfilesystemencoding` and :func:`sys." "getfilesystemencodeerrors`." msgstr "" -#: library/sys.rst:1655 +#: library/sys.rst:1719 msgid "See :pep:`529` for more details." msgstr "" -#: library/sys.rst:1662 +#: library/sys.rst:1726 msgid "" ":term:`File objects ` used by the interpreter for standard " "input, output and errors:" msgstr "" -#: library/sys.rst:1665 +#: library/sys.rst:1729 msgid "" "``stdin`` is used for all interactive input (including calls to :func:" "`input`);" msgstr "" -#: library/sys.rst:1667 +#: library/sys.rst:1731 msgid "" "``stdout`` is used for the output of :func:`print` and :term:`expression` " "statements and for the prompts of :func:`input`;" msgstr "" -#: library/sys.rst:1669 +#: library/sys.rst:1733 msgid "The interpreter's own prompts and its error messages go to ``stderr``." msgstr "" -#: library/sys.rst:1671 +#: library/sys.rst:1735 msgid "" "These streams are regular :term:`text files ` like those returned " "by the :func:`open` function. Their parameters are chosen as follows:" msgstr "" -#: library/sys.rst:1675 +#: library/sys.rst:1739 msgid "" "The encoding and error handling are is initialized from :c:member:`PyConfig." "stdio_encoding` and :c:member:`PyConfig.stdio_errors`." msgstr "" -#: library/sys.rst:1678 +#: library/sys.rst:1742 msgid "" "On Windows, UTF-8 is used for the console device. Non-character devices " "such as disk files and pipes use the system locale encoding (i.e. the ANSI " @@ -2153,14 +2210,14 @@ msgid "" "initially attached to a console." msgstr "" -#: library/sys.rst:1687 +#: library/sys.rst:1751 msgid "" "The special behaviour of the console can be overridden by setting the " "environment variable PYTHONLEGACYWINDOWSSTDIO before starting Python. In " "that case, the console codepages are used as for any other character device." msgstr "" -#: library/sys.rst:1692 +#: library/sys.rst:1756 msgid "" "Under all platforms, you can override the character encoding by setting the :" "envvar:`PYTHONIOENCODING` environment variable before starting Python or by " @@ -2169,7 +2226,7 @@ msgid "" "only applies when :envvar:`PYTHONLEGACYWINDOWSSTDIO` is also set." msgstr "" -#: library/sys.rst:1699 +#: library/sys.rst:1763 msgid "" "When interactive, the ``stdout`` stream is line-buffered. Otherwise, it is " "block-buffered like regular text files. The ``stderr`` stream is line-" @@ -2178,19 +2235,19 @@ msgid "" "`PYTHONUNBUFFERED` environment variable." msgstr "" -#: library/sys.rst:1705 +#: library/sys.rst:1769 msgid "" "Non-interactive ``stderr`` is now line-buffered instead of fully buffered." msgstr "" -#: library/sys.rst:1711 +#: library/sys.rst:1775 msgid "" "To write or read binary data from/to the standard streams, use the " "underlying binary :data:`~io.TextIOBase.buffer` object. For example, to " "write bytes to :data:`stdout`, use ``sys.stdout.buffer.write(b'abc')``." msgstr "" -#: library/sys.rst:1715 +#: library/sys.rst:1779 msgid "" "However, if you are writing a library (and do not control in which context " "its code will be executed), be aware that the standard streams may be " @@ -2198,7 +2255,7 @@ msgid "" "support the :attr:!buffer` attribute." msgstr "" -#: library/sys.rst:1725 +#: library/sys.rst:1789 msgid "" "These objects contain the original values of ``stdin``, ``stderr`` and " "``stdout`` at the start of the program. They are used during finalization, " @@ -2206,7 +2263,7 @@ msgid "" "``sys.std*`` object has been redirected." msgstr "" -#: library/sys.rst:1730 +#: library/sys.rst:1794 msgid "" "It can also be used to restore the actual files to known working file " "objects in case they have been overwritten with a broken object. However, " @@ -2214,7 +2271,7 @@ msgid "" "before replacing it, and restore the saved object." msgstr "" -#: library/sys.rst:1736 +#: library/sys.rst:1800 msgid "" "Under some conditions ``stdin``, ``stdout`` and ``stderr`` as well as the " "original values ``__stdin__``, ``__stdout__`` and ``__stderr__`` can be " @@ -2222,12 +2279,12 @@ msgid "" "to a console and Python apps started with :program:`pythonw`." msgstr "" -#: library/sys.rst:1744 +#: library/sys.rst:1808 msgid "" "A frozenset of strings containing the names of standard library modules." msgstr "" -#: library/sys.rst:1746 +#: library/sys.rst:1810 msgid "" "It is the same on all platforms. Modules which are not available on some " "platforms and modules disabled at Python build are also listed. All module " @@ -2235,7 +2292,7 @@ msgid "" "modules are excluded." msgstr "" -#: library/sys.rst:1751 +#: library/sys.rst:1815 msgid "" "For packages, only the main package is listed: sub-packages and sub-modules " "are not listed. For example, the ``email`` package is listed, but the " @@ -2243,60 +2300,60 @@ msgid "" "listed." msgstr "" -#: library/sys.rst:1756 +#: library/sys.rst:1820 msgid "See also the :data:`sys.builtin_module_names` list." msgstr "" -#: library/sys.rst:1763 +#: library/sys.rst:1827 msgid "" "A :term:`named tuple` holding information about the thread implementation." msgstr "" -#: library/sys.rst:1768 +#: library/sys.rst:1832 msgid "The name of the thread implementation:" msgstr "" -#: library/sys.rst:1770 +#: library/sys.rst:1834 msgid "``\"nt\"``: Windows threads" msgstr "" -#: library/sys.rst:1771 +#: library/sys.rst:1835 msgid "``\"pthread\"``: POSIX threads" msgstr "" -#: library/sys.rst:1772 +#: library/sys.rst:1836 msgid "" "``\"pthread-stubs\"``: stub POSIX threads (on WebAssembly platforms without " "threading support)" msgstr "" -#: library/sys.rst:1774 +#: library/sys.rst:1838 msgid "``\"solaris\"``: Solaris threads" msgstr "" -#: library/sys.rst:1778 +#: library/sys.rst:1842 msgid "The name of the lock implementation:" msgstr "" -#: library/sys.rst:1780 +#: library/sys.rst:1844 msgid "``\"semaphore\"``: a lock uses a semaphore" msgstr "" -#: library/sys.rst:1781 +#: library/sys.rst:1845 msgid "``\"mutex+cond\"``: a lock uses a mutex and a condition variable" msgstr "" -#: library/sys.rst:1782 +#: library/sys.rst:1846 msgid "``None`` if this information is unknown" msgstr "" -#: library/sys.rst:1786 +#: library/sys.rst:1850 msgid "" "The name and version of the thread library. It is a string, or ``None`` if " "this information is unknown." msgstr "" -#: library/sys.rst:1794 +#: library/sys.rst:1858 msgid "" "When this variable is set to an integer value, it determines the maximum " "number of levels of traceback information printed when an unhandled " @@ -2305,79 +2362,79 @@ msgid "" "are printed." msgstr "" -#: library/sys.rst:1802 +#: library/sys.rst:1866 msgid "Handle an unraisable exception." msgstr "" -#: library/sys.rst:1804 +#: library/sys.rst:1868 msgid "" "Called when an exception has occurred but there is no way for Python to " "handle it. For example, when a destructor raises an exception or during " "garbage collection (:func:`gc.collect`)." msgstr "" -#: library/sys.rst:1808 +#: library/sys.rst:1872 msgid "The *unraisable* argument has the following attributes:" msgstr "" -#: library/sys.rst:1810 +#: library/sys.rst:1874 msgid ":attr:`!exc_type`: Exception type." msgstr "" -#: library/sys.rst:1811 +#: library/sys.rst:1875 msgid ":attr:`!exc_value`: Exception value, can be ``None``." msgstr "" -#: library/sys.rst:1812 +#: library/sys.rst:1876 msgid ":attr:`!exc_traceback`: Exception traceback, can be ``None``." msgstr "" -#: library/sys.rst:1813 +#: library/sys.rst:1877 msgid ":attr:`!err_msg`: Error message, can be ``None``." msgstr "" -#: library/sys.rst:1814 +#: library/sys.rst:1878 msgid ":attr:`!object`: Object causing the exception, can be ``None``." msgstr "" -#: library/sys.rst:1816 +#: library/sys.rst:1880 msgid "" "The default hook formats :attr:`!err_msg` and :attr:`!object` as: " "``f'{err_msg}: {object!r}'``; use \"Exception ignored in\" error message if :" "attr:`!err_msg` is ``None``." msgstr "" -#: library/sys.rst:1820 +#: library/sys.rst:1884 msgid "" ":func:`sys.unraisablehook` can be overridden to control how unraisable " "exceptions are handled." msgstr "" -#: library/sys.rst:1825 +#: library/sys.rst:1889 msgid ":func:`excepthook` which handles uncaught exceptions." msgstr "" -#: library/sys.rst:1829 +#: library/sys.rst:1893 msgid "" "Storing :attr:`!exc_value` using a custom hook can create a reference cycle. " "It should be cleared explicitly to break the reference cycle when the " "exception is no longer needed." msgstr "" -#: library/sys.rst:1833 +#: library/sys.rst:1897 msgid "" "Storing :attr:`!object` using a custom hook can resurrect it if it is set to " "an object which is being finalized. Avoid storing :attr:`!object` after the " "custom hook completes to avoid resurrecting objects." msgstr "" -#: library/sys.rst:1837 +#: library/sys.rst:1901 msgid "" "Raises an :ref:`auditing event ` ``sys.unraisablehook`` with " "arguments ``hook``, ``unraisable``." msgstr "" -#: library/sys.rst:1839 +#: library/sys.rst:1903 msgid "" "Raise an auditing event ``sys.unraisablehook`` with arguments *hook*, " "*unraisable* when an exception that cannot be handled occurs. The " @@ -2385,7 +2442,7 @@ msgid "" "hook has been set, *hook* may be ``None``." msgstr "" -#: library/sys.rst:1848 +#: library/sys.rst:1912 msgid "" "A string containing the version number of the Python interpreter plus " "additional information on the build number and compiler used. This string " @@ -2394,13 +2451,13 @@ msgid "" "functions provided by the :mod:`platform` module." msgstr "" -#: library/sys.rst:1857 +#: library/sys.rst:1921 msgid "" "The C API version for this interpreter. Programmers may find this useful " "when debugging version conflicts between Python and extension modules." msgstr "" -#: library/sys.rst:1863 +#: library/sys.rst:1927 msgid "" "A tuple containing the five components of the version number: *major*, " "*minor*, *micro*, *releaselevel*, and *serial*. All values except " @@ -2411,18 +2468,18 @@ msgid "" "version_info.major`` and so on." msgstr "" -#: library/sys.rst:1871 +#: library/sys.rst:1935 msgid "Added named component attributes." msgstr "" -#: library/sys.rst:1876 +#: library/sys.rst:1940 msgid "" "This is an implementation detail of the warnings framework; do not modify " "this value. Refer to the :mod:`warnings` module for more information on the " "warnings framework." msgstr "" -#: library/sys.rst:1883 +#: library/sys.rst:1947 msgid "" "The version number used to form registry keys on Windows platforms. This is " "stored as string resource 1000 in the Python DLL. The value is normally the " @@ -2431,25 +2488,31 @@ msgid "" "has no effect on the registry keys used by Python." msgstr "" -#: library/sys.rst:1894 +#: library/sys.rst:1959 +msgid "" +"Namespace containing functions and constants for register callbacks and " +"controlling monitoring events. See :mod:`sys.monitoring` for details." +msgstr "" + +#: library/sys.rst:1965 msgid "" "A dictionary of the various implementation-specific flags passed through " "the :option:`-X` command-line option. Option names are either mapped to " "their values, if given explicitly, or to :const:`True`. Example:" msgstr "" -#: library/sys.rst:1910 +#: library/sys.rst:1981 msgid "" "This is a CPython-specific way of accessing options passed through :option:`-" "X`. Other implementations may export them through other means, or not at " "all." msgstr "" -#: library/sys.rst:1918 +#: library/sys.rst:1989 msgid "Citations" msgstr "" -#: library/sys.rst:1919 +#: library/sys.rst:1990 msgid "" "ISO/IEC 9899:1999. \"Programming languages -- C.\" A public draft of this " "standard is available at https://www.open-std.org/jtc1/sc22/wg14/www/docs/" @@ -2460,58 +2523,58 @@ msgstr "" msgid "auditing" msgstr "" -#: library/sys.rst:441 +#: library/sys.rst:445 msgid "object" msgstr "" -#: library/sys.rst:441 +#: library/sys.rst:445 msgid "traceback" msgstr "" -#: library/sys.rst:1427 +#: library/sys.rst:1459 msgid "profile function" msgstr "" -#: library/sys.rst:1427 +#: library/sys.rst:1459 msgid "profiler" msgstr "" -#: library/sys.rst:1504 +#: library/sys.rst:1536 msgid "trace function" msgstr "" -#: library/sys.rst:1504 +#: library/sys.rst:1536 msgid "debugger" msgstr "" -#: library/sys.rst:1246 +#: library/sys.rst:1282 msgid "module" msgstr "" -#: library/sys.rst:1246 +#: library/sys.rst:1282 msgid "search" msgstr "" -#: library/sys.rst:1246 +#: library/sys.rst:1282 msgid "path" msgstr "" -#: library/sys.rst:1391 +#: library/sys.rst:1423 msgid "interpreter prompts" msgstr "" -#: library/sys.rst:1391 +#: library/sys.rst:1423 msgid "prompts, interpreter" msgstr "" -#: library/sys.rst:1391 +#: library/sys.rst:1423 msgid ">>>" msgstr "" -#: library/sys.rst:1391 +#: library/sys.rst:1423 msgid "interpreter prompt" msgstr "" -#: library/sys.rst:1391 +#: library/sys.rst:1423 msgid "..." msgstr "" diff --git a/library/sysconfig.po b/library/sysconfig.po index 2f37938d5..ef74c5130 100644 --- a/library/sysconfig.po +++ b/library/sysconfig.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -40,7 +40,7 @@ msgstr "" msgid "" "A Python distribution contains a :file:`Makefile` and a :file:`pyconfig.h` " "header file that are necessary to build both the Python binary itself and " -"third-party C extensions compiled using :mod:`distutils`." +"third-party C extensions compiled using ``setuptools``." msgstr "" #: library/sysconfig.rst:30 diff --git a/library/syslog.po b/library/syslog.po index 28054b6fd..5d6aba51a 100644 --- a/library/syslog.po +++ b/library/syslog.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -78,14 +78,23 @@ msgid "" "syslog implementation to call ``openlog()``." msgstr "" -#: library/syslog.rst:46 +#: library/syslog.rst:43 +msgid "" +"This function is restricted in subinterpreters. (Only code that runs in " +"multiple interpreters is affected and the restriction is not relevant for " +"most users.) :func:`openlog` must be called in the main interpreter before :" +"func:`syslog` may be used in a subinterpreter. Otherwise it will raise :exc:" +"`RuntimeError`." +msgstr "" + +#: library/syslog.rst:53 msgid "" "Logging options of subsequent :func:`syslog` calls can be set by calling :" "func:`openlog`. :func:`syslog` will call :func:`openlog` with no arguments " "if the log is not currently open." msgstr "" -#: library/syslog.rst:50 +#: library/syslog.rst:57 msgid "" "The optional *ident* keyword argument is a string which is prepended to " "every message, and defaults to ``sys.argv[0]`` with leading path components " @@ -95,24 +104,32 @@ msgid "" "for messages which do not have a facility explicitly encoded." msgstr "" -#: library/syslog.rst:68 +#: library/syslog.rst:75 msgid "" "Raises an :ref:`auditing event ` ``syslog.openlog`` with arguments " "``ident``, ``logoption``, ``facility``." msgstr "" -#: library/syslog.rst:59 +#: library/syslog.rst:66 msgid "" "In previous versions, keyword arguments were not allowed, and *ident* was " "required." msgstr "" -#: library/syslog.rst:66 +#: library/syslog.rst:89 +msgid "" +"This function is restricted in subinterpreters. (Only code that runs in " +"multiple interpreters is affected and the restriction is not relevant for " +"most users.) This may only be called in the main interpreter. It will raise :" +"exc:`RuntimeError` if called in a subinterpreter." +msgstr "" + +#: library/syslog.rst:80 msgid "" "Reset the syslog module values and call the system library ``closelog()``." msgstr "" -#: library/syslog.rst:68 +#: library/syslog.rst:82 msgid "" "This causes the module to behave as it does when initially imported. For " "example, :func:`openlog` will be called on the first :func:`syslog` call " @@ -120,13 +137,13 @@ msgid "" "`openlog` parameters are reset to defaults." msgstr "" -#: library/syslog.rst:84 +#: library/syslog.rst:98 msgid "" "Raises an :ref:`auditing event ` ``syslog.closelog`` with no " "arguments." msgstr "" -#: library/syslog.rst:78 +#: library/syslog.rst:99 msgid "" "Set the priority mask to *maskpri* and return the previous mask value. " "Calls to :func:`syslog` with a priority level not set in *maskpri* are " @@ -136,32 +153,32 @@ msgid "" "and including *pri*." msgstr "" -#: library/syslog.rst:96 +#: library/syslog.rst:117 msgid "" "Raises an :ref:`auditing event ` ``syslog.setlogmask`` with " "argument ``maskpri``." msgstr "" -#: library/syslog.rst:87 +#: library/syslog.rst:108 msgid "The module defines the following constants:" msgstr "" -#: library/syslog.rst:92 +#: library/syslog.rst:113 msgid "Priority levels (high to low):" msgstr "" -#: library/syslog.rst:90 +#: library/syslog.rst:111 msgid "" ":const:`LOG_EMERG`, :const:`LOG_ALERT`, :const:`LOG_CRIT`, :const:" "`LOG_ERR`, :const:`LOG_WARNING`, :const:`LOG_NOTICE`, :const:`LOG_INFO`, :" "const:`LOG_DEBUG`." msgstr "" -#: library/syslog.rst:99 +#: library/syslog.rst:120 msgid "Facilities:" msgstr "" -#: library/syslog.rst:95 +#: library/syslog.rst:116 msgid "" ":const:`LOG_KERN`, :const:`LOG_USER`, :const:`LOG_MAIL`, :const:" "`LOG_DAEMON`, :const:`LOG_AUTH`, :const:`LOG_LPR`, :const:`LOG_NEWS`, :const:" @@ -169,30 +186,30 @@ msgid "" "const:`LOG_LOCAL7`, and, if defined in ````, :const:`LOG_AUTHPRIV`." msgstr "" -#: library/syslog.rst:105 +#: library/syslog.rst:126 msgid "Log options:" msgstr "" -#: library/syslog.rst:102 +#: library/syslog.rst:123 msgid "" ":const:`LOG_PID`, :const:`LOG_CONS`, :const:`LOG_NDELAY`, and, if defined in " "````, :const:`LOG_ODELAY`, :const:`LOG_NOWAIT`, and :const:" "`LOG_PERROR`." msgstr "" -#: library/syslog.rst:108 +#: library/syslog.rst:129 msgid "Examples" msgstr "" -#: library/syslog.rst:111 +#: library/syslog.rst:132 msgid "Simple example" msgstr "" -#: library/syslog.rst:113 +#: library/syslog.rst:134 msgid "A simple set of examples::" msgstr "" -#: library/syslog.rst:121 +#: library/syslog.rst:142 msgid "" "An example of setting some log options, these would include the process ID " "in logged messages, and write the messages to the destination facility used " diff --git a/library/tarfile.po b/library/tarfile.po index 1cbee7508..01f071eae 100644 --- a/library/tarfile.po +++ b/library/tarfile.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -68,150 +68,159 @@ msgstr "" msgid "Added support for :mod:`lzma` compression." msgstr "" -#: library/tarfile.rst:42 +#: library/tarfile.rst:39 +msgid "" +"Archives are extracted using a :ref:`filter `, " +"which makes it possible to either limit surprising/dangerous features, or to " +"acknowledge that they are expected and the archive is fully trusted. By " +"default, archives are fully trusted, but this default is deprecated and " +"slated to change in Python 3.14." +msgstr "" + +#: library/tarfile.rst:49 msgid "" "Return a :class:`TarFile` object for the pathname *name*. For detailed " "information on :class:`TarFile` objects and the keyword arguments that are " "allowed, see :ref:`tarfile-objects`." msgstr "" -#: library/tarfile.rst:46 +#: library/tarfile.rst:53 msgid "" "*mode* has to be a string of the form ``'filemode[:compression]'``, it " "defaults to ``'r'``. Here is a full list of mode combinations:" msgstr "" -#: library/tarfile.rst:50 +#: library/tarfile.rst:57 msgid "mode" msgstr "" -#: library/tarfile.rst:50 +#: library/tarfile.rst:57 msgid "action" msgstr "" -#: library/tarfile.rst:52 +#: library/tarfile.rst:59 msgid "``'r' or 'r:*'``" msgstr "" -#: library/tarfile.rst:52 +#: library/tarfile.rst:59 msgid "Open for reading with transparent compression (recommended)." msgstr "" -#: library/tarfile.rst:55 +#: library/tarfile.rst:62 msgid "``'r:'``" msgstr "" -#: library/tarfile.rst:55 +#: library/tarfile.rst:62 msgid "Open for reading exclusively without compression." msgstr "" -#: library/tarfile.rst:58 +#: library/tarfile.rst:65 msgid "``'r:gz'``" msgstr "" -#: library/tarfile.rst:58 +#: library/tarfile.rst:65 msgid "Open for reading with gzip compression." msgstr "" -#: library/tarfile.rst:60 +#: library/tarfile.rst:67 msgid "``'r:bz2'``" msgstr "" -#: library/tarfile.rst:60 +#: library/tarfile.rst:67 msgid "Open for reading with bzip2 compression." msgstr "" -#: library/tarfile.rst:62 +#: library/tarfile.rst:69 msgid "``'r:xz'``" msgstr "" -#: library/tarfile.rst:62 +#: library/tarfile.rst:69 msgid "Open for reading with lzma compression." msgstr "" -#: library/tarfile.rst:64 +#: library/tarfile.rst:71 msgid "``'x'`` or ``'x:'``" msgstr "" -#: library/tarfile.rst:64 +#: library/tarfile.rst:71 msgid "" "Create a tarfile exclusively without compression. Raise a :exc:" "`FileExistsError` exception if it already exists." msgstr "" -#: library/tarfile.rst:69 +#: library/tarfile.rst:76 msgid "``'x:gz'``" msgstr "" -#: library/tarfile.rst:69 +#: library/tarfile.rst:76 msgid "" "Create a tarfile with gzip compression. Raise a :exc:`FileExistsError` " "exception if it already exists." msgstr "" -#: library/tarfile.rst:73 +#: library/tarfile.rst:80 msgid "``'x:bz2'``" msgstr "" -#: library/tarfile.rst:73 +#: library/tarfile.rst:80 msgid "" "Create a tarfile with bzip2 compression. Raise a :exc:`FileExistsError` " "exception if it already exists." msgstr "" -#: library/tarfile.rst:77 +#: library/tarfile.rst:84 msgid "``'x:xz'``" msgstr "" -#: library/tarfile.rst:77 +#: library/tarfile.rst:84 msgid "" "Create a tarfile with lzma compression. Raise a :exc:`FileExistsError` " "exception if it already exists." msgstr "" -#: library/tarfile.rst:81 +#: library/tarfile.rst:88 msgid "``'a' or 'a:'``" msgstr "" -#: library/tarfile.rst:81 +#: library/tarfile.rst:88 msgid "" "Open for appending with no compression. The file is created if it does not " "exist." msgstr "" -#: library/tarfile.rst:84 +#: library/tarfile.rst:91 msgid "``'w' or 'w:'``" msgstr "" -#: library/tarfile.rst:84 +#: library/tarfile.rst:91 msgid "Open for uncompressed writing." msgstr "" -#: library/tarfile.rst:86 +#: library/tarfile.rst:93 msgid "``'w:gz'``" msgstr "" -#: library/tarfile.rst:86 +#: library/tarfile.rst:93 msgid "Open for gzip compressed writing." msgstr "" -#: library/tarfile.rst:88 +#: library/tarfile.rst:95 msgid "``'w:bz2'``" msgstr "" -#: library/tarfile.rst:88 +#: library/tarfile.rst:95 msgid "Open for bzip2 compressed writing." msgstr "" -#: library/tarfile.rst:90 +#: library/tarfile.rst:97 msgid "``'w:xz'``" msgstr "" -#: library/tarfile.rst:90 +#: library/tarfile.rst:97 msgid "Open for lzma compressed writing." msgstr "" -#: library/tarfile.rst:93 +#: library/tarfile.rst:100 msgid "" "Note that ``'a:gz'``, ``'a:bz2'`` or ``'a:xz'`` is not possible. If *mode* " "is not suitable to open a certain (compressed) file for reading, :exc:" @@ -219,26 +228,26 @@ msgid "" "method is not supported, :exc:`CompressionError` is raised." msgstr "" -#: library/tarfile.rst:98 +#: library/tarfile.rst:105 msgid "" "If *fileobj* is specified, it is used as an alternative to a :term:`file " "object` opened in binary mode for *name*. It is supposed to be at position 0." msgstr "" -#: library/tarfile.rst:101 +#: library/tarfile.rst:108 msgid "" -"For modes ``'w:gz'``, ``'r:gz'``, ``'w:bz2'``, ``'r:bz2'``, ``'x:gz'``, ``'x:" +"For modes ``'w:gz'``, ``'x:gz'``, ``'w|gz'``, ``'w:bz2'``, ``'x:bz2'``, ``'w|" "bz2'``, :func:`tarfile.open` accepts the keyword argument *compresslevel* " "(default ``9``) to specify the compression level of the file." msgstr "" -#: library/tarfile.rst:105 +#: library/tarfile.rst:112 msgid "" "For modes ``'w:xz'`` and ``'x:xz'``, :func:`tarfile.open` accepts the " "keyword argument *preset* to specify the compression level of the file." msgstr "" -#: library/tarfile.rst:108 +#: library/tarfile.rst:115 msgid "" "For special purposes, there is a second format for *mode*: ``'filemode|" "[compression]'``. :func:`tarfile.open` will return a :class:`TarFile` " @@ -252,254 +261,258 @@ msgid "" "possible modes:" msgstr "" -#: library/tarfile.rst:120 +#: library/tarfile.rst:127 msgid "Mode" msgstr "" -#: library/tarfile.rst:120 +#: library/tarfile.rst:127 msgid "Action" msgstr "" -#: library/tarfile.rst:122 +#: library/tarfile.rst:129 msgid "``'r|*'``" msgstr "" -#: library/tarfile.rst:122 +#: library/tarfile.rst:129 msgid "Open a *stream* of tar blocks for reading with transparent compression." msgstr "" -#: library/tarfile.rst:125 +#: library/tarfile.rst:132 msgid "``'r|'``" msgstr "" -#: library/tarfile.rst:125 +#: library/tarfile.rst:132 msgid "Open a *stream* of uncompressed tar blocks for reading." msgstr "" -#: library/tarfile.rst:128 +#: library/tarfile.rst:135 msgid "``'r|gz'``" msgstr "" -#: library/tarfile.rst:128 +#: library/tarfile.rst:135 msgid "Open a gzip compressed *stream* for reading." msgstr "" -#: library/tarfile.rst:131 +#: library/tarfile.rst:138 msgid "``'r|bz2'``" msgstr "" -#: library/tarfile.rst:131 +#: library/tarfile.rst:138 msgid "Open a bzip2 compressed *stream* for reading." msgstr "" -#: library/tarfile.rst:134 +#: library/tarfile.rst:141 msgid "``'r|xz'``" msgstr "" -#: library/tarfile.rst:134 +#: library/tarfile.rst:141 msgid "Open an lzma compressed *stream* for reading." msgstr "" -#: library/tarfile.rst:137 +#: library/tarfile.rst:144 msgid "``'w|'``" msgstr "" -#: library/tarfile.rst:137 +#: library/tarfile.rst:144 msgid "Open an uncompressed *stream* for writing." msgstr "" -#: library/tarfile.rst:139 +#: library/tarfile.rst:146 msgid "``'w|gz'``" msgstr "" -#: library/tarfile.rst:139 +#: library/tarfile.rst:146 msgid "Open a gzip compressed *stream* for writing." msgstr "" -#: library/tarfile.rst:142 +#: library/tarfile.rst:149 msgid "``'w|bz2'``" msgstr "" -#: library/tarfile.rst:142 +#: library/tarfile.rst:149 msgid "Open a bzip2 compressed *stream* for writing." msgstr "" -#: library/tarfile.rst:145 +#: library/tarfile.rst:152 msgid "``'w|xz'``" msgstr "" -#: library/tarfile.rst:145 +#: library/tarfile.rst:152 msgid "Open an lzma compressed *stream* for writing." msgstr "" -#: library/tarfile.rst:365 +#: library/tarfile.rst:375 msgid "The ``'x'`` (exclusive creation) mode was added." msgstr "" -#: library/tarfile.rst:368 library/tarfile.rst:605 +#: library/tarfile.rst:378 library/tarfile.rst:613 msgid "The *name* parameter accepts a :term:`path-like object`." msgstr "" -#: library/tarfile.rst:159 +#: library/tarfile.rst:162 +msgid "The *compresslevel* keyword argument also works for streams." +msgstr "" + +#: library/tarfile.rst:169 msgid "" "Class for reading and writing tar archives. Do not use this class directly: " "use :func:`tarfile.open` instead. See :ref:`tarfile-objects`." msgstr "" -#: library/tarfile.rst:165 +#: library/tarfile.rst:175 msgid "" "Return :const:`True` if *name* is a tar archive file, that the :mod:" "`tarfile` module can read. *name* may be a :class:`str`, file, or file-like " "object." msgstr "" -#: library/tarfile.rst:168 +#: library/tarfile.rst:178 msgid "Support for file and file-like objects." msgstr "" -#: library/tarfile.rst:172 +#: library/tarfile.rst:182 msgid "The :mod:`tarfile` module defines the following exceptions:" msgstr "" -#: library/tarfile.rst:177 +#: library/tarfile.rst:187 msgid "Base class for all :mod:`tarfile` exceptions." msgstr "" -#: library/tarfile.rst:182 +#: library/tarfile.rst:192 msgid "" "Is raised when a tar archive is opened, that either cannot be handled by " "the :mod:`tarfile` module or is somehow invalid." msgstr "" -#: library/tarfile.rst:188 +#: library/tarfile.rst:198 msgid "" "Is raised when a compression method is not supported or when the data cannot " "be decoded properly." msgstr "" -#: library/tarfile.rst:194 +#: library/tarfile.rst:204 msgid "" "Is raised for the limitations that are typical for stream-like :class:" "`TarFile` objects." msgstr "" -#: library/tarfile.rst:200 +#: library/tarfile.rst:210 msgid "" "Is raised for *non-fatal* errors when using :meth:`TarFile.extract`, but " "only if :attr:`TarFile.errorlevel`\\ ``== 2``." msgstr "" -#: library/tarfile.rst:206 +#: library/tarfile.rst:216 msgid "Is raised by :meth:`TarInfo.frombuf` if the buffer it gets is invalid." msgstr "" -#: library/tarfile.rst:211 +#: library/tarfile.rst:221 msgid "" "Base class for members :ref:`refused ` by filters." msgstr "" -#: library/tarfile.rst:216 +#: library/tarfile.rst:226 msgid "" "Information about the member that the filter refused to extract, as :ref:" "`TarInfo `." msgstr "" -#: library/tarfile.rst:221 +#: library/tarfile.rst:231 msgid "Raised to refuse extracting a member with an absolute path." msgstr "" -#: library/tarfile.rst:225 +#: library/tarfile.rst:235 msgid "Raised to refuse extracting a member outside the destination directory." msgstr "" -#: library/tarfile.rst:229 +#: library/tarfile.rst:239 msgid "Raised to refuse extracting a special file (e.g. a device or pipe)." msgstr "" -#: library/tarfile.rst:233 +#: library/tarfile.rst:243 msgid "Raised to refuse extracting a symbolic link with an absolute path." msgstr "" -#: library/tarfile.rst:237 +#: library/tarfile.rst:247 msgid "" "Raised to refuse extracting a symbolic link pointing outside the destination " "directory." msgstr "" -#: library/tarfile.rst:241 +#: library/tarfile.rst:251 msgid "The following constants are available at the module level:" msgstr "" -#: library/tarfile.rst:245 +#: library/tarfile.rst:255 msgid "" "The default character encoding: ``'utf-8'`` on Windows, the value returned " "by :func:`sys.getfilesystemencoding` otherwise." msgstr "" -#: library/tarfile.rst:249 +#: library/tarfile.rst:259 msgid "" "Each of the following constants defines a tar archive format that the :mod:" "`tarfile` module is able to create. See section :ref:`tar-formats` for " "details." msgstr "" -#: library/tarfile.rst:256 +#: library/tarfile.rst:266 msgid "POSIX.1-1988 (ustar) format." msgstr "" -#: library/tarfile.rst:261 +#: library/tarfile.rst:271 msgid "GNU tar format." msgstr "" -#: library/tarfile.rst:266 +#: library/tarfile.rst:276 msgid "POSIX.1-2001 (pax) format." msgstr "" -#: library/tarfile.rst:271 +#: library/tarfile.rst:281 msgid "" "The default format for creating archives. This is currently :const:" "`PAX_FORMAT`." msgstr "" -#: library/tarfile.rst:273 +#: library/tarfile.rst:283 msgid "" "The default format for new archives was changed to :const:`PAX_FORMAT` from :" "const:`GNU_FORMAT`." msgstr "" -#: library/tarfile.rst:281 +#: library/tarfile.rst:291 msgid "Module :mod:`zipfile`" msgstr "" -#: library/tarfile.rst:281 +#: library/tarfile.rst:291 msgid "Documentation of the :mod:`zipfile` standard module." msgstr "" -#: library/tarfile.rst:285 +#: library/tarfile.rst:295 msgid ":ref:`archiving-operations`" msgstr "" -#: library/tarfile.rst:284 +#: library/tarfile.rst:294 msgid "" "Documentation of the higher-level archiving facilities provided by the " "standard :mod:`shutil` module." msgstr "" -#: library/tarfile.rst:287 +#: library/tarfile.rst:297 msgid "" "`GNU tar manual, Basic Tar Format `_" msgstr "" -#: library/tarfile.rst:288 +#: library/tarfile.rst:298 msgid "Documentation for tar archive files, including GNU tar extensions." msgstr "" -#: library/tarfile.rst:294 +#: library/tarfile.rst:304 msgid "TarFile Objects" msgstr "" -#: library/tarfile.rst:296 +#: library/tarfile.rst:306 msgid "" "The :class:`TarFile` object provides an interface to a tar archive. A tar " "archive is a sequence of blocks. An archive member (a stored file) is made " @@ -508,7 +521,7 @@ msgid "" "class:`TarInfo` object, see :ref:`tarinfo-objects` for details." msgstr "" -#: library/tarfile.rst:302 +#: library/tarfile.rst:312 msgid "" "A :class:`TarFile` object can be used as a context manager in a :keyword:" "`with` statement. It will automatically be closed when the block is " @@ -517,24 +530,24 @@ msgid "" "be closed. See the :ref:`tar-examples` section for a use case." msgstr "" -#: library/tarfile.rst:308 +#: library/tarfile.rst:318 msgid "Added support for the context management protocol." msgstr "" -#: library/tarfile.rst:313 +#: library/tarfile.rst:323 msgid "" "All following arguments are optional and can be accessed as instance " "attributes as well." msgstr "" -#: library/tarfile.rst:316 +#: library/tarfile.rst:326 msgid "" "*name* is the pathname of the archive. *name* may be a :term:`path-like " "object`. It can be omitted if *fileobj* is given. In this case, the file " "object's :attr:`name` attribute is used if it exists." msgstr "" -#: library/tarfile.rst:320 +#: library/tarfile.rst:330 msgid "" "*mode* is either ``'r'`` to read from an existing archive, ``'a'`` to append " "data to an existing file, ``'w'`` to create a new file overwriting an " @@ -542,18 +555,18 @@ msgid "" "exist." msgstr "" -#: library/tarfile.rst:324 +#: library/tarfile.rst:334 msgid "" "If *fileobj* is given, it is used for reading or writing data. If it can be " "determined, *mode* is overridden by *fileobj*'s mode. *fileobj* will be used " "from position 0." msgstr "" -#: library/tarfile.rst:330 +#: library/tarfile.rst:340 msgid "*fileobj* is not closed, when :class:`TarFile` is closed." msgstr "" -#: library/tarfile.rst:332 +#: library/tarfile.rst:342 msgid "" "*format* controls the archive format for writing. It must be one of the " "constants :const:`USTAR_FORMAT`, :const:`GNU_FORMAT` or :const:`PAX_FORMAT` " @@ -561,20 +574,20 @@ msgid "" "detected, even if different formats are present in a single archive." msgstr "" -#: library/tarfile.rst:337 +#: library/tarfile.rst:347 msgid "" "The *tarinfo* argument can be used to replace the default :class:`TarInfo` " "class with a different one." msgstr "" -#: library/tarfile.rst:340 +#: library/tarfile.rst:350 msgid "" "If *dereference* is :const:`False`, add symbolic and hard links to the " "archive. If it is :const:`True`, add the content of the target files to the " "archive. This has no effect on systems that do not support symbolic links." msgstr "" -#: library/tarfile.rst:344 +#: library/tarfile.rst:354 msgid "" "If *ignore_zeros* is :const:`False`, treat an empty block as the end of the " "archive. If it is :const:`True`, skip empty (and invalid) blocks and try to " @@ -582,19 +595,19 @@ msgid "" "concatenated or damaged archives." msgstr "" -#: library/tarfile.rst:348 +#: library/tarfile.rst:358 msgid "" "*debug* can be set from ``0`` (no debug messages) up to ``3`` (all debug " "messages). The messages are written to ``sys.stderr``." msgstr "" -#: library/tarfile.rst:351 +#: library/tarfile.rst:361 msgid "" "*errorlevel* controls how extraction errors are handled, see :attr:`the " "corresponding attribute <~TarFile.errorlevel>`." msgstr "" -#: library/tarfile.rst:354 +#: library/tarfile.rst:364 msgid "" "The *encoding* and *errors* arguments define the character encoding to be " "used for reading or writing the archive and how conversion errors are going " @@ -602,47 +615,47 @@ msgid "" "ref:`tar-unicode` for in-depth information." msgstr "" -#: library/tarfile.rst:359 +#: library/tarfile.rst:369 msgid "" "The *pax_headers* argument is an optional dictionary of strings which will " "be added as a pax global header if *format* is :const:`PAX_FORMAT`." msgstr "" -#: library/tarfile.rst:678 +#: library/tarfile.rst:681 msgid "Use ``'surrogateescape'`` as the default for the *errors* argument." msgstr "" -#: library/tarfile.rst:374 +#: library/tarfile.rst:384 msgid "" "Alternative constructor. The :func:`tarfile.open` function is actually a " "shortcut to this classmethod." msgstr "" -#: library/tarfile.rst:380 +#: library/tarfile.rst:390 msgid "" "Return a :class:`TarInfo` object for member *name*. If *name* can not be " "found in the archive, :exc:`KeyError` is raised." msgstr "" -#: library/tarfile.rst:385 +#: library/tarfile.rst:395 msgid "" "If a member occurs more than once in the archive, its last occurrence is " "assumed to be the most up-to-date version." msgstr "" -#: library/tarfile.rst:391 +#: library/tarfile.rst:401 msgid "" "Return the members of the archive as a list of :class:`TarInfo` objects. The " "list has the same order as the members in the archive." msgstr "" -#: library/tarfile.rst:397 +#: library/tarfile.rst:407 msgid "" "Return the members as a list of their names. It has the same order as the " "list returned by :meth:`getmembers`." msgstr "" -#: library/tarfile.rst:403 +#: library/tarfile.rst:413 msgid "" "Print a table of contents to ``sys.stdout``. If *verbose* is :const:`False`, " "only the names of the members are printed. If it is :const:`True`, output " @@ -650,18 +663,18 @@ msgid "" "given, it must be a subset of the list returned by :meth:`getmembers`." msgstr "" -#: library/tarfile.rst:408 +#: library/tarfile.rst:418 msgid "Added the *members* parameter." msgstr "" -#: library/tarfile.rst:414 +#: library/tarfile.rst:424 msgid "" "Return the next member of the archive as a :class:`TarInfo` object, when :" "class:`TarFile` is opened for reading. Return :const:`None` if there is no " "more available." msgstr "" -#: library/tarfile.rst:421 +#: library/tarfile.rst:431 msgid "" "Extract all members from the archive to the current working directory or " "directory *path*. If optional *members* is given, it must be a subset of the " @@ -673,22 +686,22 @@ msgid "" "fail." msgstr "" -#: library/tarfile.rst:429 +#: library/tarfile.rst:439 msgid "" "If *numeric_owner* is :const:`True`, the uid and gid numbers from the " "tarfile are used to set the owner/group for the extracted files. Otherwise, " "the named values from the tarfile are used." msgstr "" -#: library/tarfile.rst:433 +#: library/tarfile.rst:443 msgid "" -"The *filter* argument, which was added in Python 3.11.4, specifies how " -"``members`` are modified or rejected before extraction. See :ref:`tarfile-" -"extraction-filter` for details. It is recommended to set this explicitly " -"depending on which *tar* features you need to support." +"The *filter* argument specifies how ``members`` are modified or rejected " +"before extraction. See :ref:`tarfile-extraction-filter` for details. It is " +"recommended to set this explicitly depending on which *tar* features you " +"need to support." msgstr "" -#: library/tarfile.rst:441 +#: library/tarfile.rst:451 msgid "" "Never extract archives from untrusted sources without prior inspection. It " "is possible that files are created outside of *path*, e.g. members that have " @@ -696,25 +709,25 @@ msgid "" "\"``." msgstr "" -#: library/tarfile.rst:479 +#: library/tarfile.rst:489 msgid "" "Set ``filter='data'`` to prevent the most dangerous security issues, and " "read the :ref:`tarfile-extraction-filter` section for details." msgstr "" -#: library/tarfile.rst:485 +#: library/tarfile.rst:495 msgid "Added the *numeric_owner* parameter." msgstr "" -#: library/tarfile.rst:488 +#: library/tarfile.rst:498 msgid "The *path* parameter accepts a :term:`path-like object`." msgstr "" -#: library/tarfile.rst:491 library/tarfile.rst:571 +#: library/tarfile.rst:501 library/tarfile.rst:579 msgid "Added the *filter* parameter." msgstr "" -#: library/tarfile.rst:461 +#: library/tarfile.rst:471 msgid "" "Extract a member from the archive to the current working directory, using " "its full name. Its file information is extracted as accurately as possible. " @@ -723,27 +736,27 @@ msgid "" "File attributes (owner, mtime, mode) are set unless *set_attrs* is false." msgstr "" -#: library/tarfile.rst:467 +#: library/tarfile.rst:477 msgid "" "The *numeric_owner* and *filter* arguments are the same as for :meth:" "`extractall`." msgstr "" -#: library/tarfile.rst:472 +#: library/tarfile.rst:482 msgid "" "The :meth:`extract` method does not take care of several extraction issues. " "In most cases you should consider using the :meth:`extractall` method." msgstr "" -#: library/tarfile.rst:477 +#: library/tarfile.rst:487 msgid "See the warning for :meth:`extractall`." msgstr "" -#: library/tarfile.rst:482 +#: library/tarfile.rst:492 msgid "Added the *set_attrs* parameter." msgstr "" -#: library/tarfile.rst:497 +#: library/tarfile.rst:507 msgid "" "Extract a member from the archive as a file object. *member* may be a " "filename or a :class:`TarInfo` object. If *member* is a regular file or a " @@ -752,11 +765,11 @@ msgid "" "the archive, :exc:`KeyError` is raised." msgstr "" -#: library/tarfile.rst:503 +#: library/tarfile.rst:513 msgid "Return an :class:`io.BufferedReader` object." msgstr "" -#: library/tarfile.rst:509 +#: library/tarfile.rst:519 msgid "" "If *errorlevel* is ``0``, errors are ignored when using :meth:`TarFile." "extract` and :meth:`TarFile.extractall`. Nevertheless, they appear as error " @@ -766,59 +779,53 @@ msgid "" "exc:`TarError` exceptions as well." msgstr "" -#: library/tarfile.rst:517 +#: library/tarfile.rst:527 msgid "" "Some exceptions, e.g. ones caused by wrong argument types or data " "corruption, are always raised." msgstr "" -#: library/tarfile.rst:520 +#: library/tarfile.rst:530 msgid "" "Custom :ref:`extraction filters ` should raise :" "exc:`FilterError` for *fatal* errors and :exc:`ExtractError` for *non-fatal* " "ones." msgstr "" -#: library/tarfile.rst:524 +#: library/tarfile.rst:534 msgid "" "Note that when an exception is raised, the archive may be partially " "extracted. It is the user’s responsibility to clean up." msgstr "" -#: library/tarfile.rst:531 +#: library/tarfile.rst:541 msgid "" "The :ref:`extraction filter ` used as a default " "for the *filter* argument of :meth:`~TarFile.extract` and :meth:`~TarFile." "extractall`." msgstr "" -#: library/tarfile.rst:535 +#: library/tarfile.rst:545 msgid "" "The attribute may be ``None`` or a callable. String names are not allowed " "for this attribute, unlike the *filter* argument to :meth:`~TarFile.extract`." msgstr "" -#: library/tarfile.rst:539 +#: library/tarfile.rst:549 msgid "" "If ``extraction_filter`` is ``None`` (the default), calling an extraction " -"method without a *filter* argument will use the :func:`fully_trusted " -"` filter for compatibility with previous Python " -"versions." -msgstr "" - -#: library/tarfile.rst:544 -msgid "" -"In Python 3.12+, leaving ``extraction_filter=None`` will emit a " -"``DeprecationWarning``." +"method without a *filter* argument will raise a ``DeprecationWarning``, and " +"fall back to the :func:`fully_trusted ` filter, whose " +"dangerous behavior matches previous versions of Python." msgstr "" -#: library/tarfile.rst:547 +#: library/tarfile.rst:555 msgid "" "In Python 3.14+, leaving ``extraction_filter=None`` will cause extraction " "methods to use the :func:`data ` filter by default." msgstr "" -#: library/tarfile.rst:550 +#: library/tarfile.rst:558 msgid "" "The attribute may be set on instances or overridden in subclasses. It also " "is possible to set it on the ``TarFile`` class itself to set a global " @@ -829,7 +836,7 @@ msgid "" "argument." msgstr "" -#: library/tarfile.rst:560 +#: library/tarfile.rst:568 msgid "" "Add the file *name* to the archive. *name* may be any type of file " "(directory, fifo, symbolic link, etc.). If given, *arcname* specifies an " @@ -842,11 +849,11 @@ msgid "" "ref:`tar-examples` for an example." msgstr "" -#: library/tarfile.rst:574 +#: library/tarfile.rst:582 msgid "Recursion adds entries in sorted order." msgstr "" -#: library/tarfile.rst:580 +#: library/tarfile.rst:588 msgid "" "Add the :class:`TarInfo` object *tarinfo* to the archive. If *fileobj* is " "given, it should be a :term:`binary file`, and ``tarinfo.size`` bytes are " @@ -854,7 +861,7 @@ msgid "" "objects directly, or by using :meth:`gettarinfo`." msgstr "" -#: library/tarfile.rst:588 +#: library/tarfile.rst:596 msgid "" "Create a :class:`TarInfo` object from the result of :func:`os.stat` or " "equivalent on an existing file. The file is either named by *name*, or " @@ -865,7 +872,7 @@ msgid "" "The name should be a text string." msgstr "" -#: library/tarfile.rst:597 +#: library/tarfile.rst:605 msgid "" "You can modify some of the :class:`TarInfo`’s attributes before you add it " "using :meth:`addfile`. If the file object is not an ordinary file object " @@ -875,21 +882,21 @@ msgid "" "case *arcname* could be a dummy string." msgstr "" -#: library/tarfile.rst:611 +#: library/tarfile.rst:619 msgid "" "Close the :class:`TarFile`. In write mode, two finishing zero blocks are " "appended to the archive." msgstr "" -#: library/tarfile.rst:617 +#: library/tarfile.rst:625 msgid "A dictionary containing key-value pairs of pax global headers." msgstr "" -#: library/tarfile.rst:624 +#: library/tarfile.rst:632 msgid "TarInfo Objects" msgstr "" -#: library/tarfile.rst:626 +#: library/tarfile.rst:634 msgid "" "A :class:`TarInfo` object represents one member in a :class:`TarFile`. Aside " "from storing all required attributes of a file (like file type, size, time, " @@ -897,14 +904,14 @@ msgid "" "type. It does *not* contain the file's data itself." msgstr "" -#: library/tarfile.rst:631 +#: library/tarfile.rst:639 msgid "" ":class:`TarInfo` objects are returned by :class:`TarFile`'s methods :meth:" "`~TarFile.getmember`, :meth:`~TarFile.getmembers` and :meth:`~TarFile." "gettarinfo`." msgstr "" -#: library/tarfile.rst:635 +#: library/tarfile.rst:643 msgid "" "Modifying the objects returned by :meth:`~!TarFile.getmember` or :meth:`~!" "TarFile.getmembers` will affect all subsequent operations on the archive. " @@ -913,84 +920,80 @@ msgid "" "step." msgstr "" -#: library/tarfile.rst:641 +#: library/tarfile.rst:649 msgid "" "Several attributes can be set to ``None`` to indicate that a piece of " "metadata is unused or unknown. Different :class:`TarInfo` methods handle " "``None`` differently:" msgstr "" -#: library/tarfile.rst:645 +#: library/tarfile.rst:653 msgid "" "The :meth:`~TarFile.extract` or :meth:`~TarFile.extractall` methods will " "ignore the corresponding metadata, leaving it set to a default." msgstr "" -#: library/tarfile.rst:647 +#: library/tarfile.rst:655 msgid ":meth:`~TarFile.addfile` will fail." msgstr "" -#: library/tarfile.rst:648 +#: library/tarfile.rst:656 msgid ":meth:`~TarFile.list` will print a placeholder string." msgstr "" -#: library/tarfile.rst:651 -msgid "Added :meth:`~TarInfo.replace` and handling of ``None``." -msgstr "" - -#: library/tarfile.rst:657 +#: library/tarfile.rst:660 msgid "Create a :class:`TarInfo` object." msgstr "" -#: library/tarfile.rst:662 +#: library/tarfile.rst:665 msgid "Create and return a :class:`TarInfo` object from string buffer *buf*." msgstr "" -#: library/tarfile.rst:664 +#: library/tarfile.rst:667 msgid "Raises :exc:`HeaderError` if the buffer is invalid." msgstr "" -#: library/tarfile.rst:669 +#: library/tarfile.rst:672 msgid "" "Read the next member from the :class:`TarFile` object *tarfile* and return " "it as a :class:`TarInfo` object." msgstr "" -#: library/tarfile.rst:675 +#: library/tarfile.rst:678 msgid "" "Create a string buffer from a :class:`TarInfo` object. For information on " "the arguments see the constructor of the :class:`TarFile` class." msgstr "" -#: library/tarfile.rst:682 +#: library/tarfile.rst:685 msgid "A ``TarInfo`` object has the following public data attributes:" msgstr "" -#: library/tarfile.rst:688 +#: library/tarfile.rst:691 msgid "Name of the archive member." msgstr "" -#: library/tarfile.rst:694 +#: library/tarfile.rst:697 msgid "Size in bytes." msgstr "" -#: library/tarfile.rst:700 +#: library/tarfile.rst:703 msgid "" "Time of last modification in seconds since the :ref:`epoch `, as in :" "attr:`os.stat_result.st_mtime`." msgstr "" -#: library/tarfile.rst:716 library/tarfile.rst:759 library/tarfile.rst:781 +#: library/tarfile.rst:719 library/tarfile.rst:762 library/tarfile.rst:784 msgid "" "Can be set to ``None`` for :meth:`~TarFile.extract` and :meth:`~TarFile." "extractall`, causing extraction to skip applying this attribute." msgstr "" -#: library/tarfile.rst:712 +#: library/tarfile.rst:715 msgid "Permission bits, as for :func:`os.chmod`." msgstr "" -#: library/tarfile.rst:722 +#: library/tarfile.rst:725 msgid "" "File type. *type* is usually one of these constants: :const:`REGTYPE`, :" "const:`AREGTYPE`, :const:`LNKTYPE`, :const:`SYMTYPE`, :const:`DIRTYPE`, :" @@ -999,100 +1002,100 @@ msgid "" "more conveniently, use the ``is*()`` methods below." msgstr "" -#: library/tarfile.rst:732 +#: library/tarfile.rst:735 msgid "" "Name of the target file name, which is only present in :class:`TarInfo` " "objects of type :const:`LNKTYPE` and :const:`SYMTYPE`." msgstr "" -#: library/tarfile.rst:735 +#: library/tarfile.rst:738 msgid "" "For symbolic links (``SYMTYPE``), the *linkname* is relative to the " "directory that contains the link. For hard links (``LNKTYPE``), the " "*linkname* is relative to the root of the archive." msgstr "" -#: library/tarfile.rst:744 +#: library/tarfile.rst:747 msgid "User ID of the user who originally stored this member." msgstr "" -#: library/tarfile.rst:755 +#: library/tarfile.rst:758 msgid "Group ID of the user who originally stored this member." msgstr "" -#: library/tarfile.rst:766 +#: library/tarfile.rst:769 msgid "User name." msgstr "" -#: library/tarfile.rst:777 +#: library/tarfile.rst:780 msgid "Group name." msgstr "" -#: library/tarfile.rst:788 +#: library/tarfile.rst:791 msgid "" "A dictionary containing key-value pairs of an associated pax extended header." msgstr "" -#: library/tarfile.rst:796 +#: library/tarfile.rst:799 msgid "" "Return a *new* copy of the :class:`!TarInfo` object with the given " "attributes changed. For example, to return a ``TarInfo`` with the group name " "set to ``'staff'``, use::" msgstr "" -#: library/tarfile.rst:802 +#: library/tarfile.rst:805 msgid "" "By default, a deep copy is made. If *deep* is false, the copy is shallow, i." "e. ``pax_headers`` and any custom attributes are shared with the original " "``TarInfo`` object." msgstr "" -#: library/tarfile.rst:806 +#: library/tarfile.rst:809 msgid "A :class:`TarInfo` object also provides some convenient query methods:" msgstr "" -#: library/tarfile.rst:811 +#: library/tarfile.rst:814 msgid "Return :const:`True` if the :class:`Tarinfo` object is a regular file." msgstr "" -#: library/tarfile.rst:816 +#: library/tarfile.rst:819 msgid "Same as :meth:`isfile`." msgstr "" -#: library/tarfile.rst:821 +#: library/tarfile.rst:824 msgid "Return :const:`True` if it is a directory." msgstr "" -#: library/tarfile.rst:826 +#: library/tarfile.rst:829 msgid "Return :const:`True` if it is a symbolic link." msgstr "" -#: library/tarfile.rst:831 +#: library/tarfile.rst:834 msgid "Return :const:`True` if it is a hard link." msgstr "" -#: library/tarfile.rst:836 +#: library/tarfile.rst:839 msgid "Return :const:`True` if it is a character device." msgstr "" -#: library/tarfile.rst:841 +#: library/tarfile.rst:844 msgid "Return :const:`True` if it is a block device." msgstr "" -#: library/tarfile.rst:846 +#: library/tarfile.rst:849 msgid "Return :const:`True` if it is a FIFO." msgstr "" -#: library/tarfile.rst:851 +#: library/tarfile.rst:854 msgid "" "Return :const:`True` if it is one of character device, block device or FIFO." msgstr "" -#: library/tarfile.rst:857 +#: library/tarfile.rst:860 msgid "Extraction filters" msgstr "" -#: library/tarfile.rst:861 +#: library/tarfile.rst:864 msgid "" "The *tar* format is designed to capture all details of a UNIX-like " "filesystem, which makes it very powerful. Unfortunately, the features make " @@ -1102,69 +1105,66 @@ msgid "" "components, or symlinks that affect later members)." msgstr "" -#: library/tarfile.rst:869 +#: library/tarfile.rst:872 msgid "" "In most cases, the full functionality is not needed. Therefore, *tarfile* " "supports extraction filters: a mechanism to limit functionality, and thus " "mitigate some of the security issues." msgstr "" -#: library/tarfile.rst:875 +#: library/tarfile.rst:878 msgid ":pep:`706`" msgstr "" -#: library/tarfile.rst:876 +#: library/tarfile.rst:879 msgid "Contains further motivation and rationale behind the design." msgstr "" -#: library/tarfile.rst:878 +#: library/tarfile.rst:881 msgid "" "The *filter* argument to :meth:`TarFile.extract` or :meth:`~TarFile." "extractall` can be:" msgstr "" -#: library/tarfile.rst:881 +#: library/tarfile.rst:884 msgid "" "the string ``'fully_trusted'``: Honor all metadata as specified in the " "archive. Should be used if the user trusts the archive completely, or " "implements their own complex verification." msgstr "" -#: library/tarfile.rst:886 +#: library/tarfile.rst:889 msgid "" "the string ``'tar'``: Honor most *tar*-specific features (i.e. features of " "UNIX-like filesystems), but block features that are very likely to be " "surprising or malicious. See :func:`tar_filter` for details." msgstr "" -#: library/tarfile.rst:890 +#: library/tarfile.rst:893 msgid "" "the string ``'data'``: Ignore or block most features specific to UNIX-like " "filesystems. Intended for extracting cross-platform data archives. See :func:" "`data_filter` for details." msgstr "" -#: library/tarfile.rst:894 +#: library/tarfile.rst:897 msgid "``None`` (default): Use :attr:`TarFile.extraction_filter`." msgstr "" -#: library/tarfile.rst:896 -msgid "" -"If that is also ``None`` (the default), the ``'fully_trusted'`` filter will " -"be used (for compatibility with earlier versions of Python)." -msgstr "" - #: library/tarfile.rst:899 -msgid "In Python 3.12, the default will emit a ``DeprecationWarning``." +msgid "" +"If that is also ``None`` (the default), raise a ``DeprecationWarning``, and " +"fall back to the ``'fully_trusted'`` filter, whose dangerous behavior " +"matches previous versions of Python." msgstr "" -#: library/tarfile.rst:901 +#: library/tarfile.rst:903 msgid "" "In Python 3.14, the ``'data'`` filter will become the default instead. It's " "possible to switch earlier; see :attr:`TarFile.extraction_filter`." msgstr "" -#: library/tarfile.rst:904 +#: library/tarfile.rst:906 msgid "" "A callable which will be called for each extracted member with a :ref:" "`TarInfo ` describing the member and the destination path " @@ -1172,23 +1172,23 @@ msgid "" "members)::" msgstr "" -#: library/tarfile.rst:911 +#: library/tarfile.rst:913 msgid "" "The callable is called just before each member is extracted, so it can take " "the current state of the disk into account. It can:" msgstr "" -#: library/tarfile.rst:915 +#: library/tarfile.rst:917 msgid "" "return a :class:`TarInfo` object which will be used instead of the metadata " "in the archive, or" msgstr "" -#: library/tarfile.rst:917 +#: library/tarfile.rst:919 msgid "return ``None``, in which case the member will be skipped, or" msgstr "" -#: library/tarfile.rst:918 +#: library/tarfile.rst:920 msgid "" "raise an exception to abort the operation or skip the member, depending on :" "attr:`~TarFile.errorlevel`. Note that when extraction is aborted, :meth:" @@ -1196,118 +1196,118 @@ msgid "" "attempt to clean up." msgstr "" -#: library/tarfile.rst:924 +#: library/tarfile.rst:926 msgid "Default named filters" msgstr "" -#: library/tarfile.rst:926 +#: library/tarfile.rst:928 msgid "" "The pre-defined, named filters are available as functions, so they can be " "reused in custom filters:" msgstr "" -#: library/tarfile.rst:931 +#: library/tarfile.rst:933 msgid "Return *member* unchanged." msgstr "" -#: library/tarfile.rst:933 +#: library/tarfile.rst:935 msgid "This implements the ``'fully_trusted'`` filter." msgstr "" -#: library/tarfile.rst:937 +#: library/tarfile.rst:939 msgid "Implements the ``'tar'`` filter." msgstr "" -#: library/tarfile.rst:939 +#: library/tarfile.rst:941 msgid "Strip leading slashes (``/`` and :data:`os.sep`) from filenames." msgstr "" -#: library/tarfile.rst:940 +#: library/tarfile.rst:942 msgid "" ":ref:`Refuse ` to extract files with absolute " "paths (in case the name is absolute even after stripping slashes, e.g. ``C:/" "foo`` on Windows). This raises :class:`~tarfile.AbsolutePathError`." msgstr "" -#: library/tarfile.rst:944 +#: library/tarfile.rst:946 msgid "" ":ref:`Refuse ` to extract files whose absolute " "path (after following symlinks) would end up outside the destination. This " "raises :class:`~tarfile.OutsideDestinationError`." msgstr "" -#: library/tarfile.rst:947 +#: library/tarfile.rst:949 msgid "" "Clear high mode bits (setuid, setgid, sticky) and group/other write bits (:" "const:`~stat.S_IWGRP`|:const:`~stat.S_IWOTH`)." msgstr "" -#: library/tarfile.rst:983 +#: library/tarfile.rst:985 msgid "Return the modified ``TarInfo`` member." msgstr "" -#: library/tarfile.rst:954 +#: library/tarfile.rst:956 msgid "" "Implements the ``'data'`` filter. In addition to what ``tar_filter`` does:" msgstr "" -#: library/tarfile.rst:957 +#: library/tarfile.rst:959 msgid "" ":ref:`Refuse ` to extract links (hard or soft) " "that link to absolute paths, or ones that link outside the destination." msgstr "" -#: library/tarfile.rst:960 +#: library/tarfile.rst:962 msgid "" "This raises :class:`~tarfile.AbsoluteLinkError` or :class:`~tarfile." "LinkOutsideDestinationError`." msgstr "" -#: library/tarfile.rst:963 +#: library/tarfile.rst:965 msgid "" "Note that such files are refused even on platforms that do not support " "symbolic links." msgstr "" -#: library/tarfile.rst:966 +#: library/tarfile.rst:968 msgid "" ":ref:`Refuse ` to extract device files (including " "pipes). This raises :class:`~tarfile.SpecialFileError`." msgstr "" -#: library/tarfile.rst:970 +#: library/tarfile.rst:972 msgid "For regular files, including hard links:" msgstr "" -#: library/tarfile.rst:972 +#: library/tarfile.rst:974 msgid "" "Set the owner read and write permissions (:const:`~stat.S_IRUSR`|:const:" "`~stat.S_IWUSR`)." msgstr "" -#: library/tarfile.rst:974 +#: library/tarfile.rst:976 msgid "" "Remove the group & other executable permission (:const:`~stat.S_IXGRP`|:" "const:`~stat.S_IXOTH`) if the owner doesn’t have it (:const:`~stat.S_IXUSR`)." msgstr "" -#: library/tarfile.rst:978 +#: library/tarfile.rst:980 msgid "" "For other files (directories), set ``mode`` to ``None``, so that extraction " "methods skip applying permission bits." msgstr "" -#: library/tarfile.rst:980 +#: library/tarfile.rst:982 msgid "" "Set user and group info (``uid``, ``gid``, ``uname``, ``gname``) to " "``None``, so that extraction methods skip setting it." msgstr "" -#: library/tarfile.rst:989 +#: library/tarfile.rst:991 msgid "Filter errors" msgstr "" -#: library/tarfile.rst:991 +#: library/tarfile.rst:993 msgid "" "When a filter refuses to extract a file, it will raise an appropriate " "exception, a subclass of :class:`~tarfile.FilterError`. This will abort the " @@ -1316,11 +1316,11 @@ msgid "" "continue." msgstr "" -#: library/tarfile.rst:999 +#: library/tarfile.rst:1001 msgid "Hints for further verification" msgstr "" -#: library/tarfile.rst:1001 +#: library/tarfile.rst:1003 msgid "" "Even with ``filter='data'``, *tarfile* is not suited for extracting " "untrusted files without prior inspection. Among other issues, the pre-" @@ -1328,182 +1328,182 @@ msgid "" "additional checks." msgstr "" -#: library/tarfile.rst:1006 +#: library/tarfile.rst:1008 msgid "Here is an incomplete list of things to consider:" msgstr "" -#: library/tarfile.rst:1008 +#: library/tarfile.rst:1010 msgid "" "Extract to a :func:`new temporary directory ` to prevent e." "g. exploiting pre-existing links, and to make it easier to clean up after a " "failed extraction." msgstr "" -#: library/tarfile.rst:1011 +#: library/tarfile.rst:1013 msgid "" "When working with untrusted data, use external (e.g. OS-level) limits on " "disk, memory and CPU usage." msgstr "" -#: library/tarfile.rst:1013 +#: library/tarfile.rst:1015 msgid "" "Check filenames against an allow-list of characters (to filter out control " "characters, confusables, foreign path separators, etc.)." msgstr "" -#: library/tarfile.rst:1016 +#: library/tarfile.rst:1018 msgid "" "Check that filenames have expected extensions (discouraging files that " "execute when you “click on them”, or extension-less files like Windows " "special device names)." msgstr "" -#: library/tarfile.rst:1018 +#: library/tarfile.rst:1020 msgid "" "Limit the number of extracted files, total size of extracted data, filename " "length (including symlink length), and size of individual files." msgstr "" -#: library/tarfile.rst:1020 +#: library/tarfile.rst:1022 msgid "Check for files that would be shadowed on case-insensitive filesystems." msgstr "" -#: library/tarfile.rst:1022 +#: library/tarfile.rst:1024 msgid "Also note that:" msgstr "" -#: library/tarfile.rst:1024 +#: library/tarfile.rst:1026 msgid "" "Tar files may contain multiple versions of the same file. Later ones are " "expected to overwrite any earlier ones. This feature is crucial to allow " "updating tape archives, but can be abused maliciously." msgstr "" -#: library/tarfile.rst:1028 +#: library/tarfile.rst:1030 msgid "" "*tarfile* does not protect against issues with “live” data, e.g. an attacker " "tinkering with the destination (or source) directory while extraction (or " "archiving) is in progress." msgstr "" -#: library/tarfile.rst:1034 +#: library/tarfile.rst:1036 msgid "Supporting older Python versions" msgstr "" -#: library/tarfile.rst:1036 +#: library/tarfile.rst:1038 msgid "" -"Extraction filters were added to Python 3.12, and are backported to older " +"Extraction filters were added to Python 3.12, but may be backported to older " "versions as security updates. To check whether the feature is available, use " "e.g. ``hasattr(tarfile, 'data_filter')`` rather than checking the Python " "version." msgstr "" -#: library/tarfile.rst:1041 +#: library/tarfile.rst:1043 msgid "" "The following examples show how to support Python versions with and without " "the feature. Note that setting ``extraction_filter`` will affect any " "subsequent operations." msgstr "" -#: library/tarfile.rst:1045 +#: library/tarfile.rst:1047 msgid "Fully trusted archive::" msgstr "" -#: library/tarfile.rst:1050 +#: library/tarfile.rst:1052 msgid "" "Use the ``'data'`` filter if available, but revert to Python 3.11 behavior " "(``'fully_trusted'``) if this feature is not available::" msgstr "" -#: library/tarfile.rst:1057 +#: library/tarfile.rst:1059 msgid "Use the ``'data'`` filter; *fail* if it is not available::" msgstr "" -#: library/tarfile.rst:1061 +#: library/tarfile.rst:1063 msgid "or::" msgstr "" -#: library/tarfile.rst:1066 +#: library/tarfile.rst:1068 msgid "Use the ``'data'`` filter; *warn* if it is not available::" msgstr "" -#: library/tarfile.rst:1077 +#: library/tarfile.rst:1079 msgid "Stateful extraction filter example" msgstr "" -#: library/tarfile.rst:1079 +#: library/tarfile.rst:1081 msgid "" "While *tarfile*'s extraction methods take a simple *filter* callable, custom " "filters may be more complex objects with an internal state. It may be useful " "to write these as context managers, to be used like this::" msgstr "" -#: library/tarfile.rst:1086 +#: library/tarfile.rst:1088 msgid "Such a filter can be written as, for example::" msgstr "" -#: library/tarfile.rst:1108 +#: library/tarfile.rst:1110 msgid "Command-Line Interface" msgstr "" -#: library/tarfile.rst:1112 +#: library/tarfile.rst:1114 msgid "" "The :mod:`tarfile` module provides a simple command-line interface to " "interact with tar archives." msgstr "" -#: library/tarfile.rst:1115 +#: library/tarfile.rst:1117 msgid "" "If you want to create a new tar archive, specify its name after the :option:" "`-c` option and then list the filename(s) that should be included:" msgstr "" -#: library/tarfile.rst:1122 +#: library/tarfile.rst:1124 msgid "Passing a directory is also acceptable:" msgstr "" -#: library/tarfile.rst:1128 +#: library/tarfile.rst:1130 msgid "" "If you want to extract a tar archive into the current directory, use the :" "option:`-e` option:" msgstr "" -#: library/tarfile.rst:1135 +#: library/tarfile.rst:1137 msgid "" "You can also extract a tar archive into a different directory by passing the " "directory's name:" msgstr "" -#: library/tarfile.rst:1142 +#: library/tarfile.rst:1144 msgid "For a list of the files in a tar archive, use the :option:`-l` option:" msgstr "" -#: library/tarfile.rst:1150 +#: library/tarfile.rst:1152 msgid "Command-line options" msgstr "" -#: library/tarfile.rst:1155 +#: library/tarfile.rst:1157 msgid "List files in a tarfile." msgstr "" -#: library/tarfile.rst:1160 +#: library/tarfile.rst:1162 msgid "Create tarfile from source files." msgstr "" -#: library/tarfile.rst:1165 +#: library/tarfile.rst:1167 msgid "" "Extract tarfile into the current directory if *output_dir* is not specified." msgstr "" -#: library/tarfile.rst:1170 +#: library/tarfile.rst:1172 msgid "Test whether the tarfile is valid or not." msgstr "" -#: library/tarfile.rst:1174 +#: library/tarfile.rst:1176 msgid "Verbose output." msgstr "" -#: library/tarfile.rst:1178 +#: library/tarfile.rst:1180 msgid "" "Specifies the *filter* for ``--extract``. See :ref:`tarfile-extraction-" "filter` for details. Only string names are accepted (that is, " diff --git a/library/tempfile.po b/library/tempfile.po index e1cde64e8..0a34dad8d 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -102,7 +102,7 @@ msgid "" "for NamedTemporaryFile." msgstr "" -#: library/tempfile.rst:96 library/tempfile.rst:205 +#: library/tempfile.rst:137 library/tempfile.rst:258 msgid "" "Raises an :ref:`auditing event ` ``tempfile.mkstemp`` with " "argument ``fullpath``." @@ -112,31 +112,116 @@ msgstr "" msgid "The :py:const:`os.O_TMPFILE` flag is now used if available." msgstr "" -#: library/tempfile.rst:98 library/tempfile.rst:123 +#: library/tempfile.rst:139 library/tempfile.rst:167 msgid "Added *errors* parameter." msgstr "" #: library/tempfile.rst:80 msgid "" -"This function operates exactly as :func:`TemporaryFile` does, except that " -"the file is guaranteed to have a visible name in the file system (on Unix, " -"the directory entry is not unlinked). That name can be retrieved from the :" -"attr:`name` attribute of the returned file-like object. Whether the name " -"can be used to open the file a second time, while the named temporary file " -"is still open, varies across platforms (it can be so used on Unix; it cannot " -"on Windows). If *delete* is true (the default), the file is deleted as soon " -"as it is closed. The returned object is always a file-like object whose :" -"attr:`!file` attribute is the underlying true file object. This file-like " -"object can be used in a :keyword:`with` statement, just like a normal file." +"This function operates exactly as :func:`TemporaryFile` does, except the " +"following differences:" +msgstr "" + +#: library/tempfile.rst:83 +msgid "" +"This function returns a file that is guaranteed to have a visible name in " +"the file system." +msgstr "" + +#: library/tempfile.rst:85 +msgid "" +"To manage the named file, it extends the parameters of :func:`TemporaryFile` " +"with *delete* and *delete_on_close* parameters that determine whether and " +"how the named file should be automatically deleted." +msgstr "" + +#: library/tempfile.rst:89 +msgid "" +"The returned object is always a :term:`file-like object` whose :attr:`!file` " +"attribute is the underlying true file object. This :term:`file-like object` " +"can be used in a :keyword:`with` statement, just like a normal file. The " +"name of the temporary file can be retrieved from the :attr:`name` attribute " +"of the returned file-like object. On Unix, unlike with the :func:" +"`TemporaryFile`, the directory entry does not get unlinked immediately after " +"the file creation." +msgstr "" + +#: library/tempfile.rst:97 +msgid "" +"If *delete* is true (the default) and *delete_on_close* is true (the " +"default), the file is deleted as soon as it is closed. If *delete* is true " +"and *delete_on_close* is false, the file is deleted on context manager exit " +"only, or else when the :term:`file-like object` is finalized. Deletion is " +"not always guaranteed in this case (see :meth:`object.__del__`). If *delete* " +"is false, the value of *delete_on_close* is ignored." +msgstr "" + +#: library/tempfile.rst:104 +msgid "" +"Therefore to use the name of the temporary file to reopen the file after " +"closing it, either make sure not to delete the file upon closure (set the " +"*delete* parameter to be false) or, in case the temporary file is created in " +"a :keyword:`with` statement, set the *delete_on_close* parameter to be " +"false. The latter approach is recommended as it provides assistance in " +"automatic cleaning of the temporary file upon the context manager exit." +msgstr "" + +#: library/tempfile.rst:111 +msgid "" +"Opening the temporary file again by its name while it is still open works as " +"follows:" +msgstr "" + +#: library/tempfile.rst:114 +msgid "On POSIX the file can always be opened again." +msgstr "" + +#: library/tempfile.rst:115 +msgid "" +"On Windows, make sure that at least one of the following conditions are " +"fulfilled:" +msgstr "" + +#: library/tempfile.rst:118 +msgid "*delete* is false" +msgstr "" + +#: library/tempfile.rst:119 +msgid "" +"additional open shares delete access (e.g. by calling :func:`os.open` with " +"the flag ``O_TEMPORARY``)" +msgstr "" + +#: library/tempfile.rst:121 +msgid "" +"*delete* is true but *delete_on_close* is false. Note, that in this case the " +"additional opens that do not share delete access (e.g. created via builtin :" +"func:`open`) must be closed before exiting the context manager, else the :" +"func:`os.unlink` call on context manager exit will fail with a :exc:" +"`PermissionError`." +msgstr "" + +#: library/tempfile.rst:127 +msgid "" +"On Windows, if *delete_on_close* is false, and the file is created in a " +"directory for which the user lacks delete access, then the :func:`os.unlink` " +"call on exit of the context manager will fail with a :exc:`PermissionError`. " +"This cannot happen when *delete_on_close* is true because delete access is " +"requested by the open, which fails immediately if the requested access is " +"not granted." msgstr "" -#: library/tempfile.rst:93 +#: library/tempfile.rst:134 msgid "" "On POSIX (only), a process that is terminated abruptly with SIGKILL cannot " "automatically delete any NamedTemporaryFiles it created." msgstr "" -#: library/tempfile.rst:104 +#: library/tempfile.rst:142 +msgid "Added *delete_on_close* parameter." +msgstr "" + +#: library/tempfile.rst:148 msgid "" "This class operates exactly as :func:`TemporaryFile` does, except that data " "is spooled in memory until the file size exceeds *max_size*, or until the " @@ -144,13 +229,13 @@ msgid "" "written to disk and operation proceeds as with :func:`TemporaryFile`." msgstr "" -#: library/tempfile.rst:110 +#: library/tempfile.rst:154 msgid "" "The resulting file has one additional method, :func:`rollover`, which causes " "the file to roll over to an on-disk file regardless of its size." msgstr "" -#: library/tempfile.rst:113 +#: library/tempfile.rst:157 msgid "" "The returned object is a file-like object whose :attr:`_file` attribute is " "either an :class:`io.BytesIO` or :class:`io.TextIOWrapper` object (depending " @@ -159,18 +244,18 @@ msgid "" "object can be used in a :keyword:`with` statement, just like a normal file." msgstr "" -#: library/tempfile.rst:120 +#: library/tempfile.rst:164 msgid "the truncate method now accepts a ``size`` argument." msgstr "" -#: library/tempfile.rst:126 +#: library/tempfile.rst:170 msgid "" "Fully implements the :class:`io.BufferedIOBase` and :class:`io.TextIOBase` " "abstract base classes (depending on whether binary or text *mode* was " "specified)." msgstr "" -#: library/tempfile.rst:134 +#: library/tempfile.rst:178 msgid "" "This class securely creates a temporary directory using the same rules as :" "func:`mkdtemp`. The resulting object can be used as a context manager (see :" @@ -179,7 +264,7 @@ msgid "" "all its contents are removed from the filesystem." msgstr "" -#: library/tempfile.rst:140 +#: library/tempfile.rst:184 msgid "" "The directory name can be retrieved from the :attr:`name` attribute of the " "returned object. When the returned object is used as a context manager, " @@ -187,7 +272,7 @@ msgid "" "in the :keyword:`with` statement, if there is one." msgstr "" -#: library/tempfile.rst:145 +#: library/tempfile.rst:189 msgid "" "The directory can be explicitly cleaned up by calling the :func:`cleanup` " "method. If *ignore_cleanup_errors* is true, any unhandled exceptions during " @@ -199,17 +284,30 @@ msgid "" "shutdown)." msgstr "" -#: library/tempfile.rst:234 +#: library/tempfile.rst:198 +msgid "" +"The *delete* parameter can be used to disable cleanup of the directory tree " +"upon exiting the context. While it may seem unusual for a context manager " +"to disable the action taken when exiting the context, it can be useful " +"during debugging or when you need your cleanup behavior to be conditional " +"based on other logic." +msgstr "" + +#: library/tempfile.rst:284 msgid "" "Raises an :ref:`auditing event ` ``tempfile.mkdtemp`` with " "argument ``fullpath``." msgstr "" -#: library/tempfile.rst:158 +#: library/tempfile.rst:208 msgid "Added *ignore_cleanup_errors* parameter." msgstr "" -#: library/tempfile.rst:164 +#: library/tempfile.rst:211 +msgid "Added the *delete* parameter." +msgstr "" + +#: library/tempfile.rst:217 msgid "" "Creates a temporary file in the most secure manner possible. There are no " "race conditions in the file's creation, assuming that the platform properly " @@ -220,13 +318,13 @@ msgid "" "processes." msgstr "" -#: library/tempfile.rst:172 +#: library/tempfile.rst:225 msgid "" "Unlike :func:`TemporaryFile`, the user of :func:`mkstemp` is responsible for " "deleting the temporary file when done with it." msgstr "" -#: library/tempfile.rst:175 +#: library/tempfile.rst:228 msgid "" "If *suffix* is not ``None``, the file name will end with that suffix, " "otherwise there will be no suffix. :func:`mkstemp` does not put a dot " @@ -234,14 +332,14 @@ msgid "" "beginning of *suffix*." msgstr "" -#: library/tempfile.rst:180 +#: library/tempfile.rst:233 msgid "" "If *prefix* is not ``None``, the file name will begin with that prefix; " "otherwise, a default prefix is used. The default is the return value of :" "func:`gettempprefix` or :func:`gettempprefixb`, as appropriate." msgstr "" -#: library/tempfile.rst:184 +#: library/tempfile.rst:237 msgid "" "If *dir* is not ``None``, the file will be created in that directory; " "otherwise, a default directory is used. The default directory is chosen " @@ -252,7 +350,7 @@ msgid "" "commands via ``os.popen()``." msgstr "" -#: library/tempfile.rst:192 +#: library/tempfile.rst:245 msgid "" "If any of *suffix*, *prefix*, and *dir* are not ``None``, they must be the " "same type. If they are bytes, the returned name will be bytes instead of " @@ -260,20 +358,20 @@ msgid "" "behavior, pass ``suffix=b''``." msgstr "" -#: library/tempfile.rst:198 +#: library/tempfile.rst:251 msgid "" "If *text* is specified and true, the file is opened in text mode. Otherwise, " "(the default) the file is opened in binary mode." msgstr "" -#: library/tempfile.rst:201 +#: library/tempfile.rst:254 msgid "" ":func:`mkstemp` returns a tuple containing an OS-level handle to an open " "file (as would be returned by :func:`os.open`) and the absolute pathname of " "that file, in that order." msgstr "" -#: library/tempfile.rst:236 +#: library/tempfile.rst:286 msgid "" "*suffix*, *prefix*, and *dir* may now be supplied in bytes in order to " "obtain a bytes return value. Prior to this, only str was allowed. *suffix* " @@ -281,108 +379,110 @@ msgid "" "default value to be used." msgstr "" -#: library/tempfile.rst:242 +#: library/tempfile.rst:292 msgid "The *dir* parameter now accepts a :term:`path-like object`." msgstr "" -#: library/tempfile.rst:219 +#: library/tempfile.rst:272 msgid "" "Creates a temporary directory in the most secure manner possible. There are " "no race conditions in the directory's creation. The directory is readable, " "writable, and searchable only by the creating user ID." msgstr "" -#: library/tempfile.rst:223 +#: library/tempfile.rst:276 msgid "" "The user of :func:`mkdtemp` is responsible for deleting the temporary " "directory and its contents when done with it." msgstr "" -#: library/tempfile.rst:226 +#: library/tempfile.rst:279 msgid "" "The *prefix*, *suffix*, and *dir* arguments are the same as for :func:" "`mkstemp`." msgstr "" -#: library/tempfile.rst:229 +#: library/tempfile.rst:282 +msgid ":func:`mkdtemp` returns the absolute pathname of the new directory." +msgstr "" + +#: library/tempfile.rst:295 msgid "" -":func:`mkdtemp` returns the absolute pathname of the new directory if *dir* " -"is ``None`` or is an absolute path. If *dir* is a relative path, :func:" -"`mkdtemp` returns a relative path on Python 3.11 and lower. However, on 3.12 " -"it will return an absolute path in all situations." +":func:`mkdtemp` now always returns an absolute path, even if *dir* is " +"relative." msgstr "" -#: library/tempfile.rst:248 +#: library/tempfile.rst:301 msgid "" "Return the name of the directory used for temporary files. This defines the " "default value for the *dir* argument to all functions in this module." msgstr "" -#: library/tempfile.rst:252 +#: library/tempfile.rst:305 msgid "" "Python searches a standard list of directories to find one which the calling " "user can create files in. The list is:" msgstr "" -#: library/tempfile.rst:255 +#: library/tempfile.rst:308 msgid "The directory named by the :envvar:`TMPDIR` environment variable." msgstr "" -#: library/tempfile.rst:257 +#: library/tempfile.rst:310 msgid "The directory named by the :envvar:`TEMP` environment variable." msgstr "" -#: library/tempfile.rst:259 +#: library/tempfile.rst:312 msgid "The directory named by the :envvar:`TMP` environment variable." msgstr "" -#: library/tempfile.rst:261 +#: library/tempfile.rst:314 msgid "A platform-specific location:" msgstr "" -#: library/tempfile.rst:263 +#: library/tempfile.rst:316 msgid "" "On Windows, the directories :file:`C:\\\\TEMP`, :file:`C:\\\\TMP`, :file:`\\" "\\TEMP`, and :file:`\\\\TMP`, in that order." msgstr "" -#: library/tempfile.rst:266 +#: library/tempfile.rst:319 msgid "" "On all other platforms, the directories :file:`/tmp`, :file:`/var/tmp`, and :" "file:`/usr/tmp`, in that order." msgstr "" -#: library/tempfile.rst:269 +#: library/tempfile.rst:322 msgid "As a last resort, the current working directory." msgstr "" -#: library/tempfile.rst:271 +#: library/tempfile.rst:324 msgid "" "The result of this search is cached, see the description of :data:`tempdir` " "below." msgstr "" -#: library/tempfile.rst:276 +#: library/tempfile.rst:329 msgid "" "Always returns a str. Previously it would return any :data:`tempdir` value " "regardless of type so long as it was not ``None``." msgstr "" -#: library/tempfile.rst:281 +#: library/tempfile.rst:334 msgid "Same as :func:`gettempdir` but the return value is in bytes." msgstr "" -#: library/tempfile.rst:287 +#: library/tempfile.rst:340 msgid "" "Return the filename prefix used to create temporary files. This does not " "contain the directory component." msgstr "" -#: library/tempfile.rst:292 +#: library/tempfile.rst:345 msgid "Same as :func:`gettempprefix` but the return value is in bytes." msgstr "" -#: library/tempfile.rst:296 +#: library/tempfile.rst:349 msgid "" "The module uses a global variable to store the name of the directory used " "for temporary files returned by :func:`gettempdir`. It can be set directly " @@ -392,21 +492,21 @@ msgid "" "unsuspecting code by changing global API behavior." msgstr "" -#: library/tempfile.rst:305 +#: library/tempfile.rst:358 msgid "" "When set to a value other than ``None``, this variable defines the default " "value for the *dir* argument to the functions defined in this module, " "including its type, bytes or str. It cannot be a :term:`path-like object`." msgstr "" -#: library/tempfile.rst:310 +#: library/tempfile.rst:363 msgid "" "If ``tempdir`` is ``None`` (the default) at any call to any of the above " "functions except :func:`gettempprefix` it is initialized following the " "algorithm described in :func:`gettempdir`." msgstr "" -#: library/tempfile.rst:316 +#: library/tempfile.rst:369 msgid "" "Beware that if you set ``tempdir`` to a bytes value, there is a nasty side " "effect: The global default return type of :func:`mkstemp` and :func:" @@ -416,19 +516,19 @@ msgid "" "compatibility with the historical implementation." msgstr "" -#: library/tempfile.rst:327 +#: library/tempfile.rst:380 msgid "Examples" msgstr "" -#: library/tempfile.rst:329 +#: library/tempfile.rst:382 msgid "Here are some examples of typical usage of the :mod:`tempfile` module::" msgstr "" -#: library/tempfile.rst:361 +#: library/tempfile.rst:427 msgid "Deprecated functions and variables" msgstr "" -#: library/tempfile.rst:363 +#: library/tempfile.rst:429 msgid "" "A historical way to create temporary files was to first generate a file name " "with the :func:`mktemp` function and then create a file using this name. " @@ -439,11 +539,11 @@ msgid "" "used by :func:`mkstemp` and the other functions described above." msgstr "" -#: library/tempfile.rst:374 +#: library/tempfile.rst:440 msgid "Use :func:`mkstemp` instead." msgstr "" -#: library/tempfile.rst:377 +#: library/tempfile.rst:443 msgid "" "Return an absolute pathname of a file that did not exist at the time the " "call is made. The *prefix*, *suffix*, and *dir* arguments are similar to " @@ -451,7 +551,7 @@ msgid "" "``prefix=None`` are not supported." msgstr "" -#: library/tempfile.rst:384 +#: library/tempfile.rst:450 msgid "" "Use of this function may introduce a security hole in your program. By the " "time you get around to doing anything with the file name it returns, someone " diff --git a/library/test.po b/library/test.po index 32d5529dd..5bf29806b 100644 --- a/library/test.po +++ b/library/test.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -381,106 +381,150 @@ msgstr "" #: library/test.rst:324 msgid "" +"True if Python is built with the :c:macro:`Py_DEBUG` macro defined: if " +"Python is :ref:`built in debug mode ` (:option:`./configure --" +"with-pydebug <--with-pydebug>`)." +msgstr "" + +#: library/test.rst:333 +msgid "" "A constant that is likely larger than the underlying OS socket buffer size, " "to make writes blocking." msgstr "" -#: library/test.rst:330 +#: library/test.rst:339 msgid "Set to the top level directory that contains :mod:`test.support`." msgstr "" -#: library/test.rst:335 +#: library/test.rst:344 msgid "Set to the top level directory for the test package." msgstr "" -#: library/test.rst:340 +#: library/test.rst:349 msgid "Set to the ``data`` directory within the test package." msgstr "" -#: library/test.rst:345 +#: library/test.rst:354 msgid "Set to :data:`sys.maxsize` for big memory tests." msgstr "" -#: library/test.rst:350 +#: library/test.rst:359 msgid "" "Set by :func:`set_memlimit` as the memory limit for big memory tests. " "Limited by :data:`MAX_Py_ssize_t`." msgstr "" -#: library/test.rst:356 +#: library/test.rst:365 msgid "" "Set by :func:`set_memlimit` as the memory limit for big memory tests. Not " "limited by :data:`MAX_Py_ssize_t`." msgstr "" -#: library/test.rst:362 +#: library/test.rst:371 msgid "" "Set to ``True`` if Python is built without docstrings (the :c:macro:" "`WITH_DOC_STRINGS` macro is not defined). See the :option:`configure --" "without-doc-strings <--without-doc-strings>` option." msgstr "" -#: library/test.rst:366 +#: library/test.rst:375 msgid "See also the :data:`HAVE_DOCSTRINGS` variable." msgstr "" -#: library/test.rst:371 +#: library/test.rst:380 msgid "" "Set to ``True`` if function docstrings are available. See the :option:" "`python -OO <-O>` option, which strips docstrings of functions implemented " "in Python." msgstr "" -#: library/test.rst:374 +#: library/test.rst:383 msgid "See also the :data:`MISSING_C_DOCSTRINGS` variable." msgstr "" -#: library/test.rst:379 +#: library/test.rst:388 msgid "Define the URL of a dedicated HTTP server for the network tests." msgstr "" -#: library/test.rst:384 +#: library/test.rst:393 msgid "Object that is equal to anything. Used to test mixed type comparison." msgstr "" -#: library/test.rst:389 +#: library/test.rst:398 msgid "" "Object that is not equal to anything (even to :data:`ALWAYS_EQ`). Used to " "test mixed type comparison." msgstr "" -#: library/test.rst:395 +#: library/test.rst:404 msgid "" "Object that is greater than anything (except itself). Used to test mixed " "type comparison." msgstr "" -#: library/test.rst:401 +#: library/test.rst:410 msgid "" "Object that is less than anything (except itself). Used to test mixed type " "comparison." msgstr "" -#: library/test.rst:405 +#: library/test.rst:414 msgid "The :mod:`test.support` module defines the following functions:" msgstr "" -#: library/test.rst:409 +#: library/test.rst:418 +msgid "Run the loop body until ``break`` stops the loop." +msgstr "" + +#: library/test.rst:420 +msgid "" +"After *timeout* seconds, raise an :exc:`AssertionError` if *error* is true, " +"or just stop the loop if *error* is false." +msgstr "" + +#: library/test.rst:423 +msgid "Example::" +msgstr "" + +#: library/test.rst:453 +msgid "Example of error=False usage::" +msgstr "" + +#: library/test.rst:439 +msgid "Wait strategy that applies exponential backoff." +msgstr "" + +#: library/test.rst:441 +msgid "" +"Run the loop body until ``break`` stops the loop. Sleep at each loop " +"iteration, but not at the first iteration. The sleep delay is doubled at " +"each iteration (up to *max_delay* seconds)." +msgstr "" + +#: library/test.rst:445 +msgid "See :func:`busy_retry` documentation for the parameters usage." +msgstr "" + +#: library/test.rst:447 +msgid "Example raising an exception after SHORT_TIMEOUT seconds::" +msgstr "" + +#: library/test.rst:463 msgid "" "Return ``True`` if *resource* is enabled and available. The list of " "available resources is only set when :mod:`test.regrtest` is executing the " "tests." msgstr "" -#: library/test.rst:416 +#: library/test.rst:470 msgid "Return ``True`` if Python was not built with ``-O0`` or ``-Og``." msgstr "" -#: library/test.rst:421 +#: library/test.rst:475 msgid "Return :const:`_testcapi.WITH_PYMALLOC`." msgstr "" -#: library/test.rst:426 +#: library/test.rst:480 msgid "" "Raise :exc:`ResourceDenied` if *resource* is not available. *msg* is the " "argument to :exc:`ResourceDenied` if it is raised. Always returns ``True`` " @@ -488,42 +532,42 @@ msgid "" "tests are executed by :mod:`test.regrtest`." msgstr "" -#: library/test.rst:434 +#: library/test.rst:488 msgid "Return a repr of *dict* with keys sorted." msgstr "" -#: library/test.rst:439 +#: library/test.rst:493 msgid "" "Return the path to the file named *filename*. If no match is found " "*filename* is returned. This does not equal a failure since it could be the " "path to the file." msgstr "" -#: library/test.rst:443 +#: library/test.rst:497 msgid "" "Setting *subdir* indicates a relative path to use to find the file rather " "than looking directly in the path directories." msgstr "" -#: library/test.rst:449 +#: library/test.rst:503 msgid "" "Determine whether *test* matches the patterns set in :func:`set_match_tests`." msgstr "" -#: library/test.rst:454 +#: library/test.rst:508 msgid "" "Define match patterns on test filenames and test method names for filtering " "tests." msgstr "" -#: library/test.rst:459 +#: library/test.rst:513 msgid "" "Execute :class:`unittest.TestCase` subclasses passed to the function. The " "function scans the classes for methods starting with the prefix ``test_`` " "and executes the tests individually." msgstr "" -#: library/test.rst:463 +#: library/test.rst:517 msgid "" "It is also legal to pass strings as parameters; these should be keys in " "``sys.modules``. Each associated module will be scanned by ``unittest." @@ -531,17 +575,17 @@ msgid "" "func:`test_main` function::" msgstr "" -#: library/test.rst:471 +#: library/test.rst:525 msgid "This will run all tests defined in the named module." msgstr "" -#: library/test.rst:476 +#: library/test.rst:530 msgid "" "Run :func:`doctest.testmod` on the given *module*. Return ``(failure_count, " "test_count)``." msgstr "" -#: library/test.rst:479 +#: library/test.rst:533 msgid "" "If *verbosity* is ``None``, :func:`doctest.testmod` is run with verbosity " "set to :data:`verbose`. Otherwise, it is run with verbosity set to " @@ -549,68 +593,72 @@ msgid "" "testmod`." msgstr "" -#: library/test.rst:487 +#: library/test.rst:541 +msgid "Get size of a page in bytes." +msgstr "" + +#: library/test.rst:548 msgid "" "Set the :func:`sys.setswitchinterval` to the given *interval*. Defines a " "minimum interval for Android systems to prevent the system from hanging." msgstr "" -#: library/test.rst:493 +#: library/test.rst:554 msgid "" "Use this check to guard CPython's implementation-specific tests or to run " "them only on the implementations guarded by the arguments. This function " "returns ``True`` or ``False`` depending on the host platform. Example usage::" msgstr "" -#: library/test.rst:505 +#: library/test.rst:566 msgid "" "Set the values for :data:`max_memuse` and :data:`real_max_memuse` for big " "memory tests." msgstr "" -#: library/test.rst:511 +#: library/test.rst:572 msgid "" "Store the value from *stdout*. It is meant to hold the stdout at the time " "the regrtest began." msgstr "" -#: library/test.rst:517 +#: library/test.rst:578 msgid "" "Return the original stdout set by :func:`record_original_stdout` or ``sys." "stdout`` if it's not set." msgstr "" -#: library/test.rst:523 +#: library/test.rst:584 msgid "" "Return a list of command line arguments reproducing the current settings in " "``sys.flags`` and ``sys.warnoptions``." msgstr "" -#: library/test.rst:529 +#: library/test.rst:590 msgid "" "Return a list of command line arguments reproducing the current optimization " "settings in ``sys.flags``." msgstr "" -#: library/test.rst:537 +#: library/test.rst:598 msgid "" "A context managers that temporarily replaces the named stream with :class:" "`io.StringIO` object." msgstr "" -#: library/test.rst:540 +#: library/test.rst:601 msgid "Example use with output streams::" msgstr "" -#: library/test.rst:548 +#: library/test.rst:609 msgid "Example use with input stream::" msgstr "" -#: library/test.rst:560 +#: library/test.rst:621 msgid "A context manager that temporary disables :mod:`faulthandler`." msgstr "" -#: library/test.rst:565 +#: library/test.rst:626 msgid "" "Force as many objects as possible to be collected. This is needed because " "timely deallocation is not guaranteed by the garbage collector. This means " @@ -618,111 +666,111 @@ msgid "" "remain alive for longer than expected." msgstr "" -#: library/test.rst:573 +#: library/test.rst:634 msgid "" "A context manager that disables the garbage collector on entry. On exit, the " "garbage collector is restored to its prior state." msgstr "" -#: library/test.rst:579 +#: library/test.rst:640 msgid "Context manager to swap out an attribute with a new object." msgstr "" -#: library/test.rst:599 library/test.rst:1301 +#: library/test.rst:660 library/test.rst:1361 msgid "Usage::" msgstr "" -#: library/test.rst:586 +#: library/test.rst:647 msgid "" "This will set ``obj.attr`` to 5 for the duration of the ``with`` block, " "restoring the old value at the end of the block. If ``attr`` doesn't exist " "on ``obj``, it will be created and then deleted at the end of the block." msgstr "" -#: library/test.rst:609 +#: library/test.rst:670 msgid "" "The old value (or ``None`` if it doesn't exist) will be assigned to the " "target of the \"as\" clause, if there is one." msgstr "" -#: library/test.rst:597 +#: library/test.rst:658 msgid "Context manager to swap out an item with a new object." msgstr "" -#: library/test.rst:604 +#: library/test.rst:665 msgid "" "This will set ``obj[\"item\"]`` to 5 for the duration of the ``with`` block, " "restoring the old value at the end of the block. If ``item`` doesn't exist " "on ``obj``, it will be created and then deleted at the end of the block." msgstr "" -#: library/test.rst:615 +#: library/test.rst:676 msgid "" "Call the ``flush()`` method on :data:`sys.stdout` and then on :data:`sys." "stderr`. It can be used to make sure that the logs order is consistent " "before writing into stderr." msgstr "" -#: library/test.rst:624 +#: library/test.rst:685 msgid "" "Print a warning into :data:`sys.__stderr__`. Format the message as: " "``f\"Warning -- {msg}\"``. If *msg* is made of multiple lines, add " "``\"Warning -- \"`` prefix to each line." msgstr "" -#: library/test.rst:633 +#: library/test.rst:694 msgid "" "Wait until process *pid* completes and check that the process exit code is " "*exitcode*." msgstr "" -#: library/test.rst:636 +#: library/test.rst:697 msgid "" "Raise an :exc:`AssertionError` if the process exit code is not equal to " "*exitcode*." msgstr "" -#: library/test.rst:639 +#: library/test.rst:700 msgid "" "If the process runs longer than *timeout* seconds (:data:`SHORT_TIMEOUT` by " "default), kill the process and raise an :exc:`AssertionError`. The timeout " "feature is not available on Windows." msgstr "" -#: library/test.rst:648 +#: library/test.rst:709 msgid "" "Return the size of the :c:type:`PyObject` whose structure members are " "defined by *fmt*. The returned value includes the size of the Python object " "header and alignment." msgstr "" -#: library/test.rst:654 +#: library/test.rst:715 msgid "" "Return the size of the :c:type:`PyVarObject` whose structure members are " "defined by *fmt*. The returned value includes the size of the Python object " "header and alignment." msgstr "" -#: library/test.rst:660 +#: library/test.rst:721 msgid "" "For testcase *test*, assert that the ``sys.getsizeof`` for *o* plus the GC " "header size equals *size*." msgstr "" -#: library/test.rst:666 +#: library/test.rst:727 msgid "" "A decorator to conditionally mark tests with :func:`unittest." "expectedFailure`. Any use of this decorator should have an associated " "comment identifying the relevant tracker issue." msgstr "" -#: library/test.rst:673 +#: library/test.rst:734 msgid "" "A decorator that skips the decorated test on TLS certification validation " "failures." msgstr "" -#: library/test.rst:678 +#: library/test.rst:739 msgid "" "A decorator for running a function in a different locale, correctly " "resetting it after it has finished. *catstr* is the locale category as a " @@ -730,73 +778,79 @@ msgid "" "sequentially, and the first valid locale will be used." msgstr "" -#: library/test.rst:686 +#: library/test.rst:747 msgid "" "A decorator for running a function in a specific timezone, correctly " "resetting it after it has finished." msgstr "" -#: library/test.rst:692 +#: library/test.rst:753 msgid "" "Decorator for the minimum version when running test on FreeBSD. If the " "FreeBSD version is less than the minimum, the test is skipped." msgstr "" -#: library/test.rst:698 +#: library/test.rst:759 msgid "" "Decorator for the minimum version when running test on Linux. If the Linux " "version is less than the minimum, the test is skipped." msgstr "" -#: library/test.rst:704 +#: library/test.rst:765 msgid "" "Decorator for the minimum version when running test on macOS. If the macOS " "version is less than the minimum, the test is skipped." msgstr "" -#: library/test.rst:710 +#: library/test.rst:771 msgid "Decorator for skipping tests on non-IEEE 754 platforms." msgstr "" -#: library/test.rst:715 +#: library/test.rst:776 msgid "Decorator for skipping tests if :mod:`zlib` doesn't exist." msgstr "" -#: library/test.rst:720 +#: library/test.rst:781 msgid "Decorator for skipping tests if :mod:`gzip` doesn't exist." msgstr "" -#: library/test.rst:725 +#: library/test.rst:786 msgid "Decorator for skipping tests if :mod:`bz2` doesn't exist." msgstr "" -#: library/test.rst:730 +#: library/test.rst:791 msgid "Decorator for skipping tests if :mod:`lzma` doesn't exist." msgstr "" -#: library/test.rst:735 +#: library/test.rst:796 msgid "Decorator for skipping tests if *resource* is not available." msgstr "" -#: library/test.rst:740 +#: library/test.rst:801 msgid "Decorator for only running the test if :data:`HAVE_DOCSTRINGS`." msgstr "" -#: library/test.rst:745 +#: library/test.rst:806 +msgid "" +"Decorator for only running the test if :ref:`Limited C API ` " +"is available." +msgstr "" + +#: library/test.rst:812 msgid "Decorator for tests only applicable to CPython." msgstr "" -#: library/test.rst:750 +#: library/test.rst:817 msgid "" "Decorator for invoking :func:`check_impl_detail` on *guards*. If that " "returns ``False``, then uses *msg* as the reason for skipping the test." msgstr "" -#: library/test.rst:756 +#: library/test.rst:823 msgid "Decorator to temporarily turn off tracing for the duration of the test." msgstr "" -#: library/test.rst:761 +#: library/test.rst:828 msgid "" "Decorator for tests which involve reference counting. The decorator does " "not run the test if it is not run by CPython. Any trace function is unset " @@ -804,11 +858,11 @@ msgid "" "trace function." msgstr "" -#: library/test.rst:769 +#: library/test.rst:836 msgid "Decorator for bigmem tests." msgstr "" -#: library/test.rst:771 +#: library/test.rst:838 msgid "" "*size* is a requested size for the test (in arbitrary, test-interpreted " "units.) *memuse* is the number of bytes per unit for the test, or a good " @@ -816,7 +870,7 @@ msgid "" "each, could be decorated with ``@bigmemtest(size=_4G, memuse=2)``." msgstr "" -#: library/test.rst:776 +#: library/test.rst:843 msgid "" "The *size* argument is normally passed to the decorated test method as an " "extra argument. If *dry_run* is ``True``, the value passed to the test " @@ -824,11 +878,11 @@ msgid "" "means the test doesn't support dummy runs when ``-M`` is not specified." msgstr "" -#: library/test.rst:784 +#: library/test.rst:851 msgid "Decorator for tests that fill the address space." msgstr "" -#: library/test.rst:789 +#: library/test.rst:856 msgid "" "Test for syntax errors in *statement* by attempting to compile *statement*. " "*testcase* is the :mod:`unittest` instance for the test. *errtext* is the " @@ -838,44 +892,44 @@ msgid "" "of the exception." msgstr "" -#: library/test.rst:799 +#: library/test.rst:866 msgid "Open *url*. If open fails, raises :exc:`TestFailed`." msgstr "" -#: library/test.rst:804 +#: library/test.rst:871 msgid "" "Use this at the end of ``test_main`` whenever sub-processes are started. " "This will help ensure that no extra children (zombies) stick around to hog " "resources and create problems when looking for refleaks." msgstr "" -#: library/test.rst:811 +#: library/test.rst:878 msgid "" "Get an attribute, raising :exc:`unittest.SkipTest` if :exc:`AttributeError` " "is raised." msgstr "" -#: library/test.rst:817 +#: library/test.rst:884 msgid "" "Context manager catching unraisable exception using :func:`sys." "unraisablehook`." msgstr "" -#: library/test.rst:820 +#: library/test.rst:887 msgid "" "Storing the exception value (``cm.unraisable.exc_value``) creates a " "reference cycle. The reference cycle is broken explicitly when the context " "manager exits." msgstr "" -#: library/test.rst:824 +#: library/test.rst:891 msgid "" "Storing the object (``cm.unraisable.object``) can resurrect it if it is set " "to an object which is being finalized. Exiting the context manager clears " "the stored object." msgstr "" -#: library/test.rst:845 +#: library/test.rst:912 msgid "" "Generic implementation of the :mod:`unittest` ``load_tests`` protocol for " "use in test packages. *pkg_dir* is the root directory of the package; " @@ -884,55 +938,55 @@ msgid "" "the following::" msgstr "" -#: library/test.rst:860 +#: library/test.rst:927 msgid "" "Returns the set of attributes, functions or methods of *ref_api* not found " "on *other_api*, except for a defined list of items to be ignored in this " "check specified in *ignore*." msgstr "" -#: library/test.rst:864 +#: library/test.rst:931 msgid "" "By default this skips private attributes beginning with '_' but includes all " "magic methods, i.e. those starting and ending in '__'." msgstr "" -#: library/test.rst:872 +#: library/test.rst:939 msgid "" "Override *object_to_patch.attr_name* with *new_value*. Also add cleanup " "procedure to *test_instance* to restore *object_to_patch* for *attr_name*. " "The *attr_name* should be a valid attribute for *object_to_patch*." msgstr "" -#: library/test.rst:880 +#: library/test.rst:947 msgid "" "Run *code* in subinterpreter. Raise :exc:`unittest.SkipTest` if :mod:" "`tracemalloc` is enabled." msgstr "" -#: library/test.rst:886 +#: library/test.rst:953 msgid "Assert instances of *cls* are deallocated after iterating." msgstr "" -#: library/test.rst:891 +#: library/test.rst:958 msgid "" "Check for the existence of the compiler executables whose names are listed " "in *cmd_names* or all the compiler executables when *cmd_names* is empty and " "return the first missing executable or ``None`` when none is found missing." msgstr "" -#: library/test.rst:899 +#: library/test.rst:966 msgid "" "Assert that the ``__all__`` variable of *module* contains all public names." msgstr "" -#: library/test.rst:901 +#: library/test.rst:968 msgid "" "The module's public names (its API) are detected automatically based on " "whether they match the public name convention and were defined in *module*." msgstr "" -#: library/test.rst:905 +#: library/test.rst:972 msgid "" "The *name_of_module* argument can specify (as a string or tuple thereof) " "what module(s) an API could be defined in order to be detected as a public " @@ -940,7 +994,7 @@ msgid "" "other modules, possibly a C backend (like ``csv`` and its ``_csv``)." msgstr "" -#: library/test.rst:910 +#: library/test.rst:977 msgid "" "The *extra* argument can be a set of names that wouldn't otherwise be " "automatically detected as \"public\", like objects without a proper " @@ -948,28 +1002,28 @@ msgid "" "detected ones." msgstr "" -#: library/test.rst:914 +#: library/test.rst:981 msgid "" "The *not_exported* argument can be a set of names that must not be treated " "as part of the public API even though their names indicate otherwise." msgstr "" -#: library/test.rst:1550 +#: library/test.rst:1610 msgid "Example use::" msgstr "" -#: library/test.rst:940 +#: library/test.rst:1007 msgid "" "Skip tests if the :mod:`multiprocessing.synchronize` module is missing, if " "there is no available semaphore implementation, or if creating a lock raises " "an :exc:`OSError`." msgstr "" -#: library/test.rst:949 +#: library/test.rst:1016 msgid "Assert that type *tp* cannot be instantiated using *args* and *kwds*." msgstr "" -#: library/test.rst:956 +#: library/test.rst:1023 msgid "" "This function returns a context manager that will change the global :func:" "`sys.set_int_max_str_digits` setting for the duration of the context to " @@ -977,76 +1031,72 @@ msgid "" "digits when converting between an integer and string." msgstr "" -#: library/test.rst:964 +#: library/test.rst:1031 msgid "The :mod:`test.support` module defines the following classes:" msgstr "" -#: library/test.rst:969 +#: library/test.rst:1036 msgid "" "A context manager used to try to prevent crash dialog popups on tests that " "are expected to crash a subprocess." msgstr "" -#: library/test.rst:972 +#: library/test.rst:1039 msgid "" "On Windows, it disables Windows Error Reporting dialogs using `SetErrorMode " "`_." msgstr "" -#: library/test.rst:975 +#: library/test.rst:1042 msgid "" "On UNIX, :func:`resource.setrlimit` is used to set :const:`resource." "RLIMIT_CORE`'s soft limit to 0 to prevent coredump file creation." msgstr "" -#: library/test.rst:979 +#: library/test.rst:1046 msgid "On both platforms, the old value is restored by :meth:`__exit__`." msgstr "" -#: library/test.rst:984 +#: library/test.rst:1051 msgid "" "Class to save and restore signal handlers registered by the Python signal " "handler." msgstr "" -#: library/test.rst:989 +#: library/test.rst:1056 msgid "" "Save the signal handlers to a dictionary mapping signal numbers to the " "current signal handler." msgstr "" -#: library/test.rst:994 +#: library/test.rst:1061 msgid "" "Set the signal numbers from the :meth:`save` dictionary to the saved handler." msgstr "" -#: library/test.rst:1002 +#: library/test.rst:1069 msgid "Try to match a single dict with the supplied arguments." msgstr "" -#: library/test.rst:1007 +#: library/test.rst:1074 msgid "Try to match a single stored value (*dv*) with a supplied value (*v*)." msgstr "" -#: library/test.rst:1014 -msgid "Run *test* and return the result." -msgstr "" - -#: library/test.rst:1018 +#: library/test.rst:1078 msgid ":mod:`test.support.socket_helper` --- Utilities for socket tests" msgstr "" -#: library/test.rst:1024 +#: library/test.rst:1084 msgid "" "The :mod:`test.support.socket_helper` module provides support for socket " "tests." msgstr "" -#: library/test.rst:1031 +#: library/test.rst:1091 msgid "Set to ``True`` if IPv6 is enabled on this host, ``False`` otherwise." msgstr "" -#: library/test.rst:1036 +#: library/test.rst:1096 msgid "" "Returns an unused port that should be suitable for binding. This is " "achieved by creating a temporary socket with the same family and type as the " @@ -1057,7 +1107,7 @@ msgid "" "port is returned." msgstr "" -#: library/test.rst:1045 +#: library/test.rst:1105 msgid "" "Either this method or :func:`bind_port` should be used for any tests where a " "server socket needs to be bound to a particular port for the duration of the " @@ -1070,7 +1120,7 @@ msgid "" "simultaneously, which is a problem for buildbots." msgstr "" -#: library/test.rst:1059 +#: library/test.rst:1119 msgid "" "Bind the socket to a free port and return the port number. Relies on " "ephemeral ports in order to ensure we are using an unbound port. This is " @@ -1083,7 +1133,7 @@ msgid "" "testing multicasting via multiple UDP sockets." msgstr "" -#: library/test.rst:1070 +#: library/test.rst:1130 msgid "" "Additionally, if the :const:`~socket.SO_EXCLUSIVEADDRUSE` socket option is " "available (i.e. on Windows), it will be set on the socket. This will " @@ -1091,58 +1141,58 @@ msgid "" "test." msgstr "" -#: library/test.rst:1078 +#: library/test.rst:1138 msgid "" "Bind a Unix socket, raising :exc:`unittest.SkipTest` if :exc:" "`PermissionError` is raised." msgstr "" -#: library/test.rst:1084 +#: library/test.rst:1144 msgid "" "A decorator for running tests that require a functional ``bind()`` for Unix " "sockets." msgstr "" -#: library/test.rst:1090 +#: library/test.rst:1150 msgid "" "A context manager that raises :exc:`~test.support.ResourceDenied` when " "various issues with the internet connection manifest themselves as " "exceptions." msgstr "" -#: library/test.rst:1096 +#: library/test.rst:1156 msgid "" ":mod:`test.support.script_helper` --- Utilities for the Python execution " "tests" msgstr "" -#: library/test.rst:1102 +#: library/test.rst:1162 msgid "" "The :mod:`test.support.script_helper` module provides support for Python's " "script execution tests." msgstr "" -#: library/test.rst:1107 +#: library/test.rst:1167 msgid "" "Return ``True`` if ``sys.executable interpreter`` requires environment " "variables in order to be able to run at all." msgstr "" -#: library/test.rst:1110 +#: library/test.rst:1170 msgid "" "This is designed to be used with ``@unittest.skipIf()`` to annotate tests " "that need to use an ``assert_python*()`` function to launch an isolated mode " "(``-I``) or no environment mode (``-E``) sub-interpreter process." msgstr "" -#: library/test.rst:1114 +#: library/test.rst:1174 msgid "" "A normal build & test does not run into this situation but it can happen " "when trying to run the standard library test suite from an interpreter that " "doesn't have an obvious home with Python's current home finding logic." msgstr "" -#: library/test.rst:1118 +#: library/test.rst:1178 msgid "" "Setting :envvar:`PYTHONHOME` is one way to get most of the testsuite to run " "in that situation. :envvar:`PYTHONPATH` or :envvar:`PYTHONUSERSITE` are " @@ -1150,84 +1200,84 @@ msgid "" "interpreter can start." msgstr "" -#: library/test.rst:1126 +#: library/test.rst:1186 msgid "" "Set up the environment based on *env_vars* for running the interpreter in a " "subprocess. The values can include ``__isolated``, ``__cleanenv``, " "``__cwd``, and ``TERM``." msgstr "" -#: library/test.rst:1146 library/test.rst:1158 +#: library/test.rst:1206 library/test.rst:1218 msgid "The function no longer strips whitespaces from *stderr*." msgstr "" -#: library/test.rst:1136 +#: library/test.rst:1196 msgid "" "Assert that running the interpreter with *args* and optional environment " "variables *env_vars* succeeds (``rc == 0``) and return a ``(return code, " "stdout, stderr)`` tuple." msgstr "" -#: library/test.rst:1140 +#: library/test.rst:1200 msgid "" "If the *__cleanenv* keyword-only parameter is set, *env_vars* is used as a " "fresh environment." msgstr "" -#: library/test.rst:1143 +#: library/test.rst:1203 msgid "" "Python is started in isolated mode (command line option ``-I``), except if " "the *__isolated* keyword-only parameter is set to ``False``." msgstr "" -#: library/test.rst:1152 +#: library/test.rst:1212 msgid "" "Assert that running the interpreter with *args* and optional environment " "variables *env_vars* fails (``rc != 0``) and return a ``(return code, " "stdout, stderr)`` tuple." msgstr "" -#: library/test.rst:1156 +#: library/test.rst:1216 msgid "See :func:`assert_python_ok` for more options." msgstr "" -#: library/test.rst:1164 +#: library/test.rst:1224 msgid "Run a Python subprocess with the given arguments." msgstr "" -#: library/test.rst:1166 +#: library/test.rst:1226 msgid "" "*kw* is extra keyword args to pass to :func:`subprocess.Popen`. Returns a :" "class:`subprocess.Popen` object." msgstr "" -#: library/test.rst:1172 +#: library/test.rst:1232 msgid "" "Run the given :class:`subprocess.Popen` process until completion and return " "stdout." msgstr "" -#: library/test.rst:1178 +#: library/test.rst:1238 msgid "" "Create script containing *source* in path *script_dir* and " "*script_basename*. If *omit_suffix* is ``False``, append ``.py`` to the " "name. Return the full script path." msgstr "" -#: library/test.rst:1185 +#: library/test.rst:1245 msgid "" "Create zip file at *zip_dir* and *zip_basename* with extension ``zip`` which " "contains the files in *script_name*. *name_in_zip* is the archive name. " "Return a tuple containing ``(full path, full path of archive name)``." msgstr "" -#: library/test.rst:1192 +#: library/test.rst:1252 msgid "" "Create a directory named *pkg_dir* containing an ``__init__`` file with " "*init_source* as its contents." msgstr "" -#: library/test.rst:1199 +#: library/test.rst:1259 msgid "" "Create a zip package directory with a path of *zip_dir* and *zip_basename* " "containing an empty ``__init__`` file and a file *script_basename* " @@ -1236,60 +1286,60 @@ msgid "" "path and the archive name for the zip file." msgstr "" -#: library/test.rst:1207 +#: library/test.rst:1267 msgid "" ":mod:`test.support.bytecode_helper` --- Support tools for testing correct " "bytecode generation" msgstr "" -#: library/test.rst:1212 +#: library/test.rst:1272 msgid "" "The :mod:`test.support.bytecode_helper` module provides support for testing " "and inspecting bytecode generation." msgstr "" -#: library/test.rst:1217 +#: library/test.rst:1277 msgid "The module defines the following class:" msgstr "" -#: library/test.rst:1221 +#: library/test.rst:1281 msgid "This class has custom assertion methods for inspecting bytecode." msgstr "" -#: library/test.rst:1225 +#: library/test.rst:1285 msgid "Return the disassembly of *co* as string." msgstr "" -#: library/test.rst:1230 +#: library/test.rst:1290 msgid "" "Return instr if *opname* is found, otherwise throws :exc:`AssertionError`." msgstr "" -#: library/test.rst:1235 +#: library/test.rst:1295 msgid "Throws :exc:`AssertionError` if *opname* is found." msgstr "" -#: library/test.rst:1239 +#: library/test.rst:1299 msgid ":mod:`test.support.threading_helper` --- Utilities for threading tests" msgstr "" -#: library/test.rst:1244 +#: library/test.rst:1304 msgid "" "The :mod:`test.support.threading_helper` module provides support for " "threading tests." msgstr "" -#: library/test.rst:1251 +#: library/test.rst:1311 msgid "" "Join a *thread* within *timeout*. Raise an :exc:`AssertionError` if thread " "is still alive after *timeout* seconds." msgstr "" -#: library/test.rst:1257 +#: library/test.rst:1317 msgid "Decorator to ensure the threads are cleaned up even if the test fails." msgstr "" -#: library/test.rst:1262 +#: library/test.rst:1322 msgid "" "Context manager to start *threads*, which is a sequence of threads. *unlock* " "is a function called after the threads are started, even if an exception was " @@ -1297,79 +1347,79 @@ msgid "" "will attempt to join the started threads upon exit." msgstr "" -#: library/test.rst:1270 +#: library/test.rst:1330 msgid "" "Cleanup up threads not specified in *original_values*. Designed to emit a " "warning if a test leaves running threads in the background." msgstr "" -#: library/test.rst:1276 +#: library/test.rst:1336 msgid "Return current thread count and copy of dangling threads." msgstr "" -#: library/test.rst:1281 +#: library/test.rst:1341 msgid "" "Context manager to wait until all threads created in the ``with`` statement " "exit." msgstr "" -#: library/test.rst:1287 +#: library/test.rst:1347 msgid "" "Context manager catching :class:`threading.Thread` exception using :func:" "`threading.excepthook`." msgstr "" -#: library/test.rst:1290 +#: library/test.rst:1350 msgid "Attributes set when an exception is caught:" msgstr "" -#: library/test.rst:1292 +#: library/test.rst:1352 msgid "``exc_type``" msgstr "" -#: library/test.rst:1293 +#: library/test.rst:1353 msgid "``exc_value``" msgstr "" -#: library/test.rst:1294 +#: library/test.rst:1354 msgid "``exc_traceback``" msgstr "" -#: library/test.rst:1295 +#: library/test.rst:1355 msgid "``thread``" msgstr "" -#: library/test.rst:1297 +#: library/test.rst:1357 msgid "See :func:`threading.excepthook` documentation." msgstr "" -#: library/test.rst:1299 +#: library/test.rst:1359 msgid "These attributes are deleted at the context manager exit." msgstr "" -#: library/test.rst:1319 +#: library/test.rst:1379 msgid ":mod:`test.support.os_helper` --- Utilities for os tests" msgstr "" -#: library/test.rst:1324 +#: library/test.rst:1384 msgid "The :mod:`test.support.os_helper` module provides support for os tests." msgstr "" -#: library/test.rst:1331 +#: library/test.rst:1391 msgid "A non-ASCII character encodable by :func:`os.fsencode`." msgstr "" -#: library/test.rst:1336 +#: library/test.rst:1396 msgid "Set to :func:`os.getcwd`." msgstr "" -#: library/test.rst:1341 +#: library/test.rst:1401 msgid "" "Set to a name that is safe to use as the name of a temporary file. Any " "temporary file that is created should be closed and unlinked (removed)." msgstr "" -#: library/test.rst:1347 +#: library/test.rst:1407 msgid "" "Set to a filename containing the :data:`FS_NONASCII` character, if it " "exists. This guarantees that if the filename exists, it can be encoded and " @@ -1377,25 +1427,25 @@ msgid "" "a non-ASCII filename to be easily skipped on platforms where they can't work." msgstr "" -#: library/test.rst:1355 +#: library/test.rst:1415 msgid "" "Set to a filename (str type) that should not be able to be encoded by file " "system encoding in strict mode. It may be ``None`` if it's not possible to " "generate such a filename." msgstr "" -#: library/test.rst:1362 +#: library/test.rst:1422 msgid "" "Set to a filename (bytes type) that should not be able to be decoded by file " "system encoding in strict mode. It may be ``None`` if it's not possible to " "generate such a filename." msgstr "" -#: library/test.rst:1369 +#: library/test.rst:1429 msgid "Set to a non-ASCII name for a temporary file." msgstr "" -#: library/test.rst:1374 +#: library/test.rst:1434 msgid "" "Class used to temporarily set or unset environment variables. Instances can " "be used as a context manager and have a complete dictionary interface for " @@ -1404,75 +1454,75 @@ msgid "" "instance will be rolled back." msgstr "" -#: library/test.rst:1380 +#: library/test.rst:1440 msgid "Added dictionary interface." msgstr "" -#: library/test.rst:1386 +#: library/test.rst:1446 msgid "" "Simple :term:`path-like object`. It implements the :meth:`__fspath__` " "method which just returns the *path* argument. If *path* is an exception, " "it will be raised in :meth:`!__fspath__`." msgstr "" -#: library/test.rst:1393 +#: library/test.rst:1453 msgid "" "Temporarily set the environment variable ``envvar`` to the value of " "``value``." msgstr "" -#: library/test.rst:1399 +#: library/test.rst:1459 msgid "Temporarily unset the environment variable ``envvar``." msgstr "" -#: library/test.rst:1404 +#: library/test.rst:1464 msgid "Return ``True`` if the OS supports symbolic links, ``False`` otherwise." msgstr "" -#: library/test.rst:1410 +#: library/test.rst:1470 msgid "Return ``True`` if the OS supports xattr, ``False`` otherwise." msgstr "" -#: library/test.rst:1416 +#: library/test.rst:1476 msgid "" "A context manager that temporarily changes the current working directory to " "*path* and yields the directory." msgstr "" -#: library/test.rst:1419 +#: library/test.rst:1479 msgid "" "If *quiet* is ``False``, the context manager raises an exception on error. " "Otherwise, it issues only a warning and keeps the current working directory " "the same." msgstr "" -#: library/test.rst:1426 +#: library/test.rst:1486 msgid "" "Create an empty file with *filename*. If it already exists, truncate it." msgstr "" -#: library/test.rst:1431 +#: library/test.rst:1491 msgid "Count the number of open file descriptors." msgstr "" -#: library/test.rst:1436 +#: library/test.rst:1496 msgid "Return ``True`` if the file system for *directory* is case-insensitive." msgstr "" -#: library/test.rst:1441 +#: library/test.rst:1501 msgid "" "Create an invalid file descriptor by opening and closing a temporary file, " "and returning its descriptor." msgstr "" -#: library/test.rst:1447 +#: library/test.rst:1507 msgid "" "Call :func:`os.rmdir` on *filename*. On Windows platforms, this is wrapped " "with a wait loop that checks for the existence of the file, which is needed " "due to antivirus programs that can hold files open and prevent deletion." msgstr "" -#: library/test.rst:1455 +#: library/test.rst:1515 msgid "" "Call :func:`shutil.rmtree` on *path* or call :func:`os.lstat` and :func:`os." "rmdir` to remove a path and its contents. As with :func:`rmdir`, on Windows " @@ -1480,21 +1530,21 @@ msgid "" "the files." msgstr "" -#: library/test.rst:1463 +#: library/test.rst:1523 msgid "A decorator for running tests that require support for symbolic links." msgstr "" -#: library/test.rst:1468 +#: library/test.rst:1528 msgid "A decorator for running tests that require support for xattr." msgstr "" -#: library/test.rst:1473 +#: library/test.rst:1533 msgid "" "A context manager that temporarily creates a new directory and changes the " "current working directory (CWD)." msgstr "" -#: library/test.rst:1476 +#: library/test.rst:1536 msgid "" "The context manager creates a temporary directory in the current directory " "with name *name* before temporarily changing the current working directory. " @@ -1502,20 +1552,20 @@ msgid "" "`tempfile.mkdtemp`." msgstr "" -#: library/test.rst:1481 +#: library/test.rst:1541 msgid "" "If *quiet* is ``False`` and it is not possible to create or change the CWD, " "an error is raised. Otherwise, only a warning is raised and the original " "CWD is used." msgstr "" -#: library/test.rst:1488 +#: library/test.rst:1548 msgid "" "A context manager that creates a temporary directory at *path* and yields " "the directory." msgstr "" -#: library/test.rst:1491 +#: library/test.rst:1551 msgid "" "If *path* is ``None``, the temporary directory is created using :func:" "`tempfile.mkdtemp`. If *quiet* is ``False``, the context manager raises an " @@ -1523,34 +1573,34 @@ msgid "" "created, only a warning is issued." msgstr "" -#: library/test.rst:1499 +#: library/test.rst:1559 msgid "A context manager that temporarily sets the process umask." msgstr "" -#: library/test.rst:1504 +#: library/test.rst:1564 msgid "" "Call :func:`os.unlink` on *filename*. As with :func:`rmdir`, on Windows " "platforms, this is wrapped with a wait loop that checks for the existence of " "the file." msgstr "" -#: library/test.rst:1510 +#: library/test.rst:1570 msgid ":mod:`test.support.import_helper` --- Utilities for import tests" msgstr "" -#: library/test.rst:1515 +#: library/test.rst:1575 msgid "" "The :mod:`test.support.import_helper` module provides support for import " "tests." msgstr "" -#: library/test.rst:1522 +#: library/test.rst:1582 msgid "" "Remove the module named *module_name* from ``sys.modules`` and delete any " "byte-compiled files of the module." msgstr "" -#: library/test.rst:1528 +#: library/test.rst:1588 msgid "" "This function imports and returns a fresh copy of the named Python module by " "removing the named module from ``sys.modules`` before doing the import. Note " @@ -1558,46 +1608,46 @@ msgid "" "operation." msgstr "" -#: library/test.rst:1533 +#: library/test.rst:1593 msgid "" "*fresh* is an iterable of additional module names that are also removed from " "the ``sys.modules`` cache before doing the import." msgstr "" -#: library/test.rst:1536 +#: library/test.rst:1596 msgid "" "*blocked* is an iterable of module names that are replaced with ``None`` in " "the module cache during the import to ensure that attempts to import them " "raise :exc:`ImportError`." msgstr "" -#: library/test.rst:1540 +#: library/test.rst:1600 msgid "" "The named module and any modules named in the *fresh* and *blocked* " "parameters are saved before starting the import and then reinserted into " "``sys.modules`` when the fresh import is complete." msgstr "" -#: library/test.rst:1544 +#: library/test.rst:1604 msgid "" "Module and package deprecation messages are suppressed during this import if " "*deprecated* is ``True``." msgstr "" -#: library/test.rst:1547 +#: library/test.rst:1607 msgid "" "This function will raise :exc:`ImportError` if the named module cannot be " "imported." msgstr "" -#: library/test.rst:1564 +#: library/test.rst:1624 msgid "" "This function imports and returns the named module. Unlike a normal import, " "this function raises :exc:`unittest.SkipTest` if the module cannot be " "imported." msgstr "" -#: library/test.rst:1568 +#: library/test.rst:1628 msgid "" "Module and package deprecation messages are suppressed during this import if " "*deprecated* is ``True``. If a module is required on a platform but " @@ -1605,21 +1655,21 @@ msgid "" "which will be compared against :data:`sys.platform`." msgstr "" -#: library/test.rst:1578 +#: library/test.rst:1638 msgid "Return a copy of :data:`sys.modules`." msgstr "" -#: library/test.rst:1583 +#: library/test.rst:1643 msgid "" "Remove modules except for *oldmodules* and ``encodings`` in order to " "preserve internal cache." msgstr "" -#: library/test.rst:1589 +#: library/test.rst:1649 msgid "Delete *name* from ``sys.modules``." msgstr "" -#: library/test.rst:1594 +#: library/test.rst:1654 msgid "" "Move a :pep:`3147`/:pep:`488` pyc file to its legacy pyc location and return " "the file system path to the legacy pyc file. The *source* value is the file " @@ -1627,42 +1677,42 @@ msgid "" "3147/488 pyc file must exist." msgstr "" -#: library/test.rst:1602 +#: library/test.rst:1662 msgid "" "A context manager to force import to return a new module reference. This is " "useful for testing module-level behaviors, such as the emission of a :exc:" "`DeprecationWarning` on import. Example usage::" msgstr "" -#: library/test.rst:1612 +#: library/test.rst:1672 msgid "A context manager to temporarily add directories to :data:`sys.path`." msgstr "" -#: library/test.rst:1614 +#: library/test.rst:1674 msgid "" "This makes a copy of :data:`sys.path`, appends any directories given as " "positional arguments, then reverts :data:`sys.path` to the copied settings " "when the context ends." msgstr "" -#: library/test.rst:1618 +#: library/test.rst:1678 msgid "" "Note that *all* :data:`sys.path` modifications in the body of the context " "manager, including replacement of the object, will be reverted at the end of " "the block." msgstr "" -#: library/test.rst:1624 +#: library/test.rst:1684 msgid ":mod:`test.support.warnings_helper` --- Utilities for warnings tests" msgstr "" -#: library/test.rst:1629 +#: library/test.rst:1689 msgid "" "The :mod:`test.support.warnings_helper` module provides support for warnings " "tests." msgstr "" -#: library/test.rst:1636 +#: library/test.rst:1696 msgid "" "Suppress warnings that are instances of *category*, which must be :exc:" "`Warning` or a subclass. Roughly equivalent to :func:`warnings." @@ -1670,14 +1720,14 @@ msgid "" "category=category) `. For example::" msgstr "" -#: library/test.rst:1651 +#: library/test.rst:1711 msgid "" "Context manager to check that no :exc:`ResourceWarning` was raised. You " "must remove the object which may emit :exc:`ResourceWarning` before the end " "of the context manager." msgstr "" -#: library/test.rst:1658 +#: library/test.rst:1718 msgid "" "Test for syntax warning in *statement* by attempting to compile *statement*. " "Test also that the :exc:`SyntaxWarning` is emitted only once, and that it " @@ -1689,7 +1739,7 @@ msgid "" "``None``, compares to the offset of the exception." msgstr "" -#: library/test.rst:1672 +#: library/test.rst:1732 msgid "" "A convenience wrapper for :func:`warnings.catch_warnings()` that makes it " "easier to test that a warning was correctly raised. It is approximately " @@ -1698,7 +1748,7 @@ msgid "" "automatically validate the results that are recorded." msgstr "" -#: library/test.rst:1678 +#: library/test.rst:1738 msgid "" "``check_warnings`` accepts 2-tuples of the form ``(\"message regexp\", " "WarningCategory)`` as positional arguments. If one or more *filters* are " @@ -1710,15 +1760,15 @@ msgid "" "*quiet* to ``True``." msgstr "" -#: library/test.rst:1687 +#: library/test.rst:1747 msgid "If no arguments are specified, it defaults to::" msgstr "" -#: library/test.rst:1691 +#: library/test.rst:1751 msgid "In this case all warnings are caught and no errors are raised." msgstr "" -#: library/test.rst:1693 +#: library/test.rst:1753 msgid "" "On entry to the context manager, a :class:`WarningRecorder` instance is " "returned. The underlying warnings list from :func:`~warnings.catch_warnings` " @@ -1730,39 +1780,39 @@ msgid "" "return ``None``." msgstr "" -#: library/test.rst:1702 +#: library/test.rst:1762 msgid "" "The recorder object also has a :meth:`reset` method, which clears the " "warnings list." msgstr "" -#: library/test.rst:1705 +#: library/test.rst:1765 msgid "The context manager is designed to be used like this::" msgstr "" -#: library/test.rst:1712 +#: library/test.rst:1772 msgid "" "In this case if either warning was not raised, or some other warning was " "raised, :func:`check_warnings` would raise an error." msgstr "" -#: library/test.rst:1715 +#: library/test.rst:1775 msgid "" "When a test needs to look more deeply into the warnings, rather than just " "checking whether or not they occurred, code like this can be used::" msgstr "" -#: library/test.rst:1729 +#: library/test.rst:1789 msgid "" "Here all warnings will be caught, and the test code tests the captured " "warnings directly." msgstr "" -#: library/test.rst:1732 +#: library/test.rst:1792 msgid "New optional arguments *filters* and *quiet*." msgstr "" -#: library/test.rst:1738 +#: library/test.rst:1798 msgid "" "Class used to record warnings for unit tests. See documentation of :func:" "`check_warnings` above for more details." diff --git a/library/threading.po b/library/threading.po index fa53e6a51..79c478d1a 100644 --- a/library/threading.po +++ b/library/threading.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -193,10 +193,10 @@ msgid "" "after which the value may be recycled by the OS)." msgstr "" -#: library/threading.rst:130 +#: library/threading.rst:465 msgid "" ":ref:`Availability `: Windows, FreeBSD, Linux, macOS, OpenBSD, " -"NetBSD, AIX." +"NetBSD, AIX, DragonFlyBSD." msgstr "" #: library/threading.rst:137 @@ -221,22 +221,46 @@ msgid "" "before its :meth:`~Thread.run` method is called." msgstr "" -#: library/threading.rst:168 -msgid "Get the trace function as set by :func:`settrace`." +#: library/threading.rst:163 +msgid "" +"Set a trace function for all threads started from the :mod:`threading` " +"module and all Python threads that are currently executing." +msgstr "" + +#: library/threading.rst:166 +msgid "" +"The *func* will be passed to :func:`sys.settrace` for each thread, before " +"its :meth:`~Thread.run` method is called." msgstr "" #: library/threading.rst:177 +msgid "Get the trace function as set by :func:`settrace`." +msgstr "" + +#: library/threading.rst:186 msgid "" "Set a profile function for all threads started from the :mod:`threading` " "module. The *func* will be passed to :func:`sys.setprofile` for each " "thread, before its :meth:`~Thread.run` method is called." msgstr "" -#: library/threading.rst:186 +#: library/threading.rst:192 +msgid "" +"Set a profile function for all threads started from the :mod:`threading` " +"module and all Python threads that are currently executing." +msgstr "" + +#: library/threading.rst:195 +msgid "" +"The *func* will be passed to :func:`sys.setprofile` for each thread, before " +"its :meth:`~Thread.run` method is called." +msgstr "" + +#: library/threading.rst:204 msgid "Get the profiler function as set by :func:`setprofile`." msgstr "" -#: library/threading.rst:193 +#: library/threading.rst:211 msgid "" "Return the thread stack size used when creating new threads. The optional " "*size* argument specifies the stack size to be used for subsequently created " @@ -255,19 +279,19 @@ msgid "" "information)." msgstr "" -#: library/threading.rst:208 +#: library/threading.rst:226 msgid ":ref:`Availability `: Windows, pthreads." msgstr "" -#: library/threading.rst:210 +#: library/threading.rst:228 msgid "Unix platforms with POSIX threads support." msgstr "" -#: library/threading.rst:213 +#: library/threading.rst:231 msgid "This module also defines the following constant:" msgstr "" -#: library/threading.rst:217 +#: library/threading.rst:235 msgid "" "The maximum value allowed for the *timeout* parameter of blocking functions " "(:meth:`Lock.acquire`, :meth:`RLock.acquire`, :meth:`Condition.wait`, etc.). " @@ -275,13 +299,13 @@ msgid "" "`OverflowError`." msgstr "" -#: library/threading.rst:225 +#: library/threading.rst:243 msgid "" "This module defines a number of classes, which are detailed in the sections " "below." msgstr "" -#: library/threading.rst:228 +#: library/threading.rst:246 msgid "" "The design of this module is loosely based on Java's threading model. " "However, where Java makes locks and condition variables basic behavior of " @@ -292,40 +316,40 @@ msgid "" "Thread class, when implemented, are mapped to module-level functions." msgstr "" -#: library/threading.rst:236 +#: library/threading.rst:254 msgid "All of the methods described below are executed atomically." msgstr "" -#: library/threading.rst:240 +#: library/threading.rst:258 msgid "Thread-Local Data" msgstr "" -#: library/threading.rst:242 +#: library/threading.rst:260 msgid "" "Thread-local data is data whose values are thread specific. To manage " "thread-local data, just create an instance of :class:`local` (or a subclass) " "and store attributes on it::" msgstr "" -#: library/threading.rst:249 +#: library/threading.rst:267 msgid "The instance's values will be different for separate threads." msgstr "" -#: library/threading.rst:254 +#: library/threading.rst:272 msgid "A class that represents thread-local data." msgstr "" -#: library/threading.rst:256 +#: library/threading.rst:274 msgid "" "For more details and extensive examples, see the documentation string of " "the :mod:`!_threading_local` module: :source:`Lib/_threading_local.py`." msgstr "" -#: library/threading.rst:263 +#: library/threading.rst:281 msgid "Thread Objects" msgstr "" -#: library/threading.rst:265 +#: library/threading.rst:283 msgid "" "The :class:`Thread` class represents an activity that is run in a separate " "thread of control. There are two ways to specify the activity: by passing a " @@ -335,14 +359,14 @@ msgid "" "``__init__()`` and :meth:`~Thread.run` methods of this class." msgstr "" -#: library/threading.rst:272 +#: library/threading.rst:290 msgid "" "Once a thread object is created, its activity must be started by calling the " "thread's :meth:`~Thread.start` method. This invokes the :meth:`~Thread.run` " "method in a separate thread of control." msgstr "" -#: library/threading.rst:276 +#: library/threading.rst:294 msgid "" "Once the thread's activity is started, the thread is considered 'alive'. It " "stops being alive when its :meth:`~Thread.run` method terminates -- either " @@ -350,27 +374,27 @@ msgid "" "is_alive` method tests whether the thread is alive." msgstr "" -#: library/threading.rst:281 +#: library/threading.rst:299 msgid "" "Other threads can call a thread's :meth:`~Thread.join` method. This blocks " "the calling thread until the thread whose :meth:`~Thread.join` method is " "called is terminated." msgstr "" -#: library/threading.rst:285 +#: library/threading.rst:303 msgid "" "A thread has a name. The name can be passed to the constructor, and read or " "changed through the :attr:`~Thread.name` attribute." msgstr "" -#: library/threading.rst:288 +#: library/threading.rst:306 msgid "" "If the :meth:`~Thread.run` method raises an exception, :func:`threading." "excepthook` is called to handle it. By default, :func:`threading.excepthook` " "ignores silently :exc:`SystemExit`." msgstr "" -#: library/threading.rst:292 +#: library/threading.rst:310 msgid "" "A thread can be flagged as a \"daemon thread\". The significance of this " "flag is that the entire Python program exits when only daemon threads are " @@ -379,7 +403,7 @@ msgid "" "constructor argument." msgstr "" -#: library/threading.rst:299 +#: library/threading.rst:317 msgid "" "Daemon threads are abruptly stopped at shutdown. Their resources (such as " "open files, database transactions, etc.) may not be released properly. If " @@ -387,13 +411,13 @@ msgid "" "suitable signalling mechanism such as an :class:`Event`." msgstr "" -#: library/threading.rst:304 +#: library/threading.rst:322 msgid "" "There is a \"main thread\" object; this corresponds to the initial thread of " "control in the Python program. It is not a daemon thread." msgstr "" -#: library/threading.rst:307 +#: library/threading.rst:325 msgid "" "There is the possibility that \"dummy thread objects\" are created. These " "are thread objects corresponding to \"alien threads\", which are threads of " @@ -404,25 +428,25 @@ msgid "" "threads." msgstr "" -#: library/threading.rst:318 +#: library/threading.rst:336 msgid "" "This constructor should always be called with keyword arguments. Arguments " "are:" msgstr "" -#: library/threading.rst:321 +#: library/threading.rst:339 msgid "" "*group* should be ``None``; reserved for future extension when a :class:`!" "ThreadGroup` class is implemented." msgstr "" -#: library/threading.rst:324 +#: library/threading.rst:342 msgid "" "*target* is the callable object to be invoked by the :meth:`run` method. " "Defaults to ``None``, meaning nothing is called." msgstr "" -#: library/threading.rst:327 +#: library/threading.rst:345 msgid "" "*name* is the thread name. By default, a unique name is constructed of the " "form \"Thread-*N*\" where *N* is a small decimal number, or \"Thread-*N* " @@ -430,62 +454,62 @@ msgid "" "is specified." msgstr "" -#: library/threading.rst:332 +#: library/threading.rst:350 msgid "" "*args* is a list or tuple of arguments for the target invocation. Defaults " "to ``()``." msgstr "" -#: library/threading.rst:334 +#: library/threading.rst:352 msgid "" "*kwargs* is a dictionary of keyword arguments for the target invocation. " "Defaults to ``{}``." msgstr "" -#: library/threading.rst:337 +#: library/threading.rst:355 msgid "" "If not ``None``, *daemon* explicitly sets whether the thread is daemonic. If " "``None`` (the default), the daemonic property is inherited from the current " "thread." msgstr "" -#: library/threading.rst:341 +#: library/threading.rst:359 msgid "" "If the subclass overrides the constructor, it must make sure to invoke the " "base class constructor (``Thread.__init__()``) before doing anything else to " "the thread." msgstr "" -#: library/threading.rst:345 +#: library/threading.rst:363 msgid "Use the *target* name if *name* argument is omitted." msgstr "" -#: library/threading.rst:348 +#: library/threading.rst:366 msgid "Added the *daemon* argument." msgstr "" -#: library/threading.rst:353 +#: library/threading.rst:371 msgid "Start the thread's activity." msgstr "" -#: library/threading.rst:355 +#: library/threading.rst:373 msgid "" "It must be called at most once per thread object. It arranges for the " "object's :meth:`~Thread.run` method to be invoked in a separate thread of " "control." msgstr "" -#: library/threading.rst:359 +#: library/threading.rst:377 msgid "" "This method will raise a :exc:`RuntimeError` if called more than once on the " "same thread object." msgstr "" -#: library/threading.rst:364 +#: library/threading.rst:382 msgid "Method representing the thread's activity." msgstr "" -#: library/threading.rst:366 +#: library/threading.rst:384 msgid "" "You may override this method in a subclass. The standard :meth:`run` method " "invokes the callable object passed to the object's constructor as the " @@ -493,17 +517,17 @@ msgid "" "the *args* and *kwargs* arguments, respectively." msgstr "" -#: library/threading.rst:371 +#: library/threading.rst:389 msgid "" "Using list or tuple as the *args* argument which passed to the :class:" "`Thread` could achieve the same effect." msgstr "" -#: library/threading.rst:374 +#: library/threading.rst:392 msgid "Example::" msgstr "" -#: library/threading.rst:388 +#: library/threading.rst:406 msgid "" "Wait until the thread terminates. This blocks the calling thread until the " "thread whose :meth:`~Thread.join` method is called terminates -- either " @@ -511,7 +535,7 @@ msgid "" "occurs." msgstr "" -#: library/threading.rst:393 +#: library/threading.rst:411 msgid "" "When the *timeout* argument is present and not ``None``, it should be a " "floating point number specifying a timeout for the operation in seconds (or " @@ -521,17 +545,17 @@ msgid "" "`~Thread.join` call timed out." msgstr "" -#: library/threading.rst:400 +#: library/threading.rst:418 msgid "" "When the *timeout* argument is not present or ``None``, the operation will " "block until the thread terminates." msgstr "" -#: library/threading.rst:403 +#: library/threading.rst:421 msgid "A thread can be joined many times." msgstr "" -#: library/threading.rst:405 +#: library/threading.rst:423 msgid "" ":meth:`~Thread.join` raises a :exc:`RuntimeError` if an attempt is made to " "join the current thread as that would cause a deadlock. It is also an error " @@ -539,20 +563,20 @@ msgid "" "do so raise the same exception." msgstr "" -#: library/threading.rst:412 +#: library/threading.rst:430 msgid "" "A string used for identification purposes only. It has no semantics. " "Multiple threads may be given the same name. The initial name is set by the " "constructor." msgstr "" -#: library/threading.rst:419 +#: library/threading.rst:437 msgid "" "Deprecated getter/setter API for :attr:`~Thread.name`; use it directly as a " "property instead." msgstr "" -#: library/threading.rst:426 +#: library/threading.rst:444 msgid "" "The 'thread identifier' of this thread or ``None`` if the thread has not " "been started. This is a nonzero integer. See the :func:`get_ident` " @@ -561,7 +585,7 @@ msgid "" "thread has exited." msgstr "" -#: library/threading.rst:434 +#: library/threading.rst:452 msgid "" "The Thread ID (``TID``) of this thread, as assigned by the OS (kernel). This " "is a non-negative integer, or ``None`` if the thread has not been started. " @@ -570,31 +594,25 @@ msgid "" "after which the value may be recycled by the OS)." msgstr "" -#: library/threading.rst:443 +#: library/threading.rst:461 msgid "" "Similar to Process IDs, Thread IDs are only valid (guaranteed unique system-" "wide) from the time the thread is created until the thread has been " "terminated." msgstr "" -#: library/threading.rst:447 -msgid "" -":ref:`Availability `: Windows, FreeBSD, Linux, macOS, OpenBSD, " -"NetBSD, AIX, DragonFlyBSD." -msgstr "" - -#: library/threading.rst:453 +#: library/threading.rst:471 msgid "Return whether the thread is alive." msgstr "" -#: library/threading.rst:455 +#: library/threading.rst:473 msgid "" "This method returns ``True`` just before the :meth:`~Thread.run` method " "starts until just after the :meth:`~Thread.run` method terminates. The " "module function :func:`.enumerate` returns a list of all alive threads." msgstr "" -#: library/threading.rst:461 +#: library/threading.rst:479 msgid "" "A boolean value indicating whether this thread is a daemon thread (``True``) " "or not (``False``). This must be set before :meth:`~Thread.start` is " @@ -604,22 +622,22 @@ msgid "" "`~Thread.daemon` = ``False``." msgstr "" -#: library/threading.rst:468 +#: library/threading.rst:486 msgid "" "The entire Python program exits when no alive non-daemon threads are left." msgstr "" -#: library/threading.rst:473 +#: library/threading.rst:491 msgid "" "Deprecated getter/setter API for :attr:`~Thread.daemon`; use it directly as " "a property instead." msgstr "" -#: library/threading.rst:482 +#: library/threading.rst:500 msgid "Lock Objects" msgstr "" -#: library/threading.rst:484 +#: library/threading.rst:502 msgid "" "A primitive lock is a synchronization primitive that is not owned by a " "particular thread when locked. In Python, it is currently the lowest level " @@ -627,7 +645,7 @@ msgid "" "`_thread` extension module." msgstr "" -#: library/threading.rst:489 +#: library/threading.rst:507 msgid "" "A primitive lock is in one of two states, \"locked\" or \"unlocked\". It is " "created in the unlocked state. It has two basic methods, :meth:`~Lock." @@ -641,11 +659,11 @@ msgid "" "an unlocked lock, a :exc:`RuntimeError` will be raised." msgstr "" -#: library/threading.rst:500 +#: library/threading.rst:518 msgid "Locks also support the :ref:`context management protocol `." msgstr "" -#: library/threading.rst:502 +#: library/threading.rst:520 msgid "" "When more than one thread is blocked in :meth:`~Lock.acquire` waiting for " "the state to turn to unlocked, only one thread proceeds when a :meth:`~Lock." @@ -653,42 +671,42 @@ msgid "" "proceeds is not defined, and may vary across implementations." msgstr "" -#: library/threading.rst:507 +#: library/threading.rst:525 msgid "All methods are executed atomically." msgstr "" -#: library/threading.rst:512 +#: library/threading.rst:530 msgid "" "The class implementing primitive lock objects. Once a thread has acquired a " "lock, subsequent attempts to acquire it block, until it is released; any " "thread may release it." msgstr "" -#: library/threading.rst:516 +#: library/threading.rst:534 msgid "" "Note that ``Lock`` is actually a factory function which returns an instance " "of the most efficient version of the concrete Lock class that is supported " "by the platform." msgstr "" -#: library/threading.rst:603 +#: library/threading.rst:621 msgid "Acquire a lock, blocking or non-blocking." msgstr "" -#: library/threading.rst:525 +#: library/threading.rst:543 msgid "" "When invoked with the *blocking* argument set to ``True`` (the default), " "block until the lock is unlocked, then set it to locked and return ``True``." msgstr "" -#: library/threading.rst:528 +#: library/threading.rst:546 msgid "" "When invoked with the *blocking* argument set to ``False``, do not block. If " "a call with *blocking* set to ``True`` would block, return ``False`` " "immediately; otherwise, set the lock to locked and return ``True``." msgstr "" -#: library/threading.rst:532 +#: library/threading.rst:550 msgid "" "When invoked with the floating-point *timeout* argument set to a positive " "value, block for at most the number of seconds specified by *timeout* and as " @@ -697,52 +715,52 @@ msgid "" "*blocking* is ``False``." msgstr "" -#: library/threading.rst:538 +#: library/threading.rst:556 msgid "" "The return value is ``True`` if the lock is acquired successfully, ``False`` " "if not (for example if the *timeout* expired)." msgstr "" -#: library/threading.rst:625 library/threading.rst:872 +#: library/threading.rst:643 library/threading.rst:890 msgid "The *timeout* parameter is new." msgstr "" -#: library/threading.rst:544 +#: library/threading.rst:562 msgid "" "Lock acquisition can now be interrupted by signals on POSIX if the " "underlying threading implementation supports it." msgstr "" -#: library/threading.rst:551 +#: library/threading.rst:569 msgid "" "Release a lock. This can be called from any thread, not only the thread " "which has acquired the lock." msgstr "" -#: library/threading.rst:554 +#: library/threading.rst:572 msgid "" "When the lock is locked, reset it to unlocked, and return. If any other " "threads are blocked waiting for the lock to become unlocked, allow exactly " "one of them to proceed." msgstr "" -#: library/threading.rst:558 +#: library/threading.rst:576 msgid "When invoked on an unlocked lock, a :exc:`RuntimeError` is raised." msgstr "" -#: library/threading.rst:641 +#: library/threading.rst:659 msgid "There is no return value." msgstr "" -#: library/threading.rst:564 +#: library/threading.rst:582 msgid "Return ``True`` if the lock is acquired." msgstr "" -#: library/threading.rst:571 +#: library/threading.rst:589 msgid "RLock Objects" msgstr "" -#: library/threading.rst:573 +#: library/threading.rst:591 msgid "" "A reentrant lock is a synchronization primitive that may be acquired " "multiple times by the same thread. Internally, it uses the concepts of " @@ -751,7 +769,7 @@ msgid "" "lock; in the unlocked state, no thread owns it." msgstr "" -#: library/threading.rst:579 +#: library/threading.rst:597 msgid "" "To lock the lock, a thread calls its :meth:`~RLock.acquire` method; this " "returns once the thread owns the lock. To unlock the lock, a thread calls " @@ -762,13 +780,13 @@ msgid "" "proceed." msgstr "" -#: library/threading.rst:586 +#: library/threading.rst:604 msgid "" "Reentrant locks also support the :ref:`context management protocol `." msgstr "" -#: library/threading.rst:591 +#: library/threading.rst:609 msgid "" "This class implements reentrant lock objects. A reentrant lock must be " "released by the thread that acquired it. Once a thread has acquired a " @@ -776,14 +794,14 @@ msgid "" "thread must release it once for each time it has acquired it." msgstr "" -#: library/threading.rst:596 +#: library/threading.rst:614 msgid "" "Note that ``RLock`` is actually a factory function which returns an instance " "of the most efficient version of the concrete RLock class that is supported " "by the platform." msgstr "" -#: library/threading.rst:605 +#: library/threading.rst:623 msgid "" "When invoked without arguments: if this thread already owns the lock, " "increment the recursion level by one, and return immediately. Otherwise, if " @@ -794,13 +812,13 @@ msgid "" "ownership of the lock. There is no return value in this case." msgstr "" -#: library/threading.rst:613 +#: library/threading.rst:631 msgid "" "When invoked with the *blocking* argument set to ``True``, do the same thing " "as when called without arguments, and return ``True``." msgstr "" -#: library/threading.rst:616 +#: library/threading.rst:634 msgid "" "When invoked with the *blocking* argument set to ``False``, do not block. " "If a call without an argument would block, return ``False`` immediately; " @@ -808,7 +826,7 @@ msgid "" "``True``." msgstr "" -#: library/threading.rst:620 +#: library/threading.rst:638 msgid "" "When invoked with the floating-point *timeout* argument set to a positive " "value, block for at most the number of seconds specified by *timeout* and as " @@ -816,7 +834,7 @@ msgid "" "acquired, ``False`` if the timeout has elapsed." msgstr "" -#: library/threading.rst:631 +#: library/threading.rst:649 msgid "" "Release a lock, decrementing the recursion level. If after the decrement it " "is zero, reset the lock to unlocked (not owned by any thread), and if any " @@ -825,17 +843,17 @@ msgid "" "is still nonzero, the lock remains locked and owned by the calling thread." msgstr "" -#: library/threading.rst:637 +#: library/threading.rst:655 msgid "" "Only call this method when the calling thread owns the lock. A :exc:" "`RuntimeError` is raised if this method is called when the lock is unlocked." msgstr "" -#: library/threading.rst:647 +#: library/threading.rst:665 msgid "Condition Objects" msgstr "" -#: library/threading.rst:649 +#: library/threading.rst:667 msgid "" "A condition variable is always associated with some kind of lock; this can " "be passed in or one will be created by default. Passing one in is useful " @@ -843,7 +861,7 @@ msgid "" "of the condition object: you don't have to track it separately." msgstr "" -#: library/threading.rst:654 +#: library/threading.rst:672 msgid "" "A condition variable obeys the :ref:`context management protocol `: using the ``with`` statement acquires the associated lock for the " @@ -852,7 +870,7 @@ msgid "" "associated lock." msgstr "" -#: library/threading.rst:660 +#: library/threading.rst:678 msgid "" "Other methods must be called with the associated lock held. The :meth:" "`~Condition.wait` method releases the lock, and then blocks until another " @@ -861,14 +879,14 @@ msgid "" "and returns. It is also possible to specify a timeout." msgstr "" -#: library/threading.rst:666 +#: library/threading.rst:684 msgid "" "The :meth:`~Condition.notify` method wakes up one of the threads waiting for " "the condition variable, if any are waiting. The :meth:`~Condition." "notify_all` method wakes up all threads waiting for the condition variable." msgstr "" -#: library/threading.rst:670 +#: library/threading.rst:688 msgid "" "Note: the :meth:`~Condition.notify` and :meth:`~Condition.notify_all` " "methods don't release the lock; this means that the thread or threads " @@ -877,7 +895,7 @@ msgid "" "or :meth:`~Condition.notify_all` finally relinquishes ownership of the lock." msgstr "" -#: library/threading.rst:676 +#: library/threading.rst:694 msgid "" "The typical programming style using condition variables uses the lock to " "synchronize access to some shared state; threads that are interested in a " @@ -889,7 +907,7 @@ msgid "" "situation with unlimited buffer capacity::" msgstr "" -#: library/threading.rst:696 +#: library/threading.rst:714 msgid "" "The ``while`` loop checking for the application's condition is necessary " "because :meth:`~Condition.wait` can return after an arbitrary long time, and " @@ -899,7 +917,7 @@ msgid "" "checking, and eases the computation of timeouts::" msgstr "" -#: library/threading.rst:708 +#: library/threading.rst:726 msgid "" "To choose between :meth:`~Condition.notify` and :meth:`~Condition." "notify_all`, consider whether one state change can be interesting for only " @@ -908,44 +926,44 @@ msgid "" "thread." msgstr "" -#: library/threading.rst:716 +#: library/threading.rst:734 msgid "" "This class implements condition variable objects. A condition variable " "allows one or more threads to wait until they are notified by another thread." msgstr "" -#: library/threading.rst:719 +#: library/threading.rst:737 msgid "" "If the *lock* argument is given and not ``None``, it must be a :class:`Lock` " "or :class:`RLock` object, and it is used as the underlying lock. Otherwise, " "a new :class:`RLock` object is created and used as the underlying lock." msgstr "" -#: library/threading.rst:847 library/threading.rst:945 -#: library/threading.rst:1016 +#: library/threading.rst:865 library/threading.rst:963 +#: library/threading.rst:1034 msgid "changed from a factory function to a class." msgstr "" -#: library/threading.rst:728 +#: library/threading.rst:746 msgid "" "Acquire the underlying lock. This method calls the corresponding method on " "the underlying lock; the return value is whatever that method returns." msgstr "" -#: library/threading.rst:733 +#: library/threading.rst:751 msgid "" "Release the underlying lock. This method calls the corresponding method on " "the underlying lock; there is no return value." msgstr "" -#: library/threading.rst:738 +#: library/threading.rst:756 msgid "" "Wait until notified or until a timeout occurs. If the calling thread has not " "acquired the lock when this method is called, a :exc:`RuntimeError` is " "raised." msgstr "" -#: library/threading.rst:742 +#: library/threading.rst:760 msgid "" "This method releases the underlying lock, and then blocks until it is " "awakened by a :meth:`notify` or :meth:`notify_all` call for the same " @@ -953,14 +971,14 @@ msgid "" "Once awakened or timed out, it re-acquires the lock and returns." msgstr "" -#: library/threading.rst:747 +#: library/threading.rst:765 msgid "" "When the *timeout* argument is present and not ``None``, it should be a " "floating point number specifying a timeout for the operation in seconds (or " "fractions thereof)." msgstr "" -#: library/threading.rst:751 +#: library/threading.rst:769 msgid "" "When the underlying lock is an :class:`RLock`, it is not released using its :" "meth:`release` method, since this may not actually unlock the lock when it " @@ -970,24 +988,24 @@ msgid "" "used to restore the recursion level when the lock is reacquired." msgstr "" -#: library/threading.rst:759 +#: library/threading.rst:777 msgid "" "The return value is ``True`` unless a given *timeout* expired, in which case " "it is ``False``." msgstr "" -#: library/threading.rst:981 +#: library/threading.rst:999 msgid "Previously, the method always returned ``None``." msgstr "" -#: library/threading.rst:767 +#: library/threading.rst:785 msgid "" "Wait until a condition evaluates to true. *predicate* should be a callable " "which result will be interpreted as a boolean value. A *timeout* may be " "provided giving the maximum time to wait." msgstr "" -#: library/threading.rst:771 +#: library/threading.rst:789 msgid "" "This utility method may call :meth:`wait` repeatedly until the predicate is " "satisfied, or until a timeout occurs. The return value is the last return " @@ -995,33 +1013,33 @@ msgid "" "out." msgstr "" -#: library/threading.rst:776 +#: library/threading.rst:794 msgid "" "Ignoring the timeout feature, calling this method is roughly equivalent to " "writing::" msgstr "" -#: library/threading.rst:782 +#: library/threading.rst:800 msgid "" "Therefore, the same rules apply as with :meth:`wait`: The lock must be held " "when called and is re-acquired on return. The predicate is evaluated with " "the lock held." msgstr "" -#: library/threading.rst:790 +#: library/threading.rst:808 msgid "" "By default, wake up one thread waiting on this condition, if any. If the " "calling thread has not acquired the lock when this method is called, a :exc:" "`RuntimeError` is raised." msgstr "" -#: library/threading.rst:794 +#: library/threading.rst:812 msgid "" "This method wakes up at most *n* of the threads waiting for the condition " "variable; it is a no-op if no threads are waiting." msgstr "" -#: library/threading.rst:797 +#: library/threading.rst:815 msgid "" "The current implementation wakes up exactly *n* threads, if at least *n* " "threads are waiting. However, it's not safe to rely on this behavior. A " @@ -1029,14 +1047,14 @@ msgid "" "threads." msgstr "" -#: library/threading.rst:802 +#: library/threading.rst:820 msgid "" "Note: an awakened thread does not actually return from its :meth:`wait` call " "until it can reacquire the lock. Since :meth:`notify` does not release the " "lock, its caller should." msgstr "" -#: library/threading.rst:808 +#: library/threading.rst:826 msgid "" "Wake up all threads waiting on this condition. This method acts like :meth:" "`notify`, but wakes up all waiting threads instead of one. If the calling " @@ -1044,15 +1062,15 @@ msgid "" "`RuntimeError` is raised." msgstr "" -#: library/threading.rst:813 +#: library/threading.rst:831 msgid "The method ``notifyAll`` is a deprecated alias for this method." msgstr "" -#: library/threading.rst:819 +#: library/threading.rst:837 msgid "Semaphore Objects" msgstr "" -#: library/threading.rst:821 +#: library/threading.rst:839 msgid "" "This is one of the oldest synchronization primitives in the history of " "computer science, invented by the early Dutch computer scientist Edsger W. " @@ -1060,7 +1078,7 @@ msgid "" "acquire` and :meth:`~Semaphore.release`)." msgstr "" -#: library/threading.rst:826 +#: library/threading.rst:844 msgid "" "A semaphore manages an internal counter which is decremented by each :meth:" "`~Semaphore.acquire` call and incremented by each :meth:`~Semaphore.release` " @@ -1069,12 +1087,12 @@ msgid "" "meth:`~Semaphore.release`." msgstr "" -#: library/threading.rst:832 +#: library/threading.rst:850 msgid "" "Semaphores also support the :ref:`context management protocol `." msgstr "" -#: library/threading.rst:837 +#: library/threading.rst:855 msgid "" "This class implements semaphore objects. A semaphore manages an atomic " "counter representing the number of :meth:`release` calls minus the number " @@ -1083,28 +1101,28 @@ msgid "" "If not given, *value* defaults to 1." msgstr "" -#: library/threading.rst:843 +#: library/threading.rst:861 msgid "" "The optional argument gives the initial *value* for the internal counter; it " "defaults to ``1``. If the *value* given is less than 0, :exc:`ValueError` is " "raised." msgstr "" -#: library/threading.rst:852 +#: library/threading.rst:870 msgid "Acquire a semaphore." msgstr "" -#: library/threading.rst:854 +#: library/threading.rst:872 msgid "When invoked without arguments:" msgstr "" -#: library/threading.rst:856 +#: library/threading.rst:874 msgid "" "If the internal counter is larger than zero on entry, decrement it by one " "and return ``True`` immediately." msgstr "" -#: library/threading.rst:858 +#: library/threading.rst:876 msgid "" "If the internal counter is zero on entry, block until awoken by a call to :" "meth:`~Semaphore.release`. Once awoken (and the counter is greater than 0), " @@ -1113,32 +1131,32 @@ msgid "" "threads are awoken should not be relied on." msgstr "" -#: library/threading.rst:864 +#: library/threading.rst:882 msgid "" "When invoked with *blocking* set to ``False``, do not block. If a call " "without an argument would block, return ``False`` immediately; otherwise, do " "the same thing as when called without arguments, and return ``True``." msgstr "" -#: library/threading.rst:868 +#: library/threading.rst:886 msgid "" "When invoked with a *timeout* other than ``None``, it will block for at most " "*timeout* seconds. If acquire does not complete successfully in that " "interval, return ``False``. Return ``True`` otherwise." msgstr "" -#: library/threading.rst:877 +#: library/threading.rst:895 msgid "" "Release a semaphore, incrementing the internal counter by *n*. When it was " "zero on entry and other threads are waiting for it to become larger than " "zero again, wake up *n* of those threads." msgstr "" -#: library/threading.rst:881 +#: library/threading.rst:899 msgid "Added the *n* parameter to release multiple waiting threads at once." msgstr "" -#: library/threading.rst:887 +#: library/threading.rst:905 msgid "" "Class implementing bounded semaphore objects. A bounded semaphore checks to " "make sure its current value doesn't exceed its initial value. If it does, :" @@ -1147,11 +1165,11 @@ msgid "" "times it's a sign of a bug. If not given, *value* defaults to 1." msgstr "" -#: library/threading.rst:900 +#: library/threading.rst:918 msgid ":class:`Semaphore` Example" msgstr "" -#: library/threading.rst:902 +#: library/threading.rst:920 msgid "" "Semaphores are often used to guard resources with limited capacity, for " "example, a database server. In any situation where the size of the resource " @@ -1159,37 +1177,37 @@ msgid "" "threads, your main thread would initialize the semaphore::" msgstr "" -#: library/threading.rst:911 +#: library/threading.rst:929 msgid "" "Once spawned, worker threads call the semaphore's acquire and release " "methods when they need to connect to the server::" msgstr "" -#: library/threading.rst:921 +#: library/threading.rst:939 msgid "" "The use of a bounded semaphore reduces the chance that a programming error " "which causes the semaphore to be released more than it's acquired will go " "undetected." msgstr "" -#: library/threading.rst:928 +#: library/threading.rst:946 msgid "Event Objects" msgstr "" -#: library/threading.rst:930 +#: library/threading.rst:948 msgid "" "This is one of the simplest mechanisms for communication between threads: " "one thread signals an event and other threads wait for it." msgstr "" -#: library/threading.rst:933 +#: library/threading.rst:951 msgid "" "An event object manages an internal flag that can be set to true with the :" "meth:`~Event.set` method and reset to false with the :meth:`~Event.clear` " "method. The :meth:`~Event.wait` method blocks until the flag is true." msgstr "" -#: library/threading.rst:940 +#: library/threading.rst:958 msgid "" "Class implementing event objects. An event manages a flag that can be set " "to true with the :meth:`~Event.set` method and reset to false with the :meth:" @@ -1197,43 +1215,43 @@ msgid "" "flag is initially false." msgstr "" -#: library/threading.rst:950 +#: library/threading.rst:968 msgid "Return ``True`` if and only if the internal flag is true." msgstr "" -#: library/threading.rst:952 +#: library/threading.rst:970 msgid "The method ``isSet`` is a deprecated alias for this method." msgstr "" -#: library/threading.rst:956 +#: library/threading.rst:974 msgid "" "Set the internal flag to true. All threads waiting for it to become true are " "awakened. Threads that call :meth:`wait` once the flag is true will not " "block at all." msgstr "" -#: library/threading.rst:962 +#: library/threading.rst:980 msgid "" "Reset the internal flag to false. Subsequently, threads calling :meth:`wait` " "will block until :meth:`.set` is called to set the internal flag to true " "again." msgstr "" -#: library/threading.rst:968 +#: library/threading.rst:986 msgid "" "Block until the internal flag is true. If the internal flag is true on " "entry, return immediately. Otherwise, block until another thread calls :" "meth:`.set` to set the flag to true, or until the optional timeout occurs." msgstr "" -#: library/threading.rst:972 +#: library/threading.rst:990 msgid "" "When the timeout argument is present and not ``None``, it should be a " "floating point number specifying a timeout for the operation in seconds (or " "fractions thereof)." msgstr "" -#: library/threading.rst:976 +#: library/threading.rst:994 msgid "" "This method returns ``True`` if and only if the internal flag has been set " "to true, either before the wait call or after the wait starts, so it will " @@ -1241,11 +1259,11 @@ msgid "" "out." msgstr "" -#: library/threading.rst:988 +#: library/threading.rst:1006 msgid "Timer Objects" msgstr "" -#: library/threading.rst:990 +#: library/threading.rst:1008 msgid "" "This class represents an action that should be run only after a certain " "amount of time has passed --- a timer. :class:`Timer` is a subclass of :" @@ -1253,7 +1271,7 @@ msgid "" "threads." msgstr "" -#: library/threading.rst:994 +#: library/threading.rst:1012 msgid "" "Timers are started, as with threads, by calling their :meth:`Timer.start " "` method. The timer can be stopped (before its action has " @@ -1262,11 +1280,11 @@ msgid "" "interval specified by the user." msgstr "" -#: library/threading.rst:1000 +#: library/threading.rst:1018 msgid "For example::" msgstr "" -#: library/threading.rst:1011 +#: library/threading.rst:1029 msgid "" "Create a timer that will run *function* with arguments *args* and keyword " "arguments *kwargs*, after *interval* seconds have passed. If *args* is " @@ -1274,17 +1292,17 @@ msgid "" "``None`` (the default) then an empty dict will be used." msgstr "" -#: library/threading.rst:1021 +#: library/threading.rst:1039 msgid "" "Stop the timer, and cancel the execution of the timer's action. This will " "only work if the timer is still in its waiting stage." msgstr "" -#: library/threading.rst:1026 +#: library/threading.rst:1044 msgid "Barrier Objects" msgstr "" -#: library/threading.rst:1030 +#: library/threading.rst:1048 msgid "" "This class provides a simple synchronization primitive for use by a fixed " "number of threads that need to wait for each other. Each of the threads " @@ -1293,18 +1311,18 @@ msgid "" "calls. At this point, the threads are released simultaneously." msgstr "" -#: library/threading.rst:1036 +#: library/threading.rst:1054 msgid "" "The barrier can be reused any number of times for the same number of threads." msgstr "" -#: library/threading.rst:1038 +#: library/threading.rst:1056 msgid "" "As an example, here is a simple way to synchronize a client and server " "thread::" msgstr "" -#: library/threading.rst:1058 +#: library/threading.rst:1076 msgid "" "Create a barrier object for *parties* number of threads. An *action*, when " "provided, is a callable to be called by one of the threads when they are " @@ -1312,7 +1330,7 @@ msgid "" "the :meth:`wait` method." msgstr "" -#: library/threading.rst:1065 +#: library/threading.rst:1083 msgid "" "Pass the barrier. When all the threads party to the barrier have called " "this function, they are all released simultaneously. If a *timeout* is " @@ -1320,44 +1338,44 @@ msgid "" "constructor." msgstr "" -#: library/threading.rst:1070 +#: library/threading.rst:1088 msgid "" "The return value is an integer in the range 0 to *parties* -- 1, different " "for each thread. This can be used to select a thread to do some special " "housekeeping, e.g.::" msgstr "" -#: library/threading.rst:1079 +#: library/threading.rst:1097 msgid "" "If an *action* was provided to the constructor, one of the threads will have " "called it prior to being released. Should this call raise an error, the " "barrier is put into the broken state." msgstr "" -#: library/threading.rst:1083 +#: library/threading.rst:1101 msgid "If the call times out, the barrier is put into the broken state." msgstr "" -#: library/threading.rst:1085 +#: library/threading.rst:1103 msgid "" "This method may raise a :class:`BrokenBarrierError` exception if the barrier " "is broken or reset while a thread is waiting." msgstr "" -#: library/threading.rst:1090 +#: library/threading.rst:1108 msgid "" "Return the barrier to the default, empty state. Any threads waiting on it " "will receive the :class:`BrokenBarrierError` exception." msgstr "" -#: library/threading.rst:1093 +#: library/threading.rst:1111 msgid "" "Note that using this function may require some external synchronization if " "there are other threads whose state is unknown. If a barrier is broken it " "may be better to just leave it and create a new one." msgstr "" -#: library/threading.rst:1099 +#: library/threading.rst:1117 msgid "" "Put the barrier into a broken state. This causes any active or future calls " "to :meth:`wait` to fail with the :class:`BrokenBarrierError`. Use this for " @@ -1365,36 +1383,36 @@ msgid "" "application." msgstr "" -#: library/threading.rst:1104 +#: library/threading.rst:1122 msgid "" "It may be preferable to simply create the barrier with a sensible *timeout* " "value to automatically guard against one of the threads going awry." msgstr "" -#: library/threading.rst:1110 +#: library/threading.rst:1128 msgid "The number of threads required to pass the barrier." msgstr "" -#: library/threading.rst:1114 +#: library/threading.rst:1132 msgid "The number of threads currently waiting in the barrier." msgstr "" -#: library/threading.rst:1118 +#: library/threading.rst:1136 msgid "A boolean that is ``True`` if the barrier is in the broken state." msgstr "" -#: library/threading.rst:1123 +#: library/threading.rst:1141 msgid "" "This exception, a subclass of :exc:`RuntimeError`, is raised when the :class:" "`Barrier` object is reset or broken." msgstr "" -#: library/threading.rst:1130 +#: library/threading.rst:1148 msgid "" "Using locks, conditions, and semaphores in the :keyword:`!with` statement" msgstr "" -#: library/threading.rst:1132 +#: library/threading.rst:1150 msgid "" "All of the objects provided by this module that have ``acquire`` and " "``release`` methods can be used as context managers for a :keyword:`with` " @@ -1403,25 +1421,25 @@ msgid "" "following snippet::" msgstr "" -#: library/threading.rst:1141 +#: library/threading.rst:1159 msgid "is equivalent to::" msgstr "" -#: library/threading.rst:1149 +#: library/threading.rst:1167 msgid "" "Currently, :class:`Lock`, :class:`RLock`, :class:`Condition`, :class:" "`Semaphore`, and :class:`BoundedSemaphore` objects may be used as :keyword:" "`with` statement context managers." msgstr "" -#: library/threading.rst:164 +#: library/threading.rst:173 msgid "trace function" msgstr "" -#: library/threading.rst:164 +#: library/threading.rst:173 msgid "debugger" msgstr "" -#: library/threading.rst:184 +#: library/threading.rst:202 msgid "profile function" msgstr "" diff --git a/library/token.po b/library/token.po index db67c831a..2ac42f05d 100644 --- a/library/token.po +++ b/library/token.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -250,17 +250,21 @@ msgstr "" msgid "Token value for ``\":=\"``." msgstr "" +#: library/token-list.inc:206 +msgid "Token value for ``\"!\"``." +msgstr "" + #: library/token.rst:49 msgid "" "The following token type values aren't used by the C tokenizer but are " "needed for the :mod:`tokenize` module." msgstr "" -#: library/token.rst:54 +#: library/token.rst:55 msgid "Token value used to indicate a comment." msgstr "" -#: library/token.rst:59 +#: library/token.rst:61 msgid "" "Token value used to indicate a non-terminating newline. The :data:`NEWLINE` " "token indicates the end of a logical line of Python code; ``NL`` tokens are " @@ -268,35 +272,35 @@ msgid "" "lines." msgstr "" -#: library/token.rst:67 +#: library/token.rst:69 msgid "" "Token value that indicates the encoding used to decode the source bytes into " "text. The first token returned by :func:`tokenize.tokenize` will always be " "an ``ENCODING`` token." msgstr "" -#: library/token.rst:75 +#: library/token.rst:77 msgid "" "Token value indicating that a type comment was recognized. Such tokens are " "only produced when :func:`ast.parse()` is invoked with " "``type_comments=True``." msgstr "" -#: library/token.rst:80 +#: library/token.rst:82 msgid "Added :data:`AWAIT` and :data:`ASYNC` tokens." msgstr "" -#: library/token.rst:83 +#: library/token.rst:85 msgid "Added :data:`COMMENT`, :data:`NL` and :data:`ENCODING` tokens." msgstr "" -#: library/token.rst:86 +#: library/token.rst:88 msgid "" "Removed :data:`AWAIT` and :data:`ASYNC` tokens. \"async\" and \"await\" are " "now tokenized as :data:`NAME` tokens." msgstr "" -#: library/token.rst:90 +#: library/token.rst:92 msgid "" "Added :data:`TYPE_COMMENT`, :data:`TYPE_IGNORE`, :data:`COLONEQUAL`. Added :" "data:`AWAIT` and :data:`ASYNC` tokens back (they're needed to support " diff --git a/library/tokenize.po b/library/tokenize.po index c69f715fe..25368fc8f 100644 --- a/library/tokenize.po +++ b/library/tokenize.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -207,56 +207,49 @@ msgstr "" msgid "or::" msgstr "" -#: library/tokenize.rst:151 -msgid "" -"Note that unclosed single-quoted strings do not cause an error to be raised. " -"They are tokenized as :data:`~token.ERRORTOKEN`, followed by the " -"tokenization of their contents." -msgstr "" - -#: library/tokenize.rst:159 +#: library/tokenize.rst:154 msgid "Command-Line Usage" msgstr "" -#: library/tokenize.rst:163 +#: library/tokenize.rst:158 msgid "" "The :mod:`tokenize` module can be executed as a script from the command " "line. It is as simple as:" msgstr "" -#: library/tokenize.rst:170 +#: library/tokenize.rst:165 msgid "The following options are accepted:" msgstr "" -#: library/tokenize.rst:176 +#: library/tokenize.rst:171 msgid "show this help message and exit" msgstr "" -#: library/tokenize.rst:180 +#: library/tokenize.rst:175 msgid "display token names using the exact type" msgstr "" -#: library/tokenize.rst:182 +#: library/tokenize.rst:177 msgid "" "If :file:`filename.py` is specified its contents are tokenized to stdout. " "Otherwise, tokenization is performed on stdin." msgstr "" -#: library/tokenize.rst:186 +#: library/tokenize.rst:181 msgid "Examples" msgstr "" -#: library/tokenize.rst:188 +#: library/tokenize.rst:183 msgid "" "Example of a script rewriter that transforms float literals into Decimal " "objects::" msgstr "" -#: library/tokenize.rst:230 +#: library/tokenize.rst:225 msgid "Example of tokenizing from the command line. The script::" msgstr "" -#: library/tokenize.rst:237 +#: library/tokenize.rst:232 msgid "" "will be tokenized to the following output where the first column is the " "range of the line/column coordinates where the token is found, the second " @@ -264,17 +257,17 @@ msgid "" "token (if any)" msgstr "" -#: library/tokenize.rst:265 +#: library/tokenize.rst:260 msgid "" "The exact token type names can be displayed using the :option:`-e` option:" msgstr "" -#: library/tokenize.rst:291 +#: library/tokenize.rst:286 msgid "" "Example of tokenizing a file programmatically, reading unicode strings " "instead of bytes with :func:`generate_tokens`::" msgstr "" -#: library/tokenize.rst:301 +#: library/tokenize.rst:296 msgid "Or reading bytes directly with :func:`.tokenize`::" msgstr "" diff --git a/library/traceback.po b/library/traceback.po index 0da4581b3..44cd4d58f 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: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -72,7 +72,7 @@ msgid "" "the output." msgstr "" -#: library/traceback.rst:104 +#: library/traceback.rst:103 msgid "Added negative *limit* support." msgstr "" @@ -115,11 +115,11 @@ msgid "" "exception." msgstr "" -#: library/traceback.rst:169 +#: library/traceback.rst:168 msgid "The *etype* argument is ignored and inferred from the type of *value*." msgstr "" -#: library/traceback.rst:153 +#: library/traceback.rst:152 msgid "" "The *etype* parameter has been renamed to *exc* and is now positional-only." msgstr "" @@ -132,12 +132,12 @@ msgstr "" #: library/traceback.rst:89 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`)." +"This is a shorthand for ``print_exception(sys.last_exc, limit, file, " +"chain)``. In general it will work only after an exception has reached an " +"interactive prompt (see :data:`sys.last_exc`)." msgstr "" -#: library/traceback.rst:97 +#: library/traceback.rst:96 msgid "" "Print up to *limit* stack trace entries (starting from the invocation point) " "if *limit* is positive. Otherwise, print the last ``abs(limit)`` entries. " @@ -146,7 +146,7 @@ msgid "" "optional *file* argument has the same meaning as for :func:`print_tb`." msgstr "" -#: library/traceback.rst:110 +#: library/traceback.rst:109 msgid "" "Return a :class:`StackSummary` object representing a list of \"pre-" "processed\" stack trace entries extracted from the traceback object *tb*. " @@ -160,14 +160,14 @@ msgid "" "stripped; if the source is not available it is ``None``." msgstr "" -#: library/traceback.rst:124 +#: library/traceback.rst:123 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:131 +#: library/traceback.rst:130 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 " @@ -177,7 +177,7 @@ msgid "" "text line is not ``None``." msgstr "" -#: library/traceback.rst:141 +#: library/traceback.rst:140 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 " @@ -188,18 +188,18 @@ msgid "" "contains the exception's :attr:`notes `." msgstr "" -#: library/traceback.rst:149 +#: library/traceback.rst:148 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:157 +#: library/traceback.rst:156 msgid "The returned list now includes any notes attached to the exception." msgstr "" -#: library/traceback.rst:163 +#: library/traceback.rst:162 msgid "" "Format a stack trace and the exception information. The arguments have the " "same meaning as the corresponding arguments to :func:`print_exception`. The " @@ -208,66 +208,66 @@ msgid "" "printed, exactly the same text is printed as does :func:`print_exception`." msgstr "" -#: library/traceback.rst:172 +#: library/traceback.rst:171 msgid "" "This function's behavior and signature were modified to match :func:" "`print_exception`." msgstr "" -#: library/traceback.rst:179 +#: library/traceback.rst:178 msgid "" "This is like ``print_exc(limit)`` but returns a string instead of printing " "to a file." msgstr "" -#: library/traceback.rst:185 +#: library/traceback.rst:184 msgid "A shorthand for ``format_list(extract_tb(tb, limit))``." msgstr "" -#: library/traceback.rst:190 +#: library/traceback.rst:189 msgid "A shorthand for ``format_list(extract_stack(f, limit))``." msgstr "" -#: library/traceback.rst:194 +#: library/traceback.rst:193 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:201 +#: library/traceback.rst:200 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:209 +#: library/traceback.rst:208 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:214 +#: library/traceback.rst:213 msgid "The module also defines the following classes:" msgstr "" -#: library/traceback.rst:217 +#: library/traceback.rst:216 msgid ":class:`TracebackException` Objects" msgstr "" -#: library/traceback.rst:221 +#: library/traceback.rst:220 msgid "" ":class:`TracebackException` objects are created from actual exceptions to " "capture data for later printing in a lightweight fashion." msgstr "" -#: library/traceback.rst:320 +#: library/traceback.rst:319 msgid "" "Capture an exception for later rendering. *limit*, *lookup_lines* and " "*capture_locals* are as for the :class:`StackSummary` class." msgstr "" -#: library/traceback.rst:229 +#: library/traceback.rst:228 msgid "" "If *compact* is true, only data that is required by :class:" "`TracebackException`'s ``format`` method is saved in the class attributes. " @@ -275,12 +275,12 @@ msgid "" "is ``None`` and ``__suppress_context__`` is false." msgstr "" -#: library/traceback.rst:323 +#: library/traceback.rst:322 msgid "" "Note that when locals are captured, they are also shown in the traceback." msgstr "" -#: library/traceback.rst:236 +#: library/traceback.rst:235 msgid "" "*max_group_width* and *max_group_depth* control the formatting of exception " "groups (see :exc:`BaseExceptionGroup`). The depth refers to the nesting " @@ -289,112 +289,112 @@ msgid "" "limit is exceeded." msgstr "" -#: library/traceback.rst:242 +#: library/traceback.rst:241 msgid "Added the *compact* parameter." msgstr "" -#: library/traceback.rst:245 +#: library/traceback.rst:244 msgid "Added the *max_group_width* and *max_group_depth* parameters." msgstr "" -#: library/traceback.rst:250 +#: library/traceback.rst:249 msgid "A :class:`TracebackException` of the original ``__cause__``." msgstr "" -#: library/traceback.rst:254 +#: library/traceback.rst:253 msgid "A :class:`TracebackException` of the original ``__context__``." msgstr "" -#: library/traceback.rst:258 +#: library/traceback.rst:257 msgid "" "If ``self`` represents an :exc:`ExceptionGroup`, this field holds a list of :" "class:`TracebackException` instances representing the nested exceptions. " "Otherwise it is ``None``." msgstr "" -#: library/traceback.rst:266 +#: library/traceback.rst:265 msgid "The ``__suppress_context__`` value from the original exception." msgstr "" -#: library/traceback.rst:270 +#: library/traceback.rst:269 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:278 +#: library/traceback.rst:277 msgid "A :class:`StackSummary` representing the traceback." msgstr "" -#: library/traceback.rst:282 +#: library/traceback.rst:281 msgid "The class of the original traceback." msgstr "" -#: library/traceback.rst:286 +#: library/traceback.rst:285 msgid "For syntax errors - the file name where the error occurred." msgstr "" -#: library/traceback.rst:290 +#: library/traceback.rst:289 msgid "For syntax errors - the line number where the error occurred." msgstr "" -#: library/traceback.rst:294 +#: library/traceback.rst:293 msgid "" "For syntax errors - the end line number where the error occurred. Can be " "``None`` if not present." msgstr "" -#: library/traceback.rst:301 +#: library/traceback.rst:300 msgid "For syntax errors - the text where the error occurred." msgstr "" -#: library/traceback.rst:305 +#: library/traceback.rst:304 msgid "For syntax errors - the offset into the text where the error occurred." msgstr "" -#: library/traceback.rst:309 +#: library/traceback.rst:308 msgid "" "For syntax errors - the end offset into the text where the error occurred. " "Can be ``None`` if not present." msgstr "" -#: library/traceback.rst:316 +#: library/traceback.rst:315 msgid "For syntax errors - the compiler error message." msgstr "" -#: library/traceback.rst:327 +#: library/traceback.rst:326 msgid "" "Print to *file* (default ``sys.stderr``) the exception information returned " "by :meth:`format`." msgstr "" -#: library/traceback.rst:334 +#: library/traceback.rst:333 msgid "Format the exception." msgstr "" -#: library/traceback.rst:336 +#: library/traceback.rst:335 msgid "" "If *chain* is not ``True``, ``__cause__`` and ``__context__`` will not be " "formatted." msgstr "" -#: library/traceback.rst:339 +#: library/traceback.rst:338 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:345 +#: library/traceback.rst:344 msgid "Format the exception part of the traceback." msgstr "" -#: library/traceback.rst:347 +#: library/traceback.rst:346 msgid "The return value is a generator of strings, each ending in a newline." msgstr "" -#: library/traceback.rst:349 +#: library/traceback.rst:348 msgid "" "The generator emits the exception's message followed by its notes (if it has " "any). The exception message is normally a single string; however, for :exc:" @@ -402,7 +402,7 @@ msgid "" "display detailed information about where the syntax error occurred." msgstr "" -#: library/traceback.rst:355 +#: library/traceback.rst:354 msgid "The exception's notes are now included in the output." msgstr "" @@ -431,14 +431,20 @@ msgid "" "class:`FrameSummary` are captured as object representations." msgstr "" -#: library/traceback.rst:384 +#: library/traceback.rst:382 +msgid "" +"Exceptions raised from :func:`repr` on a local variable (when " +"*capture_locals* is ``True``) are no longer propagated to the caller." +msgstr "" + +#: library/traceback.rst:388 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:390 +#: library/traceback.rst:394 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 " @@ -446,18 +452,18 @@ msgid "" "with source text lines." msgstr "" -#: library/traceback.rst:395 +#: library/traceback.rst:399 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:399 +#: library/traceback.rst:403 msgid "Long sequences of repeated frames are now abbreviated." msgstr "" -#: library/traceback.rst:404 +#: library/traceback.rst:408 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 :" @@ -465,16 +471,16 @@ msgid "" "from the output." msgstr "" -#: library/traceback.rst:413 +#: library/traceback.rst:417 msgid ":class:`FrameSummary` Objects" msgstr "" -#: library/traceback.rst:417 +#: library/traceback.rst:421 msgid "" "A :class:`FrameSummary` object represents a single frame in a traceback." msgstr "" -#: library/traceback.rst:421 +#: library/traceback.rst:425 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 " @@ -487,11 +493,11 @@ msgid "" "display." msgstr "" -#: library/traceback.rst:434 +#: library/traceback.rst:438 msgid "Traceback Examples" msgstr "" -#: library/traceback.rst:436 +#: library/traceback.rst:440 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 " @@ -499,23 +505,23 @@ msgid "" "`code` module. ::" msgstr "" -#: library/traceback.rst:458 +#: library/traceback.rst:462 msgid "" "The following example demonstrates the different ways to print and format " "the exception and traceback:" msgstr "" -#: library/traceback.rst:493 +#: library/traceback.rst:497 msgid "The output for the example would look similar to this:" msgstr "" -#: library/traceback.rst:535 +#: library/traceback.rst:539 msgid "" "The following example shows the different ways to print and format the " "stack::" msgstr "" -#: library/traceback.rst:561 +#: library/traceback.rst:565 msgid "This last example demonstrates the final few formatting functions:" msgstr "" diff --git a/library/tty.po b/library/tty.po index 21daa230b..e2003722a 100644 --- a/library/tty.po +++ b/library/tty.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -41,22 +41,36 @@ msgstr "" #: library/tty.rst:25 msgid "" +"Convert the tty attribute list *mode*, which is a list like the one returned " +"by :func:`termios.tcgetattr`, to that of a tty in raw mode." +msgstr "" + +#: library/tty.rst:33 +msgid "" +"Convert the tty attribute list *mode*, which is a list like the one returned " +"by :func:`termios.tcgetattr`, to that of a tty in cbreak mode." +msgstr "" + +#: library/tty.rst:41 +msgid "" "Change the mode of the file descriptor *fd* to raw. If *when* is omitted, it " "defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios." -"tcsetattr`." +"tcsetattr`. The return value of :func:`termios.tcgetattr` is saved before " +"setting *fd* to raw mode; this value is returned." msgstr "" -#: library/tty.rst:32 +#: library/tty.rst:49 msgid "" "Change the mode of file descriptor *fd* to cbreak. If *when* is omitted, it " "defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios." -"tcsetattr`." +"tcsetattr`. The return value of :func:`termios.tcgetattr` is saved before " +"setting *fd* to cbreak mode; this value is returned." msgstr "" -#: library/tty.rst:39 +#: library/tty.rst:57 msgid "Module :mod:`termios`" msgstr "" -#: library/tty.rst:40 +#: library/tty.rst:58 msgid "Low-level terminal control interface." msgstr "" diff --git a/library/turtle.po b/library/turtle.po index 5b40c398d..8d0c937a8 100644 --- a/library/turtle.po +++ b/library/turtle.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -116,7 +116,7 @@ msgid "" "Experiment with those commands, and also with ``backward()`` and ``right()``." msgstr "" -#: library/turtle.rst:345 library/turtle.rst:985 +#: library/turtle.rst:346 library/turtle.rst:1016 msgid "Pen control" msgstr "" @@ -342,11 +342,11 @@ msgstr "" msgid "Turtle methods" msgstr "" -#: library/turtle.rst:432 +#: library/turtle.rst:433 msgid "Turtle motion" msgstr "" -#: library/turtle.rst:310 +#: library/turtle.rst:311 msgid "Move and draw" msgstr "" @@ -370,6 +370,10 @@ msgstr "" msgid ":func:`goto` | :func:`setpos` | :func:`setposition`" msgstr "" +#: library/turtle.rst:0 +msgid ":func:`teleport`" +msgstr "" + #: library/turtle.rst:0 msgid ":func:`setx`" msgstr "" @@ -386,7 +390,7 @@ msgstr "" msgid ":func:`home`" msgstr "" -#: library/turtle.rst:2692 +#: library/turtle.rst:2723 msgid ":func:`circle`" msgstr "" @@ -394,7 +398,7 @@ msgstr "" msgid ":func:`dot`" msgstr "" -#: library/turtle.rst:2670 +#: library/turtle.rst:2701 msgid ":func:`stamp`" msgstr "" @@ -414,7 +418,7 @@ msgstr "" msgid ":func:`speed`" msgstr "" -#: library/turtle.rst:834 +#: library/turtle.rst:865 msgid "Tell Turtle's state" msgstr "" @@ -442,7 +446,7 @@ msgstr "" msgid ":func:`distance`" msgstr "" -#: library/turtle.rst:322 +#: library/turtle.rst:323 msgid "Setting and measurement" msgstr "" @@ -454,7 +458,7 @@ msgstr "" msgid ":func:`radians`" msgstr "" -#: library/turtle.rst:988 +#: library/turtle.rst:1019 msgid "Drawing state" msgstr "" @@ -478,7 +482,7 @@ msgstr "" msgid ":func:`isdown`" msgstr "" -#: library/turtle.rst:1080 +#: library/turtle.rst:1111 msgid "Color control" msgstr "" @@ -494,7 +498,7 @@ msgstr "" msgid ":func:`fillcolor`" msgstr "" -#: library/turtle.rst:1212 +#: library/turtle.rst:1243 msgid "Filling" msgstr "" @@ -510,7 +514,7 @@ msgstr "" msgid ":func:`end_fill`" msgstr "" -#: library/turtle.rst:1259 +#: library/turtle.rst:1290 msgid "More drawing control" msgstr "" @@ -526,11 +530,11 @@ msgstr "" msgid ":func:`write`" msgstr "" -#: library/turtle.rst:1305 +#: library/turtle.rst:1336 msgid "Turtle state" msgstr "" -#: library/turtle.rst:1308 +#: library/turtle.rst:1339 msgid "Visibility" msgstr "" @@ -546,7 +550,7 @@ msgstr "" msgid ":func:`isvisible`" msgstr "" -#: library/turtle.rst:1347 +#: library/turtle.rst:1378 msgid "Appearance" msgstr "" @@ -586,11 +590,11 @@ msgstr "" msgid ":func:`get_shapepoly`" msgstr "" -#: library/turtle.rst:1552 +#: library/turtle.rst:1583 msgid "Using events" msgstr "" -#: library/turtle.rst:2664 +#: library/turtle.rst:2695 msgid ":func:`onclick`" msgstr "" @@ -598,11 +602,11 @@ msgstr "" msgid ":func:`onrelease`" msgstr "" -#: library/turtle.rst:2647 +#: library/turtle.rst:2678 msgid ":func:`ondrag`" msgstr "" -#: library/turtle.rst:1626 +#: library/turtle.rst:1657 msgid "Special Turtle methods" msgstr "" @@ -618,7 +622,7 @@ msgstr "" msgid ":func:`get_poly`" msgstr "" -#: library/turtle.rst:2686 +#: library/turtle.rst:2717 msgid ":func:`clone`" msgstr "" @@ -638,11 +642,11 @@ msgstr "" msgid ":func:`undobufferentries`" msgstr "" -#: library/turtle.rst:381 +#: library/turtle.rst:382 msgid "Methods of TurtleScreen/Screen" msgstr "" -#: library/turtle.rst:1780 +#: library/turtle.rst:1811 msgid "Window control" msgstr "" @@ -670,7 +674,7 @@ msgstr "" msgid ":func:`setworldcoordinates`" msgstr "" -#: library/turtle.rst:1903 +#: library/turtle.rst:1934 msgid "Animation control" msgstr "" @@ -686,7 +690,7 @@ msgstr "" msgid ":func:`update`" msgstr "" -#: library/turtle.rst:1956 +#: library/turtle.rst:1987 msgid "Using screen events" msgstr "" @@ -714,7 +718,7 @@ msgstr "" msgid ":func:`mainloop` | :func:`done`" msgstr "" -#: library/turtle.rst:2101 +#: library/turtle.rst:2132 msgid "Settings and special methods" msgstr "" @@ -750,7 +754,7 @@ msgstr "" msgid ":func:`window_width`" msgstr "" -#: library/turtle.rst:2065 +#: library/turtle.rst:2096 msgid "Input methods" msgstr "" @@ -762,7 +766,7 @@ msgstr "" msgid ":func:`numinput`" msgstr "" -#: library/turtle.rst:423 +#: library/turtle.rst:424 msgid "Methods specific to Screen" msgstr "" @@ -782,11 +786,11 @@ msgstr "" msgid ":func:`title`" msgstr "" -#: library/turtle.rst:426 +#: library/turtle.rst:427 msgid "Methods of RawTurtle/Turtle and corresponding functions" msgstr "" -#: library/turtle.rst:428 +#: library/turtle.rst:429 msgid "" "Most of the examples in this section refer to a Turtle instance called " "``turtle``." @@ -796,131 +800,145 @@ msgstr "" msgid "Parameters" msgstr "" -#: library/turtle.rst:482 library/turtle.rst:567 library/turtle.rst:613 +#: library/turtle.rst:483 library/turtle.rst:606 library/turtle.rst:652 msgid "a number (integer or float)" msgstr "" -#: library/turtle.rst:439 +#: library/turtle.rst:440 msgid "" "Move the turtle forward by the specified *distance*, in the direction the " "turtle is headed." msgstr "" -#: library/turtle.rst:663 library/turtle.rst:1446 library/turtle.rst:1465 +#: library/turtle.rst:702 library/turtle.rst:1477 library/turtle.rst:1496 msgid "a number" msgstr "" -#: library/turtle.rst:461 +#: library/turtle.rst:462 msgid "" "Move the turtle backward by *distance*, opposite to the direction the turtle " "is headed. Do not change the turtle's heading." msgstr "" -#: library/turtle.rst:484 +#: library/turtle.rst:485 msgid "" "Turn turtle right by *angle* units. (Units are by default degrees, but can " "be set via the :func:`degrees` and :func:`radians` functions.) Angle " "orientation depends on the turtle mode, see :func:`mode`." msgstr "" -#: library/turtle.rst:509 +#: library/turtle.rst:510 msgid "" "Turn turtle left by *angle* units. (Units are by default degrees, but can " "be set via the :func:`degrees` and :func:`radians` functions.) Angle " "orientation depends on the turtle mode, see :func:`mode`." msgstr "" -#: library/turtle.rst:533 +#: library/turtle.rst:534 msgid "a number or a pair/vector of numbers" msgstr "" -#: library/turtle.rst:534 +#: library/turtle.rst:568 library/turtle.rst:569 msgid "a number or ``None``" msgstr "" -#: library/turtle.rst:536 +#: library/turtle.rst:537 msgid "" "If *y* is ``None``, *x* must be a pair of coordinates or a :class:`Vec2D` (e." "g. as returned by :func:`pos`)." msgstr "" -#: library/turtle.rst:539 +#: library/turtle.rst:540 msgid "" "Move turtle to an absolute position. If the pen is down, draw line. Do not " "change the turtle's orientation." msgstr "" -#: library/turtle.rst:569 +#: library/turtle.rst:570 +msgid "a boolean" +msgstr "" + +#: library/turtle.rst:572 +msgid "" +"Move turtle to an absolute position. Unlike goto(x, y), a line will not be " +"drawn. The turtle's orientation does not change. If currently filling, the " +"polygon(s) teleported from will be filled after leaving, and filling will " +"begin again after teleporting. This can be disabled with fill_gap=True, " +"which makes the imaginary line traveled during teleporting act as a fill " +"barrier like in goto(x, y)." +msgstr "" + +#: library/turtle.rst:608 msgid "" "Set the turtle's first coordinate to *x*, leave second coordinate unchanged." msgstr "" -#: library/turtle.rst:592 +#: library/turtle.rst:631 msgid "" "Set the turtle's second coordinate to *y*, leave first coordinate unchanged." msgstr "" -#: library/turtle.rst:615 +#: library/turtle.rst:654 msgid "" "Set the orientation of the turtle to *to_angle*. Here are some common " "directions in degrees:" msgstr "" -#: library/turtle.rst:619 +#: library/turtle.rst:658 msgid "standard mode" msgstr "" -#: library/turtle.rst:619 +#: library/turtle.rst:658 msgid "logo mode" msgstr "" -#: library/turtle.rst:621 +#: library/turtle.rst:660 msgid "0 - east" msgstr "" -#: library/turtle.rst:621 +#: library/turtle.rst:660 msgid "0 - north" msgstr "" -#: library/turtle.rst:622 +#: library/turtle.rst:661 msgid "90 - north" msgstr "" -#: library/turtle.rst:622 +#: library/turtle.rst:661 msgid "90 - east" msgstr "" -#: library/turtle.rst:623 +#: library/turtle.rst:662 msgid "180 - west" msgstr "" -#: library/turtle.rst:623 +#: library/turtle.rst:662 msgid "180 - south" msgstr "" -#: library/turtle.rst:624 +#: library/turtle.rst:663 msgid "270 - south" msgstr "" -#: library/turtle.rst:624 +#: library/turtle.rst:663 msgid "270 - west" msgstr "" -#: library/turtle.rst:637 +#: library/turtle.rst:676 msgid "" "Move turtle to the origin -- coordinates (0,0) -- and set its heading to its " "start-orientation (which depends on the mode, see :func:`mode`)." msgstr "" -#: library/turtle.rst:664 +#: library/turtle.rst:703 msgid "a number (or ``None``)" msgstr "" -#: library/turtle.rst:759 +#: library/turtle.rst:797 msgid "an integer (or ``None``)" msgstr "" -#: library/turtle.rst:667 +#: library/turtle.rst:706 msgid "" "Draw a circle with given *radius*. The center is *radius* units left of the " "turtle; *extent* -- an angle -- determines which part of the circle is " @@ -931,117 +949,117 @@ msgid "" "changed by the amount of *extent*." msgstr "" -#: library/turtle.rst:675 +#: library/turtle.rst:714 msgid "" "As the circle is approximated by an inscribed regular polygon, *steps* " "determines the number of steps to use. If not given, it will be calculated " "automatically. May be used to draw regular polygons." msgstr "" -#: library/turtle.rst:701 +#: library/turtle.rst:740 msgid "an integer >= 1 (if given)" msgstr "" -#: library/turtle.rst:702 +#: library/turtle.rst:741 msgid "a colorstring or a numeric color tuple" msgstr "" -#: library/turtle.rst:704 +#: library/turtle.rst:743 msgid "" "Draw a circular dot with diameter *size*, using *color*. If *size* is not " "given, the maximum of pensize+4 and 2*pensize is used." msgstr "" -#: library/turtle.rst:722 +#: library/turtle.rst:761 msgid "" "Stamp a copy of the turtle shape onto the canvas at the current turtle " "position. Return a stamp_id for that stamp, which can be used to delete it " "by calling ``clearstamp(stamp_id)``." msgstr "" -#: library/turtle.rst:737 +#: library/turtle.rst:775 msgid "an integer, must be return value of previous :func:`stamp` call" msgstr "" -#: library/turtle.rst:740 +#: library/turtle.rst:778 msgid "Delete stamp with given *stampid*." msgstr "" -#: library/turtle.rst:761 +#: library/turtle.rst:799 msgid "" "Delete all or first/last *n* of turtle's stamps. If *n* is ``None``, delete " "all stamps, if *n* > 0 delete first *n* stamps, else if *n* < 0 delete last " "*n* stamps." msgstr "" -#: library/turtle.rst:784 +#: library/turtle.rst:815 msgid "" "Undo (repeatedly) the last turtle action(s). Number of available undo " "actions is determined by the size of the undobuffer." msgstr "" -#: library/turtle.rst:799 +#: library/turtle.rst:830 msgid "an integer in the range 0..10 or a speedstring (see below)" msgstr "" -#: library/turtle.rst:801 +#: library/turtle.rst:832 msgid "" "Set the turtle's speed to an integer value in the range 0..10. If no " "argument is given, return current speed." msgstr "" -#: library/turtle.rst:804 +#: library/turtle.rst:835 msgid "" "If input is a number greater than 10 or smaller than 0.5, speed is set to " "0. Speedstrings are mapped to speedvalues as follows:" msgstr "" -#: library/turtle.rst:807 +#: library/turtle.rst:838 msgid "\"fastest\": 0" msgstr "" -#: library/turtle.rst:808 +#: library/turtle.rst:839 msgid "\"fast\": 10" msgstr "" -#: library/turtle.rst:809 +#: library/turtle.rst:840 msgid "\"normal\": 6" msgstr "" -#: library/turtle.rst:810 +#: library/turtle.rst:841 msgid "\"slow\": 3" msgstr "" -#: library/turtle.rst:811 +#: library/turtle.rst:842 msgid "\"slowest\": 1" msgstr "" -#: library/turtle.rst:813 +#: library/turtle.rst:844 msgid "" "Speeds from 1 to 10 enforce increasingly faster animation of line drawing " "and turtle turning." msgstr "" -#: library/turtle.rst:816 +#: library/turtle.rst:847 msgid "" "Attention: *speed* = 0 means that *no* animation takes place. forward/back " "makes turtle jump and likewise left/right make the turtle turn instantly." msgstr "" -#: library/turtle.rst:839 +#: library/turtle.rst:870 msgid "" "Return the turtle's current location (x,y) (as a :class:`Vec2D` vector)." msgstr "" -#: library/turtle.rst:913 +#: library/turtle.rst:944 msgid "a number or a pair/vector of numbers or a turtle instance" msgstr "" -#: library/turtle.rst:914 +#: library/turtle.rst:945 msgid "a number if *x* is a number, else ``None``" msgstr "" -#: library/turtle.rst:853 +#: library/turtle.rst:884 msgid "" "Return the angle between the line from turtle position to position specified " "by (x,y), the vector or the other turtle. This depends on the turtle's " @@ -1049,116 +1067,116 @@ msgid "" "\"logo\"." msgstr "" -#: library/turtle.rst:867 +#: library/turtle.rst:898 msgid "Return the turtle's x coordinate." msgstr "" -#: library/turtle.rst:883 +#: library/turtle.rst:914 msgid "Return the turtle's y coordinate." msgstr "" -#: library/turtle.rst:899 +#: library/turtle.rst:930 msgid "" "Return the turtle's current heading (value depends on the turtle mode, see :" "func:`mode`)." msgstr "" -#: library/turtle.rst:916 +#: library/turtle.rst:947 msgid "" "Return the distance from the turtle to (x,y), the given vector, or the given " "other turtle, in turtle step units." msgstr "" -#: library/turtle.rst:934 +#: library/turtle.rst:965 msgid "Settings for measurement" msgstr "" -#: library/turtle.rst:940 +#: library/turtle.rst:971 msgid "" "Set angle measurement units, i.e. set number of \"degrees\" for a full " "circle. Default value is 360 degrees." msgstr "" -#: library/turtle.rst:963 +#: library/turtle.rst:994 msgid "" "Set the angle measurement units to radians. Equivalent to ``degrees(2*math." "pi)``." msgstr "" -#: library/turtle.rst:994 +#: library/turtle.rst:1025 msgid "Pull the pen down -- drawing when moving." msgstr "" -#: library/turtle.rst:1001 +#: library/turtle.rst:1032 msgid "Pull the pen up -- no drawing when moving." msgstr "" -#: library/turtle.rst:1007 +#: library/turtle.rst:1038 msgid "a positive number" msgstr "" -#: library/turtle.rst:1009 +#: library/turtle.rst:1040 msgid "" "Set the line thickness to *width* or return it. If resizemode is set to " "\"auto\" and turtleshape is a polygon, that polygon is drawn with the same " "line thickness. If no argument is given, the current pensize is returned." msgstr "" -#: library/turtle.rst:1023 +#: library/turtle.rst:1054 msgid "a dictionary with some or all of the below listed keys" msgstr "" -#: library/turtle.rst:1024 +#: library/turtle.rst:1055 msgid "one or more keyword-arguments with the below listed keys as keywords" msgstr "" -#: library/turtle.rst:1026 +#: library/turtle.rst:1057 msgid "" "Return or set the pen's attributes in a \"pen-dictionary\" with the " "following key/value pairs:" msgstr "" -#: library/turtle.rst:1029 +#: library/turtle.rst:1060 msgid "\"shown\": True/False" msgstr "" -#: library/turtle.rst:1030 +#: library/turtle.rst:1061 msgid "\"pendown\": True/False" msgstr "" -#: library/turtle.rst:1031 +#: library/turtle.rst:1062 msgid "\"pencolor\": color-string or color-tuple" msgstr "" -#: library/turtle.rst:1032 +#: library/turtle.rst:1063 msgid "\"fillcolor\": color-string or color-tuple" msgstr "" -#: library/turtle.rst:1033 +#: library/turtle.rst:1064 msgid "\"pensize\": positive number" msgstr "" -#: library/turtle.rst:1034 +#: library/turtle.rst:1065 msgid "\"speed\": number in range 0..10" msgstr "" -#: library/turtle.rst:1035 +#: library/turtle.rst:1066 msgid "\"resizemode\": \"auto\" or \"user\" or \"noresize\"" msgstr "" -#: library/turtle.rst:1036 +#: library/turtle.rst:1067 msgid "\"stretchfactor\": (positive number, positive number)" msgstr "" -#: library/turtle.rst:1037 +#: library/turtle.rst:1068 msgid "\"outline\": positive number" msgstr "" -#: library/turtle.rst:1038 +#: library/turtle.rst:1069 msgid "\"tilt\": number" msgstr "" -#: library/turtle.rst:1040 +#: library/turtle.rst:1071 msgid "" "This dictionary can be used as argument for a subsequent call to :func:`pen` " "to restore the former pen-state. Moreover one or more of these attributes " @@ -1166,181 +1184,181 @@ msgid "" "attributes in one statement." msgstr "" -#: library/turtle.rst:1066 +#: library/turtle.rst:1097 msgid "Return ``True`` if pen is down, ``False`` if it's up." msgstr "" -#: library/turtle.rst:1084 +#: library/turtle.rst:1115 msgid "Return or set the pencolor." msgstr "" -#: library/turtle.rst:1135 +#: library/turtle.rst:1166 msgid "Four input formats are allowed:" msgstr "" -#: library/turtle.rst:1091 +#: library/turtle.rst:1122 msgid "``pencolor()``" msgstr "" -#: library/turtle.rst:1089 +#: library/turtle.rst:1120 msgid "" "Return the current pencolor as color specification string or as a tuple (see " "example). May be used as input to another color/pencolor/fillcolor call." msgstr "" -#: library/turtle.rst:1095 +#: library/turtle.rst:1126 msgid "``pencolor(colorstring)``" msgstr "" -#: library/turtle.rst:1094 +#: library/turtle.rst:1125 msgid "" "Set pencolor to *colorstring*, which is a Tk color specification string, " "such as ``\"red\"``, ``\"yellow\"``, or ``\"#33cc8c\"``." msgstr "" -#: library/turtle.rst:1100 +#: library/turtle.rst:1131 msgid "``pencolor((r, g, b))``" msgstr "" -#: library/turtle.rst:1098 +#: library/turtle.rst:1129 msgid "" "Set pencolor to the RGB color represented by the tuple of *r*, *g*, and " "*b*. Each of *r*, *g*, and *b* must be in the range 0..colormode, where " "colormode is either 1.0 or 255 (see :func:`colormode`)." msgstr "" -#: library/turtle.rst:1104 +#: library/turtle.rst:1135 msgid "``pencolor(r, g, b)``" msgstr "" -#: library/turtle.rst:1103 +#: library/turtle.rst:1134 msgid "" "Set pencolor to the RGB color represented by *r*, *g*, and *b*. Each of " "*r*, *g*, and *b* must be in the range 0..colormode." msgstr "" -#: library/turtle.rst:1106 +#: library/turtle.rst:1137 msgid "" "If turtleshape is a polygon, the outline of that polygon is drawn with the " "newly set pencolor." msgstr "" -#: library/turtle.rst:1133 +#: library/turtle.rst:1164 msgid "Return or set the fillcolor." msgstr "" -#: library/turtle.rst:1140 +#: library/turtle.rst:1171 msgid "``fillcolor()``" msgstr "" -#: library/turtle.rst:1138 +#: library/turtle.rst:1169 msgid "" "Return the current fillcolor as color specification string, possibly in " "tuple format (see example). May be used as input to another color/pencolor/" "fillcolor call." msgstr "" -#: library/turtle.rst:1144 +#: library/turtle.rst:1175 msgid "``fillcolor(colorstring)``" msgstr "" -#: library/turtle.rst:1143 +#: library/turtle.rst:1174 msgid "" "Set fillcolor to *colorstring*, which is a Tk color specification string, " "such as ``\"red\"``, ``\"yellow\"``, or ``\"#33cc8c\"``." msgstr "" -#: library/turtle.rst:1149 +#: library/turtle.rst:1180 msgid "``fillcolor((r, g, b))``" msgstr "" -#: library/turtle.rst:1147 +#: library/turtle.rst:1178 msgid "" "Set fillcolor to the RGB color represented by the tuple of *r*, *g*, and " "*b*. Each of *r*, *g*, and *b* must be in the range 0..colormode, where " "colormode is either 1.0 or 255 (see :func:`colormode`)." msgstr "" -#: library/turtle.rst:1153 +#: library/turtle.rst:1184 msgid "``fillcolor(r, g, b)``" msgstr "" -#: library/turtle.rst:1152 +#: library/turtle.rst:1183 msgid "" "Set fillcolor to the RGB color represented by *r*, *g*, and *b*. Each of " "*r*, *g*, and *b* must be in the range 0..colormode." msgstr "" -#: library/turtle.rst:1155 +#: library/turtle.rst:1186 msgid "" "If turtleshape is a polygon, the interior of that polygon is drawn with the " "newly set fillcolor." msgstr "" -#: library/turtle.rst:1176 +#: library/turtle.rst:1207 msgid "Return or set pencolor and fillcolor." msgstr "" -#: library/turtle.rst:1178 +#: library/turtle.rst:1209 msgid "" "Several input formats are allowed. They use 0 to 3 arguments as follows:" msgstr "" -#: library/turtle.rst:1184 +#: library/turtle.rst:1215 msgid "``color()``" msgstr "" -#: library/turtle.rst:1182 +#: library/turtle.rst:1213 msgid "" "Return the current pencolor and the current fillcolor as a pair of color " "specification strings or tuples as returned by :func:`pencolor` and :func:" "`fillcolor`." msgstr "" -#: library/turtle.rst:1188 +#: library/turtle.rst:1219 msgid "``color(colorstring)``, ``color((r,g,b))``, ``color(r,g,b)``" msgstr "" -#: library/turtle.rst:1187 +#: library/turtle.rst:1218 msgid "" "Inputs as in :func:`pencolor`, set both, fillcolor and pencolor, to the " "given value." msgstr "" -#: library/turtle.rst:1192 +#: library/turtle.rst:1223 msgid "" "``color(colorstring1, colorstring2)``, ``color((r1,g1,b1), (r2,g2,b2))``" msgstr "" -#: library/turtle.rst:1191 +#: library/turtle.rst:1222 msgid "" "Equivalent to ``pencolor(colorstring1)`` and ``fillcolor(colorstring2)`` and " "analogously if the other input format is used." msgstr "" -#: library/turtle.rst:1194 +#: library/turtle.rst:1225 msgid "" "If turtleshape is a polygon, outline and interior of that polygon is drawn " "with the newly set colors." msgstr "" -#: library/turtle.rst:1208 +#: library/turtle.rst:1239 msgid "See also: Screen method :func:`colormode`." msgstr "" -#: library/turtle.rst:1222 +#: library/turtle.rst:1253 msgid "Return fillstate (``True`` if filling, ``False`` else)." msgstr "" -#: library/turtle.rst:1237 +#: library/turtle.rst:1268 msgid "To be called just before drawing a shape to be filled." msgstr "" -#: library/turtle.rst:1242 +#: library/turtle.rst:1273 msgid "Fill the shape drawn after the last call to :func:`begin_fill`." msgstr "" -#: library/turtle.rst:1244 +#: library/turtle.rst:1275 msgid "" "Whether or not overlap regions for self-intersecting polygons or multiple " "shapes are filled depends on the operating system graphics, type of overlap, " @@ -1348,36 +1366,36 @@ msgid "" "all yellow or have some white regions." msgstr "" -#: library/turtle.rst:1263 +#: library/turtle.rst:1294 msgid "" "Delete the turtle's drawings from the screen, re-center the turtle and set " "variables to the default values." msgstr "" -#: library/turtle.rst:1284 +#: library/turtle.rst:1315 msgid "" "Delete the turtle's drawings from the screen. Do not move turtle. State " "and position of the turtle as well as drawings of other turtles are not " "affected." msgstr "" -#: library/turtle.rst:1290 +#: library/turtle.rst:1321 msgid "object to be written to the TurtleScreen" msgstr "" -#: library/turtle.rst:1291 +#: library/turtle.rst:1322 msgid "True/False" msgstr "" -#: library/turtle.rst:1292 +#: library/turtle.rst:1323 msgid "one of the strings \"left\", \"center\" or right\"" msgstr "" -#: library/turtle.rst:1293 +#: library/turtle.rst:1324 msgid "a triple (fontname, fontsize, fonttype)" msgstr "" -#: library/turtle.rst:1295 +#: library/turtle.rst:1326 msgid "" "Write text - the string representation of *arg* - at the current turtle " "position according to *align* (\"left\", \"center\" or \"right\") and with " @@ -1385,26 +1403,26 @@ msgid "" "corner of the text. By default, *move* is ``False``." msgstr "" -#: library/turtle.rst:1313 +#: library/turtle.rst:1344 msgid "" "Make the turtle invisible. It's a good idea to do this while you're in the " "middle of doing some complex drawing, because hiding the turtle speeds up " "the drawing observably." msgstr "" -#: library/turtle.rst:1326 +#: library/turtle.rst:1357 msgid "Make the turtle visible." msgstr "" -#: library/turtle.rst:1336 +#: library/turtle.rst:1367 msgid "Return ``True`` if the Turtle is shown, ``False`` if it's hidden." msgstr "" -#: library/turtle.rst:1351 +#: library/turtle.rst:1382 msgid "a string which is a valid shapename" msgstr "" -#: library/turtle.rst:1353 +#: library/turtle.rst:1384 msgid "" "Set turtle shape to shape with given *name* or, if name is not given, return " "name of current shape. Shape with *name* must exist in the TurtleScreen's " @@ -1414,44 +1432,44 @@ msgid "" "`register_shape`." msgstr "" -#: library/turtle.rst:1371 +#: library/turtle.rst:1402 msgid "one of the strings \"auto\", \"user\", \"noresize\"" msgstr "" -#: library/turtle.rst:1373 +#: library/turtle.rst:1404 msgid "" "Set resizemode to one of the values: \"auto\", \"user\", \"noresize\". If " "*rmode* is not given, return current resizemode. Different resizemodes have " "the following effects:" msgstr "" -#: library/turtle.rst:1377 +#: library/turtle.rst:1408 msgid "" "\"auto\": adapts the appearance of the turtle corresponding to the value of " "pensize." msgstr "" -#: library/turtle.rst:1378 +#: library/turtle.rst:1409 msgid "" "\"user\": adapts the appearance of the turtle according to the values of " "stretchfactor and outlinewidth (outline), which are set by :func:`shapesize`." msgstr "" -#: library/turtle.rst:1381 +#: library/turtle.rst:1412 msgid "\"noresize\": no adaption of the turtle's appearance takes place." msgstr "" -#: library/turtle.rst:1383 +#: library/turtle.rst:1414 msgid "" "``resizemode(\"user\")`` is called by :func:`shapesize` when used with " "arguments." msgstr "" -#: library/turtle.rst:1399 library/turtle.rst:1400 +#: library/turtle.rst:1430 library/turtle.rst:1431 msgid "positive number" msgstr "" -#: library/turtle.rst:1402 +#: library/turtle.rst:1433 msgid "" "Return or set the pen's attributes x/y-stretchfactors and/or outline. Set " "resizemode to \"user\". If and only if resizemode is set to \"user\", the " @@ -1461,11 +1479,11 @@ msgid "" "determines the width of the shape's outline." msgstr "" -#: library/turtle.rst:2084 library/turtle.rst:2086 +#: library/turtle.rst:2115 library/turtle.rst:2117 msgid "number (optional)" msgstr "" -#: library/turtle.rst:1427 +#: library/turtle.rst:1458 msgid "" "Set or return the current shearfactor. Shear the turtleshape according to " "the given shearfactor shear, which is the tangent of the shear angle. Do " @@ -1474,24 +1492,24 @@ msgid "" "by which lines parallel to the heading of the turtle are sheared." msgstr "" -#: library/turtle.rst:1448 +#: library/turtle.rst:1479 msgid "" "Rotate the turtleshape by *angle* from its current tilt-angle, but do *not* " "change the turtle's heading (direction of movement)." msgstr "" -#: library/turtle.rst:1467 +#: library/turtle.rst:1498 msgid "" "Rotate the turtleshape to point in the direction specified by *angle*, " "regardless of its current tilt-angle. *Do not* change the turtle's heading " "(direction of movement)." msgstr "" -#: library/turtle.rst:1510 library/turtle.rst:1512 library/turtle.rst:1513 +#: library/turtle.rst:1541 library/turtle.rst:1543 library/turtle.rst:1544 msgid "a number (optional)" msgstr "" -#: library/turtle.rst:1489 +#: library/turtle.rst:1520 msgid "" "Set or return the current tilt-angle. If angle is given, rotate the " "turtleshape to point in the direction specified by angle, regardless of its " @@ -1501,11 +1519,11 @@ msgid "" "turtle (its direction of movement)." msgstr "" -#: library/turtle.rst:1515 +#: library/turtle.rst:1546 msgid "Set or return the current transformation matrix of the turtle shape." msgstr "" -#: library/turtle.rst:1517 +#: library/turtle.rst:1548 msgid "" "If none of the matrix elements are given, return the transformation matrix " "as a tuple of 4 elements. Otherwise set the given elements and transform the " @@ -1515,98 +1533,98 @@ msgid "" "tiltangle according to the given matrix." msgstr "" -#: library/turtle.rst:1539 +#: library/turtle.rst:1570 msgid "" "Return the current shape polygon as tuple of coordinate pairs. This can be " "used to define a new shape or components of a compound shape." msgstr "" -#: library/turtle.rst:1579 library/turtle.rst:2008 +#: library/turtle.rst:1610 library/turtle.rst:2039 msgid "" "a function with two arguments which will be called with the coordinates of " "the clicked point on the canvas" msgstr "" -#: library/turtle.rst:1581 library/turtle.rst:2010 +#: library/turtle.rst:1612 library/turtle.rst:2041 msgid "number of the mouse-button, defaults to 1 (left mouse button)" msgstr "" -#: library/turtle.rst:1582 library/turtle.rst:2011 +#: library/turtle.rst:1613 library/turtle.rst:2042 msgid "" "``True`` or ``False`` -- if ``True``, a new binding will be added, otherwise " "it will replace a former binding" msgstr "" -#: library/turtle.rst:1563 +#: library/turtle.rst:1594 msgid "" "Bind *fun* to mouse-click events on this turtle. If *fun* is ``None``, " "existing bindings are removed. Example for the anonymous turtle, i.e. the " "procedural way:" msgstr "" -#: library/turtle.rst:1585 +#: library/turtle.rst:1616 msgid "" "Bind *fun* to mouse-button-release events on this turtle. If *fun* is " "``None``, existing bindings are removed." msgstr "" -#: library/turtle.rst:1610 +#: library/turtle.rst:1641 msgid "" "Bind *fun* to mouse-move events on this turtle. If *fun* is ``None``, " "existing bindings are removed." msgstr "" -#: library/turtle.rst:1613 +#: library/turtle.rst:1644 msgid "" "Remark: Every sequence of mouse-move-events on a turtle is preceded by a " "mouse-click event on that turtle." msgstr "" -#: library/turtle.rst:1621 +#: library/turtle.rst:1652 msgid "" "Subsequently, clicking and dragging the Turtle will move it across the " "screen thereby producing handdrawings (if pen is down)." msgstr "" -#: library/turtle.rst:1630 +#: library/turtle.rst:1661 msgid "" "Start recording the vertices of a polygon. Current turtle position is first " "vertex of polygon." msgstr "" -#: library/turtle.rst:1636 +#: library/turtle.rst:1667 msgid "" "Stop recording the vertices of a polygon. Current turtle position is last " "vertex of polygon. This will be connected with the first vertex." msgstr "" -#: library/turtle.rst:1642 +#: library/turtle.rst:1673 msgid "Return the last recorded polygon." msgstr "" -#: library/turtle.rst:1661 +#: library/turtle.rst:1692 msgid "" "Create and return a clone of the turtle with same position, heading and " "turtle properties." msgstr "" -#: library/turtle.rst:1674 +#: library/turtle.rst:1705 msgid "" "Return the Turtle object itself. Only reasonable use: as a function to " "return the \"anonymous turtle\":" msgstr "" -#: library/turtle.rst:1688 +#: library/turtle.rst:1719 msgid "" "Return the :class:`TurtleScreen` object the turtle is drawing on. " "TurtleScreen methods can then be called for that object." msgstr "" -#: library/turtle.rst:1702 +#: library/turtle.rst:1733 msgid "an integer or ``None``" msgstr "" -#: library/turtle.rst:1704 +#: library/turtle.rst:1735 msgid "" "Set or disable undobuffer. If *size* is an integer, an empty undobuffer of " "given size is installed. *size* gives the maximum number of turtle actions " @@ -1614,71 +1632,71 @@ msgid "" "``None``, the undobuffer is disabled." msgstr "" -#: library/turtle.rst:1717 +#: library/turtle.rst:1748 msgid "Return number of entries in the undobuffer." msgstr "" -#: library/turtle.rst:1730 +#: library/turtle.rst:1761 msgid "Compound shapes" msgstr "" -#: library/turtle.rst:1732 +#: library/turtle.rst:1763 msgid "" "To use compound turtle shapes, which consist of several polygons of " "different color, you must use the helper class :class:`Shape` explicitly as " "described below:" msgstr "" -#: library/turtle.rst:1736 +#: library/turtle.rst:1767 msgid "Create an empty Shape object of type \"compound\"." msgstr "" -#: library/turtle.rst:1737 +#: library/turtle.rst:1768 msgid "" "Add as many components to this object as desired, using the :meth:`~Shape." "addcomponent` method." msgstr "" -#: library/turtle.rst:1740 +#: library/turtle.rst:1771 msgid "For example:" msgstr "" -#: library/turtle.rst:1751 +#: library/turtle.rst:1782 msgid "Now add the Shape to the Screen's shapelist and use it:" msgstr "" -#: library/turtle.rst:1762 +#: library/turtle.rst:1793 msgid "" "The :class:`Shape` class is used internally by the :func:`register_shape` " "method in different ways. The application programmer has to deal with the " "Shape class *only* when using compound shapes like shown above!" msgstr "" -#: library/turtle.rst:1768 +#: library/turtle.rst:1799 msgid "Methods of TurtleScreen/Screen and corresponding functions" msgstr "" -#: library/turtle.rst:1770 +#: library/turtle.rst:1801 msgid "" "Most of the examples in this section refer to a TurtleScreen instance called " "``screen``." msgstr "" -#: library/turtle.rst:1784 +#: library/turtle.rst:1815 msgid "" "a color string or three numbers in the range 0..colormode or a 3-tuple of " "such numbers" msgstr "" -#: library/turtle.rst:1788 +#: library/turtle.rst:1819 msgid "Set or return background color of the TurtleScreen." msgstr "" -#: library/turtle.rst:1803 +#: library/turtle.rst:1834 msgid "a string, name of a gif-file or ``\"nopic\"``, or ``None``" msgstr "" -#: library/turtle.rst:1805 +#: library/turtle.rst:1836 msgid "" "Set background image or return name of current backgroundimage. If " "*picname* is a filename, set the corresponding image as background. If " @@ -1686,44 +1704,44 @@ msgid "" "*picname* is ``None``, return the filename of the current backgroundimage. ::" msgstr "" -#: library/turtle.rst:1821 +#: library/turtle.rst:1852 msgid "" "This TurtleScreen method is available as a global function only under the " "name ``clearscreen``. The global function ``clear`` is a different one " "derived from the Turtle method ``clear``." msgstr "" -#: library/turtle.rst:1828 +#: library/turtle.rst:1859 msgid "" "Delete all drawings and all turtles from the TurtleScreen. Reset the now " "empty TurtleScreen to its initial state: white background, no background " "image, no event bindings and tracing on." msgstr "" -#: library/turtle.rst:1837 +#: library/turtle.rst:1868 msgid "" "This TurtleScreen method is available as a global function only under the " "name ``resetscreen``. The global function ``reset`` is another one derived " "from the Turtle method ``reset``." msgstr "" -#: library/turtle.rst:1844 +#: library/turtle.rst:1875 msgid "Reset all Turtles on the Screen to their initial state." msgstr "" -#: library/turtle.rst:1849 +#: library/turtle.rst:1880 msgid "positive integer, new width of canvas in pixels" msgstr "" -#: library/turtle.rst:1850 +#: library/turtle.rst:1881 msgid "positive integer, new height of canvas in pixels" msgstr "" -#: library/turtle.rst:1851 +#: library/turtle.rst:1882 msgid "colorstring or color-tuple, new background color" msgstr "" -#: library/turtle.rst:1853 +#: library/turtle.rst:1884 msgid "" "If no arguments are given, return current (canvaswidth, canvasheight). Else " "resize the canvas the turtles are drawing on. Do not alter the drawing " @@ -1732,59 +1750,59 @@ msgid "" "outside the canvas before." msgstr "" -#: library/turtle.rst:1865 +#: library/turtle.rst:1896 msgid "e.g. to search for an erroneously escaped turtle ;-)" msgstr "" -#: library/turtle.rst:1870 +#: library/turtle.rst:1901 msgid "a number, x-coordinate of lower left corner of canvas" msgstr "" -#: library/turtle.rst:1871 +#: library/turtle.rst:1902 msgid "a number, y-coordinate of lower left corner of canvas" msgstr "" -#: library/turtle.rst:1872 +#: library/turtle.rst:1903 msgid "a number, x-coordinate of upper right corner of canvas" msgstr "" -#: library/turtle.rst:1873 +#: library/turtle.rst:1904 msgid "a number, y-coordinate of upper right corner of canvas" msgstr "" -#: library/turtle.rst:1875 +#: library/turtle.rst:1906 msgid "" "Set up user-defined coordinate system and switch to mode \"world\" if " "necessary. This performs a ``screen.reset()``. If mode \"world\" is " "already active, all drawings are redrawn according to the new coordinates." msgstr "" -#: library/turtle.rst:1879 +#: library/turtle.rst:1910 msgid "" "**ATTENTION**: in user-defined coordinate systems angles may appear " "distorted." msgstr "" -#: library/turtle.rst:1907 +#: library/turtle.rst:1938 msgid "positive integer" msgstr "" -#: library/turtle.rst:1909 +#: library/turtle.rst:1940 msgid "" "Set or return the drawing *delay* in milliseconds. (This is approximately " "the time interval between two consecutive canvas updates.) The longer the " "drawing delay, the slower the animation." msgstr "" -#: library/turtle.rst:1913 +#: library/turtle.rst:1944 msgid "Optional argument:" msgstr "" -#: library/turtle.rst:1928 +#: library/turtle.rst:1959 msgid "nonnegative integer" msgstr "" -#: library/turtle.rst:1930 +#: library/turtle.rst:1961 msgid "" "Turn turtle animation on/off and set delay for update drawings. If *n* is " "given, only each n-th regular screen update is really performed. (Can be " @@ -1793,75 +1811,75 @@ msgid "" "delay value (see :func:`delay`)." msgstr "" -#: library/turtle.rst:1950 +#: library/turtle.rst:1981 msgid "Perform a TurtleScreen update. To be used when tracer is turned off." msgstr "" -#: library/turtle.rst:1952 +#: library/turtle.rst:1983 msgid "See also the RawTurtle/Turtle method :func:`speed`." msgstr "" -#: library/turtle.rst:1960 +#: library/turtle.rst:1991 msgid "" "Set focus on TurtleScreen (in order to collect key-events). Dummy arguments " "are provided in order to be able to pass :func:`listen` to the onclick " "method." msgstr "" -#: library/turtle.rst:1987 +#: library/turtle.rst:2018 msgid "a function with no arguments or ``None``" msgstr "" -#: library/turtle.rst:1988 +#: library/turtle.rst:2019 msgid "a string: key (e.g. \"a\") or key-symbol (e.g. \"space\")" msgstr "" -#: library/turtle.rst:1970 +#: library/turtle.rst:2001 msgid "" "Bind *fun* to key-release event of key. If *fun* is ``None``, event " "bindings are removed. Remark: in order to be able to register key-events, " "TurtleScreen must have the focus. (See method :func:`listen`.)" msgstr "" -#: library/turtle.rst:1990 +#: library/turtle.rst:2021 msgid "" "Bind *fun* to key-press event of key if key is given, or to any key-press-" "event if no key is given. Remark: in order to be able to register key-" "events, TurtleScreen must have focus. (See method :func:`listen`.)" msgstr "" -#: library/turtle.rst:2014 +#: library/turtle.rst:2045 msgid "" "Bind *fun* to mouse-click events on this screen. If *fun* is ``None``, " "existing bindings are removed." msgstr "" -#: library/turtle.rst:2017 +#: library/turtle.rst:2048 msgid "" "Example for a TurtleScreen instance named ``screen`` and a Turtle instance " "named ``turtle``:" msgstr "" -#: library/turtle.rst:2028 +#: library/turtle.rst:2059 msgid "" "This TurtleScreen method is available as a global function only under the " "name ``onscreenclick``. The global function ``onclick`` is another one " "derived from the Turtle method ``onclick``." msgstr "" -#: library/turtle.rst:2035 +#: library/turtle.rst:2066 msgid "a function with no arguments" msgstr "" -#: library/turtle.rst:2036 +#: library/turtle.rst:2067 msgid "a number >= 0" msgstr "" -#: library/turtle.rst:2038 +#: library/turtle.rst:2069 msgid "Install a timer that calls *fun* after *t* milliseconds." msgstr "" -#: library/turtle.rst:2056 +#: library/turtle.rst:2087 msgid "" "Starts event loop - calling Tkinter's mainloop function. Must be the last " "statement in a turtle graphics program. Must *not* be used if a script is " @@ -1869,11 +1887,11 @@ msgid "" "turtle graphics. ::" msgstr "" -#: library/turtle.rst:2070 library/turtle.rst:2083 +#: library/turtle.rst:2101 library/turtle.rst:2114 msgid "string" msgstr "" -#: library/turtle.rst:2072 +#: library/turtle.rst:2103 msgid "" "Pop up a dialog window for input of a string. Parameter title is the title " "of the dialog window, prompt is a text mostly describing what information to " @@ -1881,7 +1899,7 @@ msgid "" "``None``. ::" msgstr "" -#: library/turtle.rst:2088 +#: library/turtle.rst:2119 msgid "" "Pop up a dialog window for input of a number. title is the title of the " "dialog window, prompt is a text mostly describing what numerical information " @@ -1892,17 +1910,17 @@ msgid "" "return ``None``. ::" msgstr "" -#: library/turtle.rst:2105 +#: library/turtle.rst:2136 msgid "one of the strings \"standard\", \"logo\" or \"world\"" msgstr "" -#: library/turtle.rst:2107 +#: library/turtle.rst:2138 msgid "" "Set turtle mode (\"standard\", \"logo\" or \"world\") and perform reset. If " "mode is not given, current mode is returned." msgstr "" -#: library/turtle.rst:2110 +#: library/turtle.rst:2141 msgid "" "Mode \"standard\" is compatible with old :mod:`turtle`. Mode \"logo\" is " "compatible with most Logo turtle graphics. Mode \"world\" uses user-defined " @@ -1910,121 +1928,121 @@ msgid "" "if ``x/y`` unit-ratio doesn't equal 1." msgstr "" -#: library/turtle.rst:2116 +#: library/turtle.rst:2147 msgid "Mode" msgstr "" -#: library/turtle.rst:2116 +#: library/turtle.rst:2147 msgid "Initial turtle heading" msgstr "" -#: library/turtle.rst:2116 +#: library/turtle.rst:2147 msgid "positive angles" msgstr "" -#: library/turtle.rst:2118 +#: library/turtle.rst:2149 msgid "\"standard\"" msgstr "" -#: library/turtle.rst:2118 +#: library/turtle.rst:2149 msgid "to the right (east)" msgstr "" -#: library/turtle.rst:2118 +#: library/turtle.rst:2149 msgid "counterclockwise" msgstr "" -#: library/turtle.rst:2119 +#: library/turtle.rst:2150 msgid "\"logo\"" msgstr "" -#: library/turtle.rst:2119 +#: library/turtle.rst:2150 msgid "upward (north)" msgstr "" -#: library/turtle.rst:2119 +#: library/turtle.rst:2150 msgid "clockwise" msgstr "" -#: library/turtle.rst:2132 +#: library/turtle.rst:2163 msgid "one of the values 1.0 or 255" msgstr "" -#: library/turtle.rst:2134 +#: library/turtle.rst:2165 msgid "" "Return the colormode or set it to 1.0 or 255. Subsequently *r*, *g*, *b* " "values of color triples have to be in the range 0..*cmode*." msgstr "" -#: library/turtle.rst:2155 +#: library/turtle.rst:2186 msgid "" "Return the Canvas of this TurtleScreen. Useful for insiders who know what " "to do with a Tkinter Canvas." msgstr "" -#: library/turtle.rst:2168 +#: library/turtle.rst:2199 msgid "Return a list of names of all currently available turtle shapes." msgstr "" -#: library/turtle.rst:2180 +#: library/turtle.rst:2211 msgid "There are three different ways to call this function:" msgstr "" -#: library/turtle.rst:2182 +#: library/turtle.rst:2213 msgid "" "*name* is the name of a gif-file and *shape* is ``None``: Install the " "corresponding image shape. ::" msgstr "" -#: library/turtle.rst:2188 +#: library/turtle.rst:2219 msgid "" "Image shapes *do not* rotate when turning the turtle, so they do not display " "the heading of the turtle!" msgstr "" -#: library/turtle.rst:2191 +#: library/turtle.rst:2222 msgid "" "*name* is an arbitrary string and *shape* is a tuple of pairs of " "coordinates: Install the corresponding polygon shape." msgstr "" -#: library/turtle.rst:2199 +#: library/turtle.rst:2230 msgid "" "*name* is an arbitrary string and *shape* is a (compound) :class:`Shape` " "object: Install the corresponding compound shape." msgstr "" -#: library/turtle.rst:2202 +#: library/turtle.rst:2233 msgid "" "Add a turtle shape to TurtleScreen's shapelist. Only thusly registered " "shapes can be used by issuing the command ``shape(shapename)``." msgstr "" -#: library/turtle.rst:2208 +#: library/turtle.rst:2239 msgid "Return the list of turtles on the screen." msgstr "" -#: library/turtle.rst:2219 +#: library/turtle.rst:2250 msgid "Return the height of the turtle window. ::" msgstr "" -#: library/turtle.rst:2227 +#: library/turtle.rst:2258 msgid "Return the width of the turtle window. ::" msgstr "" -#: library/turtle.rst:2236 +#: library/turtle.rst:2267 msgid "Methods specific to Screen, not inherited from TurtleScreen" msgstr "" -#: library/turtle.rst:2240 +#: library/turtle.rst:2271 msgid "Shut the turtlegraphics window." msgstr "" -#: library/turtle.rst:2245 +#: library/turtle.rst:2276 msgid "Bind ``bye()`` method to mouse clicks on the Screen." msgstr "" -#: library/turtle.rst:2248 +#: library/turtle.rst:2279 msgid "" "If the value \"using_IDLE\" in the configuration dictionary is ``False`` " "(default value), also enter mainloop. Remark: If IDLE with the ``-n`` " @@ -2033,211 +2051,211 @@ msgid "" "client script." msgstr "" -#: library/turtle.rst:2257 +#: library/turtle.rst:2288 msgid "" "Set the size and position of the main window. Default values of arguments " "are stored in the configuration dictionary and can be changed via a :file:" "`turtle.cfg` file." msgstr "" -#: library/turtle.rst:2261 +#: library/turtle.rst:2292 msgid "" "if an integer, a size in pixels, if a float, a fraction of the screen; " "default is 50% of screen" msgstr "" -#: library/turtle.rst:2263 +#: library/turtle.rst:2294 msgid "" "if an integer, the height in pixels, if a float, a fraction of the screen; " "default is 75% of screen" msgstr "" -#: library/turtle.rst:2265 +#: library/turtle.rst:2296 msgid "" "if positive, starting position in pixels from the left edge of the screen, " "if negative from the right edge, if ``None``, center window horizontally" msgstr "" -#: library/turtle.rst:2268 +#: library/turtle.rst:2299 msgid "" "if positive, starting position in pixels from the top edge of the screen, if " "negative from the bottom edge, if ``None``, center window vertically" msgstr "" -#: library/turtle.rst:2283 +#: library/turtle.rst:2314 msgid "a string that is shown in the titlebar of the turtle graphics window" msgstr "" -#: library/turtle.rst:2286 +#: library/turtle.rst:2317 msgid "Set title of turtle window to *titlestring*." msgstr "" -#: library/turtle.rst:2295 +#: library/turtle.rst:2326 msgid "Public classes" msgstr "" -#: library/turtle.rst:2301 +#: library/turtle.rst:2332 msgid "" "a :class:`!tkinter.Canvas`, a :class:`ScrolledCanvas` or a :class:" "`TurtleScreen`" msgstr "" -#: library/turtle.rst:2304 +#: library/turtle.rst:2335 msgid "" "Create a turtle. The turtle has all methods described above as \"methods of " "Turtle/RawTurtle\"." msgstr "" -#: library/turtle.rst:2310 +#: library/turtle.rst:2341 msgid "" "Subclass of RawTurtle, has the same interface but draws on a default :class:" "`Screen` object created automatically when needed for the first time." msgstr "" -#: library/turtle.rst:2316 +#: library/turtle.rst:2347 msgid "a :class:`!tkinter.Canvas`" msgstr "" -#: library/turtle.rst:2318 +#: library/turtle.rst:2349 msgid "" "Provides screen oriented methods like :func:`bgcolor` etc. that are " "described above." msgstr "" -#: library/turtle.rst:2323 +#: library/turtle.rst:2354 msgid "" "Subclass of TurtleScreen, with :ref:`four methods added `." msgstr "" -#: library/turtle.rst:2328 +#: library/turtle.rst:2359 msgid "" "some Tkinter widget to contain the ScrolledCanvas, i.e. a Tkinter-canvas " "with scrollbars added" msgstr "" -#: library/turtle.rst:2331 +#: library/turtle.rst:2362 msgid "" "Used by class Screen, which thus automatically provides a ScrolledCanvas as " "playground for the turtles." msgstr "" -#: library/turtle.rst:2336 +#: library/turtle.rst:2367 msgid "one of the strings \"polygon\", \"image\", \"compound\"" msgstr "" -#: library/turtle.rst:2338 +#: library/turtle.rst:2369 msgid "" "Data structure modeling shapes. The pair ``(type_, data)`` must follow this " "specification:" msgstr "" -#: library/turtle.rst:2343 +#: library/turtle.rst:2374 msgid "*type_*" msgstr "" -#: library/turtle.rst:2343 +#: library/turtle.rst:2374 msgid "*data*" msgstr "" -#: library/turtle.rst:2345 +#: library/turtle.rst:2376 msgid "\"polygon\"" msgstr "" -#: library/turtle.rst:2345 +#: library/turtle.rst:2376 msgid "a polygon-tuple, i.e. a tuple of pairs of coordinates" msgstr "" -#: library/turtle.rst:2346 +#: library/turtle.rst:2377 msgid "\"image\"" msgstr "" -#: library/turtle.rst:2346 +#: library/turtle.rst:2377 msgid "an image (in this form only used internally!)" msgstr "" -#: library/turtle.rst:2347 +#: library/turtle.rst:2378 msgid "\"compound\"" msgstr "" -#: library/turtle.rst:2347 +#: library/turtle.rst:2378 msgid "" "``None`` (a compound shape has to be constructed using the :meth:" "`addcomponent` method)" msgstr "" -#: library/turtle.rst:2353 +#: library/turtle.rst:2384 msgid "a polygon, i.e. a tuple of pairs of numbers" msgstr "" -#: library/turtle.rst:2354 +#: library/turtle.rst:2385 msgid "a color the *poly* will be filled with" msgstr "" -#: library/turtle.rst:2355 +#: library/turtle.rst:2386 msgid "a color for the poly's outline (if given)" msgstr "" -#: library/turtle.rst:2357 +#: library/turtle.rst:2388 msgid "Example:" msgstr "" -#: library/turtle.rst:2367 +#: library/turtle.rst:2398 msgid "See :ref:`compoundshapes`." msgstr "" -#: library/turtle.rst:2372 +#: library/turtle.rst:2403 msgid "" "A two-dimensional vector class, used as a helper class for implementing " "turtle graphics. May be useful for turtle graphics programs too. Derived " "from tuple, so a vector is a tuple!" msgstr "" -#: library/turtle.rst:2376 +#: library/turtle.rst:2407 msgid "Provides (for *a*, *b* vectors, *k* number):" msgstr "" -#: library/turtle.rst:2378 +#: library/turtle.rst:2409 msgid "``a + b`` vector addition" msgstr "" -#: library/turtle.rst:2379 +#: library/turtle.rst:2410 msgid "``a - b`` vector subtraction" msgstr "" -#: library/turtle.rst:2380 +#: library/turtle.rst:2411 msgid "``a * b`` inner product" msgstr "" -#: library/turtle.rst:2381 +#: library/turtle.rst:2412 msgid "``k * a`` and ``a * k`` multiplication with scalar" msgstr "" -#: library/turtle.rst:2382 +#: library/turtle.rst:2413 msgid "``abs(a)`` absolute value of a" msgstr "" -#: library/turtle.rst:2383 +#: library/turtle.rst:2414 msgid "``a.rotate(angle)`` rotation" msgstr "" -#: library/turtle.rst:2389 +#: library/turtle.rst:2420 msgid "Explanation" msgstr "" -#: library/turtle.rst:2391 +#: library/turtle.rst:2422 msgid "" "A turtle object draws on a screen object, and there a number of key classes " "in the turtle object-oriented interface that can be used to create them and " "relate them to each other." msgstr "" -#: library/turtle.rst:2395 +#: library/turtle.rst:2426 msgid "" "A :class:`Turtle` instance will automatically create a :class:`Screen` " "instance if one is not already present." msgstr "" -#: library/turtle.rst:2398 +#: library/turtle.rst:2429 msgid "" "``Turtle`` is a subclass of :class:`RawTurtle`, which *doesn't* " "automatically create a drawing surface - a *canvas* will need to be provided " @@ -2245,7 +2263,7 @@ msgid "" "`ScrolledCanvas` or :class:`TurtleScreen`." msgstr "" -#: library/turtle.rst:2404 +#: library/turtle.rst:2435 msgid "" ":class:`TurtleScreen` is the basic drawing surface for a turtle. :class:" "`Screen` is a subclass of ``TurtleScreen``, and includes :ref:`some " @@ -2254,7 +2272,7 @@ msgid "" "`!tkinter.Canvas` or a :class:`ScrolledCanvas` as an argument." msgstr "" -#: library/turtle.rst:2411 +#: library/turtle.rst:2442 msgid "" "The functional interface for turtle graphics uses the various methods of " "``Turtle`` and ``TurtleScreen``/``Screen``. Behind the scenes, a screen " @@ -2263,65 +2281,65 @@ msgid "" "created whenever any of the functions derived from a Turtle method is called." msgstr "" -#: library/turtle.rst:2417 +#: library/turtle.rst:2448 msgid "" "To use multiple turtles on a screen, the object-oriented interface must be " "used." msgstr "" -#: library/turtle.rst:2422 +#: library/turtle.rst:2453 msgid "Help and configuration" msgstr "" -#: library/turtle.rst:2425 +#: library/turtle.rst:2456 msgid "How to use help" msgstr "" -#: library/turtle.rst:2427 +#: library/turtle.rst:2458 msgid "" "The public methods of the Screen and Turtle classes are documented " "extensively via docstrings. So these can be used as online-help via the " "Python help facilities:" msgstr "" -#: library/turtle.rst:2431 +#: library/turtle.rst:2462 msgid "" "When using IDLE, tooltips show the signatures and first lines of the " "docstrings of typed in function-/method calls." msgstr "" -#: library/turtle.rst:2434 +#: library/turtle.rst:2465 msgid "Calling :func:`help` on methods or functions displays the docstrings::" msgstr "" -#: library/turtle.rst:2465 +#: library/turtle.rst:2496 msgid "" "The docstrings of the functions which are derived from methods have a " "modified form::" msgstr "" -#: library/turtle.rst:2499 +#: library/turtle.rst:2530 msgid "" "These modified docstrings are created automatically together with the " "function definitions that are derived from the methods at import time." msgstr "" -#: library/turtle.rst:2504 +#: library/turtle.rst:2535 msgid "Translation of docstrings into different languages" msgstr "" -#: library/turtle.rst:2506 +#: library/turtle.rst:2537 msgid "" "There is a utility to create a dictionary the keys of which are the method " "names and the values of which are the docstrings of the public methods of " "the classes Screen and Turtle." msgstr "" -#: library/turtle.rst:2512 +#: library/turtle.rst:2543 msgid "a string, used as filename" msgstr "" -#: library/turtle.rst:2514 +#: library/turtle.rst:2545 msgid "" "Create and write docstring-dictionary to a Python script with the given " "filename. This function has to be called explicitly (it is not used by the " @@ -2330,37 +2348,37 @@ msgid "" "for translation of the docstrings into different languages." msgstr "" -#: library/turtle.rst:2520 +#: library/turtle.rst:2551 msgid "" "If you (or your students) want to use :mod:`turtle` with online help in your " "native language, you have to translate the docstrings and save the resulting " "file as e.g. :file:`turtle_docstringdict_german.py`." msgstr "" -#: library/turtle.rst:2524 +#: library/turtle.rst:2555 msgid "" "If you have an appropriate entry in your :file:`turtle.cfg` file this " "dictionary will be read in at import time and will replace the original " "English docstrings." msgstr "" -#: library/turtle.rst:2527 +#: library/turtle.rst:2558 msgid "" "At the time of this writing there are docstring dictionaries in German and " "in Italian. (Requests please to glingl@aon.at.)" msgstr "" -#: library/turtle.rst:2533 +#: library/turtle.rst:2564 msgid "How to configure Screen and Turtles" msgstr "" -#: library/turtle.rst:2535 +#: library/turtle.rst:2566 msgid "" "The built-in default configuration mimics the appearance and behaviour of " "the old turtle module in order to retain best possible compatibility with it." msgstr "" -#: library/turtle.rst:2538 +#: library/turtle.rst:2569 msgid "" "If you want to use a different configuration which better reflects the " "features of this module or which better fits to your needs, e.g. for use in " @@ -2369,54 +2387,54 @@ msgid "" "settings." msgstr "" -#: library/turtle.rst:2543 +#: library/turtle.rst:2574 msgid "" "The built in configuration would correspond to the following ``turtle.cfg``:" msgstr "" -#: library/turtle.rst:2568 +#: library/turtle.rst:2599 msgid "Short explanation of selected entries:" msgstr "" -#: library/turtle.rst:2570 +#: library/turtle.rst:2601 msgid "" "The first four lines correspond to the arguments of the :func:`Screen.setup " "` method." msgstr "" -#: library/turtle.rst:2572 +#: library/turtle.rst:2603 msgid "" "Line 5 and 6 correspond to the arguments of the method :func:`Screen." "screensize `." msgstr "" -#: library/turtle.rst:2574 +#: library/turtle.rst:2605 msgid "" "*shape* can be any of the built-in shapes, e.g: arrow, turtle, etc. For " "more info try ``help(shape)``." msgstr "" -#: library/turtle.rst:2576 +#: library/turtle.rst:2607 msgid "" "If you want to use no fill color (i.e. make the turtle transparent), you " "have to write ``fillcolor = \"\"`` (but all nonempty strings must not have " "quotes in the cfg file)." msgstr "" -#: library/turtle.rst:2579 +#: library/turtle.rst:2610 msgid "" "If you want to reflect the turtle its state, you have to use ``resizemode = " "auto``." msgstr "" -#: library/turtle.rst:2581 +#: library/turtle.rst:2612 msgid "" "If you set e.g. ``language = italian`` the docstringdict :file:" "`turtle_docstringdict_italian.py` will be loaded at import time (if present " "on the import path, e.g. in the same directory as :mod:`turtle`)." msgstr "" -#: library/turtle.rst:2584 +#: library/turtle.rst:2615 msgid "" "The entries *exampleturtle* and *examplescreen* define the names of these " "objects as they occur in the docstrings. The transformation of method-" @@ -2424,301 +2442,301 @@ msgid "" "docstrings." msgstr "" -#: library/turtle.rst:2588 +#: library/turtle.rst:2619 msgid "" "*using_IDLE*: Set this to ``True`` if you regularly work with IDLE and its " "``-n`` switch (\"no subprocess\"). This will prevent :func:`exitonclick` to " "enter the mainloop." msgstr "" -#: library/turtle.rst:2592 +#: library/turtle.rst:2623 msgid "" "There can be a :file:`turtle.cfg` file in the directory where :mod:`turtle` " "is stored and an additional one in the current working directory. The " "latter will override the settings of the first one." msgstr "" -#: library/turtle.rst:2596 +#: library/turtle.rst:2627 msgid "" "The :file:`Lib/turtledemo` directory contains a :file:`turtle.cfg` file. " "You can study it as an example and see its effects when running the demos " "(preferably not from within the demo-viewer)." msgstr "" -#: library/turtle.rst:2602 +#: library/turtle.rst:2633 msgid ":mod:`turtledemo` --- Demo scripts" msgstr "" -#: library/turtle.rst:2607 +#: library/turtle.rst:2638 msgid "" "The :mod:`turtledemo` package includes a set of demo scripts. These scripts " "can be run and viewed using the supplied demo viewer as follows::" msgstr "" -#: library/turtle.rst:2612 +#: library/turtle.rst:2643 msgid "" "Alternatively, you can run the demo scripts individually. For example, ::" msgstr "" -#: library/turtle.rst:2616 +#: library/turtle.rst:2647 msgid "The :mod:`turtledemo` package directory contains:" msgstr "" -#: library/turtle.rst:2618 +#: library/turtle.rst:2649 msgid "" "A demo viewer :file:`__main__.py` which can be used to view the sourcecode " "of the scripts and run them at the same time." msgstr "" -#: library/turtle.rst:2620 +#: library/turtle.rst:2651 msgid "" "Multiple scripts demonstrating different features of the :mod:`turtle` " "module. Examples can be accessed via the Examples menu. They can also be " "run standalone." msgstr "" -#: library/turtle.rst:2623 +#: library/turtle.rst:2654 msgid "" "A :file:`turtle.cfg` file which serves as an example of how to write and use " "such files." msgstr "" -#: library/turtle.rst:2626 +#: library/turtle.rst:2657 msgid "The demo scripts are:" msgstr "" -#: library/turtle.rst:2633 +#: library/turtle.rst:2664 msgid "Name" msgstr "" -#: library/turtle.rst:2633 +#: library/turtle.rst:2664 msgid "Description" msgstr "" -#: library/turtle.rst:2633 +#: library/turtle.rst:2664 msgid "Features" msgstr "" -#: library/turtle.rst:2635 +#: library/turtle.rst:2666 msgid "bytedesign" msgstr "" -#: library/turtle.rst:2635 +#: library/turtle.rst:2666 msgid "complex classical turtle graphics pattern" msgstr "" -#: library/turtle.rst:2635 +#: library/turtle.rst:2666 msgid ":func:`tracer`, delay, :func:`update`" msgstr "" -#: library/turtle.rst:2638 +#: library/turtle.rst:2669 msgid "chaos" msgstr "" -#: library/turtle.rst:2638 +#: library/turtle.rst:2669 msgid "" "graphs Verhulst dynamics, shows that computer's computations can generate " "results sometimes against the common sense expectations" msgstr "" -#: library/turtle.rst:2638 +#: library/turtle.rst:2669 msgid "world coordinates" msgstr "" -#: library/turtle.rst:2644 +#: library/turtle.rst:2675 msgid "clock" msgstr "" -#: library/turtle.rst:2644 +#: library/turtle.rst:2675 msgid "analog clock showing time of your computer" msgstr "" -#: library/turtle.rst:2644 +#: library/turtle.rst:2675 msgid "turtles as clock's hands, ontimer" msgstr "" -#: library/turtle.rst:2647 +#: library/turtle.rst:2678 msgid "colormixer" msgstr "" -#: library/turtle.rst:2647 +#: library/turtle.rst:2678 msgid "experiment with r, g, b" msgstr "" -#: library/turtle.rst:2649 +#: library/turtle.rst:2680 msgid "forest" msgstr "" -#: library/turtle.rst:2649 +#: library/turtle.rst:2680 msgid "3 breadth-first trees" msgstr "" -#: library/turtle.rst:2649 +#: library/turtle.rst:2680 msgid "randomization" msgstr "" -#: library/turtle.rst:2651 +#: library/turtle.rst:2682 msgid "fractalcurves" msgstr "" -#: library/turtle.rst:2651 +#: library/turtle.rst:2682 msgid "Hilbert & Koch curves" msgstr "" -#: library/turtle.rst:2651 +#: library/turtle.rst:2682 msgid "recursion" msgstr "" -#: library/turtle.rst:2653 +#: library/turtle.rst:2684 msgid "lindenmayer" msgstr "" -#: library/turtle.rst:2653 +#: library/turtle.rst:2684 msgid "ethnomathematics (indian kolams)" msgstr "" -#: library/turtle.rst:2653 +#: library/turtle.rst:2684 msgid "L-System" msgstr "" -#: library/turtle.rst:2656 +#: library/turtle.rst:2687 msgid "minimal_hanoi" msgstr "" -#: library/turtle.rst:2656 +#: library/turtle.rst:2687 msgid "Towers of Hanoi" msgstr "" -#: library/turtle.rst:2656 +#: library/turtle.rst:2687 msgid "Rectangular Turtles as Hanoi discs (shape, shapesize)" msgstr "" -#: library/turtle.rst:2660 +#: library/turtle.rst:2691 msgid "nim" msgstr "" -#: library/turtle.rst:2660 +#: library/turtle.rst:2691 msgid "" "play the classical nim game with three heaps of sticks against the computer." msgstr "" -#: library/turtle.rst:2660 +#: library/turtle.rst:2691 msgid "turtles as nimsticks, event driven (mouse, keyboard)" msgstr "" -#: library/turtle.rst:2664 +#: library/turtle.rst:2695 msgid "paint" msgstr "" -#: library/turtle.rst:2664 +#: library/turtle.rst:2695 msgid "super minimalistic drawing program" msgstr "" -#: library/turtle.rst:2667 +#: library/turtle.rst:2698 msgid "peace" msgstr "" -#: library/turtle.rst:2667 +#: library/turtle.rst:2698 msgid "elementary" msgstr "" -#: library/turtle.rst:2667 +#: library/turtle.rst:2698 msgid "turtle: appearance and animation" msgstr "" -#: library/turtle.rst:2670 +#: library/turtle.rst:2701 msgid "penrose" msgstr "" -#: library/turtle.rst:2670 +#: library/turtle.rst:2701 msgid "aperiodic tiling with kites and darts" msgstr "" -#: library/turtle.rst:2673 +#: library/turtle.rst:2704 msgid "planet_and_moon" msgstr "" -#: library/turtle.rst:2673 +#: library/turtle.rst:2704 msgid "simulation of gravitational system" msgstr "" -#: library/turtle.rst:2673 +#: library/turtle.rst:2704 msgid "compound shapes, :class:`Vec2D`" msgstr "" -#: library/turtle.rst:2676 +#: library/turtle.rst:2707 msgid "rosette" msgstr "" -#: library/turtle.rst:2676 +#: library/turtle.rst:2707 msgid "a pattern from the wikipedia article on turtle graphics" msgstr "" -#: library/turtle.rst:2676 +#: library/turtle.rst:2707 msgid ":func:`clone`, :func:`undo`" msgstr "" -#: library/turtle.rst:2679 +#: library/turtle.rst:2710 msgid "round_dance" msgstr "" -#: library/turtle.rst:2679 +#: library/turtle.rst:2710 msgid "dancing turtles rotating pairwise in opposite direction" msgstr "" -#: library/turtle.rst:2679 +#: library/turtle.rst:2710 msgid "compound shapes, clone shapesize, tilt, get_shapepoly, update" msgstr "" -#: library/turtle.rst:2683 +#: library/turtle.rst:2714 msgid "sorting_animate" msgstr "" -#: library/turtle.rst:2683 +#: library/turtle.rst:2714 msgid "visual demonstration of different sorting methods" msgstr "" -#: library/turtle.rst:2683 +#: library/turtle.rst:2714 msgid "simple alignment, randomization" msgstr "" -#: library/turtle.rst:2686 +#: library/turtle.rst:2717 msgid "tree" msgstr "" -#: library/turtle.rst:2686 +#: library/turtle.rst:2717 msgid "a (graphical) breadth first tree (using generators)" msgstr "" -#: library/turtle.rst:2689 +#: library/turtle.rst:2720 msgid "two_canvases" msgstr "" -#: library/turtle.rst:2689 +#: library/turtle.rst:2720 msgid "simple design" msgstr "" -#: library/turtle.rst:2689 +#: library/turtle.rst:2720 msgid "turtles on two canvases" msgstr "" -#: library/turtle.rst:2692 +#: library/turtle.rst:2723 msgid "yinyang" msgstr "" -#: library/turtle.rst:2692 +#: library/turtle.rst:2723 msgid "another elementary example" msgstr "" -#: library/turtle.rst:2695 +#: library/turtle.rst:2726 msgid "Have fun!" msgstr "" -#: library/turtle.rst:2699 +#: library/turtle.rst:2730 msgid "Changes since Python 2.6" msgstr "" -#: library/turtle.rst:2701 +#: library/turtle.rst:2732 msgid "" "The methods :func:`Turtle.tracer `, :func:`Turtle.window_width " "` and :func:`Turtle.window_height ` have been " @@ -2729,14 +2747,14 @@ msgid "" "methods.)" msgstr "" -#: library/turtle.rst:2709 +#: library/turtle.rst:2740 msgid "" "The method :func:`!Turtle.fill` has been eliminated. The behaviour of :func:" "`begin_fill` and :func:`end_fill` have changed slightly: now every filling " "process must be completed with an ``end_fill()`` call." msgstr "" -#: library/turtle.rst:2714 +#: library/turtle.rst:2745 msgid "" "A method :func:`Turtle.filling ` has been added. It returns a " "boolean value: ``True`` if a filling process is under way, ``False`` " @@ -2744,11 +2762,11 @@ msgid "" "in Python 2.6." msgstr "" -#: library/turtle.rst:2720 +#: library/turtle.rst:2751 msgid "Changes since Python 3.0" msgstr "" -#: library/turtle.rst:2722 +#: library/turtle.rst:2753 msgid "" "The :class:`Turtle` methods :func:`shearfactor`, :func:`shapetransform` and :" "func:`get_shapepoly` have been added. Thus the full range of regular linear " @@ -2757,28 +2775,28 @@ msgid "" "set the tilt angle. :func:`settiltangle` has been deprecated." msgstr "" -#: library/turtle.rst:2729 +#: library/turtle.rst:2760 msgid "" "The :class:`Screen` method :func:`onkeypress` has been added as a complement " "to :func:`onkey`. As the latter binds actions to the key release event, an " "alias: :func:`onkeyrelease` was also added for it." msgstr "" -#: library/turtle.rst:2733 +#: library/turtle.rst:2764 msgid "" "The method :func:`Screen.mainloop ` has been added, so there is no " "longer a need to use the standalone :func:`mainloop` function when working " "with :class:`Screen` and :class:`Turtle` objects." msgstr "" -#: library/turtle.rst:2737 +#: library/turtle.rst:2768 msgid "" "Two input methods have been added: :func:`Screen.textinput ` and :" "func:`Screen.numinput `. These pop up input dialogs and return " "strings and numbers respectively." msgstr "" -#: library/turtle.rst:2741 +#: library/turtle.rst:2772 msgid "" "Two example scripts :file:`tdemo_nim.py` and :file:`tdemo_round_dance.py` " "have been added to the :file:`Lib/turtledemo` directory." diff --git a/library/types.po b/library/types.po index caa7cdfb6..f6a1e5154 100644 --- a/library/types.po +++ b/library/types.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -128,14 +128,33 @@ msgid "" msgstr "" #: library/types.rst:87 +msgid "" +"Return the tuple of objects originally given as the bases of *cls* before " +"the :meth:`~object.__mro_entries__` method has been called on any bases " +"(following the mechanisms laid out in :pep:`560`). This is useful for " +"introspecting :ref:`Generics `." +msgstr "" + +#: library/types.rst:92 +msgid "" +"For classes that have an ``__orig_bases__`` attribute, this function returns " +"the value of ``cls.__orig_bases__``. For classes without the " +"``__orig_bases__`` attribute, ``cls.__bases__`` is returned." +msgstr "" + +#: library/types.rst:97 +msgid "Examples::" +msgstr "" + +#: library/types.rst:127 msgid ":pep:`560` - Core support for typing module and generic types" msgstr "" -#: library/types.rst:91 +#: library/types.rst:131 msgid "Standard Interpreter Types" msgstr "" -#: library/types.rst:93 +#: library/types.rst:133 msgid "" "This module provides names for many of the types that are required to " "implement a Python interpreter. It deliberately avoids including some of the " @@ -143,156 +162,156 @@ msgid "" "``listiterator`` type." msgstr "" -#: library/types.rst:98 +#: library/types.rst:138 msgid "" "Typical use of these names is for :func:`isinstance` or :func:`issubclass` " "checks." msgstr "" -#: library/types.rst:102 +#: library/types.rst:142 msgid "" "If you instantiate any of these types, note that signatures may vary between " "Python versions." msgstr "" -#: library/types.rst:104 +#: library/types.rst:144 msgid "Standard names are defined for the following types:" msgstr "" -#: library/types.rst:108 +#: library/types.rst:148 msgid "The type of :data:`None`." msgstr "" -#: library/types.rst:116 +#: library/types.rst:156 msgid "" "The type of user-defined functions and functions created by :keyword:" "`lambda` expressions." msgstr "" -#: library/types.rst:119 +#: library/types.rst:159 msgid "" "Raises an :ref:`auditing event ` ``function.__new__`` with " "argument ``code``." msgstr "" -#: library/types.rst:121 +#: library/types.rst:161 msgid "" "The audit event only occurs for direct instantiation of function objects, " "and is not raised for normal compilation." msgstr "" -#: library/types.rst:127 +#: library/types.rst:167 msgid "" "The type of :term:`generator`-iterator objects, created by generator " "functions." msgstr "" -#: library/types.rst:133 +#: library/types.rst:173 msgid "" "The type of :term:`coroutine` objects, created by :keyword:`async def` " "functions." msgstr "" -#: library/types.rst:141 +#: library/types.rst:181 msgid "" "The type of :term:`asynchronous generator`-iterator objects, created by " "asynchronous generator functions." msgstr "" -#: library/types.rst:151 +#: library/types.rst:191 msgid "The type for code objects such as returned by :func:`compile`." msgstr "" -#: library/types.rst:153 +#: library/types.rst:193 msgid "" "Raises an :ref:`auditing event ` ``code.__new__`` with arguments " "``code``, ``filename``, ``name``, ``argcount``, ``posonlyargcount``, " "``kwonlyargcount``, ``nlocals``, ``stacksize``, ``flags``." msgstr "" -#: library/types.rst:155 +#: library/types.rst:195 msgid "" "Note that the audited arguments may not match the names or positions " "required by the initializer. The audit event only occurs for direct " "instantiation of code objects, and is not raised for normal compilation." msgstr "" -#: library/types.rst:161 +#: library/types.rst:201 msgid "" "Return a copy of the code object with new values for the specified fields." msgstr "" -#: library/types.rst:167 +#: library/types.rst:207 msgid "" "The type for cell objects: such objects are used as containers for a " "function's free variables." msgstr "" -#: library/types.rst:175 +#: library/types.rst:215 msgid "The type of methods of user-defined class instances." msgstr "" -#: library/types.rst:181 +#: library/types.rst:221 msgid "" "The type of built-in functions like :func:`len` or :func:`sys.exit`, and " "methods of built-in classes. (Here, the term \"built-in\" means \"written " "in C\".)" msgstr "" -#: library/types.rst:188 +#: library/types.rst:228 msgid "" "The type of methods of some built-in data types and base classes such as :" "meth:`object.__init__` or :meth:`object.__lt__`." msgstr "" -#: library/types.rst:196 +#: library/types.rst:236 msgid "" "The type of *bound* methods of some built-in data types and base classes. " "For example it is the type of :code:`object().__str__`." msgstr "" -#: library/types.rst:204 +#: library/types.rst:244 msgid "The type of :data:`NotImplemented`." msgstr "" -#: library/types.rst:211 +#: library/types.rst:251 msgid "" "The type of methods of some built-in data types such as :meth:`str.join`." msgstr "" -#: library/types.rst:218 +#: library/types.rst:258 msgid "" "The type of *unbound* class methods of some built-in data types such as " "``dict.__dict__['fromkeys']``." msgstr "" -#: library/types.rst:226 +#: library/types.rst:266 msgid "" "The type of :term:`modules `. The constructor takes the name of the " "module to be created and optionally its :term:`docstring`." msgstr "" -#: library/types.rst:230 +#: library/types.rst:270 msgid "" "Use :func:`importlib.util.module_from_spec` to create a new module if you " "wish to set the various import-controlled attributes." msgstr "" -#: library/types.rst:235 +#: library/types.rst:275 msgid "The :term:`docstring` of the module. Defaults to ``None``." msgstr "" -#: library/types.rst:239 +#: library/types.rst:279 msgid "The :term:`loader` which loaded the module. Defaults to ``None``." msgstr "" -#: library/types.rst:241 +#: library/types.rst:281 msgid "" "This attribute is to match :attr:`importlib.machinery.ModuleSpec.loader` as " "stored in the :attr:`__spec__` object." msgstr "" -#: library/types.rst:245 +#: library/types.rst:285 msgid "" "A future version of Python may stop setting this attribute by default. To " "guard against this potential change, preferably read from the :attr:" @@ -300,17 +319,17 @@ msgid "" "None)`` if you explicitly need to use this attribute." msgstr "" -#: library/types.rst:276 +#: library/types.rst:316 msgid "Defaults to ``None``. Previously the attribute was optional." msgstr "" -#: library/types.rst:256 +#: library/types.rst:296 msgid "" "The name of the module. Expected to match :attr:`importlib.machinery." "ModuleSpec.name`." msgstr "" -#: library/types.rst:261 +#: library/types.rst:301 msgid "" "Which :term:`package` a module belongs to. If the module is top-level (i.e. " "not a part of any specific package) then the attribute should be set to " @@ -318,13 +337,13 @@ msgid "" "`__name__` if the module is a package itself). Defaults to ``None``." msgstr "" -#: library/types.rst:266 +#: library/types.rst:306 msgid "" "This attribute is to match :attr:`importlib.machinery.ModuleSpec.parent` as " "stored in the :attr:`__spec__` object." msgstr "" -#: library/types.rst:270 +#: library/types.rst:310 msgid "" "A future version of Python may stop setting this attribute by default. To " "guard against this potential change, preferably read from the :attr:" @@ -332,79 +351,79 @@ msgid "" "None)`` if you explicitly need to use this attribute." msgstr "" -#: library/types.rst:281 +#: library/types.rst:321 msgid "" "A record of the module's import-system-related state. Expected to be an " "instance of :class:`importlib.machinery.ModuleSpec`." msgstr "" -#: library/types.rst:289 +#: library/types.rst:329 msgid "The type of :data:`Ellipsis`." msgstr "" -#: library/types.rst:295 +#: library/types.rst:335 msgid "" "The type of :ref:`parameterized generics ` such as " "``list[int]``." msgstr "" -#: library/types.rst:298 +#: library/types.rst:338 msgid "" "``t_origin`` should be a non-parameterized generic class, such as ``list``, " "``tuple`` or ``dict``. ``t_args`` should be a :class:`tuple` (possibly of " "length 1) of types which parameterize ``t_origin``::" msgstr "" -#: library/types.rst:311 +#: library/types.rst:351 msgid "This type can now be subclassed." msgstr "" -#: library/types.rst:317 +#: library/types.rst:357 msgid ":ref:`Generic Alias Types`" msgstr "" -#: library/types.rst:317 +#: library/types.rst:357 msgid "In-depth documentation on instances of :class:`!types.GenericAlias`" msgstr "" -#: library/types.rst:319 +#: library/types.rst:359 msgid ":pep:`585` - Type Hinting Generics In Standard Collections" msgstr "" -#: library/types.rst:320 +#: library/types.rst:360 msgid "Introducing the :class:`!types.GenericAlias` class" msgstr "" -#: library/types.rst:324 +#: library/types.rst:364 msgid "The type of :ref:`union type expressions`." msgstr "" -#: library/types.rst:330 +#: library/types.rst:370 msgid "" "The type of traceback objects such as found in ``sys.exception()." "__traceback__``." msgstr "" -#: library/types.rst:332 +#: library/types.rst:372 msgid "" "See :ref:`the language reference ` for details of the " "available attributes and operations, and guidance on creating tracebacks " "dynamically." msgstr "" -#: library/types.rst:339 +#: library/types.rst:379 msgid "" "The type of frame objects such as found in ``tb.tb_frame`` if ``tb`` is a " "traceback object." msgstr "" -#: library/types.rst:342 +#: library/types.rst:382 msgid "" "See :ref:`the language reference ` for details of the " "available attributes and operations." msgstr "" -#: library/types.rst:348 +#: library/types.rst:388 msgid "" "The type of objects defined in extension modules with ``PyGetSetDef``, such " "as ``FrameType.f_locals`` or ``array.array.typecode``. This type is used as " @@ -412,7 +431,7 @@ msgid "" "`property` type, but for classes defined in extension modules." msgstr "" -#: library/types.rst:356 +#: library/types.rst:396 msgid "" "The type of objects defined in extension modules with ``PyMemberDef``, such " "as ``datetime.timedelta.days``. This type is used as descriptor for simple " @@ -421,113 +440,117 @@ msgid "" "modules." msgstr "" -#: library/types.rst:363 +#: library/types.rst:403 msgid "" "In other implementations of Python, this type may be identical to " "``GetSetDescriptorType``." msgstr "" -#: library/types.rst:368 +#: library/types.rst:408 msgid "" "Read-only proxy of a mapping. It provides a dynamic view on the mapping's " "entries, which means that when the mapping changes, the view reflects these " "changes." msgstr "" -#: library/types.rst:376 +#: library/types.rst:416 msgid "" "Updated to support the new union (``|``) operator from :pep:`584`, which " "simply delegates to the underlying mapping." msgstr "" -#: library/types.rst:381 +#: library/types.rst:421 msgid "" "Return ``True`` if the underlying mapping has a key *key*, else ``False``." msgstr "" -#: library/types.rst:386 +#: library/types.rst:426 msgid "" "Return the item of the underlying mapping with key *key*. Raises a :exc:" "`KeyError` if *key* is not in the underlying mapping." msgstr "" -#: library/types.rst:391 +#: library/types.rst:431 msgid "" "Return an iterator over the keys of the underlying mapping. This is a " "shortcut for ``iter(proxy.keys())``." msgstr "" -#: library/types.rst:396 +#: library/types.rst:436 msgid "Return the number of items in the underlying mapping." msgstr "" -#: library/types.rst:400 +#: library/types.rst:440 msgid "Return a shallow copy of the underlying mapping." msgstr "" -#: library/types.rst:404 +#: library/types.rst:444 msgid "" "Return the value for *key* if *key* is in the underlying mapping, else " "*default*. If *default* is not given, it defaults to ``None``, so that this " "method never raises a :exc:`KeyError`." msgstr "" -#: library/types.rst:410 +#: library/types.rst:450 msgid "" "Return a new view of the underlying mapping's items (``(key, value)`` pairs)." msgstr "" -#: library/types.rst:415 +#: library/types.rst:455 msgid "Return a new view of the underlying mapping's keys." msgstr "" -#: library/types.rst:419 +#: library/types.rst:459 msgid "Return a new view of the underlying mapping's values." msgstr "" -#: library/types.rst:423 +#: library/types.rst:463 msgid "Return a reverse iterator over the keys of the underlying mapping." msgstr "" -#: library/types.rst:429 +#: library/types.rst:469 +msgid "Return a hash of the underlying mapping." +msgstr "" + +#: library/types.rst:475 msgid "Additional Utility Classes and Functions" msgstr "" -#: library/types.rst:433 +#: library/types.rst:479 msgid "" "A simple :class:`object` subclass that provides attribute access to its " "namespace, as well as a meaningful repr." msgstr "" -#: library/types.rst:436 +#: library/types.rst:482 msgid "" "Unlike :class:`object`, with ``SimpleNamespace`` you can add and remove " "attributes. If a ``SimpleNamespace`` object is initialized with keyword " "arguments, those are directly added to the underlying namespace." msgstr "" -#: library/types.rst:440 +#: library/types.rst:486 msgid "The type is roughly equivalent to the following code::" msgstr "" -#: library/types.rst:455 +#: library/types.rst:501 msgid "" "``SimpleNamespace`` may be useful as a replacement for ``class NS: pass``. " "However, for a structured record type use :func:`~collections.namedtuple` " "instead." msgstr "" -#: library/types.rst:461 +#: library/types.rst:507 msgid "" "Attribute order in the repr changed from alphabetical to insertion (like " "``dict``)." msgstr "" -#: library/types.rst:467 +#: library/types.rst:513 msgid "Route attribute access on a class to __getattr__." msgstr "" -#: library/types.rst:469 +#: library/types.rst:515 msgid "" "This is a descriptor, used to define attributes that act differently when " "accessed through an instance and through a class. Instance access remains " @@ -535,18 +558,18 @@ msgid "" "class's __getattr__ method; this is done by raising AttributeError." msgstr "" -#: library/types.rst:474 +#: library/types.rst:520 msgid "" "This allows one to have properties active on an instance, and have virtual " "attributes on the class with the same name (see :class:`enum.Enum` for an " "example)." msgstr "" -#: library/types.rst:481 +#: library/types.rst:527 msgid "Coroutine Utility Functions" msgstr "" -#: library/types.rst:485 +#: library/types.rst:531 msgid "" "This function transforms a :term:`generator` function into a :term:" "`coroutine function` which returns a generator-based coroutine. The " @@ -556,11 +579,11 @@ msgid "" "method." msgstr "" -#: library/types.rst:492 +#: library/types.rst:538 msgid "If *gen_func* is a generator function, it will be modified in-place." msgstr "" -#: library/types.rst:494 +#: library/types.rst:540 msgid "" "If *gen_func* is not a generator function, it will be wrapped. If it returns " "an instance of :class:`collections.abc.Generator`, the instance will be " @@ -568,10 +591,10 @@ msgid "" "returned as is." msgstr "" -#: library/types.rst:149 +#: library/types.rst:189 msgid "built-in function" msgstr "" -#: library/types.rst:149 +#: library/types.rst:189 msgid "compile" msgstr "" diff --git a/library/typing.po b/library/typing.po index 08e5eb47a..dc7c4b559 100644 --- a/library/typing.po +++ b/library/typing.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -239,7 +239,7 @@ msgstr "" msgid "*Introducing* :data:`LiteralString`" msgstr "" -#: library/typing.rst:112 +#: library/typing.rst:111 msgid ":pep:`681`: Data Class Transforms" msgstr "" @@ -248,43 +248,78 @@ msgid "" "*Introducing* the :func:`@dataclass_transform` decorator" msgstr "" -#: library/typing.rst:122 +#: library/typing.rst:114 +msgid ":pep:`692`: Using ``TypedDict`` for more precise ``**kwargs`` typing" +msgstr "" + +#: library/typing.rst:114 +msgid "" +"*Introducing* a new way of typing ``**kwargs`` with :data:`Unpack` and :data:" +"`TypedDict`" +msgstr "" + +#: library/typing.rst:116 +msgid ":pep:`695`: Type Parameter Syntax" +msgstr "" + +#: library/typing.rst:117 +msgid "" +"*Introducing* builtin syntax for creating generic functions, classes, and " +"type aliases." +msgstr "" + +#: library/typing.rst:119 +msgid ":pep:`698`: Adding an override decorator to typing" +msgstr "" + +#: library/typing.rst:119 +msgid "*Introducing* the :func:`@override` decorator" +msgstr "" + +#: library/typing.rst:129 msgid "Type aliases" msgstr "" -#: library/typing.rst:124 +#: library/typing.rst:131 msgid "" -"A type alias is defined by assigning the type to the alias. In this example, " -"``Vector`` and ``list[float]`` will be treated as interchangeable synonyms::" +"A type alias is defined using the :keyword:`type` statement, which creates " +"an instance of :class:`TypeAliasType`. In this example, ``Vector`` and " +"``list[float]`` will be treated equivalently by static type checkers::" msgstr "" -#: library/typing.rst:135 +#: library/typing.rst:144 msgid "" "Type aliases are useful for simplifying complex type signatures. For " "example::" msgstr "" -#: library/typing.rst:153 +#: library/typing.rst:162 +msgid "" +"The :keyword:`type` statement is new in Python 3.12. For backwards " +"compatibility, type aliases can also be created through simple assignment::" +msgstr "" + +#: library/typing.rst:167 msgid "" -"Type aliases may be marked with :data:`TypeAlias` to make it explicit that " -"the statement is a type alias declaration, not a normal variable assignment::" +"Or marked with :data:`TypeAlias` to make it explicit that this is a type " +"alias, not a normal variable assignment::" msgstr "" -#: library/typing.rst:163 +#: library/typing.rst:177 msgid "NewType" msgstr "" -#: library/typing.rst:165 +#: library/typing.rst:179 msgid "Use the :class:`NewType` helper to create distinct types::" msgstr "" -#: library/typing.rst:172 +#: library/typing.rst:186 msgid "" "The static type checker will treat the new type as if it were a subclass of " "the original type. This is useful in helping catch logical errors::" msgstr "" -#: library/typing.rst:184 +#: library/typing.rst:198 msgid "" "You may still perform all ``int`` operations on a variable of type " "``UserId``, but the result will always be of type ``int``. This lets you " @@ -292,7 +327,7 @@ msgid "" "you from accidentally creating a ``UserId`` in an invalid way::" msgstr "" -#: library/typing.rst:192 +#: library/typing.rst:206 msgid "" "Note that these checks are enforced only by the static type checker. At " "runtime, the statement ``Derived = NewType('Derived', Base)`` will make " @@ -301,39 +336,39 @@ msgid "" "class or introduce much overhead beyond that of a regular function call." msgstr "" -#: library/typing.rst:198 +#: library/typing.rst:212 msgid "" "More precisely, the expression ``some_value is Derived(some_value)`` is " "always true at runtime." msgstr "" -#: library/typing.rst:201 +#: library/typing.rst:215 msgid "It is invalid to create a subtype of ``Derived``::" msgstr "" -#: library/typing.rst:210 +#: library/typing.rst:224 msgid "" "However, it is possible to create a :class:`NewType` based on a 'derived' " "``NewType``::" msgstr "" -#: library/typing.rst:218 +#: library/typing.rst:232 msgid "and typechecking for ``ProUserId`` will work as expected." msgstr "" -#: library/typing.rst:220 +#: library/typing.rst:234 msgid "See :pep:`484` for more details." msgstr "" -#: library/typing.rst:224 +#: library/typing.rst:238 msgid "" "Recall that the use of a type alias declares two types to be *equivalent* to " -"one another. Doing ``Alias = Original`` will make the static type checker " -"treat ``Alias`` as being *exactly equivalent* to ``Original`` in all cases. " -"This is useful when you want to simplify complex type signatures." +"one another. Doing ``type Alias = Original`` will make the static type " +"checker treat ``Alias`` as being *exactly equivalent* to ``Original`` in all " +"cases. This is useful when you want to simplify complex type signatures." msgstr "" -#: library/typing.rst:229 +#: library/typing.rst:243 msgid "" "In contrast, ``NewType`` declares one type to be a *subtype* of another. " "Doing ``Derived = NewType('Derived', Original)`` will make the static type " @@ -343,24 +378,24 @@ msgid "" "errors with minimal runtime cost." msgstr "" -#: library/typing.rst:238 +#: library/typing.rst:252 msgid "" "``NewType`` is now a class rather than a function. As a result, there is " "some additional runtime cost when calling ``NewType`` over a regular " "function." msgstr "" -#: library/typing.rst:243 +#: library/typing.rst:257 msgid "" "The performance of calling ``NewType`` has been restored to its level in " "Python 3.9." msgstr "" -#: library/typing.rst:250 +#: library/typing.rst:264 msgid "Annotating callable objects" msgstr "" -#: library/typing.rst:252 +#: library/typing.rst:266 msgid "" "Functions -- or other :term:`callable` objects -- can be annotated using :" "class:`collections.abc.Callable` or :data:`typing.Callable`. " @@ -368,11 +403,11 @@ msgid "" "of type :class:`int` and returns a :class:`str`." msgstr "" -#: library/typing.rst:2707 +#: library/typing.rst:2873 library/typing.rst:3015 msgid "For example:" msgstr "" -#: library/typing.rst:275 +#: library/typing.rst:289 msgid "" "The subscription syntax must always be used with exactly two values: the " "argument list and the return type. The argument list must be a list of " @@ -380,13 +415,13 @@ msgid "" "type must be a single type." msgstr "" -#: library/typing.rst:280 +#: library/typing.rst:294 msgid "" "If a literal ellipsis ``...`` is given as the argument list, it indicates " "that a callable with any arbitrary parameter list would be acceptable:" msgstr "" -#: library/typing.rst:292 +#: library/typing.rst:306 msgid "" "``Callable`` cannot express complex signatures such as functions that take a " "variadic number of arguments, :func:`overloaded functions `, or " @@ -395,7 +430,7 @@ msgid "" "__call__` method:" msgstr "" -#: library/typing.rst:319 +#: library/typing.rst:333 msgid "" "Callables which take other callables as arguments may indicate that their " "parameter types are dependent on each other using :class:`ParamSpec`. " @@ -406,46 +441,54 @@ msgid "" "ReturnType]`` respectively." msgstr "" -#: library/typing.rst:3234 +#: library/typing.rst:3544 msgid "" "``Callable`` now supports :class:`ParamSpec` and :data:`Concatenate`. See :" "pep:`612` for more details." msgstr "" -#: library/typing.rst:332 +#: library/typing.rst:346 msgid "" "The documentation for :class:`ParamSpec` and :class:`Concatenate` provides " "examples of usage in ``Callable``." msgstr "" -#: library/typing.rst:338 +#: library/typing.rst:352 msgid "Generics" msgstr "" -#: library/typing.rst:340 +#: library/typing.rst:354 msgid "" "Since type information about objects kept in containers cannot be statically " "inferred in a generic way, many container classes in the standard library " "support subscription to denote the expected types of container elements." msgstr "" -#: library/typing.rst:357 +#: library/typing.rst:371 msgid "" -"Generics can be parameterized by using a factory available in typing called :" -"class:`TypeVar`." +"Generic functions and classes can be parameterized by using :ref:`type " +"parameter syntax `::" msgstr "" -#: library/typing.rst:373 +#: library/typing.rst:379 +msgid "Or by using the :class:`TypeVar` factory directly::" +msgstr "" + +#: library/typing.rst:389 +msgid "Syntactic support for generics is new in Python 3.12." +msgstr "" + +#: library/typing.rst:395 msgid "Annotating tuples" msgstr "" -#: library/typing.rst:375 +#: library/typing.rst:397 msgid "" "For most containers in Python, the typing system assumes that all elements " "in the container will be of the same type. For example::" msgstr "" -#: library/typing.rst:390 +#: library/typing.rst:412 msgid "" ":class:`list` only accepts one type argument, so a type checker would emit " "an error on the ``y`` assignment above. Similarly, :class:`~collections.abc." @@ -453,7 +496,7 @@ msgid "" "the keys, and the second indicates the type of the values." msgstr "" -#: library/typing.rst:396 +#: library/typing.rst:418 msgid "" "Unlike most other Python containers, however, it is common in idiomatic " "Python code for tuples to have elements which are not all of the same type. " @@ -461,7 +504,7 @@ msgid "" "`tuple` accepts *any number* of type arguments::" msgstr "" -#: library/typing.rst:412 +#: library/typing.rst:434 msgid "" "To denote a tuple which could be of *any* length, and in which all elements " "are of the same type ``T``, use ``tuple[T, ...]``. To denote an empty tuple, " @@ -469,11 +512,11 @@ msgid "" "using ``tuple[Any, ...]``::" msgstr "" -#: library/typing.rst:435 +#: library/typing.rst:457 msgid "The type of class objects" msgstr "" -#: library/typing.rst:437 +#: library/typing.rst:459 msgid "" "A variable annotated with ``C`` may accept a value of type ``C``. In " "contrast, a variable annotated with ``type[C]`` (or :class:`typing.Type[C] " @@ -481,115 +524,142 @@ msgid "" "will accept the *class object* of ``C``. For example::" msgstr "" -#: library/typing.rst:447 +#: library/typing.rst:469 msgid "Note that ``type[C]`` is covariant::" msgstr "" -#: library/typing.rst:463 +#: library/typing.rst:485 msgid "" "The only legal parameters for :class:`type` are classes, :data:`Any`, :ref:" "`type variables `, and unions of any of these types. For example::" msgstr "" -#: library/typing.rst:475 +#: library/typing.rst:497 msgid "" "``type[Any]`` is equivalent to :class:`type`, which is the root of Python's :" "ref:`metaclass hierarchy `." msgstr "" -#: library/typing.rst:481 +#: library/typing.rst:503 msgid "User-defined generic types" msgstr "" -#: library/typing.rst:483 +#: library/typing.rst:505 msgid "A user-defined class can be defined as a generic class." msgstr "" -#: library/typing.rst:509 +#: library/typing.rst:528 +msgid "" +"This syntax indicates that the class ``LoggedVar`` is parameterised around a " +"single :class:`type variable ` ``T`` . This also makes ``T`` valid " +"as a type within the class body." +msgstr "" + +#: library/typing.rst:532 msgid "" -"``Generic[T]`` as a base class defines that the class ``LoggedVar`` takes a " -"single type parameter ``T`` . This also makes ``T`` valid as a type within " -"the class body." +"Generic classes implicitly inherit from :class:`Generic`. For compatibility " +"with Python 3.11 and lower, it is also possible to inherit explicitly from :" +"class:`Generic` to indicate a generic class::" msgstr "" -#: library/typing.rst:513 +#: library/typing.rst:543 msgid "" -"The :class:`Generic` base class defines :meth:`~object.__class_getitem__` so " -"that ``LoggedVar[T]`` is valid as a type::" +"Generic classes have :meth:`~object.__class_getitem__` methods, meaning they " +"can be parameterised at runtime (e.g. ``LoggedVar[int]`` below)::" msgstr "" -#: library/typing.rst:522 +#: library/typing.rst:552 msgid "" "A generic type can have any number of type variables. All varieties of :" "class:`TypeVar` are permissible as parameters for a generic type::" msgstr "" -#: library/typing.rst:534 +#: library/typing.rst:567 msgid "" "Each type variable argument to :class:`Generic` must be distinct. This is " "thus invalid::" msgstr "" -#: library/typing.rst:545 -msgid "You can use multiple inheritance with :class:`Generic`::" +#: library/typing.rst:581 +msgid "Generic classes can also inherit from other classes::" msgstr "" -#: library/typing.rst:555 +#: library/typing.rst:588 msgid "" "When inheriting from generic classes, some type parameters could be fixed::" msgstr "" -#: library/typing.rst:565 +#: library/typing.rst:595 msgid "In this case ``MyDict`` has a single parameter, ``T``." msgstr "" -#: library/typing.rst:567 +#: library/typing.rst:597 msgid "" "Using a generic class without specifying type parameters assumes :data:`Any` " "for each position. In the following example, ``MyIterable`` is not generic " "but implicitly inherits from ``Iterable[Any]``:" msgstr "" -#: library/typing.rst:578 +#: library/typing.rst:608 msgid "User-defined generic type aliases are also supported. Examples::" msgstr "" -#: library/typing.rst:595 +#: library/typing.rst:623 +msgid "" +"For backward compatibility, generic type aliases can also be created through " +"a simple assignment::" +msgstr "" + +#: library/typing.rst:632 msgid ":class:`Generic` no longer has a custom metaclass." msgstr "" -#: library/typing.rst:598 +#: library/typing.rst:635 +msgid "" +"Syntactic support for generics and type aliases is new in version 3.12. " +"Previously, generic classes had to explicitly inherit from :class:`Generic` " +"or contain a type variable in one of their bases." +msgstr "" + +#: library/typing.rst:640 msgid "" "User-defined generics for parameter expressions are also supported via " -"parameter specification variables in the form ``Generic[P]``. The behavior " -"is consistent with type variables' described above as parameter " -"specification variables are treated by the typing module as a specialized " -"type variable. The one exception to this is that a list of types can be " -"used to substitute a :class:`ParamSpec`::" +"parameter specification variables in the form ``[**P]``. The behavior is " +"consistent with type variables' described above as parameter specification " +"variables are treated by the typing module as a specialized type variable. " +"The one exception to this is that a list of types can be used to substitute " +"a :class:`ParamSpec`::" msgstr "" -#: library/typing.rst:614 +#: library/typing.rst:651 msgid "" -"Furthermore, a generic with only one parameter specification variable will " -"accept parameter lists in the forms ``X[[Type1, Type2, ...]]`` and also " -"``X[Type1, Type2, ...]`` for aesthetic reasons. Internally, the latter is " -"converted to the former, so the following are equivalent::" +"Classes generic over a :class:`ParamSpec` can also be created using explicit " +"inheritance from :class:`Generic`. In this case, ``**`` is not used::" msgstr "" -#: library/typing.rst:626 +#: library/typing.rst:661 +msgid "" +"Another difference between :class:`TypeVar` and :class:`ParamSpec` is that a " +"generic with only one parameter specification variable will accept parameter " +"lists in the forms ``X[[Type1, Type2, ...]]`` and also ``X[Type1, " +"Type2, ...]`` for aesthetic reasons. Internally, the latter is converted to " +"the former, so the following are equivalent::" +msgstr "" + +#: library/typing.rst:674 msgid "" "Note that generics with :class:`ParamSpec` may not have correct " "``__parameters__`` after substitution in some cases because they are " "intended primarily for static type checking." msgstr "" -#: library/typing.rst:630 +#: library/typing.rst:678 msgid "" ":class:`Generic` can now be parameterized over parameter expressions. See :" "class:`ParamSpec` and :pep:`612` for more details." msgstr "" -#: library/typing.rst:634 +#: library/typing.rst:682 msgid "" "A user-defined generic class can have ABCs as base classes without a " "metaclass conflict. Generic metaclasses are not supported. The outcome of " @@ -597,24 +667,24 @@ msgid "" "term:`hashable` and comparable for equality." msgstr "" -#: library/typing.rst:641 +#: library/typing.rst:689 msgid "The :data:`Any` type" msgstr "" -#: library/typing.rst:643 +#: library/typing.rst:691 msgid "" "A special kind of type is :data:`Any`. A static type checker will treat " "every type as being compatible with :data:`Any` and :data:`Any` as being " "compatible with every type." msgstr "" -#: library/typing.rst:647 +#: library/typing.rst:695 msgid "" "This means that it is possible to perform any operation or method call on a " "value of type :data:`Any` and assign it to any variable::" msgstr "" -#: library/typing.rst:665 +#: library/typing.rst:713 msgid "" "Notice that no type checking is performed when assigning a value of type :" "data:`Any` to a more precise type. For example, the static type checker did " @@ -623,19 +693,19 @@ msgid "" "runtime!" msgstr "" -#: library/typing.rst:671 +#: library/typing.rst:719 msgid "" "Furthermore, all functions without a return type or parameter types will " "implicitly default to using :data:`Any`::" msgstr "" -#: library/typing.rst:684 +#: library/typing.rst:732 msgid "" "This behavior allows :data:`Any` to be used as an *escape hatch* when you " "need to mix dynamically and statically typed code." msgstr "" -#: library/typing.rst:687 +#: library/typing.rst:735 msgid "" "Contrast the behavior of :data:`Any` with the behavior of :class:`object`. " "Similar to :data:`Any`, every type is a subtype of :class:`object`. However, " @@ -643,7 +713,7 @@ msgid "" "subtype of every other type." msgstr "" -#: library/typing.rst:692 +#: library/typing.rst:740 msgid "" "That means when the type of a value is :class:`object`, a type checker will " "reject almost all operations on it, and assigning it to a variable (or using " @@ -651,24 +721,24 @@ msgid "" "example::" msgstr "" -#: library/typing.rst:714 +#: library/typing.rst:762 msgid "" "Use :class:`object` to indicate that a value could be any type in a typesafe " "manner. Use :data:`Any` to indicate that a value is dynamically typed." msgstr "" -#: library/typing.rst:719 +#: library/typing.rst:767 msgid "Nominal vs structural subtyping" msgstr "" -#: library/typing.rst:721 +#: library/typing.rst:769 msgid "" "Initially :pep:`484` defined the Python static type system as using *nominal " "subtyping*. This means that a class ``A`` is allowed where a class ``B`` is " "expected if and only if ``A`` is a subclass of ``B``." msgstr "" -#: library/typing.rst:725 +#: library/typing.rst:773 msgid "" "This requirement previously also applied to abstract base classes, such as :" "class:`~collections.abc.Iterable`. The problem with this approach is that a " @@ -677,7 +747,7 @@ msgid "" "code. For example, this conforms to :pep:`484`::" msgstr "" -#: library/typing.rst:738 +#: library/typing.rst:786 msgid "" ":pep:`544` allows to solve this problem by allowing users to write the above " "code without explicit base classes in the class definition, allowing " @@ -686,87 +756,87 @@ msgid "" "subtyping* (or static duck-typing)::" msgstr "" -#: library/typing.rst:754 +#: library/typing.rst:802 msgid "" "Moreover, by subclassing a special class :class:`Protocol`, a user can " "define new custom protocols to fully enjoy structural subtyping (see " "examples below)." msgstr "" -#: library/typing.rst:759 +#: library/typing.rst:807 msgid "Module contents" msgstr "" -#: library/typing.rst:761 +#: library/typing.rst:809 msgid "" "The ``typing`` module defines the following classes, functions and " "decorators." msgstr "" -#: library/typing.rst:764 +#: library/typing.rst:812 msgid "Special typing primitives" msgstr "" -#: library/typing.rst:767 +#: library/typing.rst:815 msgid "Special types" msgstr "" -#: library/typing.rst:769 +#: library/typing.rst:817 msgid "" "These can be used as types in annotations. They do not support subscription " "using ``[]``." msgstr "" -#: library/typing.rst:774 +#: library/typing.rst:822 msgid "Special type indicating an unconstrained type." msgstr "" -#: library/typing.rst:776 +#: library/typing.rst:824 msgid "Every type is compatible with :data:`Any`." msgstr "" -#: library/typing.rst:777 +#: library/typing.rst:825 msgid ":data:`Any` is compatible with every type." msgstr "" -#: library/typing.rst:779 +#: library/typing.rst:827 msgid "" ":data:`Any` can now be used as a base class. This can be useful for avoiding " "type checker errors with classes that can duck type anywhere or are highly " "dynamic." msgstr "" -#: library/typing.rst:786 +#: library/typing.rst:834 msgid "A :ref:`constrained type variable `." msgstr "" -#: library/typing.rst:788 +#: library/typing.rst:836 msgid "Definition::" msgstr "" -#: library/typing.rst:792 +#: library/typing.rst:840 msgid "" "``AnyStr`` is meant to be used for functions that may accept :class:`str` " "or :class:`bytes` arguments but cannot allow the two to mix." msgstr "" -#: library/typing.rst:886 library/typing.rst:963 library/typing.rst:1179 -#: library/typing.rst:2547 +#: library/typing.rst:934 library/typing.rst:1011 library/typing.rst:1237 +#: library/typing.rst:2813 msgid "For example::" msgstr "" -#: library/typing.rst:804 +#: library/typing.rst:852 msgid "" "Note that, despite its name, ``AnyStr`` has nothing to do with the :class:" "`Any` type, nor does it mean \"any string\". In particular, ``AnyStr`` and " "``str | bytes`` are different from each other and have different use cases::" msgstr "" -#: library/typing.rst:821 +#: library/typing.rst:869 msgid "Special type that includes only literal strings." msgstr "" -#: library/typing.rst:823 +#: library/typing.rst:871 msgid "" "Any string literal is compatible with ``LiteralString``, as is another " "``LiteralString``. However, an object typed as just ``str`` is not. A string " @@ -774,11 +844,11 @@ msgid "" "``LiteralString``." msgstr "" -#: library/typing.rst:829 +#: library/typing.rst:1957 msgid "Example:" msgstr "" -#: library/typing.rst:845 +#: library/typing.rst:893 msgid "" "``LiteralString`` is useful for sensitive APIs where arbitrary user-" "generated strings could generate problems. For example, the two cases above " @@ -786,33 +856,33 @@ msgid "" "attack." msgstr "" -#: library/typing.rst:850 +#: library/typing.rst:898 msgid "See :pep:`675` for more details." msgstr "" -#: library/typing.rst:856 +#: library/typing.rst:904 msgid "" "The `bottom type `_, a type that " "has no members." msgstr "" -#: library/typing.rst:859 +#: library/typing.rst:907 msgid "" "This can be used to define a function that should never be called, or a " "function that never returns::" msgstr "" -#: library/typing.rst:879 +#: library/typing.rst:927 msgid "" "On older Python versions, :data:`NoReturn` may be used to express the same " "concept. ``Never`` was added to make the intended meaning more explicit." msgstr "" -#: library/typing.rst:884 +#: library/typing.rst:932 msgid "Special type indicating that a function never returns." msgstr "" -#: library/typing.rst:893 +#: library/typing.rst:941 msgid "" "``NoReturn`` can also be used as a `bottom type `_, a type that has no values. Starting in Python 3.11, " @@ -820,17 +890,17 @@ msgid "" "checkers should treat the two equivalently." msgstr "" -#: library/typing.rst:904 +#: library/typing.rst:952 msgid "Special type to represent the current enclosed class." msgstr "" -#: library/typing.rst:920 +#: library/typing.rst:968 msgid "" "This annotation is semantically equivalent to the following, albeit in a " "more succinct fashion::" msgstr "" -#: library/typing.rst:932 +#: library/typing.rst:980 msgid "" "In general, if something returns ``self``, as in the above examples, you " "should use ``Self`` as the return annotation. If ``Foo.return_self`` was " @@ -839,112 +909,123 @@ msgid "" "rather than ``SubclassOfFoo``." msgstr "" -#: library/typing.rst:938 +#: library/typing.rst:986 msgid "Other common use cases include:" msgstr "" -#: library/typing.rst:940 +#: library/typing.rst:988 msgid "" ":class:`classmethod`\\s that are used as alternative constructors and return " "instances of the ``cls`` parameter." msgstr "" -#: library/typing.rst:942 +#: library/typing.rst:990 msgid "Annotating an :meth:`~object.__enter__` method which returns self." msgstr "" -#: library/typing.rst:944 +#: library/typing.rst:992 msgid "" "You should not use ``Self`` as the return annotation if the method is not " "guaranteed to return an instance of a subclass when the class is subclassed::" msgstr "" -#: library/typing.rst:955 +#: library/typing.rst:1003 msgid "See :pep:`673` for more details." msgstr "" -#: library/typing.rst:961 +#: library/typing.rst:1009 msgid "" "Special annotation for explicitly declaring a :ref:`type alias `." msgstr "" -#: library/typing.rst:969 +#: library/typing.rst:1017 msgid "" -"``TypeAlias`` is particularly useful for annotating aliases that make use of " -"forward references, as it can be hard for type checkers to distinguish these " -"from normal variable assignments:" +"``TypeAlias`` is particularly useful on older Python versions for annotating " +"aliases that make use of forward references, as it can be hard for type " +"checkers to distinguish these from normal variable assignments:" msgstr "" -#: library/typing.rst:989 +#: library/typing.rst:1037 msgid "See :pep:`613` for more details." msgstr "" -#: library/typing.rst:994 +#: library/typing.rst:1041 +msgid "" +":data:`TypeAlias` is deprecated in favor of the :keyword:`type` statement, " +"which creates instances of :class:`TypeAliasType` and which natively " +"supports forward references. Note that while :data:`TypeAlias` and :class:" +"`TypeAliasType` serve similar purposes and have similar names, they are " +"distinct and the latter is not the type of the former. Removal of :data:" +"`TypeAlias` is not currently planned, but users are encouraged to migrate " +"to :keyword:`type` statements." +msgstr "" + +#: library/typing.rst:1052 msgid "Special forms" msgstr "" -#: library/typing.rst:996 +#: library/typing.rst:1054 msgid "" "These can be used as types in annotations. They all support subscription " "using ``[]``, but each has a unique syntax." msgstr "" -#: library/typing.rst:1001 +#: library/typing.rst:1059 msgid "" "Union type; ``Union[X, Y]`` is equivalent to ``X | Y`` and means either X or " "Y." msgstr "" -#: library/typing.rst:1003 +#: library/typing.rst:1061 msgid "" "To define a union, use e.g. ``Union[int, str]`` or the shorthand ``int | " "str``. Using that shorthand is recommended. Details:" msgstr "" -#: library/typing.rst:1005 +#: library/typing.rst:1063 msgid "The arguments must be types and there must be at least one." msgstr "" -#: library/typing.rst:1007 +#: library/typing.rst:1065 msgid "Unions of unions are flattened, e.g.::" msgstr "" -#: library/typing.rst:1011 +#: library/typing.rst:1069 msgid "Unions of a single argument vanish, e.g.::" msgstr "" -#: library/typing.rst:1015 +#: library/typing.rst:1073 msgid "Redundant arguments are skipped, e.g.::" msgstr "" -#: library/typing.rst:1019 +#: library/typing.rst:1077 msgid "When comparing unions, the argument order is ignored, e.g.::" msgstr "" -#: library/typing.rst:1023 +#: library/typing.rst:1081 msgid "You cannot subclass or instantiate a ``Union``." msgstr "" -#: library/typing.rst:1025 +#: library/typing.rst:1083 msgid "You cannot write ``Union[X][Y]``." msgstr "" -#: library/typing.rst:1027 +#: library/typing.rst:1085 msgid "Don't remove explicit subclasses from unions at runtime." msgstr "" -#: library/typing.rst:1030 +#: library/typing.rst:1088 msgid "" "Unions can now be written as ``X | Y``. See :ref:`union type " "expressions`." msgstr "" -#: library/typing.rst:1036 +#: library/typing.rst:1094 msgid "``Optional[X]`` is equivalent to ``X | None`` (or ``Union[X, None]``)." msgstr "" -#: library/typing.rst:1038 +#: library/typing.rst:1096 msgid "" "Note that this is not the same concept as an optional argument, which is one " "that has a default. An optional argument with a default does not require " @@ -952,24 +1033,24 @@ msgid "" "optional. For example::" msgstr "" -#: library/typing.rst:1046 +#: library/typing.rst:1104 msgid "" "On the other hand, if an explicit value of ``None`` is allowed, the use of " "``Optional`` is appropriate, whether the argument is optional or not. For " "example::" msgstr "" -#: library/typing.rst:1053 +#: library/typing.rst:1111 msgid "" "Optional can now be written as ``X | None``. See :ref:`union type " "expressions`." msgstr "" -#: library/typing.rst:1059 +#: library/typing.rst:1117 msgid "Special form for annotating higher-order functions." msgstr "" -#: library/typing.rst:1061 +#: library/typing.rst:1119 msgid "" "``Concatenate`` can be used in conjunction with :ref:`Callable ` and :class:`ParamSpec` to annotate a higher-order callable which " @@ -980,7 +1061,7 @@ msgid "" "``Concatenate`` must be a :class:`ParamSpec` or ellipsis (``...``)." msgstr "" -#: library/typing.rst:1070 +#: library/typing.rst:1128 msgid "" "For example, to annotate a decorator ``with_lock`` which provides a :class:" "`threading.Lock` to the decorated function, ``Concatenate`` can be used to " @@ -991,38 +1072,38 @@ msgid "" "passed in::" msgstr "" -#: library/typing.rst:1766 +#: library/typing.rst:1925 msgid "" ":pep:`612` -- Parameter Specification Variables (the PEP which introduced " "``ParamSpec`` and ``Concatenate``)" msgstr "" -#: library/typing.rst:1111 +#: library/typing.rst:1169 msgid ":class:`ParamSpec`" msgstr "" -#: library/typing.rst:1769 +#: library/typing.rst:1928 msgid ":ref:`annotating-callables`" msgstr "" -#: library/typing.rst:1116 +#: library/typing.rst:1174 msgid "Special typing form to define \"literal types\"." msgstr "" -#: library/typing.rst:1118 +#: library/typing.rst:1176 msgid "" "``Literal`` can be used to indicate to type checkers that the annotated " "object has a value equivalent to one of the provided literals." msgstr "" -#: library/typing.rst:1134 +#: library/typing.rst:1192 msgid "" "``Literal[...]`` cannot be subclassed. At runtime, an arbitrary value is " "allowed as type argument to ``Literal[...]``, but type checkers may impose " "restrictions. See :pep:`586` for more details about literal types." msgstr "" -#: library/typing.rst:1140 +#: library/typing.rst:1198 msgid "" "``Literal`` now de-duplicates parameters. Equality comparisons of " "``Literal`` objects are no longer order dependent. ``Literal`` objects will " @@ -1030,22 +1111,22 @@ msgid "" "their parameters are not :term:`hashable`." msgstr "" -#: library/typing.rst:1148 +#: library/typing.rst:1206 msgid "Special type construct to mark class variables." msgstr "" -#: library/typing.rst:1150 +#: library/typing.rst:1208 msgid "" "As introduced in :pep:`526`, a variable annotation wrapped in ClassVar " "indicates that a given attribute is intended to be used as a class variable " "and should not be set on instances of that class. Usage::" msgstr "" -#: library/typing.rst:1158 +#: library/typing.rst:1216 msgid ":data:`ClassVar` accepts only types and cannot be further subscribed." msgstr "" -#: library/typing.rst:1160 +#: library/typing.rst:1218 msgid "" ":data:`ClassVar` is not a class itself, and should not be used with :func:" "`isinstance` or :func:`issubclass`. :data:`ClassVar` does not change Python " @@ -1053,47 +1134,47 @@ msgid "" "example, a type checker might flag the following code as an error::" msgstr "" -#: library/typing.rst:1174 +#: library/typing.rst:1232 msgid "Special typing construct to indicate final names to type checkers." msgstr "" -#: library/typing.rst:1176 +#: library/typing.rst:1234 msgid "" "Final names cannot be reassigned in any scope. Final names declared in class " "scopes cannot be overridden in subclasses." msgstr "" -#: library/typing.rst:2563 +#: library/typing.rst:2829 msgid "" "There is no runtime checking of these properties. See :pep:`591` for more " "details." msgstr "" -#: library/typing.rst:1197 +#: library/typing.rst:1255 msgid "Special typing construct to mark a :class:`TypedDict` key as required." msgstr "" -#: library/typing.rst:1199 +#: library/typing.rst:1257 msgid "" "This is mainly useful for ``total=False`` TypedDicts. See :class:`TypedDict` " "and :pep:`655` for more details." msgstr "" -#: library/typing.rst:1206 +#: library/typing.rst:1264 msgid "" "Special typing construct to mark a :class:`TypedDict` key as potentially " "missing." msgstr "" -#: library/typing.rst:1209 +#: library/typing.rst:1267 msgid "See :class:`TypedDict` and :pep:`655` for more details." msgstr "" -#: library/typing.rst:1215 +#: library/typing.rst:1273 msgid "Special typing form to add context-specific metadata to an annotation." msgstr "" -#: library/typing.rst:1217 +#: library/typing.rst:1275 msgid "" "Add metadata ``x`` to a given type ``T`` by using the annotation " "``Annotated[T, x]``. Metadata added using ``Annotated`` can be used by " @@ -1101,7 +1182,7 @@ msgid "" "a :attr:`!__metadata__` attribute." msgstr "" -#: library/typing.rst:1222 +#: library/typing.rst:1280 msgid "" "If a library or tool encounters an annotation ``Annotated[T, x]`` and has no " "special logic for the metadata, it should ignore the metadata and simply " @@ -1110,7 +1191,7 @@ msgid "" "system." msgstr "" -#: library/typing.rst:1228 +#: library/typing.rst:1286 msgid "" "Using ``Annotated[T, x]`` as an annotation still allows for static " "typechecking of ``T``, as type checkers will simply ignore the metadata " @@ -1120,7 +1201,7 @@ msgid "" "for a function or class." msgstr "" -#: library/typing.rst:1235 +#: library/typing.rst:1293 msgid "" "The responsibility of how to interpret the metadata lies with the the tool " "or library encountering an ``Annotated`` annotation. A tool or library " @@ -1128,105 +1209,105 @@ msgid "" "determine if they are of interest (e.g., using :func:`isinstance`)." msgstr "" -#: library/typing.rst:1243 +#: library/typing.rst:1301 msgid "" "Here is an example of how you might use ``Annotated`` to add metadata to " "type annotations if you were doing range analysis:" msgstr "" -#: library/typing.rst:1256 +#: library/typing.rst:1314 msgid "Details of the syntax:" msgstr "" -#: library/typing.rst:1258 +#: library/typing.rst:1316 msgid "The first argument to ``Annotated`` must be a valid type" msgstr "" -#: library/typing.rst:1260 +#: library/typing.rst:1318 msgid "" "Multiple metadata elements can be supplied (``Annotated`` supports variadic " "arguments)::" msgstr "" -#: library/typing.rst:1269 +#: library/typing.rst:1327 msgid "" "It is up to the tool consuming the annotations to decide whether the client " "is allowed to add multiple metadata elements to one annotation and how to " "merge those annotations." msgstr "" -#: library/typing.rst:1273 +#: library/typing.rst:1331 msgid "" "``Annotated`` must be subscripted with at least two arguments " "( ``Annotated[int]`` is not valid)" msgstr "" -#: library/typing.rst:1276 +#: library/typing.rst:1334 msgid "" "The order of the metadata elements is preserved and matters for equality " "checks::" msgstr "" -#: library/typing.rst:1283 +#: library/typing.rst:1341 msgid "" "Nested ``Annotated`` types are flattened. The order of the metadata elements " "starts with the innermost annotation::" msgstr "" -#: library/typing.rst:1290 +#: library/typing.rst:1348 msgid "Duplicated metadata elements are not removed::" msgstr "" -#: library/typing.rst:1296 +#: library/typing.rst:1354 msgid "``Annotated`` can be used with nested and generic aliases:" msgstr "" -#: library/typing.rst:1309 +#: library/typing.rst:1368 msgid "``Annotated`` cannot be used with an unpacked :class:`TypeVarTuple`::" msgstr "" -#: library/typing.rst:1313 +#: library/typing.rst:1372 msgid "This would be equivalent to::" msgstr "" -#: library/typing.rst:1317 +#: library/typing.rst:1376 msgid "" "where ``T1``, ``T2``, etc. are :class:`TypeVars `. This would be " "invalid: only one type should be passed to Annotated." msgstr "" -#: library/typing.rst:1320 +#: library/typing.rst:1379 msgid "" "By default, :func:`get_type_hints` strips the metadata from annotations. " "Pass ``include_extras=True`` to have the metadata preserved:" msgstr "" -#: library/typing.rst:1333 +#: library/typing.rst:1392 msgid "" "At runtime, the metadata associated with an ``Annotated`` type can be " "retrieved via the :attr:`!__metadata__` attribute:" msgstr "" -#: library/typing.rst:1347 +#: library/typing.rst:1406 msgid ":pep:`593` - Flexible function and variable annotations" msgstr "" -#: library/typing.rst:1348 +#: library/typing.rst:1407 msgid "The PEP introducing ``Annotated`` to the standard library." msgstr "" -#: library/typing.rst:1355 +#: library/typing.rst:1414 msgid "Special typing construct for marking user-defined type guard functions." msgstr "" -#: library/typing.rst:1357 +#: library/typing.rst:1416 msgid "" "``TypeGuard`` can be used to annotate the return type of a user-defined type " "guard function. ``TypeGuard`` only accepts a single type argument. At " "runtime, functions marked this way should return a boolean." msgstr "" -#: library/typing.rst:1361 +#: library/typing.rst:1420 msgid "" "``TypeGuard`` aims to benefit *type narrowing* -- a technique used by static " "type checkers to determine a more precise type of an expression within a " @@ -1235,44 +1316,44 @@ msgid "" "conditional expression here is sometimes referred to as a \"type guard\"::" msgstr "" -#: library/typing.rst:1376 +#: library/typing.rst:1435 msgid "" "Sometimes it would be convenient to use a user-defined boolean function as a " "type guard. Such a function should use ``TypeGuard[...]`` as its return " "type to alert static type checkers to this intention." msgstr "" -#: library/typing.rst:1380 +#: library/typing.rst:1439 msgid "" "Using ``-> TypeGuard`` tells the static type checker that for a given " "function:" msgstr "" -#: library/typing.rst:1383 +#: library/typing.rst:1442 msgid "The return value is a boolean." msgstr "" -#: library/typing.rst:1384 +#: library/typing.rst:1443 msgid "" "If the return value is ``True``, the type of its argument is the type inside " "``TypeGuard``." msgstr "" -#: library/typing.rst:1401 +#: library/typing.rst:1460 msgid "" "If ``is_str_list`` is a class or instance method, then the type in " "``TypeGuard`` maps to the type of the second parameter after ``cls`` or " "``self``." msgstr "" -#: library/typing.rst:1405 +#: library/typing.rst:1464 msgid "" "In short, the form ``def foo(arg: TypeA) -> TypeGuard[TypeB]: ...``, means " "that if ``foo(arg)`` returns ``True``, then ``arg`` narrows from ``TypeA`` " "to ``TypeB``." msgstr "" -#: library/typing.rst:1411 +#: library/typing.rst:1470 msgid "" "``TypeB`` need not be a narrower form of ``TypeA`` -- it can even be a wider " "form. The main reason is to allow for things like narrowing ``list[object]`` " @@ -1281,24 +1362,24 @@ msgid "" "guards is left to the user." msgstr "" -#: library/typing.rst:1417 +#: library/typing.rst:1476 msgid "" "``TypeGuard`` also works with type variables. See :pep:`647` for more " "details." msgstr "" -#: library/typing.rst:1424 +#: library/typing.rst:1483 msgid "Typing operator to conceptually mark an object as having been unpacked." msgstr "" -#: library/typing.rst:1426 +#: library/typing.rst:1485 msgid "" "For example, using the unpack operator ``*`` on a :class:`type variable " "tuple ` is equivalent to using ``Unpack`` to mark the type " "variable tuple as having been unpacked::" msgstr "" -#: library/typing.rst:1435 +#: library/typing.rst:1494 msgid "" "In fact, ``Unpack`` can be used interchangeably with ``*`` in the context " "of :class:`typing.TypeVarTuple ` and :class:`builtins.tuple " @@ -1306,40 +1387,92 @@ msgid "" "versions of Python, where ``*`` couldn't be used in certain places::" msgstr "" -#: library/typing.rst:1452 -msgid "Building generic types" +#: library/typing.rst:1508 +msgid "" +"``Unpack`` can also be used along with :class:`typing.TypedDict` for typing " +"``**kwargs`` in a function signature::" msgstr "" -#: library/typing.rst:1454 +#: library/typing.rst:1521 +msgid "" +"See :pep:`692` for more details on using ``Unpack`` for ``**kwargs`` typing." +msgstr "" + +#: library/typing.rst:1526 +msgid "Building generic types and type aliases" +msgstr "" + +#: library/typing.rst:1528 msgid "" "The following classes should not be used directly as annotations. Their " -"intended purpose is to be building blocks for creating generic types." +"intended purpose is to be building blocks for creating generic types and " +"type aliases." msgstr "" -#: library/typing.rst:1460 +#: library/typing.rst:1532 +msgid "" +"These objects can be created through special syntax (:ref:`type parameter " +"lists ` and the :keyword:`type` statement). For compatibility " +"with Python 3.11 and earlier, they can also be created without the dedicated " +"syntax, as documented below." +msgstr "" + +#: library/typing.rst:1539 msgid "Abstract base class for generic types." msgstr "" -#: library/typing.rst:1462 +#: library/typing.rst:1541 msgid "" -"A generic type is typically declared by inheriting from an instantiation of " -"this class with one or more type variables. For example, a generic mapping " -"type might be defined as::" +"A generic type is typically declared by adding a list of type parameters " +"after the class name::" msgstr "" -#: library/typing.rst:1471 +#: library/typing.rst:1549 +msgid "" +"Such a class implicitly inherits from ``Generic``. The runtime semantics of " +"this syntax are discussed in the :ref:`Language Reference `." +msgstr "" + +#: library/typing.rst:1553 msgid "This class can then be used as follows::" msgstr "" -#: library/typing.rst:1484 +#: library/typing.rst:1561 +msgid "" +"Here the brackets after the function name indicate a :ref:`generic function " +"`." +msgstr "" + +#: library/typing.rst:1564 +msgid "" +"For backwards compatibility, generic classes can also be declared by " +"explicitly inheriting from ``Generic``. In this case, the type parameters " +"must be declared separately::" +msgstr "" + +#: library/typing.rst:1579 msgid "Type variable." msgstr "" -#: library/typing.rst:1581 library/typing.rst:1805 library/typing.rst:2747 -msgid "Usage::" +#: library/typing.rst:1581 +msgid "" +"The preferred way to construct a type variable is via the dedicated syntax " +"for :ref:`generic functions `, :ref:`generic classes " +"`, and :ref:`generic type aliases `::" +msgstr "" + +#: library/typing.rst:1589 +msgid "" +"This syntax can also be used to create bound and constrained type variables::" +msgstr "" + +#: library/typing.rst:1599 +msgid "" +"However, if desired, reusable type variables can also be constructed " +"manually, like so::" msgstr "" -#: library/typing.rst:1492 +#: library/typing.rst:1605 msgid "" "Type variables exist primarily for the benefit of static type checkers. " "They serve as the parameters for generic types as well as for generic " @@ -1347,69 +1480,108 @@ msgid "" "information on generic types. Generic functions work as follows::" msgstr "" -#: library/typing.rst:1513 +#: library/typing.rst:1626 msgid "" "Note that type variables can be *bound*, *constrained*, or neither, but " "cannot be both bound *and* constrained." msgstr "" -#: library/typing.rst:1516 +#: library/typing.rst:1629 msgid "" -"Type variables may be marked covariant or contravariant by passing " -"``covariant=True`` or ``contravariant=True``. See :pep:`484` for more " -"details. By default, type variables are invariant." +"The variance of type variables is inferred by type checkers when they are " +"created through the :ref:`type parameter syntax ` or when " +"``infer_variance=True`` is passed. Manually created type variables may be " +"explicitly marked covariant or contravariant by passing ``covariant=True`` " +"or ``contravariant=True``. By default, manually created type variables are " +"invariant. See :pep:`484` and :pep:`695` for more details." msgstr "" -#: library/typing.rst:1520 +#: library/typing.rst:1637 msgid "" "Bound type variables and constrained type variables have different semantics " "in several important ways. Using a *bound* type variable means that the " "``TypeVar`` will be solved using the most specific type possible::" msgstr "" -#: library/typing.rst:1535 +#: library/typing.rst:1652 msgid "" "Type variables can be bound to concrete types, abstract types (ABCs or " "protocols), and even unions of types::" msgstr "" -#: library/typing.rst:1543 +#: library/typing.rst:1664 msgid "" "Using a *constrained* type variable, however, means that the ``TypeVar`` can " "only ever be solved as being exactly one of the constraints given::" msgstr "" -#: library/typing.rst:1554 +#: library/typing.rst:1675 msgid "At runtime, ``isinstance(x, T)`` will raise :exc:`TypeError`." msgstr "" -#: library/typing.rst:1558 +#: library/typing.rst:1679 msgid "The name of the type variable." msgstr "" -#: library/typing.rst:1562 -msgid "Whether the type var has been marked as covariant." +#: library/typing.rst:1683 +msgid "Whether the type var has been explicitly marked as covariant." msgstr "" -#: library/typing.rst:1566 -msgid "Whether the type var has been marked as contravariant." +#: library/typing.rst:1687 +msgid "Whether the type var has been explicitly marked as contravariant." +msgstr "" + +#: library/typing.rst:1691 +msgid "" +"Whether the type variable's variance should be inferred by type checkers." msgstr "" -#: library/typing.rst:1570 +#: library/typing.rst:1697 msgid "The bound of the type variable, if any." msgstr "" -#: library/typing.rst:1574 +#: library/typing.rst:1701 +msgid "" +"For type variables created through :ref:`type parameter syntax `, the bound is evaluated only when the attribute is accessed, not " +"when the type variable is created (see :ref:`lazy-evaluation`)." +msgstr "" + +#: library/typing.rst:1707 msgid "A tuple containing the constraints of the type variable, if any." msgstr "" -#: library/typing.rst:1578 +#: library/typing.rst:1711 +msgid "" +"For type variables created through :ref:`type parameter syntax `, the constraints are evaluated only when the attribute is accessed, " +"not when the type variable is created (see :ref:`lazy-evaluation`)." +msgstr "" + +#: library/typing.rst:1717 +msgid "" +"Type variables can now be declared using the :ref:`type parameter ` syntax introduced by :pep:`695`. The ``infer_variance`` parameter " +"was added." +msgstr "" + +#: library/typing.rst:1723 msgid "" "Type variable tuple. A specialized form of :class:`type variable ` " "that enables *variadic* generics." msgstr "" -#: library/typing.rst:1589 +#: library/typing.rst:1726 +msgid "" +"Type variable tuples can be declared in :ref:`type parameter lists ` using a single asterisk (``*``) before the name::" +msgstr "" + +#: library/typing.rst:1732 +msgid "Or by explicitly invoking the ``TypeVarTuple`` constructor::" +msgstr "" + +#: library/typing.rst:1740 msgid "" "A normal type variable enables parameterization with a single type. A type " "variable tuple, in contrast, allows parameterization with an *arbitrary* " @@ -1417,7 +1589,7 @@ msgid "" "wrapped in a tuple. For example::" msgstr "" -#: library/typing.rst:1611 +#: library/typing.rst:1762 msgid "" "Note the use of the unpacking operator ``*`` in ``tuple[T, *Ts]``. " "Conceptually, you can think of ``Ts`` as a tuple of type variables ``(T1, " @@ -1427,36 +1599,36 @@ msgid "" "` instead, as ``Unpack[Ts]``.)" msgstr "" -#: library/typing.rst:1619 +#: library/typing.rst:1770 msgid "" "Type variable tuples must *always* be unpacked. This helps distinguish type " "variable tuples from normal type variables::" msgstr "" -#: library/typing.rst:1626 +#: library/typing.rst:1777 msgid "" "Type variable tuples can be used in the same contexts as normal type " "variables. For example, in class definitions, arguments, and return types::" msgstr "" -#: library/typing.rst:1635 +#: library/typing.rst:1785 msgid "" "Type variable tuples can be happily combined with normal type variables:" msgstr "" -#: library/typing.rst:1654 +#: library/typing.rst:1801 msgid "" "However, note that at most one type variable tuple may appear in a single " "list of type arguments or type parameters::" msgstr "" -#: library/typing.rst:1661 +#: library/typing.rst:1808 msgid "" "Finally, an unpacked type variable tuple can be used as the type annotation " "of ``*args``::" msgstr "" -#: library/typing.rst:1671 +#: library/typing.rst:1818 msgid "" "In contrast to non-unpacked annotations of ``*args`` - e.g. ``*args: int``, " "which would specify that *all* arguments are ``int`` - ``*args: *Ts`` " @@ -1465,21 +1637,39 @@ msgid "" "``call_soon`` match the types of the (positional) arguments of ``callback``." msgstr "" -#: library/typing.rst:1678 +#: library/typing.rst:1825 msgid "See :pep:`646` for more details on type variable tuples." msgstr "" -#: library/typing.rst:1682 +#: library/typing.rst:1829 msgid "The name of the type variable tuple." msgstr "" -#: library/typing.rst:1688 +#: library/typing.rst:1835 +msgid "" +"Type variable tuples can now be declared using the :ref:`type parameter " +"` syntax introduced by :pep:`695`." +msgstr "" + +#: library/typing.rst:1840 msgid "" "Parameter specification variable. A specialized version of :class:`type " "variables `." msgstr "" -#: library/typing.rst:1695 +#: library/typing.rst:1843 +msgid "" +"In :ref:`type parameter lists `, parameter specifications can " +"be declared with two asterisks (``**``)::" +msgstr "" + +#: library/typing.rst:1848 +msgid "" +"For compatibility with Python 3.11 and earlier, ``ParamSpec`` objects can " +"also be created as follows::" +msgstr "" + +#: library/typing.rst:1853 msgid "" "Parameter specification variables exist primarily for the benefit of static " "type checkers. They are used to forward the parameter types of one callable " @@ -1489,7 +1679,7 @@ msgid "" "See :class:`Generic` for more information on generic types." msgstr "" -#: library/typing.rst:1702 +#: library/typing.rst:1860 msgid "" "For example, to add basic logging to a function, one can create a decorator " "``add_logging`` to log function calls. The parameter specification variable " @@ -1497,27 +1687,27 @@ msgid "" "new callable returned by it have inter-dependent type parameters::" msgstr "" -#: library/typing.rst:1726 +#: library/typing.rst:1880 msgid "" "Without ``ParamSpec``, the simplest way to annotate this previously was to " "use a :class:`TypeVar` with bound ``Callable[..., Any]``. However this " "causes two problems:" msgstr "" -#: library/typing.rst:1730 +#: library/typing.rst:1884 msgid "" "The type checker can't type check the ``inner`` function because ``*args`` " "and ``**kwargs`` have to be typed :data:`Any`." msgstr "" -#: library/typing.rst:1732 +#: library/typing.rst:1886 msgid "" ":func:`~cast` may be required in the body of the ``add_logging`` decorator " "when returning the ``inner`` function, or the static type checker must be " "told to ignore the ``return inner``." msgstr "" -#: library/typing.rst:1739 +#: library/typing.rst:1893 msgid "" "Since ``ParamSpec`` captures both positional and keyword parameters, ``P." "args`` and ``P.kwargs`` can be used to split a ``ParamSpec`` into its " @@ -1530,11 +1720,11 @@ msgid "" "`ParamSpecKwargs`." msgstr "" -#: library/typing.rst:1751 +#: library/typing.rst:1905 msgid "The name of the parameter specification." msgstr "" -#: library/typing.rst:1753 +#: library/typing.rst:1907 msgid "" "Parameter specification variables created with ``covariant=True`` or " "``contravariant=True`` can be used to declare covariant or contravariant " @@ -1543,17 +1733,23 @@ msgid "" "decided." msgstr "" -#: library/typing.rst:1762 +#: library/typing.rst:1917 +msgid "" +"Parameter specifications can now be declared using the :ref:`type parameter " +"` syntax introduced by :pep:`695`." +msgstr "" + +#: library/typing.rst:1921 msgid "" "Only parameter specification variables defined in global scope can be " "pickled." msgstr "" -#: library/typing.rst:1768 +#: library/typing.rst:1927 msgid ":data:`Concatenate`" msgstr "" -#: library/typing.rst:1774 +#: library/typing.rst:1933 msgid "" "Arguments and keyword arguments attributes of a :class:`ParamSpec`. The ``P." "args`` attribute of a ``ParamSpec`` is an instance of ``ParamSpecArgs``, and " @@ -1561,42 +1757,71 @@ msgid "" "runtime introspection and have no special meaning to static type checkers." msgstr "" -#: library/typing.rst:1779 +#: library/typing.rst:1938 msgid "" "Calling :func:`get_origin` on either of these objects will return the " "original ``ParamSpec``:" msgstr "" -#: library/typing.rst:1795 +#: library/typing.rst:1955 +msgid "The type of type aliases created through the :keyword:`type` statement." +msgstr "" + +#: library/typing.rst:1969 +msgid "The name of the type alias:" +msgstr "" + +#: library/typing.rst:1979 +msgid "The module in which the type alias was defined::" +msgstr "" + +#: library/typing.rst:1987 +msgid "" +"The type parameters of the type alias, or an empty tuple if the alias is not " +"generic:" +msgstr "" + +#: library/typing.rst:2001 +msgid "" +"The type alias's value. This is :ref:`lazily evaluated `, " +"so names used in the definition of the alias are not resolved until the " +"``__value__`` attribute is accessed:" +msgstr "" + +#: library/typing.rst:2019 msgid "Other special directives" msgstr "" -#: library/typing.rst:1797 +#: library/typing.rst:2021 msgid "" "These functions and classes should not be used directly as annotations. " "Their intended purpose is to be building blocks for creating and declaring " "types." msgstr "" -#: library/typing.rst:1803 +#: library/typing.rst:2027 msgid "Typed version of :func:`collections.namedtuple`." msgstr "" -#: library/typing.rst:1811 +#: library/typing.rst:2106 library/typing.rst:3055 +msgid "Usage::" +msgstr "" + +#: library/typing.rst:2035 msgid "This is equivalent to::" msgstr "" -#: library/typing.rst:1815 +#: library/typing.rst:2039 msgid "" "To give a field a default value, you can assign to it in the class body::" msgstr "" -#: library/typing.rst:1824 +#: library/typing.rst:2048 msgid "" "Fields with a default value must come after any fields without a default." msgstr "" -#: library/typing.rst:1826 +#: library/typing.rst:2050 msgid "" "The resulting class has an extra attribute ``__annotations__`` giving a dict " "that maps the field names to the field types. (The field names are in the " @@ -1605,83 +1830,83 @@ msgid "" "API.)" msgstr "" -#: library/typing.rst:1832 +#: library/typing.rst:2056 msgid "``NamedTuple`` subclasses can also have docstrings and methods::" msgstr "" -#: library/typing.rst:1842 +#: library/typing.rst:2066 msgid "``NamedTuple`` subclasses can be generic::" msgstr "" -#: library/typing.rst:1848 +#: library/typing.rst:2072 msgid "Backward-compatible usage::" msgstr "" -#: library/typing.rst:1852 +#: library/typing.rst:2082 msgid "Added support for :pep:`526` variable annotation syntax." msgstr "" -#: library/typing.rst:1855 +#: library/typing.rst:2085 msgid "Added support for default values, methods, and docstrings." msgstr "" -#: library/typing.rst:1858 +#: library/typing.rst:2088 msgid "" "The ``_field_types`` and ``__annotations__`` attributes are now regular " "dictionaries instead of instances of ``OrderedDict``." msgstr "" -#: library/typing.rst:1862 +#: library/typing.rst:2092 msgid "" "Removed the ``_field_types`` attribute in favor of the more standard " "``__annotations__`` attribute which has the same information." msgstr "" -#: library/typing.rst:1866 +#: library/typing.rst:2096 msgid "Added support for generic namedtuples." msgstr "" -#: library/typing.rst:1871 +#: library/typing.rst:2101 msgid "Helper class to create low-overhead :ref:`distinct types `." msgstr "" -#: library/typing.rst:1873 +#: library/typing.rst:2103 msgid "" "A ``NewType`` is considered a distinct type by a typechecker. At runtime, " "however, calling a ``NewType`` returns its argument unchanged." msgstr "" -#: library/typing.rst:1883 +#: library/typing.rst:2113 msgid "The module in which the new type is defined." msgstr "" -#: library/typing.rst:1887 +#: library/typing.rst:2117 msgid "The name of the new type." msgstr "" -#: library/typing.rst:1891 +#: library/typing.rst:2121 msgid "The type that the new type is based on." msgstr "" -#: library/typing.rst:1895 +#: library/typing.rst:2125 msgid "``NewType`` is now a class rather than a function." msgstr "" -#: library/typing.rst:1900 +#: library/typing.rst:2130 msgid "Base class for protocol classes." msgstr "" -#: library/typing.rst:1902 +#: library/typing.rst:2132 msgid "Protocol classes are defined like this::" msgstr "" -#: library/typing.rst:1908 +#: library/typing.rst:2138 msgid "" "Such classes are primarily used with static type checkers that recognize " "structural subtyping (static duck-typing), for example::" msgstr "" -#: library/typing.rst:1920 +#: library/typing.rst:2150 msgid "" "See :pep:`544` for more details. Protocol classes decorated with :func:" "`runtime_checkable` (described later) act as simple-minded runtime protocols " @@ -1689,15 +1914,21 @@ msgid "" "signatures." msgstr "" -#: library/typing.rst:1925 +#: library/typing.rst:2155 msgid "Protocol classes can be generic, for example::" msgstr "" -#: library/typing.rst:1937 +#: library/typing.rst:2161 +msgid "" +"In code that needs to be compatible with Python 3.11 or older, generic " +"Protocols can be written as follows::" +msgstr "" + +#: library/typing.rst:2174 msgid "Mark a protocol class as a runtime protocol." msgstr "" -#: library/typing.rst:1939 +#: library/typing.rst:2176 msgid "" "Such a protocol can be used with :func:`isinstance` and :func:`issubclass`. " "This raises :exc:`TypeError` when applied to a non-protocol class. This " @@ -1706,7 +1937,7 @@ msgid "" "Iterable`. For example::" msgstr "" -#: library/typing.rst:1959 +#: library/typing.rst:2196 msgid "" ":func:`!runtime_checkable` will check only the presence of the required " "methods or attributes, not their type signatures or types. For example, :" @@ -1717,7 +1948,7 @@ msgid "" "(instantiate) :class:`ssl.SSLObject`." msgstr "" -#: library/typing.rst:1970 +#: library/typing.rst:2207 msgid "" "An :func:`isinstance` check against a runtime-checkable protocol can be " "surprisingly slow compared to an ``isinstance()`` check against a non-" @@ -1725,13 +1956,32 @@ msgid "" "calls for structural checks in performance-sensitive code." msgstr "" -#: library/typing.rst:1981 +#: library/typing.rst:2215 +msgid "" +"The internal implementation of :func:`isinstance` checks against runtime-" +"checkable protocols now uses :func:`inspect.getattr_static` to look up " +"attributes (previously, :func:`hasattr` was used). As a result, some objects " +"which used to be considered instances of a runtime-checkable protocol may no " +"longer be considered instances of that protocol on Python 3.12+, and vice " +"versa. Most users are unlikely to be affected by this change." +msgstr "" + +#: library/typing.rst:2224 +msgid "" +"The members of a runtime-checkable protocol are now considered \"frozen\" at " +"runtime as soon as the class has been created. Monkey-patching attributes " +"onto a runtime-checkable protocol will still work, but will have no impact " +"on :func:`isinstance` checks comparing objects to the protocol. See :ref:" +"`\"What's new in Python 3.12\" ` for more details." +msgstr "" + +#: library/typing.rst:2235 msgid "" "Special construct to add type hints to a dictionary. At runtime it is a " "plain :class:`dict`." msgstr "" -#: library/typing.rst:1984 +#: library/typing.rst:2238 msgid "" "``TypedDict`` declares a dictionary type that expects all of its instances " "to have a certain set of keys, where each key is associated with a value of " @@ -1739,53 +1989,53 @@ msgid "" "enforced by type checkers. Usage::" msgstr "" -#: library/typing.rst:2000 +#: library/typing.rst:2254 msgid "" "To allow using this feature with older versions of Python that do not " "support :pep:`526`, ``TypedDict`` supports two additional equivalent " "syntactic forms:" msgstr "" -#: library/typing.rst:2004 +#: library/typing.rst:2258 msgid "Using a literal :class:`dict` as the second argument::" msgstr "" -#: library/typing.rst:2008 +#: library/typing.rst:2262 msgid "Using keyword arguments::" msgstr "" -#: library/typing.rst:2015 +#: library/typing.rst:2269 msgid "" "The keyword-argument syntax is deprecated in 3.11 and will be removed in " "3.13. It may also be unsupported by static type checkers." msgstr "" -#: library/typing.rst:2016 +#: library/typing.rst:2270 msgid "" "The functional syntax should also be used when any of the keys are not " "valid :ref:`identifiers `, for example because they are " "keywords or contain hyphens. Example::" msgstr "" -#: library/typing.rst:2028 +#: library/typing.rst:2282 msgid "" "By default, all keys must be present in a ``TypedDict``. It is possible to " "mark individual keys as non-required using :data:`NotRequired`::" msgstr "" -#: library/typing.rst:2039 +#: library/typing.rst:2293 msgid "" "This means that a ``Point2D`` ``TypedDict`` can have the ``label`` key " "omitted." msgstr "" -#: library/typing.rst:2042 +#: library/typing.rst:2296 msgid "" "It is also possible to mark all keys as non-required by default by " "specifying a totality of ``False``::" msgstr "" -#: library/typing.rst:2052 +#: library/typing.rst:2306 msgid "" "This means that a ``Point2D`` ``TypedDict`` can have any of the keys " "omitted. A type checker is only expected to support a literal ``False`` or " @@ -1793,61 +2043,67 @@ msgid "" "and makes all items defined in the class body required." msgstr "" -#: library/typing.rst:2057 +#: library/typing.rst:2311 msgid "" "Individual keys of a ``total=False`` ``TypedDict`` can be marked as required " "using :data:`Required`::" msgstr "" -#: library/typing.rst:2072 +#: library/typing.rst:2326 msgid "" "It is possible for a ``TypedDict`` type to inherit from one or more other " "``TypedDict`` types using the class-based syntax. Usage::" msgstr "" -#: library/typing.rst:2079 +#: library/typing.rst:2333 msgid "" "``Point3D`` has three items: ``x``, ``y`` and ``z``. It is equivalent to " "this definition::" msgstr "" -#: library/typing.rst:2087 +#: library/typing.rst:2341 msgid "" "A ``TypedDict`` cannot inherit from a non-\\ ``TypedDict`` class, except " "for :class:`Generic`. For example::" msgstr "" -#: library/typing.rst:2102 -msgid "A ``TypedDict`` can be generic:" +#: library/typing.rst:2356 +msgid "A ``TypedDict`` can be generic::" +msgstr "" + +#: library/typing.rst:2362 +msgid "" +"To create a generic ``TypedDict`` that is compatible with Python 3.11 or " +"lower, inherit from :class:`Generic` explicitly:" msgstr "" -#: library/typing.rst:2112 +#: library/typing.rst:2373 msgid "" "A ``TypedDict`` can be introspected via annotations dicts (see :ref:" "`annotations-howto` for more information on annotations best practices), :" "attr:`__total__`, :attr:`__required_keys__`, and :attr:`__optional_keys__`." msgstr "" -#: library/typing.rst:2118 +#: library/typing.rst:2379 msgid "" "``Point2D.__total__`` gives the value of the ``total`` argument. Example:" msgstr "" -#: library/typing.rst:2140 +#: library/typing.rst:2401 msgid "" "``Point2D.__required_keys__`` and ``Point2D.__optional_keys__`` return :" "class:`frozenset` objects containing required and non-required keys, " "respectively." msgstr "" -#: library/typing.rst:2143 +#: library/typing.rst:2404 msgid "" "Keys marked with :data:`Required` will always appear in " "``__required_keys__`` and keys marked with :data:`NotRequired` will always " "appear in ``__optional_keys__``." msgstr "" -#: library/typing.rst:2146 +#: library/typing.rst:2407 msgid "" "For backwards compatibility with Python 3.10 and below, it is also possible " "to use inheritance to declare both required and non-required keys in the " @@ -1856,130 +2112,130 @@ msgid "" "``TypedDict`` with a different value for ``total``:" msgstr "" -#: library/typing.rst:2169 +#: library/typing.rst:2430 msgid "" "See :pep:`589` for more examples and detailed rules of using ``TypedDict``." msgstr "" -#: library/typing.rst:2173 +#: library/typing.rst:2434 msgid "" "Added support for marking individual keys as :data:`Required` or :data:" "`NotRequired`. See :pep:`655`." msgstr "" -#: library/typing.rst:2177 +#: library/typing.rst:2438 msgid "Added support for generic ``TypedDict``\\ s." msgstr "" -#: library/typing.rst:2181 +#: library/typing.rst:2442 msgid "Protocols" msgstr "" -#: library/typing.rst:2183 +#: library/typing.rst:2444 msgid "" "The following protocols are provided by the typing module. All are decorated " "with :func:`@runtime_checkable `." msgstr "" -#: library/typing.rst:2188 +#: library/typing.rst:2449 msgid "" "An ABC with one abstract method ``__abs__`` that is covariant in its return " "type." msgstr "" -#: library/typing.rst:2193 +#: library/typing.rst:2454 msgid "An ABC with one abstract method ``__bytes__``." msgstr "" -#: library/typing.rst:2197 +#: library/typing.rst:2458 msgid "An ABC with one abstract method ``__complex__``." msgstr "" -#: library/typing.rst:2201 +#: library/typing.rst:2462 msgid "An ABC with one abstract method ``__float__``." msgstr "" -#: library/typing.rst:2205 +#: library/typing.rst:2466 msgid "An ABC with one abstract method ``__index__``." msgstr "" -#: library/typing.rst:2211 +#: library/typing.rst:2472 msgid "An ABC with one abstract method ``__int__``." msgstr "" -#: library/typing.rst:2215 +#: library/typing.rst:2476 msgid "" "An ABC with one abstract method ``__round__`` that is covariant in its " "return type." msgstr "" -#: library/typing.rst:2219 +#: library/typing.rst:2480 msgid "ABCs for working with IO" msgstr "" -#: library/typing.rst:2225 +#: library/typing.rst:2486 msgid "" "Generic type ``IO[AnyStr]`` and its subclasses ``TextIO(IO[str])`` and " "``BinaryIO(IO[bytes])`` represent the types of I/O streams such as returned " "by :func:`open`." msgstr "" -#: library/typing.rst:2231 +#: library/typing.rst:2492 msgid "Functions and decorators" msgstr "" -#: library/typing.rst:2235 +#: library/typing.rst:2496 msgid "Cast a value to a type." msgstr "" -#: library/typing.rst:2237 +#: library/typing.rst:2498 msgid "" "This returns the value unchanged. To the type checker this signals that the " "return value has the designated type, but at runtime we intentionally don't " "check anything (we want this to be as fast as possible)." msgstr "" -#: library/typing.rst:2244 +#: library/typing.rst:2505 msgid "" "Ask a static type checker to confirm that *val* has an inferred type of " "*typ*." msgstr "" -#: library/typing.rst:2246 +#: library/typing.rst:2507 msgid "" "At runtime this does nothing: it returns the first argument unchanged with " "no checks or side effects, no matter the actual type of the argument." msgstr "" -#: library/typing.rst:2249 +#: library/typing.rst:2510 msgid "" "When a static type checker encounters a call to ``assert_type()``, it emits " "an error if the value is not of the specified type::" msgstr "" -#: library/typing.rst:2256 +#: library/typing.rst:2517 msgid "" "This function is useful for ensuring the type checker's understanding of a " "script is in line with the developer's intentions::" msgstr "" -#: library/typing.rst:2270 +#: library/typing.rst:2531 msgid "" "Ask a static type checker to confirm that a line of code is unreachable." msgstr "" -#: library/typing.rst:2272 +#: library/typing.rst:2533 msgid "Example::" msgstr "" -#: library/typing.rst:2283 +#: library/typing.rst:2544 msgid "" "Here, the annotations allow the type checker to infer that the last case can " "never execute, because ``arg`` is either an :class:`int` or a :class:`str`, " "and both options are covered by earlier cases." msgstr "" -#: library/typing.rst:2288 +#: library/typing.rst:2549 msgid "" "If a type checker finds that a call to ``assert_never()`` is reachable, it " "will emit an error. For example, if the type annotation for ``arg`` was " @@ -1989,59 +2245,59 @@ msgid "" "passed in must be the bottom type, :data:`Never`, and nothing else." msgstr "" -#: library/typing.rst:2296 +#: library/typing.rst:2557 msgid "At runtime, this throws an exception when called." msgstr "" -#: library/typing.rst:2299 +#: library/typing.rst:2560 msgid "" "`Unreachable Code and Exhaustiveness Checking `__ has more information about " "exhaustiveness checking with static typing." msgstr "" -#: library/typing.rst:2307 +#: library/typing.rst:2568 msgid "Reveal the inferred static type of an expression." msgstr "" -#: library/typing.rst:2309 +#: library/typing.rst:2570 msgid "" "When a static type checker encounters a call to this function, it emits a " "diagnostic with the type of the argument. For example::" msgstr "" -#: library/typing.rst:2315 +#: library/typing.rst:2576 msgid "" "This can be useful when you want to debug how your type checker handles a " "particular piece of code." msgstr "" -#: library/typing.rst:2318 +#: library/typing.rst:2579 msgid "" "The function returns its argument unchanged, which allows using it within an " "expression::" msgstr "" -#: library/typing.rst:2323 +#: library/typing.rst:2584 msgid "" "Most type checkers support ``reveal_type()`` anywhere, even if the name is " "not imported from ``typing``. Importing the name from ``typing`` allows your " "code to run without runtime errors and communicates intent more clearly." msgstr "" -#: library/typing.rst:2328 +#: library/typing.rst:2589 msgid "" "At runtime, this function prints the runtime type of its argument to stderr " "and returns it unchanged::" msgstr "" -#: library/typing.rst:2340 +#: library/typing.rst:2601 msgid "" "Decorator to mark an object as providing :func:`dataclass `-like behavior." msgstr "" -#: library/typing.rst:2343 +#: library/typing.rst:2604 msgid "" "``dataclass_transform`` may be used to decorate a class, metaclass, or a " "function that is itself a decorator. The presence of " @@ -2050,19 +2306,19 @@ msgid "" "to :func:`@dataclasses.dataclass `." msgstr "" -#: library/typing.rst:2350 +#: library/typing.rst:2611 msgid "Example usage with a decorator function:" msgstr "" -#: library/typing.rst:2366 +#: library/typing.rst:2625 msgid "On a base class::" msgstr "" -#: library/typing.rst:2375 +#: library/typing.rst:2634 msgid "On a metaclass::" msgstr "" -#: library/typing.rst:2386 +#: library/typing.rst:2645 msgid "" "The ``CustomerModel`` classes defined above will be treated by type checkers " "similarly to classes created with :func:`@dataclasses.dataclass `-decorated definitions for " "*func*." msgstr "" -#: library/typing.rst:2517 +#: library/typing.rst:2783 msgid "" "*func* is the function object for the implementation of the overloaded " "function. For example, given the definition of ``process`` in the " @@ -2267,32 +2536,32 @@ msgid "" "returns an empty sequence." msgstr "" -#: library/typing.rst:2524 +#: library/typing.rst:2790 msgid "" "``get_overloads()`` can be used for introspecting an overloaded function at " "runtime." msgstr "" -#: library/typing.rst:2532 +#: library/typing.rst:2798 msgid "Clear all registered overloads in the internal registry." msgstr "" -#: library/typing.rst:2534 +#: library/typing.rst:2800 msgid "This can be used to reclaim the memory used by the registry." msgstr "" -#: library/typing.rst:2541 +#: library/typing.rst:2807 msgid "Decorator to indicate final methods and final classes." msgstr "" -#: library/typing.rst:2543 +#: library/typing.rst:2809 msgid "" "Decorating a method with ``@final`` indicates to a type checker that the " "method cannot be overridden in a subclass. Decorating a class with " "``@final`` indicates that it cannot be subclassed." msgstr "" -#: library/typing.rst:2568 +#: library/typing.rst:2834 msgid "" "The decorator will now attempt to set a ``__final__`` attribute to ``True`` " "on the decorated object. Thus, a check like ``if getattr(obj, \"__final__\", " @@ -2302,11 +2571,11 @@ msgid "" "exception." msgstr "" -#: library/typing.rst:2579 +#: library/typing.rst:2845 msgid "Decorator to indicate that annotations are not type hints." msgstr "" -#: library/typing.rst:2581 +#: library/typing.rst:2847 msgid "" "This works as a class or function :term:`decorator`. With a class, it " "applies recursively to all methods and classes defined in that class (but " @@ -2314,48 +2583,79 @@ msgid "" "will ignore all annotations in a function or class with this decorator." msgstr "" -#: library/typing.rst:2587 +#: library/typing.rst:2853 msgid "``@no_type_check`` mutates the decorated object in place." msgstr "" -#: library/typing.rst:2591 +#: library/typing.rst:2857 msgid "Decorator to give another decorator the :func:`no_type_check` effect." msgstr "" -#: library/typing.rst:2593 +#: library/typing.rst:2859 msgid "" "This wraps the decorator with something that wraps the decorated function " "in :func:`no_type_check`." msgstr "" -#: library/typing.rst:2598 +#: library/typing.rst:2865 +msgid "" +"Decorator to indicate that a method in a subclass is intended to override a " +"method or attribute in a superclass." +msgstr "" + +#: library/typing.rst:2868 +msgid "" +"Type checkers should emit an error if a method decorated with ``@override`` " +"does not, in fact, override anything. This helps prevent bugs that may occur " +"when a base class is changed without an equivalent change to a child class." +msgstr "" + +#: library/typing.rst:2890 +msgid "There is no runtime checking of this property." +msgstr "" + +#: library/typing.rst:2892 +msgid "" +"The decorator will attempt to set an ``__override__`` attribute to ``True`` " +"on the decorated object. Thus, a check like ``if getattr(obj, " +"\"__override__\", False)`` can be used at runtime to determine whether an " +"object ``obj`` has been marked as an override. If the decorated object does " +"not support setting attributes, the decorator returns the object unchanged " +"without raising an exception." +msgstr "" + +#: library/typing.rst:2899 +msgid "See :pep:`698` for more details." +msgstr "" + +#: library/typing.rst:2906 msgid "Decorator to mark a class or function as unavailable at runtime." msgstr "" -#: library/typing.rst:2600 +#: library/typing.rst:2908 msgid "" "This decorator is itself not available at runtime. It is mainly intended to " "mark classes that are defined in type stub files if an implementation " "returns an instance of a private class::" msgstr "" -#: library/typing.rst:2611 +#: library/typing.rst:2919 msgid "" "Note that returning instances of private classes is not recommended. It is " "usually preferable to make such classes public." msgstr "" -#: library/typing.rst:2615 +#: library/typing.rst:2923 msgid "Introspection helpers" msgstr "" -#: library/typing.rst:2619 +#: library/typing.rst:2927 msgid "" "Return a dictionary containing type hints for a function, method, module or " "class object." msgstr "" -#: library/typing.rst:2622 +#: library/typing.rst:2930 msgid "" "This is often the same as ``obj.__annotations__``. In addition, forward " "references encoded as string literals are handled by evaluating them in " @@ -2364,40 +2664,40 @@ msgid "" "__mro__`` in reverse order." msgstr "" -#: library/typing.rst:2628 +#: library/typing.rst:2936 msgid "" "The function recursively replaces all ``Annotated[T, ...]`` with ``T``, " "unless ``include_extras`` is set to ``True`` (see :class:`Annotated` for " "more information). For example:" msgstr "" -#: library/typing.rst:2645 +#: library/typing.rst:2953 msgid "" ":func:`get_type_hints` does not work with imported :ref:`type aliases ` that include forward references. Enabling postponed evaluation of " "annotations (:pep:`563`) may remove the need for most forward references." msgstr "" -#: library/typing.rst:2650 +#: library/typing.rst:2958 msgid "" "Added ``include_extras`` parameter as part of :pep:`593`. See the " "documentation on :data:`Annotated` for more information." msgstr "" -#: library/typing.rst:2654 +#: library/typing.rst:2962 msgid "" "Previously, ``Optional[t]`` was added for function and method annotations if " "a default value equal to ``None`` was set. Now the annotation is returned " "unchanged." msgstr "" -#: library/typing.rst:2661 +#: library/typing.rst:2969 msgid "" "Get the unsubscripted version of a type: for a typing object of the form " "``X[Y, Z, ...]`` return ``X``." msgstr "" -#: library/typing.rst:2664 +#: library/typing.rst:2972 msgid "" "If ``X`` is a typing-module alias for a builtin or :mod:`collections` class, " "it will be normalized to the original class. If ``X`` is an instance of :" @@ -2405,17 +2705,17 @@ msgid "" "class:`ParamSpec`. Return ``None`` for unsupported objects." msgstr "" -#: library/typing.rst:2693 +#: library/typing.rst:3001 msgid "Examples:" msgstr "" -#: library/typing.rst:2685 +#: library/typing.rst:2993 msgid "" "Get type arguments with all substitutions performed: for a typing object of " "the form ``X[Y, Z, ...]`` return ``(Y, Z, ...)``." msgstr "" -#: library/typing.rst:2688 +#: library/typing.rst:2996 msgid "" "If ``X`` is a union or :class:`Literal` contained in another generic type, " "the order of ``(Y, Z, ...)`` may be different from the order of the original " @@ -2423,40 +2723,40 @@ msgid "" "objects." msgstr "" -#: library/typing.rst:2705 +#: library/typing.rst:3013 msgid "Check if a type is a :class:`TypedDict`." msgstr "" -#: library/typing.rst:2726 +#: library/typing.rst:3034 msgid "" "Class used for internal typing representation of string forward references." msgstr "" -#: library/typing.rst:2728 +#: library/typing.rst:3036 msgid "" "For example, ``List[\"SomeClass\"]`` is implicitly transformed into " "``List[ForwardRef(\"SomeClass\")]``. ``ForwardRef`` should not be " "instantiated by a user, but may be used by introspection tools." msgstr "" -#: library/typing.rst:2733 +#: library/typing.rst:3041 msgid "" ":pep:`585` generic types such as ``list[\"SomeClass\"]`` will not be " "implicitly transformed into ``list[ForwardRef(\"SomeClass\")]`` and thus " "will not automatically resolve to ``list[SomeClass]``." msgstr "" -#: library/typing.rst:2740 +#: library/typing.rst:3048 msgid "Constant" msgstr "" -#: library/typing.rst:2744 +#: library/typing.rst:3052 msgid "" "A special constant that is assumed to be ``True`` by 3rd party static type " "checkers. It is ``False`` at runtime." msgstr "" -#: library/typing.rst:2755 +#: library/typing.rst:3063 msgid "" "The first type annotation must be enclosed in quotes, making it a \"forward " "reference\", to hide the ``expensive_mod`` reference from the interpreter " @@ -2464,7 +2764,7 @@ msgid "" "second annotation does not need to be enclosed in quotes." msgstr "" -#: library/typing.rst:2762 +#: library/typing.rst:3070 msgid "" "If ``from __future__ import annotations`` is used, annotations are not " "evaluated at function definition time. Instead, they are stored as strings " @@ -2472,11 +2772,11 @@ msgid "" "annotation (see :pep:`563`)." msgstr "" -#: library/typing.rst:2774 +#: library/typing.rst:3082 msgid "Deprecated aliases" msgstr "" -#: library/typing.rst:2776 +#: library/typing.rst:3084 msgid "" "This module defines several deprecated aliases to pre-existing standard " "library classes. These were originally included in the typing module in " @@ -2485,7 +2785,7 @@ msgid "" "existing classes were enhanced to support ``[]`` (see :pep:`585`)." msgstr "" -#: library/typing.rst:2783 +#: library/typing.rst:3091 msgid "" "The redundant types are deprecated as of Python 3.9. However, while the " "aliases may be removed at some point, removal of these aliases is not " @@ -2493,7 +2793,7 @@ msgid "" "the interpreter for these aliases." msgstr "" -#: library/typing.rst:2788 +#: library/typing.rst:3096 msgid "" "If at some point it is decided to remove these deprecated aliases, a " "deprecation warning will be issued by the interpreter for at least two " @@ -2501,182 +2801,188 @@ msgid "" "typing module without deprecation warnings until at least Python 3.14." msgstr "" -#: library/typing.rst:2793 +#: library/typing.rst:3101 msgid "" "Type checkers are encouraged to flag uses of the deprecated types if the " "program they are checking targets a minimum Python version of 3.9 or newer." msgstr "" -#: library/typing.rst:2799 +#: library/typing.rst:3107 msgid "Aliases to built-in types" msgstr "" -#: library/typing.rst:2803 +#: library/typing.rst:3111 msgid "Deprecated alias to :class:`dict`." msgstr "" -#: library/typing.rst:2805 +#: library/typing.rst:3113 msgid "" "Note that to annotate arguments, it is preferred to use an abstract " "collection type such as :class:`Mapping` rather than to use :class:`dict` " "or :class:`!typing.Dict`." msgstr "" -#: library/typing.rst:3049 +#: library/typing.rst:3359 msgid "This type can be used as follows::" msgstr "" -#: library/typing.rst:2814 +#: library/typing.rst:3122 msgid "" ":class:`builtins.dict ` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2820 +#: library/typing.rst:3128 msgid "Deprecated alias to :class:`list`." msgstr "" -#: library/typing.rst:2822 +#: library/typing.rst:3130 msgid "" "Note that to annotate arguments, it is preferred to use an abstract " "collection type such as :class:`Sequence` or :class:`Iterable` rather than " "to use :class:`list` or :class:`!typing.List`." msgstr "" -#: library/typing.rst:2826 +#: library/typing.rst:3134 msgid "This type may be used as follows::" msgstr "" -#: library/typing.rst:2836 +#: library/typing.rst:3142 msgid "" ":class:`builtins.list ` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2842 +#: library/typing.rst:3148 msgid "Deprecated alias to :class:`builtins.set `." msgstr "" -#: library/typing.rst:2844 +#: library/typing.rst:3150 msgid "" "Note that to annotate arguments, it is preferred to use an abstract " "collection type such as :class:`AbstractSet` rather than to use :class:`set` " "or :class:`!typing.Set`." msgstr "" -#: library/typing.rst:2848 +#: library/typing.rst:3154 msgid "" ":class:`builtins.set ` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2854 +#: library/typing.rst:3160 msgid "Deprecated alias to :class:`builtins.frozenset `." msgstr "" -#: library/typing.rst:2856 +#: library/typing.rst:3162 msgid "" ":class:`builtins.frozenset ` now supports subscripting (``[]``). " "See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2863 +#: library/typing.rst:3169 msgid "Deprecated alias for :class:`tuple`." msgstr "" -#: library/typing.rst:2865 +#: library/typing.rst:3171 msgid "" ":class:`tuple` and ``Tuple`` are special-cased in the type system; see :ref:" "`annotating-tuples` for more details." msgstr "" -#: library/typing.rst:2868 +#: library/typing.rst:3174 msgid "" ":class:`builtins.tuple ` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2874 +#: library/typing.rst:3180 msgid "Deprecated alias to :class:`type`." msgstr "" -#: library/typing.rst:2876 +#: library/typing.rst:3182 msgid "" "See :ref:`type-of-class-objects` for details on using :class:`type` or " "``typing.Type`` in type annotations." msgstr "" -#: library/typing.rst:2881 +#: library/typing.rst:3187 msgid "" ":class:`builtins.type ` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2888 +#: library/typing.rst:3194 msgid "Aliases to types in :mod:`collections`" msgstr "" -#: library/typing.rst:2892 +#: library/typing.rst:3198 msgid "Deprecated alias to :class:`collections.defaultdict`." msgstr "" -#: library/typing.rst:2896 +#: library/typing.rst:3202 msgid "" ":class:`collections.defaultdict` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2902 +#: library/typing.rst:3208 msgid "Deprecated alias to :class:`collections.OrderedDict`." msgstr "" -#: library/typing.rst:2906 +#: library/typing.rst:3212 msgid "" ":class:`collections.OrderedDict` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2912 +#: library/typing.rst:3218 msgid "Deprecated alias to :class:`collections.ChainMap`." msgstr "" -#: library/typing.rst:2917 +#: library/typing.rst:3223 msgid "" ":class:`collections.ChainMap` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2923 +#: library/typing.rst:3229 msgid "Deprecated alias to :class:`collections.Counter`." msgstr "" -#: library/typing.rst:2928 +#: library/typing.rst:3234 msgid "" ":class:`collections.Counter` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2934 +#: library/typing.rst:3240 msgid "Deprecated alias to :class:`collections.deque`." msgstr "" -#: library/typing.rst:2939 +#: library/typing.rst:3245 msgid "" ":class:`collections.deque` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2946 +#: library/typing.rst:3252 msgid "Aliases to other concrete types" msgstr "" -#: library/typing.rst:2951 +#: library/typing.rst:3257 +msgid "" +"The ``typing.io`` namespace is deprecated and will be removed. These types " +"should be directly imported from ``typing`` instead." +msgstr "" + +#: library/typing.rst:3261 msgid "" "Deprecated aliases corresponding to the return types from :func:`re.compile` " "and :func:`re.match`." msgstr "" -#: library/typing.rst:2954 +#: library/typing.rst:3264 msgid "" "These types (and the corresponding functions) are generic over :data:" "`AnyStr`. ``Pattern`` can be specialised as ``Pattern[str]`` or " @@ -2684,383 +2990,391 @@ msgid "" "``Match[bytes]``." msgstr "" -#: library/typing.rst:2962 +#: library/typing.rst:3272 msgid "" "The ``typing.re`` namespace is deprecated and will be removed. These types " "should be directly imported from ``typing`` instead." msgstr "" -#: library/typing.rst:2963 +#: library/typing.rst:3273 msgid "" "Classes ``Pattern`` and ``Match`` from :mod:`re` now support ``[]``. See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:2969 +#: library/typing.rst:3279 msgid "Deprecated alias for :class:`str`." msgstr "" -#: library/typing.rst:2971 +#: library/typing.rst:3281 msgid "" "``Text`` is provided to supply a forward compatible path for Python 2 code: " "in Python 2, ``Text`` is an alias for ``unicode``." msgstr "" -#: library/typing.rst:2975 +#: library/typing.rst:3285 msgid "" "Use ``Text`` to indicate that a value must contain a unicode string in a " "manner that is compatible with both Python 2 and Python 3::" msgstr "" -#: library/typing.rst:2983 +#: library/typing.rst:3293 msgid "" "Python 2 is no longer supported, and most type checkers also no longer " "support type checking Python 2 code. Removal of the alias is not currently " "planned, but users are encouraged to use :class:`str` instead of ``Text``." msgstr "" -#: library/typing.rst:2993 +#: library/typing.rst:3303 msgid "Aliases to container ABCs in :mod:`collections.abc`" msgstr "" -#: library/typing.rst:2997 +#: library/typing.rst:3307 msgid "Deprecated alias to :class:`collections.abc.Set`." msgstr "" -#: library/typing.rst:2999 +#: library/typing.rst:3309 msgid "" ":class:`collections.abc.Set` now supports subscripting (``[]``). See :pep:" "`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3005 +#: library/typing.rst:3315 msgid "" "This type represents the types :class:`bytes`, :class:`bytearray`, and :" "class:`memoryview` of byte sequences." msgstr "" -#: library/typing.rst:3009 +#: library/typing.rst:3319 msgid "" -"Prefer ``typing_extensions.Buffer``, or a union like ``bytes | bytearray | " -"memoryview``." +"Prefer :class:`collections.abc.Buffer`, or a union like ``bytes | bytearray " +"| memoryview``." msgstr "" -#: library/typing.rst:3013 +#: library/typing.rst:3323 msgid "Deprecated alias to :class:`collections.abc.Collection`." msgstr "" -#: library/typing.rst:3017 +#: library/typing.rst:3327 msgid "" ":class:`collections.abc.Collection` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3023 +#: library/typing.rst:3333 msgid "Deprecated alias to :class:`collections.abc.Container`." msgstr "" -#: library/typing.rst:3025 +#: library/typing.rst:3335 msgid "" ":class:`collections.abc.Container` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3031 +#: library/typing.rst:3341 msgid "Deprecated alias to :class:`collections.abc.ItemsView`." msgstr "" -#: library/typing.rst:3033 +#: library/typing.rst:3343 msgid "" ":class:`collections.abc.ItemsView` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3039 +#: library/typing.rst:3349 msgid "Deprecated alias to :class:`collections.abc.KeysView`." msgstr "" -#: library/typing.rst:3041 +#: library/typing.rst:3351 msgid "" ":class:`collections.abc.KeysView` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3047 +#: library/typing.rst:3357 msgid "Deprecated alias to :class:`collections.abc.Mapping`." msgstr "" -#: library/typing.rst:3054 +#: library/typing.rst:3364 msgid "" ":class:`collections.abc.Mapping` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3060 +#: library/typing.rst:3370 msgid "Deprecated alias to :class:`collections.abc.MappingView`." msgstr "" -#: library/typing.rst:3062 +#: library/typing.rst:3372 msgid "" ":class:`collections.abc.MappingView` now supports subscripting (``[]``). " "See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3068 +#: library/typing.rst:3378 msgid "Deprecated alias to :class:`collections.abc.MutableMapping`." msgstr "" -#: library/typing.rst:3070 +#: library/typing.rst:3380 msgid "" ":class:`collections.abc.MutableMapping` now supports subscripting (``[]``). " "See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3077 +#: library/typing.rst:3387 msgid "Deprecated alias to :class:`collections.abc.MutableSequence`." msgstr "" -#: library/typing.rst:3079 +#: library/typing.rst:3389 msgid "" ":class:`collections.abc.MutableSequence` now supports subscripting (``[]``). " "See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3086 +#: library/typing.rst:3396 msgid "Deprecated alias to :class:`collections.abc.MutableSet`." msgstr "" -#: library/typing.rst:3088 +#: library/typing.rst:3398 msgid "" ":class:`collections.abc.MutableSet` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3094 +#: library/typing.rst:3404 msgid "Deprecated alias to :class:`collections.abc.Sequence`." msgstr "" -#: library/typing.rst:3096 +#: library/typing.rst:3406 msgid "" ":class:`collections.abc.Sequence` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3102 +#: library/typing.rst:3412 msgid "Deprecated alias to :class:`collections.abc.ValuesView`." msgstr "" -#: library/typing.rst:3104 +#: library/typing.rst:3414 msgid "" ":class:`collections.abc.ValuesView` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3111 +#: library/typing.rst:3421 msgid "Aliases to asynchronous ABCs in :mod:`collections.abc`" msgstr "" -#: library/typing.rst:3115 +#: library/typing.rst:3425 msgid "Deprecated alias to :class:`collections.abc.Coroutine`." msgstr "" -#: library/typing.rst:3117 +#: library/typing.rst:3427 msgid "" "The variance and order of type variables correspond to those of :class:" "`Generator`, for example::" msgstr "" -#: library/typing.rst:3128 +#: library/typing.rst:3438 msgid "" ":class:`collections.abc.Coroutine` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3134 +#: library/typing.rst:3444 msgid "Deprecated alias to :class:`collections.abc.AsyncGenerator`." msgstr "" -#: library/typing.rst:3136 +#: library/typing.rst:3446 msgid "" "An async generator can be annotated by the generic type " "``AsyncGenerator[YieldType, SendType]``. For example::" msgstr "" -#: library/typing.rst:3145 +#: library/typing.rst:3455 msgid "" "Unlike normal generators, async generators cannot return a value, so there " "is no ``ReturnType`` type parameter. As with :class:`Generator`, the " "``SendType`` behaves contravariantly." msgstr "" -#: library/typing.rst:3149 +#: library/typing.rst:3459 msgid "" "If your generator will only yield values, set the ``SendType`` to ``None``::" msgstr "" -#: library/typing.rst:3157 +#: library/typing.rst:3467 msgid "" "Alternatively, annotate your generator as having a return type of either " "``AsyncIterable[YieldType]`` or ``AsyncIterator[YieldType]``::" msgstr "" -#: library/typing.rst:3167 +#: library/typing.rst:3477 msgid "" ":class:`collections.abc.AsyncGenerator` now supports subscripting (``[]``). " "See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3174 +#: library/typing.rst:3484 msgid "Deprecated alias to :class:`collections.abc.AsyncIterable`." msgstr "" -#: library/typing.rst:3178 +#: library/typing.rst:3488 msgid "" ":class:`collections.abc.AsyncIterable` now supports subscripting (``[]``). " "See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3184 +#: library/typing.rst:3494 msgid "Deprecated alias to :class:`collections.abc.AsyncIterator`." msgstr "" -#: library/typing.rst:3188 +#: library/typing.rst:3498 msgid "" ":class:`collections.abc.AsyncIterator` now supports subscripting (``[]``). " "See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3194 +#: library/typing.rst:3504 msgid "Deprecated alias to :class:`collections.abc.Awaitable`." msgstr "" -#: library/typing.rst:3198 +#: library/typing.rst:3508 msgid "" ":class:`collections.abc.Awaitable` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3205 +#: library/typing.rst:3515 msgid "Aliases to other ABCs in :mod:`collections.abc`" msgstr "" -#: library/typing.rst:3209 +#: library/typing.rst:3519 msgid "Deprecated alias to :class:`collections.abc.Iterable`." msgstr "" -#: library/typing.rst:3211 +#: library/typing.rst:3521 msgid "" ":class:`collections.abc.Iterable` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3217 +#: library/typing.rst:3527 msgid "Deprecated alias to :class:`collections.abc.Iterator`." msgstr "" -#: library/typing.rst:3219 +#: library/typing.rst:3529 msgid "" ":class:`collections.abc.Iterator` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3225 +#: library/typing.rst:3535 msgid "Deprecated alias to :class:`collections.abc.Callable`." msgstr "" -#: library/typing.rst:3227 +#: library/typing.rst:3537 msgid "" "See :ref:`annotating-callables` for details on how to use :class:" "`collections.abc.Callable` and ``typing.Callable`` in type annotations." msgstr "" -#: library/typing.rst:3230 +#: library/typing.rst:3540 msgid "" ":class:`collections.abc.Callable` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3240 +#: library/typing.rst:3550 msgid "Deprecated alias to :class:`collections.abc.Generator`." msgstr "" -#: library/typing.rst:3242 +#: library/typing.rst:3552 msgid "" "A generator can be annotated by the generic type ``Generator[YieldType, " "SendType, ReturnType]``. For example::" msgstr "" -#: library/typing.rst:3251 +#: library/typing.rst:3561 msgid "" "Note that unlike many other generics in the typing module, the ``SendType`` " "of :class:`Generator` behaves contravariantly, not covariantly or " "invariantly." msgstr "" -#: library/typing.rst:3255 +#: library/typing.rst:3565 msgid "" "If your generator will only yield values, set the ``SendType`` and " "``ReturnType`` to ``None``::" msgstr "" -#: library/typing.rst:3263 +#: library/typing.rst:3573 msgid "" "Alternatively, annotate your generator as having a return type of either " "``Iterable[YieldType]`` or ``Iterator[YieldType]``::" msgstr "" -#: library/typing.rst:3271 +#: library/typing.rst:3581 msgid "" ":class:`collections.abc.Generator` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3277 -msgid "Alias to :class:`collections.abc.Hashable`." +#: library/typing.rst:3587 +msgid "Deprecated alias to :class:`collections.abc.Hashable`." msgstr "" -#: library/typing.rst:3281 +#: library/typing.rst:3589 +msgid "Use :class:`collections.abc.Hashable` directly instead." +msgstr "" + +#: library/typing.rst:3594 msgid "Deprecated alias to :class:`collections.abc.Reversible`." msgstr "" -#: library/typing.rst:3283 +#: library/typing.rst:3596 msgid "" ":class:`collections.abc.Reversible` now supports subscripting (``[]``). See :" "pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3289 -msgid "Alias to :class:`collections.abc.Sized`." +#: library/typing.rst:3602 +msgid "Deprecated alias to :class:`collections.abc.Sized`." msgstr "" -#: library/typing.rst:3294 +#: library/typing.rst:3604 +msgid "Use :class:`collections.abc.Sized` directly instead." +msgstr "" + +#: library/typing.rst:3610 msgid "Aliases to :mod:`contextlib` ABCs" msgstr "" -#: library/typing.rst:3298 +#: library/typing.rst:3614 msgid "Deprecated alias to :class:`contextlib.AbstractContextManager`." msgstr "" -#: library/typing.rst:3303 +#: library/typing.rst:3619 msgid "" ":class:`contextlib.AbstractContextManager` now supports subscripting " "(``[]``). See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3310 +#: library/typing.rst:3626 msgid "Deprecated alias to :class:`contextlib.AbstractAsyncContextManager`." msgstr "" -#: library/typing.rst:3315 +#: library/typing.rst:3631 msgid "" ":class:`contextlib.AbstractAsyncContextManager` now supports subscripting " "(``[]``). See :pep:`585` and :ref:`types-genericalias`." msgstr "" -#: library/typing.rst:3321 +#: library/typing.rst:3637 msgid "Deprecation Timeline of Major Features" msgstr "" -#: library/typing.rst:3323 +#: library/typing.rst:3639 msgid "" "Certain features in ``typing`` are deprecated and may be removed in a future " "version of Python. The following table summarizes major deprecations for " @@ -3068,78 +3382,98 @@ msgid "" "listed." msgstr "" -#: library/typing.rst:3330 +#: library/typing.rst:3646 msgid "Feature" msgstr "" -#: library/typing.rst:3331 +#: library/typing.rst:3647 msgid "Deprecated in" msgstr "" -#: library/typing.rst:3332 +#: library/typing.rst:3648 msgid "Projected removal" msgstr "" -#: library/typing.rst:3333 +#: library/typing.rst:3649 msgid "PEP/issue" msgstr "" -#: library/typing.rst:3334 +#: library/typing.rst:3650 msgid "``typing.io`` and ``typing.re`` submodules" msgstr "" -#: library/typing.rst:3335 +#: library/typing.rst:3651 msgid "3.8" msgstr "" -#: library/typing.rst:3336 +#: library/typing.rst:3652 msgid "3.13" msgstr "" -#: library/typing.rst:3337 +#: library/typing.rst:3653 msgid ":issue:`38291`" msgstr "" -#: library/typing.rst:3338 +#: library/typing.rst:3654 msgid "``typing`` versions of standard collections" msgstr "" -#: library/typing.rst:3343 +#: library/typing.rst:3659 msgid "3.9" msgstr "" -#: library/typing.rst:3340 -msgid "Undecided (see :ref:`deprecated-typing-aliases` for more information)" +#: library/typing.rst:3656 +msgid "Undecided (see :ref:`deprecated-aliases` for more information)" msgstr "" -#: library/typing.rst:3341 +#: library/typing.rst:3657 msgid ":pep:`585`" msgstr "" -#: library/typing.rst:3342 +#: library/typing.rst:3658 msgid ":class:`typing.ByteString`" msgstr "" -#: library/typing.rst:3344 +#: library/typing.rst:3660 msgid "3.14" msgstr "" -#: library/typing.rst:3345 +#: library/typing.rst:3661 msgid ":gh:`91896`" msgstr "" -#: library/typing.rst:3346 +#: library/typing.rst:3662 msgid ":data:`typing.Text`" msgstr "" -#: library/typing.rst:3347 +#: library/typing.rst:3663 msgid "3.11" msgstr "" -#: library/typing.rst:3348 +#: library/typing.rst:3668 library/typing.rst:3672 msgid "Undecided" msgstr "" -#: library/typing.rst:3349 +#: library/typing.rst:3665 msgid ":gh:`92332`" msgstr "" + +#: library/typing.rst:3666 +msgid ":class:`typing.Hashable` and :class:`typing.Sized`" +msgstr "" + +#: library/typing.rst:3671 +msgid "3.12" +msgstr "" + +#: library/typing.rst:3669 +msgid ":gh:`94309`" +msgstr "" + +#: library/typing.rst:3670 +msgid ":data:`typing.TypeAlias`" +msgstr "" + +#: library/typing.rst:3673 +msgid ":pep:`695`" +msgstr "" diff --git a/library/unicodedata.po b/library/unicodedata.po index 4ba649b90..d822fb4aa 100644 --- a/library/unicodedata.po +++ b/library/unicodedata.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -24,8 +24,8 @@ msgstr "" msgid "" "This module provides access to the Unicode Character Database (UCD) which " "defines character properties for all Unicode characters. The data contained " -"in this database is compiled from the `UCD version 14.0.0 `_." +"in this database is compiled from the `UCD version 15.0.0 `_." msgstr "" #: library/unicodedata.rst:23 @@ -186,11 +186,11 @@ msgid "Footnotes" msgstr "" #: library/unicodedata.rst:178 -msgid "https://www.unicode.org/Public/14.0.0/ucd/NameAliases.txt" +msgid "https://www.unicode.org/Public/15.0.0/ucd/NameAliases.txt" msgstr "" #: library/unicodedata.rst:180 -msgid "https://www.unicode.org/Public/14.0.0/ucd/NamedSequences.txt" +msgid "https://www.unicode.org/Public/15.0.0/ucd/NamedSequences.txt" msgstr "" #: library/unicodedata.rst:11 diff --git a/library/unittest.mock.po b/library/unittest.mock.po index 13e10c6eb..707e80308 100644 --- a/library/unittest.mock.po +++ b/library/unittest.mock.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -80,7 +80,7 @@ msgid "" "exception when a mock is called:" msgstr "" -#: library/unittest.mock.rst:92 +#: library/unittest.mock.rst:93 msgid "" "Mock has many other ways you can configure it and control its behaviour. For " "example the *spec* argument configures the mock to take its specification " @@ -88,7 +88,7 @@ msgid "" "that don't exist on the spec will fail with an :exc:`AttributeError`." msgstr "" -#: library/unittest.mock.rst:97 +#: library/unittest.mock.rst:98 msgid "" "The :func:`patch` decorator / context manager makes it easy to mock classes " "or objects in a module under test. The object you specify will be replaced " @@ -96,7 +96,7 @@ msgid "" "ends::" msgstr "" -#: library/unittest.mock.rst:116 +#: library/unittest.mock.rst:117 msgid "" "When you nest patch decorators the mocks are passed in to the decorated " "function in the same order they applied (the normal *Python* order that " @@ -104,34 +104,34 @@ msgid "" "above the mock for ``module.ClassName1`` is passed in first." msgstr "" -#: library/unittest.mock.rst:121 +#: library/unittest.mock.rst:122 msgid "" "With :func:`patch` it matters that you patch objects in the namespace where " "they are looked up. This is normally straightforward, but for a quick guide " "read :ref:`where to patch `." msgstr "" -#: library/unittest.mock.rst:125 +#: library/unittest.mock.rst:126 msgid "" "As well as a decorator :func:`patch` can be used as a context manager in a " "with statement:" msgstr "" -#: library/unittest.mock.rst:135 +#: library/unittest.mock.rst:136 msgid "" "There is also :func:`patch.dict` for setting values in a dictionary just " "during a scope and restoring the dictionary to its original state when the " "test ends:" msgstr "" -#: library/unittest.mock.rst:146 +#: library/unittest.mock.rst:147 msgid "" "Mock supports the mocking of Python :ref:`magic methods `. " "The easiest way of using magic methods is with the :class:`MagicMock` class. " "It allows you to do things like:" msgstr "" -#: library/unittest.mock.rst:156 +#: library/unittest.mock.rst:157 msgid "" "Mock allows you to assign functions (or other Mock instances) to magic " "methods and they will be called appropriately. The :class:`MagicMock` class " @@ -139,13 +139,13 @@ msgid "" "(well, all the useful ones anyway)." msgstr "" -#: library/unittest.mock.rst:161 +#: library/unittest.mock.rst:162 msgid "" "The following is an example of using magic methods with the ordinary Mock " "class:" msgstr "" -#: library/unittest.mock.rst:169 +#: library/unittest.mock.rst:170 msgid "" "For ensuring that the mock objects in your tests have the same api as the " "objects they are replacing, you can use :ref:`auto-speccing `." msgstr "" -#: library/unittest.mock.rst:651 +#: library/unittest.mock.rst:652 msgid "Added ``args`` and ``kwargs`` properties." msgstr "" -#: library/unittest.mock.rst:657 +#: library/unittest.mock.rst:658 msgid "" "This is a list of all the calls made to the mock object in sequence (so the " "length of the list is the number of times it has been called). Before any " @@ -535,47 +535,47 @@ msgid "" "`call_args_list`." msgstr "" -#: library/unittest.mock.rst:673 +#: library/unittest.mock.rst:674 msgid "" "Members of :attr:`call_args_list` are :data:`call` objects. These can be " "unpacked as tuples to get at the individual arguments. See :ref:`calls as " "tuples `." msgstr "" -#: library/unittest.mock.rst:680 +#: library/unittest.mock.rst:681 msgid "" "As well as tracking calls to themselves, mocks also track calls to methods " "and attributes, and *their* methods and attributes:" msgstr "" -#: library/unittest.mock.rst:691 +#: library/unittest.mock.rst:692 msgid "" "Members of :attr:`method_calls` are :data:`call` objects. These can be " "unpacked as tuples to get at the individual arguments. See :ref:`calls as " "tuples `." msgstr "" -#: library/unittest.mock.rst:698 +#: library/unittest.mock.rst:699 msgid "" ":attr:`mock_calls` records *all* calls to the mock object, its methods, " "magic methods *and* return value mocks." msgstr "" -#: library/unittest.mock.rst:716 +#: library/unittest.mock.rst:717 msgid "" "Members of :attr:`mock_calls` are :data:`call` objects. These can be " "unpacked as tuples to get at the individual arguments. See :ref:`calls as " "tuples `." msgstr "" -#: library/unittest.mock.rst:722 +#: library/unittest.mock.rst:723 msgid "" "The way :attr:`mock_calls` are recorded means that where nested calls are " "made, the parameters of ancestor calls are not recorded and so will always " "compare equal:" msgstr "" -#: library/unittest.mock.rst:736 +#: library/unittest.mock.rst:737 msgid "" "Normally the :attr:`__class__` attribute of an object will return its type. " "For a mock object with a :attr:`spec`, ``__class__`` returns the spec class " @@ -583,32 +583,32 @@ msgid "" "object they are replacing / masquerading as:" msgstr "" -#: library/unittest.mock.rst:745 +#: library/unittest.mock.rst:746 msgid "" ":attr:`__class__` is assignable to, this allows a mock to pass an :func:" "`isinstance` check without forcing you to use a spec:" msgstr "" -#: library/unittest.mock.rst:755 +#: library/unittest.mock.rst:756 msgid "" "A non-callable version of :class:`Mock`. The constructor parameters have the " "same meaning of :class:`Mock`, with the exception of *return_value* and " "*side_effect* which have no meaning on a non-callable mock." msgstr "" -#: library/unittest.mock.rst:759 +#: library/unittest.mock.rst:760 msgid "" "Mock objects that use a class or an instance as a :attr:`spec` or :attr:" "`spec_set` are able to pass :func:`isinstance` tests:" msgstr "" -#: library/unittest.mock.rst:769 +#: library/unittest.mock.rst:770 msgid "" "The :class:`Mock` classes have support for mocking magic methods. See :ref:" "`magic methods ` for the full details." msgstr "" -#: library/unittest.mock.rst:772 +#: library/unittest.mock.rst:773 msgid "" "The mock classes and the :func:`patch` decorators all take arbitrary keyword " "arguments for configuration. For the :func:`patch` decorators the keywords " @@ -616,14 +616,14 @@ msgid "" "arguments are for configuring attributes of the mock:" msgstr "" -#: library/unittest.mock.rst:783 +#: library/unittest.mock.rst:784 msgid "" "The return value and side effect of child mocks can be set in the same way, " "using dotted notation. As you can't use dotted names directly in a call you " "have to create a dictionary and unpack it using ``**``:" msgstr "" -#: library/unittest.mock.rst:798 +#: library/unittest.mock.rst:799 msgid "" "A callable mock which was created with a *spec* (or a *spec_set*) will " "introspect the specification object's signature when matching calls to the " @@ -631,7 +631,7 @@ msgid "" "whether they were passed positionally or by name::" msgstr "" -#: library/unittest.mock.rst:811 +#: library/unittest.mock.rst:812 msgid "" "This applies to :meth:`~Mock.assert_called_with`, :meth:`~Mock." "assert_called_once_with`, :meth:`~Mock.assert_has_calls` and :meth:`~Mock." @@ -639,76 +639,76 @@ msgid "" "calls on the mock object." msgstr "" -#: library/unittest.mock.rst:816 +#: library/unittest.mock.rst:817 msgid "Added signature introspection on specced and autospecced mock objects." msgstr "" -#: library/unittest.mock.rst:822 +#: library/unittest.mock.rst:823 msgid "" "A mock intended to be used as a property, or other descriptor, on a class. :" "class:`PropertyMock` provides :meth:`__get__` and :meth:`__set__` methods so " "you can specify a return value when it is fetched." msgstr "" -#: library/unittest.mock.rst:826 +#: library/unittest.mock.rst:827 msgid "" "Fetching a :class:`PropertyMock` instance from an object calls the mock, " "with no args. Setting it calls the mock with the value being set. ::" msgstr "" -#: library/unittest.mock.rst:847 +#: library/unittest.mock.rst:848 msgid "" "Because of the way mock attributes are stored you can't directly attach a :" "class:`PropertyMock` to a mock object. Instead you can attach it to the mock " "type object::" msgstr "" -#: library/unittest.mock.rst:861 +#: library/unittest.mock.rst:862 msgid "" "An asynchronous version of :class:`MagicMock`. The :class:`AsyncMock` object " "will behave so the object is recognized as an async function, and the result " "of a call is an awaitable." msgstr "" -#: library/unittest.mock.rst:871 +#: library/unittest.mock.rst:872 msgid "" "The result of ``mock()`` is an async function which will have the outcome of " "``side_effect`` or ``return_value`` after it has been awaited:" msgstr "" -#: library/unittest.mock.rst:874 +#: library/unittest.mock.rst:875 msgid "" "if ``side_effect`` is a function, the async function will return the result " "of that function," msgstr "" -#: library/unittest.mock.rst:876 +#: library/unittest.mock.rst:877 msgid "" "if ``side_effect`` is an exception, the async function will raise the " "exception," msgstr "" -#: library/unittest.mock.rst:878 +#: library/unittest.mock.rst:879 msgid "" "if ``side_effect`` is an iterable, the async function will return the next " "value of the iterable, however, if the sequence of result is exhausted, " "``StopAsyncIteration`` is raised immediately," msgstr "" -#: library/unittest.mock.rst:881 +#: library/unittest.mock.rst:882 msgid "" "if ``side_effect`` is not defined, the async function will return the value " "defined by ``return_value``, hence, by default, the async function returns a " "new :class:`AsyncMock` object." msgstr "" -#: library/unittest.mock.rst:886 +#: library/unittest.mock.rst:887 msgid "" "Setting the *spec* of a :class:`Mock` or :class:`MagicMock` to an async " "function will result in a coroutine object being returned after calling." msgstr "" -#: library/unittest.mock.rst:898 +#: library/unittest.mock.rst:899 msgid "" "Setting the *spec* of a :class:`Mock`, :class:`MagicMock`, or :class:" "`AsyncMock` to a class with asynchronous and synchronous functions will " @@ -718,82 +718,82 @@ msgid "" "functions will be :class:`AsyncMock`." msgstr "" -#: library/unittest.mock.rst:926 +#: library/unittest.mock.rst:927 msgid "" "Assert that the mock was awaited at least once. Note that this is separate " "from the object having been called, the ``await`` keyword must be used:" msgstr "" -#: library/unittest.mock.rst:945 +#: library/unittest.mock.rst:946 msgid "Assert that the mock was awaited exactly once." msgstr "" -#: library/unittest.mock.rst:961 +#: library/unittest.mock.rst:962 msgid "Assert that the last await was with the specified arguments." msgstr "" -#: library/unittest.mock.rst:978 +#: library/unittest.mock.rst:979 msgid "" "Assert that the mock was awaited exactly once and with the specified " "arguments." msgstr "" -#: library/unittest.mock.rst:995 +#: library/unittest.mock.rst:996 msgid "Assert the mock has ever been awaited with the specified arguments." msgstr "" -#: library/unittest.mock.rst:1011 +#: library/unittest.mock.rst:1012 msgid "" "Assert the mock has been awaited with the specified calls. The :attr:" "`await_args_list` list is checked for the awaits." msgstr "" -#: library/unittest.mock.rst:1014 +#: library/unittest.mock.rst:1015 msgid "" "If *any_order* is false then the awaits must be sequential. There can be " "extra calls before or after the specified awaits." msgstr "" -#: library/unittest.mock.rst:1018 +#: library/unittest.mock.rst:1019 msgid "" "If *any_order* is true then the awaits can be in any order, but they must " "all appear in :attr:`await_args_list`." msgstr "" -#: library/unittest.mock.rst:1038 +#: library/unittest.mock.rst:1039 msgid "Assert that the mock was never awaited." msgstr "" -#: library/unittest.mock.rst:1045 +#: library/unittest.mock.rst:1046 msgid "" "See :func:`Mock.reset_mock`. Also sets :attr:`await_count` to 0, :attr:" "`await_args` to None, and clears the :attr:`await_args_list`." msgstr "" -#: library/unittest.mock.rst:1050 +#: library/unittest.mock.rst:1051 msgid "" "An integer keeping track of how many times the mock object has been awaited." msgstr "" -#: library/unittest.mock.rst:1065 +#: library/unittest.mock.rst:1066 msgid "" "This is either ``None`` (if the mock hasn’t been awaited), or the arguments " "that the mock was last awaited with. Functions the same as :attr:`Mock." "call_args`." msgstr "" -#: library/unittest.mock.rst:1083 +#: library/unittest.mock.rst:1084 msgid "" "This is a list of all the awaits made to the mock object in sequence (so the " "length of the list is the number of times it has been awaited). Before any " "awaits have been made it is an empty list." msgstr "" -#: library/unittest.mock.rst:1102 +#: library/unittest.mock.rst:1103 msgid "Calling" msgstr "" -#: library/unittest.mock.rst:1104 +#: library/unittest.mock.rst:1105 msgid "" "Mock objects are callable. The call will return the value set as the :attr:" "`~Mock.return_value` attribute. The default return value is a new Mock " @@ -802,26 +802,26 @@ msgid "" "returned each time." msgstr "" -#: library/unittest.mock.rst:1110 +#: library/unittest.mock.rst:1111 msgid "" "Calls made to the object will be recorded in the attributes like :attr:" "`~Mock.call_args` and :attr:`~Mock.call_args_list`." msgstr "" -#: library/unittest.mock.rst:1113 +#: library/unittest.mock.rst:1114 msgid "" "If :attr:`~Mock.side_effect` is set then it will be called after the call " "has been recorded, so if :attr:`side_effect` raises an exception the call is " "still recorded." msgstr "" -#: library/unittest.mock.rst:1117 +#: library/unittest.mock.rst:1118 msgid "" "The simplest way to make a mock raise an exception when called is to make :" "attr:`~Mock.side_effect` an exception class or instance:" msgstr "" -#: library/unittest.mock.rst:1135 +#: library/unittest.mock.rst:1136 msgid "" "If :attr:`side_effect` is a function then whatever that function returns is " "what calls to the mock return. The :attr:`side_effect` function is called " @@ -829,7 +829,7 @@ msgid "" "value of the call dynamically, based on the input:" msgstr "" -#: library/unittest.mock.rst:1151 +#: library/unittest.mock.rst:1152 msgid "" "If you want the mock to still return the default return value (a new mock), " "or any set return value, then there are two ways of doing this. Either " @@ -837,36 +837,36 @@ msgid "" "data:`DEFAULT`:" msgstr "" -#: library/unittest.mock.rst:1170 +#: library/unittest.mock.rst:1171 msgid "" "To remove a :attr:`side_effect`, and return to the default behaviour, set " "the :attr:`side_effect` to ``None``:" msgstr "" -#: library/unittest.mock.rst:1184 +#: library/unittest.mock.rst:1185 msgid "" "The :attr:`side_effect` can also be any iterable object. Repeated calls to " "the mock will return values from the iterable (until the iterable is " "exhausted and a :exc:`StopIteration` is raised):" msgstr "" -#: library/unittest.mock.rst:1200 +#: library/unittest.mock.rst:1201 msgid "" "If any members of the iterable are exceptions they will be raised instead of " "returned::" msgstr "" -#: library/unittest.mock.rst:1218 +#: library/unittest.mock.rst:1219 msgid "Deleting Attributes" msgstr "" -#: library/unittest.mock.rst:1220 +#: library/unittest.mock.rst:1221 msgid "" "Mock objects create attributes on demand. This allows them to pretend to be " "objects of any type." msgstr "" -#: library/unittest.mock.rst:1223 +#: library/unittest.mock.rst:1224 msgid "" "You may want a mock object to return ``False`` to a :func:`hasattr` call, or " "raise an :exc:`AttributeError` when an attribute is fetched. You can do this " @@ -874,17 +874,17 @@ msgid "" "convenient." msgstr "" -#: library/unittest.mock.rst:1227 +#: library/unittest.mock.rst:1228 msgid "" "You \"block\" attributes by deleting them. Once deleted, accessing an " "attribute will raise an :exc:`AttributeError`." msgstr "" -#: library/unittest.mock.rst:1244 +#: library/unittest.mock.rst:1245 msgid "Mock names and the name attribute" msgstr "" -#: library/unittest.mock.rst:1246 +#: library/unittest.mock.rst:1247 msgid "" "Since \"name\" is an argument to the :class:`Mock` constructor, if you want " "your mock object to have a \"name\" attribute you can't just pass it in at " @@ -892,17 +892,17 @@ msgid "" "configure_mock`::" msgstr "" -#: library/unittest.mock.rst:1256 +#: library/unittest.mock.rst:1257 msgid "" "A simpler option is to simply set the \"name\" attribute after mock " "creation::" msgstr "" -#: library/unittest.mock.rst:1263 +#: library/unittest.mock.rst:1264 msgid "Attaching Mocks as Attributes" msgstr "" -#: library/unittest.mock.rst:1265 +#: library/unittest.mock.rst:1266 msgid "" "When you attach a mock as an attribute of another mock (or as the return " "value) it becomes a \"child\" of that mock. Calls to the child are recorded " @@ -913,20 +913,20 @@ msgid "" "calls between mocks:" msgstr "" -#: library/unittest.mock.rst:1283 +#: library/unittest.mock.rst:1284 msgid "" "The exception to this is if the mock has a name. This allows you to prevent " "the \"parenting\" if for some reason you don't want it to happen." msgstr "" -#: library/unittest.mock.rst:1294 +#: library/unittest.mock.rst:1295 msgid "" "Mocks created for you by :func:`patch` are automatically given names. To " "attach mocks that have names to a parent you use the :meth:`~Mock." "attach_mock` method::" msgstr "" -#: library/unittest.mock.rst:1312 +#: library/unittest.mock.rst:1313 msgid "" "The only exceptions are magic methods and attributes (those that have " "leading and trailing double underscores). Mock doesn't create these but " @@ -936,11 +936,11 @@ msgid "" "support see :ref:`magic methods `." msgstr "" -#: library/unittest.mock.rst:1321 +#: library/unittest.mock.rst:1322 msgid "The patchers" msgstr "" -#: library/unittest.mock.rst:1323 +#: library/unittest.mock.rst:1324 msgid "" "The patch decorators are used for patching objects only within the scope of " "the function they decorate. They automatically handle the unpatching for " @@ -948,17 +948,17 @@ msgid "" "in with statements or as class decorators." msgstr "" -#: library/unittest.mock.rst:1330 +#: library/unittest.mock.rst:1331 msgid "patch" msgstr "" -#: library/unittest.mock.rst:1334 +#: library/unittest.mock.rst:1335 msgid "" "The key is to do the patching in the right namespace. See the section `where " "to patch`_." msgstr "" -#: library/unittest.mock.rst:1338 +#: library/unittest.mock.rst:1339 msgid "" ":func:`patch` acts as a function decorator, class decorator or a context " "manager. Inside the body of the function or with statement, the *target* is " @@ -966,7 +966,7 @@ msgid "" "patch is undone." msgstr "" -#: library/unittest.mock.rst:1343 +#: library/unittest.mock.rst:1344 msgid "" "If *new* is omitted, then the target is replaced with an :class:`AsyncMock` " "if the patched object is an async function or a :class:`MagicMock` " @@ -976,7 +976,7 @@ msgid "" "by the context manager." msgstr "" -#: library/unittest.mock.rst:1351 +#: library/unittest.mock.rst:1352 msgid "" "*target* should be a string in the form ``'package.module.ClassName'``. The " "*target* is imported and the specified object replaced with the *new* " @@ -985,26 +985,26 @@ msgid "" "function is executed, not at decoration time." msgstr "" -#: library/unittest.mock.rst:1357 +#: library/unittest.mock.rst:1358 msgid "" "The *spec* and *spec_set* keyword arguments are passed to the :class:" "`MagicMock` if patch is creating one for you." msgstr "" -#: library/unittest.mock.rst:1360 +#: library/unittest.mock.rst:1361 msgid "" "In addition you can pass ``spec=True`` or ``spec_set=True``, which causes " "patch to pass in the object being mocked as the spec/spec_set object." msgstr "" -#: library/unittest.mock.rst:1363 +#: library/unittest.mock.rst:1364 msgid "" "*new_callable* allows you to specify a different class, or callable object, " "that will be called to create the *new* object. By default :class:" "`AsyncMock` is used for async functions and :class:`MagicMock` for the rest." msgstr "" -#: library/unittest.mock.rst:1367 +#: library/unittest.mock.rst:1368 msgid "" "A more powerful form of *spec* is *autospec*. If you set ``autospec=True`` " "then the mock will be created with a spec from the object being replaced. " @@ -1016,13 +1016,13 @@ msgid "" "func:`create_autospec` function and :ref:`auto-speccing`." msgstr "" -#: library/unittest.mock.rst:1377 +#: library/unittest.mock.rst:1378 msgid "" "Instead of ``autospec=True`` you can pass ``autospec=some_object`` to use an " "arbitrary object as the spec instead of the one being replaced." msgstr "" -#: library/unittest.mock.rst:1380 +#: library/unittest.mock.rst:1381 msgid "" "By default :func:`patch` will fail to replace attributes that don't exist. " "If you pass in ``create=True``, and the attribute doesn't exist, patch will " @@ -1033,13 +1033,13 @@ msgid "" "write passing tests against APIs that don't actually exist!" msgstr "" -#: library/unittest.mock.rst:1390 +#: library/unittest.mock.rst:1391 msgid "" "If you are patching builtins in a module then you don't need to pass " "``create=True``, it will be added by default." msgstr "" -#: library/unittest.mock.rst:1394 +#: library/unittest.mock.rst:1395 msgid "" "Patch can be used as a :class:`TestCase` class decorator. It works by " "decorating each test method in the class. This reduces the boilerplate code " @@ -1050,7 +1050,7 @@ msgid "" "TEST_PREFIX``." msgstr "" -#: library/unittest.mock.rst:1401 +#: library/unittest.mock.rst:1402 msgid "" "Patch can be used as a context manager, with the with statement. Here the " "patching applies to the indented block after the with statement. If you use " @@ -1058,65 +1058,65 @@ msgid "" "very useful if :func:`patch` is creating a mock object for you." msgstr "" -#: library/unittest.mock.rst:1406 +#: library/unittest.mock.rst:1407 msgid "" ":func:`patch` takes arbitrary keyword arguments. These will be passed to :" "class:`AsyncMock` if the patched object is asynchronous, to :class:" "`MagicMock` otherwise or to *new_callable* if specified." msgstr "" -#: library/unittest.mock.rst:1410 +#: library/unittest.mock.rst:1411 msgid "" "``patch.dict(...)``, ``patch.multiple(...)`` and ``patch.object(...)`` are " "available for alternate use-cases." msgstr "" -#: library/unittest.mock.rst:1413 +#: library/unittest.mock.rst:1414 msgid "" ":func:`patch` as function decorator, creating the mock for you and passing " "it into the decorated function::" msgstr "" -#: library/unittest.mock.rst:1423 +#: library/unittest.mock.rst:1424 msgid "" "Patching a class replaces the class with a :class:`MagicMock` *instance*. If " "the class is instantiated in the code under test then it will be the :attr:" "`~Mock.return_value` of the mock that will be used." msgstr "" -#: library/unittest.mock.rst:1427 +#: library/unittest.mock.rst:1428 msgid "" "If the class is instantiated multiple times you could use :attr:`~Mock." "side_effect` to return a new mock each time. Alternatively you can set the " "*return_value* to be anything you want." msgstr "" -#: library/unittest.mock.rst:1431 +#: library/unittest.mock.rst:1432 msgid "" "To configure return values on methods of *instances* on the patched class " "you must do this on the :attr:`return_value`. For example::" msgstr "" -#: library/unittest.mock.rst:1445 +#: library/unittest.mock.rst:1446 msgid "" "If you use *spec* or *spec_set* and :func:`patch` is replacing a *class*, " "then the return value of the created mock will have the same spec. ::" msgstr "" -#: library/unittest.mock.rst:1455 +#: library/unittest.mock.rst:1456 msgid "" "The *new_callable* argument is useful where you want to use an alternative " "class to the default :class:`MagicMock` for the created mock. For example, " "if you wanted a :class:`NonCallableMock` to be used::" msgstr "" -#: library/unittest.mock.rst:1468 +#: library/unittest.mock.rst:1469 msgid "" "Another use case might be to replace an object with an :class:`io.StringIO` " "instance::" msgstr "" -#: library/unittest.mock.rst:1481 +#: library/unittest.mock.rst:1482 msgid "" "When :func:`patch` is creating a mock for you, it is common that the first " "thing you need to do is to configure the mock. Some of that configuration " @@ -1124,7 +1124,7 @@ msgid "" "call will be used to set attributes on the created mock::" msgstr "" -#: library/unittest.mock.rst:1493 +#: library/unittest.mock.rst:1494 msgid "" "As well as attributes on the created mock attributes, like the :attr:`~Mock." "return_value` and :attr:`~Mock.side_effect`, of child mocks can also be " @@ -1133,36 +1133,36 @@ msgid "" "func:`patch` call using ``**``::" msgstr "" -#: library/unittest.mock.rst:1509 +#: library/unittest.mock.rst:1510 msgid "" "By default, attempting to patch a function in a module (or a method or an " "attribute in a class) that does not exist will fail with :exc:" "`AttributeError`::" msgstr "" -#: library/unittest.mock.rst:1521 +#: library/unittest.mock.rst:1522 msgid "" "but adding ``create=True`` in the call to :func:`patch` will make the " "previous example work as expected::" msgstr "" -#: library/unittest.mock.rst:1532 +#: library/unittest.mock.rst:1533 msgid "" ":func:`patch` now returns an :class:`AsyncMock` if the target is an async " "function." msgstr "" -#: library/unittest.mock.rst:1536 +#: library/unittest.mock.rst:1537 msgid "patch.object" msgstr "" -#: library/unittest.mock.rst:1540 +#: library/unittest.mock.rst:1541 msgid "" "patch the named member (*attribute*) on an object (*target*) with a mock " "object." msgstr "" -#: library/unittest.mock.rst:1543 +#: library/unittest.mock.rst:1544 msgid "" ":func:`patch.object` can be used as a decorator, class decorator or a " "context manager. Arguments *new*, *spec*, *create*, *spec_set*, *autospec* " @@ -1171,112 +1171,112 @@ msgid "" "configuring the mock object it creates." msgstr "" -#: library/unittest.mock.rst:1549 +#: library/unittest.mock.rst:1550 msgid "" "When used as a class decorator :func:`patch.object` honours ``patch." "TEST_PREFIX`` for choosing which methods to wrap." msgstr "" -#: library/unittest.mock.rst:1552 +#: library/unittest.mock.rst:1553 msgid "" "You can either call :func:`patch.object` with three arguments or two " "arguments. The three argument form takes the object to be patched, the " "attribute name and the object to replace the attribute with." msgstr "" -#: library/unittest.mock.rst:1556 +#: library/unittest.mock.rst:1557 msgid "" "When calling with the two argument form you omit the replacement object, and " "a mock is created for you and passed in as an extra argument to the " "decorated function:" msgstr "" -#: library/unittest.mock.rst:1567 +#: library/unittest.mock.rst:1568 msgid "" "*spec*, *create* and the other arguments to :func:`patch.object` have the " "same meaning as they do for :func:`patch`." msgstr "" -#: library/unittest.mock.rst:1572 +#: library/unittest.mock.rst:1573 msgid "patch.dict" msgstr "" -#: library/unittest.mock.rst:1576 +#: library/unittest.mock.rst:1577 msgid "" "Patch a dictionary, or dictionary like object, and restore the dictionary to " "its original state after the test." msgstr "" -#: library/unittest.mock.rst:1579 +#: library/unittest.mock.rst:1580 msgid "" "*in_dict* can be a dictionary or a mapping like container. If it is a " "mapping then it must at least support getting, setting and deleting items " "plus iterating over keys." msgstr "" -#: library/unittest.mock.rst:1583 +#: library/unittest.mock.rst:1584 msgid "" "*in_dict* can also be a string specifying the name of the dictionary, which " "will then be fetched by importing it." msgstr "" -#: library/unittest.mock.rst:1586 +#: library/unittest.mock.rst:1587 msgid "" "*values* can be a dictionary of values to set in the dictionary. *values* " "can also be an iterable of ``(key, value)`` pairs." msgstr "" -#: library/unittest.mock.rst:1589 +#: library/unittest.mock.rst:1590 msgid "" "If *clear* is true then the dictionary will be cleared before the new values " "are set." msgstr "" -#: library/unittest.mock.rst:1592 +#: library/unittest.mock.rst:1593 msgid "" ":func:`patch.dict` can also be called with arbitrary keyword arguments to " "set values in the dictionary." msgstr "" -#: library/unittest.mock.rst:1597 +#: library/unittest.mock.rst:1598 msgid "" ":func:`patch.dict` now returns the patched dictionary when used as a context " "manager." msgstr "" -#: library/unittest.mock.rst:1600 +#: library/unittest.mock.rst:1601 msgid "" ":func:`patch.dict` can be used as a context manager, decorator or class " "decorator:" msgstr "" -#: library/unittest.mock.rst:1610 +#: library/unittest.mock.rst:1612 msgid "" "When used as a class decorator :func:`patch.dict` honours ``patch." "TEST_PREFIX`` (default to ``'test'``) for choosing which methods to wrap:" msgstr "" -#: library/unittest.mock.rst:1621 +#: library/unittest.mock.rst:1623 msgid "" "If you want to use a different prefix for your test, you can inform the " "patchers of the different prefix by setting ``patch.TEST_PREFIX``. For more " "details about how to change the value of see :ref:`test-prefix`." msgstr "" -#: library/unittest.mock.rst:1625 +#: library/unittest.mock.rst:1627 msgid "" ":func:`patch.dict` can be used to add members to a dictionary, or simply let " "a test change a dictionary, and ensure the dictionary is restored when the " "test ends." msgstr "" -#: library/unittest.mock.rst:1646 +#: library/unittest.mock.rst:1648 msgid "" "Keywords can be used in the :func:`patch.dict` call to set values in the " "dictionary:" msgstr "" -#: library/unittest.mock.rst:1656 +#: library/unittest.mock.rst:1658 msgid "" ":func:`patch.dict` can be used with dictionary like objects that aren't " "actually dictionaries. At the very minimum they must support item getting, " @@ -1285,18 +1285,18 @@ msgid "" "`__delitem__` and either :meth:`__iter__` or :meth:`__contains__`." msgstr "" -#: library/unittest.mock.rst:1685 +#: library/unittest.mock.rst:1687 msgid "patch.multiple" msgstr "" -#: library/unittest.mock.rst:1689 +#: library/unittest.mock.rst:1691 msgid "" "Perform multiple patches in a single call. It takes the object to be patched " "(either as an object or a string to fetch the object by importing) and " "keyword arguments for the patches::" msgstr "" -#: library/unittest.mock.rst:1696 +#: library/unittest.mock.rst:1698 msgid "" "Use :data:`DEFAULT` as the value if you want :func:`patch.multiple` to " "create mocks for you. In this case the created mocks are passed into a " @@ -1304,7 +1304,7 @@ msgid "" "`patch.multiple` is used as a context manager." msgstr "" -#: library/unittest.mock.rst:1701 +#: library/unittest.mock.rst:1703 msgid "" ":func:`patch.multiple` can be used as a decorator, class decorator or a " "context manager. The arguments *spec*, *spec_set*, *create*, *autospec* and " @@ -1312,13 +1312,13 @@ msgid "" "will be applied to *all* patches done by :func:`patch.multiple`." msgstr "" -#: library/unittest.mock.rst:1706 +#: library/unittest.mock.rst:1708 msgid "" "When used as a class decorator :func:`patch.multiple` honours ``patch." "TEST_PREFIX`` for choosing which methods to wrap." msgstr "" -#: library/unittest.mock.rst:1709 +#: library/unittest.mock.rst:1711 msgid "" "If you want :func:`patch.multiple` to create mocks for you, then you can " "use :data:`DEFAULT` as the value. If you use :func:`patch.multiple` as a " @@ -1326,32 +1326,32 @@ msgid "" "keyword. ::" msgstr "" -#: library/unittest.mock.rst:1723 +#: library/unittest.mock.rst:1725 msgid "" ":func:`patch.multiple` can be nested with other ``patch`` decorators, but " "put arguments passed by keyword *after* any of the standard arguments " "created by :func:`patch`::" msgstr "" -#: library/unittest.mock.rst:1735 +#: library/unittest.mock.rst:1737 msgid "" "If :func:`patch.multiple` is used as a context manager, the value returned " "by the context manager is a dictionary where created mocks are keyed by " "name::" msgstr "" -#: library/unittest.mock.rst:1749 +#: library/unittest.mock.rst:1751 msgid "patch methods: start and stop" msgstr "" -#: library/unittest.mock.rst:1751 +#: library/unittest.mock.rst:1753 msgid "" "All the patchers have :meth:`start` and :meth:`stop` methods. These make it " "simpler to do patching in ``setUp`` methods or where you want to do multiple " "patches without nesting decorators or with statements." msgstr "" -#: library/unittest.mock.rst:1755 +#: library/unittest.mock.rst:1757 msgid "" "To use them call :func:`patch`, :func:`patch.object` or :func:`patch.dict` " "as normal and keep a reference to the returned ``patcher`` object. You can " @@ -1359,19 +1359,19 @@ msgid "" "it." msgstr "" -#: library/unittest.mock.rst:1759 +#: library/unittest.mock.rst:1761 msgid "" "If you are using :func:`patch` to create a mock for you then it will be " "returned by the call to ``patcher.start``. ::" msgstr "" -#: library/unittest.mock.rst:1773 +#: library/unittest.mock.rst:1775 msgid "" "A typical use case for this might be for doing multiple patches in the " "``setUp`` method of a :class:`TestCase`::" msgstr "" -#: library/unittest.mock.rst:1795 +#: library/unittest.mock.rst:1797 msgid "" "If you use this technique you must ensure that the patching is \"undone\" by " "calling ``stop``. This can be fiddlier than you might think, because if an " @@ -1379,37 +1379,37 @@ msgid "" "`unittest.TestCase.addCleanup` makes this easier::" msgstr "" -#: library/unittest.mock.rst:1810 +#: library/unittest.mock.rst:1812 msgid "" "As an added bonus you no longer need to keep a reference to the ``patcher`` " "object." msgstr "" -#: library/unittest.mock.rst:1813 +#: library/unittest.mock.rst:1815 msgid "" "It is also possible to stop all patches which have been started by using :" "func:`patch.stopall`." msgstr "" -#: library/unittest.mock.rst:1818 +#: library/unittest.mock.rst:1820 msgid "Stop all active patches. Only stops patches started with ``start``." msgstr "" -#: library/unittest.mock.rst:1824 +#: library/unittest.mock.rst:1826 msgid "patch builtins" msgstr "" -#: library/unittest.mock.rst:1825 +#: library/unittest.mock.rst:1827 msgid "" "You can patch any builtins within a module. The following example patches " "builtin :func:`ord`::" msgstr "" -#: library/unittest.mock.rst:1840 +#: library/unittest.mock.rst:1842 msgid "TEST_PREFIX" msgstr "" -#: library/unittest.mock.rst:1842 +#: library/unittest.mock.rst:1844 msgid "" "All of the patchers can be used as class decorators. When used in this way " "they wrap every test method on the class. The patchers recognise methods " @@ -1417,39 +1417,39 @@ msgid "" "the :class:`unittest.TestLoader` finds test methods by default." msgstr "" -#: library/unittest.mock.rst:1847 +#: library/unittest.mock.rst:1849 msgid "" "It is possible that you want to use a different prefix for your tests. You " "can inform the patchers of the different prefix by setting ``patch." "TEST_PREFIX``::" msgstr "" -#: library/unittest.mock.rst:1870 +#: library/unittest.mock.rst:1872 msgid "Nesting Patch Decorators" msgstr "" -#: library/unittest.mock.rst:1872 +#: library/unittest.mock.rst:1874 msgid "" "If you want to perform multiple patches then you can simply stack up the " "decorators." msgstr "" -#: library/unittest.mock.rst:1875 +#: library/unittest.mock.rst:1877 msgid "You can stack up multiple patch decorators using this pattern:" msgstr "" -#: library/unittest.mock.rst:1891 +#: library/unittest.mock.rst:1893 msgid "" "Note that the decorators are applied from the bottom upwards. This is the " "standard way that Python applies decorators. The order of the created mocks " "passed into your test function matches this order." msgstr "" -#: library/unittest.mock.rst:1899 +#: library/unittest.mock.rst:1901 msgid "Where to patch" msgstr "" -#: library/unittest.mock.rst:1901 +#: library/unittest.mock.rst:1903 msgid "" ":func:`patch` works by (temporarily) changing the object that a *name* " "points to with another one. There can be many names pointing to any " @@ -1457,19 +1457,19 @@ msgid "" "the name used by the system under test." msgstr "" -#: library/unittest.mock.rst:1906 +#: library/unittest.mock.rst:1908 msgid "" "The basic principle is that you patch where an object is *looked up*, which " "is not necessarily the same place as where it is defined. A couple of " "examples will help to clarify this." msgstr "" -#: library/unittest.mock.rst:1910 +#: library/unittest.mock.rst:1912 msgid "" "Imagine we have a project that we want to test with the following structure::" msgstr "" -#: library/unittest.mock.rst:1919 +#: library/unittest.mock.rst:1921 msgid "" "Now we want to test ``some_function`` but we want to mock out ``SomeClass`` " "using :func:`patch`. The problem is that when we import module b, which we " @@ -1479,7 +1479,7 @@ msgid "" "like our patching had no effect." msgstr "" -#: library/unittest.mock.rst:1926 +#: library/unittest.mock.rst:1928 msgid "" "The key is to patch out ``SomeClass`` where it is used (or where it is " "looked up). In this case ``some_function`` will actually look up " @@ -1487,7 +1487,7 @@ msgid "" "look like::" msgstr "" -#: library/unittest.mock.rst:1932 +#: library/unittest.mock.rst:1934 msgid "" "However, consider the alternative scenario where instead of ``from a import " "SomeClass`` module b does ``import a`` and ``some_function`` uses ``a." @@ -1496,11 +1496,11 @@ msgid "" "``a.SomeClass`` instead::" msgstr "" -#: library/unittest.mock.rst:1941 +#: library/unittest.mock.rst:1943 msgid "Patching Descriptors and Proxy Objects" msgstr "" -#: library/unittest.mock.rst:1943 +#: library/unittest.mock.rst:1945 msgid "" "Both patch_ and patch.object_ correctly patch and restore descriptors: class " "methods, static methods and properties. You should patch these on the " @@ -1510,22 +1510,22 @@ msgid "" "arch_d7_2010_12_04.shtml#e1198>`_." msgstr "" -#: library/unittest.mock.rst:1951 +#: library/unittest.mock.rst:1953 msgid "MagicMock and magic method support" msgstr "" -#: library/unittest.mock.rst:1956 +#: library/unittest.mock.rst:1958 msgid "Mocking Magic Methods" msgstr "" -#: library/unittest.mock.rst:1958 +#: library/unittest.mock.rst:1960 msgid "" ":class:`Mock` supports mocking the Python protocol methods, also known as " "\"magic methods\". This allows mock objects to replace containers or other " "objects that implement Python protocols." msgstr "" -#: library/unittest.mock.rst:1962 +#: library/unittest.mock.rst:1964 msgid "" "Because magic methods are looked up differently from normal methods [#]_, " "this support has been specially implemented. This means that only specific " @@ -1533,72 +1533,72 @@ msgid "" "them. If there are any missing that you need please let us know." msgstr "" -#: library/unittest.mock.rst:1967 +#: library/unittest.mock.rst:1969 msgid "" "You mock magic methods by setting the method you are interested in to a " "function or a mock instance. If you are using a function then it *must* take " "``self`` as the first argument [#]_." msgstr "" -#: library/unittest.mock.rst:1990 +#: library/unittest.mock.rst:1992 msgid "" "One use case for this is for mocking objects used as context managers in a :" "keyword:`with` statement:" msgstr "" -#: library/unittest.mock.rst:2002 +#: library/unittest.mock.rst:2004 msgid "" "Calls to magic methods do not appear in :attr:`~Mock.method_calls`, but they " "are recorded in :attr:`~Mock.mock_calls`." msgstr "" -#: library/unittest.mock.rst:2007 +#: library/unittest.mock.rst:2009 msgid "" "If you use the *spec* keyword argument to create a mock then attempting to " "set a magic method that isn't in the spec will raise an :exc:" "`AttributeError`." msgstr "" -#: library/unittest.mock.rst:2010 +#: library/unittest.mock.rst:2012 msgid "The full list of supported magic methods is:" msgstr "" -#: library/unittest.mock.rst:2012 +#: library/unittest.mock.rst:2014 msgid "``__hash__``, ``__sizeof__``, ``__repr__`` and ``__str__``" msgstr "" -#: library/unittest.mock.rst:2013 +#: library/unittest.mock.rst:2015 msgid "``__dir__``, ``__format__`` and ``__subclasses__``" msgstr "" -#: library/unittest.mock.rst:2014 +#: library/unittest.mock.rst:2016 msgid "``__round__``, ``__floor__``, ``__trunc__`` and ``__ceil__``" msgstr "" -#: library/unittest.mock.rst:2015 +#: library/unittest.mock.rst:2017 msgid "" "Comparisons: ``__lt__``, ``__gt__``, ``__le__``, ``__ge__``, ``__eq__`` and " "``__ne__``" msgstr "" -#: library/unittest.mock.rst:2017 +#: library/unittest.mock.rst:2019 msgid "" "Container methods: ``__getitem__``, ``__setitem__``, ``__delitem__``, " "``__contains__``, ``__len__``, ``__iter__``, ``__reversed__`` and " "``__missing__``" msgstr "" -#: library/unittest.mock.rst:2020 +#: library/unittest.mock.rst:2022 msgid "" "Context manager: ``__enter__``, ``__exit__``, ``__aenter__`` and " "``__aexit__``" msgstr "" -#: library/unittest.mock.rst:2021 +#: library/unittest.mock.rst:2023 msgid "Unary numeric methods: ``__neg__``, ``__pos__`` and ``__invert__``" msgstr "" -#: library/unittest.mock.rst:2022 +#: library/unittest.mock.rst:2024 msgid "" "The numeric methods (including right hand and in-place variants): " "``__add__``, ``__sub__``, ``__mul__``, ``__matmul__``, ``__truediv__``, " @@ -1606,100 +1606,100 @@ msgid "" "``__rshift__``, ``__and__``, ``__xor__``, ``__or__``, and ``__pow__``" msgstr "" -#: library/unittest.mock.rst:2026 +#: library/unittest.mock.rst:2028 msgid "" "Numeric conversion methods: ``__complex__``, ``__int__``, ``__float__`` and " "``__index__``" msgstr "" -#: library/unittest.mock.rst:2028 +#: library/unittest.mock.rst:2030 msgid "Descriptor methods: ``__get__``, ``__set__`` and ``__delete__``" msgstr "" -#: library/unittest.mock.rst:2029 +#: library/unittest.mock.rst:2031 msgid "" "Pickling: ``__reduce__``, ``__reduce_ex__``, ``__getinitargs__``, " "``__getnewargs__``, ``__getstate__`` and ``__setstate__``" msgstr "" -#: library/unittest.mock.rst:2031 +#: library/unittest.mock.rst:2033 msgid "File system path representation: ``__fspath__``" msgstr "" -#: library/unittest.mock.rst:2032 +#: library/unittest.mock.rst:2034 msgid "Asynchronous iteration methods: ``__aiter__`` and ``__anext__``" msgstr "" -#: library/unittest.mock.rst:2034 +#: library/unittest.mock.rst:2036 msgid "Added support for :func:`os.PathLike.__fspath__`." msgstr "" -#: library/unittest.mock.rst:2037 +#: library/unittest.mock.rst:2039 msgid "" "Added support for ``__aenter__``, ``__aexit__``, ``__aiter__`` and " "``__anext__``." msgstr "" -#: library/unittest.mock.rst:2041 +#: library/unittest.mock.rst:2043 msgid "" "The following methods exist but are *not* supported as they are either in " "use by mock, can't be set dynamically, or can cause problems:" msgstr "" -#: library/unittest.mock.rst:2044 +#: library/unittest.mock.rst:2046 msgid "``__getattr__``, ``__setattr__``, ``__init__`` and ``__new__``" msgstr "" -#: library/unittest.mock.rst:2045 +#: library/unittest.mock.rst:2047 msgid "" "``__prepare__``, ``__instancecheck__``, ``__subclasscheck__``, ``__del__``" msgstr "" -#: library/unittest.mock.rst:2050 +#: library/unittest.mock.rst:2052 msgid "Magic Mock" msgstr "" -#: library/unittest.mock.rst:2052 +#: library/unittest.mock.rst:2054 msgid "" "There are two ``MagicMock`` variants: :class:`MagicMock` and :class:" "`NonCallableMagicMock`." msgstr "" -#: library/unittest.mock.rst:2057 +#: library/unittest.mock.rst:2059 msgid "" "``MagicMock`` is a subclass of :class:`Mock` with default implementations of " "most of the magic methods. You can use ``MagicMock`` without having to " "configure the magic methods yourself." msgstr "" -#: library/unittest.mock.rst:2061 +#: library/unittest.mock.rst:2063 msgid "The constructor parameters have the same meaning as for :class:`Mock`." msgstr "" -#: library/unittest.mock.rst:2063 +#: library/unittest.mock.rst:2065 msgid "" "If you use the *spec* or *spec_set* arguments then *only* magic methods that " "exist in the spec will be created." msgstr "" -#: library/unittest.mock.rst:2069 +#: library/unittest.mock.rst:2071 msgid "A non-callable version of :class:`MagicMock`." msgstr "" -#: library/unittest.mock.rst:2071 +#: library/unittest.mock.rst:2073 msgid "" "The constructor parameters have the same meaning as for :class:`MagicMock`, " "with the exception of *return_value* and *side_effect* which have no meaning " "on a non-callable mock." msgstr "" -#: library/unittest.mock.rst:2075 +#: library/unittest.mock.rst:2077 msgid "" "The magic methods are setup with :class:`MagicMock` objects, so you can " "configure them and use them in the usual way:" msgstr "" -#: library/unittest.mock.rst:2085 +#: library/unittest.mock.rst:2087 msgid "" "By default many of the protocol methods are required to return objects of a " "specific type. These methods are preconfigured with a default return value, " @@ -1708,83 +1708,83 @@ msgid "" "manually if you want to change the default." msgstr "" -#: library/unittest.mock.rst:2091 +#: library/unittest.mock.rst:2093 msgid "Methods and their defaults:" msgstr "" -#: library/unittest.mock.rst:2093 +#: library/unittest.mock.rst:2095 msgid "``__lt__``: ``NotImplemented``" msgstr "" -#: library/unittest.mock.rst:2094 +#: library/unittest.mock.rst:2096 msgid "``__gt__``: ``NotImplemented``" msgstr "" -#: library/unittest.mock.rst:2095 +#: library/unittest.mock.rst:2097 msgid "``__le__``: ``NotImplemented``" msgstr "" -#: library/unittest.mock.rst:2096 +#: library/unittest.mock.rst:2098 msgid "``__ge__``: ``NotImplemented``" msgstr "" -#: library/unittest.mock.rst:2097 +#: library/unittest.mock.rst:2099 msgid "``__int__``: ``1``" msgstr "" -#: library/unittest.mock.rst:2098 +#: library/unittest.mock.rst:2100 msgid "``__contains__``: ``False``" msgstr "" -#: library/unittest.mock.rst:2099 +#: library/unittest.mock.rst:2101 msgid "``__len__``: ``0``" msgstr "" -#: library/unittest.mock.rst:2100 +#: library/unittest.mock.rst:2102 msgid "``__iter__``: ``iter([])``" msgstr "" -#: library/unittest.mock.rst:2101 +#: library/unittest.mock.rst:2103 msgid "``__exit__``: ``False``" msgstr "" -#: library/unittest.mock.rst:2102 +#: library/unittest.mock.rst:2104 msgid "``__aexit__``: ``False``" msgstr "" -#: library/unittest.mock.rst:2103 +#: library/unittest.mock.rst:2105 msgid "``__complex__``: ``1j``" msgstr "" -#: library/unittest.mock.rst:2104 +#: library/unittest.mock.rst:2106 msgid "``__float__``: ``1.0``" msgstr "" -#: library/unittest.mock.rst:2105 +#: library/unittest.mock.rst:2107 msgid "``__bool__``: ``True``" msgstr "" -#: library/unittest.mock.rst:2106 +#: library/unittest.mock.rst:2108 msgid "``__index__``: ``1``" msgstr "" -#: library/unittest.mock.rst:2107 +#: library/unittest.mock.rst:2109 msgid "``__hash__``: default hash for the mock" msgstr "" -#: library/unittest.mock.rst:2108 +#: library/unittest.mock.rst:2110 msgid "``__str__``: default str for the mock" msgstr "" -#: library/unittest.mock.rst:2109 +#: library/unittest.mock.rst:2111 msgid "``__sizeof__``: default sizeof for the mock" msgstr "" -#: library/unittest.mock.rst:2111 +#: library/unittest.mock.rst:2113 msgid "For example:" msgstr "" -#: library/unittest.mock.rst:2123 +#: library/unittest.mock.rst:2125 msgid "" "The two equality methods, :meth:`__eq__` and :meth:`__ne__`, are special. " "They do the default equality comparison on identity, using the :attr:`~Mock." @@ -1792,102 +1792,102 @@ msgid "" "something else::" msgstr "" -#: library/unittest.mock.rst:2137 +#: library/unittest.mock.rst:2139 msgid "" "The return value of :meth:`MagicMock.__iter__` can be any iterable object " "and isn't required to be an iterator:" msgstr "" -#: library/unittest.mock.rst:2147 +#: library/unittest.mock.rst:2149 msgid "" "If the return value *is* an iterator, then iterating over it once will " "consume it and subsequent iterations will result in an empty list:" msgstr "" -#: library/unittest.mock.rst:2156 +#: library/unittest.mock.rst:2158 msgid "" "``MagicMock`` has all of the supported magic methods configured except for " "some of the obscure and obsolete ones. You can still set these up if you " "want." msgstr "" -#: library/unittest.mock.rst:2159 +#: library/unittest.mock.rst:2161 msgid "" "Magic methods that are supported but not setup by default in ``MagicMock`` " "are:" msgstr "" -#: library/unittest.mock.rst:2161 +#: library/unittest.mock.rst:2163 msgid "``__subclasses__``" msgstr "" -#: library/unittest.mock.rst:2162 +#: library/unittest.mock.rst:2164 msgid "``__dir__``" msgstr "" -#: library/unittest.mock.rst:2163 +#: library/unittest.mock.rst:2165 msgid "``__format__``" msgstr "" -#: library/unittest.mock.rst:2164 +#: library/unittest.mock.rst:2166 msgid "``__get__``, ``__set__`` and ``__delete__``" msgstr "" -#: library/unittest.mock.rst:2165 +#: library/unittest.mock.rst:2167 msgid "``__reversed__`` and ``__missing__``" msgstr "" -#: library/unittest.mock.rst:2166 +#: library/unittest.mock.rst:2168 msgid "" "``__reduce__``, ``__reduce_ex__``, ``__getinitargs__``, ``__getnewargs__``, " "``__getstate__`` and ``__setstate__``" msgstr "" -#: library/unittest.mock.rst:2168 +#: library/unittest.mock.rst:2170 msgid "``__getformat__``" msgstr "" -#: library/unittest.mock.rst:2172 +#: library/unittest.mock.rst:2174 msgid "" "Magic methods *should* be looked up on the class rather than the instance. " "Different versions of Python are inconsistent about applying this rule. The " "supported protocol methods should work with all supported versions of Python." msgstr "" -#: library/unittest.mock.rst:2176 +#: library/unittest.mock.rst:2178 msgid "" "The function is basically hooked up to the class, but each ``Mock`` instance " "is kept isolated from the others." msgstr "" -#: library/unittest.mock.rst:2181 +#: library/unittest.mock.rst:2183 msgid "Helpers" msgstr "" -#: library/unittest.mock.rst:2184 +#: library/unittest.mock.rst:2186 msgid "sentinel" msgstr "" -#: library/unittest.mock.rst:2188 +#: library/unittest.mock.rst:2190 msgid "" "The ``sentinel`` object provides a convenient way of providing unique " "objects for your tests." msgstr "" -#: library/unittest.mock.rst:2191 +#: library/unittest.mock.rst:2193 msgid "" "Attributes are created on demand when you access them by name. Accessing the " "same attribute will always return the same object. The objects returned have " "a sensible repr so that test failure messages are readable." msgstr "" -#: library/unittest.mock.rst:2195 +#: library/unittest.mock.rst:2197 msgid "" "The ``sentinel`` attributes now preserve their identity when they are :mod:" "`copied ` or :mod:`pickled `." msgstr "" -#: library/unittest.mock.rst:2199 +#: library/unittest.mock.rst:2201 msgid "" "Sometimes when testing you need to test that a specific object is passed as " "an argument to another method, or returned. It can be common to create named " @@ -1895,28 +1895,28 @@ msgid "" "creating and testing the identity of objects like this." msgstr "" -#: library/unittest.mock.rst:2204 +#: library/unittest.mock.rst:2206 msgid "" "In this example we monkey patch ``method`` to return ``sentinel." "some_object``:" msgstr "" -#: library/unittest.mock.rst:2216 +#: library/unittest.mock.rst:2218 msgid "DEFAULT" msgstr "" -#: library/unittest.mock.rst:2221 +#: library/unittest.mock.rst:2223 msgid "" "The :data:`DEFAULT` object is a pre-created sentinel (actually ``sentinel." "DEFAULT``). It can be used by :attr:`~Mock.side_effect` functions to " "indicate that the normal return value should be used." msgstr "" -#: library/unittest.mock.rst:2227 +#: library/unittest.mock.rst:2229 msgid "call" msgstr "" -#: library/unittest.mock.rst:2231 +#: library/unittest.mock.rst:2233 msgid "" ":func:`call` is a helper object for making simpler assertions, for comparing " "with :attr:`~Mock.call_args`, :attr:`~Mock.call_args_list`, :attr:`~Mock." @@ -1924,13 +1924,13 @@ msgid "" "with :meth:`~Mock.assert_has_calls`." msgstr "" -#: library/unittest.mock.rst:2244 +#: library/unittest.mock.rst:2246 msgid "" "For a call object that represents multiple calls, :meth:`call_list` returns " "a list of all the intermediate calls as well as the final call." msgstr "" -#: library/unittest.mock.rst:2248 +#: library/unittest.mock.rst:2250 msgid "" "``call_list`` is particularly useful for making assertions on \"chained " "calls\". A chained call is multiple calls on a single line of code. This " @@ -1938,13 +1938,13 @@ msgid "" "constructing the sequence of calls can be tedious." msgstr "" -#: library/unittest.mock.rst:2253 +#: library/unittest.mock.rst:2255 msgid "" ":meth:`~call.call_list` can construct the sequence of calls from the same " "chained call:" msgstr "" -#: library/unittest.mock.rst:2270 +#: library/unittest.mock.rst:2272 msgid "" "A ``call`` object is either a tuple of (positional args, keyword args) or " "(name, positional args, keyword args) depending on how it was constructed. " @@ -1954,7 +1954,7 @@ msgid "" "to get at the individual arguments they contain." msgstr "" -#: library/unittest.mock.rst:2277 +#: library/unittest.mock.rst:2279 msgid "" "The ``call`` objects in :attr:`Mock.call_args` and :attr:`Mock." "call_args_list` are two-tuples of (positional args, keyword args) whereas " @@ -1963,7 +1963,7 @@ msgid "" "args)." msgstr "" -#: library/unittest.mock.rst:2282 +#: library/unittest.mock.rst:2284 msgid "" "You can use their \"tupleness\" to pull out the individual arguments for " "more complex introspection and assertions. The positional arguments are a " @@ -1971,29 +1971,29 @@ msgid "" "arguments are a dictionary:" msgstr "" -#: library/unittest.mock.rst:2315 +#: library/unittest.mock.rst:2317 msgid "create_autospec" msgstr "" -#: library/unittest.mock.rst:2319 +#: library/unittest.mock.rst:2321 msgid "" "Create a mock object using another object as a spec. Attributes on the mock " "will use the corresponding attribute on the *spec* object as their spec." msgstr "" -#: library/unittest.mock.rst:2323 +#: library/unittest.mock.rst:2325 msgid "" "Functions or methods being mocked will have their arguments checked to " "ensure that they are called with the correct signature." msgstr "" -#: library/unittest.mock.rst:2326 +#: library/unittest.mock.rst:2328 msgid "" "If *spec_set* is ``True`` then attempting to set attributes that don't exist " "on the spec object will raise an :exc:`AttributeError`." msgstr "" -#: library/unittest.mock.rst:2329 +#: library/unittest.mock.rst:2331 msgid "" "If a class is used as a spec then the return value of the mock (the instance " "of the class) will have the same spec. You can use a class as the spec for " @@ -2001,29 +2001,29 @@ msgid "" "be callable if instances of the mock are callable." msgstr "" -#: library/unittest.mock.rst:2334 +#: library/unittest.mock.rst:2336 msgid "" ":func:`create_autospec` also takes arbitrary keyword arguments that are " "passed to the constructor of the created mock." msgstr "" -#: library/unittest.mock.rst:2337 +#: library/unittest.mock.rst:2339 msgid "" "See :ref:`auto-speccing` for examples of how to use auto-speccing with :func:" "`create_autospec` and the *autospec* argument to :func:`patch`." msgstr "" -#: library/unittest.mock.rst:2343 +#: library/unittest.mock.rst:2345 msgid "" ":func:`create_autospec` now returns an :class:`AsyncMock` if the target is " "an async function." msgstr "" -#: library/unittest.mock.rst:2348 +#: library/unittest.mock.rst:2350 msgid "ANY" msgstr "" -#: library/unittest.mock.rst:2352 +#: library/unittest.mock.rst:2354 msgid "" "Sometimes you may need to make assertions about *some* of the arguments in a " "call to mock, but either not care about some of the arguments or want to " @@ -2031,24 +2031,24 @@ msgid "" "assertions on them." msgstr "" -#: library/unittest.mock.rst:2357 +#: library/unittest.mock.rst:2359 msgid "" "To ignore certain arguments you can pass in objects that compare equal to " "*everything*. Calls to :meth:`~Mock.assert_called_with` and :meth:`~Mock." "assert_called_once_with` will then succeed no matter what was passed in." msgstr "" -#: library/unittest.mock.rst:2366 +#: library/unittest.mock.rst:2368 msgid "" ":data:`ANY` can also be used in comparisons with call lists like :attr:" "`~Mock.mock_calls`:" msgstr "" -#: library/unittest.mock.rst:2379 +#: library/unittest.mock.rst:2381 msgid "FILTER_DIR" msgstr "" -#: library/unittest.mock.rst:2383 +#: library/unittest.mock.rst:2385 msgid "" ":data:`FILTER_DIR` is a module level variable that controls the way mock " "objects respond to :func:`dir`. The default is ``True``, which uses the " @@ -2057,7 +2057,7 @@ msgid "" "FILTER_DIR = False``." msgstr "" -#: library/unittest.mock.rst:2389 +#: library/unittest.mock.rst:2391 msgid "" "With filtering on, ``dir(some_mock)`` shows only useful attributes and will " "include any dynamically created attributes that wouldn't normally be shown. " @@ -2066,7 +2066,7 @@ msgid "" "yet:" msgstr "" -#: library/unittest.mock.rst:2416 +#: library/unittest.mock.rst:2418 msgid "" "Many of the not-very-useful (private to :class:`Mock` rather than the thing " "being mocked) underscore and double underscore prefixed attributes have been " @@ -2075,31 +2075,31 @@ msgid "" "switch :data:`FILTER_DIR`:" msgstr "" -#: library/unittest.mock.rst:2437 +#: library/unittest.mock.rst:2439 msgid "" "Alternatively you can just use ``vars(my_mock)`` (instance members) and " "``dir(type(my_mock))`` (type members) to bypass the filtering irrespective " "of :const:`mock.FILTER_DIR`." msgstr "" -#: library/unittest.mock.rst:2443 +#: library/unittest.mock.rst:2445 msgid "mock_open" msgstr "" -#: library/unittest.mock.rst:2447 +#: library/unittest.mock.rst:2449 msgid "" "A helper function to create a mock to replace the use of :func:`open`. It " "works for :func:`open` called directly or used as a context manager." msgstr "" -#: library/unittest.mock.rst:2450 +#: library/unittest.mock.rst:2452 msgid "" "The *mock* argument is the mock object to configure. If ``None`` (the " "default) then a :class:`MagicMock` will be created for you, with the API " "limited to methods or attributes available on standard file handles." msgstr "" -#: library/unittest.mock.rst:2454 +#: library/unittest.mock.rst:2456 msgid "" "*read_data* is a string for the :meth:`~io.IOBase.read`, :meth:`~io.IOBase." "readline`, and :meth:`~io.IOBase.readlines` methods of the file handle to " @@ -2112,51 +2112,51 @@ msgid "" "realistic filesystem for testing." msgstr "" -#: library/unittest.mock.rst:2464 +#: library/unittest.mock.rst:2466 msgid "" "Added :meth:`~io.IOBase.readline` and :meth:`~io.IOBase.readlines` support. " "The mock of :meth:`~io.IOBase.read` changed to consume *read_data* rather " "than returning it on each call." msgstr "" -#: library/unittest.mock.rst:2469 +#: library/unittest.mock.rst:2471 msgid "*read_data* is now reset on each call to the *mock*." msgstr "" -#: library/unittest.mock.rst:2472 +#: library/unittest.mock.rst:2474 msgid "" "Added :meth:`__iter__` to implementation so that iteration (such as in for " "loops) correctly consumes *read_data*." msgstr "" -#: library/unittest.mock.rst:2476 +#: library/unittest.mock.rst:2478 msgid "" "Using :func:`open` as a context manager is a great way to ensure your file " "handles are closed properly and is becoming common::" msgstr "" -#: library/unittest.mock.rst:2482 +#: library/unittest.mock.rst:2484 msgid "" "The issue is that even if you mock out the call to :func:`open` it is the " "*returned object* that is used as a context manager (and has :meth:" "`__enter__` and :meth:`__exit__` called)." msgstr "" -#: library/unittest.mock.rst:2486 +#: library/unittest.mock.rst:2488 msgid "" "Mocking context managers with a :class:`MagicMock` is common enough and " "fiddly enough that a helper function is useful. ::" msgstr "" -#: library/unittest.mock.rst:2503 +#: library/unittest.mock.rst:2505 msgid "And for reading files::" msgstr "" -#: library/unittest.mock.rst:2516 +#: library/unittest.mock.rst:2518 msgid "Autospeccing" msgstr "" -#: library/unittest.mock.rst:2518 +#: library/unittest.mock.rst:2520 msgid "" "Autospeccing is based on the existing :attr:`spec` feature of mock. It " "limits the api of mocks to the api of an original object (the spec), but it " @@ -2166,11 +2166,11 @@ msgid "" "`TypeError` if they are called incorrectly." msgstr "" -#: library/unittest.mock.rst:2525 +#: library/unittest.mock.rst:2527 msgid "Before I explain how auto-speccing works, here's why it is needed." msgstr "" -#: library/unittest.mock.rst:2527 +#: library/unittest.mock.rst:2529 msgid "" ":class:`Mock` is a very powerful and flexible object, but it suffers from " "two flaws when used to mock out objects from a system under test. One of " @@ -2178,25 +2178,25 @@ msgid "" "general problem with using mock objects." msgstr "" -#: library/unittest.mock.rst:2532 +#: library/unittest.mock.rst:2534 msgid "" "First the problem specific to :class:`Mock`. :class:`Mock` has two assert " "methods that are extremely handy: :meth:`~Mock.assert_called_with` and :meth:" "`~Mock.assert_called_once_with`." msgstr "" -#: library/unittest.mock.rst:2545 +#: library/unittest.mock.rst:2547 msgid "" "Because mocks auto-create attributes on demand, and allow you to call them " "with arbitrary arguments, if you misspell one of these assert methods then " "your assertion is gone:" msgstr "" -#: library/unittest.mock.rst:2555 +#: library/unittest.mock.rst:2557 msgid "Your tests can pass silently and incorrectly because of the typo." msgstr "" -#: library/unittest.mock.rst:2557 +#: library/unittest.mock.rst:2559 msgid "" "The second issue is more general to mocking. If you refactor some of your " "code, rename members and so on, any tests for code that is still using the " @@ -2204,7 +2204,7 @@ msgid "" "means your tests can all pass even though your code is broken." msgstr "" -#: library/unittest.mock.rst:2562 +#: library/unittest.mock.rst:2564 msgid "" "Note that this is another reason why you need integration tests as well as " "unit tests. Testing everything in isolation is all fine and dandy, but if " @@ -2212,20 +2212,20 @@ msgid "" "room for bugs that tests might have caught." msgstr "" -#: library/unittest.mock.rst:2567 +#: library/unittest.mock.rst:2569 msgid "" ":mod:`mock` already provides a feature to help with this, called speccing. " "If you use a class or instance as the :attr:`spec` for a mock then you can " "only access attributes on the mock that exist on the real class:" msgstr "" -#: library/unittest.mock.rst:2578 +#: library/unittest.mock.rst:2580 msgid "" "The spec only applies to the mock itself, so we still have the same issue " "with any methods on the mock:" msgstr "" -#: library/unittest.mock.rst:2587 +#: library/unittest.mock.rst:2589 msgid "" "Auto-speccing solves this problem. You can either pass ``autospec=True`` to :" "func:`patch` / :func:`patch.object` or use the :func:`create_autospec` " @@ -2237,24 +2237,24 @@ msgid "" "import modules) without a big performance hit." msgstr "" -#: library/unittest.mock.rst:2596 +#: library/unittest.mock.rst:2598 msgid "Here's an example of it in use::" msgstr "" -#: library/unittest.mock.rst:2606 +#: library/unittest.mock.rst:2608 msgid "" "You can see that :class:`request.Request` has a spec. :class:`request." "Request` takes two arguments in the constructor (one of which is *self*). " "Here's what happens if we try to call it incorrectly::" msgstr "" -#: library/unittest.mock.rst:2615 +#: library/unittest.mock.rst:2617 msgid "" "The spec also applies to instantiated classes (i.e. the return value of " "specced mocks)::" msgstr "" -#: library/unittest.mock.rst:2622 +#: library/unittest.mock.rst:2624 msgid "" ":class:`Request` objects are not callable, so the return value of " "instantiating our mocked out :class:`request.Request` is a non-callable " @@ -2262,20 +2262,20 @@ msgid "" "error::" msgstr "" -#: library/unittest.mock.rst:2634 +#: library/unittest.mock.rst:2636 msgid "" "In many cases you will just be able to add ``autospec=True`` to your " "existing :func:`patch` calls and then be protected against bugs due to typos " "and api changes." msgstr "" -#: library/unittest.mock.rst:2638 +#: library/unittest.mock.rst:2640 msgid "" "As well as using *autospec* through :func:`patch` there is a :func:" "`create_autospec` for creating autospecced mocks directly:" msgstr "" -#: library/unittest.mock.rst:2646 +#: library/unittest.mock.rst:2648 msgid "" "This isn't without caveats and limitations however, which is why it is not " "the default behaviour. In order to know what attributes are available on the " @@ -2287,7 +2287,7 @@ msgid "" "objects so that introspection is safe [#]_." msgstr "" -#: library/unittest.mock.rst:2655 +#: library/unittest.mock.rst:2657 msgid "" "A more serious problem is that it is common for instance attributes to be " "created in the :meth:`__init__` method and not to exist on the class at all. " @@ -2295,7 +2295,7 @@ msgid "" "the api to visible attributes. ::" msgstr "" -#: library/unittest.mock.rst:2672 +#: library/unittest.mock.rst:2674 msgid "" "There are a few different ways of resolving this problem. The easiest, but " "not necessarily the least annoying, way is to simply set the required " @@ -2304,7 +2304,7 @@ msgid "" "setting them::" msgstr "" -#: library/unittest.mock.rst:2683 +#: library/unittest.mock.rst:2685 msgid "" "There is a more aggressive version of both *spec* and *autospec* that *does* " "prevent you setting non-existent attributes. This is useful if you want to " @@ -2312,7 +2312,7 @@ msgid "" "this particular scenario:" msgstr "" -#: library/unittest.mock.rst:2696 +#: library/unittest.mock.rst:2698 msgid "" "Probably the best way of solving the problem is to add class attributes as " "default values for instance members initialised in :meth:`__init__`. Note " @@ -2321,7 +2321,7 @@ msgid "" "faster too. e.g." msgstr "" -#: library/unittest.mock.rst:2706 +#: library/unittest.mock.rst:2708 msgid "" "This brings up another issue. It is relatively common to provide a default " "value of ``None`` for members that will later be an object of a different " @@ -2332,7 +2332,7 @@ msgid "" "These will just be ordinary mocks (well - MagicMocks):" msgstr "" -#: library/unittest.mock.rst:2721 +#: library/unittest.mock.rst:2723 msgid "" "If modifying your production classes to add defaults isn't to your liking " "then there are more options. One of these is simply to use an instance as " @@ -2343,25 +2343,25 @@ msgid "" "alternative object as the *autospec* argument::" msgstr "" -#: library/unittest.mock.rst:2742 +#: library/unittest.mock.rst:2744 msgid "" "This only applies to classes or already instantiated objects. Calling a " "mocked class to create a mock instance *does not* create a real instance. It " "is only attribute lookups - along with calls to :func:`dir` - that are done." msgstr "" -#: library/unittest.mock.rst:2747 +#: library/unittest.mock.rst:2749 msgid "Sealing mocks" msgstr "" -#: library/unittest.mock.rst:2756 +#: library/unittest.mock.rst:2758 msgid "" "Seal will disable the automatic creation of mocks when accessing an " "attribute of the mock being sealed or any of its attributes that are already " "mocks recursively." msgstr "" -#: library/unittest.mock.rst:2759 +#: library/unittest.mock.rst:2761 msgid "" "If a mock instance with a name or a spec is assigned to an attribute it " "won't be considered in the sealing chain. This allows one to prevent seal " diff --git a/library/unittest.po b/library/unittest.po index a48e39683..59211e608 100644 --- a/library/unittest.po +++ b/library/unittest.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -335,29 +335,37 @@ msgstr "" msgid "Show local variables in tracebacks." msgstr "" -#: library/unittest.rst:247 +#: library/unittest.rst:249 +msgid "Show the N slowest test cases (N=0 for all)." +msgstr "" + +#: library/unittest.rst:251 msgid "The command-line options ``-b``, ``-c`` and ``-f`` were added." msgstr "" -#: library/unittest.rst:250 +#: library/unittest.rst:254 msgid "The command-line option ``--locals``." msgstr "" -#: library/unittest.rst:253 +#: library/unittest.rst:257 msgid "The command-line option ``-k``." msgstr "" -#: library/unittest.rst:256 +#: library/unittest.rst:260 +msgid "The command-line option ``--durations``." +msgstr "" + +#: library/unittest.rst:263 msgid "" "The command line can also be used for test discovery, for running all of the " "tests in a project or just a subset." msgstr "" -#: library/unittest.rst:263 +#: library/unittest.rst:269 msgid "Test Discovery" msgstr "" -#: library/unittest.rst:267 +#: library/unittest.rst:273 msgid "" "Unittest supports simple test discovery. In order to be compatible with test " "discovery, all of the test files must be :ref:`modules ` or :" @@ -366,47 +374,47 @@ msgid "" "`)." msgstr "" -#: library/unittest.rst:273 +#: library/unittest.rst:279 msgid "" "Test discovery is implemented in :meth:`TestLoader.discover`, but can also " "be used from the command line. The basic command-line usage is::" msgstr "" -#: library/unittest.rst:281 +#: library/unittest.rst:287 msgid "" "As a shortcut, ``python -m unittest`` is the equivalent of ``python -m " "unittest discover``. If you want to pass arguments to test discovery the " "``discover`` sub-command must be used explicitly." msgstr "" -#: library/unittest.rst:285 +#: library/unittest.rst:291 msgid "The ``discover`` sub-command has the following options:" msgstr "" -#: library/unittest.rst:291 +#: library/unittest.rst:297 msgid "Verbose output" msgstr "" -#: library/unittest.rst:295 +#: library/unittest.rst:301 msgid "Directory to start discovery (``.`` default)" msgstr "" -#: library/unittest.rst:299 +#: library/unittest.rst:305 msgid "Pattern to match test files (``test*.py`` default)" msgstr "" -#: library/unittest.rst:303 +#: library/unittest.rst:309 msgid "Top level directory of project (defaults to start directory)" msgstr "" -#: library/unittest.rst:305 +#: library/unittest.rst:311 msgid "" "The :option:`-s`, :option:`-p`, and :option:`-t` options can be passed in as " "positional arguments in that order. The following two command lines are " "equivalent::" msgstr "" -#: library/unittest.rst:312 +#: library/unittest.rst:318 msgid "" "As well as being a path it is possible to pass a package name, for example " "``myproject.subpackage.test``, as the start directory. The package name you " @@ -414,7 +422,7 @@ msgid "" "as the start directory." msgstr "" -#: library/unittest.rst:319 +#: library/unittest.rst:325 msgid "" "Test discovery loads tests by importing them. Once test discovery has found " "all the test files from the start directory you specify it turns the paths " @@ -422,34 +430,34 @@ msgid "" "imported as ``foo.bar.baz``." msgstr "" -#: library/unittest.rst:324 +#: library/unittest.rst:330 msgid "" "If you have a package installed globally and attempt test discovery on a " "different copy of the package then the import *could* happen from the wrong " "place. If this happens test discovery will warn you and exit." msgstr "" -#: library/unittest.rst:328 +#: library/unittest.rst:334 msgid "" "If you supply the start directory as a package name rather than a path to a " "directory then discover assumes that whichever location it imports from is " "the location you intended, so you will not get the warning." msgstr "" -#: library/unittest.rst:333 +#: library/unittest.rst:339 msgid "" "Test modules and packages can customize test loading and discovery by " "through the `load_tests protocol`_." msgstr "" -#: library/unittest.rst:336 +#: library/unittest.rst:342 msgid "" "Test discovery supports :term:`namespace packages ` for " "the start directory. Note that you need to specify the top level directory " "too (e.g. ``python -m unittest discover -s root/namespace -t root``)." msgstr "" -#: library/unittest.rst:342 +#: library/unittest.rst:348 msgid "" "Python 3.11 dropped the :term:`namespace packages ` " "support. It has been broken since Python 3.7. Start directory and " @@ -457,18 +465,18 @@ msgid "" "py`` file." msgstr "" -#: library/unittest.rst:348 +#: library/unittest.rst:354 msgid "" "Directories containing start directory still can be a namespace package. In " "this case, you need to specify start directory as dotted package name, and " "target directory explicitly. For example::" msgstr "" -#: library/unittest.rst:364 +#: library/unittest.rst:370 msgid "Organizing test code" msgstr "" -#: library/unittest.rst:366 +#: library/unittest.rst:372 msgid "" "The basic building blocks of unit testing are :dfn:`test cases` --- single " "scenarios that must be set up and checked for correctness. In :mod:" @@ -477,21 +485,21 @@ msgid "" "`TestCase` or use :class:`FunctionTestCase`." msgstr "" -#: library/unittest.rst:372 +#: library/unittest.rst:378 msgid "" "The testing code of a :class:`TestCase` instance should be entirely self " "contained, such that it can be run either in isolation or in arbitrary " "combination with any number of other test cases." msgstr "" -#: library/unittest.rst:376 +#: library/unittest.rst:382 msgid "" "The simplest :class:`TestCase` subclass will simply implement a test method " "(i.e. a method whose name starts with ``test``) in order to perform specific " "testing code::" msgstr "" -#: library/unittest.rst:387 +#: library/unittest.rst:393 msgid "" "Note that in order to test something, we use one of the :meth:`assert\\*` " "methods provided by the :class:`TestCase` base class. If the test fails, an " @@ -500,7 +508,7 @@ msgid "" "be treated as :dfn:`errors`." msgstr "" -#: library/unittest.rst:393 +#: library/unittest.rst:399 msgid "" "Tests can be numerous, and their set-up can be repetitive. Luckily, we can " "factor out set-up code by implementing a method called :meth:`~TestCase." @@ -508,32 +516,32 @@ msgid "" "test we run::" msgstr "" -#: library/unittest.rst:414 +#: library/unittest.rst:420 msgid "" "The order in which the various tests will be run is determined by sorting " "the test method names with respect to the built-in ordering for strings." msgstr "" -#: library/unittest.rst:418 +#: library/unittest.rst:424 msgid "" "If the :meth:`~TestCase.setUp` method raises an exception while the test is " "running, the framework will consider the test to have suffered an error, and " "the test method will not be executed." msgstr "" -#: library/unittest.rst:422 +#: library/unittest.rst:428 msgid "" "Similarly, we can provide a :meth:`~TestCase.tearDown` method that tidies up " "after the test method has been run::" msgstr "" -#: library/unittest.rst:434 +#: library/unittest.rst:440 msgid "" "If :meth:`~TestCase.setUp` succeeded, :meth:`~TestCase.tearDown` will be run " "whether the test method succeeded or not." msgstr "" -#: library/unittest.rst:437 +#: library/unittest.rst:443 msgid "" "Such a working environment for the testing code is called a :dfn:`test " "fixture`. A new TestCase instance is created as a unique test fixture used " @@ -542,7 +550,7 @@ msgid "" "test." msgstr "" -#: library/unittest.rst:443 +#: library/unittest.rst:449 msgid "" "It is recommended that you use TestCase implementations to group tests " "together according to the features they test. :mod:`unittest` provides a " @@ -552,13 +560,13 @@ msgid "" "execute them." msgstr "" -#: library/unittest.rst:450 +#: library/unittest.rst:456 msgid "" "However, should you want to customize the building of your test suite, you " "can do it yourself::" msgstr "" -#: library/unittest.rst:463 +#: library/unittest.rst:469 msgid "" "You can place the definitions of test cases and test suites in the same " "modules as the code they are to test (such as :file:`widget.py`), but there " @@ -566,69 +574,69 @@ msgid "" "as :file:`test_widget.py`:" msgstr "" -#: library/unittest.rst:468 +#: library/unittest.rst:474 msgid "The test module can be run standalone from the command line." msgstr "" -#: library/unittest.rst:470 +#: library/unittest.rst:476 msgid "The test code can more easily be separated from shipped code." msgstr "" -#: library/unittest.rst:472 +#: library/unittest.rst:478 msgid "" "There is less temptation to change test code to fit the code it tests " "without a good reason." msgstr "" -#: library/unittest.rst:475 +#: library/unittest.rst:481 msgid "" "Test code should be modified much less frequently than the code it tests." msgstr "" -#: library/unittest.rst:477 +#: library/unittest.rst:483 msgid "Tested code can be refactored more easily." msgstr "" -#: library/unittest.rst:479 +#: library/unittest.rst:485 msgid "" "Tests for modules written in C must be in separate modules anyway, so why " "not be consistent?" msgstr "" -#: library/unittest.rst:482 +#: library/unittest.rst:488 msgid "" "If the testing strategy changes, there is no need to change the source code." msgstr "" -#: library/unittest.rst:488 +#: library/unittest.rst:494 msgid "Re-using old test code" msgstr "" -#: library/unittest.rst:490 +#: library/unittest.rst:496 msgid "" "Some users will find that they have existing test code that they would like " "to run from :mod:`unittest`, without converting every old test function to " "a :class:`TestCase` subclass." msgstr "" -#: library/unittest.rst:494 +#: library/unittest.rst:500 msgid "" "For this reason, :mod:`unittest` provides a :class:`FunctionTestCase` class. " "This subclass of :class:`TestCase` can be used to wrap an existing test " "function. Set-up and tear-down functions can also be provided." msgstr "" -#: library/unittest.rst:498 +#: library/unittest.rst:504 msgid "Given the following test function::" msgstr "" -#: library/unittest.rst:505 +#: library/unittest.rst:511 msgid "" "one can create an equivalent test case instance as follows, with optional " "set-up and tear-down methods::" msgstr "" -#: library/unittest.rst:514 +#: library/unittest.rst:520 msgid "" "Even though :class:`FunctionTestCase` can be used to quickly convert an " "existing test base over to a :mod:`unittest`\\ -based system, this approach " @@ -636,7 +644,7 @@ msgid "" "subclasses will make future test refactorings infinitely easier." msgstr "" -#: library/unittest.rst:519 +#: library/unittest.rst:525 msgid "" "In some cases, the existing tests may have been written using the :mod:" "`doctest` module. If so, :mod:`doctest` provides a :class:`DocTestSuite` " @@ -644,11 +652,11 @@ msgid "" "from the existing :mod:`doctest`\\ -based tests." msgstr "" -#: library/unittest.rst:528 +#: library/unittest.rst:534 msgid "Skipping tests and expected failures" msgstr "" -#: library/unittest.rst:532 +#: library/unittest.rst:538 msgid "" "Unittest supports skipping individual test methods and even whole classes of " "tests. In addition, it supports marking a test as an \"expected failure,\" " @@ -656,7 +664,7 @@ msgid "" "on a :class:`TestResult`." msgstr "" -#: library/unittest.rst:537 +#: library/unittest.rst:543 msgid "" "Skipping a test is simply a matter of using the :func:`skip` :term:" "`decorator` or one of its conditional variants, calling :meth:`TestCase." @@ -664,56 +672,56 @@ msgid "" "`SkipTest` directly." msgstr "" -#: library/unittest.rst:541 +#: library/unittest.rst:547 msgid "Basic skipping looks like this::" msgstr "" -#: library/unittest.rst:566 +#: library/unittest.rst:572 msgid "This is the output of running the example above in verbose mode::" msgstr "" -#: library/unittest.rst:578 +#: library/unittest.rst:584 msgid "Classes can be skipped just like methods::" msgstr "" -#: library/unittest.rst:585 +#: library/unittest.rst:591 msgid "" ":meth:`TestCase.setUp` can also skip the test. This is useful when a " "resource that needs to be set up is not available." msgstr "" -#: library/unittest.rst:588 +#: library/unittest.rst:594 msgid "Expected failures use the :func:`expectedFailure` decorator. ::" msgstr "" -#: library/unittest.rst:595 +#: library/unittest.rst:601 msgid "" "It's easy to roll your own skipping decorators by making a decorator that " "calls :func:`skip` on the test when it wants it to be skipped. This " "decorator skips the test unless the passed object has a certain attribute::" msgstr "" -#: library/unittest.rst:604 +#: library/unittest.rst:610 msgid "" "The following decorators and exception implement test skipping and expected " "failures:" msgstr "" -#: library/unittest.rst:608 +#: library/unittest.rst:614 msgid "" "Unconditionally skip the decorated test. *reason* should describe why the " "test is being skipped." msgstr "" -#: library/unittest.rst:613 +#: library/unittest.rst:619 msgid "Skip the decorated test if *condition* is true." msgstr "" -#: library/unittest.rst:617 +#: library/unittest.rst:623 msgid "Skip the decorated test unless *condition* is true." msgstr "" -#: library/unittest.rst:621 +#: library/unittest.rst:627 msgid "" "Mark the test as an expected failure or error. If the test fails or errors " "in the test function itself (rather than in one of the :dfn:`test fixture` " @@ -721,17 +729,17 @@ msgid "" "be considered a failure." msgstr "" -#: library/unittest.rst:628 +#: library/unittest.rst:634 msgid "This exception is raised to skip a test." msgstr "" -#: library/unittest.rst:630 +#: library/unittest.rst:636 msgid "" "Usually you can use :meth:`TestCase.skipTest` or one of the skipping " "decorators instead of raising this directly." msgstr "" -#: library/unittest.rst:633 +#: library/unittest.rst:639 msgid "" "Skipped tests will not have :meth:`~TestCase.setUp` or :meth:`~TestCase." "tearDown` run around them. Skipped classes will not have :meth:`~TestCase." @@ -739,45 +747,45 @@ msgid "" "have :func:`setUpModule` or :func:`tearDownModule` run." msgstr "" -#: library/unittest.rst:641 +#: library/unittest.rst:647 msgid "Distinguishing test iterations using subtests" msgstr "" -#: library/unittest.rst:645 +#: library/unittest.rst:651 msgid "" "When there are very small differences among your tests, for instance some " "parameters, unittest allows you to distinguish them inside the body of a " "test method using the :meth:`~TestCase.subTest` context manager." msgstr "" -#: library/unittest.rst:649 +#: library/unittest.rst:655 msgid "For example, the following test::" msgstr "" -#: library/unittest.rst:661 +#: library/unittest.rst:667 msgid "will produce the following output::" msgstr "" -#: library/unittest.rst:693 +#: library/unittest.rst:699 msgid "" "Without using a subtest, execution would stop after the first failure, and " "the error would be less easy to diagnose because the value of ``i`` wouldn't " "be displayed::" msgstr "" -#: library/unittest.rst:709 +#: library/unittest.rst:715 msgid "Classes and functions" msgstr "" -#: library/unittest.rst:711 +#: library/unittest.rst:717 msgid "This section describes in depth the API of :mod:`unittest`." msgstr "" -#: library/unittest.rst:717 +#: library/unittest.rst:723 msgid "Test cases" msgstr "" -#: library/unittest.rst:721 +#: library/unittest.rst:727 msgid "" "Instances of the :class:`TestCase` class represent the logical test units in " "the :mod:`unittest` universe. This class is intended to be used as a base " @@ -787,21 +795,21 @@ msgid "" "report various kinds of failure." msgstr "" -#: library/unittest.rst:728 +#: library/unittest.rst:734 msgid "" "Each instance of :class:`TestCase` will run a single base method: the method " "named *methodName*. In most uses of :class:`TestCase`, you will neither " "change the *methodName* nor reimplement the default ``runTest()`` method." msgstr "" -#: library/unittest.rst:733 +#: library/unittest.rst:739 msgid "" ":class:`TestCase` can be instantiated successfully without providing a " "*methodName*. This makes it easier to experiment with :class:`TestCase` from " "the interactive interpreter." msgstr "" -#: library/unittest.rst:738 +#: library/unittest.rst:744 msgid "" ":class:`TestCase` instances provide three groups of methods: one group used " "to run the test, another used by the test implementation to check conditions " @@ -809,11 +817,11 @@ msgid "" "test itself to be gathered." msgstr "" -#: library/unittest.rst:743 +#: library/unittest.rst:749 msgid "Methods in the first group (running the test) are:" msgstr "" -#: library/unittest.rst:747 +#: library/unittest.rst:753 msgid "" "Method called to prepare the test fixture. This is called immediately " "before calling the test method; other than :exc:`AssertionError` or :exc:" @@ -821,7 +829,7 @@ msgid "" "rather than a test failure. The default implementation does nothing." msgstr "" -#: library/unittest.rst:755 +#: library/unittest.rst:761 msgid "" "Method called immediately after the test method has been called and the " "result recorded. This is called even if the test method raised an " @@ -834,25 +842,25 @@ msgid "" "The default implementation does nothing." msgstr "" -#: library/unittest.rst:768 +#: library/unittest.rst:774 msgid "" "A class method called before tests in an individual class are run. " "``setUpClass`` is called with the class as the only argument and must be " "decorated as a :func:`classmethod`::" msgstr "" -#: library/unittest.rst:791 +#: library/unittest.rst:797 msgid "See `Class and Module Fixtures`_ for more details." msgstr "" -#: library/unittest.rst:783 +#: library/unittest.rst:789 msgid "" "A class method called after tests in an individual class have run. " "``tearDownClass`` is called with the class as the only argument and must be " "decorated as a :meth:`classmethod`::" msgstr "" -#: library/unittest.rst:798 +#: library/unittest.rst:804 msgid "" "Run the test, collecting the result into the :class:`TestResult` object " "passed as *result*. If *result* is omitted or ``None``, a temporary result " @@ -860,174 +868,174 @@ msgid "" "used. The result object is returned to :meth:`run`'s caller." msgstr "" -#: library/unittest.rst:804 +#: library/unittest.rst:810 msgid "" "The same effect may be had by simply calling the :class:`TestCase` instance." msgstr "" -#: library/unittest.rst:807 +#: library/unittest.rst:813 msgid "" "Previous versions of ``run`` did not return the result. Neither did calling " "an instance." msgstr "" -#: library/unittest.rst:813 +#: library/unittest.rst:819 msgid "" "Calling this during a test method or :meth:`setUp` skips the current test. " "See :ref:`unittest-skipping` for more information." msgstr "" -#: library/unittest.rst:821 +#: library/unittest.rst:827 msgid "" "Return a context manager which executes the enclosed code block as a " "subtest. *msg* and *params* are optional, arbitrary values which are " "displayed whenever a subtest fails, allowing you to identify them clearly." msgstr "" -#: library/unittest.rst:826 +#: library/unittest.rst:832 msgid "" "A test case can contain any number of subtest declarations, and they can be " "arbitrarily nested." msgstr "" -#: library/unittest.rst:829 +#: library/unittest.rst:835 msgid "See :ref:`subtests` for more information." msgstr "" -#: library/unittest.rst:836 +#: library/unittest.rst:842 msgid "" "Run the test without collecting the result. This allows exceptions raised " "by the test to be propagated to the caller, and can be used to support " "running tests under a debugger." msgstr "" -#: library/unittest.rst:842 +#: library/unittest.rst:848 msgid "" "The :class:`TestCase` class provides several assert methods to check for and " "report failures. The following table lists the most commonly used methods " "(see the tables below for more assert methods):" msgstr "" -#: library/unittest.rst:968 library/unittest.rst:1309 +#: library/unittest.rst:974 library/unittest.rst:1312 msgid "Method" msgstr "" -#: library/unittest.rst:968 library/unittest.rst:1182 +#: library/unittest.rst:974 library/unittest.rst:1188 msgid "Checks that" msgstr "" -#: library/unittest.rst:968 library/unittest.rst:1309 +#: library/unittest.rst:974 library/unittest.rst:1312 msgid "New in" msgstr "" -#: library/unittest.rst:849 +#: library/unittest.rst:855 msgid ":meth:`assertEqual(a, b) `" msgstr "" -#: library/unittest.rst:849 +#: library/unittest.rst:855 msgid "``a == b``" msgstr "" -#: library/unittest.rst:852 +#: library/unittest.rst:858 msgid ":meth:`assertNotEqual(a, b) `" msgstr "" -#: library/unittest.rst:852 +#: library/unittest.rst:858 msgid "``a != b``" msgstr "" -#: library/unittest.rst:855 +#: library/unittest.rst:861 msgid ":meth:`assertTrue(x) `" msgstr "" -#: library/unittest.rst:855 +#: library/unittest.rst:861 msgid "``bool(x) is True``" msgstr "" -#: library/unittest.rst:858 +#: library/unittest.rst:864 msgid ":meth:`assertFalse(x) `" msgstr "" -#: library/unittest.rst:858 +#: library/unittest.rst:864 msgid "``bool(x) is False``" msgstr "" -#: library/unittest.rst:861 +#: library/unittest.rst:867 msgid ":meth:`assertIs(a, b) `" msgstr "" -#: library/unittest.rst:861 +#: library/unittest.rst:867 msgid "``a is b``" msgstr "" -#: library/unittest.rst:864 library/unittest.rst:870 library/unittest.rst:876 -#: library/unittest.rst:1190 library/unittest.rst:1196 -#: library/unittest.rst:1202 library/unittest.rst:1314 -#: library/unittest.rst:1320 library/unittest.rst:1326 +#: library/unittest.rst:870 library/unittest.rst:876 library/unittest.rst:882 +#: library/unittest.rst:1196 library/unittest.rst:1202 +#: library/unittest.rst:1208 library/unittest.rst:1317 +#: library/unittest.rst:1323 library/unittest.rst:1329 msgid "3.1" msgstr "" -#: library/unittest.rst:864 +#: library/unittest.rst:870 msgid ":meth:`assertIsNot(a, b) `" msgstr "" -#: library/unittest.rst:864 +#: library/unittest.rst:870 msgid "``a is not b``" msgstr "" -#: library/unittest.rst:867 +#: library/unittest.rst:873 msgid ":meth:`assertIsNone(x) `" msgstr "" -#: library/unittest.rst:867 +#: library/unittest.rst:873 msgid "``x is None``" msgstr "" -#: library/unittest.rst:870 +#: library/unittest.rst:876 msgid ":meth:`assertIsNotNone(x) `" msgstr "" -#: library/unittest.rst:870 +#: library/unittest.rst:876 msgid "``x is not None``" msgstr "" -#: library/unittest.rst:873 +#: library/unittest.rst:879 msgid ":meth:`assertIn(a, b) `" msgstr "" -#: library/unittest.rst:873 +#: library/unittest.rst:879 msgid "``a in b``" msgstr "" -#: library/unittest.rst:876 +#: library/unittest.rst:882 msgid ":meth:`assertNotIn(a, b) `" msgstr "" -#: library/unittest.rst:876 +#: library/unittest.rst:882 msgid "``a not in b``" msgstr "" -#: library/unittest.rst:879 +#: library/unittest.rst:885 msgid ":meth:`assertIsInstance(a, b) `" msgstr "" -#: library/unittest.rst:879 +#: library/unittest.rst:885 msgid "``isinstance(a, b)``" msgstr "" -#: library/unittest.rst:882 library/unittest.rst:979 library/unittest.rst:1208 +#: library/unittest.rst:888 library/unittest.rst:985 library/unittest.rst:1214 msgid "3.2" msgstr "" -#: library/unittest.rst:882 +#: library/unittest.rst:888 msgid ":meth:`assertNotIsInstance(a, b) `" msgstr "" -#: library/unittest.rst:882 +#: library/unittest.rst:888 msgid "``not isinstance(a, b)``" msgstr "" -#: library/unittest.rst:886 +#: library/unittest.rst:892 msgid "" "All the assert methods accept a *msg* argument that, if specified, is used " "as the error message on failure (see also :data:`longMessage`). Note that " @@ -1036,13 +1044,13 @@ msgid "" "they are used as a context manager." msgstr "" -#: library/unittest.rst:894 +#: library/unittest.rst:900 msgid "" "Test that *first* and *second* are equal. If the values do not compare " "equal, the test will fail." msgstr "" -#: library/unittest.rst:897 +#: library/unittest.rst:903 msgid "" "In addition, if *first* and *second* are the exact same type and one of " "list, tuple, dict, set, frozenset or str or any type that a subclass " @@ -1052,27 +1060,27 @@ msgid "" "methods>`)." msgstr "" -#: library/unittest.rst:904 +#: library/unittest.rst:910 msgid "Added the automatic calling of type-specific equality function." msgstr "" -#: library/unittest.rst:907 +#: library/unittest.rst:913 msgid "" ":meth:`assertMultiLineEqual` added as the default type equality function for " "comparing strings." msgstr "" -#: library/unittest.rst:914 +#: library/unittest.rst:920 msgid "" "Test that *first* and *second* are not equal. If the values do compare " "equal, the test will fail." msgstr "" -#: library/unittest.rst:920 +#: library/unittest.rst:926 msgid "Test that *expr* is true (or false)." msgstr "" -#: library/unittest.rst:922 +#: library/unittest.rst:928 msgid "" "Note that this is equivalent to ``bool(expr) is True`` and not to ``expr is " "True`` (use ``assertIs(expr, True)`` for the latter). This method should " @@ -1081,96 +1089,96 @@ msgid "" "provide a better error message in case of failure." msgstr "" -#: library/unittest.rst:932 +#: library/unittest.rst:938 msgid "Test that *first* and *second* are (or are not) the same object." msgstr "" -#: library/unittest.rst:940 +#: library/unittest.rst:946 msgid "Test that *expr* is (or is not) ``None``." msgstr "" -#: library/unittest.rst:948 +#: library/unittest.rst:954 msgid "Test that *member* is (or is not) in *container*." msgstr "" -#: library/unittest.rst:956 +#: library/unittest.rst:962 msgid "" "Test that *obj* is (or is not) an instance of *cls* (which can be a class or " "a tuple of classes, as supported by :func:`isinstance`). To check for the " "exact type, use :func:`assertIs(type(obj), cls) `." msgstr "" -#: library/unittest.rst:964 +#: library/unittest.rst:970 msgid "" "It is also possible to check the production of exceptions, warnings, and log " "messages using the following methods:" msgstr "" -#: library/unittest.rst:970 +#: library/unittest.rst:976 msgid ":meth:`assertRaises(exc, fun, *args, **kwds) `" msgstr "" -#: library/unittest.rst:970 +#: library/unittest.rst:976 msgid "``fun(*args, **kwds)`` raises *exc*" msgstr "" -#: library/unittest.rst:973 +#: library/unittest.rst:979 msgid "" ":meth:`assertRaisesRegex(exc, r, fun, *args, **kwds) `" msgstr "" -#: library/unittest.rst:973 +#: library/unittest.rst:979 msgid "``fun(*args, **kwds)`` raises *exc* and the message matches regex *r*" msgstr "" -#: library/unittest.rst:976 +#: library/unittest.rst:982 msgid ":meth:`assertWarns(warn, fun, *args, **kwds) `" msgstr "" -#: library/unittest.rst:976 +#: library/unittest.rst:982 msgid "``fun(*args, **kwds)`` raises *warn*" msgstr "" -#: library/unittest.rst:979 +#: library/unittest.rst:985 msgid "" ":meth:`assertWarnsRegex(warn, r, fun, *args, **kwds) `" msgstr "" -#: library/unittest.rst:979 +#: library/unittest.rst:985 msgid "``fun(*args, **kwds)`` raises *warn* and the message matches regex *r*" msgstr "" -#: library/unittest.rst:982 +#: library/unittest.rst:988 msgid ":meth:`assertLogs(logger, level) `" msgstr "" -#: library/unittest.rst:982 +#: library/unittest.rst:988 msgid "The ``with`` block logs on *logger* with minimum *level*" msgstr "" -#: library/unittest.rst:982 +#: library/unittest.rst:988 msgid "3.4" msgstr "" -#: library/unittest.rst:985 +#: library/unittest.rst:991 msgid ":meth:`assertNoLogs(logger, level) `" msgstr "" -#: library/unittest.rst:985 +#: library/unittest.rst:991 msgid "The ``with`` block does not log on" msgstr "" -#: library/unittest.rst:986 +#: library/unittest.rst:992 msgid "*logger* with minimum *level*" msgstr "" -#: library/unittest.rst:985 +#: library/unittest.rst:991 msgid "3.10" msgstr "" -#: library/unittest.rst:992 +#: library/unittest.rst:998 msgid "" "Test that an exception is raised when *callable* is called with any " "positional or keyword arguments that are also passed to :meth:" @@ -1180,39 +1188,39 @@ msgid "" "be passed as *exception*." msgstr "" -#: library/unittest.rst:999 +#: library/unittest.rst:1005 msgid "" "If only the *exception* and possibly the *msg* arguments are given, return a " "context manager so that the code under test can be written inline rather " "than as a function::" msgstr "" -#: library/unittest.rst:1006 +#: library/unittest.rst:1012 msgid "" "When used as a context manager, :meth:`assertRaises` accepts the additional " "keyword argument *msg*." msgstr "" -#: library/unittest.rst:1009 +#: library/unittest.rst:1015 msgid "" "The context manager will store the caught exception object in its :attr:" "`exception` attribute. This can be useful if the intention is to perform " "additional checks on the exception raised::" msgstr "" -#: library/unittest.rst:1019 +#: library/unittest.rst:1025 msgid "Added the ability to use :meth:`assertRaises` as a context manager." msgstr "" -#: library/unittest.rst:1022 +#: library/unittest.rst:1028 msgid "Added the :attr:`exception` attribute." msgstr "" -#: library/unittest.rst:1051 library/unittest.rst:1115 +#: library/unittest.rst:1057 library/unittest.rst:1121 msgid "Added the *msg* keyword argument when used as a context manager." msgstr "" -#: library/unittest.rst:1032 +#: library/unittest.rst:1038 msgid "" "Like :meth:`assertRaises` but also tests that *regex* matches on the string " "representation of the raised exception. *regex* may be a regular expression " @@ -1220,19 +1228,19 @@ msgid "" "`re.search`. Examples::" msgstr "" -#: library/unittest.rst:1108 +#: library/unittest.rst:1114 msgid "or::" msgstr "" -#: library/unittest.rst:1045 +#: library/unittest.rst:1051 msgid "Added under the name ``assertRaisesRegexp``." msgstr "" -#: library/unittest.rst:1048 +#: library/unittest.rst:1054 msgid "Renamed to :meth:`assertRaisesRegex`." msgstr "" -#: library/unittest.rst:1058 +#: library/unittest.rst:1064 msgid "" "Test that a warning is triggered when *callable* is called with any " "positional or keyword arguments that are also passed to :meth:" @@ -1241,20 +1249,20 @@ msgid "" "tuple containing the warning classes may be passed as *warnings*." msgstr "" -#: library/unittest.rst:1065 +#: library/unittest.rst:1071 msgid "" "If only the *warning* and possibly the *msg* arguments are given, return a " "context manager so that the code under test can be written inline rather " "than as a function::" msgstr "" -#: library/unittest.rst:1072 +#: library/unittest.rst:1078 msgid "" "When used as a context manager, :meth:`assertWarns` accepts the additional " "keyword argument *msg*." msgstr "" -#: library/unittest.rst:1075 +#: library/unittest.rst:1081 msgid "" "The context manager will store the caught warning object in its :attr:" "`warning` attribute, and the source line which triggered the warnings in " @@ -1262,13 +1270,13 @@ msgid "" "the intention is to perform additional checks on the warning caught::" msgstr "" -#: library/unittest.rst:1087 +#: library/unittest.rst:1093 msgid "" "This method works regardless of the warning filters in place when it is " "called." msgstr "" -#: library/unittest.rst:1099 +#: library/unittest.rst:1105 msgid "" "Like :meth:`assertWarns` but also tests that *regex* matches on the message " "of the triggered warning. *regex* may be a regular expression object or a " @@ -1276,13 +1284,13 @@ msgid "" "search`. Example::" msgstr "" -#: library/unittest.rst:1120 +#: library/unittest.rst:1126 msgid "" "A context manager to test that at least one message is logged on the " "*logger* or one of its children, with at least the given *level*." msgstr "" -#: library/unittest.rst:1124 +#: library/unittest.rst:1130 msgid "" "If given, *logger* should be a :class:`logging.Logger` object or a :class:" "`str` giving the name of a logger. The default is the root logger, which " @@ -1290,138 +1298,138 @@ msgid "" "descendent logger." msgstr "" -#: library/unittest.rst:1170 +#: library/unittest.rst:1176 msgid "" "If given, *level* should be either a numeric logging level or its string " "equivalent (for example either ``\"ERROR\"`` or :const:`logging.ERROR`). " "The default is :const:`logging.INFO`." msgstr "" -#: library/unittest.rst:1133 +#: library/unittest.rst:1139 msgid "" "The test passes if at least one message emitted inside the ``with`` block " "matches the *logger* and *level* conditions, otherwise it fails." msgstr "" -#: library/unittest.rst:1136 +#: library/unittest.rst:1142 msgid "" "The object returned by the context manager is a recording helper which keeps " "tracks of the matching log messages. It has two attributes:" msgstr "" -#: library/unittest.rst:1142 +#: library/unittest.rst:1148 msgid "" "A list of :class:`logging.LogRecord` objects of the matching log messages." msgstr "" -#: library/unittest.rst:1147 +#: library/unittest.rst:1153 msgid "" "A list of :class:`str` objects with the formatted output of matching " "messages." msgstr "" -#: library/unittest.rst:1150 +#: library/unittest.rst:1156 msgid "Example::" msgstr "" -#: library/unittest.rst:1162 +#: library/unittest.rst:1168 msgid "" "A context manager to test that no messages are logged on the *logger* or one " "of its children, with at least the given *level*." msgstr "" -#: library/unittest.rst:1166 +#: library/unittest.rst:1172 msgid "" "If given, *logger* should be a :class:`logging.Logger` object or a :class:" "`str` giving the name of a logger. The default is the root logger, which " "will catch all messages." msgstr "" -#: library/unittest.rst:1174 +#: library/unittest.rst:1180 msgid "" "Unlike :meth:`assertLogs`, nothing will be returned by the context manager." msgstr "" -#: library/unittest.rst:1179 +#: library/unittest.rst:1185 msgid "" "There are also other methods used to perform more specific checks, such as:" msgstr "" -#: library/unittest.rst:1184 +#: library/unittest.rst:1190 msgid ":meth:`assertAlmostEqual(a, b) `" msgstr "" -#: library/unittest.rst:1184 +#: library/unittest.rst:1190 msgid "``round(a-b, 7) == 0``" msgstr "" -#: library/unittest.rst:1187 +#: library/unittest.rst:1193 msgid ":meth:`assertNotAlmostEqual(a, b) `" msgstr "" -#: library/unittest.rst:1187 +#: library/unittest.rst:1193 msgid "``round(a-b, 7) != 0``" msgstr "" -#: library/unittest.rst:1190 +#: library/unittest.rst:1196 msgid ":meth:`assertGreater(a, b) `" msgstr "" -#: library/unittest.rst:1190 +#: library/unittest.rst:1196 msgid "``a > b``" msgstr "" -#: library/unittest.rst:1193 +#: library/unittest.rst:1199 msgid ":meth:`assertGreaterEqual(a, b) `" msgstr "" -#: library/unittest.rst:1193 +#: library/unittest.rst:1199 msgid "``a >= b``" msgstr "" -#: library/unittest.rst:1196 +#: library/unittest.rst:1202 msgid ":meth:`assertLess(a, b) `" msgstr "" -#: library/unittest.rst:1196 +#: library/unittest.rst:1202 msgid "``a < b``" msgstr "" -#: library/unittest.rst:1199 +#: library/unittest.rst:1205 msgid ":meth:`assertLessEqual(a, b) `" msgstr "" -#: library/unittest.rst:1199 +#: library/unittest.rst:1205 msgid "``a <= b``" msgstr "" -#: library/unittest.rst:1202 +#: library/unittest.rst:1208 msgid ":meth:`assertRegex(s, r) `" msgstr "" -#: library/unittest.rst:1202 +#: library/unittest.rst:1208 msgid "``r.search(s)``" msgstr "" -#: library/unittest.rst:1205 +#: library/unittest.rst:1211 msgid ":meth:`assertNotRegex(s, r) `" msgstr "" -#: library/unittest.rst:1205 +#: library/unittest.rst:1211 msgid "``not r.search(s)``" msgstr "" -#: library/unittest.rst:1208 +#: library/unittest.rst:1214 msgid ":meth:`assertCountEqual(a, b) `" msgstr "" -#: library/unittest.rst:1208 +#: library/unittest.rst:1214 msgid "" "*a* and *b* have the same elements in the same number, regardless of their " "order." msgstr "" -#: library/unittest.rst:1217 +#: library/unittest.rst:1223 msgid "" "Test that *first* and *second* are approximately (or not approximately) " "equal by computing the difference, rounding to the given number of decimal " @@ -1430,30 +1438,30 @@ msgid "" "`round` function) and not *significant digits*." msgstr "" -#: library/unittest.rst:1223 +#: library/unittest.rst:1229 msgid "" "If *delta* is supplied instead of *places* then the difference between " "*first* and *second* must be less or equal to (or greater than) *delta*." msgstr "" -#: library/unittest.rst:1226 +#: library/unittest.rst:1232 msgid "Supplying both *delta* and *places* raises a :exc:`TypeError`." msgstr "" -#: library/unittest.rst:1228 +#: library/unittest.rst:1234 msgid "" ":meth:`assertAlmostEqual` automatically considers almost equal objects that " "compare equal. :meth:`assertNotAlmostEqual` automatically fails if the " "objects compare equal. Added the *delta* keyword argument." msgstr "" -#: library/unittest.rst:1239 +#: library/unittest.rst:1245 msgid "" "Test that *first* is respectively >, >=, < or <= than *second* depending on " "the method name. If not, the test will fail::" msgstr "" -#: library/unittest.rst:1251 +#: library/unittest.rst:1257 msgid "" "Test that a *regex* search matches (or does not match) *text*. In case of " "failure, the error message will include the pattern and the *text* (or the " @@ -1462,34 +1470,28 @@ msgid "" "suitable for use by :func:`re.search`." msgstr "" -#: library/unittest.rst:1257 +#: library/unittest.rst:1263 msgid "Added under the name ``assertRegexpMatches``." msgstr "" -#: library/unittest.rst:1259 +#: library/unittest.rst:1265 msgid "" "The method ``assertRegexpMatches()`` has been renamed to :meth:`." "assertRegex`." msgstr "" -#: library/unittest.rst:1262 +#: library/unittest.rst:1268 msgid ":meth:`.assertNotRegex`." msgstr "" -#: library/unittest.rst:1264 -msgid "" -"The name ``assertNotRegexpMatches`` is a deprecated alias for :meth:`." -"assertNotRegex`." -msgstr "" - -#: library/unittest.rst:1271 +#: library/unittest.rst:1274 msgid "" "Test that sequence *first* contains the same elements as *second*, " "regardless of their order. When they don't, an error message listing the " "differences between the sequences will be generated." msgstr "" -#: library/unittest.rst:1275 +#: library/unittest.rst:1278 msgid "" "Duplicate elements are *not* ignored when comparing *first* and *second*. It " "verifies whether each element has the same count in both sequences. " @@ -1497,7 +1499,7 @@ msgid "" "but works with sequences of unhashable objects as well." msgstr "" -#: library/unittest.rst:1286 +#: library/unittest.rst:1289 msgid "" "The :meth:`assertEqual` method dispatches the equality check for objects of " "the same type to different type-specific methods. These methods are already " @@ -1505,7 +1507,7 @@ msgid "" "register new methods using :meth:`addTypeEqualityFunc`:" msgstr "" -#: library/unittest.rst:1293 +#: library/unittest.rst:1296 msgid "" "Registers a type-specific method called by :meth:`assertEqual` to check if " "two objects of exactly the same *typeobj* (not subclasses) compare equal. " @@ -1516,66 +1518,66 @@ msgid "" "explaining the inequalities in details in the error message." msgstr "" -#: library/unittest.rst:1304 +#: library/unittest.rst:1307 msgid "" "The list of type-specific methods automatically used by :meth:`~TestCase." "assertEqual` are summarized in the following table. Note that it's usually " "not necessary to invoke these methods directly." msgstr "" -#: library/unittest.rst:1309 +#: library/unittest.rst:1312 msgid "Used to compare" msgstr "" -#: library/unittest.rst:1311 +#: library/unittest.rst:1314 msgid ":meth:`assertMultiLineEqual(a, b) `" msgstr "" -#: library/unittest.rst:1311 +#: library/unittest.rst:1314 msgid "strings" msgstr "" -#: library/unittest.rst:1314 +#: library/unittest.rst:1317 msgid ":meth:`assertSequenceEqual(a, b) `" msgstr "" -#: library/unittest.rst:1314 +#: library/unittest.rst:1317 msgid "sequences" msgstr "" -#: library/unittest.rst:1317 +#: library/unittest.rst:1320 msgid ":meth:`assertListEqual(a, b) `" msgstr "" -#: library/unittest.rst:1317 +#: library/unittest.rst:1320 msgid "lists" msgstr "" -#: library/unittest.rst:1320 +#: library/unittest.rst:1323 msgid ":meth:`assertTupleEqual(a, b) `" msgstr "" -#: library/unittest.rst:1320 +#: library/unittest.rst:1323 msgid "tuples" msgstr "" -#: library/unittest.rst:1323 +#: library/unittest.rst:1326 msgid ":meth:`assertSetEqual(a, b) `" msgstr "" -#: library/unittest.rst:1323 +#: library/unittest.rst:1326 msgid "sets or frozensets" msgstr "" -#: library/unittest.rst:1326 +#: library/unittest.rst:1329 msgid ":meth:`assertDictEqual(a, b) `" msgstr "" -#: library/unittest.rst:1326 +#: library/unittest.rst:1329 msgid "dicts" msgstr "" -#: library/unittest.rst:1334 +#: library/unittest.rst:1337 msgid "" "Test that the multiline string *first* is equal to the string *second*. When " "not equal a diff of the two strings highlighting the differences will be " @@ -1583,7 +1585,7 @@ msgid "" "strings with :meth:`assertEqual`." msgstr "" -#: library/unittest.rst:1344 +#: library/unittest.rst:1347 msgid "" "Tests that two sequences are equal. If a *seq_type* is supplied, both " "*first* and *second* must be instances of *seq_type* or a failure will be " @@ -1591,13 +1593,13 @@ msgid "" "shows the difference between the two." msgstr "" -#: library/unittest.rst:1349 +#: library/unittest.rst:1352 msgid "" "This method is not called directly by :meth:`assertEqual`, but it's used to " "implement :meth:`assertListEqual` and :meth:`assertTupleEqual`." msgstr "" -#: library/unittest.rst:1359 +#: library/unittest.rst:1362 msgid "" "Tests that two lists or tuples are equal. If not, an error message is " "constructed that shows only the differences between the two. An error is " @@ -1605,38 +1607,38 @@ msgid "" "are used by default when comparing lists or tuples with :meth:`assertEqual`." msgstr "" -#: library/unittest.rst:1370 +#: library/unittest.rst:1373 msgid "" "Tests that two sets are equal. If not, an error message is constructed that " "lists the differences between the sets. This method is used by default when " "comparing sets or frozensets with :meth:`assertEqual`." msgstr "" -#: library/unittest.rst:1374 +#: library/unittest.rst:1377 msgid "" "Fails if either of *first* or *second* does not have a :meth:`set." "difference` method." msgstr "" -#: library/unittest.rst:1382 +#: library/unittest.rst:1385 msgid "" "Test that two dictionaries are equal. If not, an error message is " "constructed that shows the differences in the dictionaries. This method will " "be used by default to compare dictionaries in calls to :meth:`assertEqual`." msgstr "" -#: library/unittest.rst:1393 +#: library/unittest.rst:1396 msgid "" "Finally the :class:`TestCase` provides the following methods and attributes:" msgstr "" -#: library/unittest.rst:1398 +#: library/unittest.rst:1401 msgid "" "Signals a test failure unconditionally, with *msg* or ``None`` for the error " "message." msgstr "" -#: library/unittest.rst:1404 +#: library/unittest.rst:1407 msgid "" "This class attribute gives the exception raised by the test method. If a " "test framework needs to use a specialized exception, possibly to carry " @@ -1645,7 +1647,7 @@ msgid "" "`AssertionError`." msgstr "" -#: library/unittest.rst:1413 +#: library/unittest.rst:1416 msgid "" "This class attribute determines what happens when a custom failure message " "is passed as the msg argument to an assertXYY call that fails. ``True`` is " @@ -1654,18 +1656,18 @@ msgid "" "replaces the standard message." msgstr "" -#: library/unittest.rst:1419 +#: library/unittest.rst:1422 msgid "" "The class setting can be overridden in individual test methods by assigning " "an instance attribute, self.longMessage, to ``True`` or ``False`` before " "calling the assert methods." msgstr "" -#: library/unittest.rst:1423 +#: library/unittest.rst:1426 msgid "The class setting gets reset before each test call." msgstr "" -#: library/unittest.rst:1430 +#: library/unittest.rst:1433 msgid "" "This attribute controls the maximum length of diffs output by assert methods " "that report diffs on failure. It defaults to 80*8 characters. Assert methods " @@ -1674,52 +1676,52 @@ msgid "" "`assertDictEqual` and :meth:`assertMultiLineEqual`." msgstr "" -#: library/unittest.rst:1437 +#: library/unittest.rst:1440 msgid "" "Setting ``maxDiff`` to ``None`` means that there is no maximum length of " "diffs." msgstr "" -#: library/unittest.rst:1443 +#: library/unittest.rst:1446 msgid "" "Testing frameworks can use the following methods to collect information on " "the test:" msgstr "" -#: library/unittest.rst:1449 +#: library/unittest.rst:1452 msgid "" "Return the number of tests represented by this test object. For :class:" "`TestCase` instances, this will always be ``1``." msgstr "" -#: library/unittest.rst:1455 +#: library/unittest.rst:1458 msgid "" "Return an instance of the test result class that should be used for this " "test case class (if no other result instance is provided to the :meth:`run` " "method)." msgstr "" -#: library/unittest.rst:1459 +#: library/unittest.rst:1462 msgid "" "For :class:`TestCase` instances, this will always be an instance of :class:" "`TestResult`; subclasses of :class:`TestCase` should override this as " "necessary." msgstr "" -#: library/unittest.rst:1466 +#: library/unittest.rst:1469 msgid "" "Return a string identifying the specific test case. This is usually the " "full name of the test method, including the module and class name." msgstr "" -#: library/unittest.rst:1472 +#: library/unittest.rst:1475 msgid "" "Returns a description of the test, or ``None`` if no description has been " "provided. The default implementation of this method returns the first line " "of the test method's docstring, if available, or ``None``." msgstr "" -#: library/unittest.rst:1477 +#: library/unittest.rst:1480 msgid "" "In 3.1 this was changed to add the test name to the short description even " "in the presence of a docstring. This caused compatibility issues with " @@ -1727,7 +1729,7 @@ msgid "" "`TextTestResult` in Python 3.2." msgstr "" -#: library/unittest.rst:1486 +#: library/unittest.rst:1489 msgid "" "Add a function to be called after :meth:`tearDown` to cleanup resources used " "during the test. Functions will be called in reverse order to the order they " @@ -1736,39 +1738,39 @@ msgid "" "added." msgstr "" -#: library/unittest.rst:1492 +#: library/unittest.rst:1495 msgid "" "If :meth:`setUp` fails, meaning that :meth:`tearDown` is not called, then " "any cleanup functions added will still be called." msgstr "" -#: library/unittest.rst:1500 +#: library/unittest.rst:1503 msgid "" "Enter the supplied :term:`context manager`. If successful, also add its :" "meth:`~object.__exit__` method as a cleanup function by :meth:`addCleanup` " "and return the result of the :meth:`~object.__enter__` method." msgstr "" -#: library/unittest.rst:1510 +#: library/unittest.rst:1513 msgid "" "This method is called unconditionally after :meth:`tearDown`, or after :meth:" "`setUp` if :meth:`setUp` raises an exception." msgstr "" -#: library/unittest.rst:1513 +#: library/unittest.rst:1516 msgid "" "It is responsible for calling all the cleanup functions added by :meth:" "`addCleanup`. If you need cleanup functions to be called *prior* to :meth:" "`tearDown` then you can call :meth:`doCleanups` yourself." msgstr "" -#: library/unittest.rst:1518 +#: library/unittest.rst:1521 msgid "" ":meth:`doCleanups` pops methods off the stack of cleanup functions one at a " "time, so it can be called at any time." msgstr "" -#: library/unittest.rst:1526 +#: library/unittest.rst:1529 msgid "" "Add a function to be called after :meth:`tearDownClass` to cleanup resources " "used during the test class. Functions will be called in reverse order to the " @@ -1777,13 +1779,13 @@ msgid "" "when they are added." msgstr "" -#: library/unittest.rst:1532 +#: library/unittest.rst:1535 msgid "" "If :meth:`setUpClass` fails, meaning that :meth:`tearDownClass` is not " "called, then any cleanup functions added will still be called." msgstr "" -#: library/unittest.rst:1540 +#: library/unittest.rst:1543 msgid "" "Enter the supplied :term:`context manager`. If successful, also add its :" "meth:`~object.__exit__` method as a cleanup function by :meth:" @@ -1791,32 +1793,32 @@ msgid "" "method." msgstr "" -#: library/unittest.rst:1550 +#: library/unittest.rst:1553 msgid "" "This method is called unconditionally after :meth:`tearDownClass`, or after :" "meth:`setUpClass` if :meth:`setUpClass` raises an exception." msgstr "" -#: library/unittest.rst:1553 +#: library/unittest.rst:1556 msgid "" "It is responsible for calling all the cleanup functions added by :meth:" "`addClassCleanup`. If you need cleanup functions to be called *prior* to :" "meth:`tearDownClass` then you can call :meth:`doClassCleanups` yourself." msgstr "" -#: library/unittest.rst:1558 +#: library/unittest.rst:1561 msgid "" ":meth:`doClassCleanups` pops methods off the stack of cleanup functions one " "at a time, so it can be called at any time." msgstr "" -#: library/unittest.rst:1566 +#: library/unittest.rst:1569 msgid "" "This class provides an API similar to :class:`TestCase` and also accepts " "coroutines as test functions." msgstr "" -#: library/unittest.rst:1573 +#: library/unittest.rst:1576 msgid "" "Method called to prepare the test fixture. This is called after :meth:" "`setUp`. This is called immediately before calling the test method; other " @@ -1825,7 +1827,7 @@ msgid "" "implementation does nothing." msgstr "" -#: library/unittest.rst:1581 +#: library/unittest.rst:1584 msgid "" "Method called immediately after the test method has been called and the " "result recorded. This is called before :meth:`tearDown`. This is called " @@ -1838,11 +1840,11 @@ msgid "" "the outcome of the test method. The default implementation does nothing." msgstr "" -#: library/unittest.rst:1593 +#: library/unittest.rst:1596 msgid "This method accepts a coroutine that can be used as a cleanup function." msgstr "" -#: library/unittest.rst:1597 +#: library/unittest.rst:1600 msgid "" "Enter the supplied :term:`asynchronous context manager`. If successful, " "also add its :meth:`~object.__aexit__` method as a cleanup function by :meth:" @@ -1850,7 +1852,7 @@ msgid "" "method." msgstr "" -#: library/unittest.rst:1607 +#: library/unittest.rst:1610 msgid "" "Sets up a new event loop to run the test, collecting the result into the :" "class:`TestResult` object passed as *result*. If *result* is omitted or " @@ -1860,18 +1862,18 @@ msgid "" "cancelled." msgstr "" -#: library/unittest.rst:1615 +#: library/unittest.rst:1618 msgid "An example illustrating the order::" msgstr "" -#: library/unittest.rst:1651 +#: library/unittest.rst:1654 msgid "" "After running the test, ``events`` would contain ``[\"setUp\", " "\"asyncSetUp\", \"test_response\", \"asyncTearDown\", \"tearDown\", " "\"cleanup\"]``." msgstr "" -#: library/unittest.rst:1656 +#: library/unittest.rst:1659 msgid "" "This class implements the portion of the :class:`TestCase` interface which " "allows the test runner to drive the test, but does not provide the methods " @@ -1880,150 +1882,11 @@ msgid "" "`unittest`-based test framework." msgstr "" -#: library/unittest.rst:1666 -msgid "Deprecated aliases" -msgstr "" - -#: library/unittest.rst:1668 -msgid "" -"For historical reasons, some of the :class:`TestCase` methods had one or " -"more aliases that are now deprecated. The following table lists the correct " -"names along with their deprecated aliases:" -msgstr "" - -#: library/unittest.rst:1673 -msgid "Method Name" -msgstr "" - -#: library/unittest.rst:1673 -msgid "Deprecated alias" -msgstr "" - -#: library/unittest.rst:1675 -msgid ":meth:`.assertEqual`" -msgstr "" - -#: library/unittest.rst:1675 -msgid "failUnlessEqual" -msgstr "" - -#: library/unittest.rst:1675 -msgid "assertEquals" -msgstr "" - -#: library/unittest.rst:1676 -msgid ":meth:`.assertNotEqual`" -msgstr "" - -#: library/unittest.rst:1676 -msgid "failIfEqual" -msgstr "" - -#: library/unittest.rst:1676 -msgid "assertNotEquals" -msgstr "" - -#: library/unittest.rst:1677 -msgid ":meth:`.assertTrue`" -msgstr "" - -#: library/unittest.rst:1677 -msgid "failUnless" -msgstr "" - -#: library/unittest.rst:1677 -msgid "assert\\_" -msgstr "" - -#: library/unittest.rst:1678 -msgid ":meth:`.assertFalse`" -msgstr "" - -#: library/unittest.rst:1678 -msgid "failIf" -msgstr "" - -#: library/unittest.rst:1679 -msgid ":meth:`.assertRaises`" -msgstr "" - -#: library/unittest.rst:1679 -msgid "failUnlessRaises" -msgstr "" - -#: library/unittest.rst:1680 -msgid ":meth:`.assertAlmostEqual`" -msgstr "" - -#: library/unittest.rst:1680 -msgid "failUnlessAlmostEqual" -msgstr "" - -#: library/unittest.rst:1680 -msgid "assertAlmostEquals" -msgstr "" - -#: library/unittest.rst:1681 -msgid ":meth:`.assertNotAlmostEqual`" -msgstr "" - -#: library/unittest.rst:1681 -msgid "failIfAlmostEqual" -msgstr "" - -#: library/unittest.rst:1681 -msgid "assertNotAlmostEquals" -msgstr "" - -#: library/unittest.rst:1682 -msgid ":meth:`.assertRegex`" -msgstr "" - -#: library/unittest.rst:1682 -msgid "assertRegexpMatches" -msgstr "" - -#: library/unittest.rst:1683 -msgid ":meth:`.assertNotRegex`" -msgstr "" - -#: library/unittest.rst:1683 -msgid "assertNotRegexpMatches" -msgstr "" - -#: library/unittest.rst:1684 -msgid ":meth:`.assertRaisesRegex`" -msgstr "" - -#: library/unittest.rst:1684 -msgid "assertRaisesRegexp" -msgstr "" - -#: library/unittest.rst:1687 -msgid "The fail* aliases listed in the second column have been deprecated." -msgstr "" - -#: library/unittest.rst:1689 -msgid "The assert* aliases listed in the third column have been deprecated." -msgstr "" - -#: library/unittest.rst:1691 -msgid "" -"``assertRegexpMatches`` and ``assertRaisesRegexp`` have been renamed to :" -"meth:`.assertRegex` and :meth:`.assertRaisesRegex`." -msgstr "" - -#: library/unittest.rst:1694 -msgid "" -"The ``assertNotRegexpMatches`` name is deprecated in favor of :meth:`." -"assertNotRegex`." -msgstr "" - -#: library/unittest.rst:1700 +#: library/unittest.rst:1669 msgid "Grouping tests" msgstr "" -#: library/unittest.rst:1704 +#: library/unittest.rst:1673 msgid "" "This class represents an aggregation of individual test cases and test " "suites. The class presents the interface needed by the test runner to allow " @@ -2031,14 +1894,14 @@ msgid "" "is the same as iterating over the suite, running each test individually." msgstr "" -#: library/unittest.rst:1709 +#: library/unittest.rst:1678 msgid "" "If *tests* is given, it must be an iterable of individual test cases or " "other test suites that will be used to build the suite initially. Additional " "methods are provided to add test cases and suites to the collection later on." msgstr "" -#: library/unittest.rst:1713 +#: library/unittest.rst:1682 msgid "" ":class:`TestSuite` objects behave much like :class:`TestCase` objects, " "except they do not actually implement a test. Instead, they are used to " @@ -2047,47 +1910,47 @@ msgid "" "instances:" msgstr "" -#: library/unittest.rst:1721 +#: library/unittest.rst:1690 msgid "Add a :class:`TestCase` or :class:`TestSuite` to the suite." msgstr "" -#: library/unittest.rst:1726 +#: library/unittest.rst:1695 msgid "" "Add all the tests from an iterable of :class:`TestCase` and :class:" "`TestSuite` instances to this test suite." msgstr "" -#: library/unittest.rst:1729 +#: library/unittest.rst:1698 msgid "" "This is equivalent to iterating over *tests*, calling :meth:`addTest` for " "each element." msgstr "" -#: library/unittest.rst:1732 +#: library/unittest.rst:1701 msgid ":class:`TestSuite` shares the following methods with :class:`TestCase`:" msgstr "" -#: library/unittest.rst:1737 +#: library/unittest.rst:1706 msgid "" "Run the tests associated with this suite, collecting the result into the " "test result object passed as *result*. Note that unlike :meth:`TestCase." "run`, :meth:`TestSuite.run` requires the result object to be passed in." msgstr "" -#: library/unittest.rst:1745 +#: library/unittest.rst:1714 msgid "" "Run the tests associated with this suite without collecting the result. This " "allows exceptions raised by the test to be propagated to the caller and can " "be used to support running tests under a debugger." msgstr "" -#: library/unittest.rst:1752 +#: library/unittest.rst:1721 msgid "" "Return the number of tests represented by this test object, including all " "individual tests and sub-suites." msgstr "" -#: library/unittest.rst:1758 +#: library/unittest.rst:1727 msgid "" "Tests grouped by a :class:`TestSuite` are always accessed by iteration. " "Subclasses can lazily provide tests by overriding :meth:`__iter__`. Note " @@ -2099,31 +1962,31 @@ msgid "" "overrides :meth:`TestSuite._removeTestAtIndex` to preserve test references." msgstr "" -#: library/unittest.rst:1768 +#: library/unittest.rst:1737 msgid "" "In earlier versions the :class:`TestSuite` accessed tests directly rather " "than through iteration, so overriding :meth:`__iter__` wasn't sufficient for " "providing tests." msgstr "" -#: library/unittest.rst:1773 +#: library/unittest.rst:1742 msgid "" "In earlier versions the :class:`TestSuite` held references to each :class:" "`TestCase` after :meth:`TestSuite.run`. Subclasses can restore that behavior " "by overriding :meth:`TestSuite._removeTestAtIndex`." msgstr "" -#: library/unittest.rst:1778 +#: library/unittest.rst:1747 msgid "" "In the typical usage of a :class:`TestSuite` object, the :meth:`run` method " "is invoked by a :class:`TestRunner` rather than by the end-user test harness." msgstr "" -#: library/unittest.rst:1783 +#: library/unittest.rst:1752 msgid "Loading and running tests" msgstr "" -#: library/unittest.rst:1787 +#: library/unittest.rst:1756 msgid "" "The :class:`TestLoader` class is used to create test suites from classes and " "modules. Normally, there is no need to create an instance of this class; " @@ -2132,11 +1995,11 @@ msgid "" "customization of some configurable properties." msgstr "" -#: library/unittest.rst:1793 +#: library/unittest.rst:1762 msgid ":class:`TestLoader` objects have the following attributes:" msgstr "" -#: library/unittest.rst:1798 +#: library/unittest.rst:1767 msgid "" "A list of the non-fatal errors encountered while loading tests. Not reset by " "the loader at any point. Fatal errors are signalled by the relevant method " @@ -2144,17 +2007,17 @@ msgid "" "synthetic test that will raise the original error when run." msgstr "" -#: library/unittest.rst:1807 +#: library/unittest.rst:1776 msgid ":class:`TestLoader` objects have the following methods:" msgstr "" -#: library/unittest.rst:1812 +#: library/unittest.rst:1781 msgid "" "Return a suite of all test cases contained in the :class:`TestCase`\\ -" "derived :class:`testCaseClass`." msgstr "" -#: library/unittest.rst:1815 +#: library/unittest.rst:1784 msgid "" "A test case instance is created for each method named by :meth:" "`getTestCaseNames`. By default these are the method names beginning with " @@ -2163,14 +2026,14 @@ msgid "" "method instead." msgstr "" -#: library/unittest.rst:1824 +#: library/unittest.rst:1793 msgid "" "Return a suite of all test cases contained in the given module. This method " "searches *module* for classes derived from :class:`TestCase` and creates an " "instance of the class for each test method defined for the class." msgstr "" -#: library/unittest.rst:1831 +#: library/unittest.rst:1800 msgid "" "While using a hierarchy of :class:`TestCase`\\ -derived classes can be " "convenient in sharing fixtures and helper functions, defining test methods " @@ -2179,7 +2042,7 @@ msgid "" "fixtures are different and defined in subclasses." msgstr "" -#: library/unittest.rst:1837 +#: library/unittest.rst:1806 msgid "" "If a module provides a ``load_tests`` function it will be called to load the " "tests. This allows modules to customize test loading. This is the " @@ -2187,23 +2050,24 @@ msgid "" "argument to ``load_tests``." msgstr "" -#: library/unittest.rst:1842 +#: library/unittest.rst:1811 msgid "Support for ``load_tests`` added." msgstr "" -#: library/unittest.rst:1845 +#: library/unittest.rst:1814 +msgid "Support for a keyword-only argument *pattern* has been added." +msgstr "" + +#: library/unittest.rst:1817 msgid "" -"The undocumented and unofficial *use_load_tests* default argument is " -"deprecated and ignored, although it is still accepted for backward " -"compatibility. The method also now accepts a keyword-only argument " -"*pattern* which is passed to ``load_tests`` as the third argument." +"The undocumented and unofficial *use_load_tests* parameter has been removed." msgstr "" -#: library/unittest.rst:1854 +#: library/unittest.rst:1824 msgid "Return a suite of all test cases given a string specifier." msgstr "" -#: library/unittest.rst:1856 +#: library/unittest.rst:1826 msgid "" "The specifier *name* is a \"dotted name\" that may resolve either to a " "module, a test case class, a test method within a test case class, a :class:" @@ -2214,7 +2078,7 @@ msgid "" "object\"." msgstr "" -#: library/unittest.rst:1864 +#: library/unittest.rst:1834 msgid "" "For example, if you have a module :mod:`SampleTests` containing a :class:" "`TestCase`\\ -derived class :class:`SampleTestCase` with three test methods " @@ -2227,31 +2091,31 @@ msgid "" "a side-effect." msgstr "" -#: library/unittest.rst:1874 +#: library/unittest.rst:1844 msgid "The method optionally resolves *name* relative to the given *module*." msgstr "" -#: library/unittest.rst:1876 +#: library/unittest.rst:1846 msgid "" "If an :exc:`ImportError` or :exc:`AttributeError` occurs while traversing " "*name* then a synthetic test that raises that error when run will be " "returned. These errors are included in the errors accumulated by self.errors." msgstr "" -#: library/unittest.rst:1885 +#: library/unittest.rst:1855 msgid "" "Similar to :meth:`loadTestsFromName`, but takes a sequence of names rather " "than a single name. The return value is a test suite which supports all the " "tests defined for each name." msgstr "" -#: library/unittest.rst:1892 +#: library/unittest.rst:1862 msgid "" "Return a sorted sequence of method names found within *testCaseClass*; this " "should be a subclass of :class:`TestCase`." msgstr "" -#: library/unittest.rst:1898 +#: library/unittest.rst:1868 msgid "" "Find all the test modules by recursing into subdirectories from the " "specified start directory, and return a TestSuite object containing them. " @@ -2260,14 +2124,14 @@ msgid "" "Python identifiers) will be loaded." msgstr "" -#: library/unittest.rst:1904 +#: library/unittest.rst:1874 msgid "" "All test modules must be importable from the top level of the project. If " "the start directory is not the top level directory then the top level " "directory must be specified separately." msgstr "" -#: library/unittest.rst:1908 +#: library/unittest.rst:1878 msgid "" "If importing a module fails, for example due to a syntax error, then this " "will be recorded as a single error and discovery will continue. If the " @@ -2275,7 +2139,7 @@ msgid "" "as a skip instead of an error." msgstr "" -#: library/unittest.rst:1913 +#: library/unittest.rst:1883 msgid "" "If a package (a directory containing a file named :file:`__init__.py`) is " "found, the package will be checked for a ``load_tests`` function. If this " @@ -2285,13 +2149,13 @@ msgid "" "itself calls ``loader.discover``." msgstr "" -#: library/unittest.rst:1921 +#: library/unittest.rst:1891 msgid "" "If ``load_tests`` exists then discovery does *not* recurse into the package, " "``load_tests`` is responsible for loading all tests in the package." msgstr "" -#: library/unittest.rst:1925 +#: library/unittest.rst:1895 msgid "" "The pattern is deliberately not stored as a loader attribute so that " "packages can continue discovery themselves. *top_level_dir* is stored so " @@ -2299,81 +2163,81 @@ msgid "" "discover()``." msgstr "" -#: library/unittest.rst:1930 +#: library/unittest.rst:1900 msgid "*start_dir* can be a dotted module name as well as a directory." msgstr "" -#: library/unittest.rst:1934 +#: library/unittest.rst:1904 msgid "" "Modules that raise :exc:`SkipTest` on import are recorded as skips, not " "errors." msgstr "" -#: library/unittest.rst:1938 +#: library/unittest.rst:1908 msgid "*start_dir* can be a :term:`namespace packages `." msgstr "" -#: library/unittest.rst:1941 +#: library/unittest.rst:1911 msgid "" "Paths are sorted before being imported so that execution order is the same " "even if the underlying file system's ordering is not dependent on file name." msgstr "" -#: library/unittest.rst:1946 +#: library/unittest.rst:1916 msgid "" "Found packages are now checked for ``load_tests`` regardless of whether " "their path matches *pattern*, because it is impossible for a package name to " "match the default pattern." msgstr "" -#: library/unittest.rst:1951 +#: library/unittest.rst:1921 msgid "" "*start_dir* can not be a :term:`namespace packages `. It " "has been broken since Python 3.7 and Python 3.11 officially remove it." msgstr "" -#: library/unittest.rst:1956 +#: library/unittest.rst:1926 msgid "" "The following attributes of a :class:`TestLoader` can be configured either " "by subclassing or assignment on an instance:" msgstr "" -#: library/unittest.rst:1962 +#: library/unittest.rst:1932 msgid "" "String giving the prefix of method names which will be interpreted as test " "methods. The default value is ``'test'``." msgstr "" -#: library/unittest.rst:1965 +#: library/unittest.rst:1935 msgid "" "This affects :meth:`getTestCaseNames` and all the :meth:`loadTestsFrom\\*` " "methods." msgstr "" -#: library/unittest.rst:1971 +#: library/unittest.rst:1941 msgid "" "Function to be used to compare method names when sorting them in :meth:" "`getTestCaseNames` and all the :meth:`loadTestsFrom\\*` methods." msgstr "" -#: library/unittest.rst:1977 +#: library/unittest.rst:1947 msgid "" "Callable object that constructs a test suite from a list of tests. No " "methods on the resulting object are needed. The default value is the :class:" "`TestSuite` class." msgstr "" -#: library/unittest.rst:1994 +#: library/unittest.rst:1964 msgid "This affects all the :meth:`loadTestsFrom\\*` methods." msgstr "" -#: library/unittest.rst:1985 +#: library/unittest.rst:1955 msgid "" "List of Unix shell-style wildcard test name patterns that test methods have " "to match to be included in test suites (see ``-k`` option)." msgstr "" -#: library/unittest.rst:1988 +#: library/unittest.rst:1958 msgid "" "If this attribute is not ``None`` (the default), all test methods to be " "included in test suites must match one of the patterns in this list. Note " @@ -2382,13 +2246,13 @@ msgid "" "have to be converted using ``*`` wildcards." msgstr "" -#: library/unittest.rst:2001 +#: library/unittest.rst:1971 msgid "" "This class is used to compile information about which tests have succeeded " "and which have failed." msgstr "" -#: library/unittest.rst:2004 +#: library/unittest.rst:1974 msgid "" "A :class:`TestResult` object stores the results of a set of tests. The :" "class:`TestCase` and :class:`TestSuite` classes ensure that results are " @@ -2396,7 +2260,7 @@ msgid "" "outcome of tests." msgstr "" -#: library/unittest.rst:2009 +#: library/unittest.rst:1979 msgid "" "Testing frameworks built on top of :mod:`unittest` may want access to the :" "class:`TestResult` object generated by running a set of tests for reporting " @@ -2404,55 +2268,61 @@ msgid "" "`TestRunner.run` method for this purpose." msgstr "" -#: library/unittest.rst:2014 +#: library/unittest.rst:1984 msgid "" ":class:`TestResult` instances have the following attributes that will be of " "interest when inspecting the results of running a set of tests:" msgstr "" -#: library/unittest.rst:2020 +#: library/unittest.rst:1990 msgid "" "A list containing 2-tuples of :class:`TestCase` instances and strings " "holding formatted tracebacks. Each tuple represents a test which raised an " "unexpected exception." msgstr "" -#: library/unittest.rst:2026 +#: library/unittest.rst:1996 msgid "" "A list containing 2-tuples of :class:`TestCase` instances and strings " "holding formatted tracebacks. Each tuple represents a test where a failure " "was explicitly signalled using the :meth:`TestCase.assert\\*` methods." msgstr "" -#: library/unittest.rst:2032 +#: library/unittest.rst:2002 msgid "" "A list containing 2-tuples of :class:`TestCase` instances and strings " "holding the reason for skipping the test." msgstr "" -#: library/unittest.rst:2039 +#: library/unittest.rst:2009 msgid "" "A list containing 2-tuples of :class:`TestCase` instances and strings " "holding formatted tracebacks. Each tuple represents an expected failure or " "error of the test case." msgstr "" -#: library/unittest.rst:2045 +#: library/unittest.rst:2015 msgid "" "A list containing :class:`TestCase` instances that were marked as expected " "failures, but succeeded." msgstr "" -#: library/unittest.rst:2050 +#: library/unittest.rst:2020 +msgid "" +"A list containing 2-tuples of test case names and floats representing the " +"elapsed time of each test which was run." +msgstr "" + +#: library/unittest.rst:2027 msgid "" "Set to ``True`` when the execution of tests should stop by :meth:`stop`." msgstr "" -#: library/unittest.rst:2054 +#: library/unittest.rst:2031 msgid "The total number of tests run so far." msgstr "" -#: library/unittest.rst:2058 +#: library/unittest.rst:2035 msgid "" "If set to true, ``sys.stdout`` and ``sys.stderr`` will be buffered in " "between :meth:`startTest` and :meth:`stopTest` being called. Collected " @@ -2461,29 +2331,29 @@ msgid "" "error message." msgstr "" -#: library/unittest.rst:2067 +#: library/unittest.rst:2044 msgid "" "If set to true :meth:`stop` will be called on the first failure or error, " "halting the test run." msgstr "" -#: library/unittest.rst:2074 +#: library/unittest.rst:2051 msgid "If set to true then local variables will be shown in tracebacks." msgstr "" -#: library/unittest.rst:2080 +#: library/unittest.rst:2057 msgid "" "Return ``True`` if all tests run so far have passed, otherwise returns " "``False``." msgstr "" -#: library/unittest.rst:2083 +#: library/unittest.rst:2060 msgid "" "Returns ``False`` if there were any :attr:`unexpectedSuccesses` from tests " "marked with the :func:`expectedFailure` decorator." msgstr "" -#: library/unittest.rst:2089 +#: library/unittest.rst:2066 msgid "" "This method can be called to signal that the set of tests being run should " "be aborted by setting the :attr:`shouldStop` attribute to ``True``. :class:" @@ -2491,7 +2361,7 @@ msgid "" "additional tests." msgstr "" -#: library/unittest.rst:2094 +#: library/unittest.rst:2071 msgid "" "For example, this feature is used by the :class:`TextTestRunner` class to " "stop the test framework when the user signals an interrupt from the " @@ -2499,7 +2369,7 @@ msgid "" "implementations can use this in a similar manner." msgstr "" -#: library/unittest.rst:2099 +#: library/unittest.rst:2076 msgid "" "The following methods of the :class:`TestResult` class are used to maintain " "the internal data structures, and may be extended in subclasses to support " @@ -2507,136 +2377,141 @@ msgid "" "tools which support interactive reporting while tests are being run." msgstr "" -#: library/unittest.rst:2107 +#: library/unittest.rst:2084 msgid "Called when the test case *test* is about to be run." msgstr "" -#: library/unittest.rst:2111 +#: library/unittest.rst:2088 msgid "" "Called after the test case *test* has been executed, regardless of the " "outcome." msgstr "" -#: library/unittest.rst:2116 +#: library/unittest.rst:2093 msgid "Called once before any tests are executed." msgstr "" -#: library/unittest.rst:2123 +#: library/unittest.rst:2100 msgid "Called once after all tests are executed." msgstr "" -#: library/unittest.rst:2130 +#: library/unittest.rst:2107 msgid "" "Called when the test case *test* raises an unexpected exception. *err* is a " "tuple of the form returned by :func:`sys.exc_info`: ``(type, value, " "traceback)``." msgstr "" -#: library/unittest.rst:2134 +#: library/unittest.rst:2111 msgid "" "The default implementation appends a tuple ``(test, formatted_err)`` to the " "instance's :attr:`errors` attribute, where *formatted_err* is a formatted " "traceback derived from *err*." msgstr "" -#: library/unittest.rst:2141 +#: library/unittest.rst:2118 msgid "" "Called when the test case *test* signals a failure. *err* is a tuple of the " "form returned by :func:`sys.exc_info`: ``(type, value, traceback)``." msgstr "" -#: library/unittest.rst:2144 +#: library/unittest.rst:2121 msgid "" "The default implementation appends a tuple ``(test, formatted_err)`` to the " "instance's :attr:`failures` attribute, where *formatted_err* is a formatted " "traceback derived from *err*." msgstr "" -#: library/unittest.rst:2151 +#: library/unittest.rst:2128 msgid "Called when the test case *test* succeeds." msgstr "" -#: library/unittest.rst:2153 +#: library/unittest.rst:2130 msgid "The default implementation does nothing." msgstr "" -#: library/unittest.rst:2158 +#: library/unittest.rst:2135 msgid "" "Called when the test case *test* is skipped. *reason* is the reason the " "test gave for skipping." msgstr "" -#: library/unittest.rst:2161 +#: library/unittest.rst:2138 msgid "" "The default implementation appends a tuple ``(test, reason)`` to the " "instance's :attr:`skipped` attribute." msgstr "" -#: library/unittest.rst:2167 +#: library/unittest.rst:2144 msgid "" "Called when the test case *test* fails or errors, but was marked with the :" "func:`expectedFailure` decorator." msgstr "" -#: library/unittest.rst:2170 +#: library/unittest.rst:2147 msgid "" "The default implementation appends a tuple ``(test, formatted_err)`` to the " "instance's :attr:`expectedFailures` attribute, where *formatted_err* is a " "formatted traceback derived from *err*." msgstr "" -#: library/unittest.rst:2177 +#: library/unittest.rst:2154 msgid "" "Called when the test case *test* was marked with the :func:`expectedFailure` " "decorator, but succeeded." msgstr "" -#: library/unittest.rst:2180 +#: library/unittest.rst:2157 msgid "" "The default implementation appends the test to the instance's :attr:" "`unexpectedSuccesses` attribute." msgstr "" -#: library/unittest.rst:2186 +#: library/unittest.rst:2163 msgid "" "Called when a subtest finishes. *test* is the test case corresponding to " "the test method. *subtest* is a custom :class:`TestCase` instance " "describing the subtest." msgstr "" -#: library/unittest.rst:2190 +#: library/unittest.rst:2167 msgid "" "If *outcome* is :const:`None`, the subtest succeeded. Otherwise, it failed " "with an exception where *outcome* is a tuple of the form returned by :func:" "`sys.exc_info`: ``(type, value, traceback)``." msgstr "" -#: library/unittest.rst:2194 +#: library/unittest.rst:2171 msgid "" "The default implementation does nothing when the outcome is a success, and " "records subtest failures as normal failures." msgstr "" -#: library/unittest.rst:2202 +#: library/unittest.rst:2178 msgid "" -"A concrete implementation of :class:`TestResult` used by the :class:" -"`TextTestRunner`." +"Called when the test case finishes. *elapsed* is the time represented in " +"seconds, and it includes the execution of cleanup functions." msgstr "" -#: library/unittest.rst:2205 +#: library/unittest.rst:2185 msgid "" -"This class was previously named ``_TextTestResult``. The old name still " -"exists as an alias but is deprecated." +"A concrete implementation of :class:`TestResult` used by the :class:" +"`TextTestRunner`. Subclasses should accept ``**kwargs`` to ensure " +"compatibility as the interface changes." msgstr "" -#: library/unittest.rst:2212 +#: library/unittest.rst:2191 +msgid "Added *durations* keyword argument." +msgstr "" + +#: library/unittest.rst:2196 msgid "" "Instance of the :class:`TestLoader` class intended to be shared. If no " "customization of the :class:`TestLoader` is needed, this instance can be " "used instead of repeatedly creating new instances." msgstr "" -#: library/unittest.rst:2220 +#: library/unittest.rst:2205 msgid "" "A basic test runner implementation that outputs results to a stream. If " "*stream* is ``None``, the default, :data:`sys.stderr` is used as the output " @@ -2647,41 +2522,42 @@ msgid "" "unittest." msgstr "" -#: library/unittest.rst:2227 +#: library/unittest.rst:2212 msgid "" "By default this runner shows :exc:`DeprecationWarning`, :exc:" "`PendingDeprecationWarning`, :exc:`ResourceWarning` and :exc:`ImportWarning` " -"even if they are :ref:`ignored by default `. Deprecation " -"warnings caused by :ref:`deprecated unittest methods ` " -"are also special-cased and, when the warning filters are ``'default'`` or " -"``'always'``, they will appear only once per-module, in order to avoid too " -"many warning messages. This behavior can be overridden using Python's :" -"option:`!-Wd` or :option:`!-Wa` options (see :ref:`Warning control `) and leaving *warnings* to ``None``." +"even if they are :ref:`ignored by default `. This behavior " +"can be overridden using Python's :option:`!-Wd` or :option:`!-Wa` options " +"(see :ref:`Warning control `) and leaving *warnings* to " +"``None``." msgstr "" -#: library/unittest.rst:2238 -msgid "Added the ``warnings`` argument." +#: library/unittest.rst:2220 +msgid "Added the *warnings* parameter." msgstr "" -#: library/unittest.rst:2241 +#: library/unittest.rst:2223 msgid "" "The default stream is set to :data:`sys.stderr` at instantiation time rather " "than import time." msgstr "" -#: library/unittest.rst:2245 -msgid "Added the tb_locals parameter." +#: library/unittest.rst:2227 +msgid "Added the *tb_locals* parameter." msgstr "" -#: library/unittest.rst:2250 +#: library/unittest.rst:2230 +msgid "Added the *durations* parameter." +msgstr "" + +#: library/unittest.rst:2235 msgid "" "This method returns the instance of ``TestResult`` used by :meth:`run`. It " "is not intended to be called directly, but can be overridden in subclasses " "to provide a custom ``TestResult``." msgstr "" -#: library/unittest.rst:2254 +#: library/unittest.rst:2239 msgid "" "``_makeResult()`` instantiates the class or callable passed in the " "``TextTestRunner`` constructor as the ``resultclass`` argument. It defaults " @@ -2689,7 +2565,7 @@ msgid "" "class is instantiated with the following arguments::" msgstr "" -#: library/unittest.rst:2263 +#: library/unittest.rst:2248 msgid "" "This method is the main public interface to the ``TextTestRunner``. This " "method takes a :class:`TestSuite` or :class:`TestCase` instance. A :class:" @@ -2697,7 +2573,7 @@ msgid "" "run and the results printed to stdout." msgstr "" -#: library/unittest.rst:2274 +#: library/unittest.rst:2259 msgid "" "A command-line program that loads a set of tests from *module* and runs " "them; this is primarily for making test modules conveniently executable. The " @@ -2705,13 +2581,13 @@ msgid "" "of a test script::" msgstr "" -#: library/unittest.rst:2282 +#: library/unittest.rst:2267 msgid "" "You can run tests with more detailed information by passing in the verbosity " "argument::" msgstr "" -#: library/unittest.rst:2288 +#: library/unittest.rst:2273 msgid "" "The *defaultTest* argument is either the name of a single test or an " "iterable of test names to run if no test names are specified via *argv*. If " @@ -2719,40 +2595,41 @@ msgid "" "tests found in *module* are run." msgstr "" -#: library/unittest.rst:2293 +#: library/unittest.rst:2278 msgid "" "The *argv* argument can be a list of options passed to the program, with the " "first element being the program name. If not specified or ``None``, the " "values of :data:`sys.argv` are used." msgstr "" -#: library/unittest.rst:2297 +#: library/unittest.rst:2282 msgid "" "The *testRunner* argument can either be a test runner class or an already " "created instance of it. By default ``main`` calls :func:`sys.exit` with an " -"exit code indicating success or failure of the tests run." +"exit code indicating success (0) or failure (1) of the tests run. An exit " +"code of 5 indicates that no tests were run." msgstr "" -#: library/unittest.rst:2301 +#: library/unittest.rst:2287 msgid "" "The *testLoader* argument has to be a :class:`TestLoader` instance, and " "defaults to :data:`defaultTestLoader`." msgstr "" -#: library/unittest.rst:2304 +#: library/unittest.rst:2290 msgid "" "``main`` supports being used from the interactive interpreter by passing in " "the argument ``exit=False``. This displays the result on standard output " "without calling :func:`sys.exit`::" msgstr "" -#: library/unittest.rst:2311 +#: library/unittest.rst:2297 msgid "" "The *failfast*, *catchbreak* and *buffer* parameters have the same effect as " "the same-name `command-line options`_." msgstr "" -#: library/unittest.rst:2314 +#: library/unittest.rst:2300 msgid "" "The *warnings* argument specifies the :ref:`warning filter ` " "that should be used while running the tests. If it's not specified, it will " @@ -2761,56 +2638,56 @@ msgid "" "to ``'default'``." msgstr "" -#: library/unittest.rst:2320 +#: library/unittest.rst:2306 msgid "" "Calling ``main`` actually returns an instance of the ``TestProgram`` class. " "This stores the result of the tests run as the ``result`` attribute." msgstr "" -#: library/unittest.rst:2323 +#: library/unittest.rst:2309 msgid "The *exit* parameter was added." msgstr "" -#: library/unittest.rst:2326 +#: library/unittest.rst:2312 msgid "" "The *verbosity*, *failfast*, *catchbreak*, *buffer* and *warnings* " "parameters were added." msgstr "" -#: library/unittest.rst:2330 +#: library/unittest.rst:2316 msgid "" "The *defaultTest* parameter was changed to also accept an iterable of test " "names." msgstr "" -#: library/unittest.rst:2336 +#: library/unittest.rst:2322 msgid "load_tests Protocol" msgstr "" -#: library/unittest.rst:2340 +#: library/unittest.rst:2326 msgid "" "Modules or packages can customize how tests are loaded from them during " "normal test runs or test discovery by implementing a function called " "``load_tests``." msgstr "" -#: library/unittest.rst:2343 +#: library/unittest.rst:2329 msgid "" "If a test module defines ``load_tests`` it will be called by :meth:" "`TestLoader.loadTestsFromModule` with the following arguments::" msgstr "" -#: library/unittest.rst:2348 +#: library/unittest.rst:2334 msgid "" "where *pattern* is passed straight through from ``loadTestsFromModule``. It " "defaults to ``None``." msgstr "" -#: library/unittest.rst:2351 +#: library/unittest.rst:2337 msgid "It should return a :class:`TestSuite`." msgstr "" -#: library/unittest.rst:2353 +#: library/unittest.rst:2339 msgid "" "*loader* is the instance of :class:`TestLoader` doing the loading. " "*standard_tests* are the tests that would be loaded by default from the " @@ -2819,13 +2696,13 @@ msgid "" "packages as part of test discovery." msgstr "" -#: library/unittest.rst:2359 +#: library/unittest.rst:2345 msgid "" "A typical ``load_tests`` function that loads tests from a specific set of :" "class:`TestCase` classes may look like::" msgstr "" -#: library/unittest.rst:2371 +#: library/unittest.rst:2357 msgid "" "If discovery is started in a directory containing a package, either from the " "command line or by calling :meth:`TestLoader.discover`, then the package :" @@ -2835,31 +2712,31 @@ msgid "" "left up to ``load_tests`` which is called with the following arguments::" msgstr "" -#: library/unittest.rst:2380 +#: library/unittest.rst:2366 msgid "" "This should return a :class:`TestSuite` representing all the tests from the " "package. (``standard_tests`` will only contain tests collected from :file:" "`__init__.py`.)" msgstr "" -#: library/unittest.rst:2384 +#: library/unittest.rst:2370 msgid "" "Because the pattern is passed into ``load_tests`` the package is free to " "continue (and potentially modify) test discovery. A 'do nothing' " "``load_tests`` function for a test package would look like::" msgstr "" -#: library/unittest.rst:2395 +#: library/unittest.rst:2381 msgid "" "Discovery no longer checks package names for matching *pattern* due to the " "impossibility of package names matching the default pattern." msgstr "" -#: library/unittest.rst:2402 +#: library/unittest.rst:2388 msgid "Class and Module Fixtures" msgstr "" -#: library/unittest.rst:2404 +#: library/unittest.rst:2390 msgid "" "Class and module level fixtures are implemented in :class:`TestSuite`. When " "the test suite encounters a test from a new class then :meth:`tearDownClass` " @@ -2867,27 +2744,27 @@ msgid "" "`setUpClass` from the new class." msgstr "" -#: library/unittest.rst:2409 +#: library/unittest.rst:2395 msgid "" "Similarly if a test is from a different module from the previous test then " "``tearDownModule`` from the previous module is run, followed by " "``setUpModule`` from the new module." msgstr "" -#: library/unittest.rst:2413 +#: library/unittest.rst:2399 msgid "" "After all the tests have run the final ``tearDownClass`` and " "``tearDownModule`` are run." msgstr "" -#: library/unittest.rst:2416 +#: library/unittest.rst:2402 msgid "" "Note that shared fixtures do not play well with [potential] features like " "test parallelization and they break test isolation. They should be used with " "care." msgstr "" -#: library/unittest.rst:2419 +#: library/unittest.rst:2405 msgid "" "The default ordering of tests created by the unittest test loaders is to " "group all tests from the same modules and classes together. This will lead " @@ -2897,14 +2774,14 @@ msgid "" "functions may be called multiple times in a single test run." msgstr "" -#: library/unittest.rst:2426 +#: library/unittest.rst:2412 msgid "" "Shared fixtures are not intended to work with suites with non-standard " "ordering. A ``BaseTestSuite`` still exists for frameworks that don't want to " "support shared fixtures." msgstr "" -#: library/unittest.rst:2430 +#: library/unittest.rst:2416 msgid "" "If there are any exceptions raised during one of the shared fixture " "functions the test is reported as an error. Because there is no " @@ -2914,22 +2791,22 @@ msgid "" "matter, but if you are a framework author it may be relevant." msgstr "" -#: library/unittest.rst:2439 +#: library/unittest.rst:2425 msgid "setUpClass and tearDownClass" msgstr "" -#: library/unittest.rst:2441 +#: library/unittest.rst:2427 msgid "These must be implemented as class methods::" msgstr "" -#: library/unittest.rst:2454 +#: library/unittest.rst:2440 msgid "" "If you want the ``setUpClass`` and ``tearDownClass`` on base classes called " "then you must call up to them yourself. The implementations in :class:" "`TestCase` are empty." msgstr "" -#: library/unittest.rst:2458 +#: library/unittest.rst:2444 msgid "" "If an exception is raised during a ``setUpClass`` then the tests in the " "class are not run and the ``tearDownClass`` is not run. Skipped classes will " @@ -2938,15 +2815,15 @@ msgid "" "instead of as an error." msgstr "" -#: library/unittest.rst:2466 +#: library/unittest.rst:2452 msgid "setUpModule and tearDownModule" msgstr "" -#: library/unittest.rst:2468 +#: library/unittest.rst:2454 msgid "These should be implemented as functions::" msgstr "" -#: library/unittest.rst:2476 +#: library/unittest.rst:2462 msgid "" "If an exception is raised in a ``setUpModule`` then none of the tests in the " "module will be run and the ``tearDownModule`` will not be run. If the " @@ -2954,13 +2831,13 @@ msgid "" "having been skipped instead of as an error." msgstr "" -#: library/unittest.rst:2481 +#: library/unittest.rst:2467 msgid "" "To add cleanup code that must be run even in the case of an exception, use " "``addModuleCleanup``:" msgstr "" -#: library/unittest.rst:2487 +#: library/unittest.rst:2473 msgid "" "Add a function to be called after :func:`tearDownModule` to cleanup " "resources used during the test class. Functions will be called in reverse " @@ -2969,13 +2846,13 @@ msgid "" "`addModuleCleanup` when they are added." msgstr "" -#: library/unittest.rst:2493 +#: library/unittest.rst:2479 msgid "" "If :meth:`setUpModule` fails, meaning that :func:`tearDownModule` is not " "called, then any cleanup functions added will still be called." msgstr "" -#: library/unittest.rst:2501 +#: library/unittest.rst:2487 msgid "" "Enter the supplied :term:`context manager`. If successful, also add its :" "meth:`~object.__exit__` method as a cleanup function by :func:" @@ -2983,30 +2860,30 @@ msgid "" "method." msgstr "" -#: library/unittest.rst:2511 +#: library/unittest.rst:2497 msgid "" "This function is called unconditionally after :func:`tearDownModule`, or " "after :func:`setUpModule` if :func:`setUpModule` raises an exception." msgstr "" -#: library/unittest.rst:2514 +#: library/unittest.rst:2500 msgid "" "It is responsible for calling all the cleanup functions added by :func:" "`addModuleCleanup`. If you need cleanup functions to be called *prior* to :" "func:`tearDownModule` then you can call :func:`doModuleCleanups` yourself." msgstr "" -#: library/unittest.rst:2519 +#: library/unittest.rst:2505 msgid "" ":func:`doModuleCleanups` pops methods off the stack of cleanup functions one " "at a time, so it can be called at any time." msgstr "" -#: library/unittest.rst:2526 +#: library/unittest.rst:2512 msgid "Signal Handling" msgstr "" -#: library/unittest.rst:2530 +#: library/unittest.rst:2516 msgid "" "The :option:`-c/--catch ` command-line option to unittest, " "along with the ``catchbreak`` parameter to :func:`unittest.main()`, provide " @@ -3016,7 +2893,7 @@ msgid "" "A second control-c will raise a :exc:`KeyboardInterrupt` in the usual way." msgstr "" -#: library/unittest.rst:2537 +#: library/unittest.rst:2523 msgid "" "The control-c handling signal handler attempts to remain compatible with " "code or tests that install their own :const:`signal.SIGINT` handler. If the " @@ -3028,41 +2905,41 @@ msgid "" "disabled the :func:`removeHandler` decorator can be used." msgstr "" -#: library/unittest.rst:2546 +#: library/unittest.rst:2532 msgid "" "There are a few utility functions for framework authors to enable control-c " "handling functionality within test frameworks." msgstr "" -#: library/unittest.rst:2551 +#: library/unittest.rst:2537 msgid "" "Install the control-c handler. When a :const:`signal.SIGINT` is received " "(usually in response to the user pressing control-c) all registered results " "have :meth:`~TestResult.stop` called." msgstr "" -#: library/unittest.rst:2558 +#: library/unittest.rst:2544 msgid "" "Register a :class:`TestResult` object for control-c handling. Registering a " "result stores a weak reference to it, so it doesn't prevent the result from " "being garbage collected." msgstr "" -#: library/unittest.rst:2562 +#: library/unittest.rst:2548 msgid "" "Registering a :class:`TestResult` object has no side-effects if control-c " "handling is not enabled, so test frameworks can unconditionally register all " "results they create independently of whether or not handling is enabled." msgstr "" -#: library/unittest.rst:2569 +#: library/unittest.rst:2555 msgid "" "Remove a registered result. Once a result has been removed then :meth:" "`~TestResult.stop` will no longer be called on that result object in " "response to a control-c." msgstr "" -#: library/unittest.rst:2576 +#: library/unittest.rst:2562 msgid "" "When called without arguments this function removes the control-c handler if " "it has been installed. This function can also be used as a test decorator to " diff --git a/library/urllib.error.po b/library/urllib.error.po index fa48ae9c1..27f531bff 100644 --- a/library/urllib.error.po +++ b/library/urllib.error.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -63,29 +63,39 @@ msgid "" msgstr "" #: library/urllib.error.rst:44 +msgid "Contains the request URL. An alias for *filename* attribute." +msgstr "" + +#: library/urllib.error.rst:49 msgid "" "An HTTP status code as defined in :rfc:`2616`. This numeric value " "corresponds to a value found in the dictionary of codes as found in :attr:" "`http.server.BaseHTTPRequestHandler.responses`." msgstr "" -#: library/urllib.error.rst:50 -msgid "This is usually a string explaining the reason for this error." +#: library/urllib.error.rst:55 +msgid "" +"This is usually a string explaining the reason for this error. An alias for " +"*msg* attribute." msgstr "" -#: library/urllib.error.rst:54 +#: library/urllib.error.rst:60 msgid "" "The HTTP response headers for the HTTP request that caused the :exc:" -"`HTTPError`." +"`HTTPError`. An alias for *hdrs* attribute." msgstr "" -#: library/urllib.error.rst:61 +#: library/urllib.error.rst:68 +msgid "A file-like object where the HTTP error body can be read from." +msgstr "" + +#: library/urllib.error.rst:72 msgid "" "This exception is raised when the :func:`~urllib.request.urlretrieve` " "function detects that the amount of the downloaded data is less than the " "expected amount (given by the *Content-Length* header)." msgstr "" -#: library/urllib.error.rst:68 +#: library/urllib.error.rst:79 msgid "The downloaded (and supposedly truncated) data." msgstr "" diff --git a/library/uuid.po b/library/uuid.po index 1deeb6c9a..f5814986c 100644 --- a/library/uuid.po +++ b/library/uuid.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -218,85 +218,134 @@ msgstr "" #: library/uuid.rst:197 msgid "" "Generate a UUID based on the MD5 hash of a namespace identifier (which is a " -"UUID) and a name (which is a string)." +"UUID) and a name (which is a :class:`bytes` object or a string that will be " +"encoded using UTF-8)." msgstr "" -#: library/uuid.rst:205 +#: library/uuid.rst:206 msgid "Generate a random UUID." msgstr "" -#: library/uuid.rst:212 +#: library/uuid.rst:213 msgid "" "Generate a UUID based on the SHA-1 hash of a namespace identifier (which is " -"a UUID) and a name (which is a string)." +"a UUID) and a name (which is a :class:`bytes` object or a string that will " +"be encoded using UTF-8)." msgstr "" -#: library/uuid.rst:217 +#: library/uuid.rst:219 msgid "" "The :mod:`uuid` module defines the following namespace identifiers for use " "with :func:`uuid3` or :func:`uuid5`." msgstr "" -#: library/uuid.rst:223 +#: library/uuid.rst:225 msgid "" "When this namespace is specified, the *name* string is a fully qualified " "domain name." msgstr "" -#: library/uuid.rst:229 +#: library/uuid.rst:231 msgid "When this namespace is specified, the *name* string is a URL." msgstr "" -#: library/uuid.rst:234 +#: library/uuid.rst:236 msgid "When this namespace is specified, the *name* string is an ISO OID." msgstr "" -#: library/uuid.rst:239 +#: library/uuid.rst:241 msgid "" "When this namespace is specified, the *name* string is an X.500 DN in DER or " "a text output format." msgstr "" -#: library/uuid.rst:242 +#: library/uuid.rst:244 msgid "" "The :mod:`uuid` module defines the following constants for the possible " "values of the :attr:`~UUID.variant` attribute:" msgstr "" -#: library/uuid.rst:248 +#: library/uuid.rst:250 msgid "Reserved for NCS compatibility." msgstr "" -#: library/uuid.rst:253 +#: library/uuid.rst:255 msgid "Specifies the UUID layout given in :rfc:`4122`." msgstr "" -#: library/uuid.rst:258 +#: library/uuid.rst:260 msgid "Reserved for Microsoft compatibility." msgstr "" -#: library/uuid.rst:263 +#: library/uuid.rst:265 msgid "Reserved for future definition." msgstr "" -#: library/uuid.rst:269 +#: library/uuid.rst:271 msgid ":rfc:`4122` - A Universally Unique IDentifier (UUID) URN Namespace" msgstr "" -#: library/uuid.rst:269 +#: library/uuid.rst:271 msgid "" "This specification defines a Uniform Resource Name namespace for UUIDs, the " "internal format of UUIDs, and methods of generating UUIDs." msgstr "" -#: library/uuid.rst:276 +#: library/uuid.rst:278 +msgid "Command-Line Usage" +msgstr "" + +#: library/uuid.rst:282 +msgid "" +"The :mod:`uuid` module can be executed as a script from the command line." +msgstr "" + +#: library/uuid.rst:288 +msgid "The following options are accepted:" +msgstr "" + +#: library/uuid.rst:294 +msgid "Show the help message and exit." +msgstr "" + +#: library/uuid.rst:299 +msgid "" +"Specify the function name to use to generate the uuid. By default :func:" +"`uuid4` is used." +msgstr "" + +#: library/uuid.rst:305 +msgid "" +"The namespace is a ``UUID``, or ``@ns`` where ``ns`` is a well-known " +"predefined UUID addressed by namespace name. Such as ``@dns``, ``@url``, " +"``@oid``, and ``@x500``. Only required for :func:`uuid3` / :func:`uuid5` " +"functions." +msgstr "" + +#: library/uuid.rst:312 +msgid "" +"The name used as part of generating the uuid. Only required for :func:" +"`uuid3` / :func:`uuid5` functions." +msgstr "" + +#: library/uuid.rst:319 msgid "Example" msgstr "" -#: library/uuid.rst:278 +#: library/uuid.rst:321 msgid "Here are some examples of typical usage of the :mod:`uuid` module::" msgstr "" +#: library/uuid.rst:360 +msgid "Command-Line Example" +msgstr "" + +#: library/uuid.rst:362 +msgid "" +"Here are some examples of typical usage of the :mod:`uuid` command line " +"interface:" +msgstr "" + #: library/uuid.rst:182 msgid "getnode" msgstr "" @@ -305,14 +354,14 @@ msgstr "" msgid "uuid1" msgstr "" -#: library/uuid.rst:200 +#: library/uuid.rst:201 msgid "uuid3" msgstr "" -#: library/uuid.rst:207 +#: library/uuid.rst:208 msgid "uuid4" msgstr "" -#: library/uuid.rst:215 +#: library/uuid.rst:217 msgid "uuid5" msgstr "" diff --git a/library/venv.po b/library/venv.po index 81775e07f..520790b35 100644 --- a/library/venv.po +++ b/library/venv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -148,63 +148,67 @@ msgstr "" msgid "The command, if run with ``-h``, will show the available options::" msgstr "" -#: using/venv-create.inc:70 +#: using/venv-create.inc:72 +msgid "``setuptools`` is no longer a core venv dependency." +msgstr "" + +#: using/venv-create.inc:74 msgid "" "Add ``--upgrade-deps`` option to upgrade pip + setuptools to the latest on " "PyPI" msgstr "" -#: using/venv-create.inc:73 +#: using/venv-create.inc:77 msgid "" "Installs pip by default, added the ``--without-pip`` and ``--copies`` " "options" msgstr "" -#: using/venv-create.inc:77 +#: using/venv-create.inc:81 msgid "" "In earlier versions, if the target directory already existed, an error was " "raised, unless the ``--clear`` or ``--upgrade`` option was provided." msgstr "" -#: using/venv-create.inc:82 +#: using/venv-create.inc:86 msgid "" "While symlinks are supported on Windows, they are not recommended. Of " "particular note is that double-clicking ``python.exe`` in File Explorer will " "resolve the symlink eagerly and ignore the virtual environment." msgstr "" -#: using/venv-create.inc:87 +#: using/venv-create.inc:91 msgid "" "On Microsoft Windows, it may be required to enable the ``Activate.ps1`` " "script by setting the execution policy for the user. You can do this by " "issuing the following PowerShell command:" msgstr "" -#: using/venv-create.inc:91 +#: using/venv-create.inc:95 msgid "" "PS C:\\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser" msgstr "" -#: using/venv-create.inc:93 +#: using/venv-create.inc:97 msgid "" "See `About Execution Policies `_ for more information." msgstr "" -#: using/venv-create.inc:97 +#: using/venv-create.inc:101 msgid "" "The created ``pyvenv.cfg`` file also includes the ``include-system-site-" "packages`` key, set to ``true`` if ``venv`` is run with the ``--system-site-" "packages`` option, ``false`` otherwise." msgstr "" -#: using/venv-create.inc:101 +#: using/venv-create.inc:105 msgid "" "Unless the ``--without-pip`` option is given, :mod:`ensurepip` will be " "invoked to bootstrap ``pip`` into the virtual environment." msgstr "" -#: using/venv-create.inc:104 +#: using/venv-create.inc:108 msgid "" "Multiple paths can be given to ``venv``, in which case an identical virtual " "environment will be created, according to the given options, at each " @@ -425,15 +429,15 @@ msgstr "" msgid "``upgrade_deps`` -- Update the base venv modules to the latest on PyPI" msgstr "" -#: library/venv.rst:369 +#: library/venv.rst:372 msgid "Added the ``with_pip`` parameter" msgstr "" -#: library/venv.rst:372 +#: library/venv.rst:375 msgid "Added the ``prompt`` parameter" msgstr "" -#: library/venv.rst:375 +#: library/venv.rst:378 msgid "Added the ``upgrade_deps`` parameter" msgstr "" @@ -574,40 +578,40 @@ msgstr "" #: library/venv.rst:306 msgid "" -"Upgrades the core venv dependency packages (currently ``pip`` and " -"``setuptools``) in the environment. This is done by shelling out to the " -"``pip`` executable in the environment." +"Upgrades the core venv dependency packages (currently ``pip``) in the " +"environment. This is done by shelling out to the ``pip`` executable in the " +"environment." msgstr "" -#: library/venv.rst:314 +#: library/venv.rst:317 msgid "" "A placeholder method which can be overridden in third party implementations " "to pre-install packages in the virtual environment or perform other post-" "creation steps." msgstr "" -#: library/venv.rst:318 +#: library/venv.rst:321 msgid "" "Windows now uses redirector scripts for ``python[w].exe`` instead of copying " "the actual binaries. In 3.7.2 only :meth:`setup_python` does nothing unless " "running from a build in the source tree." msgstr "" -#: library/venv.rst:323 +#: library/venv.rst:326 msgid "" "Windows copies the redirector scripts as part of :meth:`setup_python` " "instead of :meth:`setup_scripts`. This was not the case in 3.7.2. When using " "symlinks, the original executables will be linked." msgstr "" -#: library/venv.rst:328 +#: library/venv.rst:331 msgid "" "In addition, :class:`EnvBuilder` provides this utility method that can be " "called from :meth:`setup_scripts` or :meth:`post_setup` in subclasses to " "assist in installing custom scripts into the virtual environment." msgstr "" -#: library/venv.rst:334 +#: library/venv.rst:337 msgid "" "*path* is the path to a directory that should contain subdirectories " "\"common\", \"posix\", \"nt\", each containing scripts destined for the bin " @@ -616,64 +620,64 @@ msgid "" "placeholders:" msgstr "" -#: library/venv.rst:340 +#: library/venv.rst:343 msgid "" "``__VENV_DIR__`` is replaced with the absolute path of the environment " "directory." msgstr "" -#: library/venv.rst:343 +#: library/venv.rst:346 msgid "" "``__VENV_NAME__`` is replaced with the environment name (final path segment " "of environment directory)." msgstr "" -#: library/venv.rst:346 +#: library/venv.rst:349 msgid "" "``__VENV_PROMPT__`` is replaced with the prompt (the environment name " "surrounded by parentheses and with a following space)" msgstr "" -#: library/venv.rst:349 +#: library/venv.rst:352 msgid "" "``__VENV_BIN_NAME__`` is replaced with the name of the bin directory (either " "``bin`` or ``Scripts``)." msgstr "" -#: library/venv.rst:352 +#: library/venv.rst:355 msgid "" "``__VENV_PYTHON__`` is replaced with the absolute path of the environment's " "executable." msgstr "" -#: library/venv.rst:355 +#: library/venv.rst:358 msgid "" "The directories are allowed to exist (for when an existing environment is " "being upgraded)." msgstr "" -#: library/venv.rst:358 +#: library/venv.rst:361 msgid "There is also a module-level convenience function:" msgstr "" -#: library/venv.rst:364 +#: library/venv.rst:367 msgid "" "Create an :class:`EnvBuilder` with the given keyword arguments, and call " "its :meth:`~EnvBuilder.create` method with the *env_dir* argument." msgstr "" -#: library/venv.rst:379 +#: library/venv.rst:382 msgid "An example of extending ``EnvBuilder``" msgstr "" -#: library/venv.rst:381 +#: library/venv.rst:384 msgid "" "The following script shows how to extend :class:`EnvBuilder` by implementing " "a subclass which installs setuptools and pip into a created virtual " "environment::" msgstr "" -#: library/venv.rst:600 +#: library/venv.rst:595 msgid "" "This script is also available for download `online `_." diff --git a/library/warnings.po b/library/warnings.po index 9f36663c3..b62bc6690 100644 --- a/library/warnings.po +++ b/library/warnings.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -582,22 +582,45 @@ msgstr "" #: library/warnings.rst:413 msgid "" -"This makes the warning refer to :func:`deprecation`'s caller, rather than to " -"the source of :func:`deprecation` itself (since the latter would defeat the " +"This makes the warning refer to ``deprecated_api``'s caller, rather than to " +"the source of ``deprecated_api`` itself (since the latter would defeat the " "purpose of the warning message)." msgstr "" +#: library/warnings.rst:417 +msgid "" +"The *skip_file_prefixes* keyword argument can be used to indicate which " +"stack frames are ignored when counting stack levels. This can be useful when " +"you want the warning to always appear at call sites outside of a package " +"when a constant *stacklevel* does not fit all call paths or is otherwise " +"challenging to maintain. If supplied, it must be a tuple of strings. When " +"prefixes are supplied, stacklevel is implicitly overridden to be ``max(2, " +"stacklevel)``. To cause a warning to be attributed to the caller from " +"outside of the current package you might write::" +msgstr "" + #: library/warnings.rst:440 msgid "" +"This makes the warning refer to both the ``example.lower.one_way()`` and " +"``package.higher.another_way()`` call sites only from calling code living " +"outside of ``example`` package." +msgstr "" + +#: library/warnings.rst:470 +msgid "" "*source*, if supplied, is the destroyed object which emitted a :exc:" "`ResourceWarning`." msgstr "" -#: library/warnings.rst:420 +#: library/warnings.rst:447 msgid "Added *source* parameter." msgstr "" -#: library/warnings.rst:426 +#: library/warnings.rst:450 +msgid "Added *skip_file_prefixes*." +msgstr "" + +#: library/warnings.rst:456 msgid "" "This is a low-level interface to the functionality of :func:`warn`, passing " "in explicitly the message, category, filename and line number, and " @@ -609,7 +632,7 @@ msgid "" "case *category* will be ignored." msgstr "" -#: library/warnings.rst:435 +#: library/warnings.rst:465 msgid "" "*module_globals*, if supplied, should be the global namespace in use by the " "code for which the warning is issued. (This argument is used to support " @@ -617,11 +640,11 @@ msgid "" "import sources)." msgstr "" -#: library/warnings.rst:443 +#: library/warnings.rst:473 msgid "Add the *source* parameter." msgstr "" -#: library/warnings.rst:449 +#: library/warnings.rst:479 msgid "" "Write a warning to a file. The default implementation calls " "``formatwarning(message, category, filename, lineno, line)`` and writes the " @@ -632,7 +655,7 @@ msgid "" "line specified by *filename* and *lineno*." msgstr "" -#: library/warnings.rst:460 +#: library/warnings.rst:490 msgid "" "Format a warning the standard way. This returns a string which may contain " "embedded newlines and ends in a newline. *line* is a line of source code to " @@ -641,7 +664,7 @@ msgid "" "*lineno*." msgstr "" -#: library/warnings.rst:469 +#: library/warnings.rst:499 msgid "" "Insert an entry into the list of :ref:`warnings filter specifications " "`. The entry is inserted at the front by default; if " @@ -653,7 +676,7 @@ msgid "" "everything." msgstr "" -#: library/warnings.rst:481 +#: library/warnings.rst:511 msgid "" "Insert a simple entry into the list of :ref:`warnings filter specifications " "`. The meaning of the function parameters is as for :func:" @@ -662,18 +685,18 @@ msgid "" "and line number match." msgstr "" -#: library/warnings.rst:490 +#: library/warnings.rst:520 msgid "" "Reset the warnings filter. This discards the effect of all previous calls " "to :func:`filterwarnings`, including that of the :option:`-W` command line " "options and calls to :func:`simplefilter`." msgstr "" -#: library/warnings.rst:496 +#: library/warnings.rst:526 msgid "Available Context Managers" msgstr "" -#: library/warnings.rst:500 +#: library/warnings.rst:530 msgid "" "A context manager that copies and, upon exit, restores the warnings filter " "and the :func:`showwarning` function. If the *record* argument is :const:" @@ -684,21 +707,21 @@ msgid "" "has attributes with the same names as the arguments to :func:`showwarning`." msgstr "" -#: library/warnings.rst:509 +#: library/warnings.rst:539 msgid "" "The *module* argument takes a module that will be used instead of the module " "returned when you import :mod:`warnings` whose filter will be protected. " "This argument exists primarily for testing the :mod:`warnings` module itself." msgstr "" -#: library/warnings.rst:514 +#: library/warnings.rst:544 msgid "" "If the *action* argument is not ``None``, the remaining arguments are passed " "to :func:`simplefilter` as if it were called immediately on entering the " "context." msgstr "" -#: library/warnings.rst:520 +#: library/warnings.rst:550 msgid "" "The :class:`catch_warnings` manager works by replacing and then later " "restoring the module's :func:`showwarning` function and internal list of " @@ -706,7 +729,7 @@ msgid "" "state and therefore is not thread-safe." msgstr "" -#: library/warnings.rst:528 +#: library/warnings.rst:558 msgid "Added the *action*, *category*, *lineno*, and *append* parameters." msgstr "" diff --git a/library/wave.po b/library/wave.po index 55a049eee..357e8e360 100644 --- a/library/wave.po +++ b/library/wave.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -27,42 +27,47 @@ msgstr "" #: library/wave.rst:14 msgid "" "The :mod:`wave` module provides a convenient interface to the Waveform Audio " -"\"WAVE\" (or \"WAV\") file format. Only files using ``WAVE_FORMAT_PCM`` are " -"supported. Note that this does not include files using " -"``WAVE_FORMAT_EXTENSIBLE`` even if the subformat is PCM." +"\"WAVE\" (or \"WAV\") file format. Only uncompressed PCM encoded wave files " +"are supported." msgstr "" -#: library/wave.rst:19 +#: library/wave.rst:20 +msgid "" +"Support for ``WAVE_FORMAT_EXTENSIBLE`` headers was added, provided that the " +"extended format is ``KSDATAFORMAT_SUBTYPE_PCM``." +msgstr "" + +#: library/wave.rst:23 msgid "The :mod:`wave` module defines the following function and exception:" msgstr "" -#: library/wave.rst:24 +#: library/wave.rst:28 msgid "" "If *file* is a string, open the file by that name, otherwise treat it as a " "file-like object. *mode* can be:" msgstr "" -#: library/wave.rst:28 +#: library/wave.rst:32 msgid "``'rb'``" msgstr "" -#: library/wave.rst:28 +#: library/wave.rst:32 msgid "Read only mode." msgstr "" -#: library/wave.rst:31 +#: library/wave.rst:35 msgid "``'wb'``" msgstr "" -#: library/wave.rst:31 +#: library/wave.rst:35 msgid "Write only mode." msgstr "" -#: library/wave.rst:33 +#: library/wave.rst:37 msgid "Note that it does not allow read/write WAV files." msgstr "" -#: library/wave.rst:35 +#: library/wave.rst:39 msgid "" "A *mode* of ``'rb'`` returns a :class:`Wave_read` object, while a *mode* of " "``'wb'`` returns a :class:`Wave_write` object. If *mode* is omitted and a " @@ -70,132 +75,132 @@ msgid "" "value for *mode*." msgstr "" -#: library/wave.rst:40 +#: library/wave.rst:44 msgid "" "If you pass in a file-like object, the wave object will not close it when " "its ``close()`` method is called; it is the caller's responsibility to close " "the file object." msgstr "" -#: library/wave.rst:44 +#: library/wave.rst:48 msgid "" "The :func:`.open` function may be used in a :keyword:`with` statement. When " "the :keyword:`!with` block completes, the :meth:`Wave_read.close()` or :meth:" "`Wave_write.close()` method is called." msgstr "" -#: library/wave.rst:172 +#: library/wave.rst:176 msgid "Added support for unseekable files." msgstr "" -#: library/wave.rst:53 +#: library/wave.rst:57 msgid "" "An error raised when something is impossible because it violates the WAV " "specification or hits an implementation deficiency." msgstr "" -#: library/wave.rst:60 +#: library/wave.rst:64 msgid "Wave_read Objects" msgstr "" -#: library/wave.rst:64 +#: library/wave.rst:68 msgid "Read a WAV file." msgstr "" -#: library/wave.rst:66 +#: library/wave.rst:70 msgid "" "Wave_read objects, as returned by :func:`.open`, have the following methods:" msgstr "" -#: library/wave.rst:71 +#: library/wave.rst:75 msgid "" "Close the stream if it was opened by :mod:`wave`, and make the instance " "unusable. This is called automatically on object collection." msgstr "" -#: library/wave.rst:77 +#: library/wave.rst:81 msgid "Returns number of audio channels (``1`` for mono, ``2`` for stereo)." msgstr "" -#: library/wave.rst:82 +#: library/wave.rst:86 msgid "Returns sample width in bytes." msgstr "" -#: library/wave.rst:87 +#: library/wave.rst:91 msgid "Returns sampling frequency." msgstr "" -#: library/wave.rst:92 +#: library/wave.rst:96 msgid "Returns number of audio frames." msgstr "" -#: library/wave.rst:97 +#: library/wave.rst:101 msgid "Returns compression type (``'NONE'`` is the only supported type)." msgstr "" -#: library/wave.rst:102 +#: library/wave.rst:106 msgid "" "Human-readable version of :meth:`getcomptype`. Usually ``'not compressed'`` " "parallels ``'NONE'``." msgstr "" -#: library/wave.rst:108 +#: library/wave.rst:112 msgid "" "Returns a :func:`~collections.namedtuple` ``(nchannels, sampwidth, " "framerate, nframes, comptype, compname)``, equivalent to output of the " "``get*()`` methods." msgstr "" -#: library/wave.rst:115 +#: library/wave.rst:119 msgid "" "Reads and returns at most *n* frames of audio, as a :class:`bytes` object." msgstr "" -#: library/wave.rst:120 +#: library/wave.rst:124 msgid "Rewind the file pointer to the beginning of the audio stream." msgstr "" -#: library/wave.rst:122 +#: library/wave.rst:126 msgid "" "The following two methods are defined for compatibility with the :mod:`aifc` " "module, and don't do anything interesting." msgstr "" -#: library/wave.rst:128 +#: library/wave.rst:132 msgid "Returns ``None``." msgstr "" -#: library/wave.rst:133 +#: library/wave.rst:137 msgid "Raise an error." msgstr "" -#: library/wave.rst:135 +#: library/wave.rst:139 msgid "" "The following two methods define a term \"position\" which is compatible " "between them, and is otherwise implementation dependent." msgstr "" -#: library/wave.rst:141 +#: library/wave.rst:145 msgid "Set the file pointer to the specified position." msgstr "" -#: library/wave.rst:146 +#: library/wave.rst:150 msgid "Return current file pointer position." msgstr "" -#: library/wave.rst:152 +#: library/wave.rst:156 msgid "Wave_write Objects" msgstr "" -#: library/wave.rst:156 +#: library/wave.rst:160 msgid "Write a WAV file." msgstr "" -#: library/wave.rst:158 +#: library/wave.rst:162 msgid "Wave_write objects, as returned by :func:`.open`." msgstr "" -#: library/wave.rst:160 +#: library/wave.rst:164 msgid "" "For seekable output streams, the ``wave`` header will automatically be " "updated to reflect the number of frames actually written. For unseekable " @@ -209,11 +214,11 @@ msgid "" "*nframes* accordingly before writing the frame data." msgstr "" -#: library/wave.rst:175 +#: library/wave.rst:179 msgid "Wave_write objects have the following methods:" msgstr "" -#: library/wave.rst:179 +#: library/wave.rst:183 msgid "" "Make sure *nframes* is correct, and close the file if it was opened by :mod:" "`wave`. This method is called upon object collection. It will raise an " @@ -221,57 +226,57 @@ msgid "" "the number of frames actually written." msgstr "" -#: library/wave.rst:187 +#: library/wave.rst:191 msgid "Set the number of channels." msgstr "" -#: library/wave.rst:192 +#: library/wave.rst:196 msgid "Set the sample width to *n* bytes." msgstr "" -#: library/wave.rst:197 +#: library/wave.rst:201 msgid "Set the frame rate to *n*." msgstr "" -#: library/wave.rst:199 +#: library/wave.rst:203 msgid "A non-integral input to this method is rounded to the nearest integer." msgstr "" -#: library/wave.rst:206 +#: library/wave.rst:210 msgid "" "Set the number of frames to *n*. This will be changed later if the number " "of frames actually written is different (this update attempt will raise an " "error if the output stream is not seekable)." msgstr "" -#: library/wave.rst:213 +#: library/wave.rst:217 msgid "" "Set the compression type and description. At the moment, only compression " "type ``NONE`` is supported, meaning no compression." msgstr "" -#: library/wave.rst:219 +#: library/wave.rst:223 msgid "" "The *tuple* should be ``(nchannels, sampwidth, framerate, nframes, comptype, " "compname)``, with values valid for the ``set*()`` methods. Sets all " "parameters." msgstr "" -#: library/wave.rst:226 +#: library/wave.rst:230 msgid "" "Return current position in the file, with the same disclaimer for the :meth:" "`Wave_read.tell` and :meth:`Wave_read.setpos` methods." msgstr "" -#: library/wave.rst:232 +#: library/wave.rst:236 msgid "Write audio frames, without correcting *nframes*." msgstr "" -#: library/wave.rst:245 +#: library/wave.rst:249 msgid "Any :term:`bytes-like object` is now accepted." msgstr "" -#: library/wave.rst:240 +#: library/wave.rst:244 msgid "" "Write audio frames and make sure *nframes* is correct. It will raise an " "error if the output stream is not seekable and the total number of frames " @@ -279,7 +284,7 @@ msgid "" "previously set value for *nframes*." msgstr "" -#: library/wave.rst:248 +#: library/wave.rst:252 msgid "" "Note that it is invalid to set any parameters after calling :meth:" "`writeframes` or :meth:`writeframesraw`, and any attempt to do so will " diff --git a/library/webbrowser.po b/library/webbrowser.po index 057694063..3e70b63e4 100644 --- a/library/webbrowser.po +++ b/library/webbrowser.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -186,182 +186,142 @@ msgid "``'firefox'``" msgstr "" #: library/webbrowser.rst:118 -msgid "``'netscape'``" +msgid "``'epiphany'``" msgstr "" #: library/webbrowser.rst:118 -msgid ":class:`Mozilla('netscape')`" -msgstr "" - -#: library/webbrowser.rst:120 -msgid "``'galeon'``" +msgid ":class:`Epiphany('epiphany')`" msgstr "" #: library/webbrowser.rst:120 -msgid ":class:`Galeon('galeon')`" -msgstr "" - -#: library/webbrowser.rst:122 -msgid "``'epiphany'``" -msgstr "" - -#: library/webbrowser.rst:122 -msgid ":class:`Galeon('epiphany')`" -msgstr "" - -#: library/webbrowser.rst:124 -msgid "``'skipstone'``" -msgstr "" - -#: library/webbrowser.rst:124 -msgid ":class:`BackgroundBrowser('skipstone')`" -msgstr "" - -#: library/webbrowser.rst:126 msgid "``'kfmclient'``" msgstr "" -#: library/webbrowser.rst:128 library/webbrowser.rst:130 +#: library/webbrowser.rst:122 library/webbrowser.rst:124 msgid ":class:`Konqueror()`" msgstr "" -#: library/webbrowser.rst:128 library/webbrowser.rst:130 +#: library/webbrowser.rst:122 library/webbrowser.rst:124 msgid "\\(1)" msgstr "" -#: library/webbrowser.rst:128 +#: library/webbrowser.rst:122 msgid "``'konqueror'``" msgstr "" -#: library/webbrowser.rst:130 +#: library/webbrowser.rst:124 msgid "``'kfm'``" msgstr "" -#: library/webbrowser.rst:132 -msgid "``'mosaic'``" -msgstr "" - -#: library/webbrowser.rst:132 -msgid ":class:`BackgroundBrowser('mosaic')`" -msgstr "" - -#: library/webbrowser.rst:134 +#: library/webbrowser.rst:126 msgid "``'opera'``" msgstr "" -#: library/webbrowser.rst:134 +#: library/webbrowser.rst:126 msgid ":class:`Opera()`" msgstr "" -#: library/webbrowser.rst:136 -msgid "``'grail'``" -msgstr "" - -#: library/webbrowser.rst:136 -msgid ":class:`Grail()`" -msgstr "" - -#: library/webbrowser.rst:138 +#: library/webbrowser.rst:128 msgid "``'links'``" msgstr "" -#: library/webbrowser.rst:138 +#: library/webbrowser.rst:128 msgid ":class:`GenericBrowser('links')`" msgstr "" -#: library/webbrowser.rst:140 +#: library/webbrowser.rst:130 msgid "``'elinks'``" msgstr "" -#: library/webbrowser.rst:140 +#: library/webbrowser.rst:130 msgid ":class:`Elinks('elinks')`" msgstr "" -#: library/webbrowser.rst:142 +#: library/webbrowser.rst:132 msgid "``'lynx'``" msgstr "" -#: library/webbrowser.rst:142 +#: library/webbrowser.rst:132 msgid ":class:`GenericBrowser('lynx')`" msgstr "" -#: library/webbrowser.rst:144 +#: library/webbrowser.rst:134 msgid "``'w3m'``" msgstr "" -#: library/webbrowser.rst:144 +#: library/webbrowser.rst:134 msgid ":class:`GenericBrowser('w3m')`" msgstr "" -#: library/webbrowser.rst:146 +#: library/webbrowser.rst:136 msgid "``'windows-default'``" msgstr "" -#: library/webbrowser.rst:146 +#: library/webbrowser.rst:136 msgid ":class:`WindowsDefault`" msgstr "" -#: library/webbrowser.rst:146 +#: library/webbrowser.rst:136 msgid "\\(2)" msgstr "" -#: library/webbrowser.rst:148 +#: library/webbrowser.rst:138 msgid "``'macosx'``" msgstr "" -#: library/webbrowser.rst:148 +#: library/webbrowser.rst:138 msgid ":class:`MacOSXOSAScript('default')`" msgstr "" -#: library/webbrowser.rst:150 +#: library/webbrowser.rst:140 msgid "\\(3)" msgstr "" -#: library/webbrowser.rst:150 +#: library/webbrowser.rst:140 msgid "``'safari'``" msgstr "" -#: library/webbrowser.rst:150 +#: library/webbrowser.rst:140 msgid ":class:`MacOSXOSAScript('safari')`" msgstr "" -#: library/webbrowser.rst:152 +#: library/webbrowser.rst:142 msgid "``'google-chrome'``" msgstr "" -#: library/webbrowser.rst:152 +#: library/webbrowser.rst:142 msgid ":class:`Chrome('google-chrome')`" msgstr "" -#: library/webbrowser.rst:154 +#: library/webbrowser.rst:144 msgid "``'chrome'``" msgstr "" -#: library/webbrowser.rst:154 +#: library/webbrowser.rst:144 msgid ":class:`Chrome('chrome')`" msgstr "" -#: library/webbrowser.rst:156 +#: library/webbrowser.rst:146 msgid "``'chromium'``" msgstr "" -#: library/webbrowser.rst:156 +#: library/webbrowser.rst:146 msgid ":class:`Chromium('chromium')`" msgstr "" -#: library/webbrowser.rst:158 +#: library/webbrowser.rst:148 msgid "``'chromium-browser'``" msgstr "" -#: library/webbrowser.rst:158 +#: library/webbrowser.rst:148 msgid ":class:`Chromium('chromium-browser')`" msgstr "" -#: library/webbrowser.rst:161 +#: library/webbrowser.rst:151 msgid "Notes:" msgstr "" -#: library/webbrowser.rst:164 +#: library/webbrowser.rst:154 msgid "" "\"Konqueror\" is the file manager for the KDE desktop environment for Unix, " "and only makes sense to use if KDE is running. Some way of reliably " @@ -371,65 +331,72 @@ msgid "" "best strategy for running Konqueror." msgstr "" -#: library/webbrowser.rst:171 +#: library/webbrowser.rst:161 msgid "Only on Windows platforms." msgstr "" -#: library/webbrowser.rst:174 +#: library/webbrowser.rst:164 msgid "Only on macOS platform." msgstr "" -#: library/webbrowser.rst:176 +#: library/webbrowser.rst:166 msgid "Support for Chrome/Chromium has been added." msgstr "" -#: library/webbrowser.rst:181 +#: library/webbrowser.rst:169 +msgid "" +"Support for several obsolete browsers has been removed. Removed browsers " +"include Grail, Mosaic, Netscape, Galeon, Skipstone, Iceape, and Firefox " +"versions 35 and below." +msgstr "" + +#: library/webbrowser.rst:176 msgid ":class:`MacOSX` is deprecated, use :class:`MacOSXOSAScript` instead." msgstr "" -#: library/webbrowser.rst:182 +#: library/webbrowser.rst:177 msgid "Here are some simple examples::" msgstr "" -#: library/webbrowser.rst:196 +#: library/webbrowser.rst:191 msgid "Browser Controller Objects" msgstr "" -#: library/webbrowser.rst:198 +#: library/webbrowser.rst:193 msgid "" "Browser controllers provide these methods which parallel three of the module-" "level convenience functions:" msgstr "" -#: library/webbrowser.rst:204 +#: library/webbrowser.rst:199 msgid "System-dependent name for the browser." msgstr "" -#: library/webbrowser.rst:209 +#: library/webbrowser.rst:204 msgid "" "Display *url* using the browser handled by this controller. If *new* is 1, a " "new browser window is opened if possible. If *new* is 2, a new browser page " "(\"tab\") is opened if possible." msgstr "" -#: library/webbrowser.rst:216 +#: library/webbrowser.rst:211 msgid "" "Open *url* in a new window of the browser handled by this controller, if " "possible, otherwise, open *url* in the only browser window. Alias :func:" "`open_new`." msgstr "" -#: library/webbrowser.rst:223 +#: library/webbrowser.rst:218 msgid "" "Open *url* in a new page (\"tab\") of the browser handled by this " "controller, if possible, otherwise equivalent to :func:`open_new`." msgstr "" -#: library/webbrowser.rst:228 +#: library/webbrowser.rst:223 msgid "Footnotes" msgstr "" -#: library/webbrowser.rst:229 +#: library/webbrowser.rst:224 msgid "" "Executables named here without a full path will be searched in the " "directories given in the :envvar:`PATH` environment variable." diff --git a/library/xml.etree.elementtree.po b/library/xml.etree.elementtree.po index 88084d62e..b7c9fbb60 100644 --- a/library/xml.etree.elementtree.po +++ b/library/xml.etree.elementtree.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -659,7 +659,7 @@ msgid "" "present." msgstr "" -#: library/xml.etree.elementtree.rst:639 library/xml.etree.elementtree.rst:1469 +#: library/xml.etree.elementtree.rst:639 library/xml.etree.elementtree.rst:1473 msgid "If you need a fully populated element, look for \"end\" events instead." msgstr "" @@ -667,7 +667,7 @@ msgstr "" msgid "The *parser* argument." msgstr "" -#: library/xml.etree.elementtree.rst:644 library/xml.etree.elementtree.rst:1473 +#: library/xml.etree.elementtree.rst:644 library/xml.etree.elementtree.rst:1477 msgid "The ``comment`` and ``pi`` events were added." msgstr "" @@ -732,7 +732,7 @@ msgid "" msgstr "" #: library/xml.etree.elementtree.rst:705 library/xml.etree.elementtree.rst:732 -#: library/xml.etree.elementtree.rst:1181 +#: library/xml.etree.elementtree.rst:1184 msgid "The *short_empty_elements* parameter." msgstr "" @@ -1066,12 +1066,16 @@ msgstr "" #: library/xml.etree.elementtree.rst:1048 msgid "" -"Caution: Elements with no subelements will test as ``False``. This behavior " -"will change in future versions. Use specific ``len(elem)`` or ``elem is " -"None`` test instead. ::" +"Caution: Elements with no subelements will test as ``False``. Testing the " +"truth value of an Element is deprecated and will raise an exception in " +"Python 3.14. Use specific ``len(elem)`` or ``elem is None`` test instead.::" msgstr "" #: library/xml.etree.elementtree.rst:1060 +msgid "Testing the truth value of an Element emits :exc:`DeprecationWarning`." +msgstr "" + +#: library/xml.etree.elementtree.rst:1063 msgid "" "Prior to Python 3.8, the serialisation order of the XML attributes of " "elements was artificially made predictable by sorting the attributes by " @@ -1080,7 +1084,7 @@ msgid "" "attributes were originally parsed or created by user code." msgstr "" -#: library/xml.etree.elementtree.rst:1066 +#: library/xml.etree.elementtree.rst:1069 msgid "" "In general, user code should try not to depend on a specific ordering of " "attributes, given that the `XML Information Set `_ writer. Arguments are the " "same as for the :func:`canonicalize` function. This class does not build a " @@ -1316,11 +1320,11 @@ msgid "" "using the *write* function." msgstr "" -#: library/xml.etree.elementtree.rst:1344 +#: library/xml.etree.elementtree.rst:1348 msgid "XMLParser Objects" msgstr "" -#: library/xml.etree.elementtree.rst:1349 +#: library/xml.etree.elementtree.rst:1353 msgid "" "This class is the low-level building block of the module. It uses :mod:`xml." "parsers.expat` for efficient, event-based parsing of XML. It can be fed XML " @@ -1331,24 +1335,24 @@ msgid "" "XML file." msgstr "" -#: library/xml.etree.elementtree.rst:1357 +#: library/xml.etree.elementtree.rst:1361 msgid "" "Parameters are now :ref:`keyword-only `. The *html* " "argument no longer supported." msgstr "" -#: library/xml.etree.elementtree.rst:1364 +#: library/xml.etree.elementtree.rst:1368 msgid "" "Finishes feeding data to the parser. Returns the result of calling the " "``close()`` method of the *target* passed during construction; by default, " "this is the toplevel document element." msgstr "" -#: library/xml.etree.elementtree.rst:1371 +#: library/xml.etree.elementtree.rst:1375 msgid "Feeds data to the parser. *data* is encoded data." msgstr "" -#: library/xml.etree.elementtree.rst:1373 +#: library/xml.etree.elementtree.rst:1377 msgid "" ":meth:`XMLParser.feed` calls *target*\\'s ``start(tag, attrs_dict)`` method " "for each opening tag, its ``end(tag)`` method for each closing tag, and data " @@ -1359,11 +1363,11 @@ msgid "" "of an XML file::" msgstr "" -#: library/xml.etree.elementtree.rst:1417 +#: library/xml.etree.elementtree.rst:1421 msgid "XMLPullParser Objects" msgstr "" -#: library/xml.etree.elementtree.rst:1421 +#: library/xml.etree.elementtree.rst:1425 msgid "" "A pull parser suitable for non-blocking applications. Its input-side API is " "similar to that of :class:`XMLParser`, but instead of pushing calls to a " @@ -1375,11 +1379,11 @@ msgid "" "If *events* is omitted, only ``\"end\"`` events are reported." msgstr "" -#: library/xml.etree.elementtree.rst:1432 +#: library/xml.etree.elementtree.rst:1436 msgid "Feed the given bytes data to the parser." msgstr "" -#: library/xml.etree.elementtree.rst:1436 +#: library/xml.etree.elementtree.rst:1440 msgid "" "Signal the parser that the data stream is terminated. Unlike :meth:" "`XMLParser.close`, this method always returns :const:`None`. Any events not " @@ -1387,7 +1391,7 @@ msgid "" "`read_events`." msgstr "" -#: library/xml.etree.elementtree.rst:1443 +#: library/xml.etree.elementtree.rst:1447 msgid "" "Return an iterator over the events which have been encountered in the data " "fed to the parser. The iterator yields ``(event, elem)`` pairs, where " @@ -1396,25 +1400,25 @@ msgid "" "follows." msgstr "" -#: library/xml.etree.elementtree.rst:1449 +#: library/xml.etree.elementtree.rst:1453 msgid "``start``, ``end``: the current Element." msgstr "" -#: library/xml.etree.elementtree.rst:1450 +#: library/xml.etree.elementtree.rst:1454 msgid "``comment``, ``pi``: the current comment / processing instruction" msgstr "" -#: library/xml.etree.elementtree.rst:1451 +#: library/xml.etree.elementtree.rst:1455 msgid "" "``start-ns``: a tuple ``(prefix, uri)`` naming the declared namespace " "mapping." msgstr "" -#: library/xml.etree.elementtree.rst:1453 +#: library/xml.etree.elementtree.rst:1457 msgid "``end-ns``: :const:`None` (this may change in a future version)" msgstr "" -#: library/xml.etree.elementtree.rst:1455 +#: library/xml.etree.elementtree.rst:1459 msgid "" "Events provided in a previous call to :meth:`read_events` will not be " "yielded again. Events are consumed from the internal queue only when they " @@ -1423,7 +1427,7 @@ msgid "" "results." msgstr "" -#: library/xml.etree.elementtree.rst:1463 +#: library/xml.etree.elementtree.rst:1467 msgid "" ":class:`XMLPullParser` only guarantees that it has seen the \">\" character " "of a starting tag when it emits a \"start\" event, so the attributes are " @@ -1432,11 +1436,11 @@ msgid "" "be present." msgstr "" -#: library/xml.etree.elementtree.rst:1478 +#: library/xml.etree.elementtree.rst:1482 msgid "Exceptions" msgstr "" -#: library/xml.etree.elementtree.rst:1482 +#: library/xml.etree.elementtree.rst:1486 msgid "" "XML parse error, raised by the various parsing methods in this module when " "parsing fails. The string representation of an instance of this exception " @@ -1444,22 +1448,22 @@ msgid "" "following attributes available:" msgstr "" -#: library/xml.etree.elementtree.rst:1489 +#: library/xml.etree.elementtree.rst:1493 msgid "" "A numeric error code from the expat parser. See the documentation of :mod:" "`xml.parsers.expat` for the list of error codes and their meanings." msgstr "" -#: library/xml.etree.elementtree.rst:1494 +#: library/xml.etree.elementtree.rst:1498 msgid "" "A tuple of *line*, *column* numbers, specifying where the error occurred." msgstr "" -#: library/xml.etree.elementtree.rst:1497 +#: library/xml.etree.elementtree.rst:1501 msgid "Footnotes" msgstr "" -#: library/xml.etree.elementtree.rst:1498 +#: library/xml.etree.elementtree.rst:1502 msgid "" "The encoding string included in XML output should conform to the appropriate " "standards. For example, \"UTF-8\" is valid, but \"UTF8\" is not. See " diff --git a/library/xml.sax.utils.po b/library/xml.sax.utils.po index c0b26426e..6e94b5689 100644 --- a/library/xml.sax.utils.po +++ b/library/xml.sax.utils.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -43,11 +43,18 @@ msgid "" "``'<'`` and ``'>'`` are always escaped, even if *entities* is provided." msgstr "" -#: library/xml.sax.utils.rst:31 +#: library/xml.sax.utils.rst:30 +msgid "" +"This function should only be used to escape characters that can't be used " +"directly in XML. Do not use this function as a general string translation " +"function." +msgstr "" + +#: library/xml.sax.utils.rst:36 msgid "Unescape ``'&'``, ``'<'``, and ``'>'`` in a string of data." msgstr "" -#: library/xml.sax.utils.rst:33 +#: library/xml.sax.utils.rst:38 msgid "" "You can unescape other strings of data by passing a dictionary as the " "optional *entities* parameter. The keys and values must all be strings; " @@ -56,7 +63,7 @@ msgid "" "provided." msgstr "" -#: library/xml.sax.utils.rst:41 +#: library/xml.sax.utils.rst:46 msgid "" "Similar to :func:`escape`, but also prepares *data* to be used as an " "attribute value. The return value is a quoted version of *data* with any " @@ -68,13 +75,13 @@ msgid "" "directly as an attribute value::" msgstr "" -#: library/xml.sax.utils.rst:53 +#: library/xml.sax.utils.rst:58 msgid "" "This function is useful when generating attribute values for HTML or any " "SGML using the reference concrete syntax." msgstr "" -#: library/xml.sax.utils.rst:59 +#: library/xml.sax.utils.rst:64 msgid "" "This class implements the :class:`~xml.sax.handler.ContentHandler` interface " "by writing SAX events back into an XML document. In other words, using an :" @@ -87,11 +94,11 @@ msgid "" "a single self-closed tag." msgstr "" -#: library/xml.sax.utils.rst:69 +#: library/xml.sax.utils.rst:74 msgid "The *short_empty_elements* parameter." msgstr "" -#: library/xml.sax.utils.rst:75 +#: library/xml.sax.utils.rst:80 msgid "" "This class is designed to sit between an :class:`~xml.sax.xmlreader." "XMLReader` and the client application's event handlers. By default, it does " @@ -100,7 +107,7 @@ msgid "" "stream or the configuration requests as they pass through." msgstr "" -#: library/xml.sax.utils.rst:85 +#: library/xml.sax.utils.rst:90 msgid "" "This function takes an input source and an optional base URL and returns a " "fully resolved :class:`~xml.sax.xmlreader.InputSource` object ready for " diff --git a/library/zipapp.po b/library/zipapp.po index 270dc45ce..d2e4be19b 100644 --- a/library/zipapp.po +++ b/library/zipapp.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -375,73 +375,10 @@ msgid "" msgstr "" #: library/zipapp.rst:302 -msgid "Making a Windows executable" -msgstr "" - -#: library/zipapp.rst:304 -msgid "" -"On Windows, registration of the ``.pyz`` extension is optional, and " -"furthermore, there are certain places that don't recognise registered " -"extensions \"transparently\" (the simplest example is that ``subprocess." -"run(['myapp'])`` won't find your application - you need to explicitly " -"specify the extension)." -msgstr "" - -#: library/zipapp.rst:310 -msgid "" -"On Windows, therefore, it is often preferable to create an executable from " -"the zipapp. This is relatively easy, although it does require a C " -"compiler. The basic approach relies on the fact that zipfiles can have " -"arbitrary data prepended, and Windows exe files can have arbitrary data " -"appended. So by creating a suitable launcher and tacking the ``.pyz`` file " -"onto the end of it, you end up with a single-file executable that runs your " -"application." -msgstr "" - -#: library/zipapp.rst:317 -msgid "A suitable launcher can be as simple as the following::" -msgstr "" - -#: library/zipapp.rst:342 -msgid "" -"If you define the ``WINDOWS`` preprocessor symbol, this will generate a GUI " -"executable, and without it, a console executable." -msgstr "" - -#: library/zipapp.rst:345 -msgid "" -"To compile the executable, you can either just use the standard MSVC command " -"line tools, or you can take advantage of the fact that distutils knows how " -"to compile Python source::" -msgstr "" - -#: library/zipapp.rst:372 -msgid "" -"The resulting launcher uses the \"Limited ABI\", so it will run unchanged " -"with any version of Python 3.x. All it needs is for Python (``python3." -"dll``) to be on the user's ``PATH``." -msgstr "" - -#: library/zipapp.rst:376 -msgid "" -"For a fully standalone distribution, you can distribute the launcher with " -"your application appended, bundled with the Python \"embedded\" " -"distribution. This will run on any PC with the appropriate architecture (32 " -"bit or 64 bit)." -msgstr "" - -#: library/zipapp.rst:382 msgid "Caveats" msgstr "" -#: library/zipapp.rst:384 -msgid "" -"There are some limitations to the process of bundling your application into " -"a single file. In most, if not all, cases they can be addressed without " -"needing major changes to your application." -msgstr "" - -#: library/zipapp.rst:388 +#: library/zipapp.rst:304 msgid "" "If your application depends on a package that includes a C extension, that " "package cannot be run from a zip file (this is an OS limitation, as " @@ -455,30 +392,11 @@ msgid "" "based on the user's machine)." msgstr "" -#: library/zipapp.rst:398 -msgid "" -"If you are shipping a Windows executable as described above, you either need " -"to ensure that your users have ``python3.dll`` on their PATH (which is not " -"the default behaviour of the installer) or you should bundle your " -"application with the embedded distribution." -msgstr "" - -#: library/zipapp.rst:403 -msgid "" -"The suggested launcher above uses the Python embedding API. This means that " -"in your application, ``sys.executable`` will be your application, and *not* " -"a conventional Python interpreter. Your code and its dependencies need to " -"be prepared for this possibility. For example, if your application uses " -"the :mod:`multiprocessing` module, it will need to call :func:" -"`multiprocessing.set_executable` to let the module know where to find the " -"standard Python interpreter." -msgstr "" - -#: library/zipapp.rst:413 +#: library/zipapp.rst:316 msgid "The Python Zip Application Archive Format" msgstr "" -#: library/zipapp.rst:415 +#: library/zipapp.rst:318 msgid "" "Python has been able to execute zip files which contain a ``__main__.py`` " "file since version 2.6. In order to be executed by Python, an application " @@ -489,18 +407,18 @@ msgid "" "the zip file." msgstr "" -#: library/zipapp.rst:422 +#: library/zipapp.rst:325 msgid "" "The zip file format allows arbitrary data to be prepended to a zip file. " "The zip application format uses this ability to prepend a standard POSIX " "\"shebang\" line to the file (``#!/path/to/interpreter``)." msgstr "" -#: library/zipapp.rst:426 +#: library/zipapp.rst:329 msgid "Formally, the Python zip application format is therefore:" msgstr "" -#: library/zipapp.rst:428 +#: library/zipapp.rst:331 msgid "" "An optional shebang line, containing the characters ``b'#!'`` followed by an " "interpreter name, and then a newline (``b'\\n'``) character. The " @@ -510,7 +428,7 @@ msgid "" "POSIX." msgstr "" -#: library/zipapp.rst:433 +#: library/zipapp.rst:336 msgid "" "Standard zipfile data, as generated by the :mod:`zipfile` module. The " "zipfile content *must* include a file called ``__main__.py`` (which must be " @@ -518,13 +436,13 @@ msgid "" "zipfile data can be compressed or uncompressed." msgstr "" -#: library/zipapp.rst:438 +#: library/zipapp.rst:341 msgid "" "If an application archive has a shebang line, it may have the executable bit " "set on POSIX systems, to allow it to be executed directly." msgstr "" -#: library/zipapp.rst:441 +#: library/zipapp.rst:344 msgid "" "There is no requirement that the tools in this module are used to create " "application archives - the module is a convenience, but archives in the " diff --git a/library/zipfile.po b/library/zipfile.po index f36957469..f485787cf 100644 --- a/library/zipfile.po +++ b/library/zipfile.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -21,7 +21,7 @@ msgid ":mod:`zipfile` --- Work with ZIP archives" msgstr "" #: library/zipfile.rst:10 -msgid "**Source code:** :source:`Lib/zipfile.py`" +msgid "**Source code:** :source:`Lib/zipfile/`" msgstr "" #: library/zipfile.rst:14 @@ -204,7 +204,7 @@ msgid "" "accepted (see :class:`bz2 ` for more information)." msgstr "" -#: library/zipfile.rst:734 +#: library/zipfile.rst:735 msgid "" "The *strict_timestamps* argument, when set to ``False``, allows to zip files " "older than 1980-01-01 at the cost of setting the timestamp to 1980-01-01. " @@ -281,7 +281,7 @@ msgstr "" msgid "Add the *compresslevel* parameter." msgstr "" -#: library/zipfile.rst:745 +#: library/zipfile.rst:746 msgid "The *strict_timestamps* keyword-only argument" msgstr "" @@ -788,286 +788,286 @@ msgid "" "exclude them::" msgstr "" -#: library/zipfile.rst:691 +#: library/zipfile.rst:692 msgid "The :meth:`writepy` method makes archives with file names like this::" msgstr "" -#: library/zipfile.rst:700 +#: library/zipfile.rst:701 msgid "The *filterfunc* parameter." msgstr "" -#: library/zipfile.rst:703 +#: library/zipfile.rst:704 msgid "The *pathname* parameter accepts a :term:`path-like object`." msgstr "" -#: library/zipfile.rst:706 +#: library/zipfile.rst:707 msgid "Recursion sorts directory entries." msgstr "" -#: library/zipfile.rst:713 +#: library/zipfile.rst:714 msgid "ZipInfo Objects" msgstr "" -#: library/zipfile.rst:715 +#: library/zipfile.rst:716 msgid "" "Instances of the :class:`ZipInfo` class are returned by the :meth:`.getinfo` " "and :meth:`.infolist` methods of :class:`ZipFile` objects. Each object " "stores information about a single member of the ZIP archive." msgstr "" -#: library/zipfile.rst:719 +#: library/zipfile.rst:720 msgid "" "There is one classmethod to make a :class:`ZipInfo` instance for a " "filesystem file:" msgstr "" -#: library/zipfile.rst:725 +#: library/zipfile.rst:726 msgid "" "Construct a :class:`ZipInfo` instance for a file on the filesystem, in " "preparation for adding it to a zip file." msgstr "" -#: library/zipfile.rst:728 +#: library/zipfile.rst:729 msgid "*filename* should be the path to a file or directory on the filesystem." msgstr "" -#: library/zipfile.rst:730 +#: library/zipfile.rst:731 msgid "" "If *arcname* is specified, it is used as the name within the archive. If " "*arcname* is not specified, the name will be the same as *filename*, but " "with any drive letter and leading path separators removed." msgstr "" -#: library/zipfile.rst:742 +#: library/zipfile.rst:743 msgid "The *filename* parameter accepts a :term:`path-like object`." msgstr "" -#: library/zipfile.rst:749 +#: library/zipfile.rst:750 msgid "Instances have the following methods and attributes:" msgstr "" -#: library/zipfile.rst:753 +#: library/zipfile.rst:754 msgid "Return ``True`` if this archive member is a directory." msgstr "" -#: library/zipfile.rst:755 +#: library/zipfile.rst:756 msgid "This uses the entry's name: directories should always end with ``/``." msgstr "" -#: library/zipfile.rst:762 +#: library/zipfile.rst:763 msgid "Name of the file in the archive." msgstr "" -#: library/zipfile.rst:767 +#: library/zipfile.rst:768 msgid "" "The time and date of the last modification to the archive member. This is a " "tuple of six values:" msgstr "" -#: library/zipfile.rst:771 +#: library/zipfile.rst:772 msgid "Index" msgstr "" -#: library/zipfile.rst:771 +#: library/zipfile.rst:772 msgid "Value" msgstr "" -#: library/zipfile.rst:773 +#: library/zipfile.rst:774 msgid "``0``" msgstr "" -#: library/zipfile.rst:773 +#: library/zipfile.rst:774 msgid "Year (>= 1980)" msgstr "" -#: library/zipfile.rst:775 +#: library/zipfile.rst:776 msgid "``1``" msgstr "" -#: library/zipfile.rst:775 +#: library/zipfile.rst:776 msgid "Month (one-based)" msgstr "" -#: library/zipfile.rst:777 +#: library/zipfile.rst:778 msgid "``2``" msgstr "" -#: library/zipfile.rst:777 +#: library/zipfile.rst:778 msgid "Day of month (one-based)" msgstr "" -#: library/zipfile.rst:779 +#: library/zipfile.rst:780 msgid "``3``" msgstr "" -#: library/zipfile.rst:779 +#: library/zipfile.rst:780 msgid "Hours (zero-based)" msgstr "" -#: library/zipfile.rst:781 +#: library/zipfile.rst:782 msgid "``4``" msgstr "" -#: library/zipfile.rst:781 +#: library/zipfile.rst:782 msgid "Minutes (zero-based)" msgstr "" -#: library/zipfile.rst:783 +#: library/zipfile.rst:784 msgid "``5``" msgstr "" -#: library/zipfile.rst:783 +#: library/zipfile.rst:784 msgid "Seconds (zero-based)" msgstr "" -#: library/zipfile.rst:788 +#: library/zipfile.rst:789 msgid "The ZIP file format does not support timestamps before 1980." msgstr "" -#: library/zipfile.rst:793 +#: library/zipfile.rst:794 msgid "Type of compression for the archive member." msgstr "" -#: library/zipfile.rst:798 +#: library/zipfile.rst:799 msgid "Comment for the individual archive member as a :class:`bytes` object." msgstr "" -#: library/zipfile.rst:803 +#: library/zipfile.rst:804 msgid "" "Expansion field data. The `PKZIP Application Note`_ contains some comments " "on the internal structure of the data contained in this :class:`bytes` " "object." msgstr "" -#: library/zipfile.rst:810 +#: library/zipfile.rst:811 msgid "System which created ZIP archive." msgstr "" -#: library/zipfile.rst:815 +#: library/zipfile.rst:816 msgid "PKZIP version which created ZIP archive." msgstr "" -#: library/zipfile.rst:820 +#: library/zipfile.rst:821 msgid "PKZIP version needed to extract archive." msgstr "" -#: library/zipfile.rst:825 +#: library/zipfile.rst:826 msgid "Must be zero." msgstr "" -#: library/zipfile.rst:830 +#: library/zipfile.rst:831 msgid "ZIP flag bits." msgstr "" -#: library/zipfile.rst:835 +#: library/zipfile.rst:836 msgid "Volume number of file header." msgstr "" -#: library/zipfile.rst:840 +#: library/zipfile.rst:841 msgid "Internal attributes." msgstr "" -#: library/zipfile.rst:845 +#: library/zipfile.rst:846 msgid "External file attributes." msgstr "" -#: library/zipfile.rst:850 +#: library/zipfile.rst:851 msgid "Byte offset to the file header." msgstr "" -#: library/zipfile.rst:855 +#: library/zipfile.rst:856 msgid "CRC-32 of the uncompressed file." msgstr "" -#: library/zipfile.rst:860 +#: library/zipfile.rst:861 msgid "Size of the compressed data." msgstr "" -#: library/zipfile.rst:865 +#: library/zipfile.rst:866 msgid "Size of the uncompressed file." msgstr "" -#: library/zipfile.rst:872 +#: library/zipfile.rst:873 msgid "Command-Line Interface" msgstr "" -#: library/zipfile.rst:874 +#: library/zipfile.rst:875 msgid "" "The :mod:`zipfile` module provides a simple command-line interface to " "interact with ZIP archives." msgstr "" -#: library/zipfile.rst:877 +#: library/zipfile.rst:878 msgid "" "If you want to create a new ZIP archive, specify its name after the :option:" "`-c` option and then list the filename(s) that should be included:" msgstr "" -#: library/zipfile.rst:884 +#: library/zipfile.rst:885 msgid "Passing a directory is also acceptable:" msgstr "" -#: library/zipfile.rst:890 +#: library/zipfile.rst:891 msgid "" "If you want to extract a ZIP archive into the specified directory, use the :" "option:`-e` option:" msgstr "" -#: library/zipfile.rst:897 +#: library/zipfile.rst:898 msgid "For a list of the files in a ZIP archive, use the :option:`-l` option:" msgstr "" -#: library/zipfile.rst:905 +#: library/zipfile.rst:906 msgid "Command-line options" msgstr "" -#: library/zipfile.rst:910 +#: library/zipfile.rst:911 msgid "List files in a zipfile." msgstr "" -#: library/zipfile.rst:915 +#: library/zipfile.rst:916 msgid "Create zipfile from source files." msgstr "" -#: library/zipfile.rst:920 +#: library/zipfile.rst:921 msgid "Extract zipfile into target directory." msgstr "" -#: library/zipfile.rst:925 +#: library/zipfile.rst:926 msgid "Test whether the zipfile is valid or not." msgstr "" -#: library/zipfile.rst:929 +#: library/zipfile.rst:930 msgid "" "Specify encoding of member names for :option:`-l`, :option:`-e` and :option:" "`-t`." msgstr "" -#: library/zipfile.rst:936 +#: library/zipfile.rst:937 msgid "Decompression pitfalls" msgstr "" -#: library/zipfile.rst:938 +#: library/zipfile.rst:939 msgid "" "The extraction in zipfile module might fail due to some pitfalls listed " "below." msgstr "" -#: library/zipfile.rst:941 +#: library/zipfile.rst:942 msgid "From file itself" msgstr "" -#: library/zipfile.rst:943 +#: library/zipfile.rst:944 msgid "" "Decompression may fail due to incorrect password / CRC checksum / ZIP format " "or unsupported compression method / decryption." msgstr "" -#: library/zipfile.rst:947 +#: library/zipfile.rst:948 msgid "File System limitations" msgstr "" -#: library/zipfile.rst:949 +#: library/zipfile.rst:950 msgid "" "Exceeding limitations on different file systems can cause decompression " "failed. Such as allowable characters in the directory entries, length of the " @@ -1075,33 +1075,33 @@ msgid "" "files, etc." msgstr "" -#: library/zipfile.rst:956 +#: library/zipfile.rst:957 msgid "Resources limitations" msgstr "" -#: library/zipfile.rst:958 +#: library/zipfile.rst:959 msgid "" "The lack of memory or disk volume would lead to decompression failed. For " "example, decompression bombs (aka `ZIP bomb`_) apply to zipfile library that " "can cause disk volume exhaustion." msgstr "" -#: library/zipfile.rst:963 +#: library/zipfile.rst:964 msgid "Interruption" msgstr "" -#: library/zipfile.rst:965 +#: library/zipfile.rst:966 msgid "" "Interruption during the decompression, such as pressing control-C or killing " "the decompression process may result in incomplete decompression of the " "archive." msgstr "" -#: library/zipfile.rst:969 +#: library/zipfile.rst:970 msgid "Default behaviors of extraction" msgstr "" -#: library/zipfile.rst:971 +#: library/zipfile.rst:972 msgid "" "Not knowing the default extraction behaviors can cause unexpected " "decompression results. For example, when extracting the same archive twice, " diff --git a/library/zipimport.po b/library/zipimport.po index a9c767c94..77d6377ff 100644 --- a/library/zipimport.po +++ b/library/zipimport.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -126,111 +126,100 @@ msgstr "" #: library/zipimport.rst:79 msgid "" +"Methods ``find_loader()`` and ``find_module()``, deprecated in 3.10 are now " +"removed. Use :meth:`find_spec` instead." +msgstr "" + +#: library/zipimport.rst:84 +msgid "" "Implementation of :meth:`importlib.abc.Loader.create_module` that returns :" "const:`None` to explicitly request the default semantics." msgstr "" -#: library/zipimport.rst:87 +#: library/zipimport.rst:92 msgid "Implementation of :meth:`importlib.abc.Loader.exec_module`." msgstr "" -#: library/zipimport.rst:94 -msgid "An implementation of :meth:`importlib.abc.PathEntryFinder.find_loader`." -msgstr "" - -#: library/zipimport.rst:111 -msgid "Use :meth:`find_spec` instead." -msgstr "" - -#: library/zipimport.rst:103 -msgid "" -"Search for a module specified by *fullname*. *fullname* must be the fully " -"qualified (dotted) module name. It returns the zipimporter instance itself " -"if the module was found, or :const:`None` if it wasn't. The optional *path* " -"argument is ignored---it's there for compatibility with the importer " -"protocol." -msgstr "" - -#: library/zipimport.rst:116 +#: library/zipimport.rst:99 msgid "An implementation of :meth:`importlib.abc.PathEntryFinder.find_spec`." msgstr "" -#: library/zipimport.rst:123 +#: library/zipimport.rst:106 msgid "" "Return the code object for the specified module. Raise :exc:`ZipImportError` " "if the module couldn't be imported." msgstr "" -#: library/zipimport.rst:129 +#: library/zipimport.rst:112 msgid "" "Return the data associated with *pathname*. Raise :exc:`OSError` if the file " "wasn't found." msgstr "" -#: library/zipimport.rst:132 +#: library/zipimport.rst:115 msgid ":exc:`IOError` used to be raised instead of :exc:`OSError`." msgstr "" -#: library/zipimport.rst:138 +#: library/zipimport.rst:121 msgid "" "Return the value ``__file__`` would be set to if the specified module was " "imported. Raise :exc:`ZipImportError` if the module couldn't be imported." msgstr "" -#: library/zipimport.rst:147 +#: library/zipimport.rst:130 msgid "" "Return the source code for the specified module. Raise :exc:`ZipImportError` " "if the module couldn't be found, return :const:`None` if the archive does " "contain the module, but has no source for it." msgstr "" -#: library/zipimport.rst:155 +#: library/zipimport.rst:138 msgid "" "Return ``True`` if the module specified by *fullname* is a package. Raise :" "exc:`ZipImportError` if the module couldn't be found." msgstr "" -#: library/zipimport.rst:161 +#: library/zipimport.rst:144 msgid "" "Load the module specified by *fullname*. *fullname* must be the fully " "qualified (dotted) module name. Returns the imported module on success, " "raises :exc:`ZipImportError` on failure." msgstr "" -#: library/zipimport.rst:167 +#: library/zipimport.rst:150 msgid "Use :meth:`exec_module` instead." msgstr "" -#: library/zipimport.rst:172 +#: library/zipimport.rst:155 msgid "" "Clear out the internal cache of information about files found within the ZIP " "archive." msgstr "" -#: library/zipimport.rst:180 +#: library/zipimport.rst:163 msgid "" "The file name of the importer's associated ZIP file, without a possible " "subpath." msgstr "" -#: library/zipimport.rst:186 +#: library/zipimport.rst:169 msgid "" "The subpath within the ZIP file where modules are searched. This is the " "empty string for zipimporter objects which point to the root of the ZIP file." msgstr "" -#: library/zipimport.rst:190 +#: library/zipimport.rst:173 msgid "" "The :attr:`archive` and :attr:`prefix` attributes, when combined with a " "slash, equal the original *archivepath* argument given to the :class:" "`zipimporter` constructor." msgstr "" -#: library/zipimport.rst:198 +#: library/zipimport.rst:181 msgid "Examples" msgstr "" -#: library/zipimport.rst:200 +#: library/zipimport.rst:183 msgid "" "Here is an example that imports a module from a ZIP archive - note that the :" "mod:`zipimport` module is not explicitly used." diff --git a/library/zoneinfo.po b/library/zoneinfo.po index fd3688d25..3af6696f7 100644 --- a/library/zoneinfo.po +++ b/library/zoneinfo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-01 00:18+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -298,8 +298,8 @@ msgstr "" #: library/zoneinfo.rst:243 msgid "" "Invoking this function may change the semantics of datetimes using " -"``ZoneInfo`` in surprising ways; this modifies process-wide global state and " -"thus may have wide-ranging effects. Only use it if you know that you need to." +"``ZoneInfo`` in surprising ways; this modifies module state and thus may " +"have wide-ranging effects. Only use it if you know that you need to." msgstr "" #: library/zoneinfo.rst:248 diff --git a/license.po b/license.po index 93f4fadae..62d4de31f 100644 --- a/license.po +++ b/license.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2022-12-28 16:31-0500\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -305,20 +305,22 @@ msgid "Mersenne Twister" msgstr "Mersenne Twister'ı" #: license.rst:305 +#, fuzzy msgid "" -"The :mod:`_random` module includes code based on a download from http://www." -"math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html. The following " -"are the verbatim comments from the original code::" +"The :mod:`!_random` C extension underlying the :mod:`random` module includes " +"code based on a download from http://www.math.sci.hiroshima-u.ac.jp/~m-mat/" +"MT/MT2002/emt19937ar.html. The following are the verbatim comments from the " +"original code::" msgstr "" ":mod:`_random` modülü, http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/" "MT2002/emt19937ar.html adresinden indirilen kodu temel alır. Orijinal koddan " "kelimesi kelimesine yorumlar aşağıdadır::" -#: license.rst:352 +#: license.rst:353 msgid "Sockets" msgstr "Soketler" -#: license.rst:354 +#: license.rst:355 #, fuzzy msgid "" "The :mod:`socket` module uses the functions, :c:func:`!getaddrinfo`, and :c:" @@ -329,73 +331,74 @@ msgstr "" "ayrı kaynak dosyalarında kodlanan :func:`getaddrinfo` ve :func:`getnameinfo` " "fonksiyonlarını kullanır. /. ::" -#: license.rst:387 +#: license.rst:388 msgid "Asynchronous socket services" msgstr "Asenkron soket hizmetleri" -#: license.rst:389 +#: license.rst:390 +#, fuzzy msgid "" -"The :mod:`asynchat` and :mod:`asyncore` modules contain the following " -"notice::" +"The :mod:`!test.support.asynchat` and :mod:`!test.support.asyncore` modules " +"contain the following notice::" msgstr "" ":mod:`asynchat` ve :mod:`asyncore` modülleri aşağıdaki uyarıyı içerir::" -#: license.rst:414 +#: license.rst:416 msgid "Cookie management" msgstr "Çerez yönetimi" -#: license.rst:416 +#: license.rst:418 msgid "The :mod:`http.cookies` module contains the following notice::" msgstr ":mod:`http.cookies` modülü aşağıdaki uyarıyı içerir::" -#: license.rst:442 +#: license.rst:444 msgid "Execution tracing" msgstr "Çalıştırma izleme" -#: license.rst:444 +#: license.rst:446 msgid "The :mod:`trace` module contains the following notice::" msgstr ":mod:`trace` modülü aşağıdaki uyarıyı içerir::" -#: license.rst:475 +#: license.rst:477 msgid "UUencode and UUdecode functions" msgstr "UUencode ve UUdecode fonksiyonları" -#: license.rst:477 +#: license.rst:479 msgid "The :mod:`uu` module contains the following notice::" msgstr ":mod:`uu` modülü aşağıdaki uyarıyı içerir::" -#: license.rst:505 +#: license.rst:507 msgid "XML Remote Procedure Calls" msgstr "XML Uzaktan Yordam Çağrıları" -#: license.rst:507 +#: license.rst:509 msgid "The :mod:`xmlrpc.client` module contains the following notice::" msgstr ":mod:`xmlrpc.client` modülü aşağıdaki uyarıyı içerir::" -#: license.rst:538 +#: license.rst:540 msgid "test_epoll" msgstr "test_epoll" -#: license.rst:540 +#: license.rst:542 #, fuzzy msgid "The :mod:`!test.test_epoll` module contains the following notice::" msgstr ":mod:`test_epoll` modülü aşağıdaki uyarıyı içerir::" -#: license.rst:564 +#: license.rst:566 msgid "Select kqueue" msgstr "kqueue seçin" -#: license.rst:566 +#: license.rst:568 msgid "" "The :mod:`select` module contains the following notice for the kqueue " "interface::" msgstr ":mod:`select` modülü, kqueue arayüzü için aşağıdaki uyarıyı içerir::" -#: license.rst:595 +#: license.rst:597 msgid "SipHash24" msgstr "SipHash24" -#: license.rst:597 +#: license.rst:599 msgid "" "The file :file:`Python/pyhash.c` contains Marek Majkowski' implementation of " "Dan Bernstein's SipHash24 algorithm. It contains the following note::" @@ -403,11 +406,11 @@ msgstr "" ":file:`Python/pyhash.c` dosyası, Dan Bernstein'ın SipHash24 algoritmasının " "Marek Majkowski uygulamasını içerir. Burada aşağıdaki not yer alır::" -#: license.rst:624 +#: license.rst:626 msgid "strtod and dtoa" msgstr "strtod ve dtoa" -#: license.rst:626 +#: license.rst:628 msgid "" "The file :file:`Python/dtoa.c`, which supplies C functions dtoa and strtod " "for conversion of C doubles to and from strings, is derived from the file of " @@ -423,11 +426,11 @@ msgstr "" "Mart 2009'da alınan orijinal dosya aşağıdaki telif hakkı ve lisans " "bildirimini içerir:" -#: license.rst:654 +#: license.rst:656 msgid "OpenSSL" msgstr "OpenSSL" -#: license.rst:656 +#: license.rst:658 #, fuzzy msgid "" "The modules :mod:`hashlib`, :mod:`posix`, :mod:`ssl`, :mod:`crypt` use the " @@ -443,11 +446,11 @@ msgstr "" "kütüphanelerinin bir kopyasını içerebilir, bu nedenle buraya OpenSSL " "lisansının bir kopyasını ekliyoruz::" -#: license.rst:843 +#: license.rst:845 msgid "expat" msgstr "expat" -#: license.rst:845 +#: license.rst:847 #, fuzzy msgid "" "The :mod:`pyexpat ` extension is built using an included " @@ -458,24 +461,26 @@ msgstr "" "yapılandırılmadığı sürece, expat kaynaklarının dahil edildiği bir kopya " "kullanılarak oluşturulur::" -#: license.rst:872 +#: license.rst:874 msgid "libffi" msgstr "libffi" -#: license.rst:874 +#: license.rst:876 +#, fuzzy msgid "" -"The :mod:`_ctypes` extension is built using an included copy of the libffi " -"sources unless the build is configured ``--with-system-libffi``::" +"The :mod:`!_ctypes` C extension underlying the :mod:`ctypes` module is built " +"using an included copy of the libffi sources unless the build is configured " +"``--with-system-libffi``::" msgstr "" ":mod:`_ctypes` uzantısı, yapı ``--with-system-libffi`` olarak " "yapılandırılmadığı sürece libffi kaynaklarının dahil edildiği bir kopya " "kullanılarak oluşturulur::" -#: license.rst:901 +#: license.rst:904 msgid "zlib" msgstr "zlib" -#: license.rst:903 +#: license.rst:906 msgid "" "The :mod:`zlib` extension is built using an included copy of the zlib " "sources if the zlib version found on the system is too old to be used for " @@ -485,11 +490,11 @@ msgstr "" "kullanılamayacak kadar eskiyse, zlib kaynaklarının dahil edildiği bir kopya " "kullanılarak oluşturulur::" -#: license.rst:932 +#: license.rst:935 msgid "cfuhash" msgstr "cfuhash" -#: license.rst:934 +#: license.rst:937 msgid "" "The implementation of the hash table used by the :mod:`tracemalloc` is based " "on the cfuhash project::" @@ -497,24 +502,26 @@ msgstr "" ":mod:`tracemalloc` tarafından kullanılan hash tablosunun uygulanması cfuhash " "projesine dayanmaktadır::" -#: license.rst:973 +#: license.rst:976 msgid "libmpdec" msgstr "libmpdec" -#: license.rst:975 +#: license.rst:978 +#, fuzzy msgid "" -"The :mod:`_decimal` module is built using an included copy of the libmpdec " -"library unless the build is configured ``--with-system-libmpdec``::" +"The :mod:`!_decimal` C extension underlying the :mod:`decimal` module is " +"built using an included copy of the libmpdec library unless the build is " +"configured ``--with-system-libmpdec``::" msgstr "" ":mod:`_decimal` modülü, yapı ``--with-system-libmpdec`` şeklinde " "yapılandırılmadığı sürece libmpdec kitaplığının dahil edildiği bir kopya " "kullanılarak oluşturulur::" -#: license.rst:1005 +#: license.rst:1009 msgid "W3C C14N test suite" msgstr "W3C C14N test paketi" -#: license.rst:1007 +#: license.rst:1011 msgid "" "The C14N 2.0 test suite in the :mod:`test` package (``Lib/test/xmltestdata/" "c14n-20/``) was retrieved from the W3C website at https://www.w3.org/TR/xml-" @@ -524,11 +531,11 @@ msgstr "" "``), https://www.w3.org/TR/xml-c14n2-testcases/ adresindeki W3C web " "sitesinden alınmıştır ve 3 maddeli BSD lisansı altında dağıtılmaktadır::" -#: license.rst:1042 +#: license.rst:1046 msgid "Audioop" msgstr "Audioop" -#: license.rst:1044 +#: license.rst:1048 msgid "" "The audioop module uses the code base in g771.c file of the SoX project::" msgstr "" diff --git a/reference/compound_stmts.po b/reference/compound_stmts.po index 6074c1c40..3dda6d11f 100644 --- a/reference/compound_stmts.po +++ b/reference/compound_stmts.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -288,25 +288,19 @@ msgstr "" #: reference/compound_stmts.rst:364 msgid "" "Any remaining exceptions that were not handled by any :keyword:`!except*` " -"clause are re-raised at the end, combined into an exception group along with " -"all exceptions that were raised from within :keyword:`!except*` clauses." +"clause are re-raised at the end, along with all exceptions that were raised " +"from within the :keyword:`!except*` clauses. If this list contains more than " +"one exception to reraise, they are combined into an exception group." msgstr "" -#: reference/compound_stmts.rst:368 -msgid "" -"From version 3.11.4, when the entire :exc:`ExceptionGroup` is handled and " -"only one exception is raised from an :keyword:`!except*` clause, this " -"exception is no longer wrapped to form a new :exc:`ExceptionGroup`." -msgstr "" - -#: reference/compound_stmts.rst:372 +#: reference/compound_stmts.rst:370 msgid "" "If the raised exception is not an exception group and its type matches one " "of the :keyword:`!except*` clauses, it is caught and wrapped by an exception " "group with an empty message string. ::" msgstr "" -#: reference/compound_stmts.rst:383 +#: reference/compound_stmts.rst:381 msgid "" "An :keyword:`!except*` clause must have a matching type, and this type " "cannot be a subclass of :exc:`BaseExceptionGroup`. It is not possible to " @@ -315,11 +309,11 @@ msgid "" "an :keyword:`!except*` clause." msgstr "" -#: reference/compound_stmts.rst:400 +#: reference/compound_stmts.rst:398 msgid ":keyword:`!else` clause" msgstr "" -#: reference/compound_stmts.rst:402 +#: reference/compound_stmts.rst:400 msgid "" "The optional :keyword:`!else` clause is executed if the control flow leaves " "the :keyword:`try` suite, no exception was raised, and no :keyword:" @@ -328,11 +322,11 @@ msgid "" "keyword:`except` clauses." msgstr "" -#: reference/compound_stmts.rst:414 +#: reference/compound_stmts.rst:412 msgid ":keyword:`!finally` clause" msgstr "" -#: reference/compound_stmts.rst:416 +#: reference/compound_stmts.rst:414 msgid "" "If :keyword:`!finally` is present, it specifies a 'cleanup' handler. The :" "keyword:`try` clause is executed, including any :keyword:`except` and :" @@ -346,13 +340,13 @@ msgid "" "exception is discarded::" msgstr "" -#: reference/compound_stmts.rst:435 +#: reference/compound_stmts.rst:433 msgid "" "The exception information is not available to the program during execution " "of the :keyword:`!finally` clause." msgstr "" -#: reference/compound_stmts.rst:443 +#: reference/compound_stmts.rst:441 msgid "" "When a :keyword:`return`, :keyword:`break` or :keyword:`continue` statement " "is executed in the :keyword:`try` suite of a :keyword:`!try`...\\ :keyword:`!" @@ -360,7 +354,7 @@ msgid "" "way out.'" msgstr "" -#: reference/compound_stmts.rst:447 +#: reference/compound_stmts.rst:445 msgid "" "The return value of a function is determined by the last :keyword:`return` " "statement executed. Since the :keyword:`!finally` clause always executes, " @@ -368,17 +362,17 @@ msgid "" "will always be the last one executed::" msgstr "" -#: reference/compound_stmts.rst:461 +#: reference/compound_stmts.rst:459 msgid "" "Prior to Python 3.8, a :keyword:`continue` statement was illegal in the :" "keyword:`!finally` clause due to a problem with the implementation." msgstr "" -#: reference/compound_stmts.rst:470 +#: reference/compound_stmts.rst:468 msgid "The :keyword:`!with` statement" msgstr "" -#: reference/compound_stmts.rst:479 +#: reference/compound_stmts.rst:477 msgid "" "The :keyword:`with` statement is used to wrap the execution of a block with " "methods defined by a context manager (see section :ref:`context-managers`). " @@ -386,37 +380,37 @@ msgid "" "`finally` usage patterns to be encapsulated for convenient reuse." msgstr "" -#: reference/compound_stmts.rst:489 +#: reference/compound_stmts.rst:487 msgid "" "The execution of the :keyword:`with` statement with one \"item\" proceeds as " "follows:" msgstr "" -#: reference/compound_stmts.rst:491 +#: reference/compound_stmts.rst:489 msgid "" "The context expression (the expression given in the :token:`~python-grammar:" "with_item`) is evaluated to obtain a context manager." msgstr "" -#: reference/compound_stmts.rst:494 +#: reference/compound_stmts.rst:492 msgid "The context manager's :meth:`__enter__` is loaded for later use." msgstr "" -#: reference/compound_stmts.rst:496 +#: reference/compound_stmts.rst:494 msgid "The context manager's :meth:`__exit__` is loaded for later use." msgstr "" -#: reference/compound_stmts.rst:498 +#: reference/compound_stmts.rst:496 msgid "The context manager's :meth:`__enter__` method is invoked." msgstr "" -#: reference/compound_stmts.rst:500 +#: reference/compound_stmts.rst:498 msgid "" "If a target was included in the :keyword:`with` statement, the return value " "from :meth:`__enter__` is assigned to it." msgstr "" -#: reference/compound_stmts.rst:505 +#: reference/compound_stmts.rst:503 msgid "" "The :keyword:`with` statement guarantees that if the :meth:`__enter__` " "method returns without an error, then :meth:`__exit__` will always be " @@ -425,11 +419,11 @@ msgid "" "See step 7 below." msgstr "" -#: reference/compound_stmts.rst:511 +#: reference/compound_stmts.rst:509 msgid "The suite is executed." msgstr "" -#: reference/compound_stmts.rst:513 +#: reference/compound_stmts.rst:511 msgid "" "The context manager's :meth:`__exit__` method is invoked. If an exception " "caused the suite to be exited, its type, value, and traceback are passed as " @@ -437,7 +431,7 @@ msgid "" "supplied." msgstr "" -#: reference/compound_stmts.rst:518 +#: reference/compound_stmts.rst:516 msgid "" "If the suite was exited due to an exception, and the return value from the :" "meth:`__exit__` method was false, the exception is reraised. If the return " @@ -445,115 +439,115 @@ msgid "" "the statement following the :keyword:`with` statement." msgstr "" -#: reference/compound_stmts.rst:523 +#: reference/compound_stmts.rst:521 msgid "" "If the suite was exited for any reason other than an exception, the return " "value from :meth:`__exit__` is ignored, and execution proceeds at the normal " "location for the kind of exit that was taken." msgstr "" -#: reference/compound_stmts.rst:527 reference/compound_stmts.rst:1518 -#: reference/compound_stmts.rst:1559 +#: reference/compound_stmts.rst:525 reference/compound_stmts.rst:1534 +#: reference/compound_stmts.rst:1575 msgid "The following code::" msgstr "" -#: reference/compound_stmts.rst:532 reference/compound_stmts.rst:557 -#: reference/compound_stmts.rst:1564 +#: reference/compound_stmts.rst:530 reference/compound_stmts.rst:555 +#: reference/compound_stmts.rst:1580 msgid "is semantically equivalent to::" msgstr "" -#: reference/compound_stmts.rst:551 +#: reference/compound_stmts.rst:549 msgid "" "With more than one item, the context managers are processed as if multiple :" "keyword:`with` statements were nested::" msgstr "" -#: reference/compound_stmts.rst:563 +#: reference/compound_stmts.rst:561 msgid "" "You can also write multi-item context managers in multiple lines if the " "items are surrounded by parentheses. For example::" msgstr "" -#: reference/compound_stmts.rst:572 +#: reference/compound_stmts.rst:570 msgid "Support for multiple context expressions." msgstr "" -#: reference/compound_stmts.rst:575 +#: reference/compound_stmts.rst:573 msgid "" "Support for using grouping parentheses to break the statement in multiple " "lines." msgstr "" -#: reference/compound_stmts.rst:581 +#: reference/compound_stmts.rst:579 msgid ":pep:`343` - The \"with\" statement" msgstr "" -#: reference/compound_stmts.rst:581 +#: reference/compound_stmts.rst:579 msgid "" "The specification, background, and examples for the Python :keyword:`with` " "statement." msgstr "" -#: reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:585 msgid "The :keyword:`!match` statement" msgstr "" -#: reference/compound_stmts.rst:601 +#: reference/compound_stmts.rst:599 msgid "The match statement is used for pattern matching. Syntax:" msgstr "" -#: reference/compound_stmts.rst:610 +#: reference/compound_stmts.rst:608 msgid "" "This section uses single quotes to denote :ref:`soft keywords `." msgstr "" -#: reference/compound_stmts.rst:613 +#: reference/compound_stmts.rst:611 msgid "" "Pattern matching takes a pattern as input (following ``case``) and a subject " "value (following ``match``). The pattern (which may contain subpatterns) is " "matched against the subject value. The outcomes are:" msgstr "" -#: reference/compound_stmts.rst:617 +#: reference/compound_stmts.rst:615 msgid "A match success or failure (also termed a pattern success or failure)." msgstr "" -#: reference/compound_stmts.rst:619 +#: reference/compound_stmts.rst:617 msgid "" "Possible binding of matched values to a name. The prerequisites for this " "are further discussed below." msgstr "" -#: reference/compound_stmts.rst:622 +#: reference/compound_stmts.rst:620 msgid "" "The ``match`` and ``case`` keywords are :ref:`soft keywords `." msgstr "" -#: reference/compound_stmts.rst:626 reference/compound_stmts.rst:1181 +#: reference/compound_stmts.rst:624 reference/compound_stmts.rst:1179 msgid ":pep:`634` -- Structural Pattern Matching: Specification" msgstr "" -#: reference/compound_stmts.rst:627 reference/compound_stmts.rst:1182 +#: reference/compound_stmts.rst:625 reference/compound_stmts.rst:1180 msgid ":pep:`636` -- Structural Pattern Matching: Tutorial" msgstr "" -#: reference/compound_stmts.rst:631 +#: reference/compound_stmts.rst:629 msgid "Overview" msgstr "" -#: reference/compound_stmts.rst:633 +#: reference/compound_stmts.rst:631 msgid "Here's an overview of the logical flow of a match statement:" msgstr "" -#: reference/compound_stmts.rst:636 +#: reference/compound_stmts.rst:634 msgid "" "The subject expression ``subject_expr`` is evaluated and a resulting subject " "value obtained. If the subject expression contains a comma, a tuple is " "constructed using :ref:`the standard rules `." msgstr "" -#: reference/compound_stmts.rst:640 +#: reference/compound_stmts.rst:638 msgid "" "Each pattern in a ``case_block`` is attempted to match with the subject " "value. The specific rules for success or failure are described below. The " @@ -563,7 +557,7 @@ msgid "" "outlive the executed block and can be used after the match statement**." msgstr "" -#: reference/compound_stmts.rst:649 +#: reference/compound_stmts.rst:647 msgid "" "During failed pattern matches, some subpatterns may succeed. Do not rely on " "bindings being made for a failed match. Conversely, do not rely on " @@ -572,87 +566,87 @@ msgid "" "made to allow different implementations to add optimizations." msgstr "" -#: reference/compound_stmts.rst:656 +#: reference/compound_stmts.rst:654 msgid "" "If the pattern succeeds, the corresponding guard (if present) is evaluated. " "In this case all name bindings are guaranteed to have happened." msgstr "" -#: reference/compound_stmts.rst:659 +#: reference/compound_stmts.rst:657 msgid "" "If the guard evaluates as true or is missing, the ``block`` inside " "``case_block`` is executed." msgstr "" -#: reference/compound_stmts.rst:662 +#: reference/compound_stmts.rst:660 msgid "Otherwise, the next ``case_block`` is attempted as described above." msgstr "" -#: reference/compound_stmts.rst:664 +#: reference/compound_stmts.rst:662 msgid "If there are no further case blocks, the match statement is completed." msgstr "" -#: reference/compound_stmts.rst:668 +#: reference/compound_stmts.rst:666 msgid "" "Users should generally never rely on a pattern being evaluated. Depending " "on implementation, the interpreter may cache values or use other " "optimizations which skip repeated evaluations." msgstr "" -#: reference/compound_stmts.rst:672 +#: reference/compound_stmts.rst:670 msgid "A sample match statement::" msgstr "" -#: reference/compound_stmts.rst:688 +#: reference/compound_stmts.rst:686 msgid "" "In this case, ``if flag`` is a guard. Read more about that in the next " "section." msgstr "" -#: reference/compound_stmts.rst:691 +#: reference/compound_stmts.rst:689 msgid "Guards" msgstr "" -#: reference/compound_stmts.rst:698 +#: reference/compound_stmts.rst:696 msgid "" "A ``guard`` (which is part of the ``case``) must succeed for code inside the " "``case`` block to execute. It takes the form: :keyword:`if` followed by an " "expression." msgstr "" -#: reference/compound_stmts.rst:703 +#: reference/compound_stmts.rst:701 msgid "The logical flow of a ``case`` block with a ``guard`` follows:" msgstr "" -#: reference/compound_stmts.rst:705 +#: reference/compound_stmts.rst:703 msgid "" "Check that the pattern in the ``case`` block succeeded. If the pattern " "failed, the ``guard`` is not evaluated and the next ``case`` block is " "checked." msgstr "" -#: reference/compound_stmts.rst:709 +#: reference/compound_stmts.rst:707 msgid "If the pattern succeeded, evaluate the ``guard``." msgstr "" -#: reference/compound_stmts.rst:711 +#: reference/compound_stmts.rst:709 msgid "" "If the ``guard`` condition evaluates as true, the case block is selected." msgstr "" -#: reference/compound_stmts.rst:714 +#: reference/compound_stmts.rst:712 msgid "" "If the ``guard`` condition evaluates as false, the case block is not " "selected." msgstr "" -#: reference/compound_stmts.rst:717 +#: reference/compound_stmts.rst:715 msgid "" "If the ``guard`` raises an exception during evaluation, the exception " "bubbles up." msgstr "" -#: reference/compound_stmts.rst:720 +#: reference/compound_stmts.rst:718 msgid "" "Guards are allowed to have side effects as they are expressions. Guard " "evaluation must proceed from the first to the last case block, one at a " @@ -661,17 +655,17 @@ msgid "" "block is selected." msgstr "" -#: reference/compound_stmts.rst:730 +#: reference/compound_stmts.rst:728 msgid "Irrefutable Case Blocks" msgstr "" -#: reference/compound_stmts.rst:734 +#: reference/compound_stmts.rst:732 msgid "" "An irrefutable case block is a match-all case block. A match statement may " "have at most one irrefutable case block, and it must be last." msgstr "" -#: reference/compound_stmts.rst:737 +#: reference/compound_stmts.rst:735 msgid "" "A case block is considered irrefutable if it has no guard and its pattern is " "irrefutable. A pattern is considered irrefutable if we can prove from its " @@ -679,47 +673,47 @@ msgid "" "irrefutable:" msgstr "" -#: reference/compound_stmts.rst:742 +#: reference/compound_stmts.rst:740 msgid ":ref:`as-patterns` whose left-hand side is irrefutable" msgstr "" -#: reference/compound_stmts.rst:744 +#: reference/compound_stmts.rst:742 msgid ":ref:`or-patterns` containing at least one irrefutable pattern" msgstr "" -#: reference/compound_stmts.rst:746 +#: reference/compound_stmts.rst:744 msgid ":ref:`capture-patterns`" msgstr "" -#: reference/compound_stmts.rst:748 +#: reference/compound_stmts.rst:746 msgid ":ref:`wildcard-patterns`" msgstr "" -#: reference/compound_stmts.rst:750 +#: reference/compound_stmts.rst:748 msgid "parenthesized irrefutable patterns" msgstr "" -#: reference/compound_stmts.rst:754 +#: reference/compound_stmts.rst:752 msgid "Patterns" msgstr "" -#: reference/compound_stmts.rst:761 +#: reference/compound_stmts.rst:759 msgid "This section uses grammar notations beyond standard EBNF:" msgstr "" -#: reference/compound_stmts.rst:763 +#: reference/compound_stmts.rst:761 msgid "the notation ``SEP.RULE+`` is shorthand for ``RULE (SEP RULE)*``" msgstr "" -#: reference/compound_stmts.rst:765 +#: reference/compound_stmts.rst:763 msgid "the notation ``!RULE`` is shorthand for a negative lookahead assertion" msgstr "" -#: reference/compound_stmts.rst:768 +#: reference/compound_stmts.rst:766 msgid "The top-level syntax for ``patterns`` is:" msgstr "" -#: reference/compound_stmts.rst:782 +#: reference/compound_stmts.rst:780 msgid "" "The descriptions below will include a description \"in simple terms\" of " "what a pattern does for illustration purposes (credits to Raymond Hettinger " @@ -729,70 +723,70 @@ msgid "" "forms." msgstr "" -#: reference/compound_stmts.rst:792 +#: reference/compound_stmts.rst:790 msgid "OR Patterns" msgstr "" -#: reference/compound_stmts.rst:794 +#: reference/compound_stmts.rst:792 msgid "" "An OR pattern is two or more patterns separated by vertical bars ``|``. " "Syntax:" msgstr "" -#: reference/compound_stmts.rst:800 +#: reference/compound_stmts.rst:798 msgid "" "Only the final subpattern may be :ref:`irrefutable `, and " "each subpattern must bind the same set of names to avoid ambiguity." msgstr "" -#: reference/compound_stmts.rst:803 +#: reference/compound_stmts.rst:801 msgid "" "An OR pattern matches each of its subpatterns in turn to the subject value, " "until one succeeds. The OR pattern is then considered successful. " "Otherwise, if none of the subpatterns succeed, the OR pattern fails." msgstr "" -#: reference/compound_stmts.rst:807 +#: reference/compound_stmts.rst:805 msgid "" "In simple terms, ``P1 | P2 | ...`` will try to match ``P1``, if it fails it " "will try to match ``P2``, succeeding immediately if any succeeds, failing " "otherwise." msgstr "" -#: reference/compound_stmts.rst:813 +#: reference/compound_stmts.rst:811 msgid "AS Patterns" msgstr "" -#: reference/compound_stmts.rst:815 +#: reference/compound_stmts.rst:813 msgid "" "An AS pattern matches an OR pattern on the left of the :keyword:`as` keyword " "against a subject. Syntax:" msgstr "" -#: reference/compound_stmts.rst:821 +#: reference/compound_stmts.rst:819 msgid "" "If the OR pattern fails, the AS pattern fails. Otherwise, the AS pattern " "binds the subject to the name on the right of the as keyword and succeeds. " "``capture_pattern`` cannot be a ``_``." msgstr "" -#: reference/compound_stmts.rst:825 +#: reference/compound_stmts.rst:823 msgid "" "In simple terms ``P as NAME`` will match with ``P``, and on success it will " "set ``NAME = ``." msgstr "" -#: reference/compound_stmts.rst:832 +#: reference/compound_stmts.rst:830 msgid "Literal Patterns" msgstr "" -#: reference/compound_stmts.rst:834 +#: reference/compound_stmts.rst:832 msgid "" "A literal pattern corresponds to most :ref:`literals ` in Python. " "Syntax:" msgstr "" -#: reference/compound_stmts.rst:847 +#: reference/compound_stmts.rst:845 msgid "" "The rule ``strings`` and the token ``NUMBER`` are defined in the :doc:" "`standard Python grammar <./grammar>`. Triple-quoted strings are " @@ -800,42 +794,42 @@ msgid "" "are not supported." msgstr "" -#: reference/compound_stmts.rst:852 +#: reference/compound_stmts.rst:850 msgid "" "The forms ``signed_number '+' NUMBER`` and ``signed_number '-' NUMBER`` are " "for expressing :ref:`complex numbers `; they require a real " "number on the left and an imaginary number on the right. E.g. ``3 + 4j``." msgstr "" -#: reference/compound_stmts.rst:856 +#: reference/compound_stmts.rst:854 msgid "" "In simple terms, ``LITERAL`` will succeed only if `` == LITERAL``. " "For the singletons ``None``, ``True`` and ``False``, the :keyword:`is` " "operator is used." msgstr "" -#: reference/compound_stmts.rst:862 +#: reference/compound_stmts.rst:860 msgid "Capture Patterns" msgstr "" -#: reference/compound_stmts.rst:864 +#: reference/compound_stmts.rst:862 msgid "A capture pattern binds the subject value to a name. Syntax:" msgstr "" -#: reference/compound_stmts.rst:870 +#: reference/compound_stmts.rst:868 msgid "" "A single underscore ``_`` is not a capture pattern (this is what ``!'_'`` " "expresses). It is instead treated as a :token:`~python-grammar:" "wildcard_pattern`." msgstr "" -#: reference/compound_stmts.rst:874 +#: reference/compound_stmts.rst:872 msgid "" "In a given pattern, a given name can only be bound once. E.g. ``case x, " "x: ...`` is invalid while ``case [x] | x: ...`` is allowed." msgstr "" -#: reference/compound_stmts.rst:877 +#: reference/compound_stmts.rst:875 msgid "" "Capture patterns always succeed. The binding follows scoping rules " "established by the assignment expression operator in :pep:`572`; the name " @@ -843,55 +837,55 @@ msgid "" "there's an applicable :keyword:`global` or :keyword:`nonlocal` statement." msgstr "" -#: reference/compound_stmts.rst:882 +#: reference/compound_stmts.rst:880 msgid "" "In simple terms ``NAME`` will always succeed and it will set ``NAME = " "``." msgstr "" -#: reference/compound_stmts.rst:887 +#: reference/compound_stmts.rst:885 msgid "Wildcard Patterns" msgstr "" -#: reference/compound_stmts.rst:889 +#: reference/compound_stmts.rst:887 msgid "" "A wildcard pattern always succeeds (matches anything) and binds no name. " "Syntax:" msgstr "" -#: reference/compound_stmts.rst:895 +#: reference/compound_stmts.rst:893 msgid "" "``_`` is a :ref:`soft keyword ` within any pattern, but only " "within patterns. It is an identifier, as usual, even within ``match`` " "subject expressions, ``guard``\\ s, and ``case`` blocks." msgstr "" -#: reference/compound_stmts.rst:899 +#: reference/compound_stmts.rst:897 msgid "In simple terms, ``_`` will always succeed." msgstr "" -#: reference/compound_stmts.rst:904 +#: reference/compound_stmts.rst:902 msgid "Value Patterns" msgstr "" -#: reference/compound_stmts.rst:906 +#: reference/compound_stmts.rst:904 msgid "A value pattern represents a named value in Python. Syntax:" msgstr "" -#: reference/compound_stmts.rst:914 +#: reference/compound_stmts.rst:912 msgid "" "The dotted name in the pattern is looked up using standard Python :ref:`name " "resolution rules `. The pattern succeeds if the value found " "compares equal to the subject value (using the ``==`` equality operator)." msgstr "" -#: reference/compound_stmts.rst:919 +#: reference/compound_stmts.rst:917 msgid "" "In simple terms ``NAME1.NAME2`` will succeed only if `` == NAME1." "NAME2``" msgstr "" -#: reference/compound_stmts.rst:923 +#: reference/compound_stmts.rst:921 msgid "" "If the same value occurs multiple times in the same match statement, the " "interpreter may cache the first value found and reuse it rather than repeat " @@ -899,44 +893,44 @@ msgid "" "given match statement." msgstr "" -#: reference/compound_stmts.rst:931 +#: reference/compound_stmts.rst:929 msgid "Group Patterns" msgstr "" -#: reference/compound_stmts.rst:933 +#: reference/compound_stmts.rst:931 msgid "" "A group pattern allows users to add parentheses around patterns to emphasize " "the intended grouping. Otherwise, it has no additional syntax. Syntax:" msgstr "" -#: reference/compound_stmts.rst:940 +#: reference/compound_stmts.rst:938 msgid "In simple terms ``(P)`` has the same effect as ``P``." msgstr "" -#: reference/compound_stmts.rst:945 +#: reference/compound_stmts.rst:943 msgid "Sequence Patterns" msgstr "" -#: reference/compound_stmts.rst:947 +#: reference/compound_stmts.rst:945 msgid "" "A sequence pattern contains several subpatterns to be matched against " "sequence elements. The syntax is similar to the unpacking of a list or tuple." msgstr "" -#: reference/compound_stmts.rst:958 +#: reference/compound_stmts.rst:956 msgid "" "There is no difference if parentheses or square brackets are used for " "sequence patterns (i.e. ``(...)`` vs ``[...]`` )." msgstr "" -#: reference/compound_stmts.rst:962 +#: reference/compound_stmts.rst:960 msgid "" "A single pattern enclosed in parentheses without a trailing comma (e.g. ``(3 " "| 4)``) is a :ref:`group pattern `. While a single pattern " "enclosed in square brackets (e.g. ``[3 | 4]``) is still a sequence pattern." msgstr "" -#: reference/compound_stmts.rst:967 +#: reference/compound_stmts.rst:965 msgid "" "At most one star subpattern may be in a sequence pattern. The star " "subpattern may occur in any position. If no star subpattern is present, the " @@ -944,40 +938,40 @@ msgid "" "variable-length sequence pattern." msgstr "" -#: reference/compound_stmts.rst:972 +#: reference/compound_stmts.rst:970 msgid "" "The following is the logical flow for matching a sequence pattern against a " "subject value:" msgstr "" -#: reference/compound_stmts.rst:975 +#: reference/compound_stmts.rst:973 msgid "" "If the subject value is not a sequence [#]_, the sequence pattern fails." msgstr "" -#: reference/compound_stmts.rst:978 +#: reference/compound_stmts.rst:976 msgid "" "If the subject value is an instance of ``str``, ``bytes`` or ``bytearray`` " "the sequence pattern fails." msgstr "" -#: reference/compound_stmts.rst:981 +#: reference/compound_stmts.rst:979 msgid "" "The subsequent steps depend on whether the sequence pattern is fixed or " "variable-length." msgstr "" -#: reference/compound_stmts.rst:984 +#: reference/compound_stmts.rst:982 msgid "If the sequence pattern is fixed-length:" msgstr "" -#: reference/compound_stmts.rst:986 +#: reference/compound_stmts.rst:984 msgid "" "If the length of the subject sequence is not equal to the number of " "subpatterns, the sequence pattern fails" msgstr "" -#: reference/compound_stmts.rst:989 +#: reference/compound_stmts.rst:987 msgid "" "Subpatterns in the sequence pattern are matched to their corresponding items " "in the subject sequence from left to right. Matching stops as soon as a " @@ -985,118 +979,118 @@ msgid "" "corresponding item, the sequence pattern succeeds." msgstr "" -#: reference/compound_stmts.rst:994 +#: reference/compound_stmts.rst:992 msgid "Otherwise, if the sequence pattern is variable-length:" msgstr "" -#: reference/compound_stmts.rst:996 +#: reference/compound_stmts.rst:994 msgid "" "If the length of the subject sequence is less than the number of non-star " "subpatterns, the sequence pattern fails." msgstr "" -#: reference/compound_stmts.rst:999 +#: reference/compound_stmts.rst:997 msgid "" "The leading non-star subpatterns are matched to their corresponding items as " "for fixed-length sequences." msgstr "" -#: reference/compound_stmts.rst:1002 +#: reference/compound_stmts.rst:1000 msgid "" "If the previous step succeeds, the star subpattern matches a list formed of " "the remaining subject items, excluding the remaining items corresponding to " "non-star subpatterns following the star subpattern." msgstr "" -#: reference/compound_stmts.rst:1006 +#: reference/compound_stmts.rst:1004 msgid "" "Remaining non-star subpatterns are matched to their corresponding subject " "items, as for a fixed-length sequence." msgstr "" -#: reference/compound_stmts.rst:1009 +#: reference/compound_stmts.rst:1007 msgid "" "The length of the subject sequence is obtained via :func:`len` (i.e. via " "the :meth:`__len__` protocol). This length may be cached by the interpreter " "in a similar manner as :ref:`value patterns `." msgstr "" -#: reference/compound_stmts.rst:1015 +#: reference/compound_stmts.rst:1013 msgid "" "In simple terms ``[P1, P2, P3,`` ... ``, P]`` matches only if all the " "following happens:" msgstr "" -#: reference/compound_stmts.rst:1018 +#: reference/compound_stmts.rst:1016 msgid "check ```` is a sequence" msgstr "" -#: reference/compound_stmts.rst:1019 +#: reference/compound_stmts.rst:1017 msgid "``len(subject) == ``" msgstr "" -#: reference/compound_stmts.rst:1020 +#: reference/compound_stmts.rst:1018 msgid "" "``P1`` matches ``[0]`` (note that this match can also bind names)" msgstr "" -#: reference/compound_stmts.rst:1021 +#: reference/compound_stmts.rst:1019 msgid "" "``P2`` matches ``[1]`` (note that this match can also bind names)" msgstr "" -#: reference/compound_stmts.rst:1022 +#: reference/compound_stmts.rst:1020 msgid "... and so on for the corresponding pattern/element." msgstr "" -#: reference/compound_stmts.rst:1027 +#: reference/compound_stmts.rst:1025 msgid "Mapping Patterns" msgstr "" -#: reference/compound_stmts.rst:1029 +#: reference/compound_stmts.rst:1027 msgid "" "A mapping pattern contains one or more key-value patterns. The syntax is " "similar to the construction of a dictionary. Syntax:" msgstr "" -#: reference/compound_stmts.rst:1040 +#: reference/compound_stmts.rst:1038 msgid "" "At most one double star pattern may be in a mapping pattern. The double " "star pattern must be the last subpattern in the mapping pattern." msgstr "" -#: reference/compound_stmts.rst:1043 +#: reference/compound_stmts.rst:1041 msgid "" "Duplicate keys in mapping patterns are disallowed. Duplicate literal keys " "will raise a :exc:`SyntaxError`. Two keys that otherwise have the same value " "will raise a :exc:`ValueError` at runtime." msgstr "" -#: reference/compound_stmts.rst:1047 +#: reference/compound_stmts.rst:1045 msgid "" "The following is the logical flow for matching a mapping pattern against a " "subject value:" msgstr "" -#: reference/compound_stmts.rst:1050 +#: reference/compound_stmts.rst:1048 msgid "If the subject value is not a mapping [#]_,the mapping pattern fails." msgstr "" -#: reference/compound_stmts.rst:1052 +#: reference/compound_stmts.rst:1050 msgid "" "If every key given in the mapping pattern is present in the subject mapping, " "and the pattern for each key matches the corresponding item of the subject " "mapping, the mapping pattern succeeds." msgstr "" -#: reference/compound_stmts.rst:1056 +#: reference/compound_stmts.rst:1054 msgid "" "If duplicate keys are detected in the mapping pattern, the pattern is " "considered invalid. A :exc:`SyntaxError` is raised for duplicate literal " "values; or a :exc:`ValueError` for named keys of the same value." msgstr "" -#: reference/compound_stmts.rst:1060 +#: reference/compound_stmts.rst:1058 msgid "" "Key-value pairs are matched using the two-argument form of the mapping " "subject's ``get()`` method. Matched key-value pairs must already be present " @@ -1104,254 +1098,254 @@ msgid "" "`__getitem__`." msgstr "" -#: reference/compound_stmts.rst:1065 +#: reference/compound_stmts.rst:1063 msgid "" "In simple terms ``{KEY1: P1, KEY2: P2, ... }`` matches only if all the " "following happens:" msgstr "" -#: reference/compound_stmts.rst:1068 +#: reference/compound_stmts.rst:1066 msgid "check ```` is a mapping" msgstr "" -#: reference/compound_stmts.rst:1069 +#: reference/compound_stmts.rst:1067 msgid "``KEY1 in ``" msgstr "" -#: reference/compound_stmts.rst:1070 +#: reference/compound_stmts.rst:1068 msgid "``P1`` matches ``[KEY1]``" msgstr "" -#: reference/compound_stmts.rst:1071 +#: reference/compound_stmts.rst:1069 msgid "... and so on for the corresponding KEY/pattern pair." msgstr "" -#: reference/compound_stmts.rst:1077 +#: reference/compound_stmts.rst:1075 msgid "Class Patterns" msgstr "" -#: reference/compound_stmts.rst:1079 +#: reference/compound_stmts.rst:1077 msgid "" "A class pattern represents a class and its positional and keyword arguments " "(if any). Syntax:" msgstr "" -#: reference/compound_stmts.rst:1090 +#: reference/compound_stmts.rst:1088 msgid "The same keyword should not be repeated in class patterns." msgstr "" -#: reference/compound_stmts.rst:1092 +#: reference/compound_stmts.rst:1090 msgid "" "The following is the logical flow for matching a class pattern against a " "subject value:" msgstr "" -#: reference/compound_stmts.rst:1095 +#: reference/compound_stmts.rst:1093 msgid "" "If ``name_or_attr`` is not an instance of the builtin :class:`type` , raise :" "exc:`TypeError`." msgstr "" -#: reference/compound_stmts.rst:1098 +#: reference/compound_stmts.rst:1096 msgid "" "If the subject value is not an instance of ``name_or_attr`` (tested via :" "func:`isinstance`), the class pattern fails." msgstr "" -#: reference/compound_stmts.rst:1101 +#: reference/compound_stmts.rst:1099 msgid "" "If no pattern arguments are present, the pattern succeeds. Otherwise, the " "subsequent steps depend on whether keyword or positional argument patterns " "are present." msgstr "" -#: reference/compound_stmts.rst:1105 +#: reference/compound_stmts.rst:1103 msgid "" "For a number of built-in types (specified below), a single positional " "subpattern is accepted which will match the entire subject; for these types " "keyword patterns also work as for other types." msgstr "" -#: reference/compound_stmts.rst:1109 +#: reference/compound_stmts.rst:1107 msgid "" "If only keyword patterns are present, they are processed as follows, one by " "one:" msgstr "" -#: reference/compound_stmts.rst:1112 +#: reference/compound_stmts.rst:1110 msgid "I. The keyword is looked up as an attribute on the subject." msgstr "" -#: reference/compound_stmts.rst:1114 +#: reference/compound_stmts.rst:1112 msgid "" "If this raises an exception other than :exc:`AttributeError`, the exception " "bubbles up." msgstr "" -#: reference/compound_stmts.rst:1117 +#: reference/compound_stmts.rst:1115 msgid "If this raises :exc:`AttributeError`, the class pattern has failed." msgstr "" -#: reference/compound_stmts.rst:1119 +#: reference/compound_stmts.rst:1117 msgid "" "Else, the subpattern associated with the keyword pattern is matched against " "the subject's attribute value. If this fails, the class pattern fails; if " "this succeeds, the match proceeds to the next keyword." msgstr "" -#: reference/compound_stmts.rst:1124 +#: reference/compound_stmts.rst:1122 msgid "II. If all keyword patterns succeed, the class pattern succeeds." msgstr "" -#: reference/compound_stmts.rst:1126 +#: reference/compound_stmts.rst:1124 msgid "" "If any positional patterns are present, they are converted to keyword " "patterns using the :data:`~object.__match_args__` attribute on the class " "``name_or_attr`` before matching:" msgstr "" -#: reference/compound_stmts.rst:1130 +#: reference/compound_stmts.rst:1128 msgid "" "I. The equivalent of ``getattr(cls, \"__match_args__\", ())`` is called." msgstr "" -#: reference/compound_stmts.rst:1132 +#: reference/compound_stmts.rst:1130 msgid "If this raises an exception, the exception bubbles up." msgstr "" -#: reference/compound_stmts.rst:1134 +#: reference/compound_stmts.rst:1132 msgid "" "If the returned value is not a tuple, the conversion fails and :exc:" "`TypeError` is raised." msgstr "" -#: reference/compound_stmts.rst:1137 +#: reference/compound_stmts.rst:1135 msgid "" "If there are more positional patterns than ``len(cls.__match_args__)``, :exc:" "`TypeError` is raised." msgstr "" -#: reference/compound_stmts.rst:1140 +#: reference/compound_stmts.rst:1138 msgid "" "Otherwise, positional pattern ``i`` is converted to a keyword pattern using " "``__match_args__[i]`` as the keyword. ``__match_args__[i]`` must be a " "string; if not :exc:`TypeError` is raised." msgstr "" -#: reference/compound_stmts.rst:1144 +#: reference/compound_stmts.rst:1142 msgid "If there are duplicate keywords, :exc:`TypeError` is raised." msgstr "" -#: reference/compound_stmts.rst:1146 +#: reference/compound_stmts.rst:1144 msgid ":ref:`class-pattern-matching`" msgstr "" -#: reference/compound_stmts.rst:1149 +#: reference/compound_stmts.rst:1147 msgid "" "II. Once all positional patterns have been converted to keyword patterns," msgstr "" -#: reference/compound_stmts.rst:1149 +#: reference/compound_stmts.rst:1147 msgid "the match proceeds as if there were only keyword patterns." msgstr "" -#: reference/compound_stmts.rst:1151 +#: reference/compound_stmts.rst:1149 msgid "" "For the following built-in types the handling of positional subpatterns is " "different:" msgstr "" -#: reference/compound_stmts.rst:1154 +#: reference/compound_stmts.rst:1152 msgid ":class:`bool`" msgstr "" -#: reference/compound_stmts.rst:1155 +#: reference/compound_stmts.rst:1153 msgid ":class:`bytearray`" msgstr "" -#: reference/compound_stmts.rst:1156 +#: reference/compound_stmts.rst:1154 msgid ":class:`bytes`" msgstr "" -#: reference/compound_stmts.rst:1157 +#: reference/compound_stmts.rst:1155 msgid ":class:`dict`" msgstr "" -#: reference/compound_stmts.rst:1158 +#: reference/compound_stmts.rst:1156 msgid ":class:`float`" msgstr "" -#: reference/compound_stmts.rst:1159 +#: reference/compound_stmts.rst:1157 msgid ":class:`frozenset`" msgstr "" -#: reference/compound_stmts.rst:1160 +#: reference/compound_stmts.rst:1158 msgid ":class:`int`" msgstr "" -#: reference/compound_stmts.rst:1161 reference/compound_stmts.rst:1612 +#: reference/compound_stmts.rst:1159 reference/compound_stmts.rst:1850 msgid ":class:`list`" msgstr "" -#: reference/compound_stmts.rst:1162 +#: reference/compound_stmts.rst:1160 msgid ":class:`set`" msgstr "" -#: reference/compound_stmts.rst:1163 +#: reference/compound_stmts.rst:1161 msgid ":class:`str`" msgstr "" -#: reference/compound_stmts.rst:1164 reference/compound_stmts.rst:1615 +#: reference/compound_stmts.rst:1162 reference/compound_stmts.rst:1853 msgid ":class:`tuple`" msgstr "" -#: reference/compound_stmts.rst:1166 +#: reference/compound_stmts.rst:1164 msgid "" "These classes accept a single positional argument, and the pattern there is " "matched against the whole object rather than an attribute. For example " "``int(0|1)`` matches the value ``0``, but not the value ``0.0``." msgstr "" -#: reference/compound_stmts.rst:1170 +#: reference/compound_stmts.rst:1168 msgid "" "In simple terms ``CLS(P1, attr=P2)`` matches only if the following happens:" msgstr "" -#: reference/compound_stmts.rst:1172 +#: reference/compound_stmts.rst:1170 msgid "``isinstance(, CLS)``" msgstr "" -#: reference/compound_stmts.rst:1173 +#: reference/compound_stmts.rst:1171 msgid "convert ``P1`` to a keyword pattern using ``CLS.__match_args__``" msgstr "" -#: reference/compound_stmts.rst:1175 +#: reference/compound_stmts.rst:1173 msgid "For each keyword argument ``attr=P2``:" msgstr "" -#: reference/compound_stmts.rst:1175 +#: reference/compound_stmts.rst:1173 msgid "``hasattr(, \"attr\")``" msgstr "" -#: reference/compound_stmts.rst:1176 +#: reference/compound_stmts.rst:1174 msgid "``P2`` matches ``.attr``" msgstr "" -#: reference/compound_stmts.rst:1177 +#: reference/compound_stmts.rst:1175 msgid "... and so on for the corresponding keyword argument/pattern pair." msgstr "" -#: reference/compound_stmts.rst:1192 +#: reference/compound_stmts.rst:1190 msgid "Function definitions" msgstr "" -#: reference/compound_stmts.rst:1207 +#: reference/compound_stmts.rst:1205 msgid "" "A function definition defines a user-defined function object (see section :" "ref:`types`):" msgstr "" -#: reference/compound_stmts.rst:1226 +#: reference/compound_stmts.rst:1224 msgid "" "A function definition is an executable statement. Its execution binds the " "function name in the current local namespace to a function object (a wrapper " @@ -1360,13 +1354,13 @@ msgid "" "used when the function is called." msgstr "" -#: reference/compound_stmts.rst:1232 +#: reference/compound_stmts.rst:1230 msgid "" "The function definition does not execute the function body; this gets " "executed only when the function is called. [#]_" msgstr "" -#: reference/compound_stmts.rst:1238 +#: reference/compound_stmts.rst:1236 msgid "" "A function definition may be wrapped by one or more :term:`decorator` " "expressions. Decorator expressions are evaluated when the function is " @@ -1377,24 +1371,38 @@ msgid "" "example, the following code ::" msgstr "" -#: reference/compound_stmts.rst:1249 reference/compound_stmts.rst:1426 +#: reference/compound_stmts.rst:1247 reference/compound_stmts.rst:1433 msgid "is roughly equivalent to ::" msgstr "" -#: reference/compound_stmts.rst:1254 +#: reference/compound_stmts.rst:1252 msgid "" "except that the original function is not temporarily bound to the name " "``func``." msgstr "" -#: reference/compound_stmts.rst:1256 +#: reference/compound_stmts.rst:1254 msgid "" "Functions may be decorated with any valid :token:`~python-grammar:" "assignment_expression`. Previously, the grammar was much more restrictive; " "see :pep:`614` for details." msgstr "" -#: reference/compound_stmts.rst:1266 +#: reference/compound_stmts.rst:1259 +msgid "" +"A list of :ref:`type parameters ` may be given in square " +"brackets between the function's name and the opening parenthesis for its " +"parameter list. This indicates to static type checkers that the function is " +"generic. At runtime, the type parameters can be retrieved from the " +"function's ``__type_params__`` attribute. See :ref:`generic-functions` for " +"more." +msgstr "" + +#: reference/compound_stmts.rst:1265 reference/compound_stmts.rst:1452 +msgid "Type parameter lists are new in Python 3.12." +msgstr "" + +#: reference/compound_stmts.rst:1273 msgid "" "When one or more :term:`parameters ` have the form *parameter* " "``=`` *expression*, the function is said to have \"default parameter values." @@ -1405,7 +1413,7 @@ msgid "" "syntactic restriction that is not expressed by the grammar." msgstr "" -#: reference/compound_stmts.rst:1274 +#: reference/compound_stmts.rst:1281 msgid "" "**Default parameter values are evaluated from left to right when the " "function definition is executed.** This means that the expression is " @@ -1418,7 +1426,7 @@ msgid "" "the default, and explicitly test for it in the body of the function, e.g.::" msgstr "" -#: reference/compound_stmts.rst:1295 +#: reference/compound_stmts.rst:1302 msgid "" "Function call semantics are described in more detail in section :ref:" "`calls`. A function call always assigns values to all parameters mentioned " @@ -1434,13 +1442,13 @@ msgid "" "positional arguments." msgstr "" -#: reference/compound_stmts.rst:1307 +#: reference/compound_stmts.rst:1314 msgid "" "The ``/`` function parameter syntax may be used to indicate positional-only " "parameters. See :pep:`570` for details." msgstr "" -#: reference/compound_stmts.rst:1316 +#: reference/compound_stmts.rst:1323 msgid "" "Parameters may have an :term:`annotation ` of the form " "\"``: expression``\" following the parameter name. Any parameter may have " @@ -1457,7 +1465,7 @@ msgid "" "different order than they appear in the source code." msgstr "" -#: reference/compound_stmts.rst:1331 +#: reference/compound_stmts.rst:1338 msgid "" "It is also possible to create anonymous functions (functions not bound to a " "name), for immediate use in expressions. This uses lambda expressions, " @@ -1469,7 +1477,7 @@ msgid "" "execution of multiple statements and annotations." msgstr "" -#: reference/compound_stmts.rst:1339 +#: reference/compound_stmts.rst:1346 msgid "" "**Programmer's note:** Functions are first-class objects. A \"``def``\" " "statement executed inside a function definition defines a local function " @@ -1478,51 +1486,51 @@ msgid "" "See section :ref:`naming` for details." msgstr "" -#: reference/compound_stmts.rst:1348 +#: reference/compound_stmts.rst:1355 msgid ":pep:`3107` - Function Annotations" msgstr "" -#: reference/compound_stmts.rst:1348 +#: reference/compound_stmts.rst:1355 msgid "The original specification for function annotations." msgstr "" -#: reference/compound_stmts.rst:1351 +#: reference/compound_stmts.rst:1358 msgid ":pep:`484` - Type Hints" msgstr "" -#: reference/compound_stmts.rst:1351 +#: reference/compound_stmts.rst:1358 msgid "Definition of a standard meaning for annotations: type hints." msgstr "" -#: reference/compound_stmts.rst:1355 +#: reference/compound_stmts.rst:1362 msgid ":pep:`526` - Syntax for Variable Annotations" msgstr "" -#: reference/compound_stmts.rst:1354 +#: reference/compound_stmts.rst:1361 msgid "" "Ability to type hint variable declarations, including class variables and " "instance variables" msgstr "" -#: reference/compound_stmts.rst:1358 +#: reference/compound_stmts.rst:1365 msgid ":pep:`563` - Postponed Evaluation of Annotations" msgstr "" -#: reference/compound_stmts.rst:1358 +#: reference/compound_stmts.rst:1365 msgid "" "Support for forward references within annotations by preserving annotations " "in a string form at runtime instead of eager evaluation." msgstr "" -#: reference/compound_stmts.rst:1365 +#: reference/compound_stmts.rst:1372 msgid "Class definitions" msgstr "" -#: reference/compound_stmts.rst:1380 +#: reference/compound_stmts.rst:1387 msgid "A class definition defines a class object (see section :ref:`types`):" msgstr "" -#: reference/compound_stmts.rst:1387 +#: reference/compound_stmts.rst:1394 msgid "" "A class definition is an executable statement. The inheritance list usually " "gives a list of base classes (see :ref:`metaclasses` for more advanced " @@ -1531,11 +1539,11 @@ msgid "" "default, from the base class :class:`object`; hence, ::" msgstr "" -#: reference/compound_stmts.rst:1396 +#: reference/compound_stmts.rst:1403 msgid "is equivalent to ::" msgstr "" -#: reference/compound_stmts.rst:1401 +#: reference/compound_stmts.rst:1408 msgid "" "The class's suite is then executed in a new execution frame (see :ref:" "`naming`), using a newly created local namespace and the original global " @@ -1547,7 +1555,7 @@ msgid "" "original local namespace." msgstr "" -#: reference/compound_stmts.rst:1410 +#: reference/compound_stmts.rst:1417 msgid "" "The order in which attributes are defined in the class body is preserved in " "the new class's ``__dict__``. Note that this is reliable only right after " @@ -1555,30 +1563,39 @@ msgid "" "definition syntax." msgstr "" -#: reference/compound_stmts.rst:1415 +#: reference/compound_stmts.rst:1422 msgid "" "Class creation can be customized heavily using :ref:`metaclasses " "`." msgstr "" -#: reference/compound_stmts.rst:1420 +#: reference/compound_stmts.rst:1427 msgid "Classes can also be decorated: just like when decorating functions, ::" msgstr "" -#: reference/compound_stmts.rst:1431 +#: reference/compound_stmts.rst:1438 msgid "" "The evaluation rules for the decorator expressions are the same as for " "function decorators. The result is then bound to the class name." msgstr "" -#: reference/compound_stmts.rst:1434 +#: reference/compound_stmts.rst:1441 msgid "" "Classes may be decorated with any valid :token:`~python-grammar:" "assignment_expression`. Previously, the grammar was much more restrictive; " "see :pep:`614` for details." msgstr "" -#: reference/compound_stmts.rst:1439 +#: reference/compound_stmts.rst:1446 +msgid "" +"A list of :ref:`type parameters ` may be given in square " +"brackets immediately after the class's name. This indicates to static type " +"checkers that the class is generic. At runtime, the type parameters can be " +"retrieved from the class's ``__type_params__`` attribute. See :ref:`generic-" +"classes` for more." +msgstr "" + +#: reference/compound_stmts.rst:1455 msgid "" "**Programmer's note:** Variables defined in the class definition are class " "attributes; they are shared by instances. Instance attributes can be set in " @@ -1591,35 +1608,35 @@ msgid "" "implementation details." msgstr "" -#: reference/compound_stmts.rst:1454 +#: reference/compound_stmts.rst:1470 msgid ":pep:`3115` - Metaclasses in Python 3000" msgstr "" -#: reference/compound_stmts.rst:1452 +#: reference/compound_stmts.rst:1468 msgid "" "The proposal that changed the declaration of metaclasses to the current " "syntax, and the semantics for how classes with metaclasses are constructed." msgstr "" -#: reference/compound_stmts.rst:1457 +#: reference/compound_stmts.rst:1473 msgid ":pep:`3129` - Class Decorators" msgstr "" -#: reference/compound_stmts.rst:1457 +#: reference/compound_stmts.rst:1473 msgid "" "The proposal that added class decorators. Function and method decorators " "were introduced in :pep:`318`." msgstr "" -#: reference/compound_stmts.rst:1464 +#: reference/compound_stmts.rst:1480 msgid "Coroutines" msgstr "" -#: reference/compound_stmts.rst:1472 +#: reference/compound_stmts.rst:1488 msgid "Coroutine function definition" msgstr "" -#: reference/compound_stmts.rst:1482 +#: reference/compound_stmts.rst:1498 msgid "" "Execution of Python coroutines can be suspended and resumed at many points " "(see :term:`coroutine`). :keyword:`await` expressions, :keyword:`async for` " @@ -1627,183 +1644,373 @@ msgid "" "function." msgstr "" -#: reference/compound_stmts.rst:1486 +#: reference/compound_stmts.rst:1502 msgid "" "Functions defined with ``async def`` syntax are always coroutine functions, " "even if they do not contain ``await`` or ``async`` keywords." msgstr "" -#: reference/compound_stmts.rst:1489 +#: reference/compound_stmts.rst:1505 msgid "" "It is a :exc:`SyntaxError` to use a ``yield from`` expression inside the " "body of a coroutine function." msgstr "" -#: reference/compound_stmts.rst:1492 +#: reference/compound_stmts.rst:1508 msgid "An example of a coroutine function::" msgstr "" -#: reference/compound_stmts.rst:1498 +#: reference/compound_stmts.rst:1514 msgid "" "``await`` and ``async`` are now keywords; previously they were only treated " "as such inside the body of a coroutine function." msgstr "" -#: reference/compound_stmts.rst:1506 +#: reference/compound_stmts.rst:1522 msgid "The :keyword:`!async for` statement" msgstr "" -#: reference/compound_stmts.rst:1511 +#: reference/compound_stmts.rst:1527 msgid "" "An :term:`asynchronous iterable` provides an ``__aiter__`` method that " "directly returns an :term:`asynchronous iterator`, which can call " "asynchronous code in its ``__anext__`` method." msgstr "" -#: reference/compound_stmts.rst:1515 +#: reference/compound_stmts.rst:1531 msgid "" "The ``async for`` statement allows convenient iteration over asynchronous " "iterables." msgstr "" -#: reference/compound_stmts.rst:1525 +#: reference/compound_stmts.rst:1541 msgid "Is semantically equivalent to::" msgstr "" -#: reference/compound_stmts.rst:1541 +#: reference/compound_stmts.rst:1557 msgid "" "See also :meth:`~object.__aiter__` and :meth:`~object.__anext__` for details." msgstr "" -#: reference/compound_stmts.rst:1543 +#: reference/compound_stmts.rst:1559 msgid "" "It is a :exc:`SyntaxError` to use an ``async for`` statement outside the " "body of a coroutine function." msgstr "" -#: reference/compound_stmts.rst:1551 +#: reference/compound_stmts.rst:1567 msgid "The :keyword:`!async with` statement" msgstr "" -#: reference/compound_stmts.rst:1556 +#: reference/compound_stmts.rst:1572 msgid "" "An :term:`asynchronous context manager` is a :term:`context manager` that is " "able to suspend execution in its *enter* and *exit* methods." msgstr "" -#: reference/compound_stmts.rst:1583 +#: reference/compound_stmts.rst:1599 msgid "" "See also :meth:`~object.__aenter__` and :meth:`~object.__aexit__` for " "details." msgstr "" -#: reference/compound_stmts.rst:1585 +#: reference/compound_stmts.rst:1601 msgid "" "It is a :exc:`SyntaxError` to use an ``async with`` statement outside the " "body of a coroutine function." msgstr "" -#: reference/compound_stmts.rst:1591 +#: reference/compound_stmts.rst:1607 msgid ":pep:`492` - Coroutines with async and await syntax" msgstr "" -#: reference/compound_stmts.rst:1591 +#: reference/compound_stmts.rst:1607 msgid "" "The proposal that made coroutines a proper standalone concept in Python, and " "added supporting syntax." msgstr "" -#: reference/compound_stmts.rst:1596 +#: reference/compound_stmts.rst:1613 +msgid "Type parameter lists" +msgstr "" + +#: reference/compound_stmts.rst:1627 +msgid "" +":ref:`Functions ` (including :ref:`coroutines `), :ref:" +"`classes ` and :ref:`type aliases ` may contain a type " +"parameter list::" +msgstr "" + +#: reference/compound_stmts.rst:1646 +msgid "" +"Semantically, this indicates that the function, class, or type alias is " +"generic over a type variable. This information is primarily used by static " +"type checkers, and at runtime, generic objects behave much like their non-" +"generic counterparts." +msgstr "" + +#: reference/compound_stmts.rst:1651 +msgid "" +"Type parameters are declared in square brackets (``[]``) immediately after " +"the name of the function, class, or type alias. The type parameters are " +"accessible within the scope of the generic object, but not elsewhere. Thus, " +"after a declaration ``def func[T](): pass``, the name ``T`` is not available " +"in the module scope. Below, the semantics of generic objects are described " +"with more precision. The scope of type parameters is modeled with a special " +"function (technically, an :ref:`annotation scope `) that " +"wraps the creation of the generic object." +msgstr "" + +#: reference/compound_stmts.rst:1660 +msgid "" +"Generic functions, classes, and type aliases have a :attr:`!__type_params__` " +"attribute listing their type parameters." +msgstr "" + +#: reference/compound_stmts.rst:1663 +msgid "Type parameters come in three kinds:" +msgstr "" + +#: reference/compound_stmts.rst:1665 +msgid "" +":data:`typing.TypeVar`, introduced by a plain name (e.g., ``T``). " +"Semantically, this represents a single type to a type checker." +msgstr "" + +#: reference/compound_stmts.rst:1667 +msgid "" +":data:`typing.TypeVarTuple`, introduced by a name prefixed with a single " +"asterisk (e.g., ``*Ts``). Semantically, this stands for a tuple of any " +"number of types." +msgstr "" + +#: reference/compound_stmts.rst:1670 +msgid "" +":data:`typing.ParamSpec`, introduced by a name prefixed with two asterisks " +"(e.g., ``**P``). Semantically, this stands for the parameters of a callable." +msgstr "" + +#: reference/compound_stmts.rst:1673 +msgid "" +":data:`typing.TypeVar` declarations can define *bounds* and *constraints* " +"with a colon (``:``) followed by an expression. A single expression after " +"the colon indicates a bound (e.g. ``T: int``). Semantically, this means that " +"the :data:`!typing.TypeVar` can only represent types that are a subtype of " +"this bound. A parenthesized tuple of expressions after the colon indicates a " +"set of constraints (e.g. ``T: (str, bytes)``). Each member of the tuple " +"should be a type (again, this is not enforced at runtime). Constrained type " +"variables can only take on one of the types in the list of constraints." +msgstr "" + +#: reference/compound_stmts.rst:1682 +msgid "" +"For :data:`!typing.TypeVar`\\ s declared using the type parameter list " +"syntax, the bound and constraints are not evaluated when the generic object " +"is created, but only when the value is explicitly accessed through the " +"attributes ``__bound__`` and ``__constraints__``. To accomplish this, the " +"bounds or constraints are evaluated in a separate :ref:`annotation scope " +"`." +msgstr "" + +#: reference/compound_stmts.rst:1688 +msgid "" +":data:`typing.TypeVarTuple`\\ s and :data:`typing.ParamSpec`\\ s cannot have " +"bounds or constraints." +msgstr "" + +#: reference/compound_stmts.rst:1691 +msgid "" +"The following example indicates the full set of allowed type parameter " +"declarations::" +msgstr "" + +#: reference/compound_stmts.rst:1709 +msgid "Generic functions" +msgstr "" + +#: reference/compound_stmts.rst:1711 +msgid "Generic functions are declared as follows::" +msgstr "" + +#: reference/compound_stmts.rst:1715 reference/compound_stmts.rst:1775 +msgid "This syntax is equivalent to::" +msgstr "" + +#: reference/compound_stmts.rst:1724 +msgid "" +"Here ``annotation-def`` indicates an :ref:`annotation scope `, which is not actually bound to any name at runtime. (One other " +"liberty is taken in the translation: the syntax does not go through " +"attribute access on the :mod:`typing` module, but creates an instance of :" +"data:`typing.TypeVar` directly.)" +msgstr "" + +#: reference/compound_stmts.rst:1730 +msgid "" +"The annotations of generic functions are evaluated within the annotation " +"scope used for declaring the type parameters, but the function's defaults " +"and decorators are not." +msgstr "" + +#: reference/compound_stmts.rst:1734 +msgid "" +"The following example illustrates the scoping rules for these cases, as well " +"as for additional flavors of type parameters::" +msgstr "" + +#: reference/compound_stmts.rst:1741 +msgid "" +"Except for the :ref:`lazy evaluation ` of the :class:" +"`~typing.TypeVar` bound, this is equivalent to::" +msgstr "" + +#: reference/compound_stmts.rst:1763 +msgid "" +"The capitalized names like ``DEFAULT_OF_arg`` are not actually bound at " +"runtime." +msgstr "" + +#: reference/compound_stmts.rst:1769 +msgid "Generic classes" +msgstr "" + +#: reference/compound_stmts.rst:1771 +msgid "Generic classes are declared as follows::" +msgstr "" + +#: reference/compound_stmts.rst:1785 +msgid "" +"Here again ``annotation-def`` (not a real keyword) indicates an :ref:" +"`annotation scope `, and the name ``TYPE_PARAMS_OF_Bag`` " +"is not actually bound at runtime." +msgstr "" + +#: reference/compound_stmts.rst:1789 +msgid "" +"Generic classes implicitly inherit from :data:`typing.Generic`. The base " +"classes and keyword arguments of generic classes are evaluated within the " +"type scope for the type parameters, and decorators are evaluated outside " +"that scope. This is illustrated by this example::" +msgstr "" + +#: reference/compound_stmts.rst:1798 +msgid "This is equivalent to::" +msgstr "" + +#: reference/compound_stmts.rst:1811 +msgid "Generic type aliases" +msgstr "" + +#: reference/compound_stmts.rst:1813 +msgid "" +"The :keyword:`type` statement can also be used to create a generic type " +"alias::" +msgstr "" + +#: reference/compound_stmts.rst:1817 +msgid "" +"Except for the :ref:`lazy evaluation ` of the value, this " +"is equivalent to::" +msgstr "" + +#: reference/compound_stmts.rst:1829 +msgid "" +"Here, ``annotation-def`` (not a real keyword) indicates an :ref:`annotation " +"scope `. The capitalized names like " +"``TYPE_PARAMS_OF_ListOrSet`` are not actually bound at runtime." +msgstr "" + +#: reference/compound_stmts.rst:1834 msgid "Footnotes" msgstr "" -#: reference/compound_stmts.rst:1597 +#: reference/compound_stmts.rst:1835 msgid "" "The exception is propagated to the invocation stack unless there is a :" "keyword:`finally` clause which happens to raise another exception. That new " "exception causes the old one to be lost." msgstr "" -#: reference/compound_stmts.rst:1601 +#: reference/compound_stmts.rst:1839 msgid "In pattern matching, a sequence is defined as one of the following:" msgstr "" -#: reference/compound_stmts.rst:1603 +#: reference/compound_stmts.rst:1841 msgid "a class that inherits from :class:`collections.abc.Sequence`" msgstr "" -#: reference/compound_stmts.rst:1604 +#: reference/compound_stmts.rst:1842 msgid "" "a Python class that has been registered as :class:`collections.abc.Sequence`" msgstr "" -#: reference/compound_stmts.rst:1605 +#: reference/compound_stmts.rst:1843 msgid "" "a builtin class that has its (CPython) :c:macro:`Py_TPFLAGS_SEQUENCE` bit set" msgstr "" -#: reference/compound_stmts.rst:1606 reference/compound_stmts.rst:1625 +#: reference/compound_stmts.rst:1844 reference/compound_stmts.rst:1863 msgid "a class that inherits from any of the above" msgstr "" -#: reference/compound_stmts.rst:1608 +#: reference/compound_stmts.rst:1846 msgid "The following standard library classes are sequences:" msgstr "" -#: reference/compound_stmts.rst:1610 +#: reference/compound_stmts.rst:1848 msgid ":class:`array.array`" msgstr "" -#: reference/compound_stmts.rst:1611 +#: reference/compound_stmts.rst:1849 msgid ":class:`collections.deque`" msgstr "" -#: reference/compound_stmts.rst:1613 +#: reference/compound_stmts.rst:1851 msgid ":class:`memoryview`" msgstr "" -#: reference/compound_stmts.rst:1614 +#: reference/compound_stmts.rst:1852 msgid ":class:`range`" msgstr "" -#: reference/compound_stmts.rst:1617 +#: reference/compound_stmts.rst:1855 msgid "" "Subject values of type ``str``, ``bytes``, and ``bytearray`` do not match " "sequence patterns." msgstr "" -#: reference/compound_stmts.rst:1620 +#: reference/compound_stmts.rst:1858 msgid "In pattern matching, a mapping is defined as one of the following:" msgstr "" -#: reference/compound_stmts.rst:1622 +#: reference/compound_stmts.rst:1860 msgid "a class that inherits from :class:`collections.abc.Mapping`" msgstr "" -#: reference/compound_stmts.rst:1623 +#: reference/compound_stmts.rst:1861 msgid "" "a Python class that has been registered as :class:`collections.abc.Mapping`" msgstr "" -#: reference/compound_stmts.rst:1624 +#: reference/compound_stmts.rst:1862 msgid "" "a builtin class that has its (CPython) :c:macro:`Py_TPFLAGS_MAPPING` bit set" msgstr "" -#: reference/compound_stmts.rst:1627 +#: reference/compound_stmts.rst:1865 msgid "" "The standard library classes :class:`dict` and :class:`types." "MappingProxyType` are mappings." msgstr "" -#: reference/compound_stmts.rst:1630 +#: reference/compound_stmts.rst:1868 msgid "" "A string literal appearing as the first statement in the function body is " "transformed into the function's ``__doc__`` attribute and therefore the " "function's :term:`docstring`." msgstr "" -#: reference/compound_stmts.rst:1634 +#: reference/compound_stmts.rst:1872 msgid "" "A string literal appearing as the first statement in the class body is " "transformed into the namespace's ``__doc__`` item and therefore the class's :" @@ -1817,11 +2024,11 @@ msgstr "" #: reference/compound_stmts.rst:86 reference/compound_stmts.rst:111 #: reference/compound_stmts.rst:129 reference/compound_stmts.rst:144 #: reference/compound_stmts.rst:169 reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:391 reference/compound_stmts.rst:438 -#: reference/compound_stmts.rst:472 reference/compound_stmts.rst:589 -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1367 -#: reference/compound_stmts.rst:1468 reference/compound_stmts.rst:1502 -#: reference/compound_stmts.rst:1547 +#: reference/compound_stmts.rst:389 reference/compound_stmts.rst:436 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1374 +#: reference/compound_stmts.rst:1484 reference/compound_stmts.rst:1518 +#: reference/compound_stmts.rst:1563 msgid "statement" msgstr "" @@ -1851,19 +2058,19 @@ msgstr "" #: reference/compound_stmts.rst:64 reference/compound_stmts.rst:86 #: reference/compound_stmts.rst:111 reference/compound_stmts.rst:144 -#: reference/compound_stmts.rst:207 reference/compound_stmts.rst:391 +#: reference/compound_stmts.rst:207 reference/compound_stmts.rst:389 msgid "else" msgstr "" -#: reference/compound_stmts.rst:86 reference/compound_stmts.rst:589 +#: reference/compound_stmts.rst:86 reference/compound_stmts.rst:587 msgid "if" msgstr "" #: reference/compound_stmts.rst:86 reference/compound_stmts.rst:111 #: reference/compound_stmts.rst:144 reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:328 reference/compound_stmts.rst:391 -#: reference/compound_stmts.rst:409 reference/compound_stmts.rst:472 -#: reference/compound_stmts.rst:589 reference/compound_stmts.rst:1478 +#: reference/compound_stmts.rst:328 reference/compound_stmts.rst:389 +#: reference/compound_stmts.rst:407 reference/compound_stmts.rst:470 +#: reference/compound_stmts.rst:587 reference/compound_stmts.rst:1494 msgid "keyword" msgstr "" @@ -1873,16 +2080,16 @@ msgstr "" #: reference/compound_stmts.rst:86 reference/compound_stmts.rst:111 #: reference/compound_stmts.rst:144 reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:472 reference/compound_stmts.rst:589 -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1311 -#: reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1318 +#: reference/compound_stmts.rst:1374 msgid ": (colon)" msgstr "" #: reference/compound_stmts.rst:86 reference/compound_stmts.rst:111 #: reference/compound_stmts.rst:144 reference/compound_stmts.rst:207 -#: reference/compound_stmts.rst:472 reference/compound_stmts.rst:589 -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:587 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1374 msgid "compound statement" msgstr "" @@ -1895,12 +2102,12 @@ msgid "loop" msgstr "" #: reference/compound_stmts.rst:129 reference/compound_stmts.rst:169 -#: reference/compound_stmts.rst:391 reference/compound_stmts.rst:438 +#: reference/compound_stmts.rst:389 reference/compound_stmts.rst:436 msgid "break" msgstr "" #: reference/compound_stmts.rst:129 reference/compound_stmts.rst:169 -#: reference/compound_stmts.rst:391 reference/compound_stmts.rst:438 +#: reference/compound_stmts.rst:389 reference/compound_stmts.rst:436 msgid "continue" msgstr "" @@ -1921,7 +2128,7 @@ msgid "list" msgstr "" #: reference/compound_stmts.rst:144 reference/compound_stmts.rst:299 -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1374 msgid "object" msgstr "" @@ -1945,12 +2152,12 @@ msgstr "" msgid "except" msgstr "" -#: reference/compound_stmts.rst:207 reference/compound_stmts.rst:409 +#: reference/compound_stmts.rst:207 reference/compound_stmts.rst:407 msgid "finally" msgstr "" #: reference/compound_stmts.rst:207 reference/compound_stmts.rst:266 -#: reference/compound_stmts.rst:472 reference/compound_stmts.rst:589 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:587 msgid "as" msgstr "" @@ -1974,197 +2181,201 @@ msgstr "" msgid "except_star" msgstr "" -#: reference/compound_stmts.rst:391 reference/compound_stmts.rst:438 +#: reference/compound_stmts.rst:389 reference/compound_stmts.rst:436 msgid "return" msgstr "" -#: reference/compound_stmts.rst:472 +#: reference/compound_stmts.rst:470 msgid "with" msgstr "" -#: reference/compound_stmts.rst:472 +#: reference/compound_stmts.rst:470 msgid "with statement" msgstr "" -#: reference/compound_stmts.rst:472 reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:470 reference/compound_stmts.rst:1192 +#: reference/compound_stmts.rst:1374 msgid ", (comma)" msgstr "" -#: reference/compound_stmts.rst:589 +#: reference/compound_stmts.rst:587 msgid "match" msgstr "" -#: reference/compound_stmts.rst:589 +#: reference/compound_stmts.rst:587 msgid "case" msgstr "" -#: reference/compound_stmts.rst:589 +#: reference/compound_stmts.rst:587 msgid "pattern matching" msgstr "" -#: reference/compound_stmts.rst:589 +#: reference/compound_stmts.rst:587 msgid "match statement" msgstr "" -#: reference/compound_stmts.rst:693 +#: reference/compound_stmts.rst:691 msgid "guard" msgstr "" -#: reference/compound_stmts.rst:732 +#: reference/compound_stmts.rst:730 msgid "irrefutable case block" msgstr "" -#: reference/compound_stmts.rst:732 +#: reference/compound_stmts.rst:730 msgid "case block" msgstr "" -#: reference/compound_stmts.rst:756 +#: reference/compound_stmts.rst:754 msgid "! patterns" msgstr "" -#: reference/compound_stmts.rst:756 +#: reference/compound_stmts.rst:754 msgid "AS pattern, OR pattern, capture pattern, wildcard pattern" msgstr "" -#: reference/compound_stmts.rst:1185 reference/compound_stmts.rst:1261 +#: reference/compound_stmts.rst:1183 reference/compound_stmts.rst:1268 msgid "parameter" msgstr "" -#: reference/compound_stmts.rst:1185 reference/compound_stmts.rst:1194 -#: reference/compound_stmts.rst:1235 reference/compound_stmts.rst:1261 -#: reference/compound_stmts.rst:1290 +#: reference/compound_stmts.rst:1183 reference/compound_stmts.rst:1192 +#: reference/compound_stmts.rst:1233 reference/compound_stmts.rst:1268 +#: reference/compound_stmts.rst:1297 msgid "function definition" msgstr "" -#: reference/compound_stmts.rst:1194 +#: reference/compound_stmts.rst:1192 msgid "def" msgstr "" -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1311 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1318 msgid "function" msgstr "" -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1374 msgid "definition" msgstr "" -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1374 msgid "name" msgstr "" -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1374 msgid "binding" msgstr "" -#: reference/compound_stmts.rst:1194 +#: reference/compound_stmts.rst:1192 msgid "user-defined function" msgstr "" -#: reference/compound_stmts.rst:1194 reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1192 reference/compound_stmts.rst:1374 msgid "() (parentheses)" msgstr "" -#: reference/compound_stmts.rst:1194 +#: reference/compound_stmts.rst:1192 msgid "parameter list" msgstr "" -#: reference/compound_stmts.rst:1235 reference/compound_stmts.rst:1417 +#: reference/compound_stmts.rst:1233 reference/compound_stmts.rst:1424 msgid "@ (at)" msgstr "" -#: reference/compound_stmts.rst:1261 +#: reference/compound_stmts.rst:1268 msgid "default" msgstr "" -#: reference/compound_stmts.rst:1261 +#: reference/compound_stmts.rst:1268 msgid "value" msgstr "" -#: reference/compound_stmts.rst:1261 +#: reference/compound_stmts.rst:1268 msgid "argument" msgstr "" -#: reference/compound_stmts.rst:1261 +#: reference/compound_stmts.rst:1268 msgid "= (equals)" msgstr "" -#: reference/compound_stmts.rst:1290 +#: reference/compound_stmts.rst:1297 msgid "/ (slash)" msgstr "" -#: reference/compound_stmts.rst:1290 +#: reference/compound_stmts.rst:1297 msgid "* (asterisk)" msgstr "" -#: reference/compound_stmts.rst:1290 +#: reference/compound_stmts.rst:1297 msgid "**" msgstr "" -#: reference/compound_stmts.rst:1311 +#: reference/compound_stmts.rst:1318 msgid "annotations" msgstr "" -#: reference/compound_stmts.rst:1311 +#: reference/compound_stmts.rst:1318 msgid "->" msgstr "" -#: reference/compound_stmts.rst:1311 +#: reference/compound_stmts.rst:1318 msgid "function annotations" msgstr "" -#: reference/compound_stmts.rst:1329 +#: reference/compound_stmts.rst:1336 msgid "lambda" msgstr "" -#: reference/compound_stmts.rst:1329 +#: reference/compound_stmts.rst:1336 msgid "expression" msgstr "" -#: reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1374 msgid "class" msgstr "" -#: reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1374 msgid "execution" msgstr "" -#: reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1374 msgid "frame" msgstr "" -#: reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1374 msgid "inheritance" msgstr "" -#: reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1374 msgid "docstring" msgstr "" -#: reference/compound_stmts.rst:1367 reference/compound_stmts.rst:1417 +#: reference/compound_stmts.rst:1374 reference/compound_stmts.rst:1424 msgid "class definition" msgstr "" -#: reference/compound_stmts.rst:1367 +#: reference/compound_stmts.rst:1374 msgid "expression list" msgstr "" -#: reference/compound_stmts.rst:1468 +#: reference/compound_stmts.rst:1484 msgid "async def" msgstr "" -#: reference/compound_stmts.rst:1478 +#: reference/compound_stmts.rst:1494 msgid "async" msgstr "" -#: reference/compound_stmts.rst:1478 +#: reference/compound_stmts.rst:1494 msgid "await" msgstr "" -#: reference/compound_stmts.rst:1502 +#: reference/compound_stmts.rst:1518 msgid "async for" msgstr "" -#: reference/compound_stmts.rst:1547 +#: reference/compound_stmts.rst:1563 msgid "async with" msgstr "" + +#: reference/compound_stmts.rst:1617 +msgid "type parameters" +msgstr "" diff --git a/reference/datamodel.po b/reference/datamodel.po index 18b4bbd32..edc00f944 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -596,115 +596,115 @@ msgid "" "containing the same number of items as the function's formal parameter list." msgstr "" -#: reference/datamodel.rst:918 +#: reference/datamodel.rst:926 msgid "Special attributes:" msgstr "" -#: reference/datamodel.rst:553 +#: reference/datamodel.rst:554 msgid "Attribute" msgstr "" -#: reference/datamodel.rst:553 +#: reference/datamodel.rst:554 msgid "Meaning" msgstr "" -#: reference/datamodel.rst:836 reference/datamodel.rst:934 +#: reference/datamodel.rst:843 reference/datamodel.rst:942 msgid ":attr:`__doc__`" msgstr "" -#: reference/datamodel.rst:555 +#: reference/datamodel.rst:556 msgid "" "The function's documentation string, or ``None`` if unavailable; not " "inherited by subclasses." msgstr "" -#: reference/datamodel.rst:560 reference/datamodel.rst:568 -#: reference/datamodel.rst:578 reference/datamodel.rst:599 -#: reference/datamodel.rst:609 +#: reference/datamodel.rst:561 reference/datamodel.rst:569 +#: reference/datamodel.rst:579 reference/datamodel.rst:600 +#: reference/datamodel.rst:613 msgid "Writable" msgstr "" -#: reference/datamodel.rst:560 +#: reference/datamodel.rst:561 msgid ":attr:`~definition.\\ __name__`" msgstr "" -#: reference/datamodel.rst:560 +#: reference/datamodel.rst:561 msgid "The function's name." msgstr "" -#: reference/datamodel.rst:563 +#: reference/datamodel.rst:564 msgid ":attr:`~definition.\\ __qualname__`" msgstr "" -#: reference/datamodel.rst:563 +#: reference/datamodel.rst:564 msgid "The function's :term:`qualified name`." msgstr "" -#: reference/datamodel.rst:924 +#: reference/datamodel.rst:932 msgid ":attr:`__module__`" msgstr "" -#: reference/datamodel.rst:568 +#: reference/datamodel.rst:569 msgid "" "The name of the module the function was defined in, or ``None`` if " "unavailable." msgstr "" -#: reference/datamodel.rst:572 +#: reference/datamodel.rst:573 msgid ":attr:`__defaults__`" msgstr "" -#: reference/datamodel.rst:572 +#: reference/datamodel.rst:573 msgid "" "A tuple containing default argument values for those arguments that have " "defaults, or ``None`` if no arguments have a default value." msgstr "" -#: reference/datamodel.rst:578 +#: reference/datamodel.rst:579 msgid ":attr:`__code__`" msgstr "" -#: reference/datamodel.rst:578 +#: reference/datamodel.rst:579 msgid "The code object representing the compiled function body." msgstr "" -#: reference/datamodel.rst:581 +#: reference/datamodel.rst:582 msgid ":attr:`__globals__`" msgstr "" -#: reference/datamodel.rst:581 +#: reference/datamodel.rst:582 msgid "" "A reference to the dictionary that holds the function's global variables --- " "the global namespace of the module in which the function was defined." msgstr "" -#: reference/datamodel.rst:592 +#: reference/datamodel.rst:593 msgid "Read-only" msgstr "" -#: reference/datamodel.rst:927 +#: reference/datamodel.rst:935 msgid ":attr:`~object.__dict__`" msgstr "" -#: reference/datamodel.rst:588 +#: reference/datamodel.rst:589 msgid "The namespace supporting arbitrary function attributes." msgstr "" -#: reference/datamodel.rst:592 +#: reference/datamodel.rst:593 msgid ":attr:`__closure__`" msgstr "" -#: reference/datamodel.rst:592 +#: reference/datamodel.rst:593 msgid "" "``None`` or a tuple of cells that contain bindings for the function's free " "variables. See below for information on the ``cell_contents`` attribute." msgstr "" -#: reference/datamodel.rst:851 reference/datamodel.rst:942 +#: reference/datamodel.rst:858 reference/datamodel.rst:949 msgid ":attr:`__annotations__`" msgstr "" -#: reference/datamodel.rst:599 +#: reference/datamodel.rst:600 msgid "" "A dict containing annotations of parameters. The keys of the dict are the " "parameter names, and ``'return'`` for the return annotation, if provided. " @@ -712,21 +712,31 @@ msgid "" "howto`." msgstr "" -#: reference/datamodel.rst:609 +#: reference/datamodel.rst:610 msgid ":attr:`__kwdefaults__`" msgstr "" -#: reference/datamodel.rst:609 +#: reference/datamodel.rst:610 msgid "A dict containing defaults for keyword-only parameters." msgstr "" +#: reference/datamodel.rst:954 +msgid ":attr:`__type_params__`" +msgstr "" + #: reference/datamodel.rst:613 msgid "" +"A tuple containing the :ref:`type parameters ` of a :ref:" +"`generic function `." +msgstr "" + +#: reference/datamodel.rst:620 +msgid "" "Most of the attributes labelled \"Writable\" check the type of the assigned " "value." msgstr "" -#: reference/datamodel.rst:615 +#: reference/datamodel.rst:622 msgid "" "Function objects also support getting and setting arbitrary attributes, " "which can be used, for example, to attach metadata to functions. Regular " @@ -736,30 +746,30 @@ msgid "" "future.*" msgstr "" -#: reference/datamodel.rst:621 +#: reference/datamodel.rst:628 msgid "" "A cell object has the attribute ``cell_contents``. This can be used to get " "the value of the cell, as well as set the value." msgstr "" -#: reference/datamodel.rst:624 +#: reference/datamodel.rst:631 msgid "" "Additional information about a function's definition can be retrieved from " "its code object; see the description of internal types below. The :data:" "`cell ` type can be accessed in the :mod:`types` module." msgstr "" -#: reference/datamodel.rst:631 +#: reference/datamodel.rst:638 msgid "Instance methods" msgstr "" -#: reference/datamodel.rst:638 +#: reference/datamodel.rst:645 msgid "" "An instance method object combines a class, a class instance and any " "callable object (normally a user-defined function)." msgstr "" -#: reference/datamodel.rst:648 +#: reference/datamodel.rst:655 msgid "" "Special read-only attributes: :attr:`__self__` is the class instance " "object, :attr:`__func__` is the function object; :attr:`__doc__` is the " @@ -769,20 +779,20 @@ msgid "" "``None`` if unavailable." msgstr "" -#: reference/datamodel.rst:654 +#: reference/datamodel.rst:661 msgid "" "Methods also support accessing (but not setting) the arbitrary function " "attributes on the underlying function object." msgstr "" -#: reference/datamodel.rst:657 +#: reference/datamodel.rst:664 msgid "" "User-defined method objects may be created when getting an attribute of a " "class (perhaps via an instance of that class), if that attribute is a user-" "defined function object or a class method object." msgstr "" -#: reference/datamodel.rst:661 +#: reference/datamodel.rst:668 msgid "" "When an instance method object is created by retrieving a user-defined " "function object from a class via one of its instances, its :attr:`__self__` " @@ -790,7 +800,7 @@ msgid "" "new method's :attr:`__func__` attribute is the original function object." msgstr "" -#: reference/datamodel.rst:667 +#: reference/datamodel.rst:674 msgid "" "When an instance method object is created by retrieving a class method " "object from a class or instance, its :attr:`__self__` attribute is the class " @@ -798,7 +808,7 @@ msgid "" "the class method." msgstr "" -#: reference/datamodel.rst:672 +#: reference/datamodel.rst:679 msgid "" "When an instance method object is called, the underlying function (:attr:" "`__func__`) is called, inserting the class instance (:attr:`__self__`) in " @@ -807,7 +817,7 @@ msgid "" "class:`C`, calling ``x.f(1)`` is equivalent to calling ``C.f(x, 1)``." msgstr "" -#: reference/datamodel.rst:679 +#: reference/datamodel.rst:686 msgid "" "When an instance method object is derived from a class method object, the " "\"class instance\" stored in :attr:`__self__` will actually be the class " @@ -815,7 +825,7 @@ msgid "" "calling ``f(C,1)`` where ``f`` is the underlying function." msgstr "" -#: reference/datamodel.rst:684 +#: reference/datamodel.rst:691 msgid "" "Note that the transformation from function object to instance method object " "happens each time the attribute is retrieved from the instance. In some " @@ -828,11 +838,11 @@ msgid "" "the function is an attribute of the class." msgstr "" -#: reference/datamodel.rst:697 +#: reference/datamodel.rst:704 msgid "Generator functions" msgstr "" -#: reference/datamodel.rst:703 +#: reference/datamodel.rst:710 msgid "" "A function or method which uses the :keyword:`yield` statement (see section :" "ref:`yield`) is called a :dfn:`generator function`. Such a function, when " @@ -845,11 +855,11 @@ msgid "" "values to be returned." msgstr "" -#: reference/datamodel.rst:715 +#: reference/datamodel.rst:722 msgid "Coroutine functions" msgstr "" -#: reference/datamodel.rst:720 +#: reference/datamodel.rst:727 msgid "" "A function or method which is defined using :keyword:`async def` is called " "a :dfn:`coroutine function`. Such a function, when called, returns a :term:" @@ -858,11 +868,11 @@ msgid "" "ref:`coroutine-objects` section." msgstr "" -#: reference/datamodel.rst:728 +#: reference/datamodel.rst:735 msgid "Asynchronous generator functions" msgstr "" -#: reference/datamodel.rst:734 +#: reference/datamodel.rst:741 msgid "" "A function or method which is defined using :keyword:`async def` and which " "uses the :keyword:`yield` statement is called a :dfn:`asynchronous generator " @@ -871,7 +881,7 @@ msgid "" "execute the body of the function." msgstr "" -#: reference/datamodel.rst:740 +#: reference/datamodel.rst:747 msgid "" "Calling the asynchronous iterator's :meth:`aiterator.__anext__ ` method will return an :term:`awaitable` which when awaited will " @@ -882,11 +892,11 @@ msgid "" "yielded." msgstr "" -#: reference/datamodel.rst:751 +#: reference/datamodel.rst:758 msgid "Built-in functions" msgstr "" -#: reference/datamodel.rst:758 +#: reference/datamodel.rst:765 msgid "" "A built-in function object is a wrapper around a C function. Examples of " "built-in functions are :func:`len` and :func:`math.sin` (:mod:`math` is a " @@ -898,11 +908,11 @@ msgid "" "module the function was defined in or ``None`` if unavailable." msgstr "" -#: reference/datamodel.rst:769 +#: reference/datamodel.rst:776 msgid "Built-in methods" msgstr "" -#: reference/datamodel.rst:776 +#: reference/datamodel.rst:783 msgid "" "This is really a different disguise of a built-in function, this time " "containing an object passed to the C function as an implicit extra " @@ -911,11 +921,11 @@ msgid "" "attr:`__self__` is set to the object denoted by *alist*." msgstr "" -#: reference/datamodel.rst:784 +#: reference/datamodel.rst:791 msgid "Classes" msgstr "" -#: reference/datamodel.rst:786 +#: reference/datamodel.rst:793 msgid "" "Classes are callable. These objects normally act as factories for new " "instances of themselves, but variations are possible for class types that " @@ -924,21 +934,21 @@ msgid "" "initialize the new instance." msgstr "" -#: reference/datamodel.rst:794 +#: reference/datamodel.rst:801 msgid "Class Instances" msgstr "" -#: reference/datamodel.rst:796 +#: reference/datamodel.rst:803 msgid "" "Instances of arbitrary classes can be made callable by defining a :meth:" "`~object.__call__` method in their class." msgstr "" -#: reference/datamodel.rst:801 +#: reference/datamodel.rst:808 msgid "Modules" msgstr "" -#: reference/datamodel.rst:807 +#: reference/datamodel.rst:814 msgid "" "Modules are a basic organizational unit of Python code, and are created by " "the :ref:`import system ` as invoked either by the :keyword:" @@ -952,33 +962,33 @@ msgid "" "needed once the initialization is done)." msgstr "" -#: reference/datamodel.rst:819 +#: reference/datamodel.rst:826 msgid "" "Attribute assignment updates the module's namespace dictionary, e.g., ``m.x " "= 1`` is equivalent to ``m.__dict__[\"x\"] = 1``." msgstr "" -#: reference/datamodel.rst:829 +#: reference/datamodel.rst:836 msgid "Predefined (writable) attributes:" msgstr "" -#: reference/datamodel.rst:832 +#: reference/datamodel.rst:839 msgid ":attr:`__name__`" msgstr "" -#: reference/datamodel.rst:832 +#: reference/datamodel.rst:839 msgid "The module's name." msgstr "" -#: reference/datamodel.rst:835 +#: reference/datamodel.rst:842 msgid "The module's documentation string, or ``None`` if unavailable." msgstr "" -#: reference/datamodel.rst:845 +#: reference/datamodel.rst:852 msgid ":attr:`__file__`" msgstr "" -#: reference/datamodel.rst:839 +#: reference/datamodel.rst:846 msgid "" "The pathname of the file from which the module was loaded, if it was loaded " "from a file. The :attr:`__file__` attribute may be missing for certain types " @@ -987,20 +997,20 @@ msgid "" "library, it's the pathname of the shared library file." msgstr "" -#: reference/datamodel.rst:848 +#: reference/datamodel.rst:855 msgid "" "A dictionary containing :term:`variable annotations ` " "collected during module body execution. For best practices on working with :" "attr:`__annotations__`, please see :ref:`annotations-howto`." msgstr "" -#: reference/datamodel.rst:855 +#: reference/datamodel.rst:862 msgid "" "Special read-only attribute: :attr:`~object.__dict__` is the module's " "namespace as a dictionary object." msgstr "" -#: reference/datamodel.rst:860 +#: reference/datamodel.rst:867 msgid "" "Because of the way CPython clears module dictionaries, the module dictionary " "will be cleared when the module falls out of scope even if the dictionary " @@ -1008,11 +1018,11 @@ msgid "" "module around while using its dictionary directly." msgstr "" -#: reference/datamodel.rst:867 +#: reference/datamodel.rst:874 msgid "Custom classes" msgstr "" -#: reference/datamodel.rst:869 +#: reference/datamodel.rst:876 msgid "" "Custom class types are typically created by class definitions (see section :" "ref:`class`). A class has a namespace implemented by a dictionary object. " @@ -1028,7 +1038,7 @@ msgid "" "python.org/download/releases/2.3/mro/." msgstr "" -#: reference/datamodel.rst:893 +#: reference/datamodel.rst:900 msgid "" "When a class attribute reference (for class :class:`C`, say) would yield a " "class method object, it is transformed into an instance method object whose :" @@ -1039,60 +1049,66 @@ msgid "" "in its :attr:`~object.__dict__`." msgstr "" -#: reference/datamodel.rst:903 +#: reference/datamodel.rst:910 msgid "" "Class attribute assignments update the class's dictionary, never the " "dictionary of a base class." msgstr "" -#: reference/datamodel.rst:908 +#: reference/datamodel.rst:915 msgid "" "A class object can be called (see above) to yield a class instance (see " "below)." msgstr "" -#: reference/datamodel.rst:921 +#: reference/datamodel.rst:929 msgid ":attr:`~definition.__name__`" msgstr "" -#: reference/datamodel.rst:921 +#: reference/datamodel.rst:929 msgid "The class name." msgstr "" -#: reference/datamodel.rst:924 +#: reference/datamodel.rst:932 msgid "The name of the module in which the class was defined." msgstr "" -#: reference/datamodel.rst:927 +#: reference/datamodel.rst:935 msgid "The dictionary containing the class's namespace." msgstr "" -#: reference/datamodel.rst:931 +#: reference/datamodel.rst:939 msgid ":attr:`~class.__bases__`" msgstr "" -#: reference/datamodel.rst:930 +#: reference/datamodel.rst:938 msgid "" "A tuple containing the base classes, in the order of their occurrence in the " "base class list." msgstr "" -#: reference/datamodel.rst:934 +#: reference/datamodel.rst:942 msgid "The class's documentation string, or ``None`` if undefined." msgstr "" -#: reference/datamodel.rst:937 +#: reference/datamodel.rst:945 msgid "" "A dictionary containing :term:`variable annotations ` " "collected during class body execution. For best practices on working with :" "attr:`__annotations__`, please see :ref:`annotations-howto`." msgstr "" -#: reference/datamodel.rst:945 +#: reference/datamodel.rst:952 +msgid "" +"A tuple containing the :ref:`type parameters ` of a :ref:" +"`generic class `." +msgstr "" + +#: reference/datamodel.rst:957 msgid "Class instances" msgstr "" -#: reference/datamodel.rst:953 +#: reference/datamodel.rst:965 msgid "" "A class instance is created by calling a class object (see above). A class " "instance has a namespace implemented as a dictionary which is the first " @@ -1109,7 +1125,7 @@ msgid "" "__getattr__` method, that is called to satisfy the lookup." msgstr "" -#: reference/datamodel.rst:969 +#: reference/datamodel.rst:981 msgid "" "Attribute assignments and deletions update the instance's dictionary, never " "a class's dictionary. If the class has a :meth:`~object.__setattr__` or :" @@ -1117,23 +1133,23 @@ msgid "" "instance dictionary directly." msgstr "" -#: reference/datamodel.rst:979 +#: reference/datamodel.rst:991 msgid "" "Class instances can pretend to be numbers, sequences, or mappings if they " "have methods with certain special names. See section :ref:`specialnames`." msgstr "" -#: reference/datamodel.rst:986 +#: reference/datamodel.rst:998 msgid "" "Special attributes: :attr:`~object.__dict__` is the attribute dictionary; :" "attr:`~instance.__class__` is the instance's class." msgstr "" -#: reference/datamodel.rst:991 +#: reference/datamodel.rst:1003 msgid "I/O objects (also known as file objects)" msgstr "" -#: reference/datamodel.rst:1006 +#: reference/datamodel.rst:1018 msgid "" "A :term:`file object` represents an open file. Various shortcuts are " "available to create file objects: the :func:`open` built-in function, and " @@ -1142,7 +1158,7 @@ msgid "" "methods provided by extension modules)." msgstr "" -#: reference/datamodel.rst:1012 +#: reference/datamodel.rst:1024 msgid "" "The objects ``sys.stdin``, ``sys.stdout`` and ``sys.stderr`` are initialized " "to file objects corresponding to the interpreter's standard input, output " @@ -1150,22 +1166,22 @@ msgid "" "interface defined by the :class:`io.TextIOBase` abstract class." msgstr "" -#: reference/datamodel.rst:1020 +#: reference/datamodel.rst:1032 msgid "Internal types" msgstr "" -#: reference/datamodel.rst:1026 +#: reference/datamodel.rst:1038 msgid "" "A few types used internally by the interpreter are exposed to the user. " "Their definitions may change with future versions of the interpreter, but " "they are mentioned here for completeness." msgstr "" -#: reference/datamodel.rst:1034 +#: reference/datamodel.rst:1046 msgid "Code objects" msgstr "" -#: reference/datamodel.rst:1036 +#: reference/datamodel.rst:1050 msgid "" "Code objects represent *byte-compiled* executable Python code, or :term:" "`bytecode`. The difference between a code object and a function object is " @@ -1177,7 +1193,7 @@ msgid "" "no references (directly or indirectly) to mutable objects." msgstr "" -#: reference/datamodel.rst:1064 +#: reference/datamodel.rst:1078 msgid "" "Special read-only attributes: :attr:`co_name` gives the function name; :attr:" "`co_qualname` gives the fully qualified function name; :attr:`co_argcount` " @@ -1197,12 +1213,13 @@ msgid "" "bytecode; :attr:`co_filename` is the filename from which the code was " "compiled; :attr:`co_firstlineno` is the first line number of the function; :" "attr:`co_lnotab` is a string encoding the mapping from bytecode offsets to " -"line numbers (for details see the source code of the interpreter); :attr:" -"`co_stacksize` is the required stack size; :attr:`co_flags` is an integer " -"encoding a number of flags for the interpreter." +"line numbers (for details see the source code of the interpreter, is " +"deprecated since 3.12 and may be removed in 3.14); :attr:`co_stacksize` is " +"the required stack size; :attr:`co_flags` is an integer encoding a number of " +"flags for the interpreter." msgstr "" -#: reference/datamodel.rst:1089 +#: reference/datamodel.rst:1104 msgid "" "The following flag bits are defined for :attr:`co_flags`: bit ``0x04`` is " "set if the function uses the ``*arguments`` syntax to accept an arbitrary " @@ -1211,7 +1228,7 @@ msgid "" "set if the function is a generator." msgstr "" -#: reference/datamodel.rst:1095 +#: reference/datamodel.rst:1110 msgid "" "Future feature declarations (``from __future__ import division``) also use " "bits in :attr:`co_flags` to indicate whether a code object was compiled with " @@ -1220,23 +1237,23 @@ msgid "" "used in earlier versions of Python." msgstr "" -#: reference/datamodel.rst:1101 +#: reference/datamodel.rst:1116 msgid "Other bits in :attr:`co_flags` are reserved for internal use." msgstr "" -#: reference/datamodel.rst:1105 +#: reference/datamodel.rst:1120 msgid "" "If a code object represents a function, the first item in :attr:`co_consts` " "is the documentation string of the function, or ``None`` if undefined." msgstr "" -#: reference/datamodel.rst:1110 +#: reference/datamodel.rst:1125 msgid "" "Returns an iterable over the source code positions of each bytecode " "instruction in the code object." msgstr "" -#: reference/datamodel.rst:1113 +#: reference/datamodel.rst:1128 msgid "" "The iterator returns tuples containing the ``(start_line, end_line, " "start_column, end_column)``. The *i-th* tuple corresponds to the position of " @@ -1244,37 +1261,37 @@ msgid "" "is 0-indexed utf-8 byte offsets on the given source line." msgstr "" -#: reference/datamodel.rst:1119 +#: reference/datamodel.rst:1134 msgid "" "This positional information can be missing. A non-exhaustive lists of cases " "where this may happen:" msgstr "" -#: reference/datamodel.rst:1122 +#: reference/datamodel.rst:1137 msgid "Running the interpreter with :option:`-X` ``no_debug_ranges``." msgstr "" -#: reference/datamodel.rst:1123 +#: reference/datamodel.rst:1138 msgid "" "Loading a pyc file compiled while using :option:`-X` ``no_debug_ranges``." msgstr "" -#: reference/datamodel.rst:1124 +#: reference/datamodel.rst:1139 msgid "Position tuples corresponding to artificial instructions." msgstr "" -#: reference/datamodel.rst:1125 +#: reference/datamodel.rst:1140 msgid "" "Line and column numbers that can't be represented due to implementation " "specific limitations." msgstr "" -#: reference/datamodel.rst:1128 +#: reference/datamodel.rst:1143 msgid "" "When this occurs, some or all of the tuple elements can be :const:`None`." msgstr "" -#: reference/datamodel.rst:1134 +#: reference/datamodel.rst:1149 msgid "" "This feature requires storing column positions in code objects which may " "result in a small increase of disk usage of compiled Python files or " @@ -1284,17 +1301,17 @@ msgid "" "environment variable can be used." msgstr "" -#: reference/datamodel.rst:1145 +#: reference/datamodel.rst:1160 msgid "Frame objects" msgstr "" -#: reference/datamodel.rst:1149 +#: reference/datamodel.rst:1164 msgid "" "Frame objects represent execution frames. They may occur in traceback " "objects (see below), and are also passed to registered trace functions." msgstr "" -#: reference/datamodel.rst:1160 +#: reference/datamodel.rst:1175 msgid "" "Special read-only attributes: :attr:`f_back` is to the previous stack frame " "(towards the caller), or ``None`` if this is the bottom stack frame; :attr:" @@ -1305,13 +1322,13 @@ msgid "" "the bytecode string of the code object)." msgstr "" -#: reference/datamodel.rst:1168 +#: reference/datamodel.rst:1183 msgid "" "Accessing ``f_code`` raises an :ref:`auditing event ` ``object." "__getattr__`` with arguments ``obj`` and ``\"f_code\"``." msgstr "" -#: reference/datamodel.rst:1177 +#: reference/datamodel.rst:1192 msgid "" "Special writable attributes: :attr:`f_trace`, if not ``None``, is a function " "called for various events during code execution (this is used by the " @@ -1319,7 +1336,7 @@ msgid "" "can be disabled by setting :attr:`f_trace_lines` to :const:`False`." msgstr "" -#: reference/datamodel.rst:1182 +#: reference/datamodel.rst:1197 msgid "" "Implementations *may* allow per-opcode events to be requested by setting :" "attr:`f_trace_opcodes` to :const:`True`. Note that this may lead to " @@ -1327,7 +1344,7 @@ msgid "" "escape to the function being traced." msgstr "" -#: reference/datamodel.rst:1187 +#: reference/datamodel.rst:1202 msgid "" ":attr:`f_lineno` is the current line number of the frame --- writing to this " "from within a trace function jumps to the given line (only for the bottom-" @@ -1335,11 +1352,11 @@ msgid "" "Statement) by writing to f_lineno." msgstr "" -#: reference/datamodel.rst:1192 +#: reference/datamodel.rst:1207 msgid "Frame objects support one method:" msgstr "" -#: reference/datamodel.rst:1196 +#: reference/datamodel.rst:1211 msgid "" "This method clears all references to local variables held by the frame. " "Also, if the frame belonged to a generator, the generator is finalized. " @@ -1347,22 +1364,22 @@ msgid "" "catching an exception and storing its traceback for later use)." msgstr "" -#: reference/datamodel.rst:1202 +#: reference/datamodel.rst:1217 msgid ":exc:`RuntimeError` is raised if the frame is currently executing." msgstr "" -#: reference/datamodel.rst:1210 +#: reference/datamodel.rst:1225 msgid "Traceback objects" msgstr "" -#: reference/datamodel.rst:1223 +#: reference/datamodel.rst:1238 msgid "" "Traceback objects represent a stack trace of an exception. A traceback " "object is implicitly created when an exception occurs, and may also be " "explicitly created by calling :class:`types.TracebackType`." msgstr "" -#: reference/datamodel.rst:1227 +#: reference/datamodel.rst:1242 msgid "" "For implicitly created tracebacks, when the search for an exception handler " "unwinds the execution stack, at each unwound level a traceback object is " @@ -1372,21 +1389,21 @@ msgid "" "exc_info()``, and as the ``__traceback__`` attribute of the caught exception." msgstr "" -#: reference/datamodel.rst:1235 +#: reference/datamodel.rst:1250 msgid "" "When the program contains no suitable handler, the stack trace is written " "(nicely formatted) to the standard error stream; if the interpreter is " "interactive, it is also made available to the user as ``sys.last_traceback``." msgstr "" -#: reference/datamodel.rst:1240 +#: reference/datamodel.rst:1255 msgid "" "For explicitly created tracebacks, it is up to the creator of the traceback " "to determine how the ``tb_next`` attributes should be linked to form a full " "stack trace." msgstr "" -#: reference/datamodel.rst:1250 +#: reference/datamodel.rst:1265 msgid "" "Special read-only attributes: :attr:`tb_frame` points to the execution frame " "of the current level; :attr:`tb_lineno` gives the line number where the " @@ -1396,47 +1413,47 @@ msgid "" "statement with no matching except clause or with a finally clause." msgstr "" -#: reference/datamodel.rst:1259 +#: reference/datamodel.rst:1274 msgid "" "Accessing ``tb_frame`` raises an :ref:`auditing event ` ``object." "__getattr__`` with arguments ``obj`` and ``\"tb_frame\"``." msgstr "" -#: reference/datamodel.rst:1265 +#: reference/datamodel.rst:1280 msgid "" "Special writable attribute: :attr:`tb_next` is the next level in the stack " "trace (towards the frame where the exception occurred), or ``None`` if there " "is no next level." msgstr "" -#: reference/datamodel.rst:1269 +#: reference/datamodel.rst:1284 msgid "" "Traceback objects can now be explicitly instantiated from Python code, and " "the ``tb_next`` attribute of existing instances can be updated." msgstr "" -#: reference/datamodel.rst:1275 +#: reference/datamodel.rst:1290 msgid "Slice objects" msgstr "" -#: reference/datamodel.rst:1279 +#: reference/datamodel.rst:1294 msgid "" "Slice objects are used to represent slices for :meth:`~object.__getitem__` " "methods. They are also created by the built-in :func:`slice` function." msgstr "" -#: reference/datamodel.rst:1288 +#: reference/datamodel.rst:1303 msgid "" "Special read-only attributes: :attr:`~slice.start` is the lower bound; :attr:" "`~slice.stop` is the upper bound; :attr:`~slice.step` is the step value; " "each is ``None`` if omitted. These attributes can have any type." msgstr "" -#: reference/datamodel.rst:1292 +#: reference/datamodel.rst:1307 msgid "Slice objects support one method:" msgstr "" -#: reference/datamodel.rst:1296 +#: reference/datamodel.rst:1311 msgid "" "This method takes a single integer argument *length* and computes " "information about the slice that the slice object would describe if applied " @@ -1446,11 +1463,11 @@ msgid "" "a manner consistent with regular slices." msgstr "" -#: reference/datamodel.rst:1305 +#: reference/datamodel.rst:1320 msgid "Static method objects" msgstr "" -#: reference/datamodel.rst:1307 +#: reference/datamodel.rst:1322 msgid "" "Static method objects provide a way of defeating the transformation of " "function objects to method objects described above. A static method object " @@ -1461,11 +1478,11 @@ msgid "" "method objects are created by the built-in :func:`staticmethod` constructor." msgstr "" -#: reference/datamodel.rst:1317 +#: reference/datamodel.rst:1332 msgid "Class method objects" msgstr "" -#: reference/datamodel.rst:1319 +#: reference/datamodel.rst:1334 msgid "" "A class method object, like a static method object, is a wrapper around " "another object that alters the way in which that object is retrieved from " @@ -1474,11 +1491,11 @@ msgid "" "objects are created by the built-in :func:`classmethod` constructor." msgstr "" -#: reference/datamodel.rst:1329 +#: reference/datamodel.rst:1344 msgid "Special method names" msgstr "" -#: reference/datamodel.rst:1335 +#: reference/datamodel.rst:1350 msgid "" "A class can implement certain operations that are invoked by special syntax " "(such as arithmetic operations or subscripting and slicing) by defining " @@ -1492,7 +1509,7 @@ msgid "" "`TypeError`)." msgstr "" -#: reference/datamodel.rst:1346 +#: reference/datamodel.rst:1361 msgid "" "Setting a special method to ``None`` indicates that the corresponding " "operation is not available. For example, if a class sets :meth:`~object." @@ -1501,7 +1518,7 @@ msgid "" "`~object.__getitem__`). [#]_" msgstr "" -#: reference/datamodel.rst:1352 +#: reference/datamodel.rst:1367 msgid "" "When implementing a class that emulates any built-in type, it is important " "that the emulation only be implemented to the degree that it makes sense for " @@ -1511,11 +1528,11 @@ msgid "" "the W3C's Document Object Model.)" msgstr "" -#: reference/datamodel.rst:1363 +#: reference/datamodel.rst:1378 msgid "Basic customization" msgstr "" -#: reference/datamodel.rst:1369 +#: reference/datamodel.rst:1384 msgid "" "Called to create a new instance of class *cls*. :meth:`__new__` is a static " "method (special-cased so you need not declare it as such) that takes the " @@ -1525,7 +1542,7 @@ msgid "" "new object instance (usually an instance of *cls*)." msgstr "" -#: reference/datamodel.rst:1376 +#: reference/datamodel.rst:1391 msgid "" "Typical implementations create a new instance of the class by invoking the " "superclass's :meth:`__new__` method using ``super().__new__(cls[, ...])`` " @@ -1533,7 +1550,7 @@ msgid "" "necessary before returning it." msgstr "" -#: reference/datamodel.rst:1381 +#: reference/datamodel.rst:1396 msgid "" "If :meth:`__new__` is invoked during object construction and it returns an " "instance of *cls*, then the new instance’s :meth:`__init__` method will be " @@ -1542,13 +1559,13 @@ msgid "" "constructor." msgstr "" -#: reference/datamodel.rst:1386 +#: reference/datamodel.rst:1401 msgid "" "If :meth:`__new__` does not return an instance of *cls*, then the new " "instance's :meth:`__init__` method will not be invoked." msgstr "" -#: reference/datamodel.rst:1389 +#: reference/datamodel.rst:1404 msgid "" ":meth:`__new__` is intended mainly to allow subclasses of immutable types " "(like int, str, or tuple) to customize instance creation. It is also " @@ -1556,7 +1573,7 @@ msgid "" "creation." msgstr "" -#: reference/datamodel.rst:1398 +#: reference/datamodel.rst:1413 msgid "" "Called after the instance has been created (by :meth:`__new__`), but before " "it is returned to the caller. The arguments are those passed to the class " @@ -1566,7 +1583,7 @@ msgid "" "example: ``super().__init__([args...])``." msgstr "" -#: reference/datamodel.rst:1405 +#: reference/datamodel.rst:1420 msgid "" "Because :meth:`__new__` and :meth:`__init__` work together in constructing " "objects (:meth:`__new__` to create it, and :meth:`__init__` to customize " @@ -1574,7 +1591,7 @@ msgid "" "will cause a :exc:`TypeError` to be raised at runtime." msgstr "" -#: reference/datamodel.rst:1418 +#: reference/datamodel.rst:1433 msgid "" "Called when the instance is about to be destroyed. This is also called a " "finalizer or (improperly) a destructor. If a base class has a :meth:" @@ -1583,7 +1600,7 @@ msgid "" "instance." msgstr "" -#: reference/datamodel.rst:1424 +#: reference/datamodel.rst:1439 msgid "" "It is possible (though not recommended!) for the :meth:`__del__` method to " "postpone destruction of the instance by creating a new reference to it. " @@ -1593,20 +1610,20 @@ msgid "" "it once." msgstr "" -#: reference/datamodel.rst:1431 +#: reference/datamodel.rst:1446 msgid "" "It is not guaranteed that :meth:`__del__` methods are called for objects " "that still exist when the interpreter exits." msgstr "" -#: reference/datamodel.rst:1436 +#: reference/datamodel.rst:1451 msgid "" "``del x`` doesn't directly call ``x.__del__()`` --- the former decrements " "the reference count for ``x`` by one, and the latter is only called when " "``x``'s reference count reaches zero." msgstr "" -#: reference/datamodel.rst:1441 +#: reference/datamodel.rst:1456 msgid "" "It is possible for a reference cycle to prevent the reference count of an " "object from going to zero. In this case, the cycle will be later detected " @@ -1617,18 +1634,18 @@ msgid "" "caught in the traceback." msgstr "" -#: reference/datamodel.rst:1451 +#: reference/datamodel.rst:1466 msgid "Documentation for the :mod:`gc` module." msgstr "" -#: reference/datamodel.rst:1455 +#: reference/datamodel.rst:1470 msgid "" "Due to the precarious circumstances under which :meth:`__del__` methods are " "invoked, exceptions that occur during their execution are ignored, and a " "warning is printed to ``sys.stderr`` instead. In particular:" msgstr "" -#: reference/datamodel.rst:1459 +#: reference/datamodel.rst:1474 msgid "" ":meth:`__del__` can be invoked when arbitrary code is being executed, " "including from any arbitrary thread. If :meth:`__del__` needs to take a " @@ -1637,7 +1654,7 @@ msgid "" "`__del__`." msgstr "" -#: reference/datamodel.rst:1465 +#: reference/datamodel.rst:1480 msgid "" ":meth:`__del__` can be executed during interpreter shutdown. As a " "consequence, the global variables it needs to access (including other " @@ -1648,7 +1665,7 @@ msgid "" "still available at the time when the :meth:`__del__` method is called." msgstr "" -#: reference/datamodel.rst:1480 +#: reference/datamodel.rst:1495 msgid "" "Called by the :func:`repr` built-in function to compute the \"official\" " "string representation of an object. If at all possible, this should look " @@ -1660,13 +1677,13 @@ msgid "" "an \"informal\" string representation of instances of that class is required." msgstr "" -#: reference/datamodel.rst:1489 +#: reference/datamodel.rst:1504 msgid "" "This is typically used for debugging, so it is important that the " "representation is information-rich and unambiguous." msgstr "" -#: reference/datamodel.rst:1500 +#: reference/datamodel.rst:1515 msgid "" "Called by :func:`str(object) ` and the built-in functions :func:" "`format` and :func:`print` to compute the \"informal\" or nicely printable " @@ -1674,26 +1691,26 @@ msgid "" "` object." msgstr "" -#: reference/datamodel.rst:1505 +#: reference/datamodel.rst:1520 msgid "" "This method differs from :meth:`object.__repr__` in that there is no " "expectation that :meth:`__str__` return a valid Python expression: a more " "convenient or concise representation can be used." msgstr "" -#: reference/datamodel.rst:1509 +#: reference/datamodel.rst:1524 msgid "" "The default implementation defined by the built-in type :class:`object` " "calls :meth:`object.__repr__`." msgstr "" -#: reference/datamodel.rst:1519 +#: reference/datamodel.rst:1534 msgid "" "Called by :ref:`bytes ` to compute a byte-string representation " "of an object. This should return a :class:`bytes` object." msgstr "" -#: reference/datamodel.rst:1530 +#: reference/datamodel.rst:1545 msgid "" "Called by the :func:`format` built-in function, and by extension, evaluation " "of :ref:`formatted string literals ` and the :meth:`str.format` " @@ -1705,28 +1722,28 @@ msgid "" "formatting option syntax." msgstr "" -#: reference/datamodel.rst:1540 +#: reference/datamodel.rst:1555 msgid "" "See :ref:`formatspec` for a description of the standard formatting syntax." msgstr "" -#: reference/datamodel.rst:1542 +#: reference/datamodel.rst:1557 msgid "The return value must be a string object." msgstr "" -#: reference/datamodel.rst:1544 +#: reference/datamodel.rst:1559 msgid "" "The __format__ method of ``object`` itself raises a :exc:`TypeError` if " "passed any non-empty string." msgstr "" -#: reference/datamodel.rst:1548 +#: reference/datamodel.rst:1563 msgid "" "``object.__format__(x, '')`` is now equivalent to ``str(x)`` rather than " "``format(str(x), '')``." msgstr "" -#: reference/datamodel.rst:1564 +#: reference/datamodel.rst:1579 msgid "" "These are the so-called \"rich comparison\" methods. The correspondence " "between operator symbols and method names is as follows: ``x.__hash__``." msgstr "" -#: reference/datamodel.rst:1653 +#: reference/datamodel.rst:1668 msgid "" "If a class that does not override :meth:`__eq__` wishes to suppress hash " "support, it should include ``__hash__ = None`` in the class definition. A " @@ -1845,7 +1862,7 @@ msgid "" "``isinstance(obj, collections.abc.Hashable)`` call." msgstr "" -#: reference/datamodel.rst:1662 +#: reference/datamodel.rst:1677 msgid "" "By default, the :meth:`__hash__` values of str and bytes objects are " "\"salted\" with an unpredictable random value. Although they remain " @@ -1853,7 +1870,7 @@ msgid "" "between repeated invocations of Python." msgstr "" -#: reference/datamodel.rst:1667 +#: reference/datamodel.rst:1682 msgid "" "This is intended to provide protection against a denial-of-service caused by " "carefully chosen inputs that exploit the worst case performance of a dict " @@ -1861,22 +1878,22 @@ msgid "" "ocert-2011-003.html for details." msgstr "" -#: reference/datamodel.rst:1672 +#: reference/datamodel.rst:1687 msgid "" "Changing hash values affects the iteration order of sets. Python has never " "made guarantees about this ordering (and it typically varies between 32-bit " "and 64-bit builds)." msgstr "" -#: reference/datamodel.rst:1676 +#: reference/datamodel.rst:1691 msgid "See also :envvar:`PYTHONHASHSEED`." msgstr "" -#: reference/datamodel.rst:1678 +#: reference/datamodel.rst:1693 msgid "Hash randomization is enabled by default." msgstr "" -#: reference/datamodel.rst:1686 +#: reference/datamodel.rst:1701 msgid "" "Called to implement truth value testing and the built-in operation " "``bool()``; should return ``False`` or ``True``. When this method is not " @@ -1885,18 +1902,18 @@ msgid "" "meth:`!__len__` nor :meth:`!__bool__`, all its instances are considered true." msgstr "" -#: reference/datamodel.rst:1697 +#: reference/datamodel.rst:1712 msgid "Customizing attribute access" msgstr "" -#: reference/datamodel.rst:1699 +#: reference/datamodel.rst:1714 msgid "" "The following methods can be defined to customize the meaning of attribute " "access (use of, assignment to, or deletion of ``x.name``) for class " "instances." msgstr "" -#: reference/datamodel.rst:1707 +#: reference/datamodel.rst:1722 msgid "" "Called when the default attribute access fails with an :exc:`AttributeError` " "(either :meth:`__getattribute__` raises an :exc:`AttributeError` because " @@ -1906,7 +1923,7 @@ msgid "" "attribute value or raise an :exc:`AttributeError` exception." msgstr "" -#: reference/datamodel.rst:1714 +#: reference/datamodel.rst:1729 msgid "" "Note that if the attribute is found through the normal mechanism, :meth:" "`__getattr__` is not called. (This is an intentional asymmetry between :" @@ -1919,7 +1936,7 @@ msgid "" "actually get total control over attribute access." msgstr "" -#: reference/datamodel.rst:1727 +#: reference/datamodel.rst:1742 msgid "" "Called unconditionally to implement attribute accesses for instances of the " "class. If the class also defines :meth:`__getattr__`, the latter will not be " @@ -1931,82 +1948,82 @@ msgid "" "example, ``object.__getattribute__(self, name)``." msgstr "" -#: reference/datamodel.rst:1738 +#: reference/datamodel.rst:1753 msgid "" "This method may still be bypassed when looking up special methods as the " "result of implicit invocation via language syntax or built-in functions. " "See :ref:`special-lookup`." msgstr "" -#: reference/datamodel.rst:1742 +#: reference/datamodel.rst:1757 msgid "" "Raises an :ref:`auditing event ` ``object.__getattr__`` with " "arguments ``obj``, ``name``." msgstr "" -#: reference/datamodel.rst:1744 +#: reference/datamodel.rst:1759 msgid "" "For certain sensitive attribute accesses, raises an :ref:`auditing event " "` ``object.__getattr__`` with arguments ``obj`` and ``name``." msgstr "" -#: reference/datamodel.rst:1751 +#: reference/datamodel.rst:1766 msgid "" "Called when an attribute assignment is attempted. This is called instead of " "the normal mechanism (i.e. store the value in the instance dictionary). " "*name* is the attribute name, *value* is the value to be assigned to it." msgstr "" -#: reference/datamodel.rst:1755 +#: reference/datamodel.rst:1770 msgid "" "If :meth:`__setattr__` wants to assign to an instance attribute, it should " "call the base class method with the same name, for example, ``object." "__setattr__(self, name, value)``." msgstr "" -#: reference/datamodel.rst:1759 +#: reference/datamodel.rst:1774 msgid "" "Raises an :ref:`auditing event ` ``object.__setattr__`` with " "arguments ``obj``, ``name``, ``value``." msgstr "" -#: reference/datamodel.rst:1761 +#: reference/datamodel.rst:1776 msgid "" "For certain sensitive attribute assignments, raises an :ref:`auditing event " "` ``object.__setattr__`` with arguments ``obj``, ``name``, " "``value``." msgstr "" -#: reference/datamodel.rst:1768 +#: reference/datamodel.rst:1783 msgid "" "Like :meth:`__setattr__` but for attribute deletion instead of assignment. " "This should only be implemented if ``del obj.name`` is meaningful for the " "object." msgstr "" -#: reference/datamodel.rst:1771 +#: reference/datamodel.rst:1786 msgid "" "Raises an :ref:`auditing event ` ``object.__delattr__`` with " "arguments ``obj``, ``name``." msgstr "" -#: reference/datamodel.rst:1773 +#: reference/datamodel.rst:1788 msgid "" "For certain sensitive attribute deletions, raises an :ref:`auditing event " "` ``object.__delattr__`` with arguments ``obj`` and ``name``." msgstr "" -#: reference/datamodel.rst:1780 +#: reference/datamodel.rst:1795 msgid "" "Called when :func:`dir` is called on the object. A sequence must be " "returned. :func:`dir` converts the returned sequence to a list and sorts it." msgstr "" -#: reference/datamodel.rst:1785 +#: reference/datamodel.rst:1800 msgid "Customizing module attribute access" msgstr "" -#: reference/datamodel.rst:1792 +#: reference/datamodel.rst:1807 msgid "" "Special names ``__getattr__`` and ``__dir__`` can be also used to customize " "access to module attributes. The ``__getattr__`` function at the module " @@ -2018,21 +2035,21 @@ msgid "" "with the attribute name and the result is returned." msgstr "" -#: reference/datamodel.rst:1801 +#: reference/datamodel.rst:1816 msgid "" "The ``__dir__`` function should accept no arguments, and return a sequence " "of strings that represents the names accessible on module. If present, this " "function overrides the standard :func:`dir` search on a module." msgstr "" -#: reference/datamodel.rst:1805 +#: reference/datamodel.rst:1820 msgid "" "For a more fine grained customization of the module behavior (setting " "attributes, properties, etc.), one can set the ``__class__`` attribute of a " "module object to a subclass of :class:`types.ModuleType`. For example::" msgstr "" -#: reference/datamodel.rst:1823 +#: reference/datamodel.rst:1838 msgid "" "Defining module ``__getattr__`` and setting module ``__class__`` only affect " "lookups made using the attribute access syntax -- directly accessing the " @@ -2040,27 +2057,27 @@ msgid "" "module's globals dictionary) is unaffected." msgstr "" -#: reference/datamodel.rst:1828 +#: reference/datamodel.rst:1843 msgid "``__class__`` module attribute is now writable." msgstr "" -#: reference/datamodel.rst:1831 +#: reference/datamodel.rst:1846 msgid "``__getattr__`` and ``__dir__`` module attributes." msgstr "" -#: reference/datamodel.rst:1836 +#: reference/datamodel.rst:1851 msgid ":pep:`562` - Module __getattr__ and __dir__" msgstr "" -#: reference/datamodel.rst:1837 +#: reference/datamodel.rst:1852 msgid "Describes the ``__getattr__`` and ``__dir__`` functions on modules." msgstr "" -#: reference/datamodel.rst:1843 +#: reference/datamodel.rst:1858 msgid "Implementing Descriptors" msgstr "" -#: reference/datamodel.rst:1845 +#: reference/datamodel.rst:1860 msgid "" "The following methods only apply when an instance of the class containing " "the method (a so-called *descriptor* class) appears in an *owner* class (the " @@ -2070,7 +2087,7 @@ msgid "" "the owner class' :attr:`~object.__dict__`." msgstr "" -#: reference/datamodel.rst:1855 +#: reference/datamodel.rst:1870 msgid "" "Called to get the attribute of the owner class (class attribute access) or " "of an instance of that class (instance attribute access). The optional " @@ -2079,13 +2096,13 @@ msgid "" "accessed through the *owner*." msgstr "" -#: reference/datamodel.rst:1861 +#: reference/datamodel.rst:1876 msgid "" "This method should return the computed attribute value or raise an :exc:" "`AttributeError` exception." msgstr "" -#: reference/datamodel.rst:1864 +#: reference/datamodel.rst:1879 msgid "" ":PEP:`252` specifies that :meth:`__get__` is callable with one or two " "arguments. Python's own built-in descriptors support this specification; " @@ -2095,25 +2112,25 @@ msgid "" "not." msgstr "" -#: reference/datamodel.rst:1873 +#: reference/datamodel.rst:1888 msgid "" "Called to set the attribute on an instance *instance* of the owner class to " "a new value, *value*." msgstr "" -#: reference/datamodel.rst:1876 +#: reference/datamodel.rst:1891 msgid "" "Note, adding :meth:`__set__` or :meth:`__delete__` changes the kind of " "descriptor to a \"data descriptor\". See :ref:`descriptor-invocation` for " "more details." msgstr "" -#: reference/datamodel.rst:1882 +#: reference/datamodel.rst:1897 msgid "" "Called to delete the attribute on an instance *instance* of the owner class." msgstr "" -#: reference/datamodel.rst:1885 +#: reference/datamodel.rst:1900 msgid "" "The attribute :attr:`__objclass__` is interpreted by the :mod:`inspect` " "module as specifying the class where this object was defined (setting this " @@ -2124,11 +2141,11 @@ msgid "" "are implemented in C)." msgstr "" -#: reference/datamodel.rst:1896 +#: reference/datamodel.rst:1911 msgid "Invoking Descriptors" msgstr "" -#: reference/datamodel.rst:1898 +#: reference/datamodel.rst:1913 msgid "" "In general, a descriptor is an object attribute with \"binding behavior\", " "one whose attribute access has been overridden by methods in the descriptor " @@ -2137,7 +2154,7 @@ msgid "" "is said to be a descriptor." msgstr "" -#: reference/datamodel.rst:1904 +#: reference/datamodel.rst:1919 msgid "" "The default behavior for attribute access is to get, set, or delete the " "attribute from an object's dictionary. For instance, ``a.x`` has a lookup " @@ -2145,7 +2162,7 @@ msgid "" "continuing through the base classes of ``type(a)`` excluding metaclasses." msgstr "" -#: reference/datamodel.rst:1909 +#: reference/datamodel.rst:1924 msgid "" "However, if the looked-up value is an object defining one of the descriptor " "methods, then Python may override the default behavior and invoke the " @@ -2153,54 +2170,54 @@ msgid "" "depends on which descriptor methods were defined and how they were called." msgstr "" -#: reference/datamodel.rst:1914 +#: reference/datamodel.rst:1929 msgid "" "The starting point for descriptor invocation is a binding, ``a.x``. How the " "arguments are assembled depends on ``a``:" msgstr "" -#: reference/datamodel.rst:1919 +#: reference/datamodel.rst:1934 msgid "Direct Call" msgstr "" -#: reference/datamodel.rst:1918 +#: reference/datamodel.rst:1933 msgid "" "The simplest and least common call is when user code directly invokes a " "descriptor method: ``x.__get__(a)``." msgstr "" -#: reference/datamodel.rst:1923 +#: reference/datamodel.rst:1938 msgid "Instance Binding" msgstr "" -#: reference/datamodel.rst:1922 +#: reference/datamodel.rst:1937 msgid "" "If binding to an object instance, ``a.x`` is transformed into the call: " "``type(a).__dict__['x'].__get__(a, type(a))``." msgstr "" -#: reference/datamodel.rst:1927 +#: reference/datamodel.rst:1942 msgid "Class Binding" msgstr "" -#: reference/datamodel.rst:1926 +#: reference/datamodel.rst:1941 msgid "" "If binding to a class, ``A.x`` is transformed into the call: ``A." "__dict__['x'].__get__(None, A)``." msgstr "" -#: reference/datamodel.rst:1933 +#: reference/datamodel.rst:1948 msgid "Super Binding" msgstr "" -#: reference/datamodel.rst:1930 +#: reference/datamodel.rst:1945 msgid "" "A dotted lookup such as ``super(A, a).x`` searches ``a.__class__.__mro__`` " "for a base class ``B`` following ``A`` and then returns ``B.__dict__['x']." "__get__(a, A)``. If not a descriptor, ``x`` is returned unchanged." msgstr "" -#: reference/datamodel.rst:1967 +#: reference/datamodel.rst:1982 msgid "" "For instance bindings, the precedence of descriptor invocation depends on " "which descriptor methods are defined. A descriptor can define any " @@ -2217,7 +2234,7 @@ msgid "" "can be overridden by instances." msgstr "" -#: reference/datamodel.rst:1981 +#: reference/datamodel.rst:1996 msgid "" "Python methods (including those decorated with :func:`@staticmethod " "` and :func:`@classmethod `) are implemented as " @@ -2226,30 +2243,30 @@ msgid "" "from other instances of the same class." msgstr "" -#: reference/datamodel.rst:1987 +#: reference/datamodel.rst:2002 msgid "" "The :func:`property` function is implemented as a data descriptor. " "Accordingly, instances cannot override the behavior of a property." msgstr "" -#: reference/datamodel.rst:1994 +#: reference/datamodel.rst:2009 msgid "__slots__" msgstr "" -#: reference/datamodel.rst:1996 +#: reference/datamodel.rst:2011 msgid "" "*__slots__* allow us to explicitly declare data members (like properties) " "and deny the creation of :attr:`~object.__dict__` and *__weakref__* (unless " "explicitly declared in *__slots__* or available in a parent.)" msgstr "" -#: reference/datamodel.rst:2000 +#: reference/datamodel.rst:2015 msgid "" "The space saved over using :attr:`~object.__dict__` can be significant. " "Attribute lookup speed can be significantly improved as well." msgstr "" -#: reference/datamodel.rst:2005 +#: reference/datamodel.rst:2020 msgid "" "This class variable can be assigned a string, iterable, or sequence of " "strings with variable names used by instances. *__slots__* reserves space " @@ -2257,18 +2274,18 @@ msgid "" "`~object.__dict__` and *__weakref__* for each instance." msgstr "" -#: reference/datamodel.rst:2014 +#: reference/datamodel.rst:2029 msgid "Notes on using *__slots__*:" msgstr "" -#: reference/datamodel.rst:2016 +#: reference/datamodel.rst:2031 msgid "" "When inheriting from a class without *__slots__*, the :attr:`~object." "__dict__` and *__weakref__* attribute of the instances will always be " "accessible." msgstr "" -#: reference/datamodel.rst:2020 +#: reference/datamodel.rst:2035 msgid "" "Without a :attr:`~object.__dict__` variable, instances cannot be assigned " "new variables not listed in the *__slots__* definition. Attempts to assign " @@ -2277,7 +2294,7 @@ msgid "" "sequence of strings in the *__slots__* declaration." msgstr "" -#: reference/datamodel.rst:2027 +#: reference/datamodel.rst:2042 msgid "" "Without a *__weakref__* variable for each instance, classes defining " "*__slots__* do not support :mod:`weak references ` to its " @@ -2285,7 +2302,7 @@ msgid "" "to the sequence of strings in the *__slots__* declaration." msgstr "" -#: reference/datamodel.rst:2033 +#: reference/datamodel.rst:2048 msgid "" "*__slots__* are implemented at the class level by creating :ref:`descriptors " "` for each variable name. As a result, class attributes cannot " @@ -2293,7 +2310,7 @@ msgid "" "otherwise, the class attribute would overwrite the descriptor assignment." msgstr "" -#: reference/datamodel.rst:2039 +#: reference/datamodel.rst:2054 msgid "" "The action of a *__slots__* declaration is not limited to the class where it " "is defined. *__slots__* declared in parents are available in child classes. " @@ -2302,7 +2319,7 @@ msgid "" "names of any *additional* slots)." msgstr "" -#: reference/datamodel.rst:2045 +#: reference/datamodel.rst:2060 msgid "" "If a class defines a slot also defined in a base class, the instance " "variable defined by the base class slot is inaccessible (except by " @@ -2311,7 +2328,7 @@ msgid "" "prevent this." msgstr "" -#: reference/datamodel.rst:2050 +#: reference/datamodel.rst:2065 msgid "" ":exc:`TypeError` will be raised if nonempty *__slots__* are defined for a " "class derived from a :c:member:`\"variable-length\" built-in type " @@ -2319,11 +2336,11 @@ msgid "" "`tuple`." msgstr "" -#: reference/datamodel.rst:2055 +#: reference/datamodel.rst:2070 msgid "Any non-string :term:`iterable` may be assigned to *__slots__*." msgstr "" -#: reference/datamodel.rst:2057 +#: reference/datamodel.rst:2072 msgid "" "If a :class:`dictionary ` is used to assign *__slots__*, the " "dictionary keys will be used as the slot names. The values of the dictionary " @@ -2331,13 +2348,13 @@ msgid "" "func:`inspect.getdoc` and displayed in the output of :func:`help`." msgstr "" -#: reference/datamodel.rst:2062 +#: reference/datamodel.rst:2077 msgid "" ":attr:`~instance.__class__` assignment works only if both classes have the " "same *__slots__*." msgstr "" -#: reference/datamodel.rst:2065 +#: reference/datamodel.rst:2080 msgid "" ":ref:`Multiple inheritance ` with multiple slotted parent " "classes can be used, but only one parent is allowed to have attributes " @@ -2345,18 +2362,18 @@ msgid "" "raise :exc:`TypeError`." msgstr "" -#: reference/datamodel.rst:2071 +#: reference/datamodel.rst:2086 msgid "" "If an :term:`iterator` is used for *__slots__* then a :term:`descriptor` is " "created for each of the iterator's values. However, the *__slots__* " "attribute will be an empty iterator." msgstr "" -#: reference/datamodel.rst:2079 +#: reference/datamodel.rst:2094 msgid "Customizing class creation" msgstr "" -#: reference/datamodel.rst:2081 +#: reference/datamodel.rst:2096 msgid "" "Whenever a class inherits from another class, :meth:`~object." "__init_subclass__` is called on the parent class. This way, it is possible " @@ -2366,14 +2383,14 @@ msgid "" "future subclasses of the class defining the method." msgstr "" -#: reference/datamodel.rst:2090 +#: reference/datamodel.rst:2105 msgid "" "This method is called whenever the containing class is subclassed. *cls* is " "then the new subclass. If defined as a normal instance method, this method " "is implicitly converted to a class method." msgstr "" -#: reference/datamodel.rst:2094 +#: reference/datamodel.rst:2109 msgid "" "Keyword arguments which are given to a new class are passed to the parent's " "class ``__init_subclass__``. For compatibility with other classes using " @@ -2381,13 +2398,13 @@ msgid "" "pass the others over to the base class, as in::" msgstr "" -#: reference/datamodel.rst:2108 +#: reference/datamodel.rst:2123 msgid "" "The default implementation ``object.__init_subclass__`` does nothing, but " "raises an error if it is called with any arguments." msgstr "" -#: reference/datamodel.rst:2113 +#: reference/datamodel.rst:2128 msgid "" "The metaclass hint ``metaclass`` is consumed by the rest of the type " "machinery, and is never passed to ``__init_subclass__`` implementations. The " @@ -2395,41 +2412,41 @@ msgid "" "``type(cls)``." msgstr "" -#: reference/datamodel.rst:2121 +#: reference/datamodel.rst:2136 msgid "" "When a class is created, :meth:`type.__new__` scans the class variables and " "makes callbacks to those with a :meth:`~object.__set_name__` hook." msgstr "" -#: reference/datamodel.rst:2126 +#: reference/datamodel.rst:2141 msgid "" "Automatically called at the time the owning class *owner* is created. The " "object has been assigned to *name* in that class::" msgstr "" -#: reference/datamodel.rst:2132 +#: reference/datamodel.rst:2147 msgid "" "If the class variable is assigned after the class is created, :meth:" "`__set_name__` will not be called automatically. If needed, :meth:" "`__set_name__` can be called directly::" msgstr "" -#: reference/datamodel.rst:2143 +#: reference/datamodel.rst:2158 msgid "See :ref:`class-object-creation` for more details." msgstr "" -#: reference/datamodel.rst:2151 +#: reference/datamodel.rst:2166 msgid "Metaclasses" msgstr "" -#: reference/datamodel.rst:2158 +#: reference/datamodel.rst:2173 msgid "" "By default, classes are constructed using :func:`type`. The class body is " "executed in a new namespace and the class name is bound locally to the " "result of ``type(name, bases, namespace)``." msgstr "" -#: reference/datamodel.rst:2162 +#: reference/datamodel.rst:2177 msgid "" "The class creation process can be customized by passing the ``metaclass`` " "keyword argument in the class definition line, or by inheriting from an " @@ -2437,41 +2454,41 @@ msgid "" "both ``MyClass`` and ``MySubclass`` are instances of ``Meta``::" msgstr "" -#: reference/datamodel.rst:2176 +#: reference/datamodel.rst:2191 msgid "" "Any other keyword arguments that are specified in the class definition are " "passed through to all metaclass operations described below." msgstr "" -#: reference/datamodel.rst:2179 +#: reference/datamodel.rst:2194 msgid "When a class definition is executed, the following steps occur:" msgstr "" -#: reference/datamodel.rst:2181 +#: reference/datamodel.rst:2196 msgid "MRO entries are resolved;" msgstr "" -#: reference/datamodel.rst:2182 +#: reference/datamodel.rst:2197 msgid "the appropriate metaclass is determined;" msgstr "" -#: reference/datamodel.rst:2183 +#: reference/datamodel.rst:2198 msgid "the class namespace is prepared;" msgstr "" -#: reference/datamodel.rst:2184 +#: reference/datamodel.rst:2199 msgid "the class body is executed;" msgstr "" -#: reference/datamodel.rst:2185 +#: reference/datamodel.rst:2200 msgid "the class object is created." msgstr "" -#: reference/datamodel.rst:2189 +#: reference/datamodel.rst:2204 msgid "Resolving MRO entries" msgstr "" -#: reference/datamodel.rst:2193 +#: reference/datamodel.rst:2208 msgid "" "If a base that appears in a class definition is not an instance of :class:" "`type`, then an :meth:`!__mro_entries__` method is searched on the base. If " @@ -2483,49 +2500,59 @@ msgid "" "is ignored." msgstr "" -#: reference/datamodel.rst:2205 +#: reference/datamodel.rst:2220 msgid ":func:`types.resolve_bases`" msgstr "" -#: reference/datamodel.rst:2205 +#: reference/datamodel.rst:2220 msgid "Dynamically resolve bases that are not instances of :class:`type`." msgstr "" -#: reference/datamodel.rst:2207 +#: reference/datamodel.rst:2224 +msgid ":func:`types.get_original_bases`" +msgstr "" + +#: reference/datamodel.rst:2223 +msgid "" +"Retrieve a class's \"original bases\" prior to modifications by :meth:" +"`~object.__mro_entries__`." +msgstr "" + +#: reference/datamodel.rst:2226 msgid ":pep:`560`" msgstr "" -#: reference/datamodel.rst:2208 +#: reference/datamodel.rst:2227 msgid "Core support for typing module and generic types." msgstr "" -#: reference/datamodel.rst:2212 +#: reference/datamodel.rst:2231 msgid "Determining the appropriate metaclass" msgstr "" -#: reference/datamodel.rst:2216 +#: reference/datamodel.rst:2235 msgid "" "The appropriate metaclass for a class definition is determined as follows:" msgstr "" -#: reference/datamodel.rst:2218 +#: reference/datamodel.rst:2237 msgid "" "if no bases and no explicit metaclass are given, then :func:`type` is used;" msgstr "" -#: reference/datamodel.rst:2219 +#: reference/datamodel.rst:2238 msgid "" "if an explicit metaclass is given and it is *not* an instance of :func:" "`type`, then it is used directly as the metaclass;" msgstr "" -#: reference/datamodel.rst:2221 +#: reference/datamodel.rst:2240 msgid "" "if an instance of :func:`type` is given as the explicit metaclass, or bases " "are defined, then the most derived metaclass is used." msgstr "" -#: reference/datamodel.rst:2224 +#: reference/datamodel.rst:2243 msgid "" "The most derived metaclass is selected from the explicitly specified " "metaclass (if any) and the metaclasses (i.e. ``type(cls)``) of all specified " @@ -2534,11 +2561,11 @@ msgid "" "that criterion, then the class definition will fail with ``TypeError``." msgstr "" -#: reference/datamodel.rst:2234 +#: reference/datamodel.rst:2253 msgid "Preparing the class namespace" msgstr "" -#: reference/datamodel.rst:2239 +#: reference/datamodel.rst:2258 msgid "" "Once the appropriate metaclass has been identified, then the class namespace " "is prepared. If the metaclass has a ``__prepare__`` attribute, it is called " @@ -2550,25 +2577,25 @@ msgid "" "copied into a new ``dict``." msgstr "" -#: reference/datamodel.rst:2248 +#: reference/datamodel.rst:2267 msgid "" "If the metaclass has no ``__prepare__`` attribute, then the class namespace " "is initialised as an empty ordered mapping." msgstr "" -#: reference/datamodel.rst:2253 +#: reference/datamodel.rst:2272 msgid ":pep:`3115` - Metaclasses in Python 3000" msgstr "" -#: reference/datamodel.rst:2254 +#: reference/datamodel.rst:2273 msgid "Introduced the ``__prepare__`` namespace hook" msgstr "" -#: reference/datamodel.rst:2258 +#: reference/datamodel.rst:2277 msgid "Executing the class body" msgstr "" -#: reference/datamodel.rst:2263 +#: reference/datamodel.rst:2282 msgid "" "The class body is executed (approximately) as ``exec(body, globals(), " "namespace)``. The key difference from a normal call to :func:`exec` is that " @@ -2577,7 +2604,7 @@ msgid "" "inside a function." msgstr "" -#: reference/datamodel.rst:2269 +#: reference/datamodel.rst:2288 msgid "" "However, even when the class definition occurs inside the function, methods " "defined inside the class still cannot see names defined at the class scope. " @@ -2586,11 +2613,11 @@ msgid "" "reference described in the next section." msgstr "" -#: reference/datamodel.rst:2278 +#: reference/datamodel.rst:2297 msgid "Creating the class object" msgstr "" -#: reference/datamodel.rst:2285 +#: reference/datamodel.rst:2304 msgid "" "Once the class namespace has been populated by executing the class body, the " "class object is created by calling ``metaclass(name, bases, namespace, " @@ -2598,7 +2625,7 @@ msgid "" "to ``__prepare__``)." msgstr "" -#: reference/datamodel.rst:2290 +#: reference/datamodel.rst:2309 msgid "" "This class object is the one that will be referenced by the zero-argument " "form of :func:`super`. ``__class__`` is an implicit closure reference " @@ -2609,7 +2636,7 @@ msgid "" "is identified based on the first argument passed to the method." msgstr "" -#: reference/datamodel.rst:2300 +#: reference/datamodel.rst:2319 msgid "" "In CPython 3.6 and later, the ``__class__`` cell is passed to the metaclass " "as a ``__classcell__`` entry in the class namespace. If present, this must " @@ -2618,39 +2645,39 @@ msgid "" "in Python 3.8." msgstr "" -#: reference/datamodel.rst:2306 +#: reference/datamodel.rst:2325 msgid "" "When using the default metaclass :class:`type`, or any metaclass that " "ultimately calls ``type.__new__``, the following additional customization " "steps are invoked after creating the class object:" msgstr "" -#: reference/datamodel.rst:2310 +#: reference/datamodel.rst:2329 msgid "" "The ``type.__new__`` method collects all of the attributes in the class " "namespace that define a :meth:`~object.__set_name__` method;" msgstr "" -#: reference/datamodel.rst:2312 +#: reference/datamodel.rst:2331 msgid "" "Those ``__set_name__`` methods are called with the class being defined and " "the assigned name of that particular attribute;" msgstr "" -#: reference/datamodel.rst:2314 +#: reference/datamodel.rst:2333 msgid "" "The :meth:`~object.__init_subclass__` hook is called on the immediate parent " "of the new class in its method resolution order." msgstr "" -#: reference/datamodel.rst:2317 +#: reference/datamodel.rst:2336 msgid "" "After the class object is created, it is passed to the class decorators " "included in the class definition (if any) and the resulting object is bound " "in the local namespace as the defined class." msgstr "" -#: reference/datamodel.rst:2321 +#: reference/datamodel.rst:2340 msgid "" "When a new class is created by ``type.__new__``, the object provided as the " "namespace parameter is copied to a new ordered mapping and the original " @@ -2658,19 +2685,19 @@ msgid "" "becomes the :attr:`~object.__dict__` attribute of the class object." msgstr "" -#: reference/datamodel.rst:2328 +#: reference/datamodel.rst:2347 msgid ":pep:`3135` - New super" msgstr "" -#: reference/datamodel.rst:2329 +#: reference/datamodel.rst:2348 msgid "Describes the implicit ``__class__`` closure reference" msgstr "" -#: reference/datamodel.rst:2333 +#: reference/datamodel.rst:2352 msgid "Uses for metaclasses" msgstr "" -#: reference/datamodel.rst:2335 +#: reference/datamodel.rst:2354 msgid "" "The potential uses for metaclasses are boundless. Some ideas that have been " "explored include enum, logging, interface checking, automatic delegation, " @@ -2678,17 +2705,17 @@ msgid "" "locking/synchronization." msgstr "" -#: reference/datamodel.rst:2342 +#: reference/datamodel.rst:2361 msgid "Customizing instance and subclass checks" msgstr "" -#: reference/datamodel.rst:2344 +#: reference/datamodel.rst:2363 msgid "" "The following methods are used to override the default behavior of the :func:" "`isinstance` and :func:`issubclass` built-in functions." msgstr "" -#: reference/datamodel.rst:2347 +#: reference/datamodel.rst:2366 msgid "" "In particular, the metaclass :class:`abc.ABCMeta` implements these methods " "in order to allow the addition of Abstract Base Classes (ABCs) as \"virtual " @@ -2696,21 +2723,21 @@ msgid "" "other ABCs." msgstr "" -#: reference/datamodel.rst:2354 +#: reference/datamodel.rst:2373 msgid "" "Return true if *instance* should be considered a (direct or indirect) " "instance of *class*. If defined, called to implement ``isinstance(instance, " "class)``." msgstr "" -#: reference/datamodel.rst:2361 +#: reference/datamodel.rst:2380 msgid "" "Return true if *subclass* should be considered a (direct or indirect) " "subclass of *class*. If defined, called to implement ``issubclass(subclass, " "class)``." msgstr "" -#: reference/datamodel.rst:2366 +#: reference/datamodel.rst:2385 msgid "" "Note that these methods are looked up on the type (metaclass) of a class. " "They cannot be defined as class methods in the actual class. This is " @@ -2718,11 +2745,11 @@ msgid "" "only in this case the instance is itself a class." msgstr "" -#: reference/datamodel.rst:2377 +#: reference/datamodel.rst:2396 msgid ":pep:`3119` - Introducing Abstract Base Classes" msgstr "" -#: reference/datamodel.rst:2374 +#: reference/datamodel.rst:2393 msgid "" "Includes the specification for customizing :func:`isinstance` and :func:" "`issubclass` behavior through :meth:`~class.__instancecheck__` and :meth:" @@ -2731,11 +2758,11 @@ msgid "" "language." msgstr "" -#: reference/datamodel.rst:2382 +#: reference/datamodel.rst:2401 msgid "Emulating generic types" msgstr "" -#: reference/datamodel.rst:2384 +#: reference/datamodel.rst:2403 msgid "" "When using :term:`type annotations`, it is often useful to " "*parameterize* a :term:`generic type` using Python's square-brackets " @@ -2743,65 +2770,65 @@ msgid "" "a :class:`list` in which all the elements are of type :class:`int`." msgstr "" -#: reference/datamodel.rst:2392 +#: reference/datamodel.rst:2411 msgid ":pep:`484` - Type Hints" msgstr "" -#: reference/datamodel.rst:2392 +#: reference/datamodel.rst:2411 msgid "Introducing Python's framework for type annotations" msgstr "" -#: reference/datamodel.rst:2395 +#: reference/datamodel.rst:2414 msgid ":ref:`Generic Alias Types`" msgstr "" -#: reference/datamodel.rst:2395 +#: reference/datamodel.rst:2414 msgid "Documentation for objects representing parameterized generic classes" msgstr "" -#: reference/datamodel.rst:2398 +#: reference/datamodel.rst:2417 msgid "" ":ref:`Generics`, :ref:`user-defined generics` and :" "class:`typing.Generic`" msgstr "" -#: reference/datamodel.rst:2398 +#: reference/datamodel.rst:2417 msgid "" "Documentation on how to implement generic classes that can be parameterized " "at runtime and understood by static type-checkers." msgstr "" -#: reference/datamodel.rst:2401 +#: reference/datamodel.rst:2420 msgid "" "A class can *generally* only be parameterized if it defines the special " "class method ``__class_getitem__()``." msgstr "" -#: reference/datamodel.rst:2406 +#: reference/datamodel.rst:2425 msgid "" "Return an object representing the specialization of a generic class by type " "arguments found in *key*." msgstr "" -#: reference/datamodel.rst:2409 +#: reference/datamodel.rst:2428 msgid "" "When defined on a class, ``__class_getitem__()`` is automatically a class " "method. As such, there is no need for it to be decorated with :func:" "`@classmethod` when it is defined." msgstr "" -#: reference/datamodel.rst:2415 +#: reference/datamodel.rst:2434 msgid "The purpose of *__class_getitem__*" msgstr "" -#: reference/datamodel.rst:2417 +#: reference/datamodel.rst:2436 msgid "" "The purpose of :meth:`~object.__class_getitem__` is to allow runtime " "parameterization of standard-library generic classes in order to more easily " "apply :term:`type hints` to these classes." msgstr "" -#: reference/datamodel.rst:2421 +#: reference/datamodel.rst:2440 msgid "" "To implement custom generic classes that can be parameterized at runtime and " "understood by static type-checkers, users should either inherit from a " @@ -2810,7 +2837,7 @@ msgid "" "own implementation of ``__class_getitem__()``." msgstr "" -#: reference/datamodel.rst:2427 +#: reference/datamodel.rst:2446 msgid "" "Custom implementations of :meth:`~object.__class_getitem__` on classes " "defined outside of the standard library may not be understood by third-party " @@ -2818,11 +2845,11 @@ msgid "" "purposes other than type hinting is discouraged." msgstr "" -#: reference/datamodel.rst:2437 +#: reference/datamodel.rst:2456 msgid "*__class_getitem__* versus *__getitem__*" msgstr "" -#: reference/datamodel.rst:2439 +#: reference/datamodel.rst:2458 msgid "" "Usually, the :ref:`subscription` of an object using square " "brackets will call the :meth:`~object.__getitem__` instance method defined " @@ -2832,14 +2859,14 @@ msgid "" "genericalias>` object if it is properly defined." msgstr "" -#: reference/datamodel.rst:2446 +#: reference/datamodel.rst:2465 msgid "" "Presented with the :term:`expression` ``obj[x]``, the Python interpreter " "follows something like the following process to decide whether :meth:" "`~object.__getitem__` or :meth:`~object.__class_getitem__` should be called::" msgstr "" -#: reference/datamodel.rst:2474 +#: reference/datamodel.rst:2493 msgid "" "In Python, all classes are themselves instances of other classes. The class " "of a class is known as that class's :term:`metaclass`, and most classes have " @@ -2849,40 +2876,40 @@ msgid "" "__class_getitem__` being called::" msgstr "" -#: reference/datamodel.rst:2493 +#: reference/datamodel.rst:2512 msgid "" "However, if a class has a custom metaclass that defines :meth:`~object." "__getitem__`, subscribing the class may result in different behaviour. An " "example of this can be found in the :mod:`enum` module::" msgstr "" -#: reference/datamodel.rst:2518 +#: reference/datamodel.rst:2537 msgid ":pep:`560` - Core Support for typing module and generic types" msgstr "" -#: reference/datamodel.rst:2517 +#: reference/datamodel.rst:2536 msgid "" "Introducing :meth:`~object.__class_getitem__`, and outlining when a :ref:" "`subscription` results in ``__class_getitem__()`` being " "called instead of :meth:`~object.__getitem__`" msgstr "" -#: reference/datamodel.rst:2525 +#: reference/datamodel.rst:2544 msgid "Emulating callable objects" msgstr "" -#: reference/datamodel.rst:2532 +#: reference/datamodel.rst:2551 msgid "" "Called when the instance is \"called\" as a function; if this method is " "defined, ``x(arg1, arg2, ...)`` roughly translates to ``type(x).__call__(x, " "arg1, ...)``." msgstr "" -#: reference/datamodel.rst:2539 +#: reference/datamodel.rst:2558 msgid "Emulating container types" msgstr "" -#: reference/datamodel.rst:2541 +#: reference/datamodel.rst:2560 msgid "" "The following methods can be defined to implement container objects. " "Containers usually are :term:`sequences ` (such as :class:`lists " @@ -2918,7 +2945,7 @@ msgid "" "the values." msgstr "" -#: reference/datamodel.rst:2581 +#: reference/datamodel.rst:2600 msgid "" "Called to implement the built-in function :func:`len`. Should return the " "length of the object, an integer ``>=`` 0. Also, an object that doesn't " @@ -2926,7 +2953,7 @@ msgid "" "returns zero is considered to be false in a Boolean context." msgstr "" -#: reference/datamodel.rst:2588 +#: reference/datamodel.rst:2607 msgid "" "In CPython, the length is required to be at most :data:`sys.maxsize`. If the " "length is larger than :data:`!sys.maxsize` some features (such as :func:" @@ -2935,7 +2962,7 @@ msgid "" "`~object.__bool__` method." msgstr "" -#: reference/datamodel.rst:2597 +#: reference/datamodel.rst:2616 msgid "" "Called to implement :func:`operator.length_hint`. Should return an estimated " "length for the object (which may be greater or less than the actual length). " @@ -2945,20 +2972,20 @@ msgid "" "never required for correctness." msgstr "" -#: reference/datamodel.rst:2611 +#: reference/datamodel.rst:2630 msgid "" "Slicing is done exclusively with the following three methods. A call like ::" msgstr "" -#: reference/datamodel.rst:2615 +#: reference/datamodel.rst:2634 msgid "is translated to ::" msgstr "" -#: reference/datamodel.rst:2619 +#: reference/datamodel.rst:2638 msgid "and so forth. Missing slice items are always filled in with ``None``." msgstr "" -#: reference/datamodel.rst:2624 +#: reference/datamodel.rst:2643 msgid "" "Called to implement evaluation of ``self[key]``. For :term:`sequence` types, " "the accepted keys should be integers and slice objects. Note that the " @@ -2971,20 +2998,20 @@ msgid "" "`KeyError` should be raised." msgstr "" -#: reference/datamodel.rst:2636 +#: reference/datamodel.rst:2655 msgid "" ":keyword:`for` loops expect that an :exc:`IndexError` will be raised for " "illegal indexes to allow proper detection of the end of the sequence." msgstr "" -#: reference/datamodel.rst:2641 +#: reference/datamodel.rst:2660 msgid "" "When :ref:`subscripting` a *class*, the special class method :" "meth:`~object.__class_getitem__` may be called instead of ``__getitem__()``. " "See :ref:`classgetitem-versus-getitem` for more details." msgstr "" -#: reference/datamodel.rst:2649 +#: reference/datamodel.rst:2668 msgid "" "Called to implement assignment to ``self[key]``. Same note as for :meth:" "`__getitem__`. This should only be implemented for mappings if the objects " @@ -2993,7 +3020,7 @@ msgid "" "for improper *key* values as for the :meth:`__getitem__` method." msgstr "" -#: reference/datamodel.rst:2658 +#: reference/datamodel.rst:2677 msgid "" "Called to implement deletion of ``self[key]``. Same note as for :meth:" "`__getitem__`. This should only be implemented for mappings if the objects " @@ -3002,13 +3029,13 @@ msgid "" "values as for the :meth:`__getitem__` method." msgstr "" -#: reference/datamodel.rst:2667 +#: reference/datamodel.rst:2686 msgid "" "Called by :class:`dict`\\ .\\ :meth:`__getitem__` to implement ``self[key]`` " "for dict subclasses when key is not in the dictionary." msgstr "" -#: reference/datamodel.rst:2673 +#: reference/datamodel.rst:2692 msgid "" "This method is called when an :term:`iterator` is required for a container. " "This method should return a new iterator object that can iterate over all " @@ -3016,14 +3043,14 @@ msgid "" "of the container." msgstr "" -#: reference/datamodel.rst:2681 +#: reference/datamodel.rst:2700 msgid "" "Called (if present) by the :func:`reversed` built-in to implement reverse " "iteration. It should return a new iterator object that iterates over all " "the objects in the container in reverse order." msgstr "" -#: reference/datamodel.rst:2685 +#: reference/datamodel.rst:2704 msgid "" "If the :meth:`__reversed__` method is not provided, the :func:`reversed` " "built-in will fall back to using the sequence protocol (:meth:`__len__` and :" @@ -3032,7 +3059,7 @@ msgid "" "more efficient than the one provided by :func:`reversed`." msgstr "" -#: reference/datamodel.rst:2692 +#: reference/datamodel.rst:2711 msgid "" "The membership test operators (:keyword:`in` and :keyword:`not in`) are " "normally implemented as an iteration through a container. However, container " @@ -3040,14 +3067,14 @@ msgid "" "implementation, which also does not require the object be iterable." msgstr "" -#: reference/datamodel.rst:2699 +#: reference/datamodel.rst:2718 msgid "" "Called to implement membership test operators. Should return true if *item* " "is in *self*, false otherwise. For mapping objects, this should consider " "the keys of the mapping rather than the values or the key-item pairs." msgstr "" -#: reference/datamodel.rst:2703 +#: reference/datamodel.rst:2722 msgid "" "For objects that don't define :meth:`__contains__`, the membership test " "first tries iteration via :meth:`__iter__`, then the old sequence iteration " @@ -3055,11 +3082,11 @@ msgid "" "reference `." msgstr "" -#: reference/datamodel.rst:2712 +#: reference/datamodel.rst:2731 msgid "Emulating numeric types" msgstr "" -#: reference/datamodel.rst:2714 +#: reference/datamodel.rst:2733 msgid "" "The following methods can be defined to emulate numeric objects. Methods " "corresponding to operations that are not supported by the particular kind of " @@ -3067,7 +3094,7 @@ msgid "" "should be left undefined." msgstr "" -#: reference/datamodel.rst:2740 +#: reference/datamodel.rst:2759 msgid "" "These methods are called to implement the binary arithmetic operations " "(``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:" @@ -3081,13 +3108,13 @@ msgid "" "function is to be supported." msgstr "" -#: reference/datamodel.rst:2751 +#: reference/datamodel.rst:2770 msgid "" "If one of those methods does not support the operation with the supplied " "arguments, it should return ``NotImplemented``." msgstr "" -#: reference/datamodel.rst:2774 +#: reference/datamodel.rst:2793 msgid "" "These methods are called to implement the binary arithmetic operations " "(``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:" @@ -3100,13 +3127,13 @@ msgid "" "*NotImplemented*." msgstr "" -#: reference/datamodel.rst:2786 +#: reference/datamodel.rst:2805 msgid "" "Note that ternary :func:`pow` will not try calling :meth:`__rpow__` (the " "coercion rules would become too complicated)." msgstr "" -#: reference/datamodel.rst:2791 +#: reference/datamodel.rst:2810 msgid "" "If the right operand's type is a subclass of the left operand's type and " "that subclass provides a different implementation of the reflected method " @@ -3115,7 +3142,7 @@ msgid "" "ancestors' operations." msgstr "" -#: reference/datamodel.rst:2812 +#: reference/datamodel.rst:2831 msgid "" "These methods are called to implement the augmented arithmetic assignments " "(``+=``, ``-=``, ``*=``, ``@=``, ``/=``, ``//=``, ``%=``, ``**=``, ``<<=``, " @@ -3131,19 +3158,19 @@ msgid "" "fact part of the data model." msgstr "" -#: reference/datamodel.rst:2833 +#: reference/datamodel.rst:2852 msgid "" "Called to implement the unary arithmetic operations (``-``, ``+``, :func:" "`abs` and ``~``)." msgstr "" -#: reference/datamodel.rst:2846 +#: reference/datamodel.rst:2865 msgid "" "Called to implement the built-in functions :func:`complex`, :func:`int` and :" "func:`float`. Should return a value of the appropriate type." msgstr "" -#: reference/datamodel.rst:2853 +#: reference/datamodel.rst:2872 msgid "" "Called to implement :func:`operator.index`, and whenever Python needs to " "losslessly convert the numeric object to an integer object (such as in " @@ -3152,14 +3179,14 @@ msgid "" "integer type. Must return an integer." msgstr "" -#: reference/datamodel.rst:2859 +#: reference/datamodel.rst:2878 msgid "" "If :meth:`__int__`, :meth:`__float__` and :meth:`__complex__` are not " "defined then corresponding built-in functions :func:`int`, :func:`float` " "and :func:`complex` fall back to :meth:`__index__`." msgstr "" -#: reference/datamodel.rst:2871 +#: reference/datamodel.rst:2890 msgid "" "Called to implement the built-in function :func:`round` and :mod:`math` " "functions :func:`~math.trunc`, :func:`~math.floor` and :func:`~math.ceil`. " @@ -3168,21 +3195,21 @@ msgid "" "(typically an :class:`int`)." msgstr "" -#: reference/datamodel.rst:2877 +#: reference/datamodel.rst:2896 msgid "" "The built-in function :func:`int` falls back to :meth:`__trunc__` if " "neither :meth:`__int__` nor :meth:`__index__` is defined." msgstr "" -#: reference/datamodel.rst:2880 +#: reference/datamodel.rst:2899 msgid "The delegation of :func:`int` to :meth:`__trunc__` is deprecated." msgstr "" -#: reference/datamodel.rst:2887 +#: reference/datamodel.rst:2906 msgid "With Statement Context Managers" msgstr "" -#: reference/datamodel.rst:2889 +#: reference/datamodel.rst:2908 msgid "" "A :dfn:`context manager` is an object that defines the runtime context to be " "established when executing a :keyword:`with` statement. The context manager " @@ -3192,32 +3219,32 @@ msgid "" "can also be used by directly invoking their methods." msgstr "" -#: reference/datamodel.rst:2900 +#: reference/datamodel.rst:2919 msgid "" "Typical uses of context managers include saving and restoring various kinds " "of global state, locking and unlocking resources, closing opened files, etc." msgstr "" -#: reference/datamodel.rst:2903 +#: reference/datamodel.rst:2922 msgid "" "For more information on context managers, see :ref:`typecontextmanager`." msgstr "" -#: reference/datamodel.rst:2908 +#: reference/datamodel.rst:2927 msgid "" "Enter the runtime context related to this object. The :keyword:`with` " "statement will bind this method's return value to the target(s) specified in " "the :keyword:`!as` clause of the statement, if any." msgstr "" -#: reference/datamodel.rst:2915 +#: reference/datamodel.rst:2934 msgid "" "Exit the runtime context related to this object. The parameters describe the " "exception that caused the context to be exited. If the context was exited " "without an exception, all three arguments will be :const:`None`." msgstr "" -#: reference/datamodel.rst:2919 +#: reference/datamodel.rst:2938 msgid "" "If an exception is supplied, and the method wishes to suppress the exception " "(i.e., prevent it from being propagated), it should return a true value. " @@ -3225,27 +3252,27 @@ msgid "" "method." msgstr "" -#: reference/datamodel.rst:2923 +#: reference/datamodel.rst:2942 msgid "" "Note that :meth:`__exit__` methods should not reraise the passed-in " "exception; this is the caller's responsibility." msgstr "" -#: reference/datamodel.rst:2930 +#: reference/datamodel.rst:2949 msgid ":pep:`343` - The \"with\" statement" msgstr "" -#: reference/datamodel.rst:2930 +#: reference/datamodel.rst:2949 msgid "" "The specification, background, and examples for the Python :keyword:`with` " "statement." msgstr "" -#: reference/datamodel.rst:2937 +#: reference/datamodel.rst:2956 msgid "Customizing positional arguments in class pattern matching" msgstr "" -#: reference/datamodel.rst:2939 +#: reference/datamodel.rst:2958 msgid "" "When using a class name in a pattern, positional arguments in the pattern " "are not allowed by default, i.e. ``case MyClass(x, y)`` is typically invalid " @@ -3253,7 +3280,7 @@ msgid "" "pattern, the class needs to define a *__match_args__* attribute." msgstr "" -#: reference/datamodel.rst:2946 +#: reference/datamodel.rst:2965 msgid "" "This class variable can be assigned a tuple of strings. When this class is " "used in a class pattern with positional arguments, each positional argument " @@ -3262,7 +3289,7 @@ msgid "" "to setting it to ``()``." msgstr "" -#: reference/datamodel.rst:2952 +#: reference/datamodel.rst:2971 msgid "" "For example, if ``MyClass.__match_args__`` is ``(\"left\", \"center\", " "\"right\")`` that means that ``case MyClass(x, y)`` is equivalent to ``case " @@ -3272,19 +3299,73 @@ msgid "" "exc:`TypeError`." msgstr "" -#: reference/datamodel.rst:2962 +#: reference/datamodel.rst:2981 msgid ":pep:`634` - Structural Pattern Matching" msgstr "" -#: reference/datamodel.rst:2963 +#: reference/datamodel.rst:2982 msgid "The specification for the Python ``match`` statement." msgstr "" -#: reference/datamodel.rst:2969 +#: reference/datamodel.rst:2988 +msgid "Emulating buffer types" +msgstr "" + +#: reference/datamodel.rst:2990 +msgid "" +"The :ref:`buffer protocol ` provides a way for Python objects " +"to expose efficient access to a low-level memory array. This protocol is " +"implemented by builtin types such as :class:`bytes` and :class:`memoryview`, " +"and third-party libraries may define additional buffer types." +msgstr "" + +#: reference/datamodel.rst:2995 +msgid "" +"While buffer types are usually implemented in C, it is also possible to " +"implement the protocol in Python." +msgstr "" + +#: reference/datamodel.rst:3000 +msgid "" +"Called when a buffer is requested from *self* (for example, by the :class:" +"`memoryview` constructor). The *flags* argument is an integer representing " +"the kind of buffer requested, affecting for example whether the returned " +"buffer is read-only or writable. :class:`inspect.BufferFlags` provides a " +"convenient way to interpret the flags. The method must return a :class:" +"`memoryview` object." +msgstr "" + +#: reference/datamodel.rst:3009 +msgid "" +"Called when a buffer is no longer needed. The *buffer* argument is a :class:" +"`memoryview` object that was previously returned by :meth:`~object." +"__buffer__`. The method must release any resources associated with the " +"buffer. This method should return ``None``. Buffer objects that do not need " +"to perform any cleanup are not required to implement this method." +msgstr "" + +#: reference/datamodel.rst:3021 +msgid ":pep:`688` - Making the buffer protocol accessible in Python" +msgstr "" + +#: reference/datamodel.rst:3021 +msgid "" +"Introduces the Python ``__buffer__`` and ``__release_buffer__`` methods." +msgstr "" + +#: reference/datamodel.rst:3023 +msgid ":class:`collections.abc.Buffer`" +msgstr "" + +#: reference/datamodel.rst:3024 +msgid "ABC for buffer types." +msgstr "" + +#: reference/datamodel.rst:3029 msgid "Special method lookup" msgstr "" -#: reference/datamodel.rst:2971 +#: reference/datamodel.rst:3031 msgid "" "For custom classes, implicit invocations of special methods are only " "guaranteed to work correctly if defined on an object's type, not in the " @@ -3292,7 +3373,7 @@ msgid "" "following code raises an exception::" msgstr "" -#: reference/datamodel.rst:2986 +#: reference/datamodel.rst:3046 msgid "" "The rationale behind this behaviour lies with a number of special methods " "such as :meth:`~object.__hash__` and :meth:`~object.__repr__` that are " @@ -3301,21 +3382,21 @@ msgid "" "invoked on the type object itself::" msgstr "" -#: reference/datamodel.rst:3000 +#: reference/datamodel.rst:3060 msgid "" "Incorrectly attempting to invoke an unbound method of a class in this way is " "sometimes referred to as 'metaclass confusion', and is avoided by bypassing " "the instance when looking up special methods::" msgstr "" -#: reference/datamodel.rst:3009 +#: reference/datamodel.rst:3069 msgid "" "In addition to bypassing any instance attributes in the interest of " "correctness, implicit special method lookup generally also bypasses the :" "meth:`~object.__getattribute__` method even of the object's metaclass::" msgstr "" -#: reference/datamodel.rst:3035 +#: reference/datamodel.rst:3095 msgid "" "Bypassing the :meth:`~object.__getattribute__` machinery in this fashion " "provides significant scope for speed optimisations within the interpreter, " @@ -3324,36 +3405,36 @@ msgid "" "consistently invoked by the interpreter)." msgstr "" -#: reference/datamodel.rst:3046 +#: reference/datamodel.rst:3106 msgid "Coroutines" msgstr "" -#: reference/datamodel.rst:3050 +#: reference/datamodel.rst:3110 msgid "Awaitable Objects" msgstr "" -#: reference/datamodel.rst:3052 +#: reference/datamodel.rst:3112 msgid "" "An :term:`awaitable` object generally implements an :meth:`~object." "__await__` method. :term:`Coroutine objects ` returned from :" "keyword:`async def` functions are awaitable." msgstr "" -#: reference/datamodel.rst:3058 +#: reference/datamodel.rst:3118 msgid "" "The :term:`generator iterator` objects returned from generators decorated " "with :func:`types.coroutine` are also awaitable, but they do not implement :" "meth:`~object.__await__`." msgstr "" -#: reference/datamodel.rst:3064 +#: reference/datamodel.rst:3124 msgid "" "Must return an :term:`iterator`. Should be used to implement :term:" "`awaitable` objects. For instance, :class:`asyncio.Future` implements this " "method to be compatible with the :keyword:`await` expression." msgstr "" -#: reference/datamodel.rst:3070 +#: reference/datamodel.rst:3130 msgid "" "The language doesn't place any restriction on the type or value of the " "objects yielded by the iterator returned by ``__await__``, as this is " @@ -3361,15 +3442,15 @@ msgid "" "g. :mod:`asyncio`) that will be managing the :term:`awaitable` object." msgstr "" -#: reference/datamodel.rst:3078 +#: reference/datamodel.rst:3138 msgid ":pep:`492` for additional information about awaitable objects." msgstr "" -#: reference/datamodel.rst:3084 +#: reference/datamodel.rst:3144 msgid "Coroutine Objects" msgstr "" -#: reference/datamodel.rst:3086 +#: reference/datamodel.rst:3146 msgid "" ":term:`Coroutine objects ` are :term:`awaitable` objects. A " "coroutine's execution can be controlled by calling :meth:`~object.__await__` " @@ -3380,18 +3461,18 @@ msgid "" "should not directly raise unhandled :exc:`StopIteration` exceptions." msgstr "" -#: reference/datamodel.rst:3094 +#: reference/datamodel.rst:3154 msgid "" "Coroutines also have the methods listed below, which are analogous to those " "of generators (see :ref:`generator-methods`). However, unlike generators, " "coroutines do not directly support iteration." msgstr "" -#: reference/datamodel.rst:3098 +#: reference/datamodel.rst:3158 msgid "It is a :exc:`RuntimeError` to await on a coroutine more than once." msgstr "" -#: reference/datamodel.rst:3104 +#: reference/datamodel.rst:3164 msgid "" "Starts or resumes execution of the coroutine. If *value* is ``None``, this " "is equivalent to advancing the iterator returned by :meth:`~object." @@ -3402,7 +3483,7 @@ msgid "" "value, described above." msgstr "" -#: reference/datamodel.rst:3115 +#: reference/datamodel.rst:3175 msgid "" "Raises the specified exception in the coroutine. This method delegates to " "the :meth:`~generator.throw` method of the iterator that caused the " @@ -3413,7 +3494,13 @@ msgid "" "not caught in the coroutine, it propagates back to the caller." msgstr "" -#: reference/datamodel.rst:3126 +#: reference/datamodel.rst:3186 +msgid "" +"The second signature \\(type\\[, value\\[, traceback\\]\\]\\) is deprecated " +"and may be removed in a future version of Python." +msgstr "" + +#: reference/datamodel.rst:3191 msgid "" "Causes the coroutine to clean itself up and exit. If the coroutine is " "suspended, this method first delegates to the :meth:`~generator.close` " @@ -3423,99 +3510,99 @@ msgid "" "is marked as having finished executing, even if it was never started." msgstr "" -#: reference/datamodel.rst:3134 +#: reference/datamodel.rst:3199 msgid "" "Coroutine objects are automatically closed using the above process when they " "are about to be destroyed." msgstr "" -#: reference/datamodel.rst:3140 +#: reference/datamodel.rst:3205 msgid "Asynchronous Iterators" msgstr "" -#: reference/datamodel.rst:3142 +#: reference/datamodel.rst:3207 msgid "" "An *asynchronous iterator* can call asynchronous code in its ``__anext__`` " "method." msgstr "" -#: reference/datamodel.rst:3145 +#: reference/datamodel.rst:3210 msgid "" "Asynchronous iterators can be used in an :keyword:`async for` statement." msgstr "" -#: reference/datamodel.rst:3149 +#: reference/datamodel.rst:3214 msgid "Must return an *asynchronous iterator* object." msgstr "" -#: reference/datamodel.rst:3153 +#: reference/datamodel.rst:3218 msgid "" "Must return an *awaitable* resulting in a next value of the iterator. " "Should raise a :exc:`StopAsyncIteration` error when the iteration is over." msgstr "" -#: reference/datamodel.rst:3156 +#: reference/datamodel.rst:3221 msgid "An example of an asynchronous iterable object::" msgstr "" -#: reference/datamodel.rst:3173 +#: reference/datamodel.rst:3238 msgid "" "Prior to Python 3.7, :meth:`~object.__aiter__` could return an *awaitable* " "that would resolve to an :term:`asynchronous iterator `." msgstr "" -#: reference/datamodel.rst:3178 +#: reference/datamodel.rst:3243 msgid "" "Starting with Python 3.7, :meth:`~object.__aiter__` must return an " "asynchronous iterator object. Returning anything else will result in a :exc:" "`TypeError` error." msgstr "" -#: reference/datamodel.rst:3186 +#: reference/datamodel.rst:3251 msgid "Asynchronous Context Managers" msgstr "" -#: reference/datamodel.rst:3188 +#: reference/datamodel.rst:3253 msgid "" "An *asynchronous context manager* is a *context manager* that is able to " "suspend execution in its ``__aenter__`` and ``__aexit__`` methods." msgstr "" -#: reference/datamodel.rst:3191 +#: reference/datamodel.rst:3256 msgid "" "Asynchronous context managers can be used in an :keyword:`async with` " "statement." msgstr "" -#: reference/datamodel.rst:3195 +#: reference/datamodel.rst:3260 msgid "" "Semantically similar to :meth:`__enter__`, the only difference being that it " "must return an *awaitable*." msgstr "" -#: reference/datamodel.rst:3200 +#: reference/datamodel.rst:3265 msgid "" "Semantically similar to :meth:`__exit__`, the only difference being that it " "must return an *awaitable*." msgstr "" -#: reference/datamodel.rst:3203 +#: reference/datamodel.rst:3268 msgid "An example of an asynchronous context manager class::" msgstr "" -#: reference/datamodel.rst:3216 +#: reference/datamodel.rst:3281 msgid "Footnotes" msgstr "" -#: reference/datamodel.rst:3217 +#: reference/datamodel.rst:3282 msgid "" "It *is* possible in some cases to change an object's type, under certain " "controlled conditions. It generally isn't a good idea though, since it can " "lead to some very strange behaviour if it is handled incorrectly." msgstr "" -#: reference/datamodel.rst:3221 +#: reference/datamodel.rst:3286 msgid "" "The :meth:`~object.__hash__`, :meth:`~object.__iter__`, :meth:`~object." "__reversed__`, and :meth:`~object.__contains__` methods have special " @@ -3523,7 +3610,7 @@ msgid "" "by relying on the behavior that ``None`` is not callable." msgstr "" -#: reference/datamodel.rst:3227 +#: reference/datamodel.rst:3292 msgid "" "\"Does not support\" here means that the class has no such method, or the " "method returns ``NotImplemented``. Do not set the method to ``None`` if you " @@ -3531,7 +3618,7 @@ msgid "" "instead have the opposite effect of explicitly *blocking* such fallback." msgstr "" -#: reference/datamodel.rst:3233 +#: reference/datamodel.rst:3298 msgid "" "For operands of the same type, it is assumed that if the non-reflected " "method -- such as :meth:`~object.__add__` -- fails then the overall " @@ -3543,10 +3630,10 @@ msgstr "" #: reference/datamodel.rst:292 reference/datamodel.rst:356 #: reference/datamodel.rst:402 reference/datamodel.rst:440 #: reference/datamodel.rst:459 reference/datamodel.rst:512 -#: reference/datamodel.rst:633 reference/datamodel.rst:771 -#: reference/datamodel.rst:884 reference/datamodel.rst:974 -#: reference/datamodel.rst:1087 reference/datamodel.rst:1212 -#: reference/datamodel.rst:2607 +#: reference/datamodel.rst:640 reference/datamodel.rst:778 +#: reference/datamodel.rst:891 reference/datamodel.rst:986 +#: reference/datamodel.rst:1102 reference/datamodel.rst:1227 +#: reference/datamodel.rst:2626 msgid "object" msgstr "" @@ -3555,10 +3642,10 @@ msgid "data" msgstr "" #: reference/datamodel.rst:292 reference/datamodel.rst:420 -#: reference/datamodel.rst:753 reference/datamodel.rst:1277 -#: reference/datamodel.rst:1522 reference/datamodel.rst:2153 -#: reference/datamodel.rst:2735 reference/datamodel.rst:2784 -#: reference/datamodel.rst:2841 reference/datamodel.rst:2869 +#: reference/datamodel.rst:760 reference/datamodel.rst:1292 +#: reference/datamodel.rst:1537 reference/datamodel.rst:2168 +#: reference/datamodel.rst:2754 reference/datamodel.rst:2803 +#: reference/datamodel.rst:2860 reference/datamodel.rst:2888 msgid "built-in function" msgstr "" @@ -3566,7 +3653,7 @@ msgstr "" msgid "id" msgstr "" -#: reference/datamodel.rst:122 reference/datamodel.rst:2153 +#: reference/datamodel.rst:122 reference/datamodel.rst:2168 msgid "type" msgstr "" @@ -3602,7 +3689,7 @@ msgstr "" msgid "unreachable object" msgstr "" -#: reference/datamodel.rst:884 +#: reference/datamodel.rst:891 msgid "container" msgstr "" @@ -3615,20 +3702,20 @@ msgid "extension" msgstr "" #: reference/datamodel.rst:393 reference/datamodel.rst:495 -#: reference/datamodel.rst:822 reference/datamodel.rst:993 +#: reference/datamodel.rst:829 reference/datamodel.rst:1005 msgid "module" msgstr "" -#: reference/datamodel.rst:261 reference/datamodel.rst:753 +#: reference/datamodel.rst:261 reference/datamodel.rst:760 msgid "C" msgstr "" -#: reference/datamodel.rst:261 reference/datamodel.rst:753 +#: reference/datamodel.rst:261 reference/datamodel.rst:760 msgid "language" msgstr "" -#: reference/datamodel.rst:884 reference/datamodel.rst:947 -#: reference/datamodel.rst:967 +#: reference/datamodel.rst:891 reference/datamodel.rst:959 +#: reference/datamodel.rst:979 msgid "attribute" msgstr "" @@ -3648,7 +3735,7 @@ msgstr "" msgid "ellipsis literal" msgstr "" -#: reference/datamodel.rst:974 +#: reference/datamodel.rst:986 msgid "numeric" msgstr "" @@ -3684,15 +3771,15 @@ msgstr "" msgid "Java" msgstr "" -#: reference/datamodel.rst:2841 +#: reference/datamodel.rst:2860 msgid "complex" msgstr "" -#: reference/datamodel.rst:420 reference/datamodel.rst:2577 +#: reference/datamodel.rst:420 reference/datamodel.rst:2596 msgid "len" msgstr "" -#: reference/datamodel.rst:974 +#: reference/datamodel.rst:986 msgid "sequence" msgstr "" @@ -3720,7 +3807,7 @@ msgstr "" msgid "immutable" msgstr "" -#: reference/datamodel.rst:1492 reference/datamodel.rst:1522 +#: reference/datamodel.rst:1507 reference/datamodel.rst:1537 msgid "string" msgstr "" @@ -3756,7 +3843,7 @@ msgstr "" msgid "empty" msgstr "" -#: reference/datamodel.rst:1517 +#: reference/datamodel.rst:1532 msgid "bytes" msgstr "" @@ -3772,12 +3859,12 @@ msgstr "" msgid "mutable" msgstr "" -#: reference/datamodel.rst:901 reference/datamodel.rst:967 +#: reference/datamodel.rst:908 reference/datamodel.rst:979 msgid "assignment" msgstr "" -#: reference/datamodel.rst:803 reference/datamodel.rst:1413 -#: reference/datamodel.rst:2896 +#: reference/datamodel.rst:810 reference/datamodel.rst:1428 +#: reference/datamodel.rst:2915 msgid "statement" msgstr "" @@ -3809,11 +3896,11 @@ msgstr "" msgid "frozenset" msgstr "" -#: reference/datamodel.rst:974 +#: reference/datamodel.rst:986 msgid "mapping" msgstr "" -#: reference/datamodel.rst:884 reference/datamodel.rst:1603 +#: reference/datamodel.rst:891 reference/datamodel.rst:1618 msgid "dictionary" msgstr "" @@ -3829,12 +3916,12 @@ msgstr "" msgid "callable" msgstr "" -#: reference/datamodel.rst:525 reference/datamodel.rst:717 -#: reference/datamodel.rst:753 +#: reference/datamodel.rst:525 reference/datamodel.rst:724 +#: reference/datamodel.rst:760 msgid "function" msgstr "" -#: reference/datamodel.rst:884 reference/datamodel.rst:2530 +#: reference/datamodel.rst:891 reference/datamodel.rst:2549 msgid "call" msgstr "" @@ -3846,7 +3933,7 @@ msgstr "" msgid "argument" msgstr "" -#: reference/datamodel.rst:633 +#: reference/datamodel.rst:640 msgid "user-defined" msgstr "" @@ -3894,559 +3981,567 @@ msgstr "" msgid "__kwdefaults__ (function attribute)" msgstr "" +#: reference/datamodel.rst:539 +msgid "__type_params__ (function attribute)" +msgstr "" + #: reference/datamodel.rst:539 msgid "global" msgstr "" -#: reference/datamodel.rst:822 +#: reference/datamodel.rst:829 msgid "namespace" msgstr "" -#: reference/datamodel.rst:771 +#: reference/datamodel.rst:778 msgid "method" msgstr "" -#: reference/datamodel.rst:633 +#: reference/datamodel.rst:640 msgid "user-defined method" msgstr "" -#: reference/datamodel.rst:641 +#: reference/datamodel.rst:648 msgid "__func__ (method attribute)" msgstr "" -#: reference/datamodel.rst:641 +#: reference/datamodel.rst:648 msgid "__self__ (method attribute)" msgstr "" -#: reference/datamodel.rst:641 +#: reference/datamodel.rst:648 msgid "__doc__ (method attribute)" msgstr "" -#: reference/datamodel.rst:641 +#: reference/datamodel.rst:648 msgid "__name__ (method attribute)" msgstr "" -#: reference/datamodel.rst:641 +#: reference/datamodel.rst:648 msgid "__module__ (method attribute)" msgstr "" -#: reference/datamodel.rst:1087 +#: reference/datamodel.rst:1102 msgid "generator" msgstr "" -#: reference/datamodel.rst:699 +#: reference/datamodel.rst:706 msgid "iterator" msgstr "" -#: reference/datamodel.rst:3042 +#: reference/datamodel.rst:3102 msgid "coroutine" msgstr "" -#: reference/datamodel.rst:730 +#: reference/datamodel.rst:737 msgid "asynchronous generator" msgstr "" -#: reference/datamodel.rst:730 +#: reference/datamodel.rst:737 msgid "asynchronous iterator" msgstr "" -#: reference/datamodel.rst:771 +#: reference/datamodel.rst:778 msgid "built-in method" msgstr "" -#: reference/datamodel.rst:771 +#: reference/datamodel.rst:778 msgid "built-in" msgstr "" -#: reference/datamodel.rst:803 +#: reference/datamodel.rst:810 msgid "import" msgstr "" -#: reference/datamodel.rst:822 +#: reference/datamodel.rst:829 msgid "__name__ (module attribute)" msgstr "" -#: reference/datamodel.rst:822 +#: reference/datamodel.rst:829 msgid "__doc__ (module attribute)" msgstr "" -#: reference/datamodel.rst:822 +#: reference/datamodel.rst:829 msgid "__file__ (module attribute)" msgstr "" -#: reference/datamodel.rst:822 +#: reference/datamodel.rst:829 msgid "__annotations__ (module attribute)" msgstr "" -#: reference/datamodel.rst:853 +#: reference/datamodel.rst:860 msgid "__dict__ (module attribute)" msgstr "" -#: reference/datamodel.rst:901 reference/datamodel.rst:1396 -#: reference/datamodel.rst:2260 +#: reference/datamodel.rst:908 reference/datamodel.rst:1411 +#: reference/datamodel.rst:2279 msgid "class" msgstr "" -#: reference/datamodel.rst:947 reference/datamodel.rst:967 +#: reference/datamodel.rst:959 reference/datamodel.rst:979 msgid "class instance" msgstr "" -#: reference/datamodel.rst:947 reference/datamodel.rst:2530 +#: reference/datamodel.rst:959 reference/datamodel.rst:2549 msgid "instance" msgstr "" -#: reference/datamodel.rst:906 +#: reference/datamodel.rst:913 msgid "class object" msgstr "" -#: reference/datamodel.rst:910 +#: reference/datamodel.rst:917 msgid "__name__ (class attribute)" msgstr "" -#: reference/datamodel.rst:910 +#: reference/datamodel.rst:917 msgid "__module__ (class attribute)" msgstr "" -#: reference/datamodel.rst:910 +#: reference/datamodel.rst:917 msgid "__dict__ (class attribute)" msgstr "" -#: reference/datamodel.rst:910 +#: reference/datamodel.rst:917 msgid "__bases__ (class attribute)" msgstr "" -#: reference/datamodel.rst:910 +#: reference/datamodel.rst:917 msgid "__doc__ (class attribute)" msgstr "" -#: reference/datamodel.rst:910 +#: reference/datamodel.rst:917 msgid "__annotations__ (class attribute)" msgstr "" -#: reference/datamodel.rst:982 +#: reference/datamodel.rst:917 +msgid "__type_params__ (class attribute)" +msgstr "" + +#: reference/datamodel.rst:994 msgid "__dict__ (instance attribute)" msgstr "" -#: reference/datamodel.rst:982 +#: reference/datamodel.rst:994 msgid "__class__ (instance attribute)" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "open" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "io" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "popen() (in module os)" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "makefile() (socket method)" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "sys.stdin" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "sys.stdout" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "sys.stderr" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "stdio" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "stdin (in module sys)" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "stdout (in module sys)" msgstr "" -#: reference/datamodel.rst:993 +#: reference/datamodel.rst:1005 msgid "stderr (in module sys)" msgstr "" -#: reference/datamodel.rst:1022 +#: reference/datamodel.rst:1034 msgid "internal type" msgstr "" -#: reference/datamodel.rst:1022 +#: reference/datamodel.rst:1034 msgid "types, internal" msgstr "" -#: reference/datamodel.rst:1030 +#: reference/datamodel.rst:1048 msgid "bytecode" msgstr "" -#: reference/datamodel.rst:1030 +#: reference/datamodel.rst:1048 msgid "code" msgstr "" -#: reference/datamodel.rst:1030 +#: reference/datamodel.rst:1048 msgid "code object" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_argcount (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_posonlyargcount (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_kwonlyargcount (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_code (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_consts (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_filename (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_firstlineno (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_flags (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_lnotab (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_name (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_names (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_nlocals (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_stacksize (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_varnames (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_cellvars (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_freevars (code object attribute)" msgstr "" -#: reference/datamodel.rst:1045 +#: reference/datamodel.rst:1059 msgid "co_qualname (code object attribute)" msgstr "" -#: reference/datamodel.rst:1103 +#: reference/datamodel.rst:1118 msgid "documentation string" msgstr "" -#: reference/datamodel.rst:1147 +#: reference/datamodel.rst:1162 msgid "frame" msgstr "" -#: reference/datamodel.rst:1152 +#: reference/datamodel.rst:1167 msgid "f_back (frame attribute)" msgstr "" -#: reference/datamodel.rst:1152 +#: reference/datamodel.rst:1167 msgid "f_code (frame attribute)" msgstr "" -#: reference/datamodel.rst:1152 +#: reference/datamodel.rst:1167 msgid "f_globals (frame attribute)" msgstr "" -#: reference/datamodel.rst:1152 +#: reference/datamodel.rst:1167 msgid "f_locals (frame attribute)" msgstr "" -#: reference/datamodel.rst:1152 +#: reference/datamodel.rst:1167 msgid "f_lasti (frame attribute)" msgstr "" -#: reference/datamodel.rst:1152 +#: reference/datamodel.rst:1167 msgid "f_builtins (frame attribute)" msgstr "" -#: reference/datamodel.rst:1171 +#: reference/datamodel.rst:1186 msgid "f_trace (frame attribute)" msgstr "" -#: reference/datamodel.rst:1171 +#: reference/datamodel.rst:1186 msgid "f_trace_lines (frame attribute)" msgstr "" -#: reference/datamodel.rst:1171 +#: reference/datamodel.rst:1186 msgid "f_trace_opcodes (frame attribute)" msgstr "" -#: reference/datamodel.rst:1171 +#: reference/datamodel.rst:1186 msgid "f_lineno (frame attribute)" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "traceback" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "stack" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "trace" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "exception" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "handler" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "execution" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "exc_info (in module sys)" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "last_traceback (in module sys)" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "sys.exc_info" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "sys.exception" msgstr "" -#: reference/datamodel.rst:1212 +#: reference/datamodel.rst:1227 msgid "sys.last_traceback" msgstr "" -#: reference/datamodel.rst:1244 +#: reference/datamodel.rst:1259 msgid "tb_frame (traceback attribute)" msgstr "" -#: reference/datamodel.rst:1244 +#: reference/datamodel.rst:1259 msgid "tb_lineno (traceback attribute)" msgstr "" -#: reference/datamodel.rst:1244 +#: reference/datamodel.rst:1259 msgid "tb_lasti (traceback attribute)" msgstr "" -#: reference/datamodel.rst:1244 +#: reference/datamodel.rst:1259 msgid "try" msgstr "" -#: reference/datamodel.rst:1262 +#: reference/datamodel.rst:1277 msgid "tb_next (traceback attribute)" msgstr "" -#: reference/datamodel.rst:2607 +#: reference/datamodel.rst:2626 msgid "slice" msgstr "" -#: reference/datamodel.rst:1283 +#: reference/datamodel.rst:1298 msgid "start (slice object attribute)" msgstr "" -#: reference/datamodel.rst:1283 +#: reference/datamodel.rst:1298 msgid "stop (slice object attribute)" msgstr "" -#: reference/datamodel.rst:1283 +#: reference/datamodel.rst:1298 msgid "step (slice object attribute)" msgstr "" -#: reference/datamodel.rst:1331 +#: reference/datamodel.rst:1346 msgid "operator" msgstr "" -#: reference/datamodel.rst:1331 +#: reference/datamodel.rst:1346 msgid "overloading" msgstr "" -#: reference/datamodel.rst:1331 +#: reference/datamodel.rst:1346 msgid "__getitem__() (mapping object method)" msgstr "" -#: reference/datamodel.rst:1367 +#: reference/datamodel.rst:1382 msgid "subclassing" msgstr "" -#: reference/datamodel.rst:1367 +#: reference/datamodel.rst:1382 msgid "immutable types" msgstr "" -#: reference/datamodel.rst:1396 +#: reference/datamodel.rst:1411 msgid "constructor" msgstr "" -#: reference/datamodel.rst:1413 +#: reference/datamodel.rst:1428 msgid "destructor" msgstr "" -#: reference/datamodel.rst:1413 +#: reference/datamodel.rst:1428 msgid "finalizer" msgstr "" -#: reference/datamodel.rst:1413 +#: reference/datamodel.rst:1428 msgid "del" msgstr "" -#: reference/datamodel.rst:1475 +#: reference/datamodel.rst:1490 msgid "repr() (built-in function)" msgstr "" -#: reference/datamodel.rst:1475 +#: reference/datamodel.rst:1490 msgid "__repr__() (object method)" msgstr "" -#: reference/datamodel.rst:1492 +#: reference/datamodel.rst:1507 msgid "__str__() (object method)" msgstr "" -#: reference/datamodel.rst:1492 +#: reference/datamodel.rst:1507 msgid "format() (built-in function)" msgstr "" -#: reference/datamodel.rst:1492 +#: reference/datamodel.rst:1507 msgid "print() (built-in function)" msgstr "" -#: reference/datamodel.rst:1522 +#: reference/datamodel.rst:1537 msgid "__format__() (object method)" msgstr "" -#: reference/datamodel.rst:1522 +#: reference/datamodel.rst:1537 msgid "conversion" msgstr "" -#: reference/datamodel.rst:1522 +#: reference/datamodel.rst:1537 msgid "print" msgstr "" -#: reference/datamodel.rst:1561 +#: reference/datamodel.rst:1576 msgid "comparisons" msgstr "" -#: reference/datamodel.rst:1603 +#: reference/datamodel.rst:1618 msgid "hash" msgstr "" -#: reference/datamodel.rst:1684 +#: reference/datamodel.rst:1699 msgid "__len__() (mapping object method)" msgstr "" -#: reference/datamodel.rst:1787 +#: reference/datamodel.rst:1802 msgid "__getattr__ (module attribute)" msgstr "" -#: reference/datamodel.rst:1787 +#: reference/datamodel.rst:1802 msgid "__dir__ (module attribute)" msgstr "" -#: reference/datamodel.rst:1787 +#: reference/datamodel.rst:1802 msgid "__class__ (module attribute)" msgstr "" -#: reference/datamodel.rst:2153 +#: reference/datamodel.rst:2168 msgid "metaclass" msgstr "" -#: reference/datamodel.rst:2153 +#: reference/datamodel.rst:2168 msgid "= (equals)" msgstr "" -#: reference/datamodel.rst:2153 +#: reference/datamodel.rst:2168 msgid "class definition" msgstr "" -#: reference/datamodel.rst:2213 +#: reference/datamodel.rst:2232 msgid "metaclass hint" msgstr "" -#: reference/datamodel.rst:2236 +#: reference/datamodel.rst:2255 msgid "__prepare__ (metaclass method)" msgstr "" -#: reference/datamodel.rst:2260 +#: reference/datamodel.rst:2279 msgid "body" msgstr "" -#: reference/datamodel.rst:2280 +#: reference/datamodel.rst:2299 msgid "__class__ (method cell)" msgstr "" -#: reference/datamodel.rst:2280 +#: reference/datamodel.rst:2299 msgid "__classcell__ (class namespace entry)" msgstr "" -#: reference/datamodel.rst:2577 +#: reference/datamodel.rst:2596 msgid "__bool__() (object method)" msgstr "" -#: reference/datamodel.rst:2770 +#: reference/datamodel.rst:2789 msgid "divmod" msgstr "" -#: reference/datamodel.rst:2770 reference/datamodel.rst:2784 +#: reference/datamodel.rst:2789 reference/datamodel.rst:2803 msgid "pow" msgstr "" -#: reference/datamodel.rst:2831 +#: reference/datamodel.rst:2850 msgid "abs" msgstr "" -#: reference/datamodel.rst:2841 +#: reference/datamodel.rst:2860 msgid "int" msgstr "" -#: reference/datamodel.rst:2841 +#: reference/datamodel.rst:2860 msgid "float" msgstr "" -#: reference/datamodel.rst:2869 +#: reference/datamodel.rst:2888 msgid "round" msgstr "" -#: reference/datamodel.rst:2896 +#: reference/datamodel.rst:2915 msgid "with" msgstr "" -#: reference/datamodel.rst:2896 +#: reference/datamodel.rst:2915 msgid "context manager" msgstr "" diff --git a/reference/executionmodel.po b/reference/executionmodel.po index 3b12b92d7..f3f861307 100644 --- a/reference/executionmodel.po +++ b/reference/executionmodel.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -104,26 +104,34 @@ msgstr "" msgid ":keyword:`import` statements." msgstr "" +#: reference/executionmodel.rst:74 +msgid ":keyword:`type` statements." +msgstr "" + #: reference/executionmodel.rst:75 +msgid ":ref:`type parameter lists `." +msgstr "" + +#: reference/executionmodel.rst:77 msgid "" "The :keyword:`!import` statement of the form ``from ... import *`` binds all " "names defined in the imported module, except those beginning with an " "underscore. This form may only be used at the module level." msgstr "" -#: reference/executionmodel.rst:79 +#: reference/executionmodel.rst:81 msgid "" "A target occurring in a :keyword:`del` statement is also considered bound " "for this purpose (though the actual semantics are to unbind the name)." msgstr "" -#: reference/executionmodel.rst:82 +#: reference/executionmodel.rst:84 msgid "" "Each assignment or import statement occurs within a block defined by a class " "or function definition or at the module level (the top-level code block)." msgstr "" -#: reference/executionmodel.rst:87 +#: reference/executionmodel.rst:89 msgid "" "If a name is bound in a block, it is a local variable of that block, unless " "declared as :keyword:`nonlocal` or :keyword:`global`. If a name is bound at " @@ -132,17 +140,17 @@ msgid "" "not defined there, it is a :dfn:`free variable`." msgstr "" -#: reference/executionmodel.rst:93 +#: reference/executionmodel.rst:95 msgid "" "Each occurrence of a name in the program text refers to the :dfn:`binding` " "of that name established by the following name resolution rules." msgstr "" -#: reference/executionmodel.rst:99 +#: reference/executionmodel.rst:101 msgid "Resolution of names" msgstr "" -#: reference/executionmodel.rst:103 +#: reference/executionmodel.rst:105 msgid "" "A :dfn:`scope` defines the visibility of a name within a block. If a local " "variable is defined in a block, its scope includes that block. If the " @@ -151,14 +159,14 @@ msgid "" "different binding for the name." msgstr "" -#: reference/executionmodel.rst:111 +#: reference/executionmodel.rst:113 msgid "" "When a name is used in a code block, it is resolved using the nearest " "enclosing scope. The set of all such scopes visible to a code block is " "called the block's :dfn:`environment`." msgstr "" -#: reference/executionmodel.rst:119 +#: reference/executionmodel.rst:121 msgid "" "When a name is not found at all, a :exc:`NameError` exception is raised. If " "the current scope is a function scope, and the name refers to a local " @@ -167,7 +175,7 @@ msgid "" "`UnboundLocalError` is a subclass of :exc:`NameError`." msgstr "" -#: reference/executionmodel.rst:125 +#: reference/executionmodel.rst:127 msgid "" "If a name binding operation occurs anywhere within a code block, all uses of " "the name within the block are treated as references to the current block. " @@ -179,7 +187,7 @@ msgid "" "UnboundLocalError ` for examples." msgstr "" -#: reference/executionmodel.rst:134 +#: reference/executionmodel.rst:136 msgid "" "If the :keyword:`global` statement occurs within a block, all uses of the " "names specified in the statement refer to the bindings of those names in the " @@ -191,7 +199,7 @@ msgid "" "statement must precede all uses of the listed names." msgstr "" -#: reference/executionmodel.rst:143 +#: reference/executionmodel.rst:145 msgid "" "The :keyword:`global` statement has the same scope as a name binding " "operation in the same block. If the nearest enclosing scope for a free " @@ -199,21 +207,22 @@ msgid "" "global." msgstr "" -#: reference/executionmodel.rst:149 +#: reference/executionmodel.rst:151 msgid "" "The :keyword:`nonlocal` statement causes corresponding names to refer to " "previously bound variables in the nearest enclosing function scope. :exc:" "`SyntaxError` is raised at compile time if the given name does not exist in " -"any enclosing function scope." +"any enclosing function scope. :ref:`Type parameters ` cannot be " +"rebound with the :keyword:`!nonlocal` statement." msgstr "" -#: reference/executionmodel.rst:156 +#: reference/executionmodel.rst:159 msgid "" "The namespace for a module is automatically created the first time a module " "is imported. The main module for a script is always called :mod:`__main__`." msgstr "" -#: reference/executionmodel.rst:159 +#: reference/executionmodel.rst:162 msgid "" "Class definition blocks and arguments to :func:`exec` and :func:`eval` are " "special in the context of name resolution. A class definition is an " @@ -222,16 +231,148 @@ msgid "" "variables are looked up in the global namespace. The namespace of the class " "definition becomes the attribute dictionary of the class. The scope of names " "defined in a class block is limited to the class block; it does not extend " -"to the code blocks of methods -- this includes comprehensions and generator " -"expressions since they are implemented using a function scope. This means " -"that the following will fail::" +"to the code blocks of methods. This includes comprehensions and generator " +"expressions, but it does not include :ref:`annotation scopes `, which have access to their enclosing class scopes. This means that " +"the following will fail::" +msgstr "" + +#: reference/executionmodel.rst:179 +msgid "However, the following will succeed::" +msgstr "" + +#: reference/executionmodel.rst:190 +msgid "Annotation scopes" +msgstr "" + +#: reference/executionmodel.rst:192 +msgid "" +":ref:`Type parameter lists ` and :keyword:`type` statements " +"introduce *annotation scopes*, which behave mostly like function scopes, but " +"with some exceptions discussed below. :term:`Annotations ` " +"currently do not use annotation scopes, but they are expected to use " +"annotation scopes in Python 3.13 when :pep:`649` is implemented." +msgstr "" + +#: reference/executionmodel.rst:198 +msgid "Annotation scopes are used in the following contexts:" +msgstr "" + +#: reference/executionmodel.rst:200 +msgid "" +"Type parameter lists for :ref:`generic type aliases `." +msgstr "" + +#: reference/executionmodel.rst:201 +msgid "" +"Type parameter lists for :ref:`generic functions `. A " +"generic function's annotations are executed within the annotation scope, but " +"its defaults and decorators are not." +msgstr "" + +#: reference/executionmodel.rst:204 +msgid "" +"Type parameter lists for :ref:`generic classes `. A generic " +"class's base classes and keyword arguments are executed within the " +"annotation scope, but its decorators are not." +msgstr "" + +#: reference/executionmodel.rst:207 +msgid "" +"The bounds and constraints for type variables (:ref:`lazily evaluated `)." +msgstr "" + +#: reference/executionmodel.rst:209 +msgid "The value of type aliases (:ref:`lazily evaluated `)." +msgstr "" + +#: reference/executionmodel.rst:211 +msgid "Annotation scopes differ from function scopes in the following ways:" +msgstr "" + +#: reference/executionmodel.rst:213 +msgid "" +"Annotation scopes have access to their enclosing class namespace. If an " +"annotation scope is immediately within a class scope, or within another " +"annotation scope that is immediately within a class scope, the code in the " +"annotation scope can use names defined in the class scope as if it were " +"executed directly within the class body. This contrasts with regular " +"functions defined within classes, which cannot access names defined in the " +"class scope." +msgstr "" + +#: reference/executionmodel.rst:219 +msgid "" +"Expressions in annotation scopes cannot contain :keyword:`yield`, ``yield " +"from``, :keyword:`await`, or :token:`:= ` expressions. (These expressions are allowed in other " +"scopes contained within the annotation scope.)" +msgstr "" + +#: reference/executionmodel.rst:223 +msgid "" +"Names defined in annotation scopes cannot be rebound with :keyword:" +"`nonlocal` statements in inner scopes. This includes only type parameters, " +"as no other syntactic elements that can appear within annotation scopes can " +"introduce new names." +msgstr "" + +#: reference/executionmodel.rst:226 +msgid "" +"While annotation scopes have an internal name, that name is not reflected in " +"the :term:`__qualname__ ` of objects defined within the " +"scope. Instead, the :attr:`!__qualname__` of such objects is as if the " +"object were defined in the enclosing scope." +msgstr "" + +#: reference/executionmodel.rst:231 +msgid "Annotation scopes were introduced in Python 3.12 as part of :pep:`695`." +msgstr "" + +#: reference/executionmodel.rst:237 +msgid "Lazy evaluation" +msgstr "" + +#: reference/executionmodel.rst:239 +msgid "" +"The values of type aliases created through the :keyword:`type` statement are " +"*lazily evaluated*. The same applies to the bounds and constraints of type " +"variables created through the :ref:`type parameter syntax `. " +"This means that they are not evaluated when the type alias or type variable " +"is created. Instead, they are only evaluated when doing so is necessary to " +"resolve an attribute access." +msgstr "" + +#: reference/executionmodel.rst:246 +msgid "Example:" +msgstr "" + +#: reference/executionmodel.rst:262 +msgid "" +"Here the exception is raised only when the ``__value__`` attribute of the " +"type alias or the ``__bound__`` attribute of the type variable is accessed." msgstr "" -#: reference/executionmodel.rst:177 +#: reference/executionmodel.rst:266 +msgid "" +"This behavior is primarily useful for references to types that have not yet " +"been defined when the type alias or type variable is created. For example, " +"lazy evaluation enables creation of mutually recursive type aliases::" +msgstr "" + +#: reference/executionmodel.rst:276 +msgid "" +"Lazily evaluated values are evaluated in :ref:`annotation scope `, which means that names that appear inside the lazily evaluated " +"value are looked up as if they were used in the immediately enclosing scope." +msgstr "" + +#: reference/executionmodel.rst:285 msgid "Builtins and restricted execution" msgstr "" -#: reference/executionmodel.rst:183 +#: reference/executionmodel.rst:291 msgid "" "Users should not touch ``__builtins__``; it is strictly an implementation " "detail. Users wanting to override values in the builtins namespace should :" @@ -239,7 +380,7 @@ msgid "" "appropriately." msgstr "" -#: reference/executionmodel.rst:188 +#: reference/executionmodel.rst:296 msgid "" "The builtins namespace associated with the execution of a code block is " "actually found by looking up the name ``__builtins__`` in its global " @@ -250,17 +391,17 @@ msgid "" "`builtins` module itself." msgstr "" -#: reference/executionmodel.rst:200 +#: reference/executionmodel.rst:308 msgid "Interaction with dynamic features" msgstr "" -#: reference/executionmodel.rst:202 +#: reference/executionmodel.rst:310 msgid "" "Name resolution of free variables occurs at runtime, not at compile time. " "This means that the following code will print 42::" msgstr "" -#: reference/executionmodel.rst:213 +#: reference/executionmodel.rst:321 msgid "" "The :func:`eval` and :func:`exec` functions do not have access to the full " "environment for resolving names. Names may be resolved in the local and " @@ -271,11 +412,11 @@ msgid "" "for both." msgstr "" -#: reference/executionmodel.rst:224 +#: reference/executionmodel.rst:332 msgid "Exceptions" msgstr "" -#: reference/executionmodel.rst:235 +#: reference/executionmodel.rst:343 msgid "" "Exceptions are a means of breaking out of the normal flow of control of a " "code block in order to handle errors or other exceptional conditions. An " @@ -284,7 +425,7 @@ msgid "" "or indirectly invoked the code block where the error occurred." msgstr "" -#: reference/executionmodel.rst:241 +#: reference/executionmodel.rst:349 msgid "" "The Python interpreter raises an exception when it detects a run-time error " "(such as division by zero). A Python program can also explicitly raise an " @@ -295,7 +436,7 @@ msgid "" "exception occurred or not in the preceding code." msgstr "" -#: reference/executionmodel.rst:251 +#: reference/executionmodel.rst:359 msgid "" "Python uses the \"termination\" model of error handling: an exception " "handler can find out what happened and continue execution at an outer level, " @@ -303,7 +444,7 @@ msgid "" "(except by re-entering the offending piece of code from the top)." msgstr "" -#: reference/executionmodel.rst:258 +#: reference/executionmodel.rst:366 msgid "" "When an exception is not handled at all, the interpreter terminates " "execution of the program, or returns to its interactive main loop. In " @@ -311,7 +452,7 @@ msgid "" "`SystemExit`." msgstr "" -#: reference/executionmodel.rst:262 +#: reference/executionmodel.rst:370 msgid "" "Exceptions are identified by class instances. The :keyword:`except` clause " "is selected depending on the class of the instance: it must reference the " @@ -320,7 +461,7 @@ msgid "" "additional information about the exceptional condition." msgstr "" -#: reference/executionmodel.rst:270 +#: reference/executionmodel.rst:378 msgid "" "Exception messages are not part of the Python API. Their contents may " "change from one version of Python to the next without warning and should not " @@ -328,17 +469,17 @@ msgid "" "interpreter." msgstr "" -#: reference/executionmodel.rst:274 +#: reference/executionmodel.rst:382 msgid "" "See also the description of the :keyword:`try` statement in section :ref:" "`try` and :keyword:`raise` statement in section :ref:`raise`." msgstr "" -#: reference/executionmodel.rst:279 +#: reference/executionmodel.rst:387 msgid "Footnotes" msgstr "" -#: reference/executionmodel.rst:280 +#: reference/executionmodel.rst:388 msgid "" "This limitation occurs because the code that is executed by these operations " "is not available at the time the module is compiled." @@ -356,7 +497,7 @@ msgstr "" msgid "block" msgstr "" -#: reference/executionmodel.rst:31 reference/executionmodel.rst:179 +#: reference/executionmodel.rst:31 reference/executionmodel.rst:287 msgid "execution" msgstr "" @@ -368,7 +509,7 @@ msgstr "" msgid "namespace" msgstr "" -#: reference/executionmodel.rst:42 reference/executionmodel.rst:101 +#: reference/executionmodel.rst:42 reference/executionmodel.rst:103 msgid "scope" msgstr "" @@ -388,66 +529,66 @@ msgstr "" msgid "import statement" msgstr "" -#: reference/executionmodel.rst:85 +#: reference/executionmodel.rst:87 msgid "free" msgstr "" -#: reference/executionmodel.rst:85 +#: reference/executionmodel.rst:87 msgid "variable" msgstr "" -#: reference/executionmodel.rst:109 +#: reference/executionmodel.rst:111 msgid "environment" msgstr "" -#: reference/executionmodel.rst:115 +#: reference/executionmodel.rst:117 msgid "NameError (built-in exception)" msgstr "" -#: reference/executionmodel.rst:115 +#: reference/executionmodel.rst:117 msgid "UnboundLocalError" msgstr "" -#: reference/executionmodel.rst:154 +#: reference/executionmodel.rst:157 msgid "module" msgstr "" -#: reference/executionmodel.rst:154 +#: reference/executionmodel.rst:157 msgid "__main__" msgstr "" -#: reference/executionmodel.rst:179 +#: reference/executionmodel.rst:287 msgid "restricted" msgstr "" -#: reference/executionmodel.rst:226 +#: reference/executionmodel.rst:334 msgid "exception" msgstr "" -#: reference/executionmodel.rst:228 +#: reference/executionmodel.rst:336 msgid "raise an exception" msgstr "" -#: reference/executionmodel.rst:228 +#: reference/executionmodel.rst:336 msgid "handle an exception" msgstr "" -#: reference/executionmodel.rst:228 +#: reference/executionmodel.rst:336 msgid "exception handler" msgstr "" -#: reference/executionmodel.rst:228 +#: reference/executionmodel.rst:336 msgid "errors" msgstr "" -#: reference/executionmodel.rst:228 +#: reference/executionmodel.rst:336 msgid "error handling" msgstr "" -#: reference/executionmodel.rst:249 +#: reference/executionmodel.rst:357 msgid "termination model" msgstr "" -#: reference/executionmodel.rst:256 +#: reference/executionmodel.rst:364 msgid "SystemExit (built-in exception)" msgstr "" diff --git a/reference/expressions.po b/reference/expressions.po index e005f8bad..675f89f4f 100644 --- a/reference/expressions.po +++ b/reference/expressions.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -643,7 +643,13 @@ msgid "" "*value* may be cleared." msgstr "" -#: reference/expressions.rst:592 +#: reference/expressions.rst:763 +msgid "" +"The second signature \\(type\\[, value\\[, traceback\\]\\]\\) is deprecated " +"and may be removed in a future version of Python." +msgstr "" + +#: reference/expressions.rst:597 msgid "" "Raises a :exc:`GeneratorExit` at the point where the generator function was " "paused. If the generator function then exits gracefully, is already closed, " @@ -654,34 +660,34 @@ msgid "" "has already exited due to an exception or normal exit." msgstr "" -#: reference/expressions.rst:603 +#: reference/expressions.rst:608 msgid "Examples" msgstr "" -#: reference/expressions.rst:605 +#: reference/expressions.rst:610 msgid "" "Here is a simple example that demonstrates the behavior of generators and " "generator functions::" msgstr "" -#: reference/expressions.rst:632 +#: reference/expressions.rst:637 msgid "" "For examples using ``yield from``, see :ref:`pep-380` in \"What's New in " "Python.\"" msgstr "" -#: reference/expressions.rst:638 +#: reference/expressions.rst:643 msgid "Asynchronous generator functions" msgstr "" -#: reference/expressions.rst:640 +#: reference/expressions.rst:645 msgid "" "The presence of a yield expression in a function or method defined using :" "keyword:`async def` further defines the function as an :term:`asynchronous " "generator` function." msgstr "" -#: reference/expressions.rst:644 +#: reference/expressions.rst:649 msgid "" "When an asynchronous generator function is called, it returns an " "asynchronous iterator known as an asynchronous generator object. That object " @@ -691,7 +697,7 @@ msgid "" "keyword:`for` statement." msgstr "" -#: reference/expressions.rst:651 +#: reference/expressions.rst:656 msgid "" "Calling one of the asynchronous generator's methods returns an :term:" "`awaitable` object, and the execution starts when this object is awaited on. " @@ -710,7 +716,7 @@ msgid "" "method." msgstr "" -#: reference/expressions.rst:666 +#: reference/expressions.rst:671 msgid "" "If an asynchronous generator happens to exit early by :keyword:`break`, the " "caller task being cancelled, or other exceptions, the generator's async " @@ -722,7 +728,7 @@ msgid "" "generator and ultimately detach it from the event loop." msgstr "" -#: reference/expressions.rst:676 +#: reference/expressions.rst:681 msgid "" "In an asynchronous generator function, yield expressions are allowed " "anywhere in a :keyword:`try` construct. However, if an asynchronous " @@ -736,7 +742,7 @@ msgid "" "finally` clauses to execute." msgstr "" -#: reference/expressions.rst:687 +#: reference/expressions.rst:692 msgid "" "To take care of finalization upon event loop termination, an event loop " "should define a *finalizer* function which takes an asynchronous generator-" @@ -749,23 +755,23 @@ msgid "" "asyncio/base_events.py`." msgstr "" -#: reference/expressions.rst:696 +#: reference/expressions.rst:701 msgid "" "The expression ``yield from `` is a syntax error when used in an " "asynchronous generator function." msgstr "" -#: reference/expressions.rst:703 +#: reference/expressions.rst:708 msgid "Asynchronous generator-iterator methods" msgstr "" -#: reference/expressions.rst:705 +#: reference/expressions.rst:710 msgid "" "This subsection describes the methods of an asynchronous generator iterator, " "which are used to control the execution of a generator function." msgstr "" -#: reference/expressions.rst:713 +#: reference/expressions.rst:718 msgid "" "Returns an awaitable which when run starts to execute the asynchronous " "generator or resumes it at the last executed yield expression. When an " @@ -780,12 +786,12 @@ msgid "" "has completed." msgstr "" -#: reference/expressions.rst:725 +#: reference/expressions.rst:730 msgid "" "This method is normally called implicitly by a :keyword:`async for` loop." msgstr "" -#: reference/expressions.rst:730 +#: reference/expressions.rst:735 msgid "" "Returns an awaitable which when run resumes the execution of the " "asynchronous generator. As with the :meth:`~generator.send()` method for a " @@ -800,7 +806,7 @@ msgid "" "receive the value." msgstr "" -#: reference/expressions.rst:746 +#: reference/expressions.rst:751 msgid "" "Returns an awaitable that raises an exception of type ``type`` at the point " "where the asynchronous generator was paused, and returns the next value " @@ -812,7 +818,7 @@ msgid "" "that exception propagates to the caller of the awaitable." msgstr "" -#: reference/expressions.rst:761 +#: reference/expressions.rst:771 msgid "" "Returns an awaitable that when run will throw a :exc:`GeneratorExit` into " "the asynchronous generator function at the point where it was paused. If the " @@ -828,25 +834,25 @@ msgid "" "will return an awaitable that does nothing." msgstr "" -#: reference/expressions.rst:777 +#: reference/expressions.rst:787 msgid "Primaries" msgstr "" -#: reference/expressions.rst:781 +#: reference/expressions.rst:791 msgid "" "Primaries represent the most tightly bound operations of the language. Their " "syntax is:" msgstr "" -#: reference/expressions.rst:791 +#: reference/expressions.rst:801 msgid "Attribute references" msgstr "" -#: reference/expressions.rst:797 +#: reference/expressions.rst:807 msgid "An attribute reference is a primary followed by a period and a name:" msgstr "" -#: reference/expressions.rst:807 +#: reference/expressions.rst:817 msgid "" "The primary must evaluate to an object of a type that supports attribute " "references, which most objects do. This object is then asked to produce the " @@ -857,11 +863,11 @@ msgid "" "evaluations of the same attribute reference may yield different objects." msgstr "" -#: reference/expressions.rst:819 +#: reference/expressions.rst:829 msgid "Subscriptions" msgstr "" -#: reference/expressions.rst:834 +#: reference/expressions.rst:844 msgid "" "The subscription of an instance of a :ref:`container class ` " "will generally select an element from the container. The subscription of a :" @@ -869,13 +875,13 @@ msgid "" "`GenericAlias ` object." msgstr "" -#: reference/expressions.rst:842 +#: reference/expressions.rst:852 msgid "" "When an object is subscripted, the interpreter will evaluate the primary and " "the expression list." msgstr "" -#: reference/expressions.rst:845 +#: reference/expressions.rst:855 msgid "" "The primary must evaluate to an object that supports subscription. An object " "may support subscription through defining one or both of :meth:`~object." @@ -885,20 +891,20 @@ msgid "" "called instead of ``__getitem__``, see :ref:`classgetitem-versus-getitem`." msgstr "" -#: reference/expressions.rst:852 +#: reference/expressions.rst:862 msgid "" "If the expression list contains at least one comma, it will evaluate to a :" "class:`tuple` containing the items of the expression list. Otherwise, the " "expression list will evaluate to the value of the list's sole member." msgstr "" -#: reference/expressions.rst:856 +#: reference/expressions.rst:866 msgid "" "For built-in objects, there are two types of objects that support " "subscription via :meth:`~object.__getitem__`:" msgstr "" -#: reference/expressions.rst:859 +#: reference/expressions.rst:869 msgid "" "Mappings. If the primary is a :term:`mapping`, the expression list must " "evaluate to an object whose value is one of the keys of the mapping, and the " @@ -906,7 +912,7 @@ msgid "" "An example of a builtin mapping class is the :class:`dict` class." msgstr "" -#: reference/expressions.rst:863 +#: reference/expressions.rst:873 msgid "" "Sequences. If the primary is a :term:`sequence`, the expression list must " "evaluate to an :class:`int` or a :class:`slice` (as discussed in the " @@ -914,7 +920,7 @@ msgid "" "`str`, :class:`list` and :class:`tuple` classes." msgstr "" -#: reference/expressions.rst:868 +#: reference/expressions.rst:878 msgid "" "The formal syntax makes no special provision for negative indices in :term:" "`sequences `. However, built-in sequences all provide a :meth:" @@ -928,25 +934,25 @@ msgid "" "support." msgstr "" -#: reference/expressions.rst:882 +#: reference/expressions.rst:892 msgid "" "A :class:`string ` is a special kind of sequence whose items are " "*characters*. A character is not a separate data type but a string of " "exactly one character." msgstr "" -#: reference/expressions.rst:890 +#: reference/expressions.rst:900 msgid "Slicings" msgstr "" -#: reference/expressions.rst:904 +#: reference/expressions.rst:914 msgid "" "A slicing selects a range of items in a sequence object (e.g., a string, " "tuple or list). Slicings may be used as expressions or as targets in " "assignment or :keyword:`del` statements. The syntax for a slicing:" msgstr "" -#: reference/expressions.rst:917 +#: reference/expressions.rst:927 msgid "" "There is ambiguity in the formal syntax here: anything that looks like an " "expression list also looks like a slice list, so any subscription can be " @@ -956,7 +962,7 @@ msgid "" "the case if the slice list contains no proper slice)." msgstr "" -#: reference/expressions.rst:929 +#: reference/expressions.rst:939 msgid "" "The semantics for a slicing are as follows. The primary is indexed (using " "the same :meth:`__getitem__` method as normal subscription) with a key that " @@ -971,23 +977,23 @@ msgid "" "expressions." msgstr "" -#: reference/expressions.rst:953 +#: reference/expressions.rst:963 msgid "Calls" msgstr "" -#: reference/expressions.rst:955 +#: reference/expressions.rst:965 msgid "" "A call calls a callable object (e.g., a :term:`function`) with a possibly " "empty series of :term:`arguments `:" msgstr "" -#: reference/expressions.rst:972 +#: reference/expressions.rst:982 msgid "" "An optional trailing comma may be present after the positional and keyword " "arguments but does not affect the semantics." msgstr "" -#: reference/expressions.rst:978 +#: reference/expressions.rst:988 msgid "" "The primary must evaluate to a callable object (user-defined functions, " "built-in functions, methods of built-in objects, class objects, methods of " @@ -997,7 +1003,7 @@ msgid "" "formal :term:`parameter` lists." msgstr "" -#: reference/expressions.rst:986 +#: reference/expressions.rst:996 msgid "" "If keyword arguments are present, they are first converted to positional " "arguments, as follows. First, a list of unfilled slots is created for the " @@ -1018,7 +1024,7 @@ msgid "" "filled slots is used as the argument list for the call." msgstr "" -#: reference/expressions.rst:1006 +#: reference/expressions.rst:1016 msgid "" "An implementation may provide built-in functions whose positional parameters " "do not have names, even if they are 'named' for the purpose of " @@ -1027,7 +1033,7 @@ msgid "" "`PyArg_ParseTuple` to parse their arguments." msgstr "" -#: reference/expressions.rst:1012 +#: reference/expressions.rst:1022 msgid "" "If there are more positional arguments than there are formal parameter " "slots, a :exc:`TypeError` exception is raised, unless a formal parameter " @@ -1036,7 +1042,7 @@ msgid "" "empty tuple if there were no excess positional arguments)." msgstr "" -#: reference/expressions.rst:1018 +#: reference/expressions.rst:1028 msgid "" "If any keyword argument does not correspond to a formal parameter name, a :" "exc:`TypeError` exception is raised, unless a formal parameter using the " @@ -1046,7 +1052,7 @@ msgid "" "(new) empty dictionary if there were no excess keyword arguments." msgstr "" -#: reference/expressions.rst:1029 +#: reference/expressions.rst:1039 msgid "" "If the syntax ``*expression`` appears in the function call, ``expression`` " "must evaluate to an :term:`iterable`. Elements from these iterables are " @@ -1056,20 +1062,20 @@ msgid "" "*y1*, ..., *yM*, *x3*, *x4*." msgstr "" -#: reference/expressions.rst:1036 +#: reference/expressions.rst:1046 msgid "" "A consequence of this is that although the ``*expression`` syntax may appear " "*after* explicit keyword arguments, it is processed *before* the keyword " "arguments (and any ``**expression`` arguments -- see below). So::" msgstr "" -#: reference/expressions.rst:1052 +#: reference/expressions.rst:1062 msgid "" "It is unusual for both keyword arguments and the ``*expression`` syntax to " "be used in the same call, so in practice this confusion does not often arise." msgstr "" -#: reference/expressions.rst:1058 +#: reference/expressions.rst:1068 msgid "" "If the syntax ``**expression`` appears in the function call, ``expression`` " "must evaluate to a :term:`mapping`, the contents of which are treated as " @@ -1078,7 +1084,7 @@ msgid "" "a :exc:`TypeError` exception is raised." msgstr "" -#: reference/expressions.rst:1064 +#: reference/expressions.rst:1074 msgid "" "When ``**expression`` is used, each key in this mapping must be a string. " "Each value from the mapping is assigned to the first formal parameter " @@ -1090,35 +1096,35 @@ msgid "" "is raised." msgstr "" -#: reference/expressions.rst:1074 +#: reference/expressions.rst:1084 msgid "" "Formal parameters using the syntax ``*identifier`` or ``**identifier`` " "cannot be used as positional argument slots or as keyword argument names." msgstr "" -#: reference/expressions.rst:1077 +#: reference/expressions.rst:1087 msgid "" "Function calls accept any number of ``*`` and ``**`` unpackings, positional " "arguments may follow iterable unpackings (``*``), and keyword arguments may " "follow dictionary unpackings (``**``). Originally proposed by :pep:`448`." msgstr "" -#: reference/expressions.rst:1083 +#: reference/expressions.rst:1093 msgid "" "A call always returns some value, possibly ``None``, unless it raises an " "exception. How this value is computed depends on the type of the callable " "object." msgstr "" -#: reference/expressions.rst:1087 +#: reference/expressions.rst:1097 msgid "If it is---" msgstr "" -#: reference/expressions.rst:1100 +#: reference/expressions.rst:1110 msgid "a user-defined function:" msgstr "" -#: reference/expressions.rst:1096 +#: reference/expressions.rst:1106 msgid "" "The code block for the function is executed, passing it the argument list. " "The first thing the code block will do is bind the formal parameters to the " @@ -1127,73 +1133,73 @@ msgid "" "value of the function call." msgstr "" -#: reference/expressions.rst:1114 +#: reference/expressions.rst:1124 msgid "a built-in function or method:" msgstr "" -#: reference/expressions.rst:1113 +#: reference/expressions.rst:1123 msgid "" "The result is up to the interpreter; see :ref:`built-in-funcs` for the " "descriptions of built-in functions and methods." msgstr "" -#: reference/expressions.rst:1121 +#: reference/expressions.rst:1131 msgid "a class object:" msgstr "" -#: reference/expressions.rst:1121 +#: reference/expressions.rst:1131 msgid "A new instance of that class is returned." msgstr "" -#: reference/expressions.rst:1131 +#: reference/expressions.rst:1141 msgid "a class instance method:" msgstr "" -#: reference/expressions.rst:1129 +#: reference/expressions.rst:1139 msgid "" "The corresponding user-defined function is called, with an argument list " "that is one longer than the argument list of the call: the instance becomes " "the first argument." msgstr "" -#: reference/expressions.rst:1140 +#: reference/expressions.rst:1150 msgid "a class instance:" msgstr "" -#: reference/expressions.rst:1138 +#: reference/expressions.rst:1148 msgid "" "The class must define a :meth:`__call__` method; the effect is then the same " "as if that method was called." msgstr "" -#: reference/expressions.rst:1927 +#: reference/expressions.rst:1937 msgid "Await expression" msgstr "" -#: reference/expressions.rst:1148 +#: reference/expressions.rst:1158 msgid "" "Suspend the execution of :term:`coroutine` on an :term:`awaitable` object. " "Can only be used inside a :term:`coroutine function`." msgstr "" -#: reference/expressions.rst:1160 +#: reference/expressions.rst:1170 msgid "The power operator" msgstr "" -#: reference/expressions.rst:1166 +#: reference/expressions.rst:1176 msgid "" "The power operator binds more tightly than unary operators on its left; it " "binds less tightly than unary operators on its right. The syntax is:" msgstr "" -#: reference/expressions.rst:1172 +#: reference/expressions.rst:1182 msgid "" "Thus, in an unparenthesized sequence of power and unary operators, the " "operators are evaluated from right to left (this does not constrain the " "evaluation order for the operands): ``-1**2`` results in ``-1``." msgstr "" -#: reference/expressions.rst:1176 +#: reference/expressions.rst:1186 msgid "" "The power operator has the same semantics as the built-in :func:`pow` " "function, when called with two arguments: it yields its left argument raised " @@ -1201,7 +1207,7 @@ msgid "" "converted to a common type, and the result is of that type." msgstr "" -#: reference/expressions.rst:1181 +#: reference/expressions.rst:1191 msgid "" "For int operands, the result has the same type as the operands unless the " "second argument is negative; in that case, all arguments are converted to " @@ -1209,40 +1215,40 @@ msgid "" "``100``, but ``10**-2`` returns ``0.01``." msgstr "" -#: reference/expressions.rst:1186 +#: reference/expressions.rst:1196 msgid "" "Raising ``0.0`` to a negative power results in a :exc:`ZeroDivisionError`. " "Raising a negative number to a fractional power results in a :class:" "`complex` number. (In earlier versions it raised a :exc:`ValueError`.)" msgstr "" -#: reference/expressions.rst:1190 +#: reference/expressions.rst:1200 msgid "" "This operation can be customized using the special :meth:`__pow__` method." msgstr "" -#: reference/expressions.rst:1195 +#: reference/expressions.rst:1205 msgid "Unary arithmetic and bitwise operations" msgstr "" -#: reference/expressions.rst:1201 +#: reference/expressions.rst:1211 msgid "All unary arithmetic and bitwise operations have the same priority:" msgstr "" -#: reference/expressions.rst:1212 +#: reference/expressions.rst:1222 msgid "" "The unary ``-`` (minus) operator yields the negation of its numeric " "argument; the operation can be overridden with the :meth:`__neg__` special " "method." msgstr "" -#: reference/expressions.rst:1220 +#: reference/expressions.rst:1230 msgid "" "The unary ``+`` (plus) operator yields its numeric argument unchanged; the " "operation can be overridden with the :meth:`__pos__` special method." msgstr "" -#: reference/expressions.rst:1227 +#: reference/expressions.rst:1237 msgid "" "The unary ``~`` (invert) operator yields the bitwise inversion of its " "integer argument. The bitwise inversion of ``x`` is defined as ``-(x+1)``. " @@ -1250,17 +1256,17 @@ msgid "" "meth:`__invert__` special method." msgstr "" -#: reference/expressions.rst:1236 +#: reference/expressions.rst:1246 msgid "" "In all three cases, if the argument does not have the proper type, a :exc:" "`TypeError` exception is raised." msgstr "" -#: reference/expressions.rst:1243 +#: reference/expressions.rst:1253 msgid "Binary arithmetic operations" msgstr "" -#: reference/expressions.rst:1247 +#: reference/expressions.rst:1257 msgid "" "The binary arithmetic operations have the conventional priority levels. " "Note that some of these operations also apply to certain non-numeric types. " @@ -1268,7 +1274,7 @@ msgid "" "multiplicative operators and one for additive operators:" msgstr "" -#: reference/expressions.rst:1262 +#: reference/expressions.rst:1272 msgid "" "The ``*`` (multiplication) operator yields the product of its arguments. " "The arguments must either both be numbers, or one argument must be an " @@ -1278,19 +1284,19 @@ msgid "" "an empty sequence." msgstr "" -#: reference/expressions.rst:1268 +#: reference/expressions.rst:1278 msgid "" "This operation can be customized using the special :meth:`__mul__` and :meth:" "`__rmul__` methods." msgstr "" -#: reference/expressions.rst:1275 +#: reference/expressions.rst:1285 msgid "" "The ``@`` (at) operator is intended to be used for matrix multiplication. " "No builtin Python types implement this operator." msgstr "" -#: reference/expressions.rst:1286 +#: reference/expressions.rst:1296 msgid "" "The ``/`` (division) and ``//`` (floor division) operators yield the " "quotient of their arguments. The numeric arguments are first converted to a " @@ -1300,13 +1306,13 @@ msgid "" "the :exc:`ZeroDivisionError` exception." msgstr "" -#: reference/expressions.rst:1293 +#: reference/expressions.rst:1303 msgid "" "This operation can be customized using the special :meth:`__truediv__` and :" "meth:`__floordiv__` methods." msgstr "" -#: reference/expressions.rst:1300 +#: reference/expressions.rst:1310 msgid "" "The ``%`` (modulo) operator yields the remainder from the division of the " "first argument by the second. The numeric arguments are first converted to " @@ -1318,7 +1324,7 @@ msgid "" "absolute value of the second operand [#]_." msgstr "" -#: reference/expressions.rst:1309 +#: reference/expressions.rst:1319 msgid "" "The floor division and modulo operators are connected by the following " "identity: ``x == (x//y)*y + (x%y)``. Floor division and modulo are also " @@ -1326,7 +1332,7 @@ msgid "" "y, x%y)``. [#]_." msgstr "" -#: reference/expressions.rst:1314 +#: reference/expressions.rst:1324 msgid "" "In addition to performing the modulo operation on numbers, the ``%`` " "operator is also overloaded by string objects to perform old-style string " @@ -1335,20 +1341,20 @@ msgid "" "formatting`." msgstr "" -#: reference/expressions.rst:1319 +#: reference/expressions.rst:1329 msgid "" "The *modulo* operation can be customized using the special :meth:`__mod__` " "method." msgstr "" -#: reference/expressions.rst:1321 +#: reference/expressions.rst:1331 msgid "" "The floor division operator, the modulo operator, and the :func:`divmod` " "function are not defined for complex numbers. Instead, convert to a " "floating point number using the :func:`abs` function if appropriate." msgstr "" -#: reference/expressions.rst:1330 +#: reference/expressions.rst:1340 msgid "" "The ``+`` (addition) operator yields the sum of its arguments. The " "arguments must either both be numbers or both be sequences of the same " @@ -1356,84 +1362,84 @@ msgid "" "then added together. In the latter case, the sequences are concatenated." msgstr "" -#: reference/expressions.rst:1335 +#: reference/expressions.rst:1345 msgid "" "This operation can be customized using the special :meth:`__add__` and :meth:" "`__radd__` methods." msgstr "" -#: reference/expressions.rst:1343 +#: reference/expressions.rst:1353 msgid "" "The ``-`` (subtraction) operator yields the difference of its arguments. " "The numeric arguments are first converted to a common type." msgstr "" -#: reference/expressions.rst:1346 +#: reference/expressions.rst:1356 msgid "" "This operation can be customized using the special :meth:`__sub__` method." msgstr "" -#: reference/expressions.rst:1352 +#: reference/expressions.rst:1362 msgid "Shifting operations" msgstr "" -#: reference/expressions.rst:1359 +#: reference/expressions.rst:1369 msgid "" "The shifting operations have lower priority than the arithmetic operations:" msgstr "" -#: reference/expressions.rst:1364 +#: reference/expressions.rst:1374 msgid "" "These operators accept integers as arguments. They shift the first argument " "to the left or right by the number of bits given by the second argument." msgstr "" -#: reference/expressions.rst:1367 +#: reference/expressions.rst:1377 msgid "" "This operation can be customized using the special :meth:`__lshift__` and :" "meth:`__rshift__` methods." msgstr "" -#: reference/expressions.rst:1372 +#: reference/expressions.rst:1382 msgid "" "A right shift by *n* bits is defined as floor division by ``pow(2,n)``. A " "left shift by *n* bits is defined as multiplication with ``pow(2,n)``." msgstr "" -#: reference/expressions.rst:1379 +#: reference/expressions.rst:1389 msgid "Binary bitwise operations" msgstr "" -#: reference/expressions.rst:1383 +#: reference/expressions.rst:1393 msgid "Each of the three bitwise operations has a different priority level:" msgstr "" -#: reference/expressions.rst:1394 +#: reference/expressions.rst:1404 msgid "" "The ``&`` operator yields the bitwise AND of its arguments, which must be " "integers or one of them must be a custom object overriding :meth:`__and__` " "or :meth:`__rand__` special methods." msgstr "" -#: reference/expressions.rst:1403 +#: reference/expressions.rst:1413 msgid "" "The ``^`` operator yields the bitwise XOR (exclusive OR) of its arguments, " "which must be integers or one of them must be a custom object overriding :" "meth:`__xor__` or :meth:`__rxor__` special methods." msgstr "" -#: reference/expressions.rst:1412 +#: reference/expressions.rst:1422 msgid "" "The ``|`` operator yields the bitwise (inclusive) OR of its arguments, which " "must be integers or one of them must be a custom object overriding :meth:" "`__or__` or :meth:`__ror__` special methods." msgstr "" -#: reference/expressions.rst:1420 +#: reference/expressions.rst:1430 msgid "Comparisons" msgstr "" -#: reference/expressions.rst:1432 +#: reference/expressions.rst:1442 msgid "" "Unlike C, all comparison operations in Python have the same priority, which " "is lower than that of any arithmetic, shifting or bitwise operation. Also " @@ -1441,14 +1447,14 @@ msgid "" "conventional in mathematics:" msgstr "" -#: reference/expressions.rst:1442 +#: reference/expressions.rst:1452 msgid "" "Comparisons yield boolean values: ``True`` or ``False``. Custom :dfn:`rich " "comparison methods` may return non-boolean values. In this case Python will " "call :func:`bool` on such value in boolean contexts." msgstr "" -#: reference/expressions.rst:1448 +#: reference/expressions.rst:1458 msgid "" "Comparisons can be chained arbitrarily, e.g., ``x < y <= z`` is equivalent " "to ``x < y and y <= z``, except that ``y`` is evaluated only once (but in " @@ -1456,7 +1462,7 @@ msgid "" "false)." msgstr "" -#: reference/expressions.rst:1452 +#: reference/expressions.rst:1462 msgid "" "Formally, if *a*, *b*, *c*, ..., *y*, *z* are expressions and *op1*, " "*op2*, ..., *opN* are comparison operators, then ``a op1 b op2 c ... y opN " @@ -1464,24 +1470,24 @@ msgid "" "each expression is evaluated at most once." msgstr "" -#: reference/expressions.rst:1457 +#: reference/expressions.rst:1467 msgid "" "Note that ``a op1 b op2 c`` doesn't imply any kind of comparison between *a* " "and *c*, so that, e.g., ``x < y > z`` is perfectly legal (though perhaps not " "pretty)." msgstr "" -#: reference/expressions.rst:1464 +#: reference/expressions.rst:1474 msgid "Value comparisons" msgstr "" -#: reference/expressions.rst:1466 +#: reference/expressions.rst:1476 msgid "" "The operators ``<``, ``>``, ``==``, ``>=``, ``<=``, and ``!=`` compare the " "values of two objects. The objects do not need to have the same type." msgstr "" -#: reference/expressions.rst:1469 +#: reference/expressions.rst:1479 msgid "" "Chapter :ref:`objects` states that objects have a value (in addition to type " "and identity). The value of an object is a rather abstract notion in " @@ -1493,7 +1499,7 @@ msgid "" "indirectly, by means of their comparison implementation." msgstr "" -#: reference/expressions.rst:1478 +#: reference/expressions.rst:1488 msgid "" "Because all types are (direct or indirect) subtypes of :class:`object`, they " "inherit the default comparison behavior from :class:`object`. Types can " @@ -1501,7 +1507,7 @@ msgid "" "methods` like :meth:`__lt__`, described in :ref:`customization`." msgstr "" -#: reference/expressions.rst:1484 +#: reference/expressions.rst:1494 msgid "" "The default behavior for equality comparison (``==`` and ``!=``) is based on " "the identity of the objects. Hence, equality comparison of instances with " @@ -1511,14 +1517,14 @@ msgid "" "``x is y`` implies ``x == y``)." msgstr "" -#: reference/expressions.rst:1491 +#: reference/expressions.rst:1501 msgid "" "A default order comparison (``<``, ``>``, ``<=``, and ``>=``) is not " "provided; an attempt raises :exc:`TypeError`. A motivation for this default " "behavior is the lack of a similar invariant as for equality." msgstr "" -#: reference/expressions.rst:1495 +#: reference/expressions.rst:1505 msgid "" "The behavior of the default equality comparison, that instances with " "different identities are always unequal, may be in contrast to what types " @@ -1527,13 +1533,13 @@ msgid "" "in fact, a number of built-in types have done that." msgstr "" -#: reference/expressions.rst:1501 +#: reference/expressions.rst:1511 msgid "" "The following list describes the comparison behavior of the most important " "built-in types." msgstr "" -#: reference/expressions.rst:1504 +#: reference/expressions.rst:1514 msgid "" "Numbers of built-in numeric types (:ref:`typesnumeric`) and of the standard " "library types :class:`fractions.Fraction` and :class:`decimal.Decimal` can " @@ -1543,7 +1549,7 @@ msgid "" "of precision." msgstr "" -#: reference/expressions.rst:1511 +#: reference/expressions.rst:1521 msgid "" "The not-a-number values ``float('NaN')`` and ``decimal.Decimal('NaN')`` are " "special. Any ordered comparison of a number to a not-a-number value is " @@ -1553,32 +1559,32 @@ msgid "" "is compliant with IEEE 754." msgstr "" -#: reference/expressions.rst:1518 +#: reference/expressions.rst:1528 msgid "" "``None`` and ``NotImplemented`` are singletons. :PEP:`8` advises that " "comparisons for singletons should always be done with ``is`` or ``is not``, " "never the equality operators." msgstr "" -#: reference/expressions.rst:1522 +#: reference/expressions.rst:1532 msgid "" "Binary sequences (instances of :class:`bytes` or :class:`bytearray`) can be " "compared within and across their types. They compare lexicographically " "using the numeric values of their elements." msgstr "" -#: reference/expressions.rst:1526 +#: reference/expressions.rst:1536 msgid "" "Strings (instances of :class:`str`) compare lexicographically using the " "numerical Unicode code points (the result of the built-in function :func:" "`ord`) of their characters. [#]_" msgstr "" -#: reference/expressions.rst:1530 +#: reference/expressions.rst:1540 msgid "Strings and binary sequences cannot be directly compared." msgstr "" -#: reference/expressions.rst:1532 +#: reference/expressions.rst:1542 msgid "" "Sequences (instances of :class:`tuple`, :class:`list`, or :class:`range`) " "can be compared only within each of their types, with the restriction that " @@ -1587,7 +1593,7 @@ msgid "" "raises :exc:`TypeError`." msgstr "" -#: reference/expressions.rst:1538 +#: reference/expressions.rst:1548 msgid "" "Sequences compare lexicographically using comparison of corresponding " "elements. The built-in containers typically assume identical objects are " @@ -1595,19 +1601,19 @@ msgid "" "objects to improve performance and to maintain their internal invariants." msgstr "" -#: reference/expressions.rst:1543 +#: reference/expressions.rst:1553 msgid "" "Lexicographical comparison between built-in collections works as follows:" msgstr "" -#: reference/expressions.rst:1545 +#: reference/expressions.rst:1555 msgid "" "For two collections to compare equal, they must be of the same type, have " "the same length, and each pair of corresponding elements must compare equal " "(for example, ``[1,2] == (1,2)`` is false because the type is not the same)." msgstr "" -#: reference/expressions.rst:1550 +#: reference/expressions.rst:1560 msgid "" "Collections that support order comparison are ordered the same as their " "first unequal elements (for example, ``[1,2,x] <= [1,2,y]`` has the same " @@ -1616,25 +1622,25 @@ msgid "" "true)." msgstr "" -#: reference/expressions.rst:1556 +#: reference/expressions.rst:1566 msgid "" "Mappings (instances of :class:`dict`) compare equal if and only if they have " "equal ``(key, value)`` pairs. Equality comparison of the keys and values " "enforces reflexivity." msgstr "" -#: reference/expressions.rst:1560 +#: reference/expressions.rst:1570 msgid "" "Order comparisons (``<``, ``>``, ``<=``, and ``>=``) raise :exc:`TypeError`." msgstr "" -#: reference/expressions.rst:1562 +#: reference/expressions.rst:1572 msgid "" "Sets (instances of :class:`set` or :class:`frozenset`) can be compared " "within and across their types." msgstr "" -#: reference/expressions.rst:1565 +#: reference/expressions.rst:1575 msgid "" "They define order comparison operators to mean subset and superset tests. " "Those relations do not define total orderings (for example, the two sets " @@ -1645,110 +1651,110 @@ msgid "" "sets as inputs)." msgstr "" -#: reference/expressions.rst:1573 +#: reference/expressions.rst:1583 msgid "Comparison of sets enforces reflexivity of its elements." msgstr "" -#: reference/expressions.rst:1575 +#: reference/expressions.rst:1585 msgid "" "Most other built-in types have no comparison methods implemented, so they " "inherit the default comparison behavior." msgstr "" -#: reference/expressions.rst:1578 +#: reference/expressions.rst:1588 msgid "" "User-defined classes that customize their comparison behavior should follow " "some consistency rules, if possible:" msgstr "" -#: reference/expressions.rst:1581 +#: reference/expressions.rst:1591 msgid "" "Equality comparison should be reflexive. In other words, identical objects " "should compare equal:" msgstr "" -#: reference/expressions.rst:1584 +#: reference/expressions.rst:1594 msgid "``x is y`` implies ``x == y``" msgstr "" -#: reference/expressions.rst:1586 +#: reference/expressions.rst:1596 msgid "" "Comparison should be symmetric. In other words, the following expressions " "should have the same result:" msgstr "" -#: reference/expressions.rst:1589 +#: reference/expressions.rst:1599 msgid "``x == y`` and ``y == x``" msgstr "" -#: reference/expressions.rst:1591 +#: reference/expressions.rst:1601 msgid "``x != y`` and ``y != x``" msgstr "" -#: reference/expressions.rst:1593 +#: reference/expressions.rst:1603 msgid "``x < y`` and ``y > x``" msgstr "" -#: reference/expressions.rst:1595 +#: reference/expressions.rst:1605 msgid "``x <= y`` and ``y >= x``" msgstr "" -#: reference/expressions.rst:1597 +#: reference/expressions.rst:1607 msgid "" "Comparison should be transitive. The following (non-exhaustive) examples " "illustrate that:" msgstr "" -#: reference/expressions.rst:1600 +#: reference/expressions.rst:1610 msgid "``x > y and y > z`` implies ``x > z``" msgstr "" -#: reference/expressions.rst:1602 +#: reference/expressions.rst:1612 msgid "``x < y and y <= z`` implies ``x < z``" msgstr "" -#: reference/expressions.rst:1604 +#: reference/expressions.rst:1614 msgid "" "Inverse comparison should result in the boolean negation. In other words, " "the following expressions should have the same result:" msgstr "" -#: reference/expressions.rst:1607 +#: reference/expressions.rst:1617 msgid "``x == y`` and ``not x != y``" msgstr "" -#: reference/expressions.rst:1609 +#: reference/expressions.rst:1619 msgid "``x < y`` and ``not x >= y`` (for total ordering)" msgstr "" -#: reference/expressions.rst:1611 +#: reference/expressions.rst:1621 msgid "``x > y`` and ``not x <= y`` (for total ordering)" msgstr "" -#: reference/expressions.rst:1613 +#: reference/expressions.rst:1623 msgid "" "The last two expressions apply to totally ordered collections (e.g. to " "sequences, but not to sets or mappings). See also the :func:`~functools." "total_ordering` decorator." msgstr "" -#: reference/expressions.rst:1617 +#: reference/expressions.rst:1627 msgid "" "The :func:`hash` result should be consistent with equality. Objects that are " "equal should either have the same hash value, or be marked as unhashable." msgstr "" -#: reference/expressions.rst:1621 +#: reference/expressions.rst:1631 msgid "" "Python does not enforce these consistency rules. In fact, the not-a-number " "values are an example for not following these rules." msgstr "" -#: reference/expressions.rst:1630 +#: reference/expressions.rst:1640 msgid "Membership test operations" msgstr "" -#: reference/expressions.rst:1632 +#: reference/expressions.rst:1642 msgid "" "The operators :keyword:`in` and :keyword:`not in` test for membership. ``x " "in s`` evaluates to ``True`` if *x* is a member of *s*, and ``False`` " @@ -1759,7 +1765,7 @@ msgid "" "expression ``x in y`` is equivalent to ``any(x is e or x == e for e in y)``." msgstr "" -#: reference/expressions.rst:1640 +#: reference/expressions.rst:1650 msgid "" "For the string and bytes types, ``x in y`` is ``True`` if and only if *x* is " "a substring of *y*. An equivalent test is ``y.find(x) != -1``. Empty " @@ -1767,14 +1773,14 @@ msgid "" "``\"\" in \"abc\"`` will return ``True``." msgstr "" -#: reference/expressions.rst:1645 +#: reference/expressions.rst:1655 msgid "" "For user-defined classes which define the :meth:`__contains__` method, ``x " "in y`` returns ``True`` if ``y.__contains__(x)`` returns a true value, and " "``False`` otherwise." msgstr "" -#: reference/expressions.rst:1649 +#: reference/expressions.rst:1659 msgid "" "For user-defined classes which do not define :meth:`__contains__` but do " "define :meth:`__iter__`, ``x in y`` is ``True`` if some value ``z``, for " @@ -1783,7 +1789,7 @@ msgid "" "as if :keyword:`in` raised that exception." msgstr "" -#: reference/expressions.rst:1655 +#: reference/expressions.rst:1665 msgid "" "Lastly, the old-style iteration protocol is tried: if a class defines :meth:" "`__getitem__`, ``x in y`` is ``True`` if and only if there is a non-negative " @@ -1792,17 +1798,17 @@ msgid "" "raised, it is as if :keyword:`in` raised that exception)." msgstr "" -#: reference/expressions.rst:1667 +#: reference/expressions.rst:1677 msgid "" "The operator :keyword:`not in` is defined to have the inverse truth value " "of :keyword:`in`." msgstr "" -#: reference/expressions.rst:1680 +#: reference/expressions.rst:1690 msgid "Identity comparisons" msgstr "" -#: reference/expressions.rst:1682 +#: reference/expressions.rst:1692 msgid "" "The operators :keyword:`is` and :keyword:`is not` test for an object's " "identity: ``x is y`` is true if and only if *x* and *y* are the same " @@ -1810,11 +1816,11 @@ msgid "" "``x is not y`` yields the inverse truth value. [#]_" msgstr "" -#: reference/expressions.rst:1694 +#: reference/expressions.rst:1704 msgid "Boolean operations" msgstr "" -#: reference/expressions.rst:1705 +#: reference/expressions.rst:1715 msgid "" "In the context of Boolean operations, and also when expressions are used by " "control flow statements, the following values are interpreted as false: " @@ -1825,25 +1831,25 @@ msgid "" "__bool__` method." msgstr "" -#: reference/expressions.rst:1714 +#: reference/expressions.rst:1724 msgid "" "The operator :keyword:`not` yields ``True`` if its argument is false, " "``False`` otherwise." msgstr "" -#: reference/expressions.rst:1719 +#: reference/expressions.rst:1729 msgid "" "The expression ``x and y`` first evaluates *x*; if *x* is false, its value " "is returned; otherwise, *y* is evaluated and the resulting value is returned." msgstr "" -#: reference/expressions.rst:1724 +#: reference/expressions.rst:1734 msgid "" "The expression ``x or y`` first evaluates *x*; if *x* is true, its value is " "returned; otherwise, *y* is evaluated and the resulting value is returned." msgstr "" -#: reference/expressions.rst:1727 +#: reference/expressions.rst:1737 msgid "" "Note that neither :keyword:`and` nor :keyword:`or` restrict the value and " "type they return to ``False`` and ``True``, but rather return the last " @@ -1854,11 +1860,11 @@ msgid "" "argument (for example, ``not 'foo'`` produces ``False`` rather than ``''``.)" msgstr "" -#: reference/expressions.rst:1743 +#: reference/expressions.rst:1753 msgid "Assignment expressions" msgstr "" -#: reference/expressions.rst:1748 +#: reference/expressions.rst:1758 msgid "" "An assignment expression (sometimes also called a \"named expression\" or " "\"walrus\") assigns an :token:`~python-grammar:expression` to an :token:" @@ -1866,15 +1872,15 @@ msgid "" "`~python-grammar:expression`." msgstr "" -#: reference/expressions.rst:1753 +#: reference/expressions.rst:1763 msgid "One common use case is when handling matched regular expressions:" msgstr "" -#: reference/expressions.rst:1760 +#: reference/expressions.rst:1770 msgid "Or, when processing a file stream in chunks:" msgstr "" -#: reference/expressions.rst:1767 +#: reference/expressions.rst:1777 msgid "" "Assignment expressions must be surrounded by parentheses when used as sub-" "expressions in slicing, conditional, lambda, keyword-argument, and " @@ -1883,36 +1889,36 @@ msgid "" "including in ``if`` and ``while`` statements." msgstr "" -#: reference/expressions.rst:1774 +#: reference/expressions.rst:1784 msgid "See :pep:`572` for more details about assignment expressions." msgstr "" -#: reference/expressions.rst:1781 +#: reference/expressions.rst:1791 msgid "Conditional expressions" msgstr "" -#: reference/expressions.rst:1793 +#: reference/expressions.rst:1803 msgid "" "Conditional expressions (sometimes called a \"ternary operator\") have the " "lowest priority of all Python operations." msgstr "" -#: reference/expressions.rst:1796 +#: reference/expressions.rst:1806 msgid "" "The expression ``x if C else y`` first evaluates the condition, *C* rather " "than *x*. If *C* is true, *x* is evaluated and its value is returned; " "otherwise, *y* is evaluated and its value is returned." msgstr "" -#: reference/expressions.rst:1800 +#: reference/expressions.rst:1810 msgid "See :pep:`308` for more details about conditional expressions." msgstr "" -#: reference/expressions.rst:1807 +#: reference/expressions.rst:1817 msgid "Lambdas" msgstr "" -#: reference/expressions.rst:1818 +#: reference/expressions.rst:1828 msgid "" "Lambda expressions (sometimes called lambda forms) are used to create " "anonymous functions. The expression ``lambda parameters: expression`` yields " @@ -1920,25 +1926,25 @@ msgid "" "defined with:" msgstr "" -#: reference/expressions.rst:1827 +#: reference/expressions.rst:1837 msgid "" "See section :ref:`function` for the syntax of parameter lists. Note that " "functions created with lambda expressions cannot contain statements or " "annotations." msgstr "" -#: reference/expressions.rst:1835 +#: reference/expressions.rst:1845 msgid "Expression lists" msgstr "" -#: reference/expressions.rst:1849 +#: reference/expressions.rst:1859 msgid "" "Except when part of a list or set display, an expression list containing at " "least one comma yields a tuple. The length of the tuple is the number of " "expressions in the list. The expressions are evaluated from left to right." msgstr "" -#: reference/expressions.rst:1858 +#: reference/expressions.rst:1868 msgid "" "An asterisk ``*`` denotes :dfn:`iterable unpacking`. Its operand must be " "an :term:`iterable`. The iterable is expanded into a sequence of items, " @@ -1946,12 +1952,12 @@ msgid "" "unpacking." msgstr "" -#: reference/expressions.rst:1863 +#: reference/expressions.rst:1873 msgid "" "Iterable unpacking in expression lists, originally proposed by :pep:`448`." msgstr "" -#: reference/expressions.rst:1868 +#: reference/expressions.rst:1878 msgid "" "The trailing comma is required only to create a single tuple (a.k.a. a " "*singleton*); it is optional in all other cases. A single expression " @@ -1960,28 +1966,28 @@ msgid "" "parentheses: ``()``.)" msgstr "" -#: reference/expressions.rst:1878 +#: reference/expressions.rst:1888 msgid "Evaluation order" msgstr "" -#: reference/expressions.rst:1882 +#: reference/expressions.rst:1892 msgid "" "Python evaluates expressions from left to right. Notice that while " "evaluating an assignment, the right-hand side is evaluated before the left-" "hand side." msgstr "" -#: reference/expressions.rst:1885 +#: reference/expressions.rst:1895 msgid "" "In the following lines, expressions will be evaluated in the arithmetic " "order of their suffixes::" msgstr "" -#: reference/expressions.rst:1899 +#: reference/expressions.rst:1909 msgid "Operator precedence" msgstr "" -#: reference/expressions.rst:1904 +#: reference/expressions.rst:1914 msgid "" "The following table summarizes the operator precedence in Python, from " "highest precedence (most binding) to lowest precedence (least binding). " @@ -1991,176 +1997,176 @@ msgid "" "group from right to left)." msgstr "" -#: reference/expressions.rst:1910 +#: reference/expressions.rst:1920 msgid "" "Note that comparisons, membership tests, and identity tests, all have the " "same precedence and have a left-to-right chaining feature as described in " "the :ref:`comparisons` section." msgstr "" -#: reference/expressions.rst:1916 +#: reference/expressions.rst:1926 msgid "Operator" msgstr "" -#: reference/expressions.rst:1916 +#: reference/expressions.rst:1926 msgid "Description" msgstr "" -#: reference/expressions.rst:1918 +#: reference/expressions.rst:1928 msgid "``(expressions...)``," msgstr "" -#: reference/expressions.rst:1920 +#: reference/expressions.rst:1930 msgid "``[expressions...]``, ``{key: value...}``, ``{expressions...}``" msgstr "" -#: reference/expressions.rst:1918 +#: reference/expressions.rst:1928 msgid "" "Binding or parenthesized expression, list display, dictionary display, set " "display" msgstr "" -#: reference/expressions.rst:1924 +#: reference/expressions.rst:1934 msgid "``x[index]``, ``x[index:index]``, ``x(arguments...)``, ``x.attribute``" msgstr "" -#: reference/expressions.rst:1924 +#: reference/expressions.rst:1934 msgid "Subscription, slicing, call, attribute reference" msgstr "" -#: reference/expressions.rst:1927 +#: reference/expressions.rst:1937 msgid ":keyword:`await x `" msgstr "" -#: reference/expressions.rst:1929 +#: reference/expressions.rst:1939 msgid "``**``" msgstr "" -#: reference/expressions.rst:1929 +#: reference/expressions.rst:1939 msgid "Exponentiation [#]_" msgstr "" -#: reference/expressions.rst:1931 +#: reference/expressions.rst:1941 msgid "``+x``, ``-x``, ``~x``" msgstr "" -#: reference/expressions.rst:1931 +#: reference/expressions.rst:1941 msgid "Positive, negative, bitwise NOT" msgstr "" -#: reference/expressions.rst:1933 +#: reference/expressions.rst:1943 msgid "``*``, ``@``, ``/``, ``//``, ``%``" msgstr "" -#: reference/expressions.rst:1933 +#: reference/expressions.rst:1943 msgid "" "Multiplication, matrix multiplication, division, floor division, remainder " "[#]_" msgstr "" -#: reference/expressions.rst:1937 +#: reference/expressions.rst:1947 msgid "``+``, ``-``" msgstr "" -#: reference/expressions.rst:1937 +#: reference/expressions.rst:1947 msgid "Addition and subtraction" msgstr "" -#: reference/expressions.rst:1939 +#: reference/expressions.rst:1949 msgid "``<<``, ``>>``" msgstr "" -#: reference/expressions.rst:1939 +#: reference/expressions.rst:1949 msgid "Shifts" msgstr "" -#: reference/expressions.rst:1941 +#: reference/expressions.rst:1951 msgid "``&``" msgstr "" -#: reference/expressions.rst:1941 +#: reference/expressions.rst:1951 msgid "Bitwise AND" msgstr "" -#: reference/expressions.rst:1943 +#: reference/expressions.rst:1953 msgid "``^``" msgstr "" -#: reference/expressions.rst:1943 +#: reference/expressions.rst:1953 msgid "Bitwise XOR" msgstr "" -#: reference/expressions.rst:1945 +#: reference/expressions.rst:1955 msgid "``|``" msgstr "" -#: reference/expressions.rst:1945 +#: reference/expressions.rst:1955 msgid "Bitwise OR" msgstr "" -#: reference/expressions.rst:1947 +#: reference/expressions.rst:1957 msgid "" ":keyword:`in`, :keyword:`not in`, :keyword:`is`, :keyword:`is not`, ``<``, " "``<=``, ``>``, ``>=``, ``!=``, ``==``" msgstr "" -#: reference/expressions.rst:1947 +#: reference/expressions.rst:1957 msgid "Comparisons, including membership tests and identity tests" msgstr "" -#: reference/expressions.rst:1951 +#: reference/expressions.rst:1961 msgid ":keyword:`not x `" msgstr "" -#: reference/expressions.rst:1951 +#: reference/expressions.rst:1961 msgid "Boolean NOT" msgstr "" -#: reference/expressions.rst:1953 +#: reference/expressions.rst:1963 msgid ":keyword:`and`" msgstr "" -#: reference/expressions.rst:1953 +#: reference/expressions.rst:1963 msgid "Boolean AND" msgstr "" -#: reference/expressions.rst:1955 +#: reference/expressions.rst:1965 msgid ":keyword:`or`" msgstr "" -#: reference/expressions.rst:1955 +#: reference/expressions.rst:1965 msgid "Boolean OR" msgstr "" -#: reference/expressions.rst:1957 +#: reference/expressions.rst:1967 msgid ":keyword:`if ` -- :keyword:`!else`" msgstr "" -#: reference/expressions.rst:1957 +#: reference/expressions.rst:1967 msgid "Conditional expression" msgstr "" -#: reference/expressions.rst:1959 +#: reference/expressions.rst:1969 msgid ":keyword:`lambda`" msgstr "" -#: reference/expressions.rst:1959 +#: reference/expressions.rst:1969 msgid "Lambda expression" msgstr "" -#: reference/expressions.rst:1961 +#: reference/expressions.rst:1971 msgid "``:=``" msgstr "" -#: reference/expressions.rst:1961 +#: reference/expressions.rst:1971 msgid "Assignment expression" msgstr "" -#: reference/expressions.rst:1966 +#: reference/expressions.rst:1976 msgid "Footnotes" msgstr "" -#: reference/expressions.rst:1967 +#: reference/expressions.rst:1977 msgid "" "While ``abs(x%y) < abs(y)`` is true mathematically, for floats it may not be " "true numerically due to roundoff. For example, and assuming a platform on " @@ -2172,7 +2178,7 @@ msgid "" "approach is more appropriate depends on the application." msgstr "" -#: reference/expressions.rst:1976 +#: reference/expressions.rst:1986 msgid "" "If x is very close to an exact integer multiple of y, it's possible for ``x//" "y`` to be one larger than ``(x-x%y)//y`` due to rounding. In such cases, " @@ -2180,7 +2186,7 @@ msgid "" "* y + x % y`` be very close to ``x``." msgstr "" -#: reference/expressions.rst:1981 +#: reference/expressions.rst:1991 msgid "" "The Unicode standard distinguishes between :dfn:`code points` (e.g. U+0041) " "and :dfn:`abstract characters` (e.g. \"LATIN CAPITAL LETTER A\"). While most " @@ -2194,7 +2200,7 @@ msgid "" "(COMBINING CEDILLA)." msgstr "" -#: reference/expressions.rst:1992 +#: reference/expressions.rst:2002 msgid "" "The comparison operators on strings compare at the level of Unicode code " "points. This may be counter-intuitive to humans. For example, ``\"\\u00C7\" " @@ -2202,13 +2208,13 @@ msgid "" "same abstract character \"LATIN CAPITAL LETTER C WITH CEDILLA\"." msgstr "" -#: reference/expressions.rst:1997 +#: reference/expressions.rst:2007 msgid "" "To compare strings at the level of abstract characters (that is, in a way " "intuitive to humans), use :func:`unicodedata.normalize`." msgstr "" -#: reference/expressions.rst:2000 +#: reference/expressions.rst:2010 msgid "" "Due to automatic garbage-collection, free lists, and the dynamic nature of " "descriptors, you may notice seemingly unusual behaviour in certain uses of " @@ -2216,20 +2222,20 @@ msgid "" "instance methods, or constants. Check their documentation for more info." msgstr "" -#: reference/expressions.rst:2005 +#: reference/expressions.rst:2015 msgid "" "The power operator ``**`` binds less tightly than an arithmetic or bitwise " "unary operator on its right, that is, ``2**-1`` is ``0.5``." msgstr "" -#: reference/expressions.rst:2008 +#: reference/expressions.rst:2018 msgid "" "The ``%`` operator is also used for string formatting; the same precedence " "applies." msgstr "" -#: reference/expressions.rst:362 reference/expressions.rst:1696 -#: reference/expressions.rst:1809 reference/expressions.rst:1837 +#: reference/expressions.rst:362 reference/expressions.rst:1706 +#: reference/expressions.rst:1819 reference/expressions.rst:1847 msgid "expression" msgstr "" @@ -2237,7 +2243,7 @@ msgstr "" msgid "BNF" msgstr "" -#: reference/expressions.rst:1197 reference/expressions.rst:1245 +#: reference/expressions.rst:1207 reference/expressions.rst:1255 msgid "arithmetic" msgstr "" @@ -2257,9 +2263,9 @@ msgstr "" msgid "identifier" msgstr "" -#: reference/expressions.rst:537 reference/expressions.rst:709 -#: reference/expressions.rst:802 reference/expressions.rst:1280 -#: reference/expressions.rst:1370 +#: reference/expressions.rst:537 reference/expressions.rst:714 +#: reference/expressions.rst:812 reference/expressions.rst:1290 +#: reference/expressions.rst:1380 msgid "exception" msgstr "" @@ -2296,10 +2302,10 @@ msgid "type" msgstr "" #: reference/expressions.rst:244 reference/expressions.rst:298 -#: reference/expressions.rst:362 reference/expressions.rst:699 -#: reference/expressions.rst:825 reference/expressions.rst:942 -#: reference/expressions.rst:1103 reference/expressions.rst:1124 -#: reference/expressions.rst:1847 +#: reference/expressions.rst:362 reference/expressions.rst:704 +#: reference/expressions.rst:835 reference/expressions.rst:952 +#: reference/expressions.rst:1113 reference/expressions.rst:1134 +#: reference/expressions.rst:1857 msgid "object" msgstr "" @@ -2307,7 +2313,7 @@ msgstr "" msgid "parenthesized form" msgstr "" -#: reference/expressions.rst:362 reference/expressions.rst:942 +#: reference/expressions.rst:362 reference/expressions.rst:952 msgid "() (parentheses)" msgstr "" @@ -2319,16 +2325,16 @@ msgstr "" msgid "empty" msgstr "" -#: reference/expressions.rst:825 reference/expressions.rst:1847 +#: reference/expressions.rst:835 reference/expressions.rst:1857 msgid "tuple" msgstr "" -#: reference/expressions.rst:1866 +#: reference/expressions.rst:1876 msgid "comma" msgstr "" #: reference/expressions.rst:244 reference/expressions.rst:298 -#: reference/expressions.rst:942 reference/expressions.rst:1837 +#: reference/expressions.rst:952 reference/expressions.rst:1847 msgid ", (comma)" msgstr "" @@ -2344,7 +2350,7 @@ msgstr "" msgid "in comprehensions" msgstr "" -#: reference/expressions.rst:1783 +#: reference/expressions.rst:1793 msgid "if" msgstr "" @@ -2352,12 +2358,12 @@ msgstr "" msgid "async for" msgstr "" -#: reference/expressions.rst:1142 +#: reference/expressions.rst:1152 msgid "await" msgstr "" -#: reference/expressions.rst:802 reference/expressions.rst:898 -#: reference/expressions.rst:1837 +#: reference/expressions.rst:812 reference/expressions.rst:908 +#: reference/expressions.rst:1847 msgid "list" msgstr "" @@ -2365,7 +2371,7 @@ msgstr "" msgid "display" msgstr "" -#: reference/expressions.rst:821 +#: reference/expressions.rst:831 msgid "[] (square brackets)" msgstr "" @@ -2373,7 +2379,7 @@ msgstr "" msgid "list expression" msgstr "" -#: reference/expressions.rst:270 reference/expressions.rst:1837 +#: reference/expressions.rst:270 reference/expressions.rst:1847 msgid "expression list" msgstr "" @@ -2389,7 +2395,7 @@ msgstr "" msgid "set expression" msgstr "" -#: reference/expressions.rst:324 reference/expressions.rst:825 +#: reference/expressions.rst:324 reference/expressions.rst:835 msgid "dictionary" msgstr "" @@ -2409,7 +2415,7 @@ msgstr "" msgid "dictionary expression" msgstr "" -#: reference/expressions.rst:892 reference/expressions.rst:1809 +#: reference/expressions.rst:902 reference/expressions.rst:1819 msgid ": (colon)" msgstr "" @@ -2421,11 +2427,11 @@ msgstr "" msgid "in dictionary displays" msgstr "" -#: reference/expressions.rst:1025 reference/expressions.rst:1854 +#: reference/expressions.rst:1035 reference/expressions.rst:1864 msgid "unpacking" msgstr "" -#: reference/expressions.rst:1055 reference/expressions.rst:1162 +#: reference/expressions.rst:1065 reference/expressions.rst:1172 msgid "**" msgstr "" @@ -2441,11 +2447,11 @@ msgstr "" msgid "generator expression" msgstr "" -#: reference/expressions.rst:1142 +#: reference/expressions.rst:1152 msgid "keyword" msgstr "" -#: reference/expressions.rst:600 +#: reference/expressions.rst:605 msgid "yield" msgstr "" @@ -2453,7 +2459,7 @@ msgstr "" msgid "from" msgstr "" -#: reference/expressions.rst:1090 reference/expressions.rst:1809 +#: reference/expressions.rst:1100 reference/expressions.rst:1819 msgid "function" msgstr "" @@ -2469,486 +2475,486 @@ msgstr "" msgid "StopIteration" msgstr "" -#: reference/expressions.rst:756 +#: reference/expressions.rst:766 msgid "GeneratorExit" msgstr "" -#: reference/expressions.rst:600 +#: reference/expressions.rst:605 msgid "examples" msgstr "" -#: reference/expressions.rst:699 +#: reference/expressions.rst:704 msgid "asynchronous-generator" msgstr "" -#: reference/expressions.rst:709 +#: reference/expressions.rst:714 msgid "StopAsyncIteration" msgstr "" -#: reference/expressions.rst:779 +#: reference/expressions.rst:789 msgid "primary" msgstr "" -#: reference/expressions.rst:793 +#: reference/expressions.rst:803 msgid "attribute" msgstr "" -#: reference/expressions.rst:793 +#: reference/expressions.rst:803 msgid "reference" msgstr "" -#: reference/expressions.rst:793 +#: reference/expressions.rst:803 msgid ". (dot)" msgstr "" -#: reference/expressions.rst:793 +#: reference/expressions.rst:803 msgid "attribute reference" msgstr "" -#: reference/expressions.rst:802 +#: reference/expressions.rst:812 msgid "AttributeError" msgstr "" -#: reference/expressions.rst:802 +#: reference/expressions.rst:812 msgid "module" msgstr "" -#: reference/expressions.rst:821 +#: reference/expressions.rst:831 msgid "subscription" msgstr "" -#: reference/expressions.rst:898 reference/expressions.rst:1661 +#: reference/expressions.rst:908 reference/expressions.rst:1671 msgid "sequence" msgstr "" -#: reference/expressions.rst:825 +#: reference/expressions.rst:835 msgid "mapping" msgstr "" -#: reference/expressions.rst:878 reference/expressions.rst:898 +#: reference/expressions.rst:888 reference/expressions.rst:908 msgid "string" msgstr "" -#: reference/expressions.rst:878 +#: reference/expressions.rst:888 msgid "item" msgstr "" -#: reference/expressions.rst:878 +#: reference/expressions.rst:888 msgid "character" msgstr "" -#: reference/expressions.rst:892 +#: reference/expressions.rst:902 msgid "slicing" msgstr "" -#: reference/expressions.rst:892 +#: reference/expressions.rst:902 msgid "slice" msgstr "" -#: reference/expressions.rst:924 +#: reference/expressions.rst:934 msgid "start (slice object attribute)" msgstr "" -#: reference/expressions.rst:924 +#: reference/expressions.rst:934 msgid "stop (slice object attribute)" msgstr "" -#: reference/expressions.rst:924 +#: reference/expressions.rst:934 msgid "step (slice object attribute)" msgstr "" -#: reference/expressions.rst:942 +#: reference/expressions.rst:952 msgid "callable" msgstr "" -#: reference/expressions.rst:1090 reference/expressions.rst:1117 -#: reference/expressions.rst:1134 +#: reference/expressions.rst:1100 reference/expressions.rst:1127 +#: reference/expressions.rst:1144 msgid "call" msgstr "" -#: reference/expressions.rst:942 +#: reference/expressions.rst:952 msgid "argument" msgstr "" -#: reference/expressions.rst:975 +#: reference/expressions.rst:985 msgid "call semantics" msgstr "" -#: reference/expressions.rst:942 +#: reference/expressions.rst:952 msgid "argument list" msgstr "" -#: reference/expressions.rst:942 +#: reference/expressions.rst:952 msgid "= (equals)" msgstr "" -#: reference/expressions.rst:1025 reference/expressions.rst:1055 +#: reference/expressions.rst:1035 reference/expressions.rst:1065 msgid "in function calls" msgstr "" -#: reference/expressions.rst:975 +#: reference/expressions.rst:985 msgid "parameter" msgstr "" -#: reference/expressions.rst:1258 reference/expressions.rst:1854 +#: reference/expressions.rst:1268 reference/expressions.rst:1864 msgid "* (asterisk)" msgstr "" -#: reference/expressions.rst:1090 +#: reference/expressions.rst:1100 msgid "user-defined" msgstr "" -#: reference/expressions.rst:1090 +#: reference/expressions.rst:1100 msgid "user-defined function" msgstr "" -#: reference/expressions.rst:1103 +#: reference/expressions.rst:1113 msgid "built-in function" msgstr "" -#: reference/expressions.rst:1103 +#: reference/expressions.rst:1113 msgid "method" msgstr "" -#: reference/expressions.rst:1103 +#: reference/expressions.rst:1113 msgid "built-in method" msgstr "" -#: reference/expressions.rst:1117 +#: reference/expressions.rst:1127 msgid "class" msgstr "" -#: reference/expressions.rst:1117 +#: reference/expressions.rst:1127 msgid "class object" msgstr "" -#: reference/expressions.rst:1124 +#: reference/expressions.rst:1134 msgid "class instance" msgstr "" -#: reference/expressions.rst:1134 +#: reference/expressions.rst:1144 msgid "instance" msgstr "" -#: reference/expressions.rst:1134 +#: reference/expressions.rst:1144 msgid "__call__() (object method)" msgstr "" -#: reference/expressions.rst:1162 +#: reference/expressions.rst:1172 msgid "power" msgstr "" -#: reference/expressions.rst:1197 reference/expressions.rst:1354 -#: reference/expressions.rst:1696 +#: reference/expressions.rst:1207 reference/expressions.rst:1364 +#: reference/expressions.rst:1706 msgid "operation" msgstr "" -#: reference/expressions.rst:1206 reference/expressions.rst:1223 -#: reference/expressions.rst:1271 reference/expressions.rst:1296 -#: reference/expressions.rst:1338 reference/expressions.rst:1390 -#: reference/expressions.rst:1407 reference/expressions.rst:1661 -#: reference/expressions.rst:1712 reference/expressions.rst:1722 -#: reference/expressions.rst:1901 +#: reference/expressions.rst:1216 reference/expressions.rst:1233 +#: reference/expressions.rst:1281 reference/expressions.rst:1306 +#: reference/expressions.rst:1348 reference/expressions.rst:1400 +#: reference/expressions.rst:1417 reference/expressions.rst:1671 +#: reference/expressions.rst:1722 reference/expressions.rst:1732 +#: reference/expressions.rst:1911 msgid "operator" msgstr "" -#: reference/expressions.rst:1197 +#: reference/expressions.rst:1207 msgid "unary" msgstr "" -#: reference/expressions.rst:1381 reference/expressions.rst:1398 -#: reference/expressions.rst:1407 +#: reference/expressions.rst:1391 reference/expressions.rst:1408 +#: reference/expressions.rst:1417 msgid "bitwise" msgstr "" -#: reference/expressions.rst:1206 +#: reference/expressions.rst:1216 msgid "negation" msgstr "" -#: reference/expressions.rst:1206 +#: reference/expressions.rst:1216 msgid "minus" msgstr "" -#: reference/expressions.rst:1338 +#: reference/expressions.rst:1348 msgid "- (minus)" msgstr "" -#: reference/expressions.rst:1215 +#: reference/expressions.rst:1225 msgid "unary operator" msgstr "" -#: reference/expressions.rst:1215 +#: reference/expressions.rst:1225 msgid "plus" msgstr "" -#: reference/expressions.rst:1325 +#: reference/expressions.rst:1335 msgid "+ (plus)" msgstr "" -#: reference/expressions.rst:1223 +#: reference/expressions.rst:1233 msgid "inversion" msgstr "" -#: reference/expressions.rst:1223 +#: reference/expressions.rst:1233 msgid "~ (tilde)" msgstr "" -#: reference/expressions.rst:1234 +#: reference/expressions.rst:1244 msgid "TypeError" msgstr "" -#: reference/expressions.rst:1381 +#: reference/expressions.rst:1391 msgid "binary" msgstr "" -#: reference/expressions.rst:1258 +#: reference/expressions.rst:1268 msgid "multiplication" msgstr "" -#: reference/expressions.rst:1271 +#: reference/expressions.rst:1281 msgid "matrix multiplication" msgstr "" -#: reference/expressions.rst:1271 +#: reference/expressions.rst:1281 msgid "@ (at)" msgstr "" -#: reference/expressions.rst:1280 +#: reference/expressions.rst:1290 msgid "ZeroDivisionError" msgstr "" -#: reference/expressions.rst:1280 +#: reference/expressions.rst:1290 msgid "division" msgstr "" -#: reference/expressions.rst:1280 +#: reference/expressions.rst:1290 msgid "/ (slash)" msgstr "" -#: reference/expressions.rst:1280 +#: reference/expressions.rst:1290 msgid "//" msgstr "" -#: reference/expressions.rst:1296 +#: reference/expressions.rst:1306 msgid "modulo" msgstr "" -#: reference/expressions.rst:1296 +#: reference/expressions.rst:1306 msgid "% (percent)" msgstr "" -#: reference/expressions.rst:1325 +#: reference/expressions.rst:1335 msgid "addition" msgstr "" -#: reference/expressions.rst:1338 +#: reference/expressions.rst:1348 msgid "binary operator" msgstr "" -#: reference/expressions.rst:1338 +#: reference/expressions.rst:1348 msgid "subtraction" msgstr "" -#: reference/expressions.rst:1354 +#: reference/expressions.rst:1364 msgid "shifting" msgstr "" -#: reference/expressions.rst:1354 +#: reference/expressions.rst:1364 msgid "<<" msgstr "" -#: reference/expressions.rst:1354 +#: reference/expressions.rst:1364 msgid ">>" msgstr "" -#: reference/expressions.rst:1370 +#: reference/expressions.rst:1380 msgid "ValueError" msgstr "" -#: reference/expressions.rst:1717 +#: reference/expressions.rst:1727 msgid "and" msgstr "" -#: reference/expressions.rst:1390 +#: reference/expressions.rst:1400 msgid "& (ampersand)" msgstr "" -#: reference/expressions.rst:1398 +#: reference/expressions.rst:1408 msgid "xor" msgstr "" -#: reference/expressions.rst:1398 +#: reference/expressions.rst:1408 msgid "exclusive" msgstr "" -#: reference/expressions.rst:1407 reference/expressions.rst:1722 +#: reference/expressions.rst:1417 reference/expressions.rst:1732 msgid "or" msgstr "" -#: reference/expressions.rst:1398 +#: reference/expressions.rst:1408 msgid "^ (caret)" msgstr "" -#: reference/expressions.rst:1407 +#: reference/expressions.rst:1417 msgid "inclusive" msgstr "" -#: reference/expressions.rst:1407 +#: reference/expressions.rst:1417 msgid "| (vertical bar)" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid "comparison" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid "C" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid "language" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid "< (less)" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid "> (greater)" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid "<=" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid ">=" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid "==" msgstr "" -#: reference/expressions.rst:1422 +#: reference/expressions.rst:1432 msgid "!=" msgstr "" -#: reference/expressions.rst:1446 +#: reference/expressions.rst:1456 msgid "chaining" msgstr "" -#: reference/expressions.rst:1446 +#: reference/expressions.rst:1456 msgid "comparisons" msgstr "" -#: reference/expressions.rst:1661 +#: reference/expressions.rst:1671 msgid "in" msgstr "" -#: reference/expressions.rst:1661 +#: reference/expressions.rst:1671 msgid "not in" msgstr "" -#: reference/expressions.rst:1661 +#: reference/expressions.rst:1671 msgid "membership" msgstr "" -#: reference/expressions.rst:1670 +#: reference/expressions.rst:1680 msgid "test" msgstr "" -#: reference/expressions.rst:1670 +#: reference/expressions.rst:1680 msgid "is" msgstr "" -#: reference/expressions.rst:1670 +#: reference/expressions.rst:1680 msgid "is not" msgstr "" -#: reference/expressions.rst:1670 +#: reference/expressions.rst:1680 msgid "identity" msgstr "" -#: reference/expressions.rst:1696 +#: reference/expressions.rst:1706 msgid "Conditional" msgstr "" -#: reference/expressions.rst:1696 +#: reference/expressions.rst:1706 msgid "Boolean" msgstr "" -#: reference/expressions.rst:1712 +#: reference/expressions.rst:1722 msgid "not" msgstr "" -#: reference/expressions.rst:1736 +#: reference/expressions.rst:1746 msgid ":= (colon equals)" msgstr "" -#: reference/expressions.rst:1736 +#: reference/expressions.rst:1746 msgid "assignment expression" msgstr "" -#: reference/expressions.rst:1736 +#: reference/expressions.rst:1746 msgid "walrus operator" msgstr "" -#: reference/expressions.rst:1736 +#: reference/expressions.rst:1746 msgid "named expression" msgstr "" -#: reference/expressions.rst:1783 +#: reference/expressions.rst:1793 msgid "conditional" msgstr "" -#: reference/expressions.rst:1783 +#: reference/expressions.rst:1793 msgid "ternary" msgstr "" -#: reference/expressions.rst:1783 +#: reference/expressions.rst:1793 msgid "conditional expression" msgstr "" -#: reference/expressions.rst:1783 +#: reference/expressions.rst:1793 msgid "else" msgstr "" -#: reference/expressions.rst:1809 +#: reference/expressions.rst:1819 msgid "lambda" msgstr "" -#: reference/expressions.rst:1809 +#: reference/expressions.rst:1819 msgid "form" msgstr "" -#: reference/expressions.rst:1809 +#: reference/expressions.rst:1819 msgid "anonymous" msgstr "" -#: reference/expressions.rst:1809 +#: reference/expressions.rst:1819 msgid "lambda expression" msgstr "" -#: reference/expressions.rst:1854 +#: reference/expressions.rst:1864 msgid "iterable" msgstr "" -#: reference/expressions.rst:1854 +#: reference/expressions.rst:1864 msgid "in expression lists" msgstr "" -#: reference/expressions.rst:1866 +#: reference/expressions.rst:1876 msgid "trailing" msgstr "" -#: reference/expressions.rst:1880 +#: reference/expressions.rst:1890 msgid "evaluation" msgstr "" -#: reference/expressions.rst:1880 +#: reference/expressions.rst:1890 msgid "order" msgstr "" -#: reference/expressions.rst:1901 +#: reference/expressions.rst:1911 msgid "precedence" msgstr "" diff --git a/reference/import.po b/reference/import.po index d9b775a53..98b860c70 100644 --- a/reference/import.po +++ b/reference/import.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -414,39 +414,43 @@ msgstr "" #: reference/import.rst:325 msgid "" "The :meth:`~importlib.abc.MetaPathFinder.find_spec` method of meta path " -"finders replaced :meth:`~importlib.abc.MetaPathFinder.find_module`, which is " -"now deprecated. While it will continue to work without change, the import " -"machinery will try it only if the finder does not implement ``find_spec()``." +"finders replaced :meth:`!find_module`, which is now deprecated. While it " +"will continue to work without change, the import machinery will try it only " +"if the finder does not implement ``find_spec()``." msgstr "" #: reference/import.rst:332 msgid "" -"Use of :meth:`~importlib.abc.MetaPathFinder.find_module` by the import " -"system now raises :exc:`ImportWarning`." +"Use of :meth:`!find_module` by the import system now raises :exc:" +"`ImportWarning`." msgstr "" -#: reference/import.rst:338 +#: reference/import.rst:336 +msgid "``find_module()`` has been removed. Use :meth:`find_spec` instead." +msgstr "" + +#: reference/import.rst:341 msgid "Loading" msgstr "" -#: reference/import.rst:340 +#: reference/import.rst:343 msgid "" "If and when a module spec is found, the import machinery will use it (and " "the loader it contains) when loading the module. Here is an approximation " "of what happens during the loading portion of import::" msgstr "" -#: reference/import.rst:374 +#: reference/import.rst:376 msgid "Note the following details:" msgstr "" -#: reference/import.rst:376 +#: reference/import.rst:378 msgid "" "If there is an existing module object with the given name in :data:`sys." "modules`, import will have already returned it." msgstr "" -#: reference/import.rst:379 +#: reference/import.rst:381 msgid "" "The module will exist in :data:`sys.modules` before the loader executes the " "module code. This is crucial because the module code may (directly or " @@ -455,7 +459,7 @@ msgid "" "best." msgstr "" -#: reference/import.rst:385 +#: reference/import.rst:387 msgid "" "If loading fails, the failing module -- and only the failing module -- gets " "removed from :data:`sys.modules`. Any module already in the :data:`sys." @@ -464,7 +468,7 @@ msgid "" "the failing module is left in :data:`sys.modules`." msgstr "" -#: reference/import.rst:391 +#: reference/import.rst:393 msgid "" "After the module is created but before execution, the import machinery sets " "the import-related module attributes (\"_init_module_attrs\" in the pseudo-" @@ -472,31 +476,31 @@ msgid "" "attrs>`." msgstr "" -#: reference/import.rst:396 +#: reference/import.rst:398 msgid "" "Module execution is the key moment of loading in which the module's " "namespace gets populated. Execution is entirely delegated to the loader, " "which gets to decide what gets populated and how." msgstr "" -#: reference/import.rst:400 +#: reference/import.rst:402 msgid "" "The module created during loading and passed to exec_module() may not be the " "one returned at the end of import [#fnlo]_." msgstr "" -#: reference/import.rst:403 +#: reference/import.rst:405 msgid "" "The import system has taken over the boilerplate responsibilities of " "loaders. These were previously performed by the :meth:`importlib.abc.Loader." "load_module` method." msgstr "" -#: reference/import.rst:409 +#: reference/import.rst:411 msgid "Loaders" msgstr "" -#: reference/import.rst:411 +#: reference/import.rst:413 msgid "" "Module loaders provide the critical function of loading: module execution. " "The import machinery calls the :meth:`importlib.abc.Loader.exec_module` " @@ -504,32 +508,32 @@ msgid "" "returned from :meth:`~importlib.abc.Loader.exec_module` is ignored." msgstr "" -#: reference/import.rst:416 +#: reference/import.rst:418 msgid "Loaders must satisfy the following requirements:" msgstr "" -#: reference/import.rst:418 +#: reference/import.rst:420 msgid "" "If the module is a Python module (as opposed to a built-in module or a " "dynamically loaded extension), the loader should execute the module's code " "in the module's global name space (``module.__dict__``)." msgstr "" -#: reference/import.rst:422 +#: reference/import.rst:424 msgid "" "If the loader cannot execute the module, it should raise an :exc:" "`ImportError`, although any other exception raised during :meth:`~importlib." "abc.Loader.exec_module` will be propagated." msgstr "" -#: reference/import.rst:426 +#: reference/import.rst:428 msgid "" "In many cases, the finder and loader can be the same object; in such cases " "the :meth:`~importlib.abc.MetaPathFinder.find_spec` method would just return " "a spec with the loader set to ``self``." msgstr "" -#: reference/import.rst:430 +#: reference/import.rst:432 msgid "" "Module loaders may opt in to creating the module object during loading by " "implementing a :meth:`~importlib.abc.Loader.create_module` method. It takes " @@ -539,18 +543,18 @@ msgid "" "will create the new module itself." msgstr "" -#: reference/import.rst:437 +#: reference/import.rst:439 msgid "The :meth:`~importlib.abc.Loader.create_module` method of loaders." msgstr "" -#: reference/import.rst:440 +#: reference/import.rst:442 msgid "" "The :meth:`~importlib.abc.Loader.load_module` method was replaced by :meth:" "`~importlib.abc.Loader.exec_module` and the import machinery assumed all the " "boilerplate responsibilities of loading." msgstr "" -#: reference/import.rst:445 +#: reference/import.rst:447 msgid "" "For compatibility with existing loaders, the import machinery will use the " "``load_module()`` method of loaders if it exists and the loader does not " @@ -558,14 +562,14 @@ msgid "" "deprecated and loaders should implement ``exec_module()`` instead." msgstr "" -#: reference/import.rst:450 +#: reference/import.rst:452 msgid "" "The ``load_module()`` method must implement all the boilerplate loading " "functionality described above in addition to executing the module. All the " "same constraints apply, with some additional clarification:" msgstr "" -#: reference/import.rst:454 +#: reference/import.rst:456 msgid "" "If there is an existing module object with the given name in :data:`sys." "modules`, the loader must use that existing module. (Otherwise, :func:" @@ -574,40 +578,40 @@ msgid "" "add it to :data:`sys.modules`." msgstr "" -#: reference/import.rst:460 +#: reference/import.rst:462 msgid "" "The module *must* exist in :data:`sys.modules` before the loader executes " "the module code, to prevent unbounded recursion or multiple loading." msgstr "" -#: reference/import.rst:464 +#: reference/import.rst:466 msgid "" "If loading fails, the loader must remove any modules it has inserted into :" "data:`sys.modules`, but it must remove **only** the failing module(s), and " "only if the loader itself has loaded the module(s) explicitly." msgstr "" -#: reference/import.rst:469 +#: reference/import.rst:471 msgid "" "A :exc:`DeprecationWarning` is raised when ``exec_module()`` is defined but " "``create_module()`` is not." msgstr "" -#: reference/import.rst:473 +#: reference/import.rst:475 msgid "" "An :exc:`ImportError` is raised when ``exec_module()`` is defined but " "``create_module()`` is not." msgstr "" -#: reference/import.rst:477 +#: reference/import.rst:479 msgid "Use of ``load_module()`` will raise :exc:`ImportWarning`." msgstr "" -#: reference/import.rst:481 +#: reference/import.rst:483 msgid "Submodules" msgstr "" -#: reference/import.rst:483 +#: reference/import.rst:485 msgid "" "When a submodule is loaded using any mechanism (e.g. ``importlib`` APIs, the " "``import`` or ``import-from`` statements, or built-in ``__import__()``) a " @@ -617,17 +621,17 @@ msgid "" "submodule. Let's say you have the following directory structure::" msgstr "" -#: reference/import.rst:494 +#: reference/import.rst:496 msgid "and ``spam/__init__.py`` has the following line in it::" msgstr "" -#: reference/import.rst:498 +#: reference/import.rst:500 msgid "" "then executing the following puts name bindings for ``foo`` and ``Foo`` in " "the ``spam`` module::" msgstr "" -#: reference/import.rst:507 +#: reference/import.rst:509 msgid "" "Given Python's familiar name binding rules this might seem surprising, but " "it's actually a fundamental feature of the import system. The invariant " @@ -636,11 +640,11 @@ msgid "" "``foo`` attribute of the former." msgstr "" -#: reference/import.rst:514 +#: reference/import.rst:516 msgid "Module spec" msgstr "" -#: reference/import.rst:516 +#: reference/import.rst:518 msgid "" "The import machinery uses a variety of information about each module during " "import, especially before loading. Most of the information is common to all " @@ -648,7 +652,7 @@ msgid "" "related information on a per-module basis." msgstr "" -#: reference/import.rst:521 +#: reference/import.rst:523 msgid "" "Using a spec during import allows state to be transferred between import " "system components, e.g. between the finder that creates the module spec and " @@ -657,18 +661,18 @@ msgid "" "a module spec the loader had that responsibility." msgstr "" -#: reference/import.rst:527 +#: reference/import.rst:529 msgid "" "The module's spec is exposed as the ``__spec__`` attribute on a module " "object. See :class:`~importlib.machinery.ModuleSpec` for details on the " "contents of the module spec." msgstr "" -#: reference/import.rst:536 +#: reference/import.rst:538 msgid "Import-related module attributes" msgstr "" -#: reference/import.rst:538 +#: reference/import.rst:540 msgid "" "The import machinery fills in these attributes on each module object during " "loading, based on the module's spec, before the loader executes the module." @@ -676,12 +680,18 @@ msgstr "" #: reference/import.rst:544 msgid "" +"It is **strongly** recommended that you rely on :attr:`__spec__` and its " +"attributes instead of any of the other individual attributes listed below." +msgstr "" + +#: reference/import.rst:550 +msgid "" "The ``__name__`` attribute must be set to the fully qualified name of the " "module. This name is used to uniquely identify the module in the import " "system." msgstr "" -#: reference/import.rst:550 +#: reference/import.rst:556 msgid "" "The ``__loader__`` attribute must be set to the loader object that the " "import machinery used when loading the module. This is mostly for " @@ -689,9 +699,22 @@ msgid "" "for example getting data associated with a loader." msgstr "" -#: reference/import.rst:557 +#: reference/import.rst:582 +msgid "" +"It is **strongly** recommended that you rely on :attr:`__spec__` instead " +"instead of this attribute." +msgstr "" + +#: reference/import.rst:564 +msgid "" +"The value of ``__loader__`` is expected to be the same as ``__spec__." +"loader``. The use of ``__loader__`` is deprecated and slated for removal in " +"Python 3.14." +msgstr "" + +#: reference/import.rst:571 msgid "" -"The module's ``__package__`` attribute must be set. Its value must be a " +"The module's ``__package__`` attribute may be set. Its value must be a " "string, but it can be the same value as its ``__name__``. When the module " "is a package, its ``__package__`` value should be set to its ``__name__``. " "When the module is not a package, ``__package__`` should be set to the empty " @@ -699,20 +722,31 @@ msgid "" "name. See :pep:`366` for further details." msgstr "" -#: reference/import.rst:565 +#: reference/import.rst:579 msgid "" "This attribute is used instead of ``__name__`` to calculate explicit " -"relative imports for main modules, as defined in :pep:`366`. It is expected " -"to have the same value as ``__spec__.parent``." +"relative imports for main modules, as defined in :pep:`366`." msgstr "" -#: reference/import.rst:569 +#: reference/import.rst:585 msgid "" "The value of ``__package__`` is expected to be the same as ``__spec__." "parent``." msgstr "" -#: reference/import.rst:575 +#: reference/import.rst:589 +msgid "" +":exc:`ImportWarning` is raised if import falls back to ``__package__`` " +"instead of :attr:`~importlib.machinery.ModuleSpec.parent`." +msgstr "" + +#: reference/import.rst:594 +msgid "" +"Raise :exc:`DeprecationWarning` instead of :exc:`ImportWarning` when falling " +"back to ``__package__``." +msgstr "" + +#: reference/import.rst:601 msgid "" "The ``__spec__`` attribute must be set to the module spec that was used when " "importing the module. Setting ``__spec__`` appropriately applies equally to :" @@ -721,19 +755,18 @@ msgid "" "cases `." msgstr "" -#: reference/import.rst:581 +#: reference/import.rst:607 msgid "" -"When ``__package__`` is not defined, ``__spec__.parent`` is used as a " -"fallback." +"When ``__spec__.parent`` is not set, ``__package__`` is used as a fallback." msgstr "" -#: reference/import.rst:586 +#: reference/import.rst:612 msgid "" "``__spec__.parent`` is used as a fallback when ``__package__`` is not " "defined." msgstr "" -#: reference/import.rst:592 +#: reference/import.rst:618 msgid "" "If the module is a package (either regular or namespace), the module " "object's ``__path__`` attribute must be set. The value must be iterable, " @@ -743,11 +776,11 @@ msgid "" "rules>`." msgstr "" -#: reference/import.rst:599 +#: reference/import.rst:625 msgid "Non-package modules should not have a ``__path__`` attribute." msgstr "" -#: reference/import.rst:604 +#: reference/import.rst:630 msgid "" "``__file__`` is optional (if set, value must be a string). It indicates the " "pathname of the file from which the module was loaded (if loaded from a " @@ -758,7 +791,7 @@ msgid "" "semantic meaning (e.g. a module loaded from a database)." msgstr "" -#: reference/import.rst:613 +#: reference/import.rst:639 msgid "" "If ``__file__`` is set then the ``__cached__`` attribute might also be set, " "which is the path to any compiled version of the code (e.g. byte-compiled " @@ -766,7 +799,7 @@ msgid "" "simply point to where the compiled file would exist (see :pep:`3147`)." msgstr "" -#: reference/import.rst:619 +#: reference/import.rst:645 msgid "" "Note that ``__cached__`` may be set even if ``__file__`` is not set. " "However, that scenario is quite atypical. Ultimately, the loader is what " @@ -776,16 +809,22 @@ msgid "" "be appropriate." msgstr "" -#: reference/import.rst:629 +#: reference/import.rst:652 +msgid "" +"It is **strongly** recommended that you rely on :attr:`__spec__` instead " +"instead of ``__cached__``." +msgstr "" + +#: reference/import.rst:658 msgid "module.__path__" msgstr "" -#: reference/import.rst:631 +#: reference/import.rst:660 msgid "" "By definition, if a module has a ``__path__`` attribute, it is a package." msgstr "" -#: reference/import.rst:633 +#: reference/import.rst:662 msgid "" "A package's ``__path__`` attribute is used during imports of its " "subpackages. Within the import machinery, it functions much the same as :" @@ -794,7 +833,7 @@ msgid "" "than :data:`sys.path`." msgstr "" -#: reference/import.rst:639 +#: reference/import.rst:668 msgid "" "``__path__`` must be an iterable of strings, but it may be empty. The same " "rules used for :data:`sys.path` also apply to a package's ``__path__``, and :" @@ -802,7 +841,7 @@ msgid "" "package's ``__path__``." msgstr "" -#: reference/import.rst:644 +#: reference/import.rst:673 msgid "" "A package's ``__init__.py`` file may set or alter the package's ``__path__`` " "attribute, and this was typically the way namespace packages were " @@ -812,18 +851,18 @@ msgid "" "``__path__`` correctly for the namespace package." msgstr "" -#: reference/import.rst:652 +#: reference/import.rst:681 msgid "Module reprs" msgstr "" -#: reference/import.rst:654 +#: reference/import.rst:683 msgid "" "By default, all modules have a usable repr, however depending on the " "attributes set above, and in the module's spec, you can more explicitly " "control the repr of module objects." msgstr "" -#: reference/import.rst:658 +#: reference/import.rst:687 msgid "" "If the module has a spec (``__spec__``), the import machinery will try to " "generate a repr from it. If that fails or there is no spec, the import " @@ -833,61 +872,45 @@ msgid "" "for whatever information is missing." msgstr "" -#: reference/import.rst:665 +#: reference/import.rst:694 msgid "Here are the exact rules used:" msgstr "" -#: reference/import.rst:667 +#: reference/import.rst:696 msgid "" "If the module has a ``__spec__`` attribute, the information in the spec is " "used to generate the repr. The \"name\", \"loader\", \"origin\", and " "\"has_location\" attributes are consulted." msgstr "" -#: reference/import.rst:671 +#: reference/import.rst:700 msgid "" "If the module has a ``__file__`` attribute, this is used as part of the " "module's repr." msgstr "" -#: reference/import.rst:674 +#: reference/import.rst:703 msgid "" "If the module has no ``__file__`` but does have a ``__loader__`` that is not " "``None``, then the loader's repr is used as part of the module's repr." msgstr "" -#: reference/import.rst:677 +#: reference/import.rst:706 msgid "Otherwise, just use the module's ``__name__`` in the repr." msgstr "" -#: reference/import.rst:679 -msgid "" -"Use of :meth:`loader.module_repr() ` has " -"been deprecated and the module spec is now used by the import machinery to " -"generate a module repr." -msgstr "" - -#: reference/import.rst:684 -msgid "" -"For backward compatibility with Python 3.3, the module repr will be " -"generated by calling the loader's :meth:`~importlib.abc.Loader.module_repr` " -"method, if defined, before trying either approach described above. However, " -"the method is deprecated." -msgstr "" - -#: reference/import.rst:691 +#: reference/import.rst:708 msgid "" -"Calling :meth:`~importlib.abc.Loader.module_repr` now occurs after trying to " -"use a module's ``__spec__`` attribute but before falling back on " -"``__file__``. Use of :meth:`~importlib.abc.Loader.module_repr` is slated to " -"stop in Python 3.12." +"Use of :meth:`!module_repr`, having been deprecated since Python 3.4, was " +"removed in Python 3.12 and is no longer called during the resolution of a " +"module's repr." msgstr "" -#: reference/import.rst:699 +#: reference/import.rst:716 msgid "Cached bytecode invalidation" msgstr "" -#: reference/import.rst:701 +#: reference/import.rst:718 msgid "" "Before Python loads cached bytecode from a ``.pyc`` file, it checks whether " "the cache is up-to-date with the source ``.py`` file. By default, Python " @@ -897,7 +920,7 @@ msgid "" "source's metadata." msgstr "" -#: reference/import.rst:708 +#: reference/import.rst:725 msgid "" "Python also supports \"hash-based\" cache files, which store a hash of the " "source file's contents rather than its metadata. There are two variants of " @@ -911,17 +934,17 @@ msgid "" "option:`--check-hash-based-pycs` flag." msgstr "" -#: reference/import.rst:719 +#: reference/import.rst:736 msgid "" "Added hash-based ``.pyc`` files. Previously, Python only supported timestamp-" "based invalidation of bytecode caches." msgstr "" -#: reference/import.rst:725 +#: reference/import.rst:742 msgid "The Path Based Finder" msgstr "" -#: reference/import.rst:730 +#: reference/import.rst:747 msgid "" "As mentioned previously, Python comes with several default meta path " "finders. One of these, called the :term:`path based finder` (:class:" @@ -930,14 +953,14 @@ msgid "" "a location to search for modules." msgstr "" -#: reference/import.rst:736 +#: reference/import.rst:753 msgid "" "The path based finder itself doesn't know how to import anything. Instead, " "it traverses the individual path entries, associating each of them with a " "path entry finder that knows how to handle that particular kind of path." msgstr "" -#: reference/import.rst:740 +#: reference/import.rst:757 msgid "" "The default set of path entry finders implement all the semantics for " "finding modules on the file system, handling special file types such as " @@ -948,14 +971,14 @@ msgid "" "from zipfiles." msgstr "" -#: reference/import.rst:747 +#: reference/import.rst:764 msgid "" "Path entries need not be limited to file system locations. They can refer " "to URLs, database queries, or any other location that can be specified as a " "string." msgstr "" -#: reference/import.rst:751 +#: reference/import.rst:768 msgid "" "The path based finder provides additional hooks and protocols so that you " "can extend and customize the types of searchable path entries. For example, " @@ -966,7 +989,7 @@ msgid "" "from the web." msgstr "" -#: reference/import.rst:759 +#: reference/import.rst:776 msgid "" "A word of warning: this section and the previous both use the term *finder*, " "distinguishing between them by using the terms :term:`meta path finder` and :" @@ -977,7 +1000,7 @@ msgid "" "process, as keyed off the :data:`sys.meta_path` traversal." msgstr "" -#: reference/import.rst:767 +#: reference/import.rst:784 msgid "" "By contrast, path entry finders are in a sense an implementation detail of " "the path based finder, and in fact, if the path based finder were to be " @@ -985,11 +1008,11 @@ msgid "" "would be invoked." msgstr "" -#: reference/import.rst:774 +#: reference/import.rst:791 msgid "Path entry finders" msgstr "" -#: reference/import.rst:782 +#: reference/import.rst:799 msgid "" "The :term:`path based finder` is responsible for finding and loading Python " "modules and packages whose location is specified with a string :term:`path " @@ -997,7 +1020,7 @@ msgid "" "not be limited to this." msgstr "" -#: reference/import.rst:787 +#: reference/import.rst:804 msgid "" "As a meta path finder, the :term:`path based finder` implements the :meth:" "`~importlib.abc.MetaPathFinder.find_spec` protocol previously described, " @@ -1005,7 +1028,7 @@ msgid "" "modules are found and loaded from the :term:`import path`." msgstr "" -#: reference/import.rst:792 +#: reference/import.rst:809 msgid "" "Three variables are used by the :term:`path based finder`, :data:`sys." "path`, :data:`sys.path_hooks` and :data:`sys.path_importer_cache`. The " @@ -1013,7 +1036,7 @@ msgid "" "additional ways that the import machinery can be customized." msgstr "" -#: reference/import.rst:797 +#: reference/import.rst:814 msgid "" ":data:`sys.path` contains a list of strings providing search locations for " "modules and packages. It is initialized from the :data:`PYTHONPATH` " @@ -1025,7 +1048,7 @@ msgid "" "other data types are ignored." msgstr "" -#: reference/import.rst:806 +#: reference/import.rst:823 msgid "" "The :term:`path based finder` is a :term:`meta path finder`, so the import " "machinery begins the :term:`import path` search by calling the path based " @@ -1037,7 +1060,7 @@ msgid "" "top level import and :data:`sys.path` is used." msgstr "" -#: reference/import.rst:815 +#: reference/import.rst:832 msgid "" "The path based finder iterates over every entry in the search path, and for " "each of these, looks for an appropriate :term:`path entry finder` (:class:" @@ -1050,10 +1073,10 @@ msgid "" "the expensive search for a particular :term:`path entry` location's :term:" "`path entry finder` need only be done once. User code is free to remove " "cache entries from :data:`sys.path_importer_cache` forcing the path based " -"finder to perform the path entry search again [#fnpic]_." +"finder to perform the path entry search again." msgstr "" -#: reference/import.rst:828 +#: reference/import.rst:845 msgid "" "If the path entry is not present in the cache, the path based finder " "iterates over every callable in :data:`sys.path_hooks`. Each of the :term:" @@ -1069,7 +1092,7 @@ msgid "" "decode the argument, it should raise :exc:`ImportError`." msgstr "" -#: reference/import.rst:842 +#: reference/import.rst:859 msgid "" "If :data:`sys.path_hooks` iteration ends with no :term:`path entry finder` " "being returned, then the path based finder's :meth:`~importlib.machinery." @@ -1079,7 +1102,7 @@ msgid "" "could not find the module." msgstr "" -#: reference/import.rst:849 +#: reference/import.rst:866 msgid "" "If a :term:`path entry finder` *is* returned by one of the :term:`path entry " "hook` callables on :data:`sys.path_hooks`, then the following protocol is " @@ -1087,7 +1110,7 @@ msgid "" "the module." msgstr "" -#: reference/import.rst:854 +#: reference/import.rst:871 msgid "" "The current working directory -- denoted by an empty string -- is handled " "slightly differently from other entries on :data:`sys.path`. First, if the " @@ -1099,18 +1122,18 @@ msgid "" "and not the empty string." msgstr "" -#: reference/import.rst:864 +#: reference/import.rst:881 msgid "Path entry finder protocol" msgstr "" -#: reference/import.rst:866 +#: reference/import.rst:883 msgid "" "In order to support imports of modules and initialized packages and also to " "contribute portions to namespace packages, path entry finders must implement " "the :meth:`~importlib.abc.PathEntryFinder.find_spec` method." msgstr "" -#: reference/import.rst:870 +#: reference/import.rst:887 msgid "" ":meth:`~importlib.abc.PathEntryFinder.find_spec` takes two arguments: the " "fully qualified name of the module being imported, and the (optional) target " @@ -1118,22 +1141,21 @@ msgid "" "spec will always have \"loader\" set (with one exception)." msgstr "" -#: reference/import.rst:875 +#: reference/import.rst:892 msgid "" "To indicate to the import machinery that the spec represents a namespace :" -"term:`portion`, the path entry finder sets \"submodule_search_locations\" to " +"term:`portion`, the path entry finder sets ``submodule_search_locations`` to " "a list containing the portion." msgstr "" -#: reference/import.rst:879 +#: reference/import.rst:896 msgid "" -":meth:`~importlib.abc.PathEntryFinder.find_spec` replaced :meth:`~importlib." -"abc.PathEntryFinder.find_loader` and :meth:`~importlib.abc.PathEntryFinder." -"find_module`, both of which are now deprecated, but will be used if " -"``find_spec()`` is not defined." +":meth:`~importlib.abc.PathEntryFinder.find_spec` replaced :meth:`!" +"find_loader` and :meth:`!find_module`, both of which are now deprecated, but " +"will be used if ``find_spec()`` is not defined." msgstr "" -#: reference/import.rst:885 +#: reference/import.rst:902 msgid "" "Older path entry finders may implement one of these two deprecated methods " "instead of ``find_spec()``. The methods are still respected for the sake of " @@ -1141,15 +1163,14 @@ msgid "" "path entry finder, the legacy methods are ignored." msgstr "" -#: reference/import.rst:890 +#: reference/import.rst:907 msgid "" -":meth:`~importlib.abc.PathEntryFinder.find_loader` takes one argument, the " -"fully qualified name of the module being imported. ``find_loader()`` " -"returns a 2-tuple where the first item is the loader and the second item is " -"a namespace :term:`portion`." +":meth:`!find_loader` takes one argument, the fully qualified name of the " +"module being imported. ``find_loader()`` returns a 2-tuple where the first " +"item is the loader and the second item is a namespace :term:`portion`." msgstr "" -#: reference/import.rst:895 +#: reference/import.rst:912 msgid "" "For backwards compatibility with other implementations of the import " "protocol, many path entry finders also support the same, traditional " @@ -1159,7 +1180,7 @@ msgid "" "initial call to the path hook)." msgstr "" -#: reference/import.rst:902 +#: reference/import.rst:919 msgid "" "The ``find_module()`` method on path entry finders is deprecated, as it does " "not allow the path entry finder to contribute portions to namespace " @@ -1168,25 +1189,28 @@ msgid "" "preference to ``find_module()``." msgstr "" -#: reference/import.rst:908 +#: reference/import.rst:925 msgid "" -"Calls to :meth:`~importlib.abc.PathEntryFinder.find_module` and :meth:" -"`~importlib.abc.PathEntryFinder.find_loader` by the import system will " -"raise :exc:`ImportWarning`." +"Calls to :meth:`!find_module` and :meth:`!find_loader` by the import system " +"will raise :exc:`ImportWarning`." msgstr "" -#: reference/import.rst:915 +#: reference/import.rst:930 +msgid "``find_module()`` and ``find_loader()`` have been removed." +msgstr "" + +#: reference/import.rst:935 msgid "Replacing the standard import system" msgstr "" -#: reference/import.rst:917 +#: reference/import.rst:937 msgid "" "The most reliable mechanism for replacing the entire import system is to " "delete the default contents of :data:`sys.meta_path`, replacing them " "entirely with a custom meta path hook." msgstr "" -#: reference/import.rst:921 +#: reference/import.rst:941 msgid "" "If it is acceptable to only alter the behaviour of import statements without " "affecting other APIs that access the import system, then replacing the " @@ -1195,7 +1219,7 @@ msgid "" "statements within that module." msgstr "" -#: reference/import.rst:927 +#: reference/import.rst:947 msgid "" "To selectively prevent the import of some modules from a hook early on the " "meta path (rather than disabling the standard import system entirely), it is " @@ -1205,11 +1229,11 @@ msgid "" "exception terminates it immediately." msgstr "" -#: reference/import.rst:937 +#: reference/import.rst:957 msgid "Package Relative Imports" msgstr "" -#: reference/import.rst:939 +#: reference/import.rst:959 msgid "" "Relative imports use leading dots. A single leading dot indicates a relative " "import, starting with the current package. Two or more leading dots indicate " @@ -1217,30 +1241,30 @@ msgid "" "after the first. For example, given the following package layout::" msgstr "" -#: reference/import.rst:955 +#: reference/import.rst:975 msgid "" "In either ``subpackage1/moduleX.py`` or ``subpackage1/__init__.py``, the " "following are valid relative imports::" msgstr "" -#: reference/import.rst:965 +#: reference/import.rst:985 msgid "" "Absolute imports may use either the ``import <>`` or ``from <> import <>`` " "syntax, but relative imports may only use the second form; the reason for " "this is that::" msgstr "" -#: reference/import.rst:971 +#: reference/import.rst:991 msgid "" "should expose ``XXX.YYY.ZZZ`` as a usable expression, but .moduleY is not a " "valid expression." msgstr "" -#: reference/import.rst:978 +#: reference/import.rst:998 msgid "Special considerations for __main__" msgstr "" -#: reference/import.rst:980 +#: reference/import.rst:1000 msgid "" "The :mod:`__main__` module is a special case relative to Python's import " "system. As noted :ref:`elsewhere `, the ``__main__`` module is " @@ -1251,17 +1275,17 @@ msgid "" "interpreter is invoked." msgstr "" -#: reference/import.rst:991 +#: reference/import.rst:1011 msgid "__main__.__spec__" msgstr "" -#: reference/import.rst:993 +#: reference/import.rst:1013 msgid "" "Depending on how :mod:`__main__` is initialized, ``__main__.__spec__`` gets " "set appropriately or to ``None``." msgstr "" -#: reference/import.rst:996 +#: reference/import.rst:1016 msgid "" "When Python is started with the :option:`-m` option, ``__spec__`` is set to " "the module spec of the corresponding module or package. ``__spec__`` is also " @@ -1269,30 +1293,30 @@ msgid "" "directory, zipfile or other :data:`sys.path` entry." msgstr "" -#: reference/import.rst:1001 +#: reference/import.rst:1021 msgid "" "In :ref:`the remaining cases ` ``__main__." "__spec__`` is set to ``None``, as the code used to populate the :mod:" "`__main__` does not correspond directly with an importable module:" msgstr "" -#: reference/import.rst:1005 +#: reference/import.rst:1025 msgid "interactive prompt" msgstr "" -#: reference/import.rst:1006 +#: reference/import.rst:1026 msgid ":option:`-c` option" msgstr "" -#: reference/import.rst:1007 +#: reference/import.rst:1027 msgid "running from stdin" msgstr "" -#: reference/import.rst:1008 +#: reference/import.rst:1028 msgid "running directly from a source or bytecode file" msgstr "" -#: reference/import.rst:1010 +#: reference/import.rst:1030 msgid "" "Note that ``__main__.__spec__`` is always ``None`` in the last case, *even " "if* the file could technically be imported directly as a module instead. Use " @@ -1300,7 +1324,7 @@ msgid "" "`__main__`." msgstr "" -#: reference/import.rst:1015 +#: reference/import.rst:1035 msgid "" "Note also that even when ``__main__`` corresponds with an importable module " "and ``__main__.__spec__`` is set accordingly, they're still considered " @@ -1309,11 +1333,11 @@ msgid "" "populate the ``__main__`` namespace, and not during normal import." msgstr "" -#: reference/import.rst:1023 +#: reference/import.rst:1043 msgid "References" msgstr "" -#: reference/import.rst:1025 +#: reference/import.rst:1045 msgid "" "The import machinery has evolved considerably since Python's early days. " "The original `specification for packages ` for " -"Python 3.3. :pep:`420` also introduced the :meth:`find_loader` protocol as " -"an alternative to :meth:`find_module`." +"Python 3.3. :pep:`420` also introduced the :meth:`!find_loader` protocol as " +"an alternative to :meth:`!find_module`." msgstr "" -#: reference/import.rst:1037 +#: reference/import.rst:1057 msgid "" ":pep:`366` describes the addition of the ``__package__`` attribute for " "explicit relative imports in main modules." msgstr "" -#: reference/import.rst:1040 +#: reference/import.rst:1060 msgid "" ":pep:`328` introduced absolute and explicit relative imports and initially " "proposed ``__name__`` for semantics :pep:`366` would eventually specify for " "``__package__``." msgstr "" -#: reference/import.rst:1044 +#: reference/import.rst:1064 msgid ":pep:`338` defines executing modules as scripts." msgstr "" -#: reference/import.rst:1046 +#: reference/import.rst:1066 msgid "" ":pep:`451` adds the encapsulation of per-module import state in spec " "objects. It also off-loads most of the boilerplate responsibilities of " @@ -1360,15 +1384,15 @@ msgid "" "finders and loaders." msgstr "" -#: reference/import.rst:1053 +#: reference/import.rst:1073 msgid "Footnotes" msgstr "" -#: reference/import.rst:1054 +#: reference/import.rst:1074 msgid "See :class:`types.ModuleType`." msgstr "" -#: reference/import.rst:1056 +#: reference/import.rst:1076 msgid "" "The importlib implementation avoids using the return value directly. " "Instead, it gets the module object by looking the module name up in :data:" @@ -1377,14 +1401,6 @@ msgid "" "behavior that is not guaranteed to work in other Python implementations." msgstr "" -#: reference/import.rst:1063 -msgid "" -"In legacy code, it is possible to find instances of :class:`imp." -"NullImporter` in the :data:`sys.path_importer_cache`. It is recommended " -"that code be changed to use ``None`` instead. See :ref:`portingpythoncode` " -"for more details." -msgstr "" - #: reference/import.rst:8 msgid "import machinery" msgstr "" @@ -1457,22 +1473,22 @@ msgstr "" msgid "find_spec" msgstr "" -#: reference/import.rst:727 +#: reference/import.rst:744 msgid "path based finder" msgstr "" -#: reference/import.rst:776 +#: reference/import.rst:793 msgid "sys.path" msgstr "" -#: reference/import.rst:776 +#: reference/import.rst:793 msgid "sys.path_hooks" msgstr "" -#: reference/import.rst:776 +#: reference/import.rst:793 msgid "sys.path_importer_cache" msgstr "" -#: reference/import.rst:776 +#: reference/import.rst:793 msgid "PYTHONPATH" msgstr "" diff --git a/reference/lexical_analysis.po b/reference/lexical_analysis.po index 0560f41bc..c8a93d930 100644 --- a/reference/lexical_analysis.po +++ b/reference/lexical_analysis.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -376,7 +376,7 @@ msgstr "" #: reference/lexical_analysis.rst:317 msgid "" "*Other_ID_Start* - explicit list of characters in `PropList.txt `_ to support backwards " +"unicode.org/Public/15.0.0/ucd/PropList.txt>`_ to support backwards " "compatibility" msgstr "" @@ -393,7 +393,7 @@ msgstr "" #: reference/lexical_analysis.rst:325 msgid "" "A non-normative HTML file listing all valid identifier characters for " -"Unicode 14.0.0 can be found at https://www.unicode.org/Public/14.0.0/ucd/" +"Unicode 15.0.0 can be found at https://www.unicode.org/Public/15.0.0/ucd/" "DerivedCoreProperties.txt" msgstr "" @@ -415,78 +415,87 @@ msgstr "" #: reference/lexical_analysis.rst:363 msgid "" "Some identifiers are only reserved under specific contexts. These are known " -"as *soft keywords*. The identifiers ``match``, ``case`` and ``_`` can " -"syntactically act as keywords in contexts related to the pattern matching " -"statement, but this distinction is done at the parser level, not when " -"tokenizing." +"as *soft keywords*. The identifiers ``match``, ``case``, ``type`` and ``_`` " +"can syntactically act as keywords in certain contexts, but this distinction " +"is done at the parser level, not when tokenizing." msgstr "" -#: reference/lexical_analysis.rst:369 +#: reference/lexical_analysis.rst:368 msgid "" -"As soft keywords, their use with pattern matching is possible while still " -"preserving compatibility with existing code that uses ``match``, ``case`` " -"and ``_`` as identifier names." +"As soft keywords, their use in the grammar is possible while still " +"preserving compatibility with existing code that uses these names as " +"identifier names." msgstr "" -#: reference/lexical_analysis.rst:380 +#: reference/lexical_analysis.rst:372 +msgid "" +"``match``, ``case``, and ``_`` are used in the :keyword:`match` statement. " +"``type`` is used in the :keyword:`type` statement." +msgstr "" + +#: reference/lexical_analysis.rst:375 +msgid "``type`` is now a soft keyword." +msgstr "" + +#: reference/lexical_analysis.rst:384 msgid "Reserved classes of identifiers" msgstr "" -#: reference/lexical_analysis.rst:382 +#: reference/lexical_analysis.rst:386 msgid "" "Certain classes of identifiers (besides keywords) have special meanings. " "These classes are identified by the patterns of leading and trailing " "underscore characters:" msgstr "" -#: reference/lexical_analysis.rst:387 +#: reference/lexical_analysis.rst:391 msgid "``_*``" msgstr "" -#: reference/lexical_analysis.rst:387 +#: reference/lexical_analysis.rst:391 msgid "Not imported by ``from module import *``." msgstr "" -#: reference/lexical_analysis.rst:408 +#: reference/lexical_analysis.rst:412 msgid "``_``" msgstr "" -#: reference/lexical_analysis.rst:390 +#: reference/lexical_analysis.rst:394 msgid "" "In a ``case`` pattern within a :keyword:`match` statement, ``_`` is a :ref:" "`soft keyword ` that denotes a :ref:`wildcard `." msgstr "" -#: reference/lexical_analysis.rst:394 +#: reference/lexical_analysis.rst:398 msgid "" "Separately, the interactive interpreter makes the result of the last " "evaluation available in the variable ``_``. (It is stored in the :mod:" "`builtins` module, alongside built-in functions like ``print``.)" msgstr "" -#: reference/lexical_analysis.rst:399 +#: reference/lexical_analysis.rst:403 msgid "" "Elsewhere, ``_`` is a regular identifier. It is often used to name " "\"special\" items, but it is not special to Python itself." msgstr "" -#: reference/lexical_analysis.rst:404 +#: reference/lexical_analysis.rst:408 msgid "" "The name ``_`` is often used in conjunction with internationalization; refer " "to the documentation for the :mod:`gettext` module for more information on " "this convention." msgstr "" -#: reference/lexical_analysis.rst:408 +#: reference/lexical_analysis.rst:412 msgid "It is also commonly used for unused variables." msgstr "" -#: reference/lexical_analysis.rst:416 +#: reference/lexical_analysis.rst:420 msgid "``__*__``" msgstr "" -#: reference/lexical_analysis.rst:411 +#: reference/lexical_analysis.rst:415 msgid "" "System-defined names, informally known as \"dunder\" names. These names are " "defined by the interpreter and its implementation (including the standard " @@ -496,11 +505,11 @@ msgid "" "explicitly documented use, is subject to breakage without warning." msgstr "" -#: reference/lexical_analysis.rst:423 +#: reference/lexical_analysis.rst:427 msgid "``__*``" msgstr "" -#: reference/lexical_analysis.rst:419 +#: reference/lexical_analysis.rst:423 msgid "" "Class-private names. Names in this category, when used within the context " "of a class definition, are re-written to use a mangled form to help avoid " @@ -508,23 +517,23 @@ msgid "" "section :ref:`atom-identifiers`." msgstr "" -#: reference/lexical_analysis.rst:428 +#: reference/lexical_analysis.rst:432 msgid "Literals" msgstr "" -#: reference/lexical_analysis.rst:432 +#: reference/lexical_analysis.rst:436 msgid "Literals are notations for constant values of some built-in types." msgstr "" -#: reference/lexical_analysis.rst:443 +#: reference/lexical_analysis.rst:447 msgid "String and Bytes literals" msgstr "" -#: reference/lexical_analysis.rst:445 +#: reference/lexical_analysis.rst:449 msgid "String literals are described by the following lexical definitions:" msgstr "" -#: reference/lexical_analysis.rst:470 +#: reference/lexical_analysis.rst:474 msgid "" "One syntactic restriction not indicated by these productions is that " "whitespace is not allowed between the :token:`~python-grammar:stringprefix` " @@ -534,17 +543,20 @@ msgid "" "`encodings`." msgstr "" -#: reference/lexical_analysis.rst:480 +#: reference/lexical_analysis.rst:484 msgid "" "In plain English: Both types of literals can be enclosed in matching single " "quotes (``'``) or double quotes (``\"``). They can also be enclosed in " "matching groups of three single or double quotes (these are generally " -"referred to as *triple-quoted strings*). The backslash (``\\``) character " -"is used to escape characters that otherwise have a special meaning, such as " -"newline, backslash itself, or the quote character." +"referred to as *triple-quoted strings*). The backslash (``\\``) character is " +"used to give special meaning to otherwise ordinary characters like ``n``, " +"which means 'newline' when escaped (``\\n``). It can also be used to escape " +"characters that otherwise have a special meaning, such as newline, backslash " +"itself, or the quote character. See :ref:`escape sequences ` below for examples." msgstr "" -#: reference/lexical_analysis.rst:491 +#: reference/lexical_analysis.rst:497 msgid "" "Bytes literals are always prefixed with ``'b'`` or ``'B'``; they produce an " "instance of the :class:`bytes` type instead of the :class:`str` type. They " @@ -552,7 +564,7 @@ msgid "" "greater must be expressed with escapes." msgstr "" -#: reference/lexical_analysis.rst:500 +#: reference/lexical_analysis.rst:506 msgid "" "Both string and bytes literals may optionally be prefixed with a letter " "``'r'`` or ``'R'``; such strings are called :dfn:`raw strings` and treat " @@ -562,20 +574,20 @@ msgid "" "3.x's the ``'ur'`` syntax is not supported." msgstr "" -#: reference/lexical_analysis.rst:507 +#: reference/lexical_analysis.rst:513 msgid "" "The ``'rb'`` prefix of raw bytes literals has been added as a synonym of " "``'br'``." msgstr "" -#: reference/lexical_analysis.rst:511 +#: reference/lexical_analysis.rst:517 msgid "" "Support for the unicode legacy literal (``u'value'``) was reintroduced to " "simplify the maintenance of dual Python 2.x and 3.x codebases. See :pep:" "`414` for more information." msgstr "" -#: reference/lexical_analysis.rst:520 +#: reference/lexical_analysis.rst:526 msgid "" "A string literal with ``'f'`` or ``'F'`` in its prefix is a :dfn:`formatted " "string literal`; see :ref:`f-strings`. The ``'f'`` may be combined with " @@ -583,7 +595,7 @@ msgid "" "are possible, but formatted bytes literals are not." msgstr "" -#: reference/lexical_analysis.rst:525 +#: reference/lexical_analysis.rst:531 msgid "" "In triple-quoted literals, unescaped newlines and quotes are allowed (and " "are retained), except that three unescaped quotes in a row terminate the " @@ -591,233 +603,243 @@ msgid "" "either ``'`` or ``\"``.)" msgstr "" -#: reference/lexical_analysis.rst:544 +#: reference/lexical_analysis.rst:554 +msgid "Escape sequences" +msgstr "" + +#: reference/lexical_analysis.rst:556 msgid "" "Unless an ``'r'`` or ``'R'`` prefix is present, escape sequences in string " "and bytes literals are interpreted according to rules similar to those used " "by Standard C. The recognized escape sequences are:" msgstr "" -#: reference/lexical_analysis.rst:549 reference/lexical_analysis.rst:582 +#: reference/lexical_analysis.rst:561 reference/lexical_analysis.rst:594 msgid "Escape Sequence" msgstr "" -#: reference/lexical_analysis.rst:549 reference/lexical_analysis.rst:582 +#: reference/lexical_analysis.rst:561 reference/lexical_analysis.rst:594 msgid "Meaning" msgstr "" -#: reference/lexical_analysis.rst:549 reference/lexical_analysis.rst:582 +#: reference/lexical_analysis.rst:561 reference/lexical_analysis.rst:594 msgid "Notes" msgstr "" -#: reference/lexical_analysis.rst:551 +#: reference/lexical_analysis.rst:563 msgid "``\\``\\ " msgstr "" -#: reference/lexical_analysis.rst:551 +#: reference/lexical_analysis.rst:563 msgid "Backslash and newline ignored" msgstr "" -#: reference/lexical_analysis.rst:551 +#: reference/lexical_analysis.rst:563 msgid "\\(1)" msgstr "" -#: reference/lexical_analysis.rst:553 +#: reference/lexical_analysis.rst:565 msgid "``\\\\``" msgstr "" -#: reference/lexical_analysis.rst:553 +#: reference/lexical_analysis.rst:565 msgid "Backslash (``\\``)" msgstr "" -#: reference/lexical_analysis.rst:555 +#: reference/lexical_analysis.rst:567 msgid "``\\'``" msgstr "" -#: reference/lexical_analysis.rst:555 +#: reference/lexical_analysis.rst:567 msgid "Single quote (``'``)" msgstr "" -#: reference/lexical_analysis.rst:557 +#: reference/lexical_analysis.rst:569 msgid "``\\\"``" msgstr "" -#: reference/lexical_analysis.rst:557 +#: reference/lexical_analysis.rst:569 msgid "Double quote (``\"``)" msgstr "" -#: reference/lexical_analysis.rst:559 +#: reference/lexical_analysis.rst:571 msgid "``\\a``" msgstr "" -#: reference/lexical_analysis.rst:559 +#: reference/lexical_analysis.rst:571 msgid "ASCII Bell (BEL)" msgstr "" -#: reference/lexical_analysis.rst:561 +#: reference/lexical_analysis.rst:573 msgid "``\\b``" msgstr "" -#: reference/lexical_analysis.rst:561 +#: reference/lexical_analysis.rst:573 msgid "ASCII Backspace (BS)" msgstr "" -#: reference/lexical_analysis.rst:563 +#: reference/lexical_analysis.rst:575 msgid "``\\f``" msgstr "" -#: reference/lexical_analysis.rst:563 +#: reference/lexical_analysis.rst:575 msgid "ASCII Formfeed (FF)" msgstr "" -#: reference/lexical_analysis.rst:565 +#: reference/lexical_analysis.rst:577 msgid "``\\n``" msgstr "" -#: reference/lexical_analysis.rst:565 +#: reference/lexical_analysis.rst:577 msgid "ASCII Linefeed (LF)" msgstr "" -#: reference/lexical_analysis.rst:567 +#: reference/lexical_analysis.rst:579 msgid "``\\r``" msgstr "" -#: reference/lexical_analysis.rst:567 +#: reference/lexical_analysis.rst:579 msgid "ASCII Carriage Return (CR)" msgstr "" -#: reference/lexical_analysis.rst:569 +#: reference/lexical_analysis.rst:581 msgid "``\\t``" msgstr "" -#: reference/lexical_analysis.rst:569 +#: reference/lexical_analysis.rst:581 msgid "ASCII Horizontal Tab (TAB)" msgstr "" -#: reference/lexical_analysis.rst:571 +#: reference/lexical_analysis.rst:583 msgid "``\\v``" msgstr "" -#: reference/lexical_analysis.rst:571 +#: reference/lexical_analysis.rst:583 msgid "ASCII Vertical Tab (VT)" msgstr "" -#: reference/lexical_analysis.rst:573 +#: reference/lexical_analysis.rst:585 msgid "``\\ooo``" msgstr "" -#: reference/lexical_analysis.rst:573 +#: reference/lexical_analysis.rst:585 msgid "Character with octal value *ooo*" msgstr "" -#: reference/lexical_analysis.rst:573 +#: reference/lexical_analysis.rst:585 msgid "(2,4)" msgstr "" -#: reference/lexical_analysis.rst:576 +#: reference/lexical_analysis.rst:588 msgid "``\\xhh``" msgstr "" -#: reference/lexical_analysis.rst:576 +#: reference/lexical_analysis.rst:588 msgid "Character with hex value *hh*" msgstr "" -#: reference/lexical_analysis.rst:576 +#: reference/lexical_analysis.rst:588 msgid "(3,4)" msgstr "" -#: reference/lexical_analysis.rst:579 +#: reference/lexical_analysis.rst:591 msgid "Escape sequences only recognized in string literals are:" msgstr "" -#: reference/lexical_analysis.rst:584 +#: reference/lexical_analysis.rst:596 msgid "``\\N{name}``" msgstr "" -#: reference/lexical_analysis.rst:584 +#: reference/lexical_analysis.rst:596 msgid "Character named *name* in the Unicode database" msgstr "" -#: reference/lexical_analysis.rst:584 +#: reference/lexical_analysis.rst:596 msgid "\\(5)" msgstr "" -#: reference/lexical_analysis.rst:587 +#: reference/lexical_analysis.rst:599 msgid "``\\uxxxx``" msgstr "" -#: reference/lexical_analysis.rst:587 +#: reference/lexical_analysis.rst:599 msgid "Character with 16-bit hex value *xxxx*" msgstr "" -#: reference/lexical_analysis.rst:587 +#: reference/lexical_analysis.rst:599 msgid "\\(6)" msgstr "" -#: reference/lexical_analysis.rst:590 +#: reference/lexical_analysis.rst:602 msgid "``\\Uxxxxxxxx``" msgstr "" -#: reference/lexical_analysis.rst:590 +#: reference/lexical_analysis.rst:602 msgid "Character with 32-bit hex value *xxxxxxxx*" msgstr "" -#: reference/lexical_analysis.rst:590 +#: reference/lexical_analysis.rst:602 msgid "\\(7)" msgstr "" -#: reference/lexical_analysis.rst:594 +#: reference/lexical_analysis.rst:606 msgid "Notes:" msgstr "" -#: reference/lexical_analysis.rst:597 +#: reference/lexical_analysis.rst:609 msgid "A backslash can be added at the end of a line to ignore the newline::" msgstr "" -#: reference/lexical_analysis.rst:603 +#: reference/lexical_analysis.rst:615 msgid "" "The same result can be achieved using :ref:`triple-quoted strings " "`, or parentheses and :ref:`string literal concatenation `." msgstr "" -#: reference/lexical_analysis.rst:608 +#: reference/lexical_analysis.rst:620 msgid "As in Standard C, up to three octal digits are accepted." msgstr "" -#: reference/lexical_analysis.rst:610 +#: reference/lexical_analysis.rst:622 +msgid "" +"Octal escapes with value larger than ``0o377`` produce a :exc:" +"`DeprecationWarning`." +msgstr "" + +#: reference/lexical_analysis.rst:626 msgid "" "Octal escapes with value larger than ``0o377`` produce a :exc:" -"`DeprecationWarning`. In a future Python version they will be a :exc:" -"`SyntaxWarning` and eventually a :exc:`SyntaxError`." +"`SyntaxWarning`. In a future Python version they will be eventually a :exc:" +"`SyntaxError`." msgstr "" -#: reference/lexical_analysis.rst:616 +#: reference/lexical_analysis.rst:632 msgid "Unlike in Standard C, exactly two hex digits are required." msgstr "" -#: reference/lexical_analysis.rst:619 +#: reference/lexical_analysis.rst:635 msgid "" "In a bytes literal, hexadecimal and octal escapes denote the byte with the " "given value. In a string literal, these escapes denote a Unicode character " "with the given value." msgstr "" -#: reference/lexical_analysis.rst:624 +#: reference/lexical_analysis.rst:640 msgid "Support for name aliases [#]_ has been added." msgstr "" -#: reference/lexical_analysis.rst:628 +#: reference/lexical_analysis.rst:644 msgid "Exactly four hex digits are required." msgstr "" -#: reference/lexical_analysis.rst:631 +#: reference/lexical_analysis.rst:647 msgid "" "Any Unicode character can be encoded this way. Exactly eight hex digits are " "required." msgstr "" -#: reference/lexical_analysis.rst:637 +#: reference/lexical_analysis.rst:653 msgid "" "Unlike Standard C, all unrecognized escape sequences are left in the string " "unchanged, i.e., *the backslash is left in the result*. (This behavior is " @@ -827,14 +849,17 @@ msgid "" "category of unrecognized escapes for bytes literals." msgstr "" -#: reference/lexical_analysis.rst:644 +#: reference/lexical_analysis.rst:660 +msgid "Unrecognized escape sequences produce a :exc:`DeprecationWarning`." +msgstr "" + +#: reference/lexical_analysis.rst:663 msgid "" -"Unrecognized escape sequences produce a :exc:`DeprecationWarning`. In a " -"future Python version they will be a :exc:`SyntaxWarning` and eventually a :" -"exc:`SyntaxError`." +"Unrecognized escape sequences produce a :exc:`SyntaxWarning`. In a future " +"Python version they will be eventually a :exc:`SyntaxError`." msgstr "" -#: reference/lexical_analysis.rst:649 +#: reference/lexical_analysis.rst:667 msgid "" "Even in a raw literal, quotes can be escaped with a backslash, but the " "backslash remains in the result; for example, ``r\"\\\"\"`` is a valid " @@ -847,11 +872,11 @@ msgid "" "continuation." msgstr "" -#: reference/lexical_analysis.rst:662 +#: reference/lexical_analysis.rst:680 msgid "String literal concatenation" msgstr "" -#: reference/lexical_analysis.rst:664 +#: reference/lexical_analysis.rst:682 msgid "" "Multiple adjacent string or bytes literals (delimited by whitespace), " "possibly using different quoting conventions, are allowed, and their meaning " @@ -861,7 +886,7 @@ msgid "" "lines, or even to add comments to parts of strings, for example::" msgstr "" -#: reference/lexical_analysis.rst:675 +#: reference/lexical_analysis.rst:693 msgid "" "Note that this feature is defined at the syntactical level, but implemented " "at compile time. The '+' operator must be used to concatenate string " @@ -871,11 +896,11 @@ msgid "" "with plain string literals." msgstr "" -#: reference/lexical_analysis.rst:696 +#: reference/lexical_analysis.rst:714 msgid "Formatted string literals" msgstr "" -#: reference/lexical_analysis.rst:700 +#: reference/lexical_analysis.rst:718 msgid "" "A :dfn:`formatted string literal` or :dfn:`f-string` is a string literal " "that is prefixed with ``'f'`` or ``'F'``. These strings may contain " @@ -884,14 +909,14 @@ msgid "" "are really expressions evaluated at run time." msgstr "" -#: reference/lexical_analysis.rst:706 +#: reference/lexical_analysis.rst:724 msgid "" "Escape sequences are decoded like in ordinary string literals (except when a " "literal is also marked as a raw string). After decoding, the grammar for " "the contents of the string is:" msgstr "" -#: reference/lexical_analysis.rst:720 +#: reference/lexical_analysis.rst:738 msgid "" "The parts of the string outside curly braces are treated literally, except " "that any doubled curly braces ``'{{'`` or ``'}}'`` are replaced with the " @@ -904,25 +929,34 @@ msgid "" "replacement field ends with a closing curly bracket ``'}'``." msgstr "" -#: reference/lexical_analysis.rst:730 +#: reference/lexical_analysis.rst:748 msgid "" "Expressions in formatted string literals are treated like regular Python " "expressions surrounded by parentheses, with a few exceptions. An empty " "expression is not allowed, and both :keyword:`lambda` and assignment " -"expressions ``:=`` must be surrounded by explicit parentheses. Replacement " -"expressions can contain line breaks (e.g. in triple-quoted strings), but " -"they cannot contain comments. Each expression is evaluated in the context " -"where the formatted string literal appears, in order from left to right." +"expressions ``:=`` must be surrounded by explicit parentheses. Each " +"expression is evaluated in the context where the formatted string literal " +"appears, in order from left to right. Replacement expressions can contain " +"newlines in both single-quoted and triple-quoted f-strings and they can " +"contain comments. Everything that comes after a ``#`` inside a replacement " +"field is a comment (even closing braces and quotes). In that case, " +"replacement fields must be closed in a different line." msgstr "" -#: reference/lexical_analysis.rst:739 +#: reference/lexical_analysis.rst:765 msgid "" "Prior to Python 3.7, an :keyword:`await` expression and comprehensions " "containing an :keyword:`async for` clause were illegal in the expressions in " "formatted string literals due to a problem with the implementation." msgstr "" -#: reference/lexical_analysis.rst:744 +#: reference/lexical_analysis.rst:770 +msgid "" +"Prior to Python 3.12, comments were not allowed inside f-string replacement " +"fields." +msgstr "" + +#: reference/lexical_analysis.rst:774 msgid "" "When the equal sign ``'='`` is provided, the output will have the expression " "text, the ``'='`` and the evaluated value. Spaces after the opening brace " @@ -933,18 +967,18 @@ msgid "" "r'`` is declared." msgstr "" -#: reference/lexical_analysis.rst:752 +#: reference/lexical_analysis.rst:782 msgid "The equal sign ``'='``." msgstr "" -#: reference/lexical_analysis.rst:755 +#: reference/lexical_analysis.rst:785 msgid "" "If a conversion is specified, the result of evaluating the expression is " "converted before formatting. Conversion ``'!s'`` calls :func:`str` on the " "result, ``'!r'`` calls :func:`repr`, and ``'!a'`` calls :func:`ascii`." msgstr "" -#: reference/lexical_analysis.rst:759 +#: reference/lexical_analysis.rst:789 msgid "" "The result is then formatted using the :func:`format` protocol. The format " "specifier is passed to the :meth:`~object.__format__` method of the " @@ -953,7 +987,7 @@ msgid "" "value of the whole string." msgstr "" -#: reference/lexical_analysis.rst:765 +#: reference/lexical_analysis.rst:795 msgid "" "Top-level format specifiers may include nested replacement fields. These " "nested fields may include their own conversion fields and :ref:`format " @@ -962,110 +996,116 @@ msgid "" "as that used by the :meth:`str.format` method." msgstr "" -#: reference/lexical_analysis.rst:771 +#: reference/lexical_analysis.rst:801 msgid "" "Formatted string literals may be concatenated, but replacement fields cannot " "be split across literals." msgstr "" -#: reference/lexical_analysis.rst:774 +#: reference/lexical_analysis.rst:804 msgid "Some examples of formatted string literals::" msgstr "" -#: reference/lexical_analysis.rst:806 +#: reference/lexical_analysis.rst:836 msgid "" -"A consequence of sharing the same syntax as regular string literals is that " -"characters in the replacement fields must not conflict with the quoting used " -"in the outer formatted string literal::" +"Reusing the outer f-string quoting type inside a replacement field is " +"permitted::" msgstr "" -#: reference/lexical_analysis.rst:813 +#: reference/lexical_analysis.rst:843 msgid "" -"Backslashes are not allowed in format expressions and will raise an error::" +"Prior to Python 3.12, reuse of the same quoting type of the outer f-string " +"inside a replacement field was not possible." msgstr "" -#: reference/lexical_analysis.rst:818 +#: reference/lexical_analysis.rst:847 msgid "" -"To include a value in which a backslash escape is required, create a " -"temporary variable." +"Backslashes are also allowed in replacement fields and are evaluated the " +"same way as in any other context::" msgstr "" -#: reference/lexical_analysis.rst:825 +#: reference/lexical_analysis.rst:857 +msgid "" +"Prior to Python 3.12, backslashes were not permitted inside an f-string " +"replacement field." +msgstr "" + +#: reference/lexical_analysis.rst:861 msgid "" "Formatted string literals cannot be used as docstrings, even if they do not " "include expressions." msgstr "" -#: reference/lexical_analysis.rst:836 +#: reference/lexical_analysis.rst:872 msgid "" "See also :pep:`498` for the proposal that added formatted string literals, " "and :meth:`str.format`, which uses a related format string mechanism." msgstr "" -#: reference/lexical_analysis.rst:843 +#: reference/lexical_analysis.rst:879 msgid "Numeric literals" msgstr "" -#: reference/lexical_analysis.rst:849 +#: reference/lexical_analysis.rst:885 msgid "" "There are three types of numeric literals: integers, floating point numbers, " "and imaginary numbers. There are no complex literals (complex numbers can " "be formed by adding a real number and an imaginary number)." msgstr "" -#: reference/lexical_analysis.rst:853 +#: reference/lexical_analysis.rst:889 msgid "" "Note that numeric literals do not include a sign; a phrase like ``-1`` is " "actually an expression composed of the unary operator '``-``' and the " "literal ``1``." msgstr "" -#: reference/lexical_analysis.rst:867 +#: reference/lexical_analysis.rst:903 msgid "Integer literals" msgstr "" -#: reference/lexical_analysis.rst:869 +#: reference/lexical_analysis.rst:905 msgid "Integer literals are described by the following lexical definitions:" msgstr "" -#: reference/lexical_analysis.rst:883 +#: reference/lexical_analysis.rst:919 msgid "" "There is no limit for the length of integer literals apart from what can be " "stored in available memory." msgstr "" -#: reference/lexical_analysis.rst:886 +#: reference/lexical_analysis.rst:922 msgid "" "Underscores are ignored for determining the numeric value of the literal. " "They can be used to group digits for enhanced readability. One underscore " "can occur between digits, and after base specifiers like ``0x``." msgstr "" -#: reference/lexical_analysis.rst:890 +#: reference/lexical_analysis.rst:926 msgid "" "Note that leading zeros in a non-zero decimal number are not allowed. This " "is for disambiguation with C-style octal literals, which Python used before " "version 3.0." msgstr "" -#: reference/lexical_analysis.rst:894 +#: reference/lexical_analysis.rst:930 msgid "Some examples of integer literals::" msgstr "" -#: reference/lexical_analysis.rst:900 reference/lexical_analysis.rst:932 +#: reference/lexical_analysis.rst:936 reference/lexical_analysis.rst:968 msgid "Underscores are now allowed for grouping purposes in literals." msgstr "" -#: reference/lexical_analysis.rst:911 +#: reference/lexical_analysis.rst:947 msgid "Floating point literals" msgstr "" -#: reference/lexical_analysis.rst:913 +#: reference/lexical_analysis.rst:949 msgid "" "Floating point literals are described by the following lexical definitions:" msgstr "" -#: reference/lexical_analysis.rst:923 +#: reference/lexical_analysis.rst:959 msgid "" "Note that the integer and exponent parts are always interpreted using radix " "10. For example, ``077e010`` is legal, and denotes the same number as " @@ -1074,19 +1114,19 @@ msgid "" "grouping." msgstr "" -#: reference/lexical_analysis.rst:928 +#: reference/lexical_analysis.rst:964 msgid "Some examples of floating point literals::" msgstr "" -#: reference/lexical_analysis.rst:941 +#: reference/lexical_analysis.rst:977 msgid "Imaginary literals" msgstr "" -#: reference/lexical_analysis.rst:943 +#: reference/lexical_analysis.rst:979 msgid "Imaginary literals are described by the following lexical definitions:" msgstr "" -#: reference/lexical_analysis.rst:948 +#: reference/lexical_analysis.rst:984 msgid "" "An imaginary literal yields a complex number with a real part of 0.0. " "Complex numbers are represented as a pair of floating point numbers and have " @@ -1095,23 +1135,23 @@ msgid "" "Some examples of imaginary literals::" msgstr "" -#: reference/lexical_analysis.rst:960 +#: reference/lexical_analysis.rst:996 msgid "Operators" msgstr "" -#: reference/lexical_analysis.rst:964 +#: reference/lexical_analysis.rst:1000 msgid "The following tokens are operators:" msgstr "" -#: reference/lexical_analysis.rst:977 +#: reference/lexical_analysis.rst:1013 msgid "Delimiters" msgstr "" -#: reference/lexical_analysis.rst:981 +#: reference/lexical_analysis.rst:1017 msgid "The following tokens serve as delimiters in the grammar:" msgstr "" -#: reference/lexical_analysis.rst:990 +#: reference/lexical_analysis.rst:1026 msgid "" "The period can also occur in floating-point and imaginary literals. A " "sequence of three periods has a special meaning as an ellipsis literal. The " @@ -1119,24 +1159,24 @@ msgid "" "as delimiters, but also perform an operation." msgstr "" -#: reference/lexical_analysis.rst:995 +#: reference/lexical_analysis.rst:1031 msgid "" "The following printing ASCII characters have special meaning as part of " "other tokens or are otherwise significant to the lexical analyzer:" msgstr "" -#: reference/lexical_analysis.rst:1002 +#: reference/lexical_analysis.rst:1038 msgid "" "The following printing ASCII characters are not used in Python. Their " "occurrence outside string literals and comments is an unconditional error:" msgstr "" -#: reference/lexical_analysis.rst:1011 +#: reference/lexical_analysis.rst:1047 msgid "Footnotes" msgstr "" -#: reference/lexical_analysis.rst:1012 -msgid "https://www.unicode.org/Public/11.0.0/ucd/NameAliases.txt" +#: reference/lexical_analysis.rst:1048 +msgid "https://www.unicode.org/Public/15.0.0/ucd/NameAliases.txt" msgstr "" #: reference/lexical_analysis.rst:8 @@ -1160,7 +1200,7 @@ msgid "logical line" msgstr "" #: reference/lexical_analysis.rst:35 reference/lexical_analysis.rst:115 -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "physical line" msgstr "" @@ -1260,295 +1300,295 @@ msgstr "" msgid "soft keyword" msgstr "" -#: reference/lexical_analysis.rst:374 +#: reference/lexical_analysis.rst:378 msgid "_, identifiers" msgstr "" -#: reference/lexical_analysis.rst:374 +#: reference/lexical_analysis.rst:378 msgid "__, identifiers" msgstr "" -#: reference/lexical_analysis.rst:430 +#: reference/lexical_analysis.rst:434 msgid "literal" msgstr "" -#: reference/lexical_analysis.rst:430 +#: reference/lexical_analysis.rst:434 msgid "constant" msgstr "" -#: reference/lexical_analysis.rst:435 reference/lexical_analysis.rst:476 +#: reference/lexical_analysis.rst:439 reference/lexical_analysis.rst:480 msgid "string literal" msgstr "" -#: reference/lexical_analysis.rst:435 reference/lexical_analysis.rst:487 +#: reference/lexical_analysis.rst:439 reference/lexical_analysis.rst:493 msgid "bytes literal" msgstr "" -#: reference/lexical_analysis.rst:435 +#: reference/lexical_analysis.rst:439 msgid "ASCII" msgstr "" -#: reference/lexical_analysis.rst:435 +#: reference/lexical_analysis.rst:439 msgid "' (single quote)" msgstr "" -#: reference/lexical_analysis.rst:435 +#: reference/lexical_analysis.rst:439 msgid "\" (double quote)" msgstr "" -#: reference/lexical_analysis.rst:435 +#: reference/lexical_analysis.rst:439 msgid "u'" msgstr "" -#: reference/lexical_analysis.rst:435 +#: reference/lexical_analysis.rst:439 msgid "u\"" msgstr "" -#: reference/lexical_analysis.rst:476 +#: reference/lexical_analysis.rst:480 msgid "triple-quoted string" msgstr "" -#: reference/lexical_analysis.rst:476 +#: reference/lexical_analysis.rst:480 msgid "Unicode Consortium" msgstr "" -#: reference/lexical_analysis.rst:476 +#: reference/lexical_analysis.rst:480 msgid "raw string" msgstr "" -#: reference/lexical_analysis.rst:476 +#: reference/lexical_analysis.rst:480 msgid "\"\"\"" msgstr "" -#: reference/lexical_analysis.rst:476 +#: reference/lexical_analysis.rst:480 msgid "'''" msgstr "" -#: reference/lexical_analysis.rst:487 +#: reference/lexical_analysis.rst:493 msgid "b'" msgstr "" -#: reference/lexical_analysis.rst:487 +#: reference/lexical_analysis.rst:493 msgid "b\"" msgstr "" -#: reference/lexical_analysis.rst:496 +#: reference/lexical_analysis.rst:502 msgid "r'" msgstr "" -#: reference/lexical_analysis.rst:496 +#: reference/lexical_analysis.rst:502 msgid "raw string literal" msgstr "" -#: reference/lexical_analysis.rst:496 +#: reference/lexical_analysis.rst:502 msgid "r\"" msgstr "" -#: reference/lexical_analysis.rst:516 +#: reference/lexical_analysis.rst:522 msgid "f'" msgstr "" -#: reference/lexical_analysis.rst:516 reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:522 reference/lexical_analysis.rst:700 msgid "formatted string literal" msgstr "" -#: reference/lexical_analysis.rst:516 +#: reference/lexical_analysis.rst:522 msgid "f\"" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "escape sequence" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "Standard C" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "C" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\ (backslash)" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\\\" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\a" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\b" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\f" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\n" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\r" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\t" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\v" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\x" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\N" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\u" msgstr "" -#: reference/lexical_analysis.rst:529 +#: reference/lexical_analysis.rst:535 msgid "\\U" msgstr "" -#: reference/lexical_analysis.rst:635 +#: reference/lexical_analysis.rst:651 msgid "unrecognized escape sequence" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "interpolated string literal" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "string" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "formatted literal" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "interpolated literal" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "f-string" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "fstring" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "{} (curly brackets)" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "in formatted string literal" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "! (exclamation)" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid ": (colon)" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "= (equals)" msgstr "" -#: reference/lexical_analysis.rst:682 +#: reference/lexical_analysis.rst:700 msgid "for help in debugging using string literals" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "number" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "numeric literal" msgstr "" -#: reference/lexical_analysis.rst:845 reference/lexical_analysis.rst:858 +#: reference/lexical_analysis.rst:881 reference/lexical_analysis.rst:894 msgid "integer literal" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "floating point literal" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "hexadecimal literal" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "octal literal" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "binary literal" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "decimal literal" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "imaginary literal" msgstr "" -#: reference/lexical_analysis.rst:845 +#: reference/lexical_analysis.rst:881 msgid "complex literal" msgstr "" -#: reference/lexical_analysis.rst:858 +#: reference/lexical_analysis.rst:894 msgid "0b" msgstr "" -#: reference/lexical_analysis.rst:858 +#: reference/lexical_analysis.rst:894 msgid "0o" msgstr "" -#: reference/lexical_analysis.rst:858 +#: reference/lexical_analysis.rst:894 msgid "0x" msgstr "" -#: reference/lexical_analysis.rst:858 reference/lexical_analysis.rst:904 +#: reference/lexical_analysis.rst:894 reference/lexical_analysis.rst:940 msgid "_ (underscore)" msgstr "" -#: reference/lexical_analysis.rst:858 reference/lexical_analysis.rst:904 -#: reference/lexical_analysis.rst:936 +#: reference/lexical_analysis.rst:894 reference/lexical_analysis.rst:940 +#: reference/lexical_analysis.rst:972 msgid "in numeric literal" msgstr "" -#: reference/lexical_analysis.rst:904 +#: reference/lexical_analysis.rst:940 msgid ". (dot)" msgstr "" -#: reference/lexical_analysis.rst:904 +#: reference/lexical_analysis.rst:940 msgid "e" msgstr "" -#: reference/lexical_analysis.rst:936 +#: reference/lexical_analysis.rst:972 msgid "j" msgstr "" -#: reference/lexical_analysis.rst:962 +#: reference/lexical_analysis.rst:998 msgid "operators" msgstr "" -#: reference/lexical_analysis.rst:979 +#: reference/lexical_analysis.rst:1015 msgid "delimiters" msgstr "" diff --git a/reference/simple_stmts.po b/reference/simple_stmts.po index d57cce6b1..40c1ed318 100644 --- a/reference/simple_stmts.po +++ b/reference/simple_stmts.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -27,11 +27,11 @@ msgid "" "for simple statements is:" msgstr "" -#: reference/simple_stmts.rst:36 +#: reference/simple_stmts.rst:37 msgid "Expression statements" msgstr "" -#: reference/simple_stmts.rst:43 +#: reference/simple_stmts.rst:44 msgid "" "Expression statements are used (mostly interactively) to compute and write a " "value, or (usually) to call a procedure (a function that returns no " @@ -40,13 +40,13 @@ msgid "" "syntax for an expression statement is:" msgstr "" -#: reference/simple_stmts.rst:52 +#: reference/simple_stmts.rst:53 msgid "" "An expression statement evaluates the expression list (which may be a single " "expression)." msgstr "" -#: reference/simple_stmts.rst:64 +#: reference/simple_stmts.rst:65 msgid "" "In interactive mode, if the value is not ``None``, it is converted to a " "string using the built-in :func:`repr` function and the resulting string is " @@ -54,23 +54,23 @@ msgid "" "``None``, so that procedure calls do not cause any output.)" msgstr "" -#: reference/simple_stmts.rst:72 +#: reference/simple_stmts.rst:73 msgid "Assignment statements" msgstr "" -#: reference/simple_stmts.rst:82 +#: reference/simple_stmts.rst:83 msgid "" "Assignment statements are used to (re)bind names to values and to modify " "attributes or items of mutable objects:" msgstr "" -#: reference/simple_stmts.rst:96 +#: reference/simple_stmts.rst:97 msgid "" "(See section :ref:`primaries` for the syntax definitions for *attributeref*, " "*subscription*, and *slicing*.)" msgstr "" -#: reference/simple_stmts.rst:99 +#: reference/simple_stmts.rst:100 msgid "" "An assignment statement evaluates the expression list (remember that this " "can be a single expression or a comma-separated list, the latter yielding a " @@ -78,7 +78,7 @@ msgid "" "from left to right." msgstr "" -#: reference/simple_stmts.rst:108 +#: reference/simple_stmts.rst:109 msgid "" "Assignment is defined recursively depending on the form of the target " "(list). When a target is part of a mutable object (an attribute reference, " @@ -89,23 +89,23 @@ msgid "" "section :ref:`types`)." msgstr "" -#: reference/simple_stmts.rst:121 +#: reference/simple_stmts.rst:122 msgid "" "Assignment of an object to a target list, optionally enclosed in parentheses " "or square brackets, is recursively defined as follows." msgstr "" -#: reference/simple_stmts.rst:124 +#: reference/simple_stmts.rst:125 msgid "" "If the target list is a single target with no trailing comma, optionally in " "parentheses, the object is assigned to that target." msgstr "" -#: reference/simple_stmts.rst:127 +#: reference/simple_stmts.rst:128 msgid "Else:" msgstr "" -#: reference/simple_stmts.rst:129 +#: reference/simple_stmts.rst:130 msgid "" "If the target list contains one target prefixed with an asterisk, called a " "\"starred\" target: The object must be an iterable with at least as many " @@ -116,43 +116,43 @@ msgid "" "then assigned to the starred target (the list can be empty)." msgstr "" -#: reference/simple_stmts.rst:137 +#: reference/simple_stmts.rst:138 msgid "" "Else: The object must be an iterable with the same number of items as there " "are targets in the target list, and the items are assigned, from left to " "right, to the corresponding targets." msgstr "" -#: reference/simple_stmts.rst:141 +#: reference/simple_stmts.rst:142 msgid "" "Assignment of an object to a single target is recursively defined as follows." msgstr "" -#: reference/simple_stmts.rst:143 +#: reference/simple_stmts.rst:144 msgid "If the target is an identifier (name):" msgstr "" -#: reference/simple_stmts.rst:145 +#: reference/simple_stmts.rst:146 msgid "" "If the name does not occur in a :keyword:`global` or :keyword:`nonlocal` " "statement in the current code block: the name is bound to the object in the " "current local namespace." msgstr "" -#: reference/simple_stmts.rst:149 +#: reference/simple_stmts.rst:150 msgid "" "Otherwise: the name is bound to the object in the global namespace or the " "outer namespace determined by :keyword:`nonlocal`, respectively." msgstr "" -#: reference/simple_stmts.rst:154 +#: reference/simple_stmts.rst:155 msgid "" "The name is rebound if it was already bound. This may cause the reference " "count for the object previously bound to the name to reach zero, causing the " "object to be deallocated and its destructor (if it has one) to be called." msgstr "" -#: reference/simple_stmts.rst:160 +#: reference/simple_stmts.rst:161 msgid "" "If the target is an attribute reference: The primary expression in the " "reference is evaluated. It should yield an object with assignable " @@ -162,7 +162,7 @@ msgid "" "necessarily :exc:`AttributeError`)." msgstr "" -#: reference/simple_stmts.rst:169 +#: reference/simple_stmts.rst:170 msgid "" "Note: If the object is a class instance and the attribute reference occurs " "on both sides of the assignment operator, the right-hand side expression, " @@ -174,13 +174,13 @@ msgid "" "side creates a new instance attribute as the target of the assignment::" msgstr "" -#: reference/simple_stmts.rst:183 +#: reference/simple_stmts.rst:184 msgid "" "This description does not necessarily apply to descriptor attributes, such " "as properties created with :func:`property`." msgstr "" -#: reference/simple_stmts.rst:190 +#: reference/simple_stmts.rst:191 msgid "" "If the target is a subscription: The primary expression in the reference is " "evaluated. It should yield either a mutable sequence object (such as a " @@ -188,7 +188,7 @@ msgid "" "expression is evaluated." msgstr "" -#: reference/simple_stmts.rst:199 +#: reference/simple_stmts.rst:200 msgid "" "If the primary is a mutable sequence object (such as a list), the subscript " "must yield an integer. If it is negative, the sequence's length is added to " @@ -199,7 +199,7 @@ msgid "" "items to a list)." msgstr "" -#: reference/simple_stmts.rst:210 +#: reference/simple_stmts.rst:211 msgid "" "If the primary is a mapping object (such as a dictionary), the subscript " "must have a type compatible with the mapping's key type, and the mapping is " @@ -209,13 +209,13 @@ msgid "" "value existed)." msgstr "" -#: reference/simple_stmts.rst:216 +#: reference/simple_stmts.rst:217 msgid "" "For user-defined objects, the :meth:`__setitem__` method is called with " "appropriate arguments." msgstr "" -#: reference/simple_stmts.rst:221 +#: reference/simple_stmts.rst:222 msgid "" "If the target is a slicing: The primary expression in the reference is " "evaluated. It should yield a mutable sequence object (such as a list). The " @@ -230,14 +230,14 @@ msgid "" "length of the target sequence, if the target sequence allows it." msgstr "" -#: reference/simple_stmts.rst:235 +#: reference/simple_stmts.rst:236 msgid "" "In the current implementation, the syntax for targets is taken to be the " "same as for expressions, and invalid syntax is rejected during the code " "generation phase, causing less detailed error messages." msgstr "" -#: reference/simple_stmts.rst:239 +#: reference/simple_stmts.rst:240 msgid "" "Although the definition of assignment implies that overlaps between the left-" "hand side and the right-hand side are 'simultaneous' (for example ``a, b = " @@ -246,31 +246,31 @@ msgid "" "instance, the following program prints ``[0, 2]``::" msgstr "" -#: reference/simple_stmts.rst:253 +#: reference/simple_stmts.rst:254 msgid ":pep:`3132` - Extended Iterable Unpacking" msgstr "" -#: reference/simple_stmts.rst:254 +#: reference/simple_stmts.rst:255 msgid "The specification for the ``*target`` feature." msgstr "" -#: reference/simple_stmts.rst:260 +#: reference/simple_stmts.rst:261 msgid "Augmented assignment statements" msgstr "" -#: reference/simple_stmts.rst:278 +#: reference/simple_stmts.rst:279 msgid "" "Augmented assignment is the combination, in a single statement, of a binary " "operation and an assignment statement:" msgstr "" -#: reference/simple_stmts.rst:287 +#: reference/simple_stmts.rst:288 msgid "" "(See section :ref:`primaries` for the syntax definitions of the last three " "symbols.)" msgstr "" -#: reference/simple_stmts.rst:290 +#: reference/simple_stmts.rst:291 msgid "" "An augmented assignment evaluates the target (which, unlike normal " "assignment statements, cannot be an unpacking) and the expression list, " @@ -279,7 +279,7 @@ msgid "" "evaluated once." msgstr "" -#: reference/simple_stmts.rst:295 +#: reference/simple_stmts.rst:296 msgid "" "An augmented assignment expression like ``x += 1`` can be rewritten as ``x = " "x + 1`` to achieve a similar, but not exactly equal effect. In the augmented " @@ -288,7 +288,7 @@ msgid "" "object and assigning that to the target, the old object is modified instead." msgstr "" -#: reference/simple_stmts.rst:301 +#: reference/simple_stmts.rst:302 msgid "" "Unlike normal assignments, augmented assignments evaluate the left-hand side " "*before* evaluating the right-hand side. For example, ``a[i] += f(x)`` " @@ -296,7 +296,7 @@ msgid "" "addition, and lastly, it writes the result back to ``a[i]``." msgstr "" -#: reference/simple_stmts.rst:306 +#: reference/simple_stmts.rst:307 msgid "" "With the exception of assigning to tuples and multiple targets in a single " "statement, the assignment done by augmented assignment statements is handled " @@ -305,31 +305,31 @@ msgid "" "assignment is the same as the normal binary operations." msgstr "" -#: reference/simple_stmts.rst:312 +#: reference/simple_stmts.rst:313 msgid "" "For targets which are attribute references, the same :ref:`caveat about " "class and instance attributes ` applies as for regular " "assignments." msgstr "" -#: reference/simple_stmts.rst:319 +#: reference/simple_stmts.rst:320 msgid "Annotated assignment statements" msgstr "" -#: reference/simple_stmts.rst:326 +#: reference/simple_stmts.rst:327 msgid "" ":term:`Annotation ` assignment is the combination, in a " "single statement, of a variable or attribute annotation and an optional " "assignment statement:" msgstr "" -#: reference/simple_stmts.rst:333 +#: reference/simple_stmts.rst:334 msgid "" "The difference from normal :ref:`assignment` is that only a single target is " "allowed." msgstr "" -#: reference/simple_stmts.rst:335 +#: reference/simple_stmts.rst:336 msgid "" "For simple names as assignment targets, if in class or module scope, the " "annotations are evaluated and stored in a special class or module attribute :" @@ -339,19 +339,19 @@ msgid "" "if annotations are found statically." msgstr "" -#: reference/simple_stmts.rst:343 +#: reference/simple_stmts.rst:344 msgid "" "For expressions as assignment targets, the annotations are evaluated if in " "class or module scope, but not stored." msgstr "" -#: reference/simple_stmts.rst:346 +#: reference/simple_stmts.rst:347 msgid "" "If a name is annotated in a function scope, then this name is local for that " "scope. Annotations are never evaluated and stored in function scopes." msgstr "" -#: reference/simple_stmts.rst:349 +#: reference/simple_stmts.rst:350 msgid "" "If the right hand side is present, an annotated assignment performs the " "actual assignment before evaluating annotations (where applicable). If the " @@ -360,55 +360,55 @@ msgid "" "meth:`__setattr__` call." msgstr "" -#: reference/simple_stmts.rst:360 +#: reference/simple_stmts.rst:361 msgid ":pep:`526` - Syntax for Variable Annotations" msgstr "" -#: reference/simple_stmts.rst:358 +#: reference/simple_stmts.rst:359 msgid "" "The proposal that added syntax for annotating the types of variables " "(including class variables and instance variables), instead of expressing " "them through comments." msgstr "" -#: reference/simple_stmts.rst:364 +#: reference/simple_stmts.rst:365 msgid ":pep:`484` - Type hints" msgstr "" -#: reference/simple_stmts.rst:363 +#: reference/simple_stmts.rst:364 msgid "" "The proposal that added the :mod:`typing` module to provide a standard " "syntax for type annotations that can be used in static analysis tools and " "IDEs." msgstr "" -#: reference/simple_stmts.rst:367 +#: reference/simple_stmts.rst:368 msgid "" "Now annotated assignments allow the same expressions in the right hand side " "as regular assignments. Previously, some expressions (like un-parenthesized " "tuple expressions) caused a syntax error." msgstr "" -#: reference/simple_stmts.rst:376 +#: reference/simple_stmts.rst:377 msgid "The :keyword:`!assert` statement" msgstr "" -#: reference/simple_stmts.rst:383 +#: reference/simple_stmts.rst:384 msgid "" "Assert statements are a convenient way to insert debugging assertions into a " "program:" msgstr "" -#: reference/simple_stmts.rst:389 +#: reference/simple_stmts.rst:390 msgid "The simple form, ``assert expression``, is equivalent to ::" msgstr "" -#: reference/simple_stmts.rst:394 +#: reference/simple_stmts.rst:395 msgid "" "The extended form, ``assert expression1, expression2``, is equivalent to ::" msgstr "" -#: reference/simple_stmts.rst:403 +#: reference/simple_stmts.rst:404 msgid "" "These equivalences assume that :const:`__debug__` and :exc:`AssertionError` " "refer to the built-in variables with those names. In the current " @@ -420,40 +420,40 @@ msgid "" "in the error message; it will be displayed as part of the stack trace." msgstr "" -#: reference/simple_stmts.rst:412 +#: reference/simple_stmts.rst:413 msgid "" "Assignments to :const:`__debug__` are illegal. The value for the built-in " "variable is determined when the interpreter starts." msgstr "" -#: reference/simple_stmts.rst:419 +#: reference/simple_stmts.rst:420 msgid "The :keyword:`!pass` statement" msgstr "" -#: reference/simple_stmts.rst:429 +#: reference/simple_stmts.rst:430 msgid "" ":keyword:`pass` is a null operation --- when it is executed, nothing " "happens. It is useful as a placeholder when a statement is required " "syntactically, but no code needs to be executed, for example::" msgstr "" -#: reference/simple_stmts.rst:441 +#: reference/simple_stmts.rst:442 msgid "The :keyword:`!del` statement" msgstr "" -#: reference/simple_stmts.rst:451 +#: reference/simple_stmts.rst:452 msgid "" "Deletion is recursively defined very similar to the way assignment is " "defined. Rather than spelling it out in full details, here are some hints." msgstr "" -#: reference/simple_stmts.rst:454 +#: reference/simple_stmts.rst:455 msgid "" "Deletion of a target list recursively deletes each target, from left to " "right." msgstr "" -#: reference/simple_stmts.rst:460 +#: reference/simple_stmts.rst:461 msgid "" "Deletion of a name removes the binding of that name from the local or global " "namespace, depending on whether the name occurs in a :keyword:`global` " @@ -461,7 +461,7 @@ msgid "" "`NameError` exception will be raised." msgstr "" -#: reference/simple_stmts.rst:467 +#: reference/simple_stmts.rst:468 msgid "" "Deletion of attribute references, subscriptions and slicings is passed to " "the primary object involved; deletion of a slicing is in general equivalent " @@ -469,42 +469,42 @@ msgid "" "determined by the sliced object)." msgstr "" -#: reference/simple_stmts.rst:472 +#: reference/simple_stmts.rst:473 msgid "" "Previously it was illegal to delete a name from the local namespace if it " "occurs as a free variable in a nested block." msgstr "" -#: reference/simple_stmts.rst:480 +#: reference/simple_stmts.rst:481 msgid "The :keyword:`!return` statement" msgstr "" -#: reference/simple_stmts.rst:490 +#: reference/simple_stmts.rst:491 msgid "" ":keyword:`return` may only occur syntactically nested in a function " "definition, not within a nested class definition." msgstr "" -#: reference/simple_stmts.rst:493 +#: reference/simple_stmts.rst:494 msgid "" "If an expression list is present, it is evaluated, else ``None`` is " "substituted." msgstr "" -#: reference/simple_stmts.rst:495 +#: reference/simple_stmts.rst:496 msgid "" ":keyword:`return` leaves the current function call with the expression list " "(or ``None``) as return value." msgstr "" -#: reference/simple_stmts.rst:500 +#: reference/simple_stmts.rst:501 msgid "" "When :keyword:`return` passes control out of a :keyword:`try` statement with " "a :keyword:`finally` clause, that :keyword:`!finally` clause is executed " "before really leaving the function." msgstr "" -#: reference/simple_stmts.rst:504 +#: reference/simple_stmts.rst:505 msgid "" "In a generator function, the :keyword:`return` statement indicates that the " "generator is done and will cause :exc:`StopIteration` to be raised. The " @@ -512,7 +512,7 @@ msgid "" "`StopIteration` and becomes the :attr:`StopIteration.value` attribute." msgstr "" -#: reference/simple_stmts.rst:509 +#: reference/simple_stmts.rst:510 msgid "" "In an asynchronous generator function, an empty :keyword:`return` statement " "indicates that the asynchronous generator is done and will cause :exc:" @@ -520,11 +520,11 @@ msgid "" "is a syntax error in an asynchronous generator function." msgstr "" -#: reference/simple_stmts.rst:517 +#: reference/simple_stmts.rst:518 msgid "The :keyword:`!yield` statement" msgstr "" -#: reference/simple_stmts.rst:529 +#: reference/simple_stmts.rst:530 msgid "" "A :keyword:`yield` statement is semantically equivalent to a :ref:`yield " "expression `. The yield statement can be used to omit the " @@ -532,11 +532,11 @@ msgid "" "expression statement. For example, the yield statements ::" msgstr "" -#: reference/simple_stmts.rst:537 +#: reference/simple_stmts.rst:538 msgid "are equivalent to the yield expression statements ::" msgstr "" -#: reference/simple_stmts.rst:542 +#: reference/simple_stmts.rst:543 msgid "" "Yield expressions and statements are only used when defining a :term:" "`generator` function, and are only used in the body of the generator " @@ -544,17 +544,17 @@ msgid "" "definition to create a generator function instead of a normal function." msgstr "" -#: reference/simple_stmts.rst:547 +#: reference/simple_stmts.rst:548 msgid "" "For full details of :keyword:`yield` semantics, refer to the :ref:" "`yieldexpr` section." msgstr "" -#: reference/simple_stmts.rst:553 +#: reference/simple_stmts.rst:554 msgid "The :keyword:`!raise` statement" msgstr "" -#: reference/simple_stmts.rst:564 +#: reference/simple_stmts.rst:565 msgid "" "If no expressions are present, :keyword:`raise` re-raises the exception that " "is currently being handled, which is also known as the *active exception*. " @@ -562,7 +562,7 @@ msgid "" "exception is raised indicating that this is an error." msgstr "" -#: reference/simple_stmts.rst:569 +#: reference/simple_stmts.rst:570 msgid "" "Otherwise, :keyword:`raise` evaluates the first expression as the exception " "object. It must be either a subclass or an instance of :class:" @@ -570,13 +570,13 @@ msgid "" "when needed by instantiating the class with no arguments." msgstr "" -#: reference/simple_stmts.rst:574 +#: reference/simple_stmts.rst:575 msgid "" "The :dfn:`type` of the exception is the exception instance's class, the :dfn:" "`value` is the instance itself." msgstr "" -#: reference/simple_stmts.rst:579 +#: reference/simple_stmts.rst:580 msgid "" "A traceback object is normally created automatically when an exception is " "raised and attached to it as the :attr:`__traceback__` attribute, which is " @@ -586,7 +586,7 @@ msgid "" "argument), like so::" msgstr "" -#: reference/simple_stmts.rst:591 +#: reference/simple_stmts.rst:592 msgid "" "The ``from`` clause is used for exception chaining: if given, the second " "*expression* must be another exception class or instance. If the second " @@ -598,7 +598,7 @@ msgid "" "both exceptions will be printed::" msgstr "" -#: reference/simple_stmts.rst:615 +#: reference/simple_stmts.rst:616 msgid "" "A similar mechanism works implicitly if a new exception is raised when an " "exception is already being handled. An exception may be handled when an :" @@ -607,30 +607,30 @@ msgid "" "exception's :attr:`__context__` attribute::" msgstr "" -#: reference/simple_stmts.rst:636 +#: reference/simple_stmts.rst:637 msgid "" "Exception chaining can be explicitly suppressed by specifying :const:`None` " "in the ``from`` clause::" msgstr "" -#: reference/simple_stmts.rst:648 +#: reference/simple_stmts.rst:649 msgid "" "Additional information on exceptions can be found in section :ref:" "`exceptions`, and information about handling exceptions is in section :ref:" "`try`." msgstr "" -#: reference/simple_stmts.rst:651 +#: reference/simple_stmts.rst:652 msgid ":const:`None` is now permitted as ``Y`` in ``raise X from Y``." msgstr "" -#: reference/simple_stmts.rst:654 +#: reference/simple_stmts.rst:655 msgid "" "The ``__suppress_context__`` attribute to suppress automatic display of the " "exception context." msgstr "" -#: reference/simple_stmts.rst:658 +#: reference/simple_stmts.rst:659 msgid "" "If the traceback of the active exception is modified in an :keyword:`except` " "clause, a subsequent ``raise`` statement re-raises the exception with the " @@ -638,41 +638,41 @@ msgid "" "traceback it had when it was caught." msgstr "" -#: reference/simple_stmts.rst:667 +#: reference/simple_stmts.rst:668 msgid "The :keyword:`!break` statement" msgstr "" -#: reference/simple_stmts.rst:678 +#: reference/simple_stmts.rst:679 msgid "" ":keyword:`break` may only occur syntactically nested in a :keyword:`for` or :" "keyword:`while` loop, but not nested in a function or class definition " "within that loop." msgstr "" -#: reference/simple_stmts.rst:685 +#: reference/simple_stmts.rst:686 msgid "" "It terminates the nearest enclosing loop, skipping the optional :keyword:`!" "else` clause if the loop has one." msgstr "" -#: reference/simple_stmts.rst:688 +#: reference/simple_stmts.rst:689 msgid "" "If a :keyword:`for` loop is terminated by :keyword:`break`, the loop control " "target keeps its current value." msgstr "" -#: reference/simple_stmts.rst:693 +#: reference/simple_stmts.rst:694 msgid "" "When :keyword:`break` passes control out of a :keyword:`try` statement with " "a :keyword:`finally` clause, that :keyword:`!finally` clause is executed " "before really leaving the loop." msgstr "" -#: reference/simple_stmts.rst:701 +#: reference/simple_stmts.rst:702 msgid "The :keyword:`!continue` statement" msgstr "" -#: reference/simple_stmts.rst:713 +#: reference/simple_stmts.rst:714 msgid "" ":keyword:`continue` may only occur syntactically nested in a :keyword:`for` " "or :keyword:`while` loop, but not nested in a function or class definition " @@ -680,41 +680,41 @@ msgid "" "loop." msgstr "" -#: reference/simple_stmts.rst:717 +#: reference/simple_stmts.rst:718 msgid "" "When :keyword:`continue` passes control out of a :keyword:`try` statement " "with a :keyword:`finally` clause, that :keyword:`!finally` clause is " "executed before really starting the next loop cycle." msgstr "" -#: reference/simple_stmts.rst:726 +#: reference/simple_stmts.rst:727 msgid "The :keyword:`!import` statement" msgstr "" -#: reference/simple_stmts.rst:747 +#: reference/simple_stmts.rst:748 msgid "" "The basic import statement (no :keyword:`from` clause) is executed in two " "steps:" msgstr "" -#: reference/simple_stmts.rst:750 +#: reference/simple_stmts.rst:751 msgid "find a module, loading and initializing it if necessary" msgstr "" -#: reference/simple_stmts.rst:751 +#: reference/simple_stmts.rst:752 msgid "" "define a name or names in the local namespace for the scope where the :" "keyword:`import` statement occurs." msgstr "" -#: reference/simple_stmts.rst:754 +#: reference/simple_stmts.rst:755 msgid "" "When the statement contains multiple clauses (separated by commas) the two " "steps are carried out separately for each clause, just as though the clauses " "had been separated out into individual import statements." msgstr "" -#: reference/simple_stmts.rst:759 +#: reference/simple_stmts.rst:760 msgid "" "The details of the first step, finding and loading modules, are described in " "greater detail in the section on the :ref:`import system `, " @@ -725,26 +725,26 @@ msgid "" "module, which includes execution of the module's code." msgstr "" -#: reference/simple_stmts.rst:767 +#: reference/simple_stmts.rst:768 msgid "" "If the requested module is retrieved successfully, it will be made available " "in the local namespace in one of three ways:" msgstr "" -#: reference/simple_stmts.rst:772 +#: reference/simple_stmts.rst:773 msgid "" "If the module name is followed by :keyword:`!as`, then the name following :" "keyword:`!as` is bound directly to the imported module." msgstr "" -#: reference/simple_stmts.rst:774 +#: reference/simple_stmts.rst:775 msgid "" "If no other name is specified, and the module being imported is a top level " "module, the module's name is bound in the local namespace as a reference to " "the imported module" msgstr "" -#: reference/simple_stmts.rst:777 +#: reference/simple_stmts.rst:778 msgid "" "If the module being imported is *not* a top level module, then the name of " "the top level package that contains the module is bound in the local " @@ -752,53 +752,53 @@ msgid "" "be accessed using its full qualified name rather than directly" msgstr "" -#: reference/simple_stmts.rst:787 +#: reference/simple_stmts.rst:788 msgid "The :keyword:`from` form uses a slightly more complex process:" msgstr "" -#: reference/simple_stmts.rst:789 +#: reference/simple_stmts.rst:790 msgid "" "find the module specified in the :keyword:`from` clause, loading and " "initializing it if necessary;" msgstr "" -#: reference/simple_stmts.rst:791 +#: reference/simple_stmts.rst:792 msgid "for each of the identifiers specified in the :keyword:`import` clauses:" msgstr "" -#: reference/simple_stmts.rst:793 +#: reference/simple_stmts.rst:794 msgid "check if the imported module has an attribute by that name" msgstr "" -#: reference/simple_stmts.rst:794 +#: reference/simple_stmts.rst:795 msgid "" "if not, attempt to import a submodule with that name and then check the " "imported module again for that attribute" msgstr "" -#: reference/simple_stmts.rst:796 +#: reference/simple_stmts.rst:797 msgid "if the attribute is not found, :exc:`ImportError` is raised." msgstr "" -#: reference/simple_stmts.rst:797 +#: reference/simple_stmts.rst:798 msgid "" "otherwise, a reference to that value is stored in the local namespace, using " "the name in the :keyword:`!as` clause if it is present, otherwise using the " "attribute name" msgstr "" -#: reference/simple_stmts.rst:801 +#: reference/simple_stmts.rst:802 msgid "Examples::" msgstr "" -#: reference/simple_stmts.rst:811 +#: reference/simple_stmts.rst:812 msgid "" "If the list of identifiers is replaced by a star (``'*'``), all public names " "defined in the module are bound in the local namespace for the scope where " "the :keyword:`import` statement occurs." msgstr "" -#: reference/simple_stmts.rst:817 +#: reference/simple_stmts.rst:818 msgid "" "The *public names* defined by a module are determined by checking the " "module's namespace for a variable named ``__all__``; if defined, it must be " @@ -811,14 +811,14 @@ msgid "" "API (such as library modules which were imported and used within the module)." msgstr "" -#: reference/simple_stmts.rst:827 +#: reference/simple_stmts.rst:828 msgid "" "The wild card form of import --- ``from module import *`` --- is only " "allowed at the module level. Attempting to use it in class or function " "definitions will raise a :exc:`SyntaxError`." msgstr "" -#: reference/simple_stmts.rst:834 +#: reference/simple_stmts.rst:835 msgid "" "When specifying what module to import you do not have to specify the " "absolute name of the module. When a module or package is contained within " @@ -835,31 +835,31 @@ msgid "" "the :ref:`relativeimports` section." msgstr "" -#: reference/simple_stmts.rst:848 +#: reference/simple_stmts.rst:849 msgid "" ":func:`importlib.import_module` is provided to support applications that " "determine dynamically the modules to be loaded." msgstr "" -#: reference/simple_stmts.rst:851 +#: reference/simple_stmts.rst:852 msgid "" "Raises an :ref:`auditing event ` ``import`` with arguments " "``module``, ``filename``, ``sys.path``, ``sys.meta_path``, ``sys." "path_hooks``." msgstr "" -#: reference/simple_stmts.rst:856 +#: reference/simple_stmts.rst:857 msgid "Future statements" msgstr "" -#: reference/simple_stmts.rst:862 +#: reference/simple_stmts.rst:863 msgid "" "A :dfn:`future statement` is a directive to the compiler that a particular " "module should be compiled using syntax or semantics that will be available " "in a specified future release of Python where the feature becomes standard." msgstr "" -#: reference/simple_stmts.rst:866 +#: reference/simple_stmts.rst:867 msgid "" "The future statement is intended to ease migration to future versions of " "Python that introduce incompatible changes to the language. It allows use " @@ -867,35 +867,35 @@ msgid "" "feature becomes standard." msgstr "" -#: reference/simple_stmts.rst:878 +#: reference/simple_stmts.rst:879 msgid "" "A future statement must appear near the top of the module. The only lines " "that can appear before a future statement are:" msgstr "" -#: reference/simple_stmts.rst:881 +#: reference/simple_stmts.rst:882 msgid "the module docstring (if any)," msgstr "" -#: reference/simple_stmts.rst:882 +#: reference/simple_stmts.rst:883 msgid "comments," msgstr "" -#: reference/simple_stmts.rst:883 +#: reference/simple_stmts.rst:884 msgid "blank lines, and" msgstr "" -#: reference/simple_stmts.rst:884 +#: reference/simple_stmts.rst:885 msgid "other future statements." msgstr "" -#: reference/simple_stmts.rst:886 +#: reference/simple_stmts.rst:887 msgid "" "The only feature that requires using the future statement is ``annotations`` " "(see :pep:`563`)." msgstr "" -#: reference/simple_stmts.rst:889 +#: reference/simple_stmts.rst:890 msgid "" "All historical features enabled by the future statement are still recognized " "by Python 3. The list includes ``absolute_import``, ``division``, " @@ -905,7 +905,7 @@ msgid "" "compatibility." msgstr "" -#: reference/simple_stmts.rst:896 +#: reference/simple_stmts.rst:897 msgid "" "A future statement is recognized and treated specially at compile time: " "Changes to the semantics of core constructs are often implemented by " @@ -915,37 +915,37 @@ msgid "" "cannot be pushed off until runtime." msgstr "" -#: reference/simple_stmts.rst:903 +#: reference/simple_stmts.rst:904 msgid "" "For any given release, the compiler knows which feature names have been " "defined, and raises a compile-time error if a future statement contains a " "feature not known to it." msgstr "" -#: reference/simple_stmts.rst:907 +#: reference/simple_stmts.rst:908 msgid "" "The direct runtime semantics are the same as for any import statement: there " "is a standard module :mod:`__future__`, described later, and it will be " "imported in the usual way at the time the future statement is executed." msgstr "" -#: reference/simple_stmts.rst:911 +#: reference/simple_stmts.rst:912 msgid "" "The interesting runtime semantics depend on the specific feature enabled by " "the future statement." msgstr "" -#: reference/simple_stmts.rst:914 +#: reference/simple_stmts.rst:915 msgid "Note that there is nothing special about the statement::" msgstr "" -#: reference/simple_stmts.rst:918 +#: reference/simple_stmts.rst:919 msgid "" "That is not a future statement; it's an ordinary import statement with no " "special semantics or syntax restrictions." msgstr "" -#: reference/simple_stmts.rst:921 +#: reference/simple_stmts.rst:922 msgid "" "Code compiled by calls to the built-in functions :func:`exec` and :func:" "`compile` that occur in a module :mod:`M` containing a future statement " @@ -954,7 +954,7 @@ msgid "" "--- see the documentation of that function for details." msgstr "" -#: reference/simple_stmts.rst:927 +#: reference/simple_stmts.rst:928 msgid "" "A future statement typed at an interactive interpreter prompt will take " "effect for the rest of the interpreter session. If an interpreter is " @@ -963,19 +963,19 @@ msgid "" "interactive session started after the script is executed." msgstr "" -#: reference/simple_stmts.rst:935 +#: reference/simple_stmts.rst:936 msgid ":pep:`236` - Back to the __future__" msgstr "" -#: reference/simple_stmts.rst:936 +#: reference/simple_stmts.rst:937 msgid "The original proposal for the __future__ mechanism." msgstr "" -#: reference/simple_stmts.rst:942 +#: reference/simple_stmts.rst:943 msgid "The :keyword:`!global` statement" msgstr "" -#: reference/simple_stmts.rst:952 +#: reference/simple_stmts.rst:953 msgid "" "The :keyword:`global` statement is a declaration which holds for the entire " "current code block. It means that the listed identifiers are to be " @@ -984,13 +984,13 @@ msgid "" "globals without being declared global." msgstr "" -#: reference/simple_stmts.rst:958 +#: reference/simple_stmts.rst:959 msgid "" "Names listed in a :keyword:`global` statement must not be used in the same " "code block textually preceding that :keyword:`!global` statement." msgstr "" -#: reference/simple_stmts.rst:961 +#: reference/simple_stmts.rst:962 msgid "" "Names listed in a :keyword:`global` statement must not be defined as formal " "parameters, or as targets in :keyword:`with` statements or :keyword:`except` " @@ -998,14 +998,14 @@ msgid "" "function definition, :keyword:`import` statement, or variable annotation." msgstr "" -#: reference/simple_stmts.rst:968 +#: reference/simple_stmts.rst:969 msgid "" "The current implementation does not enforce some of these restrictions, but " "programs should not abuse this freedom, as future implementations may " "enforce them or silently change the meaning of the program." msgstr "" -#: reference/simple_stmts.rst:977 +#: reference/simple_stmts.rst:978 msgid "" "**Programmer's note:** :keyword:`global` is a directive to the parser. It " "applies only to code parsed at the same time as the :keyword:`!global` " @@ -1017,11 +1017,11 @@ msgid "" "func:`compile` functions." msgstr "" -#: reference/simple_stmts.rst:989 +#: reference/simple_stmts.rst:990 msgid "The :keyword:`!nonlocal` statement" msgstr "" -#: reference/simple_stmts.rst:997 +#: reference/simple_stmts.rst:998 msgid "" "The :keyword:`nonlocal` statement causes the listed identifiers to refer to " "previously bound variables in the nearest enclosing scope excluding globals. " @@ -1030,7 +1030,7 @@ msgid "" "variables outside of the local scope besides the global (module) scope." msgstr "" -#: reference/simple_stmts.rst:1003 +#: reference/simple_stmts.rst:1004 msgid "" "Names listed in a :keyword:`nonlocal` statement, unlike those listed in a :" "keyword:`global` statement, must refer to pre-existing bindings in an " @@ -1038,471 +1038,528 @@ msgid "" "be determined unambiguously)." msgstr "" -#: reference/simple_stmts.rst:1008 +#: reference/simple_stmts.rst:1009 msgid "" "Names listed in a :keyword:`nonlocal` statement must not collide with pre-" "existing bindings in the local scope." msgstr "" -#: reference/simple_stmts.rst:1013 +#: reference/simple_stmts.rst:1014 msgid ":pep:`3104` - Access to Names in Outer Scopes" msgstr "" -#: reference/simple_stmts.rst:1014 +#: reference/simple_stmts.rst:1015 msgid "The specification for the :keyword:`nonlocal` statement." msgstr "" +#: reference/simple_stmts.rst:1020 +msgid "The :keyword:`!type` statement" +msgstr "" + +#: reference/simple_stmts.rst:1027 +msgid "" +"The :keyword:`!type` statement declares a type alias, which is an instance " +"of :class:`typing.TypeAliasType`." +msgstr "" + +#: reference/simple_stmts.rst:1030 +msgid "For example, the following statement creates a type alias::" +msgstr "" + +#: reference/simple_stmts.rst:1034 +msgid "This code is roughly equivalent to::" +msgstr "" + +#: reference/simple_stmts.rst:1040 +msgid "" +"``annotation-def`` indicates an :ref:`annotation scope `, " +"which behaves mostly like a function, but with several small differences." +msgstr "" + +#: reference/simple_stmts.rst:1043 +msgid "" +"The value of the type alias is evaluated in the annotation scope. It is not " +"evaluated when the type alias is created, but only when the value is " +"accessed through the type alias's :attr:`!__value__` attribute (see :ref:" +"`lazy-evaluation`). This allows the type alias to refer to names that are " +"not yet defined." +msgstr "" + +#: reference/simple_stmts.rst:1049 +msgid "" +"Type aliases may be made generic by adding a :ref:`type parameter list ` after the name. See :ref:`generic-type-aliases` for more." +msgstr "" + +#: reference/simple_stmts.rst:1052 +msgid ":keyword:`!type` is a :ref:`soft keyword `." +msgstr "" + +#: reference/simple_stmts.rst:1059 +msgid ":pep:`695` - Type Parameter Syntax" +msgstr "" + +#: reference/simple_stmts.rst:1059 +msgid "" +"Introduced the :keyword:`!type` statement and syntax for generic classes and " +"functions." +msgstr "" + #: reference/simple_stmts.rst:8 msgid "simple" msgstr "" -#: reference/simple_stmts.rst:38 reference/simple_stmts.rst:262 -#: reference/simple_stmts.rst:378 reference/simple_stmts.rst:443 -#: reference/simple_stmts.rst:482 reference/simple_stmts.rst:555 -#: reference/simple_stmts.rst:703 reference/simple_stmts.rst:858 -#: reference/simple_stmts.rst:991 +#: reference/simple_stmts.rst:39 reference/simple_stmts.rst:263 +#: reference/simple_stmts.rst:379 reference/simple_stmts.rst:444 +#: reference/simple_stmts.rst:483 reference/simple_stmts.rst:556 +#: reference/simple_stmts.rst:704 reference/simple_stmts.rst:859 +#: reference/simple_stmts.rst:992 reference/simple_stmts.rst:1022 msgid "statement" msgstr "" -#: reference/simple_stmts.rst:41 +#: reference/simple_stmts.rst:42 msgid "expression" msgstr "" -#: reference/simple_stmts.rst:41 reference/simple_stmts.rst:115 -#: reference/simple_stmts.rst:443 +#: reference/simple_stmts.rst:42 reference/simple_stmts.rst:116 +#: reference/simple_stmts.rst:444 msgid "list" msgstr "" -#: reference/simple_stmts.rst:972 +#: reference/simple_stmts.rst:973 msgid "built-in function" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "repr" msgstr "" -#: reference/simple_stmts.rst:74 reference/simple_stmts.rst:195 -#: reference/simple_stmts.rst:577 +#: reference/simple_stmts.rst:75 reference/simple_stmts.rst:196 +#: reference/simple_stmts.rst:578 msgid "object" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "None" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "string" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "conversion" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "output" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "standard" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "writing" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "values" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "procedure" msgstr "" -#: reference/simple_stmts.rst:55 +#: reference/simple_stmts.rst:56 msgid "call" msgstr "" -#: reference/simple_stmts.rst:74 +#: reference/simple_stmts.rst:75 msgid "= (equals)" msgstr "" -#: reference/simple_stmts.rst:74 +#: reference/simple_stmts.rst:75 msgid "assignment statement" msgstr "" -#: reference/simple_stmts.rst:115 reference/simple_stmts.rst:186 -#: reference/simple_stmts.rst:262 reference/simple_stmts.rst:321 +#: reference/simple_stmts.rst:116 reference/simple_stmts.rst:187 +#: reference/simple_stmts.rst:263 reference/simple_stmts.rst:322 msgid "assignment" msgstr "" -#: reference/simple_stmts.rst:728 reference/simple_stmts.rst:944 +#: reference/simple_stmts.rst:729 reference/simple_stmts.rst:945 msgid "binding" msgstr "" -#: reference/simple_stmts.rst:456 reference/simple_stmts.rst:783 -#: reference/simple_stmts.rst:944 +#: reference/simple_stmts.rst:457 reference/simple_stmts.rst:784 +#: reference/simple_stmts.rst:945 msgid "name" msgstr "" -#: reference/simple_stmts.rst:74 +#: reference/simple_stmts.rst:75 msgid "rebinding" msgstr "" -#: reference/simple_stmts.rst:186 +#: reference/simple_stmts.rst:187 msgid "mutable" msgstr "" -#: reference/simple_stmts.rst:158 reference/simple_stmts.rst:465 +#: reference/simple_stmts.rst:159 reference/simple_stmts.rst:466 msgid "attribute" msgstr "" -#: reference/simple_stmts.rst:115 reference/simple_stmts.rst:682 +#: reference/simple_stmts.rst:116 reference/simple_stmts.rst:683 msgid "target" msgstr "" -#: reference/simple_stmts.rst:378 reference/simple_stmts.rst:944 -#: reference/simple_stmts.rst:991 +#: reference/simple_stmts.rst:379 reference/simple_stmts.rst:945 +#: reference/simple_stmts.rst:992 msgid ", (comma)" msgstr "" -#: reference/simple_stmts.rst:115 +#: reference/simple_stmts.rst:116 msgid "in target list" msgstr "" -#: reference/simple_stmts.rst:809 +#: reference/simple_stmts.rst:810 msgid "* (asterisk)" msgstr "" -#: reference/simple_stmts.rst:115 +#: reference/simple_stmts.rst:116 msgid "in assignment target list" msgstr "" -#: reference/simple_stmts.rst:115 +#: reference/simple_stmts.rst:116 msgid "[] (square brackets)" msgstr "" -#: reference/simple_stmts.rst:115 +#: reference/simple_stmts.rst:116 msgid "() (parentheses)" msgstr "" -#: reference/simple_stmts.rst:152 +#: reference/simple_stmts.rst:153 msgid "destructor" msgstr "" -#: reference/simple_stmts.rst:186 +#: reference/simple_stmts.rst:187 msgid "subscription" msgstr "" -#: reference/simple_stmts.rst:195 +#: reference/simple_stmts.rst:196 msgid "sequence" msgstr "" -#: reference/simple_stmts.rst:206 +#: reference/simple_stmts.rst:207 msgid "mapping" msgstr "" -#: reference/simple_stmts.rst:206 +#: reference/simple_stmts.rst:207 msgid "dictionary" msgstr "" -#: reference/simple_stmts.rst:219 +#: reference/simple_stmts.rst:220 msgid "slicing" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "augmented" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "assignment, augmented" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "+=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "augmented assignment" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "-=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "*=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "/=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "%=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "&=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "^=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "|=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "**=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "//=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid ">>=" msgstr "" -#: reference/simple_stmts.rst:262 +#: reference/simple_stmts.rst:263 msgid "<<=" msgstr "" -#: reference/simple_stmts.rst:321 +#: reference/simple_stmts.rst:322 msgid "annotated" msgstr "" -#: reference/simple_stmts.rst:321 +#: reference/simple_stmts.rst:322 msgid "assignment, annotated" msgstr "" -#: reference/simple_stmts.rst:321 +#: reference/simple_stmts.rst:322 msgid ": (colon)" msgstr "" -#: reference/simple_stmts.rst:321 +#: reference/simple_stmts.rst:322 msgid "annotated variable" msgstr "" -#: reference/simple_stmts.rst:378 +#: reference/simple_stmts.rst:379 msgid "assert" msgstr "" -#: reference/simple_stmts.rst:378 +#: reference/simple_stmts.rst:379 msgid "debugging" msgstr "" -#: reference/simple_stmts.rst:378 +#: reference/simple_stmts.rst:379 msgid "assertions" msgstr "" -#: reference/simple_stmts.rst:378 +#: reference/simple_stmts.rst:379 msgid "expression list" msgstr "" -#: reference/simple_stmts.rst:399 +#: reference/simple_stmts.rst:400 msgid "__debug__" msgstr "" -#: reference/simple_stmts.rst:519 reference/simple_stmts.rst:587 -#: reference/simple_stmts.rst:728 +#: reference/simple_stmts.rst:520 reference/simple_stmts.rst:588 +#: reference/simple_stmts.rst:729 msgid "exception" msgstr "" -#: reference/simple_stmts.rst:399 +#: reference/simple_stmts.rst:400 msgid "AssertionError" msgstr "" -#: reference/simple_stmts.rst:421 +#: reference/simple_stmts.rst:422 msgid "pass" msgstr "" -#: reference/simple_stmts.rst:421 +#: reference/simple_stmts.rst:422 msgid "null" msgstr "" -#: reference/simple_stmts.rst:421 +#: reference/simple_stmts.rst:422 msgid "operation" msgstr "" -#: reference/simple_stmts.rst:443 +#: reference/simple_stmts.rst:444 msgid "del" msgstr "" -#: reference/simple_stmts.rst:465 +#: reference/simple_stmts.rst:466 msgid "deletion" msgstr "" -#: reference/simple_stmts.rst:944 +#: reference/simple_stmts.rst:945 msgid "global" msgstr "" -#: reference/simple_stmts.rst:456 +#: reference/simple_stmts.rst:457 msgid "unbinding" msgstr "" -#: reference/simple_stmts.rst:482 +#: reference/simple_stmts.rst:483 msgid "return" msgstr "" -#: reference/simple_stmts.rst:519 +#: reference/simple_stmts.rst:520 msgid "function" msgstr "" -#: reference/simple_stmts.rst:482 +#: reference/simple_stmts.rst:483 msgid "definition" msgstr "" -#: reference/simple_stmts.rst:482 +#: reference/simple_stmts.rst:483 msgid "class" msgstr "" -#: reference/simple_stmts.rst:682 reference/simple_stmts.rst:703 -#: reference/simple_stmts.rst:728 +#: reference/simple_stmts.rst:683 reference/simple_stmts.rst:704 +#: reference/simple_stmts.rst:729 msgid "keyword" msgstr "" -#: reference/simple_stmts.rst:691 reference/simple_stmts.rst:703 +#: reference/simple_stmts.rst:692 reference/simple_stmts.rst:704 msgid "finally" msgstr "" -#: reference/simple_stmts.rst:519 +#: reference/simple_stmts.rst:520 msgid "yield" msgstr "" -#: reference/simple_stmts.rst:519 +#: reference/simple_stmts.rst:520 msgid "generator" msgstr "" -#: reference/simple_stmts.rst:519 +#: reference/simple_stmts.rst:520 msgid "iterator" msgstr "" -#: reference/simple_stmts.rst:519 +#: reference/simple_stmts.rst:520 msgid "StopIteration" msgstr "" -#: reference/simple_stmts.rst:555 +#: reference/simple_stmts.rst:556 msgid "raise" msgstr "" -#: reference/simple_stmts.rst:555 +#: reference/simple_stmts.rst:556 msgid "raising" msgstr "" -#: reference/simple_stmts.rst:555 +#: reference/simple_stmts.rst:556 msgid "__traceback__ (exception attribute)" msgstr "" -#: reference/simple_stmts.rst:577 +#: reference/simple_stmts.rst:578 msgid "traceback" msgstr "" -#: reference/simple_stmts.rst:587 +#: reference/simple_stmts.rst:588 msgid "chaining" msgstr "" -#: reference/simple_stmts.rst:587 +#: reference/simple_stmts.rst:588 msgid "__cause__ (exception attribute)" msgstr "" -#: reference/simple_stmts.rst:587 +#: reference/simple_stmts.rst:588 msgid "__context__ (exception attribute)" msgstr "" -#: reference/simple_stmts.rst:669 +#: reference/simple_stmts.rst:670 msgid "break" msgstr "" -#: reference/simple_stmts.rst:703 +#: reference/simple_stmts.rst:704 msgid "for" msgstr "" -#: reference/simple_stmts.rst:703 +#: reference/simple_stmts.rst:704 msgid "while" msgstr "" -#: reference/simple_stmts.rst:703 +#: reference/simple_stmts.rst:704 msgid "loop" msgstr "" -#: reference/simple_stmts.rst:682 +#: reference/simple_stmts.rst:683 msgid "else" msgstr "" -#: reference/simple_stmts.rst:682 +#: reference/simple_stmts.rst:683 msgid "loop control" msgstr "" -#: reference/simple_stmts.rst:703 +#: reference/simple_stmts.rst:704 msgid "continue" msgstr "" -#: reference/simple_stmts.rst:831 +#: reference/simple_stmts.rst:832 msgid "import" msgstr "" -#: reference/simple_stmts.rst:728 +#: reference/simple_stmts.rst:729 msgid "module" msgstr "" -#: reference/simple_stmts.rst:728 +#: reference/simple_stmts.rst:729 msgid "importing" msgstr "" -#: reference/simple_stmts.rst:783 +#: reference/simple_stmts.rst:784 msgid "from" msgstr "" -#: reference/simple_stmts.rst:770 +#: reference/simple_stmts.rst:771 msgid "as" msgstr "" -#: reference/simple_stmts.rst:728 +#: reference/simple_stmts.rst:729 msgid "ImportError" msgstr "" -#: reference/simple_stmts.rst:770 reference/simple_stmts.rst:809 +#: reference/simple_stmts.rst:771 reference/simple_stmts.rst:810 msgid "import statement" msgstr "" -#: reference/simple_stmts.rst:815 +#: reference/simple_stmts.rst:816 msgid "__all__ (optional module attribute)" msgstr "" -#: reference/simple_stmts.rst:831 +#: reference/simple_stmts.rst:832 msgid "relative" msgstr "" -#: reference/simple_stmts.rst:858 +#: reference/simple_stmts.rst:859 msgid "future" msgstr "" -#: reference/simple_stmts.rst:858 +#: reference/simple_stmts.rst:859 msgid "__future__" msgstr "" -#: reference/simple_stmts.rst:858 +#: reference/simple_stmts.rst:859 msgid "future statement" msgstr "" -#: reference/simple_stmts.rst:991 +#: reference/simple_stmts.rst:992 msgid "identifier list" msgstr "" -#: reference/simple_stmts.rst:972 +#: reference/simple_stmts.rst:973 msgid "exec" msgstr "" -#: reference/simple_stmts.rst:972 +#: reference/simple_stmts.rst:973 msgid "eval" msgstr "" -#: reference/simple_stmts.rst:972 +#: reference/simple_stmts.rst:973 msgid "compile" msgstr "" -#: reference/simple_stmts.rst:991 +#: reference/simple_stmts.rst:992 msgid "nonlocal" msgstr "" + +#: reference/simple_stmts.rst:1022 +msgid "type" +msgstr "" diff --git a/tutorial/classes.po b/tutorial/classes.po index a2fcf0126..da799b24d 100644 --- a/tutorial/classes.po +++ b/tutorial/classes.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2023-02-02 02:32+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -908,17 +908,17 @@ msgstr "" #: tutorial/classes.rst:584 #, fuzzy msgid "" -"The name :class:`!BaseClassName` must be defined in a scope containing the " -"derived class definition. In place of a base class name, other arbitrary " -"expressions are also allowed. This can be useful, for example, when the " -"base class is defined in another module::" +"The name :class:`!BaseClassName` must be defined in a namespace accessible " +"from the scope containing the derived class definition. In place of a base " +"class name, other arbitrary expressions are also allowed. This can be " +"useful, for example, when the base class is defined in another module::" msgstr "" ":class:`BaseClassName` adı, türetilmiş sınıf tanımını içeren bir kapsamda " "tanımlanmalıdır. Temel sınıf adı yerine, diğer rasgele ifadelere de izin " "verilir. Bu, örneğin, temel sınıf başka bir modülde tanımlandığında yararlı " "olabilir::" -#: tutorial/classes.rst:591 +#: tutorial/classes.rst:592 msgid "" "Execution of a derived class definition proceeds the same as for a base " "class. When the class object is constructed, the base class is remembered. " @@ -933,7 +933,7 @@ msgstr "" "arama temel sınıfa bakmaya devam eder. Temel sınıfın kendisi başka bir " "sınıftan türetilmişse, bu kural özyinelemeli olarak uygulanır." -#: tutorial/classes.rst:597 +#: tutorial/classes.rst:598 msgid "" "There's nothing special about instantiation of derived classes: " "``DerivedClassName()`` creates a new instance of the class. Method " @@ -947,7 +947,7 @@ msgstr "" "gerekirse temel sınıflar zincirinin aşağısına inilir ve bu bir fonksiyon " "nesnesi veriyorsa metot başvurusu geçerlidir." -#: tutorial/classes.rst:603 +#: tutorial/classes.rst:604 msgid "" "Derived classes may override methods of their base classes. Because methods " "have no special privileges when calling other methods of the same object, a " @@ -962,7 +962,7 @@ msgstr "" "çağırabilir. (C++ programcıları için: Python'daki tüm yöntemler etkili bir " "şekilde ``sanal``.)" -#: tutorial/classes.rst:609 +#: tutorial/classes.rst:610 msgid "" "An overriding method in a derived class may in fact want to extend rather " "than simply replace the base class method of the same name. There is a " @@ -978,11 +978,11 @@ msgstr "" "için de yararlıdır. (Bunun yalnızca temel sınıfa genel kapsamda " "``BaseClassName`` olarak erişilebiliyorsa çalıştığını unutmayın.)" -#: tutorial/classes.rst:616 +#: tutorial/classes.rst:617 msgid "Python has two built-in functions that work with inheritance:" msgstr "Python'un kalıtımla çalışan iki yerleşik fonksiyonu vardır:" -#: tutorial/classes.rst:618 +#: tutorial/classes.rst:619 msgid "" "Use :func:`isinstance` to check an instance's type: ``isinstance(obj, int)`` " "will be ``True`` only if ``obj.__class__`` is :class:`int` or some class " @@ -992,7 +992,7 @@ msgstr "" "``isinstance(obj, int)`` yalnızca ``obj.__class__`` :class:`int` veya :class:" "`int` sınıfından türetilmiş bir sınıfsa ``True`` olacaktır." -#: tutorial/classes.rst:622 +#: tutorial/classes.rst:623 msgid "" "Use :func:`issubclass` to check class inheritance: ``issubclass(bool, int)`` " "is ``True`` since :class:`bool` is a subclass of :class:`int`. However, " @@ -1004,11 +1004,11 @@ msgstr "" "'in bir alt sınıfıdır. Ancak, ``issubclass(float, int)`` ``False`` " "olduğundan :class:`float`, :class:`int` alt sınıfı değildir." -#: tutorial/classes.rst:632 +#: tutorial/classes.rst:633 msgid "Multiple Inheritance" msgstr "Çoklu Kalıtım" -#: tutorial/classes.rst:634 +#: tutorial/classes.rst:635 msgid "" "Python supports a form of multiple inheritance as well. A class definition " "with multiple base classes looks like this::" @@ -1016,7 +1016,7 @@ msgstr "" "Python, çoklu kalıtım biçimini de destekler. Birden çok temel sınıf içeren " "bir sınıf tanımı şöyle görünür::" -#: tutorial/classes.rst:644 +#: tutorial/classes.rst:645 #, fuzzy msgid "" "For most purposes, in the simplest cases, you can think of the search for " @@ -1034,7 +1034,7 @@ msgstr "" "(özyinelemeli olarak) :class:`Base1` temel sınıflarında aranır ve orada " "bulunamazsa :class:`Base2` vb." -#: tutorial/classes.rst:651 +#: tutorial/classes.rst:652 msgid "" "In fact, it is slightly more complex than that; the method resolution order " "changes dynamically to support cooperative calls to :func:`super`. This " @@ -1048,7 +1048,7 @@ msgstr "" "olarak bilinir ve tekli kalıtım dillerinde bulunan süper çağrıdan daha " "güçlüdür." -#: tutorial/classes.rst:657 +#: tutorial/classes.rst:658 msgid "" "Dynamic ordering is necessary because all cases of multiple inheritance " "exhibit one or more diamond relationships (where at least one of the parent " @@ -1077,11 +1077,11 @@ msgstr "" "ile güvenilir ve genişletilebilir sınıflar tasarlamayı mümkün kılar. Daha " "fazla ayrıntı için bkz. https://www.python.org/download/releases/2.3/mro/." -#: tutorial/classes.rst:674 +#: tutorial/classes.rst:675 msgid "Private Variables" msgstr "Özel Değişkenler" -#: tutorial/classes.rst:676 +#: tutorial/classes.rst:677 msgid "" "\"Private\" instance variables that cannot be accessed except from inside an " "object don't exist in Python. However, there is a convention that is " @@ -1097,7 +1097,7 @@ msgstr "" "veya veri üyesi olsun). Bir uygulama detayıdır ve önceden haber " "verilmeksizin değiştirilebilir." -#: tutorial/classes.rst:686 +#: tutorial/classes.rst:687 msgid "" "Since there is a valid use-case for class-private members (namely to avoid " "name clashes of names with names defined by subclasses), there is limited " @@ -1116,7 +1116,7 @@ msgstr "" "değiştirilir; Bu mangling, bir sınıfın tanımı içinde gerçekleştiği sürece " "tanımlayıcının söz dizimsel konumuna bakılmaksızın yapılır." -#: tutorial/classes.rst:695 +#: tutorial/classes.rst:696 msgid "" "Name mangling is helpful for letting subclasses override methods without " "breaking intraclass method calls. For example::" @@ -1124,7 +1124,7 @@ msgstr "" "Ad mangling, alt sınıfların sınıf içi metot çağrılarını kesmeden metotları " "geçersiz kılmasına izin vermek için yararlıdır. Mesela::" -#: tutorial/classes.rst:717 +#: tutorial/classes.rst:718 msgid "" "The above example would work even if ``MappingSubclass`` were to introduce a " "``__update`` identifier since it is replaced with ``_Mapping__update`` in " @@ -1136,7 +1136,7 @@ msgstr "" "``_MappingSubclass__update`` ile değiştirildiği için ``__update`` " "tanımlayıcısı tanıtsa bile çalışır." -#: tutorial/classes.rst:722 +#: tutorial/classes.rst:723 msgid "" "Note that the mangling rules are designed mostly to avoid accidents; it " "still is possible to access or modify a variable that is considered " @@ -1148,7 +1148,7 @@ msgstr "" "hala mümkündür. Bu, hata ayıklayıcı gibi özel durumlarda bile yararlı " "olabilir." -#: tutorial/classes.rst:726 +#: tutorial/classes.rst:727 msgid "" "Notice that code passed to ``exec()`` or ``eval()`` does not consider the " "classname of the invoking class to be the current class; this is similar to " @@ -1163,11 +1163,11 @@ msgstr "" "benzer. Aynı kısıtlama ``getattr()``, ``setattr()`` ve ``delattr()`` ve " "doğrudan ``__dict__`` atıfta bulunurken de geçerlidir." -#: tutorial/classes.rst:737 +#: tutorial/classes.rst:738 msgid "Odds and Ends" msgstr "Oranlar ve Bitişler" -#: tutorial/classes.rst:739 +#: tutorial/classes.rst:740 msgid "" "Sometimes it is useful to have a data type similar to the Pascal \"record\" " "or C \"struct\", bundling together a few named data items. The idiomatic " @@ -1177,7 +1177,7 @@ msgstr "" "'u veya C *struct* 'ına benzer bir veri türüne sahip olmak yararlıdır. " "Deyimsel yaklaşım, bu amaç için :mod:`dataclasses` kullanmaktır::" -#: tutorial/classes.rst:759 +#: tutorial/classes.rst:760 #, fuzzy msgid "" "A piece of Python code that expects a particular abstract data type can " @@ -1194,7 +1194,7 @@ msgstr "" "değişken olarak geçiren :meth:`read` ve :meth:`!readline` yöntemlerine sahip " "bir sınıf tanımlayabilirsiniz." -#: tutorial/classes.rst:771 +#: tutorial/classes.rst:772 #, fuzzy msgid "" "Instance method objects have attributes, too: ``m.__self__`` is the instance " @@ -1205,11 +1205,11 @@ msgstr "" "örnek nesnedir :meth:`m`, ve ``m.__func__`` yönteme karşılık gelen fonksiyon " "nesnesidir." -#: tutorial/classes.rst:779 +#: tutorial/classes.rst:780 msgid "Iterators" msgstr "Yineleyiciler" -#: tutorial/classes.rst:781 +#: tutorial/classes.rst:782 msgid "" "By now you have probably noticed that most container objects can be looped " "over using a :keyword:`for` statement::" @@ -1217,7 +1217,7 @@ msgstr "" "Şimdiye kadar büyük olasılıkla çoğu kapsayıcı nesnenin bir :keyword:`for` " "deyimi kullanılarak döngüye alınabileceğini fark etmişsinizdir::" -#: tutorial/classes.rst:795 +#: tutorial/classes.rst:796 msgid "" "This style of access is clear, concise, and convenient. The use of " "iterators pervades and unifies Python. Behind the scenes, the :keyword:" @@ -1239,7 +1239,7 @@ msgstr "" "fonksiyonunu kullanarak :meth:`~iterator.__next__` yöntemini " "çağırabilirsiniz; Bu örnek, her şeyin nasıl çalıştığını gösterir::" -#: tutorial/classes.rst:820 +#: tutorial/classes.rst:821 #, fuzzy msgid "" "Having seen the mechanics behind the iterator protocol, it is easy to add " @@ -1253,11 +1253,11 @@ msgstr "" "bir nesne döndüren :meth:`__iter__` metodunu tanımlayın. Sınıf :meth:" "`__next__` tanımlarsa, :meth:`__iter__` sadece ``self`` döndürebilir::" -#: tutorial/classes.rst:857 +#: tutorial/classes.rst:858 msgid "Generators" msgstr "Üreteçler" -#: tutorial/classes.rst:859 +#: tutorial/classes.rst:860 msgid "" ":term:`Generators ` are a simple and powerful tool for creating " "iterators. They are written like regular functions but use the :keyword:" @@ -1273,7 +1273,7 @@ msgstr "" "değerlerini ve hangi deyimin en son yürütüldüğını hatırlar). Bu örnek, " "üreteçlerin oluşturulmasının ne kadar da kolay olabileceğini gösterir::" -#: tutorial/classes.rst:880 +#: tutorial/classes.rst:881 #, fuzzy msgid "" "Anything that can be done with generators can also be done with class-based " @@ -1286,7 +1286,7 @@ msgstr "" "şey: :meth:`__iter__` ve :meth:`~generator.__next__` yöntemlerinin otomatik " "olarak oluşturulmasıdır." -#: tutorial/classes.rst:885 +#: tutorial/classes.rst:886 msgid "" "Another key feature is that the local variables and execution state are " "automatically saved between calls. This made the function easier to write " @@ -1298,7 +1298,7 @@ msgstr "" "kolaylaştırdı ve ``self.index`` ve ``self.data`` gibi değişkenleri " "kullanmaya kıyasla çok daha net hale getirdi." -#: tutorial/classes.rst:890 +#: tutorial/classes.rst:891 msgid "" "In addition to automatic method creation and saving program state, when " "generators terminate, they automatically raise :exc:`StopIteration`. In " @@ -1310,11 +1310,11 @@ msgstr "" "Birlikte, bu özellikler normal bir işlev yazmaktan daha fazla çaba " "harcamadan yinelemeler oluşturmayı kolaylaştırır." -#: tutorial/classes.rst:899 +#: tutorial/classes.rst:900 msgid "Generator Expressions" msgstr "Üreteç İfadeleri" -#: tutorial/classes.rst:901 +#: tutorial/classes.rst:902 msgid "" "Some simple generators can be coded succinctly as expressions using a syntax " "similar to list comprehensions but with parentheses instead of square " @@ -1330,15 +1330,15 @@ msgstr "" "ancak daha az çok yönlüdür ve aynı özellikle liste anlamalarından daha " "bellek dostu olma eğilimindedir." -#: tutorial/classes.rst:908 +#: tutorial/classes.rst:909 msgid "Examples::" msgstr "Örnekler::" -#: tutorial/classes.rst:929 +#: tutorial/classes.rst:930 msgid "Footnotes" msgstr "Dipnotlar" -#: tutorial/classes.rst:930 +#: tutorial/classes.rst:931 msgid "" "Except for one thing. Module objects have a secret read-only attribute " "called :attr:`~object.__dict__` which returns the dictionary used to " @@ -1363,10 +1363,10 @@ msgstr "Metot Nesneleri" msgid "method" msgstr "" -#: tutorial/classes.rst:683 +#: tutorial/classes.rst:684 msgid "name" msgstr "" -#: tutorial/classes.rst:683 +#: tutorial/classes.rst:684 msgid "mangling" msgstr "" diff --git a/tutorial/floatingpoint.po b/tutorial/floatingpoint.po index 7a004f8c4..b9f5b3679 100644 --- a/tutorial/floatingpoint.po +++ b/tutorial/floatingpoint.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2022-12-28 22:25+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -17,16 +17,17 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: tutorial/floatingpoint.rst:9 +#: tutorial/floatingpoint.rst:10 msgid "Floating Point Arithmetic: Issues and Limitations" msgstr "Kayan Nokta Aritmetiği: Sorunlar ve Sınırlamalar" -#: tutorial/floatingpoint.rst:14 +#: tutorial/floatingpoint.rst:16 +#, fuzzy msgid "" "Floating-point numbers are represented in computer hardware as base 2 " -"(binary) fractions. For example, the **decimal** fraction ``0.125`` has " -"value 1/10 + 2/100 + 5/1000, and in the same way the **binary** fraction " -"``0.001`` has value 0/2 + 0/4 + 1/8. These two fractions have identical " +"(binary) fractions. For example, the **decimal** fraction ``0.625`` has " +"value 6/10 + 2/100 + 5/1000, and in the same way the **binary** fraction " +"``0.101`` has value 1/2 + 0/4 + 1/8. These two fractions have identical " "values, the only real difference being that the first is written in base 10 " "fractional notation, and the second in base 2." msgstr "" @@ -37,7 +38,7 @@ msgstr "" "sahiptir, tek gerçek fark, birincisinin 10 tabanlı kesirli gösterimde ve " "ikincisinin 2 tabanlı olarak yazılmasıdır." -#: tutorial/floatingpoint.rst:21 +#: tutorial/floatingpoint.rst:23 msgid "" "Unfortunately, most decimal fractions cannot be represented exactly as " "binary fractions. A consequence is that, in general, the decimal floating-" @@ -49,7 +50,7 @@ msgstr "" "kayan noktalı sayılar, makinede gerçekte depolanan ikili kayan noktalı " "sayılar tarafından yalnızca yaklaşık olarak gösterilir." -#: tutorial/floatingpoint.rst:26 +#: tutorial/floatingpoint.rst:28 msgid "" "The problem is easier to understand at first in base 10. Consider the " "fraction 1/3. You can approximate that as a base 10 fraction::" @@ -58,11 +59,11 @@ msgstr "" "düşünün. Bunu 10 tabanında bir kesir olarak yaklaşık olarak " "hesaplayabilirsiniz::" -#: tutorial/floatingpoint.rst:35 +#: tutorial/floatingpoint.rst:37 msgid "or, better, ::" msgstr "ya da daha iyisi ::" -#: tutorial/floatingpoint.rst:39 +#: tutorial/floatingpoint.rst:41 msgid "" "and so on. No matter how many digits you're willing to write down, the " "result will never be exactly 1/3, but will be an increasingly better " @@ -72,7 +73,7 @@ msgstr "" "tam olarak 1/3 olmayacak, ancak 1/3'ün giderek daha iyi bir yaklaşımı " "olacaktır." -#: tutorial/floatingpoint.rst:43 +#: tutorial/floatingpoint.rst:45 msgid "" "In the same way, no matter how many base 2 digits you're willing to use, the " "decimal value 0.1 cannot be represented exactly as a base 2 fraction. In " @@ -82,7 +83,7 @@ msgstr "" "ondalık değeri tam olarak 2 tabanı kesri olarak gösterilemez. Taban 2'de " "1/10 sonsuza kadar tekrar eden bir kesirdir ::" -#: tutorial/floatingpoint.rst:49 +#: tutorial/floatingpoint.rst:51 msgid "" "Stop at any finite number of bits, and you get an approximation. On most " "machines today, floats are approximated using a binary fraction with the " @@ -98,13 +99,14 @@ msgstr "" "gerçek değerine yakın ancak tam olarak eşit olmayan ``3602879701896397 / 2 " "** 55`` şeklindedir." -#: tutorial/floatingpoint.rst:56 +#: tutorial/floatingpoint.rst:58 +#, fuzzy msgid "" "Many users are not aware of the approximation because of the way values are " "displayed. Python only prints a decimal approximation to the true decimal " "value of the binary approximation stored by the machine. On most machines, " "if Python were to print the true decimal value of the binary approximation " -"stored for 0.1, it would have to display ::" +"stored for 0.1, it would have to display::" msgstr "" "Birçok kullanıcı, değerlerin görüntülenme şekli nedeniyle bu yaklaşımın " "farkında değildir. Python, makine tarafından depolanan ikili yaklaşımın " @@ -112,16 +114,17 @@ msgstr "" "makinede, Python 0.1 için saklanan ikili yaklaşımın gerçek ondalık değerini " "yazdıracak olsaydı, ::" -#: tutorial/floatingpoint.rst:65 +#: tutorial/floatingpoint.rst:67 +#, fuzzy msgid "" "That is more digits than most people find useful, so Python keeps the number " -"of digits manageable by displaying a rounded value instead ::" +"of digits manageable by displaying a rounded value instead:" msgstr "" "Bu çoğu insanın kullanışlı bulacağı seviyeden çok daha fazla basamak olurdu. " "Dolayısıyla, Python sayıları yuvarlayarak basamak sayısını kontrol " "edilebilir seviyede tutar ::" -#: tutorial/floatingpoint.rst:71 +#: tutorial/floatingpoint.rst:75 msgid "" "Just remember, even though the printed result looks like the exact value of " "1/10, the actual stored value is the nearest representable binary fraction." @@ -129,7 +132,7 @@ msgstr "" "Unutmayın, yazdırılan sonuç 1/10'un tam değeri gibi görünse de, saklanan " "gerçek değer temsil edilebilir olan en yakın ikili kesirdir." -#: tutorial/floatingpoint.rst:74 +#: tutorial/floatingpoint.rst:78 msgid "" "Interestingly, there are many different decimal numbers that share the same " "nearest approximate binary fraction. For example, the numbers ``0.1`` and " @@ -146,7 +149,7 @@ msgstr "" "değerlerin tümü aynı yaklaşımı paylaştığından, ``eval(repr(x)) == x`` " "değişmezi korunarak bunlardan herhangi biri görüntülenebilir." -#: tutorial/floatingpoint.rst:82 +#: tutorial/floatingpoint.rst:86 msgid "" "Historically, the Python prompt and built-in :func:`repr` function would " "choose the one with 17 significant digits, ``0.10000000000000001``. " @@ -158,7 +161,7 @@ msgstr "" "itibaren, Python (çoğu sistemde) artık bunlardan en kısa olanı seçebilmekte " "ve basitçe ``0.1`` 'i görüntüleyebilmektedir." -#: tutorial/floatingpoint.rst:87 +#: tutorial/floatingpoint.rst:91 msgid "" "Note that this is in the very nature of binary floating-point: this is not a " "bug in Python, and it is not a bug in your code either. You'll see the same " @@ -171,15 +174,16 @@ msgstr "" "noktalı aritmetiğini destekleyen tüm dillerde aynı şeyi göreceksiniz (bazı " "diller varsayılan olarak veya tüm çıktı modlarında farkı *göstermeyebilir*)." -#: tutorial/floatingpoint.rst:93 +#: tutorial/floatingpoint.rst:97 +#, fuzzy msgid "" "For more pleasant output, you may wish to use string formatting to produce a " -"limited number of significant digits::" +"limited number of significant digits:" msgstr "" "Daha hoş bir çıktı için, sınırlı sayıda anlamlı hane üretmek üzere dize " "biçimlendirmesini kullanmak isteyebilirsiniz::" -#: tutorial/floatingpoint.rst:105 +#: tutorial/floatingpoint.rst:111 msgid "" "It's important to realize that this is, in a real sense, an illusion: you're " "simply rounding the *display* of the true machine value." @@ -187,35 +191,43 @@ msgstr "" "Bunun gerçek anlamda bir yanılsama olduğunun farkına varmak önemlidir: " "gerçek makine değerinin *görüntüsünü* yuvarlıyorsunuz." -#: tutorial/floatingpoint.rst:108 +#: tutorial/floatingpoint.rst:114 +#, fuzzy msgid "" "One illusion may beget another. For example, since 0.1 is not exactly 1/10, " -"summing three values of 0.1 may not yield exactly 0.3, either::" +"summing three values of 0.1 may not yield exactly 0.3, either:" msgstr "" "Bir yanılsama diğerini doğurabilir. Örneğin, 0,1 tam olarak 1/10 " "olmadığından, 0,1'in üç değerini toplamak da tam olarak 0,3 vermeyebilir::" -#: tutorial/floatingpoint.rst:114 +#: tutorial/floatingpoint.rst:122 +#, fuzzy msgid "" "Also, since the 0.1 cannot get any closer to the exact value of 1/10 and 0.3 " "cannot get any closer to the exact value of 3/10, then pre-rounding with :" -"func:`round` function cannot help::" +"func:`round` function cannot help:" msgstr "" "Ayrıca, 0,1 tam 1/10 değerine ve 0,3 tam 3/10 değerine daha fazla " "yaklaşamayacağından, :func:`round` fonksiyonu ile ön yuvarlama yapmak " "yardımcı olamaz::" -#: tutorial/floatingpoint.rst:121 +#: tutorial/floatingpoint.rst:131 +#, fuzzy msgid "" "Though the numbers cannot be made closer to their intended exact values, " -"the :func:`round` function can be useful for post-rounding so that results " -"with inexact values become comparable to one another::" +"the :func:`math.isclose` function can be useful for comparing inexact values:" msgstr "" "Sayılar amaçlanan tam değerlere yaklaştırılamasa da, :func:`round` işlevi, " "kesin olmayan değerlere sahip sonuçların birbiriyle karşılaştırılabilir hale " "gelmesi için sonradan yuvarlama yapmaya yarayabilir::" -#: tutorial/floatingpoint.rst:128 +#: tutorial/floatingpoint.rst:139 +msgid "" +"Alternatively, the :func:`round` function can be used to compare rough " +"approximations::" +msgstr "" + +#: tutorial/floatingpoint.rst:147 #, fuzzy msgid "" "Binary floating-point arithmetic holds many surprises like this. The " @@ -233,7 +245,7 @@ msgstr "" "`The Perils of Floating Point `_ bölümüne " "bakınız." -#: tutorial/floatingpoint.rst:137 +#: tutorial/floatingpoint.rst:156 msgid "" "As that says near the end, \"there are no easy answers.\" Still, don't be " "unduly wary of floating-point! The errors in Python float operations are " @@ -251,7 +263,7 @@ msgstr "" "işleminin yeni bir yuvarlama hatasına maruz kalabileceğini aklınızda " "bulundurmanız gerekir." -#: tutorial/floatingpoint.rst:144 +#: tutorial/floatingpoint.rst:163 msgid "" "While pathological cases do exist, for most casual use of floating-point " "arithmetic you'll see the result you expect in the end if you simply round " @@ -266,7 +278,7 @@ msgstr "" "`formatstrings` içindeki :meth:`str.format` yönteminin biçim " "belirleyicilerine bakın." -#: tutorial/floatingpoint.rst:150 +#: tutorial/floatingpoint.rst:169 msgid "" "For use cases which require exact decimal representation, try using the :mod:" "`decimal` module which implements decimal arithmetic suitable for accounting " @@ -276,7 +288,7 @@ msgstr "" "yüksek hassasiyetli uygulamalar için uygun ondalık aritmetiği uygulayan :mod:" "`decimal` modülünü kullanmayı deneyin." -#: tutorial/floatingpoint.rst:154 +#: tutorial/floatingpoint.rst:173 msgid "" "Another form of exact arithmetic is supported by the :mod:`fractions` module " "which implements arithmetic based on rational numbers (so the numbers like " @@ -286,7 +298,7 @@ msgstr "" "uygulayan :mod:`fractions` modülü tarafından desteklenir (böylece 1/3 gibi " "sayılar tam olarak temsil edilebilir)." -#: tutorial/floatingpoint.rst:158 +#: tutorial/floatingpoint.rst:177 #, fuzzy msgid "" "If you are a heavy user of floating-point operations you should take a look " @@ -298,43 +310,47 @@ msgstr "" "SciPy projesi tarafından sağlanan matematiksel ve istatistiksel işlemler " "için olan birçok pakete göz atmalısınız. adresine bakın." -#: tutorial/floatingpoint.rst:162 +#: tutorial/floatingpoint.rst:181 +#, fuzzy msgid "" "Python provides tools that may help on those rare occasions when you really " "*do* want to know the exact value of a float. The :meth:`float." -"as_integer_ratio` method expresses the value of a float as a fraction::" +"as_integer_ratio` method expresses the value of a float as a fraction:" msgstr "" "Python, bir kayan noktanın tam değerini *gerçekten* bilmek istediğiniz nadir " "durumlarda yardımcı olabilecek araçlar sağlar. :meth:`float." "as_integer_ratio` metodu bir kayan noktanın değerini kesir olarak ifade " "eder::" -#: tutorial/floatingpoint.rst:171 +#: tutorial/floatingpoint.rst:192 +#, fuzzy msgid "" "Since the ratio is exact, it can be used to losslessly recreate the original " -"value::" +"value:" msgstr "" "Oran tam olduğundan, orijinal değeri kayıpsız olarak yeniden oluşturmak için " "kullanılabilir::" -#: tutorial/floatingpoint.rst:177 +#: tutorial/floatingpoint.rst:200 +#, fuzzy msgid "" "The :meth:`float.hex` method expresses a float in hexadecimal (base 16), " -"again giving the exact value stored by your computer::" +"again giving the exact value stored by your computer:" msgstr "" ":meth:`float.hex` yöntemi bir kayan nokta değerini onaltılık (16 tabanı) " "olarak ifade eder ve yine bilgisayarınız tarafından depolanan tam değeri " "verir::" -#: tutorial/floatingpoint.rst:183 +#: tutorial/floatingpoint.rst:208 +#, fuzzy msgid "" "This precise hexadecimal representation can be used to reconstruct the float " -"value exactly::" +"value exactly:" msgstr "" "Bu hassas onaltılık gösterim, float değerini tam olarak yeniden oluşturmak " "için kullanılabilir::" -#: tutorial/floatingpoint.rst:189 +#: tutorial/floatingpoint.rst:216 msgid "" "Since the representation is exact, it is useful for reliably porting values " "across different versions of Python (platform independence) and exchanging " @@ -346,13 +362,14 @@ msgstr "" "destekleyen diğer dillerle (Java ve C99 gibi) veri alışverişi yapmak için " "kullanışlıdır." -#: tutorial/floatingpoint.rst:193 +#: tutorial/floatingpoint.rst:220 +#, fuzzy msgid "" -"Another helpful tool is the :func:`math.fsum` function which helps mitigate " -"loss-of-precision during summation. It tracks \"lost digits\" as values are " -"added onto a running total. That can make a difference in overall accuracy " -"so that the errors do not accumulate to the point where they affect the " -"final total:" +"Another helpful tool is the :func:`sum` function which helps mitigate loss-" +"of-precision during summation. It uses extended precision for intermediate " +"rounding steps as values are added onto a running total. That can make a " +"difference in overall accuracy so that the errors do not accumulate to the " +"point where they affect the final total:" msgstr "" "Bir başka yararlı araç da toplama sırasında hassasiyet kaybını azaltmaya " "yardımcı olan :func:`math.fsum` işlevidir. Değerler çalışan bir toplam " @@ -360,11 +377,20 @@ msgstr "" "yaratabilir, böylece hatalar nihai toplamı etkileyecek noktaya kadar " "birikmez:" -#: tutorial/floatingpoint.rst:207 +#: tutorial/floatingpoint.rst:233 +msgid "" +"The :func:`math.fsum()` goes further and tracks all of the \"lost digits\" " +"as values are added onto a running total so that the result has only a " +"single rounding. This is slower than :func:`sum` but will be more accurate " +"in uncommon cases where large magnitude inputs mostly cancel each other out " +"leaving a final sum near zero:" +msgstr "" + +#: tutorial/floatingpoint.rst:260 msgid "Representation Error" msgstr "Temsil Hatası" -#: tutorial/floatingpoint.rst:209 +#: tutorial/floatingpoint.rst:262 msgid "" "This section explains the \"0.1\" example in detail, and shows how you can " "perform an exact analysis of cases like this yourself. Basic familiarity " @@ -374,7 +400,7 @@ msgstr "" "tam analizini kendiniz nasıl yapabileceğinizi göstermektedir. İkili kayan " "nokta gösterimine temel düzeyde aşina olunduğu varsayılmaktadır." -#: tutorial/floatingpoint.rst:213 +#: tutorial/floatingpoint.rst:266 msgid "" ":dfn:`Representation error` refers to the fact that some (most, actually) " "decimal fractions cannot be represented exactly as binary (base 2) " @@ -387,7 +413,7 @@ msgstr "" "Bu, Python'un (veya Perl, C, C++, Java, Fortran ve diğerlerinin) genellikle " "beklediğiniz tam ondalık sayıyı göstermemesinin başlıca nedenidir." -#: tutorial/floatingpoint.rst:218 +#: tutorial/floatingpoint.rst:271 #, fuzzy msgid "" "Why is that? 1/10 is not exactly representable as a binary fraction. Since " @@ -406,35 +432,38 @@ msgstr "" "formundaki en yakın kesre dönüştürmeye çalışır, burada *J* tam olarak 53 bit " "içeren bir tamsayıdır. Yeniden Yazma ::" -#: tutorial/floatingpoint.rst:229 +#: tutorial/floatingpoint.rst:282 msgid "as ::" msgstr "şu şekilde ::" -#: tutorial/floatingpoint.rst:233 +#: tutorial/floatingpoint.rst:286 +#, fuzzy msgid "" "and recalling that *J* has exactly 53 bits (is ``>= 2**52`` but ``< " -"2**53``), the best value for *N* is 56::" +"2**53``), the best value for *N* is 56:" msgstr "" "ve *J*'nin tam olarak 53 bit olduğunu hatırlarsak (``>= 2**52`` ama ``< " "2**53``), *N* için en iyi değer 56:'dır:" -#: tutorial/floatingpoint.rst:239 +#: tutorial/floatingpoint.rst:294 +#, fuzzy msgid "" "That is, 56 is the only value for *N* that leaves *J* with exactly 53 bits. " -"The best possible value for *J* is then that quotient rounded::" +"The best possible value for *J* is then that quotient rounded:" msgstr "" "Yani, *N* için *J*'ye tam olarak 53 bit bırakan tek değer 56'dır. O halde " "*J* için mümkün olan en iyi değer, bu bölümün yuvarlanmış halidir::" -#: tutorial/floatingpoint.rst:246 +#: tutorial/floatingpoint.rst:303 +#, fuzzy msgid "" "Since the remainder is more than half of 10, the best approximation is " -"obtained by rounding up::" +"obtained by rounding up:" msgstr "" "Kalanın değeri 10'un yarısından fazla olduğu için, en iyi yaklaşım yukarı " "yuvarlama ile elde edilir::" -#: tutorial/floatingpoint.rst:252 +#: tutorial/floatingpoint.rst:313 #, fuzzy msgid "" "Therefore the best possible approximation to 1/10 in IEEE 754 double " @@ -442,12 +471,12 @@ msgid "" msgstr "" "Bu nedenle 754 çift duyarlılıkta, 1/10'a mümkün olan en iyi yaklaşım şudur ::" -#: tutorial/floatingpoint.rst:257 +#: tutorial/floatingpoint.rst:318 msgid "" "Dividing both the numerator and denominator by two reduces the fraction to::" msgstr "Hem pay hem de paydayı ikiye böldüğünüzde kesir şuna indirgenir::" -#: tutorial/floatingpoint.rst:261 +#: tutorial/floatingpoint.rst:322 msgid "" "Note that since we rounded up, this is actually a little bit larger than " "1/10; if we had not rounded up, the quotient would have been a little bit " @@ -457,7 +486,7 @@ msgstr "" "olduğuna dikkat edin; yukarı yuvarlamamış olsaydık, bölüm 1/10'dan biraz " "daha küçük olurdu. Ancak hiçbir durumda *tam olarak* 1/10 olamaz!" -#: tutorial/floatingpoint.rst:265 +#: tutorial/floatingpoint.rst:326 #, fuzzy msgid "" "So the computer never \"sees\" 1/10: what it sees is the exact fraction " @@ -466,30 +495,32 @@ msgstr "" "Yani bilgisayar asla 1/10'u \"görmez\": gördüğü şey yukarıda verilen tam " "kesirdir, alabileceği en iyi 754 çift yaklaşımıdır::" -#: tutorial/floatingpoint.rst:271 +#: tutorial/floatingpoint.rst:334 +#, fuzzy msgid "" "If we multiply that fraction by 10\\*\\*55, we can see the value out to 55 " -"decimal digits::" +"decimal digits:" msgstr "" "Bu kesri 10\\*\\*55 ile çarparsak, değeri 55 ondalık basamağa kadar " "görebiliriz::" -#: tutorial/floatingpoint.rst:277 +#: tutorial/floatingpoint.rst:342 +#, fuzzy msgid "" "meaning that the exact number stored in the computer is equal to the decimal " "value 0.1000000000000000055511151231257827021181583404541015625. Instead of " "displaying the full decimal value, many languages (including older versions " -"of Python), round the result to 17 significant digits::" +"of Python), round the result to 17 significant digits:" msgstr "" "bu da bilgisayarda depolanan gerçek değerin " "0.1000000000000000055511151231257827021181583404541015625 kesrine eşit " "olduğu anlamına gelir. Python’un eski sürümleri dahil olmak üzere çoğu dil, " "tam kesri göstermek yerine sonucu 17 anlamlı basamağa yuvarlar::" -#: tutorial/floatingpoint.rst:285 +#: tutorial/floatingpoint.rst:352 +#, fuzzy msgid "" -"The :mod:`fractions` and :mod:`decimal` modules make these calculations " -"easy::" +"The :mod:`fractions` and :mod:`decimal` modules make these calculations easy:" msgstr "" ":mod:`fractions` ve :mod:`decimal` modülleri bu hesaplamaları kolaylaştırır::" diff --git a/tutorial/interpreter.po b/tutorial/interpreter.po index c65082003..9c2141a3f 100644 --- a/tutorial/interpreter.po +++ b/tutorial/interpreter.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-09-18 22:33+0300\n" "PO-Revision-Date: 2022-12-28 22:35+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -26,9 +26,10 @@ msgid "Invoking the Interpreter" msgstr "Yorumlayıcıyı Çağırma" #: tutorial/interpreter.rst:13 +#, fuzzy msgid "" "The Python interpreter is usually installed as :file:`/usr/local/bin/" -"python3.11` on those machines where it is available; putting :file:`/usr/" +"python3.12` on those machines where it is available; putting :file:`/usr/" "local/bin` in your Unix shell's search path makes it possible to start it by " "typing the command:" msgstr "" @@ -49,9 +50,10 @@ msgstr "" "popüler bir alternatif konumdur.)" #: tutorial/interpreter.rst:26 +#, fuzzy msgid "" "On Windows machines where you have installed Python from the :ref:`Microsoft " -"Store `, the :file:`python3.11` command will be available. If " +"Store `, the :file:`python3.12` command will be available. If " "you have the :ref:`py.exe launcher ` installed, you can use the :" "file:`py` command. See :ref:`setting-envvars` for other ways to launch " "Python." diff --git a/tutorial/introduction.po b/tutorial/introduction.po index e8d5bd8e8..b2830e47e 100644 --- a/tutorial/introduction.po +++ b/tutorial/introduction.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2023-03-01 12:10+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -311,9 +311,10 @@ msgstr "" "-0 ile 0 aynı olduğundan, negatif endekslerin -1'den başladığını unutmayın." #: tutorial/introduction.rst:276 +#, fuzzy msgid "" "In addition to indexing, *slicing* is also supported. While indexing is " -"used to obtain individual characters, *slicing* allows you to obtain " +"used to obtain individual characters, *slicing* allows you to obtain a " "substring::" msgstr "" "İndekslemeye ek olarak *dilimleme* de desteklenir. Tek tek karakterleri elde " diff --git a/tutorial/stdlib.po b/tutorial/stdlib.po index 259bcf67b..2f3cce286 100644 --- a/tutorial/stdlib.po +++ b/tutorial/stdlib.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2022-12-28 22:49+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -77,18 +77,24 @@ msgid "Command Line Arguments" msgstr "Komut Satırı Argümanları" #: tutorial/stdlib.rst:66 +#, fuzzy msgid "" "Common utility scripts often need to process command line arguments. These " "arguments are stored in the :mod:`sys` module's *argv* attribute as a list. " -"For instance the following output results from running ``python demo.py one " -"two three`` at the command line::" +"For instance, let's take the following :file:`demo.py` file::" msgstr "" "Ortak yardımcı programların, çoğunlukla komut satırı argümanlarını " "işlemeleri gerekir. Bu argümanlar :mod:`sys` modülünün *argv* özelliğinin " "içinde liste olarak saklanır. Örneğin ``python demo.py one two three`` " "dosyasını çalıştırdığınız zaman vereceği çıktı::" -#: tutorial/stdlib.rst:75 +#: tutorial/stdlib.rst:74 +msgid "" +"Here is the output from running ``python demo.py one two three`` at the " +"command line::" +msgstr "" + +#: tutorial/stdlib.rst:79 msgid "" "The :mod:`argparse` module provides a more sophisticated mechanism to " "process command line arguments. The following script extracts one or more " @@ -98,7 +104,7 @@ msgstr "" "sofistike bir yöntem sağlar. Aşağıdaki program, bir veya birden fazla dosya " "adını ve isteğe bağlı görüntülenecek satır sayısını ayıklar::" -#: tutorial/stdlib.rst:89 +#: tutorial/stdlib.rst:93 msgid "" "When run at the command line with ``python top.py --lines=5 alpha.txt beta." "txt``, the script sets ``args.lines`` to ``5`` and ``args.filenames`` to " @@ -108,11 +114,11 @@ msgstr "" "çalıştırıldığı zaman program, ``args.lines`` ögesini ``5`` ve ``args." "filenames`` ögesini ``['alpha.txt', 'beta.txt']`` olarak ayarlar." -#: tutorial/stdlib.rst:97 +#: tutorial/stdlib.rst:101 msgid "Error Output Redirection and Program Termination" msgstr "Hata Çıktısının Yeniden Yönlendirilmesi ve Programın Sonlandırılması" -#: tutorial/stdlib.rst:99 +#: tutorial/stdlib.rst:103 msgid "" "The :mod:`sys` module also has attributes for *stdin*, *stdout*, and " "*stderr*. The latter is useful for emitting warnings and error messages to " @@ -123,17 +129,17 @@ msgstr "" "görünür hale getirmek için uyarılar ve hata iletileri yayımlamak için " "yararlıdır::" -#: tutorial/stdlib.rst:106 +#: tutorial/stdlib.rst:110 msgid "The most direct way to terminate a script is to use ``sys.exit()``." msgstr "" "Bir programı sonlandırmak için, en kısa yol olan ``sys.exit()`` komutunu " "kullanın." -#: tutorial/stdlib.rst:112 +#: tutorial/stdlib.rst:116 msgid "String Pattern Matching" msgstr "String Örüntü Eşlemesi" -#: tutorial/stdlib.rst:114 +#: tutorial/stdlib.rst:118 msgid "" "The :mod:`re` module provides regular expression tools for advanced string " "processing. For complex matching and manipulation, regular expressions offer " @@ -143,7 +149,7 @@ msgstr "" "Karmaşık eşleme ve manipülasyon için, kurallı ifadeler kısa ve optimize " "edilmiş çözümler sunar::" -#: tutorial/stdlib.rst:124 +#: tutorial/stdlib.rst:128 msgid "" "When only simple capabilities are needed, string methods are preferred " "because they are easier to read and debug::" @@ -151,11 +157,11 @@ msgstr "" "Basit işlemlerde \"string\" metodu önerilir çünkü okuması ve hata ayıklaması " "daha kolaydır::" -#: tutorial/stdlib.rst:134 +#: tutorial/stdlib.rst:138 msgid "Mathematics" msgstr "Matematik" -#: tutorial/stdlib.rst:136 +#: tutorial/stdlib.rst:140 msgid "" "The :mod:`math` module gives access to the underlying C library functions " "for floating point math::" @@ -163,11 +169,11 @@ msgstr "" ":mod:`math` modülünün içindeki C kütüphanesi ondalıklı matematik " "fonksiyonlarına erişim sağlar::" -#: tutorial/stdlib.rst:145 +#: tutorial/stdlib.rst:149 msgid "The :mod:`random` module provides tools for making random selections::" msgstr ":mod:`random` modülü rastgele seçimler yapmak için araçlar sağlar::" -#: tutorial/stdlib.rst:157 +#: tutorial/stdlib.rst:161 msgid "" "The :mod:`statistics` module calculates basic statistical properties (the " "mean, median, variance, etc.) of numeric data::" @@ -175,7 +181,7 @@ msgstr "" ":mod:`statistics` modülü sayı içeren veriler için temel istatistiksel " "özellikleri hesaplar (ortalama, ortanca, fark, vb.)::" -#: tutorial/stdlib.rst:169 +#: tutorial/stdlib.rst:173 msgid "" "The SciPy project has many other modules for numerical " "computations." @@ -183,11 +189,11 @@ msgstr "" "SciPy projesi sayısal hesaplamalar için daha fazla modül " "içerir." -#: tutorial/stdlib.rst:175 +#: tutorial/stdlib.rst:179 msgid "Internet Access" msgstr "İnternet Erişimi" -#: tutorial/stdlib.rst:177 +#: tutorial/stdlib.rst:181 msgid "" "There are a number of modules for accessing the internet and processing " "internet protocols. Two of the simplest are :mod:`urllib.request` for " @@ -197,17 +203,17 @@ msgstr "" "var. Bunlardan en basit ikisi; :mod:`urllib.request` URL'lerden veri çekmek, " "ve :mod:`smtplib` ise mail göndermek için::" -#: tutorial/stdlib.rst:200 +#: tutorial/stdlib.rst:204 msgid "(Note that the second example needs a mailserver running on localhost.)" msgstr "" "(İkinci örnek için bir mail sunucusunun localhost'ta çalışması gerektiğini " "unutmayın.)" -#: tutorial/stdlib.rst:206 +#: tutorial/stdlib.rst:210 msgid "Dates and Times" msgstr "Tarihler ve Saatler" -#: tutorial/stdlib.rst:208 +#: tutorial/stdlib.rst:212 msgid "" "The :mod:`datetime` module supplies classes for manipulating dates and times " "in both simple and complex ways. While date and time arithmetic is " @@ -221,11 +227,11 @@ msgstr "" "düzenlemesi için verimli üye ayıklamadır. Modül ayrıca saat dilimi farkında " "olan nesneleri de destekler. ::" -#: tutorial/stdlib.rst:232 +#: tutorial/stdlib.rst:236 msgid "Data Compression" msgstr "Veri Sıkıştırma" -#: tutorial/stdlib.rst:234 +#: tutorial/stdlib.rst:238 msgid "" "Common data archiving and compression formats are directly supported by " "modules including: :mod:`zlib`, :mod:`gzip`, :mod:`bz2`, :mod:`lzma`, :mod:" @@ -235,11 +241,11 @@ msgstr "" "desteklenir: :mod:`zlib`, :mod:`gzip`, :mod:`bz2`, :mod:`lzma`, :mod:" "`zipfile` ve :mod:`tarfile`. ::" -#: tutorial/stdlib.rst:254 +#: tutorial/stdlib.rst:258 msgid "Performance Measurement" msgstr "Performans Ölçümü" -#: tutorial/stdlib.rst:256 +#: tutorial/stdlib.rst:260 msgid "" "Some Python users develop a deep interest in knowing the relative " "performance of different approaches to the same problem. Python provides a " @@ -249,7 +255,7 @@ msgstr "" "performansını bilmek konusunda derin bir ilgi geliştirir. Python, bu " "soruları hemen yanıtlayan bir ölçüm aracı sağlar." -#: tutorial/stdlib.rst:260 +#: tutorial/stdlib.rst:264 msgid "" "For example, it may be tempting to use the tuple packing and unpacking " "feature instead of the traditional approach to swapping arguments. The :mod:" @@ -259,7 +265,7 @@ msgstr "" "paketleme ve açma özelliğini kullanmak cazip olabilir. :mod:`timeit` modülü " "hızla sade bir performans avantajı gösterir::" -#: tutorial/stdlib.rst:270 +#: tutorial/stdlib.rst:274 msgid "" "In contrast to :mod:`timeit`'s fine level of granularity, the :mod:`profile` " "and :mod:`pstats` modules provide tools for identifying time critical " @@ -269,11 +275,11 @@ msgstr "" "`pstats` modülleri, daha büyük kod bloklarında zaman açısından kritik " "bölümleri tanımlamak için araçlar sağlar." -#: tutorial/stdlib.rst:278 +#: tutorial/stdlib.rst:282 msgid "Quality Control" msgstr "Kalite Kontrolü" -#: tutorial/stdlib.rst:280 +#: tutorial/stdlib.rst:284 msgid "" "One approach for developing high quality software is to write tests for each " "function as it is developed and to run those tests frequently during the " @@ -282,7 +288,7 @@ msgstr "" "Yüksek kalitede yazılımlar geliştirmek için her fonksiyon için testler " "yazılmalıdır ve bu testler geliştirirken sık sık çalıştırmalıdır." -#: tutorial/stdlib.rst:284 +#: tutorial/stdlib.rst:288 msgid "" "The :mod:`doctest` module provides a tool for scanning a module and " "validating tests embedded in a program's docstrings. Test construction is " @@ -297,7 +303,7 @@ msgstr "" "kullanıcıya bir örnek sunarak dokümantasyonu geliştirir ve doctest modülünün " "kodun dokümantasyona göre doğru olduğundan emin olmasını sağlar::" -#: tutorial/stdlib.rst:302 +#: tutorial/stdlib.rst:306 msgid "" "The :mod:`unittest` module is not as effortless as the :mod:`doctest` " "module, but it allows a more comprehensive set of tests to be maintained in " @@ -307,11 +313,11 @@ msgstr "" "değildir ama daha geniş kapsamlı test setlerinin ayrı dosyalarda " "sağlanmasına imkân verir::" -#: tutorial/stdlib.rst:324 +#: tutorial/stdlib.rst:328 msgid "Batteries Included" msgstr "Bataryalar Dahildir" -#: tutorial/stdlib.rst:326 +#: tutorial/stdlib.rst:330 msgid "" "Python has a \"batteries included\" philosophy. This is best seen through " "the sophisticated and robust capabilities of its larger packages. For " @@ -320,7 +326,7 @@ msgstr "" "Python'un \"bataryalar dahil\" felsefesi vardır. Bu , büyük paketlerin en " "iyi şekilde sofistike ve sağlam kapabiliteleriyle görülür. Mesela:" -#: tutorial/stdlib.rst:329 +#: tutorial/stdlib.rst:333 msgid "" "The :mod:`xmlrpc.client` and :mod:`xmlrpc.server` modules make implementing " "remote procedure calls into an almost trivial task. Despite the modules' " @@ -330,7 +336,7 @@ msgstr "" "çağrılarını uygulamayı neredeyse önemsiz bir görev haline getirir. Modül " "adlarına rağmen, XML'nin doğrudan bilgisine veya işlenmesine gerek yoktur." -#: tutorial/stdlib.rst:333 +#: tutorial/stdlib.rst:337 msgid "" "The :mod:`email` package is a library for managing email messages, including " "MIME and other :rfc:`2822`-based message documents. Unlike :mod:`smtplib` " @@ -346,7 +352,7 @@ msgstr "" "sağlayan, internet encode işlemini ve header protokollerini uygulamak için " "geniş kapsamlı bir toolkit'e sahiptir." -#: tutorial/stdlib.rst:340 +#: tutorial/stdlib.rst:344 msgid "" "The :mod:`json` package provides robust support for parsing this popular " "data interchange format. The :mod:`csv` module supports direct reading and " @@ -365,7 +371,7 @@ msgstr "" "uygulamaları ve diğer araçlar arasındaki veri değişimini büyük ölçüde " "basitleştirir." -#: tutorial/stdlib.rst:349 +#: tutorial/stdlib.rst:353 msgid "" "The :mod:`sqlite3` module is a wrapper for the SQLite database library, " "providing a persistent database that can be updated and accessed using " @@ -375,7 +381,7 @@ msgstr "" "Biraz standart dışı SQL syntax'ları kullanılarak güncellenebilen ve " "erişilebilen kalıcı bir veritabanı sağlanabilir." -#: tutorial/stdlib.rst:353 +#: tutorial/stdlib.rst:357 msgid "" "Internationalization is supported by a number of modules including :mod:" "`gettext`, :mod:`locale`, and the :mod:`codecs` package." diff --git a/using/cmdline.po b/using/cmdline.po index 2df87bea6..5beda5cbc 100644 --- a/using/cmdline.po +++ b/using/cmdline.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -359,21 +359,27 @@ msgstr "" #: using/cmdline.rst:274 msgid "" -"Turn on parser debugging output (for expert only, depending on compilation " -"options). See also :envvar:`PYTHONDEBUG`." +"Turn on parser debugging output (for expert only). See also the :envvar:" +"`PYTHONDEBUG` environment variable." msgstr "" -#: using/cmdline.rst:280 +#: using/cmdline.rst:277 +msgid "" +"This option requires a :ref:`debug build of Python `, otherwise " +"it's ignored." +msgstr "" + +#: using/cmdline.rst:283 msgid "" "Ignore all :envvar:`PYTHON*` environment variables, e.g. :envvar:" "`PYTHONPATH` and :envvar:`PYTHONHOME`, that might be set." msgstr "" -#: using/cmdline.rst:283 +#: using/cmdline.rst:286 msgid "See also the :option:`-P` and :option:`-I` (isolated) options." msgstr "" -#: using/cmdline.rst:288 +#: using/cmdline.rst:291 msgid "" "When a script is passed as first argument or the :option:`-c` option is " "used, enter interactive mode after executing the script or the command, even " @@ -381,19 +387,19 @@ msgid "" "`PYTHONSTARTUP` file is not read." msgstr "" -#: using/cmdline.rst:293 +#: using/cmdline.rst:296 msgid "" "This can be useful to inspect global variables or a stack trace when a " "script raises an exception. See also :envvar:`PYTHONINSPECT`." msgstr "" -#: using/cmdline.rst:299 +#: using/cmdline.rst:302 msgid "" "Run Python in isolated mode. This also implies :option:`-E`, :option:`-P` " "and :option:`-s` options." msgstr "" -#: using/cmdline.rst:302 +#: using/cmdline.rst:305 msgid "" "In isolated mode :data:`sys.path` contains neither the script's directory " "nor the user's site-packages directory. All :envvar:`PYTHON*` environment " @@ -401,7 +407,7 @@ msgid "" "the user from injecting malicious code." msgstr "" -#: using/cmdline.rst:312 +#: using/cmdline.rst:315 msgid "" "Remove assert statements and any code conditional on the value of :const:" "`__debug__`. Augment the filename for compiled (:term:`bytecode`) files by " @@ -409,58 +415,58 @@ msgid "" "envvar:`PYTHONOPTIMIZE`." msgstr "" -#: using/cmdline.rst:327 +#: using/cmdline.rst:330 msgid "Modify ``.pyc`` filenames according to :pep:`488`." msgstr "" -#: using/cmdline.rst:323 +#: using/cmdline.rst:326 msgid "" "Do :option:`-O` and also discard docstrings. Augment the filename for " "compiled (:term:`bytecode`) files by adding ``.opt-2`` before the ``.pyc`` " "extension (see :pep:`488`)." msgstr "" -#: using/cmdline.rst:333 +#: using/cmdline.rst:336 msgid "Don't prepend a potentially unsafe path to :data:`sys.path`:" msgstr "" -#: using/cmdline.rst:335 +#: using/cmdline.rst:338 msgid "" "``python -m module`` command line: Don't prepend the current working " "directory." msgstr "" -#: using/cmdline.rst:337 +#: using/cmdline.rst:340 msgid "" "``python script.py`` command line: Don't prepend the script's directory. If " "it's a symbolic link, resolve symbolic links." msgstr "" -#: using/cmdline.rst:339 +#: using/cmdline.rst:342 msgid "" "``python -c code`` and ``python`` (REPL) command lines: Don't prepend an " "empty string, which means the current working directory." msgstr "" -#: using/cmdline.rst:342 +#: using/cmdline.rst:345 msgid "" "See also the :envvar:`PYTHONSAFEPATH` environment variable, and :option:`-E` " "and :option:`-I` (isolated) options." msgstr "" -#: using/cmdline.rst:350 +#: using/cmdline.rst:353 msgid "" "Don't display the copyright and version messages even in interactive mode." msgstr "" -#: using/cmdline.rst:357 +#: using/cmdline.rst:360 msgid "" "Turn on hash randomization. This option only has an effect if the :envvar:" "`PYTHONHASHSEED` environment variable is set to ``0``, since hash " "randomization is enabled by default." msgstr "" -#: using/cmdline.rst:361 +#: using/cmdline.rst:364 msgid "" "On previous versions of Python, this option turns on hash randomization, so " "that the :meth:`__hash__` values of str and bytes objects are \"salted\" " @@ -469,7 +475,7 @@ msgid "" "invocations of Python." msgstr "" -#: using/cmdline.rst:367 +#: using/cmdline.rst:370 msgid "" "Hash randomization is intended to provide protection against a denial-of-" "service caused by carefully chosen inputs that exploit the worst case " @@ -477,27 +483,27 @@ msgid "" "ocert.org/advisories/ocert-2011-003.html for details." msgstr "" -#: using/cmdline.rst:372 +#: using/cmdline.rst:375 msgid "" ":envvar:`PYTHONHASHSEED` allows you to set a fixed value for the hash seed " "secret." msgstr "" -#: using/cmdline.rst:375 +#: using/cmdline.rst:378 msgid "The option is no longer ignored." msgstr "" -#: using/cmdline.rst:383 +#: using/cmdline.rst:386 msgid "" "Don't add the :data:`user site-packages directory ` to :data:" "`sys.path`." msgstr "" -#: using/cmdline.rst:793 using/cmdline.rst:805 +#: using/cmdline.rst:807 using/cmdline.rst:819 msgid ":pep:`370` -- Per user site-packages directory" msgstr "" -#: using/cmdline.rst:393 +#: using/cmdline.rst:396 msgid "" "Disable the import of the module :mod:`site` and the site-dependent " "manipulations of :data:`sys.path` that it entails. Also disable these " @@ -505,21 +511,21 @@ msgid "" "main` if you want them to be triggered)." msgstr "" -#: using/cmdline.rst:401 +#: using/cmdline.rst:404 msgid "" "Force the stdout and stderr streams to be unbuffered. This option has no " "effect on the stdin stream." msgstr "" -#: using/cmdline.rst:404 +#: using/cmdline.rst:407 msgid "See also :envvar:`PYTHONUNBUFFERED`." msgstr "" -#: using/cmdline.rst:406 +#: using/cmdline.rst:409 msgid "The text layer of the stdout and stderr streams now is unbuffered." msgstr "" -#: using/cmdline.rst:412 +#: using/cmdline.rst:415 msgid "" "Print a message each time a module is initialized, showing the place " "(filename or built-in module) from which it is loaded. When given twice (:" @@ -527,60 +533,60 @@ msgid "" "searching for a module. Also provides information on module cleanup at exit." msgstr "" -#: using/cmdline.rst:417 +#: using/cmdline.rst:420 msgid "" "The :mod:`site` module reports the site-specific paths and :file:`.pth` " "files being processed." msgstr "" -#: using/cmdline.rst:421 +#: using/cmdline.rst:424 msgid "See also :envvar:`PYTHONVERBOSE`." msgstr "" -#: using/cmdline.rst:427 +#: using/cmdline.rst:430 msgid "" "Warning control. Python's warning machinery by default prints warning " "messages to :data:`sys.stderr`." msgstr "" -#: using/cmdline.rst:821 +#: using/cmdline.rst:835 msgid "" "The simplest settings apply a particular action unconditionally to all " "warnings emitted by a process (even those that are otherwise ignored by " "default)::" msgstr "" -#: using/cmdline.rst:441 +#: using/cmdline.rst:444 msgid "" "The action names can be abbreviated as desired and the interpreter will " "resolve them to the appropriate action name. For example, ``-Wi`` is the " "same as ``-Wignore``." msgstr "" -#: using/cmdline.rst:445 +#: using/cmdline.rst:448 msgid "The full form of argument is::" msgstr "" -#: using/cmdline.rst:449 +#: using/cmdline.rst:452 msgid "" "Empty fields match all values; trailing empty fields may be omitted. For " "example ``-W ignore::DeprecationWarning`` ignores all DeprecationWarning " "warnings." msgstr "" -#: using/cmdline.rst:453 +#: using/cmdline.rst:456 msgid "" "The *action* field is as explained above but only applies to warnings that " "match the remaining fields." msgstr "" -#: using/cmdline.rst:456 +#: using/cmdline.rst:459 msgid "" "The *message* field must match the whole warning message; this match is case-" "insensitive." msgstr "" -#: using/cmdline.rst:459 +#: using/cmdline.rst:462 msgid "" "The *category* field matches the warning category (ex: " "``DeprecationWarning``). This must be a class name; the match test whether " @@ -588,19 +594,19 @@ msgid "" "warning category." msgstr "" -#: using/cmdline.rst:464 +#: using/cmdline.rst:467 msgid "" "The *module* field matches the (fully qualified) module name; this match is " "case-sensitive." msgstr "" -#: using/cmdline.rst:467 +#: using/cmdline.rst:470 msgid "" "The *lineno* field matches the line number, where zero matches all line " "numbers and is thus equivalent to an omitted line number." msgstr "" -#: using/cmdline.rst:470 +#: using/cmdline.rst:473 msgid "" "Multiple :option:`-W` options can be given; when a warning matches more than " "one option, the action for the last matching option is performed. Invalid :" @@ -608,7 +614,7 @@ msgid "" "invalid options when the first warning is issued)." msgstr "" -#: using/cmdline.rst:475 +#: using/cmdline.rst:478 msgid "" "Warnings can also be controlled using the :envvar:`PYTHONWARNINGS` " "environment variable and from within a Python program using the :mod:" @@ -616,31 +622,31 @@ msgid "" "can be used to use a regular expression on the warning message." msgstr "" -#: using/cmdline.rst:832 +#: using/cmdline.rst:846 msgid "" "See :ref:`warning-filter` and :ref:`describing-warning-filters` for more " "details." msgstr "" -#: using/cmdline.rst:486 +#: using/cmdline.rst:489 msgid "" "Skip the first line of the source, allowing use of non-Unix forms of ``#!" "cmd``. This is intended for a DOS specific hack only." msgstr "" -#: using/cmdline.rst:492 +#: using/cmdline.rst:495 msgid "" "Reserved for various implementation-specific options. CPython currently " "defines the following possible values:" msgstr "" -#: using/cmdline.rst:495 +#: using/cmdline.rst:498 msgid "" "``-X faulthandler`` to enable :mod:`faulthandler`. See also :envvar:" "`PYTHONFAULTHANDLER`." msgstr "" -#: using/cmdline.rst:497 +#: using/cmdline.rst:500 msgid "" "``-X showrefcount`` to output the total reference count and number of used " "memory blocks when the program finishes or after each statement in the " @@ -648,7 +654,7 @@ msgid "" "build>`." msgstr "" -#: using/cmdline.rst:501 +#: using/cmdline.rst:504 msgid "" "``-X tracemalloc`` to start tracing Python memory allocations using the :mod:" "`tracemalloc` module. By default, only the most recent frame is stored in a " @@ -657,14 +663,14 @@ msgid "" "envvar:`PYTHONTRACEMALLOC` for more information." msgstr "" -#: using/cmdline.rst:507 +#: using/cmdline.rst:510 msgid "" "``-X int_max_str_digits`` configures the :ref:`integer string conversion " "length limitation `. See also :envvar:" "`PYTHONINTMAXSTRDIGITS`." msgstr "" -#: using/cmdline.rst:510 +#: using/cmdline.rst:513 msgid "" "``-X importtime`` to show how long each import takes. It shows module name, " "cumulative time (including nested imports) and self time (excluding nested " @@ -673,34 +679,34 @@ msgid "" "asyncio'``. See also :envvar:`PYTHONPROFILEIMPORTTIME`." msgstr "" -#: using/cmdline.rst:515 +#: using/cmdline.rst:518 msgid "" "``-X dev``: enable :ref:`Python Development Mode `, introducing " "additional runtime checks that are too expensive to be enabled by default." msgstr "" -#: using/cmdline.rst:518 +#: using/cmdline.rst:521 msgid "" "``-X utf8`` enables the :ref:`Python UTF-8 Mode `. ``-X utf8=0`` " "explicitly disables :ref:`Python UTF-8 Mode ` (even when it would " "otherwise activate automatically). See also :envvar:`PYTHONUTF8`." msgstr "" -#: using/cmdline.rst:522 +#: using/cmdline.rst:525 msgid "" "``-X pycache_prefix=PATH`` enables writing ``.pyc`` files to a parallel tree " "rooted at the given directory instead of to the code tree. See also :envvar:" "`PYTHONPYCACHEPREFIX`." msgstr "" -#: using/cmdline.rst:525 +#: using/cmdline.rst:528 msgid "" "``-X warn_default_encoding`` issues a :class:`EncodingWarning` when the " "locale-specific default encoding is used for opening files. See also :envvar:" "`PYTHONWARNDEFAULTENCODING`." msgstr "" -#: using/cmdline.rst:528 +#: using/cmdline.rst:531 msgid "" "``-X no_debug_ranges`` disables the inclusion of the tables mapping extra " "location information (end line, start column offset and end column offset) " @@ -710,7 +716,7 @@ msgid "" "envvar:`PYTHONNODEBUGRANGES`." msgstr "" -#: using/cmdline.rst:534 +#: using/cmdline.rst:537 msgid "" "``-X frozen_modules`` determines whether or not frozen modules are ignored " "by the import machinery. A value of \"on\" means they get imported and " @@ -721,81 +727,94 @@ msgid "" "are always used, even if this flag is set to \"off\"." msgstr "" -#: using/cmdline.rst:542 +#: using/cmdline.rst:544 +msgid "" +"``-X perf`` enables support for the Linux ``perf`` profiler. When this " +"option is provided, the ``perf`` profiler will be able to report Python " +"calls. This option is only available on some platforms and will do nothing " +"if is not supported on the current system. The default value is \"off\". See " +"also :envvar:`PYTHONPERFSUPPORT` and :ref:`perf_profiling`." +msgstr "" + +#: using/cmdline.rst:550 msgid "" "It also allows passing arbitrary values and retrieving them through the :" "data:`sys._xoptions` dictionary." msgstr "" -#: using/cmdline.rst:545 +#: using/cmdline.rst:553 msgid "The :option:`-X` option was added." msgstr "" -#: using/cmdline.rst:548 +#: using/cmdline.rst:556 msgid "The ``-X faulthandler`` option." msgstr "" -#: using/cmdline.rst:551 +#: using/cmdline.rst:559 msgid "The ``-X showrefcount`` and ``-X tracemalloc`` options." msgstr "" -#: using/cmdline.rst:554 +#: using/cmdline.rst:562 msgid "The ``-X showalloccount`` option." msgstr "" -#: using/cmdline.rst:557 +#: using/cmdline.rst:565 msgid "The ``-X importtime``, ``-X dev`` and ``-X utf8`` options." msgstr "" -#: using/cmdline.rst:560 +#: using/cmdline.rst:568 msgid "" "The ``-X pycache_prefix`` option. The ``-X dev`` option now logs ``close()`` " "exceptions in :class:`io.IOBase` destructor." msgstr "" -#: using/cmdline.rst:564 +#: using/cmdline.rst:572 msgid "" "Using ``-X dev`` option, check *encoding* and *errors* arguments on string " "encoding and decoding operations." msgstr "" -#: using/cmdline.rst:568 +#: using/cmdline.rst:576 msgid "The ``-X showalloccount`` option has been removed." msgstr "" -#: using/cmdline.rst:570 +#: using/cmdline.rst:578 msgid "The ``-X warn_default_encoding`` option." msgstr "" -#: using/cmdline.rst:575 +#: using/cmdline.rst:583 msgid "The ``-X oldparser`` option." msgstr "" -#: using/cmdline.rst:576 +#: using/cmdline.rst:584 msgid "The ``-X no_debug_ranges`` option." msgstr "" -#: using/cmdline.rst:579 +#: using/cmdline.rst:587 msgid "The ``-X frozen_modules`` option." msgstr "" -#: using/cmdline.rst:582 +#: using/cmdline.rst:590 msgid "The ``-X int_max_str_digits`` option." msgstr "" -#: using/cmdline.rst:587 +#: using/cmdline.rst:593 +msgid "The ``-X perf`` option." +msgstr "" + +#: using/cmdline.rst:598 msgid "Options you shouldn't use" msgstr "" -#: using/cmdline.rst:591 +#: using/cmdline.rst:602 msgid "Reserved for use by Jython_." msgstr "" -#: using/cmdline.rst:599 +#: using/cmdline.rst:610 msgid "Environment variables" msgstr "" -#: using/cmdline.rst:601 +#: using/cmdline.rst:612 msgid "" "These environment variables influence Python's behavior, they are processed " "before the command-line switches other than -E or -I. It is customary that " @@ -803,7 +822,7 @@ msgid "" "conflict." msgstr "" -#: using/cmdline.rst:608 +#: using/cmdline.rst:619 msgid "" "Change the location of the standard Python libraries. By default, the " "libraries are searched in :file:`{prefix}/lib/python{version}` and :file:" @@ -812,14 +831,14 @@ msgid "" "file:`/usr/local`." msgstr "" -#: using/cmdline.rst:614 +#: using/cmdline.rst:625 msgid "" "When :envvar:`PYTHONHOME` is set to a single directory, its value replaces " "both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different " "values for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`." msgstr "" -#: using/cmdline.rst:621 +#: using/cmdline.rst:632 msgid "" "Augment the default search path for module files. The format is the same as " "the shell's :envvar:`PATH`: one or more directory pathnames separated by :" @@ -827,21 +846,21 @@ msgid "" "existent directories are silently ignored." msgstr "" -#: using/cmdline.rst:626 +#: using/cmdline.rst:637 msgid "" "In addition to normal directories, individual :envvar:`PYTHONPATH` entries " "may refer to zipfiles containing pure Python modules (in either source or " "compiled form). Extension modules cannot be imported from zipfiles." msgstr "" -#: using/cmdline.rst:630 +#: using/cmdline.rst:641 msgid "" "The default search path is installation dependent, but generally begins " "with :file:`{prefix}/lib/python{version}` (see :envvar:`PYTHONHOME` above). " "It is *always* appended to :envvar:`PYTHONPATH`." msgstr "" -#: using/cmdline.rst:634 +#: using/cmdline.rst:645 msgid "" "An additional directory will be inserted in the search path in front of :" "envvar:`PYTHONPATH` as described above under :ref:`using-on-interface-" @@ -849,19 +868,19 @@ msgid "" "the variable :data:`sys.path`." msgstr "" -#: using/cmdline.rst:642 +#: using/cmdline.rst:653 msgid "" "If this is set to a non-empty string, don't prepend a potentially unsafe " "path to :data:`sys.path`: see the :option:`-P` option for details." msgstr "" -#: using/cmdline.rst:650 +#: using/cmdline.rst:661 msgid "" "If this is set to a non-empty string, it overrides the :data:`sys." "platlibdir` value." msgstr "" -#: using/cmdline.rst:658 +#: using/cmdline.rst:669 msgid "" "If this is the name of a readable file, the Python commands in that file are " "executed before the first prompt is displayed in interactive mode. The file " @@ -872,26 +891,26 @@ msgid "" "file." msgstr "" -#: using/cmdline.rst:665 +#: using/cmdline.rst:676 msgid "" "Raises an :ref:`auditing event ` ``cpython.run_startup`` with " "argument ``filename``." msgstr "" -#: using/cmdline.rst:667 +#: using/cmdline.rst:678 msgid "" "Raises an :ref:`auditing event ` ``cpython.run_startup`` with the " "filename as the argument when called on startup." msgstr "" -#: using/cmdline.rst:673 +#: using/cmdline.rst:684 msgid "" "If this is set to a non-empty string it is equivalent to specifying the :" "option:`-O` option. If set to an integer, it is equivalent to specifying :" "option:`-O` multiple times." msgstr "" -#: using/cmdline.rst:680 +#: using/cmdline.rst:691 msgid "" "If this is set, it names a callable using dotted-path notation. The module " "containing the callable will be imported and then the callable will be run " @@ -902,52 +921,58 @@ msgid "" "breakpointhook` to do nothing but return immediately." msgstr "" -#: using/cmdline.rst:692 +#: using/cmdline.rst:703 msgid "" "If this is set to a non-empty string it is equivalent to specifying the :" "option:`-d` option. If set to an integer, it is equivalent to specifying :" "option:`-d` multiple times." msgstr "" -#: using/cmdline.rst:699 +#: using/cmdline.rst:707 +msgid "" +"This environment variable requires a :ref:`debug build of Python `, otherwise it's ignored." +msgstr "" + +#: using/cmdline.rst:713 msgid "" "If this is set to a non-empty string it is equivalent to specifying the :" "option:`-i` option." msgstr "" -#: using/cmdline.rst:702 +#: using/cmdline.rst:716 msgid "" "This variable can also be modified by Python code using :data:`os.environ` " "to force inspect mode on program termination." msgstr "" -#: using/cmdline.rst:708 +#: using/cmdline.rst:722 msgid "" "If this is set to a non-empty string it is equivalent to specifying the :" "option:`-u` option." msgstr "" -#: using/cmdline.rst:714 +#: using/cmdline.rst:728 msgid "" "If this is set to a non-empty string it is equivalent to specifying the :" "option:`-v` option. If set to an integer, it is equivalent to specifying :" "option:`-v` multiple times." msgstr "" -#: using/cmdline.rst:721 +#: using/cmdline.rst:735 msgid "" "If this is set, Python ignores case in :keyword:`import` statements. This " "only works on Windows and macOS." msgstr "" -#: using/cmdline.rst:727 +#: using/cmdline.rst:741 msgid "" "If this is set to a non-empty string, Python won't try to write ``.pyc`` " "files on the import of source modules. This is equivalent to specifying " "the :option:`-B` option." msgstr "" -#: using/cmdline.rst:734 +#: using/cmdline.rst:748 msgid "" "If this is set, Python will write ``.pyc`` files in a mirror directory tree " "at this path, instead of in ``__pycache__`` directories within the source " @@ -955,40 +980,40 @@ msgid "" "``pycache_prefix=PATH`` option." msgstr "" -#: using/cmdline.rst:744 +#: using/cmdline.rst:758 msgid "" "If this variable is not set or set to ``random``, a random value is used to " "seed the hashes of str and bytes objects." msgstr "" -#: using/cmdline.rst:747 +#: using/cmdline.rst:761 msgid "" "If :envvar:`PYTHONHASHSEED` is set to an integer value, it is used as a " "fixed seed for generating the hash() of the types covered by the hash " "randomization." msgstr "" -#: using/cmdline.rst:751 +#: using/cmdline.rst:765 msgid "" "Its purpose is to allow repeatable hashing, such as for selftests for the " "interpreter itself, or to allow a cluster of python processes to share hash " "values." msgstr "" -#: using/cmdline.rst:755 +#: using/cmdline.rst:769 msgid "" "The integer must be a decimal number in the range [0,4294967295]. " "Specifying the value 0 will disable hash randomization." msgstr "" -#: using/cmdline.rst:762 +#: using/cmdline.rst:776 msgid "" "If this variable is set to an integer, it is used to configure the " "interpreter's global :ref:`integer string conversion length limitation " "`." msgstr "" -#: using/cmdline.rst:770 +#: using/cmdline.rst:784 msgid "" "If this is set before running the interpreter, it overrides the encoding " "used for stdin/stdout/stderr, in the syntax ``encodingname:errorhandler``. " @@ -996,17 +1021,17 @@ msgid "" "have the same meaning as in :func:`str.encode`." msgstr "" -#: using/cmdline.rst:775 +#: using/cmdline.rst:789 msgid "" "For stderr, the ``:errorhandler`` part is ignored; the handler will always " "be ``'backslashreplace'``." msgstr "" -#: using/cmdline.rst:778 +#: using/cmdline.rst:792 msgid "The ``encodingname`` part is now optional." msgstr "" -#: using/cmdline.rst:781 +#: using/cmdline.rst:795 msgid "" "On Windows, the encoding specified by this variable is ignored for " "interactive console buffers unless :envvar:`PYTHONLEGACYWINDOWSSTDIO` is " @@ -1014,34 +1039,33 @@ msgid "" "not affected." msgstr "" -#: using/cmdline.rst:788 +#: using/cmdline.rst:802 msgid "" "If this is set, Python won't add the :data:`user site-packages directory " "` to :data:`sys.path`." msgstr "" -#: using/cmdline.rst:798 +#: using/cmdline.rst:812 msgid "" "Defines the :data:`user base directory `, which is used to " "compute the path of the :data:`user site-packages directory ` and :ref:`Distutils installation paths ` " -"for ``python setup.py install --user``." +"USER_SITE>` and installation paths for ``python -m pip install --user``." msgstr "" -#: using/cmdline.rst:810 +#: using/cmdline.rst:824 msgid "" "If this environment variable is set, ``sys.argv[0]`` will be set to its " "value instead of the value got through the C runtime. Only works on macOS." msgstr "" -#: using/cmdline.rst:816 +#: using/cmdline.rst:830 msgid "" "This is equivalent to the :option:`-W` option. If set to a comma separated " "string, it is equivalent to specifying :option:`-W` multiple times, with " "filters later in the list taking precedence over those earlier in the list." msgstr "" -#: using/cmdline.rst:838 +#: using/cmdline.rst:852 msgid "" "If this environment variable is set to a non-empty string, :func:" "`faulthandler.enable` is called at startup: install a handler for :const:" @@ -1050,7 +1074,7 @@ msgid "" "option:`-X` ``faulthandler`` option." msgstr "" -#: using/cmdline.rst:849 +#: using/cmdline.rst:863 msgid "" "If this environment variable is set to a non-empty string, start tracing " "Python memory allocations using the :mod:`tracemalloc` module. The value of " @@ -1060,90 +1084,90 @@ msgid "" "is equivalent to setting the :option:`-X` ``tracemalloc`` option." msgstr "" -#: using/cmdline.rst:862 +#: using/cmdline.rst:876 msgid "" "If this environment variable is set to a non-empty string, Python will show " "how long each import takes. This is equivalent to setting the :option:`-X` " "``importtime`` option." msgstr "" -#: using/cmdline.rst:871 +#: using/cmdline.rst:885 msgid "" "If this environment variable is set to a non-empty string, enable the :ref:" "`debug mode ` of the :mod:`asyncio` module." msgstr "" -#: using/cmdline.rst:879 +#: using/cmdline.rst:893 msgid "Set the Python memory allocators and/or install debug hooks." msgstr "" -#: using/cmdline.rst:881 +#: using/cmdline.rst:895 msgid "Set the family of memory allocators used by Python:" msgstr "" -#: using/cmdline.rst:883 +#: using/cmdline.rst:897 msgid "" "``default``: use the :ref:`default memory allocators `." msgstr "" -#: using/cmdline.rst:885 +#: using/cmdline.rst:899 msgid "" "``malloc``: use the :c:func:`malloc` function of the C library for all " "domains (:c:macro:`PYMEM_DOMAIN_RAW`, :c:macro:`PYMEM_DOMAIN_MEM`, :c:macro:" "`PYMEM_DOMAIN_OBJ`)." msgstr "" -#: using/cmdline.rst:888 +#: using/cmdline.rst:902 msgid "" "``pymalloc``: use the :ref:`pymalloc allocator ` for :c:macro:" "`PYMEM_DOMAIN_MEM` and :c:macro:`PYMEM_DOMAIN_OBJ` domains and use the :c:" "func:`malloc` function for the :c:macro:`PYMEM_DOMAIN_RAW` domain." msgstr "" -#: using/cmdline.rst:892 +#: using/cmdline.rst:906 msgid "Install :ref:`debug hooks `:" msgstr "" -#: using/cmdline.rst:894 +#: using/cmdline.rst:908 msgid "" "``debug``: install debug hooks on top of the :ref:`default memory allocators " "`." msgstr "" -#: using/cmdline.rst:896 +#: using/cmdline.rst:910 msgid "``malloc_debug``: same as ``malloc`` but also install debug hooks." msgstr "" -#: using/cmdline.rst:897 +#: using/cmdline.rst:911 msgid "``pymalloc_debug``: same as ``pymalloc`` but also install debug hooks." msgstr "" -#: using/cmdline.rst:899 +#: using/cmdline.rst:913 msgid "Added the ``\"default\"`` allocator." msgstr "" -#: using/cmdline.rst:907 +#: using/cmdline.rst:921 msgid "" "If set to a non-empty string, Python will print statistics of the :ref:" "`pymalloc memory allocator ` every time a new pymalloc object " "arena is created, and on shutdown." msgstr "" -#: using/cmdline.rst:911 +#: using/cmdline.rst:925 msgid "" "This variable is ignored if the :envvar:`PYTHONMALLOC` environment variable " "is used to force the :c:func:`malloc` allocator of the C library, or if " "Python is configured without ``pymalloc`` support." msgstr "" -#: using/cmdline.rst:915 +#: using/cmdline.rst:929 msgid "" "This variable can now also be used on Python compiled in release mode. It " "now has no effect if set to an empty string." msgstr "" -#: using/cmdline.rst:922 +#: using/cmdline.rst:936 msgid "" "If set to a non-empty string, the default :term:`filesystem encoding and " "error handler` mode will revert to their pre-3.6 values of 'mbcs' and " @@ -1151,41 +1175,41 @@ msgid "" "'surrogatepass' are used." msgstr "" -#: using/cmdline.rst:927 +#: using/cmdline.rst:941 msgid "" "This may also be enabled at runtime with :func:`sys." "_enablelegacywindowsfsencoding()`." msgstr "" -#: using/cmdline.rst:944 +#: using/cmdline.rst:958 msgid ":ref:`Availability `: Windows." msgstr "" -#: using/cmdline.rst:932 +#: using/cmdline.rst:946 msgid "See :pep:`529` for more details." msgstr "" -#: using/cmdline.rst:937 +#: using/cmdline.rst:951 msgid "" "If set to a non-empty string, does not use the new console reader and " "writer. This means that Unicode characters will be encoded according to the " "active console code page, rather than using utf-8." msgstr "" -#: using/cmdline.rst:941 +#: using/cmdline.rst:955 msgid "" "This variable is ignored if the standard streams are redirected (to files or " "pipes) rather than referring to console buffers." msgstr "" -#: using/cmdline.rst:951 +#: using/cmdline.rst:965 msgid "" "If set to the value ``0``, causes the main Python command line application " "to skip coercing the legacy ASCII-based C and POSIX locales to a more " "capable UTF-8 based alternative." msgstr "" -#: using/cmdline.rst:955 +#: using/cmdline.rst:969 msgid "" "If this variable is *not* set (or is set to a value other than ``0``), the " "``LC_ALL`` locale override environment variable is also not set, and the " @@ -1196,19 +1220,19 @@ msgid "" "runtime:" msgstr "" -#: using/cmdline.rst:963 +#: using/cmdline.rst:977 msgid "``C.UTF-8``" msgstr "" -#: using/cmdline.rst:964 +#: using/cmdline.rst:978 msgid "``C.utf8``" msgstr "" -#: using/cmdline.rst:965 +#: using/cmdline.rst:979 msgid "``UTF-8``" msgstr "" -#: using/cmdline.rst:967 +#: using/cmdline.rst:981 msgid "" "If setting one of these locale categories succeeds, then the ``LC_CTYPE`` " "environment variable will also be set accordingly in the current process " @@ -1221,7 +1245,7 @@ msgid "" "(such as Python's own :func:`locale.getdefaultlocale`)." msgstr "" -#: using/cmdline.rst:977 +#: using/cmdline.rst:991 msgid "" "Configuring one of these locales (either explicitly or via the above " "implicit locale coercion) automatically enables the ``surrogateescape`` :ref:" @@ -1231,7 +1255,7 @@ msgid "" "envvar:`PYTHONIOENCODING` as usual." msgstr "" -#: using/cmdline.rst:984 +#: using/cmdline.rst:998 msgid "" "For debugging purposes, setting ``PYTHONCOERCECLOCALE=warn`` will cause " "Python to emit warning messages on ``stderr`` if either the locale coercion " @@ -1239,7 +1263,7 @@ msgid "" "active when the Python runtime is initialized." msgstr "" -#: using/cmdline.rst:989 +#: using/cmdline.rst:1003 msgid "" "Also note that even when locale coercion is disabled, or when it fails to " "find a suitable target locale, :envvar:`PYTHONUTF8` will still activate by " @@ -1248,15 +1272,15 @@ msgid "" "system interfaces." msgstr "" -#: using/cmdline.rst:995 +#: using/cmdline.rst:1009 msgid ":ref:`Availability `: Unix." msgstr "" -#: using/cmdline.rst:997 +#: using/cmdline.rst:1011 msgid "See :pep:`538` for more details." msgstr "" -#: using/cmdline.rst:1003 +#: using/cmdline.rst:1017 msgid "" "If this environment variable is set to a non-empty string, enable :ref:" "`Python Development Mode `, introducing additional runtime checks " @@ -1264,31 +1288,31 @@ msgid "" "setting the :option:`-X` ``dev`` option." msgstr "" -#: using/cmdline.rst:1012 +#: using/cmdline.rst:1026 msgid "If set to ``1``, enable the :ref:`Python UTF-8 Mode `." msgstr "" -#: using/cmdline.rst:1014 +#: using/cmdline.rst:1028 msgid "If set to ``0``, disable the :ref:`Python UTF-8 Mode `." msgstr "" -#: using/cmdline.rst:1016 +#: using/cmdline.rst:1030 msgid "" "Setting any other non-empty string causes an error during interpreter " "initialisation." msgstr "" -#: using/cmdline.rst:1023 +#: using/cmdline.rst:1037 msgid "" "If this environment variable is set to a non-empty string, issue a :class:" "`EncodingWarning` when the locale-specific default encoding is used." msgstr "" -#: using/cmdline.rst:1026 +#: using/cmdline.rst:1040 msgid "See :ref:`io-encoding-warning` for details." msgstr "" -#: using/cmdline.rst:1032 +#: using/cmdline.rst:1046 msgid "" "If this variable is set, it disables the inclusion of the tables mapping " "extra location information (end line, start column offset and end column " @@ -1297,30 +1321,38 @@ msgid "" "visual location indicators when the interpreter displays tracebacks." msgstr "" -#: using/cmdline.rst:1043 -msgid "Debug-mode variables" +#: using/cmdline.rst:1056 +msgid "" +"If this variable is set to a nonzero value, it enables support for the Linux " +"``perf`` profiler so Python calls can be detected by it." msgstr "" -#: using/cmdline.rst:1047 -msgid "If set, Python will print threading debug info into stdout." +#: using/cmdline.rst:1059 +msgid "If set to ``0``, disable Linux ``perf`` profiler support." msgstr "" -#: using/cmdline.rst:1049 -msgid "Need a :ref:`debug build of Python `." +#: using/cmdline.rst:1061 +msgid "" +"See also the :option:`-X perf <-X>` command-line option and :ref:" +"`perf_profiling`." msgstr "" -#: using/cmdline.rst:1056 +#: using/cmdline.rst:1068 +msgid "Debug-mode variables" +msgstr "" + +#: using/cmdline.rst:1072 msgid "" "If set, Python will dump objects and reference counts still alive after " "shutting down the interpreter." msgstr "" -#: using/cmdline.rst:1066 +#: using/cmdline.rst:1082 msgid "" "Need Python configured with the :option:`--with-trace-refs` build option." msgstr "" -#: using/cmdline.rst:1063 +#: using/cmdline.rst:1079 msgid "" "If set, Python will dump objects and reference counts still alive after " "shutting down the interpreter into a file called *FILENAME*." diff --git a/using/configure.po b/using/configure.po index 258e5eaff..d820fdf94 100644 --- a/using/configure.po +++ b/using/configure.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -20,69 +20,152 @@ msgstr "" msgid "Configure Python" msgstr "" +#: using/configure.rst:6 +msgid "Build Requirements" +msgstr "" + #: using/configure.rst:8 -msgid "Configure Options" +msgid "Features required to build CPython:" msgstr "" #: using/configure.rst:10 +msgid "" +"A `C11 `_ compiler. `Optional C11 " +"features `_ are not required." +msgstr "" + +#: using/configure.rst:15 +msgid "" +"Support for `IEEE 754 `_ floating " +"point numbers and `floating point Not-a-Number (NaN) `_." +msgstr "" + +#: using/configure.rst:19 +msgid "Support for threads." +msgstr "" + +#: using/configure.rst:21 +msgid "OpenSSL 1.1.1 or newer for the :mod:`ssl` and :mod:`hashlib` modules." +msgstr "" + +#: using/configure.rst:23 +msgid "On Windows, Microsoft Visual Studio 2017 or later is required." +msgstr "" + +#: using/configure.rst:25 +msgid "" +"C11 compiler, IEEE 754 and NaN support are now required. On Windows, Visual " +"Studio 2017 or later is required." +msgstr "" + +#: using/configure.rst:29 +msgid "OpenSSL 1.1.1 is now required." +msgstr "" + +#: using/configure.rst:32 +msgid "Thread support and OpenSSL 1.0.2 are now required." +msgstr "" + +#: using/configure.rst:35 +msgid "" +"Selected C99 features are now required, like ```` and ``static " +"inline`` functions." +msgstr "" + +#: using/configure.rst:39 +msgid "On Windows, Visual Studio 2015 or later is required." +msgstr "" + +#: using/configure.rst:42 +msgid "" +"See also :pep:`7` \"Style Guide for C Code\" and :pep:`11` \"CPython " +"platform support\"." +msgstr "" + +#: using/configure.rst:47 +msgid "Generated files" +msgstr "" + +#: using/configure.rst:49 +msgid "" +"To reduce build dependencies, Python source code contains multiple generated " +"files. Commands to regenerate all generated files::" +msgstr "" + +#: using/configure.rst:57 +msgid "" +"The ``Makefile.pre.in`` file documents generated files, their inputs, and " +"tools used to regenerate them. Search for ``regen-*`` make targets." +msgstr "" + +#: using/configure.rst:60 +msgid "" +"The ``make regen-configure`` command runs `tiran/cpython_autoconf `_ container for reproducible build; see " +"container ``entry.sh`` script. The container is optional, the following " +"command can be run locally, the generated files depend on autoconf and " +"aclocal versions::" +msgstr "" + +#: using/configure.rst:72 +msgid "Configure Options" +msgstr "" + +#: using/configure.rst:74 msgid "List all ``./configure`` script options using::" msgstr "" -#: using/configure.rst:14 +#: using/configure.rst:78 msgid "" "See also the :file:`Misc/SpecialBuilds.txt` in the Python source " "distribution." msgstr "" -#: using/configure.rst:17 +#: using/configure.rst:81 msgid "General Options" msgstr "" -#: using/configure.rst:21 +#: using/configure.rst:85 msgid "" "Support loadable extensions in the :mod:`_sqlite` extension module (default " "is no)." msgstr "" -#: using/configure.rst:24 +#: using/configure.rst:88 msgid "" "See the :meth:`sqlite3.Connection.enable_load_extension` method of the :mod:" "`sqlite3` module." msgstr "" -#: using/configure.rst:31 +#: using/configure.rst:95 msgid "" "Disable IPv6 support (enabled by default if supported), see the :mod:" "`socket` module." msgstr "" -#: using/configure.rst:36 +#: using/configure.rst:100 msgid "Define the size in bits of Python :class:`int` digits: 15 or 30 bits." msgstr "" -#: using/configure.rst:38 +#: using/configure.rst:102 msgid "By default, the digit size is 30." msgstr "" -#: using/configure.rst:40 +#: using/configure.rst:104 msgid "Define the ``PYLONG_BITS_IN_DIGIT`` to ``15`` or ``30``." msgstr "" -#: using/configure.rst:42 +#: using/configure.rst:106 msgid "See :data:`sys.int_info.bits_per_digit `." msgstr "" -#: using/configure.rst:47 -msgid "" -"Compile the Python ``main()`` function and link Python executable with C++ " -"compiler: ``$CXX``, or *COMPILER* if specified." -msgstr "" - -#: using/configure.rst:52 +#: using/configure.rst:110 msgid "Set the Python executable suffix to *SUFFIX*." msgstr "" -#: using/configure.rst:54 +#: using/configure.rst:112 msgid "" "The default suffix is ``.exe`` on Windows and macOS (``python.exe`` " "executable), ``.js`` on Emscripten node, ``.html`` on Emscripten browser, ``." @@ -90,91 +173,95 @@ msgid "" "executable)." msgstr "" -#: using/configure.rst:59 +#: using/configure.rst:117 msgid "" "The default suffix on WASM platform is one of ``.js``, ``.html`` or ``." "wasm``." msgstr "" -#: using/configure.rst:65 +#: using/configure.rst:123 msgid "" "Select the default time zone search path for :const:`zoneinfo.TZPATH`. See " "the :ref:`Compile-time configuration ` of " "the :mod:`zoneinfo` module." msgstr "" -#: using/configure.rst:69 +#: using/configure.rst:127 msgid "" "Default: ``/usr/share/zoneinfo:/usr/lib/zoneinfo:/usr/share/lib/zoneinfo:/" "etc/zoneinfo``." msgstr "" -#: using/configure.rst:71 +#: using/configure.rst:129 msgid "See :data:`os.pathsep` path separator." msgstr "" -#: using/configure.rst:77 +#: using/configure.rst:135 msgid "" "Build the ``_decimal`` extension module using a thread-local context rather " "than a coroutine-local context (default), see the :mod:`decimal` module." msgstr "" -#: using/configure.rst:80 +#: using/configure.rst:138 msgid "See :const:`decimal.HAVE_CONTEXTVAR` and the :mod:`contextvars` module." msgstr "" -#: using/configure.rst:86 +#: using/configure.rst:144 msgid "Override order to check db backends for the :mod:`dbm` module" msgstr "" -#: using/configure.rst:88 +#: using/configure.rst:146 msgid "" "A valid value is a colon (``:``) separated string with the backend names:" msgstr "" -#: using/configure.rst:90 +#: using/configure.rst:148 msgid "``ndbm``;" msgstr "" -#: using/configure.rst:91 +#: using/configure.rst:149 msgid "``gdbm``;" msgstr "" -#: using/configure.rst:92 +#: using/configure.rst:150 msgid "``bdb``." msgstr "" -#: using/configure.rst:96 +#: using/configure.rst:154 msgid "Disable C locale coercion to a UTF-8 based locale (enabled by default)." msgstr "" -#: using/configure.rst:98 +#: using/configure.rst:156 msgid "Don't define the ``PY_COERCE_C_LOCALE`` macro." msgstr "" -#: using/configure.rst:100 +#: using/configure.rst:158 msgid "See :envvar:`PYTHONCOERCECLOCALE` and the :pep:`538`." msgstr "" -#: using/configure.rst:104 +#: using/configure.rst:162 +msgid "Disable all freelists except the empty tuple singleton." +msgstr "" + +#: using/configure.rst:168 msgid "Python library directory name (default is ``lib``)." msgstr "" -#: using/configure.rst:106 +#: using/configure.rst:170 msgid "Fedora and SuSE use ``lib64`` on 64-bit platforms." msgstr "" -#: using/configure.rst:108 +#: using/configure.rst:172 msgid "See :data:`sys.platlibdir`." msgstr "" -#: using/configure.rst:114 +#: using/configure.rst:178 msgid "" "Directory of wheel packages used by the :mod:`ensurepip` module (none by " "default)." msgstr "" -#: using/configure.rst:117 +#: using/configure.rst:181 msgid "" "Some Linux distribution packaging policies recommend against bundling " "dependencies. For example, Fedora installs wheel packages in the ``/usr/" @@ -182,266 +269,314 @@ msgid "" "_bundled` package." msgstr "" -#: using/configure.rst:126 +#: using/configure.rst:190 msgid "" "Whether configure should use :program:`pkg-config` to detect build " "dependencies." msgstr "" -#: using/configure.rst:129 +#: using/configure.rst:193 msgid "``check`` (default): :program:`pkg-config` is optional" msgstr "" -#: using/configure.rst:130 +#: using/configure.rst:194 msgid "``yes``: :program:`pkg-config` is mandatory" msgstr "" -#: using/configure.rst:131 +#: using/configure.rst:195 msgid "``no``: configure does not use :program:`pkg-config` even when present" msgstr "" -#: using/configure.rst:137 +#: using/configure.rst:201 msgid "Turn on internal statistics gathering." msgstr "" -#: using/configure.rst:139 +#: using/configure.rst:203 msgid "" "The statistics will be dumped to a arbitrary (probably unique) file in ``/" -"tmp/py_stats/``, or ``C:\\temp\\py_stats\\`` on Windows." +"tmp/py_stats/``, or ``C:\\temp\\py_stats\\`` on Windows. If that directory " +"does not exist, results will be printed on stdout." msgstr "" -#: using/configure.rst:142 +#: using/configure.rst:207 msgid "Use ``Tools/scripts/summarize_stats.py`` to read the stats." msgstr "" -#: using/configure.rst:147 +#: using/configure.rst:212 msgid "WebAssembly Options" msgstr "" -#: using/configure.rst:151 +#: using/configure.rst:216 msgid "Set build flavor for ``wasm32-emscripten``." msgstr "" -#: using/configure.rst:153 +#: using/configure.rst:218 msgid "``browser`` (default): preload minimal stdlib, default MEMFS." msgstr "" -#: using/configure.rst:154 +#: using/configure.rst:219 msgid "``node``: NODERAWFS and pthread support." msgstr "" -#: using/configure.rst:160 +#: using/configure.rst:225 msgid "Turn on dynamic linking support for WASM." msgstr "" -#: using/configure.rst:162 +#: using/configure.rst:227 msgid "" "Dynamic linking enables ``dlopen``. File size of the executable increases " "due to limited dead code elimination and additional features." msgstr "" -#: using/configure.rst:169 +#: using/configure.rst:234 msgid "Turn on pthreads support for WASM." msgstr "" -#: using/configure.rst:175 +#: using/configure.rst:240 msgid "Install Options" msgstr "" -#: using/configure.rst:179 +#: using/configure.rst:244 msgid "" "Install architecture-independent files in PREFIX. On Unix, it defaults to :" "file:`/usr/local`." msgstr "" -#: using/configure.rst:182 +#: using/configure.rst:247 msgid "This value can be retrieved at runtime using :data:`sys.prefix`." msgstr "" -#: using/configure.rst:184 +#: using/configure.rst:249 msgid "" "As an example, one can use ``--prefix=\"$HOME/.local/\"`` to install a " "Python in its home directory." msgstr "" -#: using/configure.rst:189 +#: using/configure.rst:254 msgid "" "Install architecture-dependent files in EPREFIX, defaults to :option:`--" "prefix`." msgstr "" -#: using/configure.rst:191 +#: using/configure.rst:256 msgid "This value can be retrieved at runtime using :data:`sys.exec_prefix`." msgstr "" -#: using/configure.rst:195 +#: using/configure.rst:260 msgid "" "Don't build nor install test modules, like the :mod:`test` package or the :" "mod:`_testcapi` extension module (built and installed by default)." msgstr "" -#: using/configure.rst:202 +#: using/configure.rst:267 msgid "Select the :mod:`ensurepip` command run on Python installation:" msgstr "" -#: using/configure.rst:204 +#: using/configure.rst:269 msgid "" "``upgrade`` (default): run ``python -m ensurepip --altinstall --upgrade`` " "command." msgstr "" -#: using/configure.rst:206 +#: using/configure.rst:271 msgid "``install``: run ``python -m ensurepip --altinstall`` command;" msgstr "" -#: using/configure.rst:207 +#: using/configure.rst:272 msgid "``no``: don't run ensurepip;" msgstr "" -#: using/configure.rst:213 +#: using/configure.rst:278 msgid "Performance options" msgstr "" -#: using/configure.rst:215 +#: using/configure.rst:280 msgid "" "Configuring Python using ``--enable-optimizations --with-lto`` (PGO + LTO) " -"is recommended for best performance." +"is recommended for best performance. The experimental ``--enable-bolt`` flag " +"can also be used to improve performance." msgstr "" -#: using/configure.rst:220 +#: using/configure.rst:286 msgid "" "Enable Profile Guided Optimization (PGO) using :envvar:`PROFILE_TASK` " "(disabled by default)." msgstr "" -#: using/configure.rst:223 +#: using/configure.rst:289 msgid "" "The C compiler Clang requires ``llvm-profdata`` program for PGO. On macOS, " "GCC also requires it: GCC is just an alias to Clang on macOS." msgstr "" -#: using/configure.rst:226 +#: using/configure.rst:292 msgid "" "Disable also semantic interposition in libpython if ``--enable-shared`` and " "GCC is used: add ``-fno-semantic-interposition`` to the compiler and linker " "flags." msgstr "" -#: using/configure.rst:232 +#: using/configure.rst:298 msgid "Use ``-fno-semantic-interposition`` on GCC." msgstr "" -#: using/configure.rst:237 +#: using/configure.rst:303 msgid "" "Environment variable used in the Makefile: Python command line arguments for " "the PGO generation task." msgstr "" -#: using/configure.rst:240 +#: using/configure.rst:306 msgid "Default: ``-m test --pgo --timeout=$(TESTTIMEOUT)``." msgstr "" -#: using/configure.rst:246 +#: using/configure.rst:312 msgid "Enable Link Time Optimization (LTO) in any build (disabled by default)." msgstr "" -#: using/configure.rst:248 +#: using/configure.rst:314 msgid "" "The C compiler Clang requires ``llvm-ar`` for LTO (``ar`` on macOS), as well " "as an LTO-aware linker (``ld.gold`` or ``lld``)." msgstr "" -#: using/configure.rst:253 +#: using/configure.rst:319 msgid "To use ThinLTO feature, use ``--with-lto=thin`` on Clang." msgstr "" -#: using/configure.rst:258 +#: using/configure.rst:322 +msgid "" +"Use ThinLTO as the default optimization policy on Clang if the compiler " +"accepts the flag." +msgstr "" + +#: using/configure.rst:327 +msgid "" +"Enable usage of the `BOLT post-link binary optimizer `_ (disabled by default)." +msgstr "" + +#: using/configure.rst:331 +msgid "" +"BOLT is part of the LLVM project but is not always included in their binary " +"distributions. This flag requires that ``llvm-bolt`` and ``merge-fdata`` are " +"available." +msgstr "" + +#: using/configure.rst:335 +msgid "" +"BOLT is still a fairly new project so this flag should be considered " +"experimental for now. Because this tool operates on machine code its success " +"is dependent on a combination of the build environment + the other " +"optimization configure args + the CPU architecture, and not all combinations " +"are supported. BOLT versions before LLVM 16 are known to crash BOLT under " +"some scenarios. Use of LLVM 16 or newer for BOLT optimization is strongly " +"encouraged." +msgstr "" + +#: using/configure.rst:343 +msgid "" +"The :envvar:`!BOLT_INSTRUMENT_FLAGS` and :envvar:`!BOLT_APPLY_FLAGS` :" +"program:`configure` variables can be defined to override the default set of " +"arguments for :program:`llvm-bolt` to instrument and apply BOLT data to " +"binaries, respectively." +msgstr "" + +#: using/configure.rst:352 msgid "" "Enable computed gotos in evaluation loop (enabled by default on supported " "compilers)." msgstr "" -#: using/configure.rst:263 +#: using/configure.rst:357 msgid "" "Disable the specialized Python memory allocator :ref:`pymalloc ` " "(enabled by default)." msgstr "" -#: using/configure.rst:266 +#: using/configure.rst:360 msgid "See also :envvar:`PYTHONMALLOC` environment variable." msgstr "" -#: using/configure.rst:270 +#: using/configure.rst:364 msgid "" "Disable static documentation strings to reduce the memory footprint (enabled " "by default). Documentation strings defined in Python are not affected." msgstr "" -#: using/configure.rst:273 +#: using/configure.rst:367 msgid "Don't define the ``WITH_DOC_STRINGS`` macro." msgstr "" -#: using/configure.rst:275 +#: using/configure.rst:369 msgid "See the ``PyDoc_STRVAR()`` macro." msgstr "" -#: using/configure.rst:279 +#: using/configure.rst:373 msgid "Enable C-level code profiling with ``gprof`` (disabled by default)." msgstr "" -#: using/configure.rst:285 +#: using/configure.rst:377 +msgid "" +"Add ``-fstrict-overflow`` to the C compiler flags (by default we add ``-fno-" +"strict-overflow`` instead)." +msgstr "" + +#: using/configure.rst:384 msgid "Python Debug Build" msgstr "" -#: using/configure.rst:287 +#: using/configure.rst:386 msgid "" "A debug build is Python built with the :option:`--with-pydebug` configure " "option." msgstr "" -#: using/configure.rst:290 +#: using/configure.rst:389 msgid "Effects of a debug build:" msgstr "" -#: using/configure.rst:292 +#: using/configure.rst:391 msgid "" "Display all warnings by default: the list of default warning filters is " "empty in the :mod:`warnings` module." msgstr "" -#: using/configure.rst:294 +#: using/configure.rst:393 msgid "Add ``d`` to :data:`sys.abiflags`." msgstr "" -#: using/configure.rst:295 +#: using/configure.rst:394 msgid "Add :func:`sys.gettotalrefcount` function." msgstr "" -#: using/configure.rst:296 +#: using/configure.rst:395 msgid "Add :option:`-X showrefcount <-X>` command line option." msgstr "" -#: using/configure.rst:297 -msgid "Add :envvar:`PYTHONTHREADDEBUG` environment variable." +#: using/configure.rst:396 +msgid "" +"Add :option:`-d` command line option and :envvar:`PYTHONDEBUG` environment " +"variable to debug the parser." msgstr "" -#: using/configure.rst:298 +#: using/configure.rst:398 msgid "" "Add support for the ``__lltrace__`` variable: enable low-level tracing in " "the bytecode evaluation loop if the variable is defined." msgstr "" -#: using/configure.rst:300 +#: using/configure.rst:400 msgid "" "Install :ref:`debug hooks on memory allocators ` " "to detect buffer overflow and other memory errors." msgstr "" -#: using/configure.rst:302 +#: using/configure.rst:402 msgid "Define ``Py_DEBUG`` and ``Py_REF_DEBUG`` macros." msgstr "" -#: using/configure.rst:303 +#: using/configure.rst:403 msgid "" "Add runtime checks: code surrounded by ``#ifdef Py_DEBUG`` and ``#endif``. " "Enable ``assert(...)`` and ``_PyObject_ASSERT(...)`` assertions: don't set " @@ -449,45 +584,45 @@ msgid "" "option). Main runtime checks:" msgstr "" -#: using/configure.rst:308 +#: using/configure.rst:408 msgid "Add sanity checks on the function arguments." msgstr "" -#: using/configure.rst:309 +#: using/configure.rst:409 msgid "" "Unicode and int objects are created with their memory filled with a pattern " "to detect usage of uninitialized objects." msgstr "" -#: using/configure.rst:311 +#: using/configure.rst:411 msgid "" "Ensure that functions which can clear or replace the current exception are " "not called with an exception raised." msgstr "" -#: using/configure.rst:313 +#: using/configure.rst:413 msgid "Check that deallocator functions don't change the current exception." msgstr "" -#: using/configure.rst:314 +#: using/configure.rst:414 msgid "" "The garbage collector (:func:`gc.collect` function) runs some basic checks " "on objects consistency." msgstr "" -#: using/configure.rst:316 +#: using/configure.rst:416 msgid "" "The :c:macro:`Py_SAFE_DOWNCAST()` macro checks for integer underflow and " "overflow when downcasting from wide types to narrow types." msgstr "" -#: using/configure.rst:319 +#: using/configure.rst:419 msgid "" "See also the :ref:`Python Development Mode ` and the :option:`--" "with-trace-refs` configure option." msgstr "" -#: using/configure.rst:322 +#: using/configure.rst:422 msgid "" "Release builds and debug builds are now ABI compatible: defining the " "``Py_DEBUG`` macro no longer implies the ``Py_TRACE_REFS`` macro (see the :" @@ -495,326 +630,320 @@ msgid "" "incompatibility." msgstr "" -#: using/configure.rst:330 +#: using/configure.rst:430 msgid "Debug options" msgstr "" -#: using/configure.rst:334 +#: using/configure.rst:434 msgid "" ":ref:`Build Python in debug mode `: define the ``Py_DEBUG`` " "macro (disabled by default)." msgstr "" -#: using/configure.rst:339 +#: using/configure.rst:439 msgid "Enable tracing references for debugging purpose (disabled by default)." msgstr "" -#: using/configure.rst:341 +#: using/configure.rst:441 msgid "Effects:" msgstr "" -#: using/configure.rst:343 +#: using/configure.rst:443 msgid "Define the ``Py_TRACE_REFS`` macro." msgstr "" -#: using/configure.rst:344 +#: using/configure.rst:444 msgid "Add :func:`sys.getobjects` function." msgstr "" -#: using/configure.rst:345 +#: using/configure.rst:445 msgid "Add :envvar:`PYTHONDUMPREFS` environment variable." msgstr "" -#: using/configure.rst:347 +#: using/configure.rst:447 msgid "" "This build is not ABI compatible with release build (default build) or debug " "build (``Py_DEBUG`` and ``Py_REF_DEBUG`` macros)." msgstr "" -#: using/configure.rst:354 +#: using/configure.rst:454 msgid "" "Build with C assertions enabled (default is no): ``assert(...);`` and " "``_PyObject_ASSERT(...);``." msgstr "" -#: using/configure.rst:357 +#: using/configure.rst:457 msgid "" "If set, the ``NDEBUG`` macro is not defined in the :envvar:`OPT` compiler " "variable." msgstr "" -#: using/configure.rst:360 +#: using/configure.rst:460 msgid "" "See also the :option:`--with-pydebug` option (:ref:`debug build `) which also enables assertions." msgstr "" -#: using/configure.rst:367 +#: using/configure.rst:467 msgid "Enable Valgrind support (default is no)." msgstr "" -#: using/configure.rst:371 +#: using/configure.rst:471 msgid "Enable DTrace support (default is no)." msgstr "" -#: using/configure.rst:373 +#: using/configure.rst:473 msgid "" "See :ref:`Instrumenting CPython with DTrace and SystemTap `." msgstr "" -#: using/configure.rst:380 +#: using/configure.rst:480 msgid "" "Enable AddressSanitizer memory error detector, ``asan`` (default is no)." msgstr "" -#: using/configure.rst:386 +#: using/configure.rst:486 msgid "" "Enable MemorySanitizer allocation error detector, ``msan`` (default is no)." msgstr "" -#: using/configure.rst:392 +#: using/configure.rst:492 msgid "" "Enable UndefinedBehaviorSanitizer undefined behaviour detector, ``ubsan`` " "(default is no)." msgstr "" -#: using/configure.rst:399 +#: using/configure.rst:499 msgid "Linker options" msgstr "" -#: using/configure.rst:403 +#: using/configure.rst:503 msgid "Enable building a shared Python library: ``libpython`` (default is no)." msgstr "" -#: using/configure.rst:407 +#: using/configure.rst:507 msgid "" "Do not build ``libpythonMAJOR.MINOR.a`` and do not install ``python.o`` " "(built and enabled by default)." msgstr "" -#: using/configure.rst:414 +#: using/configure.rst:514 msgid "Libraries options" msgstr "" -#: using/configure.rst:418 +#: using/configure.rst:518 msgid "Link against additional libraries (default is no)." msgstr "" -#: using/configure.rst:422 +#: using/configure.rst:522 msgid "" "Build the :mod:`pyexpat` module using an installed ``expat`` library " "(default is no)." msgstr "" -#: using/configure.rst:427 -msgid "" -"Build the :mod:`_ctypes` extension module using an installed ``ffi`` " -"library, see the :mod:`ctypes` module (default is system-dependent)." -msgstr "" - -#: using/configure.rst:432 +#: using/configure.rst:527 msgid "" "Build the ``_decimal`` extension module using an installed ``mpdec`` " "library, see the :mod:`decimal` module (default is no)." msgstr "" -#: using/configure.rst:439 +#: using/configure.rst:534 msgid "Use ``editline`` library for backend of the :mod:`readline` module." msgstr "" -#: using/configure.rst:441 +#: using/configure.rst:536 msgid "Define the ``WITH_EDITLINE`` macro." msgstr "" -#: using/configure.rst:447 +#: using/configure.rst:542 msgid "Don't build the :mod:`readline` module (built by default)." msgstr "" -#: using/configure.rst:449 +#: using/configure.rst:544 msgid "Don't define the ``HAVE_LIBREADLINE`` macro." msgstr "" -#: using/configure.rst:455 +#: using/configure.rst:550 msgid "" "Override ``libm`` math library to *STRING* (default is system-dependent)." msgstr "" -#: using/configure.rst:459 +#: using/configure.rst:554 msgid "Override ``libc`` C library to *STRING* (default is system-dependent)." msgstr "" -#: using/configure.rst:463 +#: using/configure.rst:558 msgid "Root of the OpenSSL directory." msgstr "" -#: using/configure.rst:469 +#: using/configure.rst:564 msgid "Set runtime library directory (rpath) for OpenSSL libraries:" msgstr "" -#: using/configure.rst:471 +#: using/configure.rst:566 msgid "``no`` (default): don't set rpath;" msgstr "" -#: using/configure.rst:472 +#: using/configure.rst:567 msgid "" "``auto``: auto-detect rpath from :option:`--with-openssl` and ``pkg-config``;" msgstr "" -#: using/configure.rst:474 +#: using/configure.rst:569 msgid "*DIR*: set an explicit rpath." msgstr "" -#: using/configure.rst:480 +#: using/configure.rst:575 msgid "Security Options" msgstr "" -#: using/configure.rst:484 +#: using/configure.rst:579 msgid "Select hash algorithm for use in ``Python/pyhash.c``:" msgstr "" -#: using/configure.rst:486 +#: using/configure.rst:581 msgid "``siphash13`` (default);" msgstr "" -#: using/configure.rst:487 +#: using/configure.rst:582 msgid "``siphash24``;" msgstr "" -#: using/configure.rst:488 +#: using/configure.rst:583 msgid "``fnv``." msgstr "" -#: using/configure.rst:492 +#: using/configure.rst:587 msgid "``siphash13`` is added and it is the new default." msgstr "" -#: using/configure.rst:497 +#: using/configure.rst:592 msgid "Built-in hash modules:" msgstr "" -#: using/configure.rst:499 +#: using/configure.rst:594 msgid "``md5``;" msgstr "" -#: using/configure.rst:500 +#: using/configure.rst:595 msgid "``sha1``;" msgstr "" -#: using/configure.rst:501 +#: using/configure.rst:596 msgid "``sha256``;" msgstr "" -#: using/configure.rst:502 +#: using/configure.rst:597 msgid "``sha512``;" msgstr "" -#: using/configure.rst:503 +#: using/configure.rst:598 msgid "``sha3`` (with shake);" msgstr "" -#: using/configure.rst:504 +#: using/configure.rst:599 msgid "``blake2``." msgstr "" -#: using/configure.rst:510 +#: using/configure.rst:605 msgid "Override the OpenSSL default cipher suites string:" msgstr "" -#: using/configure.rst:512 +#: using/configure.rst:607 msgid "``python`` (default): use Python's preferred selection;" msgstr "" -#: using/configure.rst:513 +#: using/configure.rst:608 msgid "``openssl``: leave OpenSSL's defaults untouched;" msgstr "" -#: using/configure.rst:514 +#: using/configure.rst:609 msgid "*STRING*: use a custom string" msgstr "" -#: using/configure.rst:516 +#: using/configure.rst:611 msgid "See the :mod:`ssl` module." msgstr "" -#: using/configure.rst:522 +#: using/configure.rst:617 msgid "" "The settings ``python`` and *STRING* also set TLS 1.2 as minimum protocol " "version." msgstr "" -#: using/configure.rst:526 +#: using/configure.rst:621 msgid "macOS Options" msgstr "" -#: using/configure.rst:528 +#: using/configure.rst:623 msgid "See ``Mac/README.rst``." msgstr "" -#: using/configure.rst:533 +#: using/configure.rst:628 msgid "" "Create a universal binary build. *SDKDIR* specifies which macOS SDK should " "be used to perform the build (default is no)." msgstr "" -#: using/configure.rst:539 +#: using/configure.rst:634 msgid "" "Create a Python.framework rather than a traditional Unix install. Optional " "*INSTALLDIR* specifies the installation path (default is no)." msgstr "" -#: using/configure.rst:544 +#: using/configure.rst:639 msgid "" "Specify the kind of universal binary that should be created. This option is " "only valid when :option:`--enable-universalsdk` is set." msgstr "" -#: using/configure.rst:547 +#: using/configure.rst:642 msgid "Options:" msgstr "" -#: using/configure.rst:549 +#: using/configure.rst:644 msgid "``universal2``;" msgstr "" -#: using/configure.rst:550 +#: using/configure.rst:645 msgid "``32-bit``;" msgstr "" -#: using/configure.rst:551 +#: using/configure.rst:646 msgid "``64-bit``;" msgstr "" -#: using/configure.rst:552 +#: using/configure.rst:647 msgid "``3-way``;" msgstr "" -#: using/configure.rst:553 +#: using/configure.rst:648 msgid "``intel``;" msgstr "" -#: using/configure.rst:554 +#: using/configure.rst:649 msgid "``intel-32``;" msgstr "" -#: using/configure.rst:555 +#: using/configure.rst:650 msgid "``intel-64``;" msgstr "" -#: using/configure.rst:556 +#: using/configure.rst:651 msgid "``all``." msgstr "" -#: using/configure.rst:560 +#: using/configure.rst:655 msgid "" "Specify the name for the python framework on macOS only valid when :option:" "`--enable-framework` is set (default: ``Python``)." msgstr "" -#: using/configure.rst:565 +#: using/configure.rst:660 msgid "Cross Compiling Options" msgstr "" -#: using/configure.rst:567 +#: using/configure.rst:662 msgid "" "Cross compiling, also known as cross building, can be used to build Python " "for another CPU architecture or platform. Cross compiling requires a Python " @@ -822,101 +951,95 @@ msgid "" "match the version of the cross compiled host Python." msgstr "" -#: using/configure.rst:574 +#: using/configure.rst:669 msgid "" "configure for building on BUILD, usually guessed by :program:`config.guess`." msgstr "" -#: using/configure.rst:578 +#: using/configure.rst:673 msgid "cross-compile to build programs to run on HOST (target platform)" msgstr "" -#: using/configure.rst:582 +#: using/configure.rst:677 msgid "path to build ``python`` binary for cross compiling" msgstr "" -#: using/configure.rst:588 +#: using/configure.rst:683 msgid "An environment variable that points to a file with configure overrides." msgstr "" -#: using/configure.rst:590 +#: using/configure.rst:685 msgid "Example *config.site* file::" msgstr "" -#: using/configure.rst:598 +#: using/configure.rst:693 msgid "Cross compiling example::" msgstr "" -#: using/configure.rst:607 +#: using/configure.rst:702 msgid "Python Build System" msgstr "" -#: using/configure.rst:610 +#: using/configure.rst:705 msgid "Main files of the build system" msgstr "" -#: using/configure.rst:612 +#: using/configure.rst:707 msgid ":file:`configure.ac` => :file:`configure`;" msgstr "" -#: using/configure.rst:613 +#: using/configure.rst:708 msgid "" ":file:`Makefile.pre.in` => :file:`Makefile` (created by :file:`configure`);" msgstr "" -#: using/configure.rst:614 +#: using/configure.rst:709 msgid ":file:`pyconfig.h` (created by :file:`configure`);" msgstr "" -#: using/configure.rst:615 +#: using/configure.rst:710 msgid "" ":file:`Modules/Setup`: C extensions built by the Makefile using :file:" "`Module/makesetup` shell script;" msgstr "" -#: using/configure.rst:617 -msgid ":file:`setup.py`: C extensions built using the :mod:`distutils` module." -msgstr "" - -#: using/configure.rst:620 +#: using/configure.rst:714 msgid "Main build steps" msgstr "" -#: using/configure.rst:622 +#: using/configure.rst:716 msgid "C files (``.c``) are built as object files (``.o``)." msgstr "" -#: using/configure.rst:623 +#: using/configure.rst:717 msgid "A static ``libpython`` library (``.a``) is created from objects files." msgstr "" -#: using/configure.rst:624 +#: using/configure.rst:718 msgid "" "``python.o`` and the static ``libpython`` library are linked into the final " "``python`` program." msgstr "" -#: using/configure.rst:626 -msgid "" -"C extensions are built by the Makefile (see :file:`Modules/Setup`) and " -"``python setup.py build``." +#: using/configure.rst:720 +msgid "C extensions are built by the Makefile (see :file:`Modules/Setup`)." msgstr "" -#: using/configure.rst:630 +#: using/configure.rst:723 msgid "Main Makefile targets" msgstr "" -#: using/configure.rst:632 +#: using/configure.rst:725 msgid "``make``: Build Python with the standard library." msgstr "" -#: using/configure.rst:633 +#: using/configure.rst:726 msgid "" "``make platform:``: build the ``python`` program, but don't build the " "standard library extension modules." msgstr "" -#: using/configure.rst:635 +#: using/configure.rst:728 msgid "" "``make profile-opt``: build Python using Profile Guided Optimization (PGO). " "You can use the configure :option:`--enable-optimizations` option to make " @@ -924,53 +1047,53 @@ msgid "" "``make``)." msgstr "" -#: using/configure.rst:639 +#: using/configure.rst:732 msgid "" "``make buildbottest``: Build Python and run the Python test suite, the same " "way than buildbots test Python. Set ``TESTTIMEOUT`` variable (in seconds) to " "change the test timeout (1200 by default: 20 minutes)." msgstr "" -#: using/configure.rst:642 +#: using/configure.rst:735 msgid "``make install``: Build and install Python." msgstr "" -#: using/configure.rst:643 +#: using/configure.rst:736 msgid "" "``make regen-all``: Regenerate (almost) all generated files; ``make regen-" "stdlib-module-names`` and ``autoconf`` must be run separately for the " "remaining generated files." msgstr "" -#: using/configure.rst:646 +#: using/configure.rst:739 msgid "``make clean``: Remove built files." msgstr "" -#: using/configure.rst:647 +#: using/configure.rst:740 msgid "" "``make distclean``: Same than ``make clean``, but remove also files created " "by the configure script." msgstr "" -#: using/configure.rst:651 +#: using/configure.rst:744 msgid "C extensions" msgstr "" -#: using/configure.rst:653 +#: using/configure.rst:746 msgid "" "Some C extensions are built as built-in modules, like the ``sys`` module. " "They are built with the ``Py_BUILD_CORE_BUILTIN`` macro defined. Built-in " "modules have no ``__file__`` attribute::" msgstr "" -#: using/configure.rst:665 +#: using/configure.rst:758 msgid "" "Other C extensions are built as dynamic libraries, like the ``_asyncio`` " "module. They are built with the ``Py_BUILD_CORE_MODULE`` macro defined. " "Example on Linux x86-64::" msgstr "" -#: using/configure.rst:675 +#: using/configure.rst:768 msgid "" ":file:`Modules/Setup` is used to generate Makefile targets to build C " "extensions. At the beginning of the files, C extensions are built as built-" @@ -978,322 +1101,303 @@ msgid "" "dynamic libraries." msgstr "" -#: using/configure.rst:679 -msgid "" -"The :file:`setup.py` script only builds C extensions as shared libraries " -"using the :mod:`distutils` module." -msgstr "" - -#: using/configure.rst:682 +#: using/configure.rst:772 msgid "" "The :c:macro:`PyAPI_FUNC()`, :c:macro:`PyAPI_DATA()` and :c:macro:" "`PyMODINIT_FUNC` macros of :file:`Include/pyport.h` are defined differently " "depending if the ``Py_BUILD_CORE_MODULE`` macro is defined:" msgstr "" -#: using/configure.rst:686 +#: using/configure.rst:776 msgid "Use ``Py_EXPORTED_SYMBOL`` if the ``Py_BUILD_CORE_MODULE`` is defined" msgstr "" -#: using/configure.rst:687 +#: using/configure.rst:777 msgid "Use ``Py_IMPORTED_SYMBOL`` otherwise." msgstr "" -#: using/configure.rst:689 +#: using/configure.rst:779 msgid "" "If the ``Py_BUILD_CORE_BUILTIN`` macro is used by mistake on a C extension " "built as a shared library, its ``PyInit_xxx()`` function is not exported, " "causing an :exc:`ImportError` on import." msgstr "" -#: using/configure.rst:695 +#: using/configure.rst:785 msgid "Compiler and linker flags" msgstr "" -#: using/configure.rst:697 +#: using/configure.rst:787 msgid "" "Options set by the ``./configure`` script and environment variables and used " "by ``Makefile``." msgstr "" -#: using/configure.rst:701 +#: using/configure.rst:791 msgid "Preprocessor flags" msgstr "" -#: using/configure.rst:705 +#: using/configure.rst:795 msgid "" "Value of :envvar:`CPPFLAGS` variable passed to the ``./configure`` script." msgstr "" -#: using/configure.rst:711 +#: using/configure.rst:801 msgid "" "(Objective) C/C++ preprocessor flags, e.g. ``-I`` if you have " "headers in a nonstandard directory ````." msgstr "" -#: using/configure.rst:909 +#: using/configure.rst:994 msgid "" "Both :envvar:`CPPFLAGS` and :envvar:`LDFLAGS` need to contain the shell's " -"value for setup.py to be able to build extension modules using the " -"directories specified in the environment variables." +"value to be able to build extension modules using the directories specified " +"in the environment variables." msgstr "" -#: using/configure.rst:724 +#: using/configure.rst:814 msgid "" "Extra preprocessor flags added for building the interpreter object files." msgstr "" -#: using/configure.rst:726 +#: using/configure.rst:816 msgid "" "Default: ``$(BASECPPFLAGS) -I. -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) " "$(CPPFLAGS)``." msgstr "" -#: using/configure.rst:731 +#: using/configure.rst:821 msgid "Compiler flags" msgstr "" -#: using/configure.rst:735 +#: using/configure.rst:825 msgid "C compiler command." msgstr "" -#: using/configure.rst:737 +#: using/configure.rst:827 msgid "Example: ``gcc -pthread``." msgstr "" -#: using/configure.rst:741 -msgid "" -"C compiler command used to build the ``main()`` function of programs like " -"``python``." -msgstr "" - -#: using/configure.rst:744 -msgid "" -"Variable set by the :option:`--with-cxx-main` option of the configure script." -msgstr "" - -#: using/configure.rst:747 -msgid "Default: ``$(CC)``." -msgstr "" - -#: using/configure.rst:751 +#: using/configure.rst:831 msgid "C++ compiler command." msgstr "" -#: using/configure.rst:753 -msgid "Used if the :option:`--with-cxx-main` option is used." -msgstr "" - -#: using/configure.rst:755 +#: using/configure.rst:833 msgid "Example: ``g++ -pthread``." msgstr "" -#: using/configure.rst:759 +#: using/configure.rst:837 msgid "C compiler flags." msgstr "" -#: using/configure.rst:763 +#: using/configure.rst:841 msgid "" ":envvar:`CFLAGS_NODIST` is used for building the interpreter and stdlib C " -"extensions. Use it when a compiler flag should *not* be part of the " -"distutils :envvar:`CFLAGS` once Python is installed (:issue:`21121`)." +"extensions. Use it when a compiler flag should *not* be part of :envvar:" +"`CFLAGS` once Python is installed (:gh:`65320`)." msgstr "" -#: using/configure.rst:767 +#: using/configure.rst:845 msgid "In particular, :envvar:`CFLAGS` should not contain:" msgstr "" -#: using/configure.rst:769 +#: using/configure.rst:847 msgid "" "the compiler flag ``-I`` (for setting the search path for include files). " "The ``-I`` flags are processed from left to right, and any flags in :envvar:" "`CFLAGS` would take precedence over user- and package-supplied ``-I`` flags." msgstr "" -#: using/configure.rst:774 +#: using/configure.rst:852 msgid "" "hardening flags such as ``-Werror`` because distributions cannot control " "whether packages installed by users conform to such heightened standards." msgstr "" -#: using/configure.rst:782 +#: using/configure.rst:860 +msgid "" +"Options passed to the :mod:`compileall` command line when building PYC files " +"in ``make install``. Default: ``-j0``." +msgstr "" + +#: using/configure.rst:867 msgid "Extra C compiler flags." msgstr "" -#: using/configure.rst:786 +#: using/configure.rst:871 msgid "" "Value of :envvar:`CFLAGS` variable passed to the ``./configure`` script." msgstr "" -#: using/configure.rst:793 +#: using/configure.rst:878 msgid "" "Value of :envvar:`CFLAGS_NODIST` variable passed to the ``./configure`` " "script." msgstr "" -#: using/configure.rst:800 +#: using/configure.rst:885 msgid "Base compiler flags." msgstr "" -#: using/configure.rst:804 +#: using/configure.rst:889 msgid "Optimization flags." msgstr "" -#: using/configure.rst:808 +#: using/configure.rst:893 msgid "Strict or non-strict aliasing flags used to compile ``Python/dtoa.c``." msgstr "" -#: using/configure.rst:814 +#: using/configure.rst:899 msgid "Compiler flags used to build a shared library." msgstr "" -#: using/configure.rst:816 +#: using/configure.rst:901 msgid "For example, ``-fPIC`` is used on Linux and on BSD." msgstr "" -#: using/configure.rst:820 +#: using/configure.rst:905 msgid "Extra C flags added for building the interpreter object files." msgstr "" -#: using/configure.rst:822 +#: using/configure.rst:907 msgid "" "Default: ``$(CCSHARED)`` when :option:`--enable-shared` is used, or an empty " "string otherwise." msgstr "" -#: using/configure.rst:827 +#: using/configure.rst:912 msgid "" "Default: ``$(BASECFLAGS) $(OPT) $(CONFIGURE_CFLAGS) $(CFLAGS) " "$(EXTRA_CFLAGS)``." msgstr "" -#: using/configure.rst:831 +#: using/configure.rst:916 msgid "" "Default: ``$(CONFIGURE_CFLAGS_NODIST) $(CFLAGS_NODIST) -I$(srcdir)/Include/" "internal``." msgstr "" -#: using/configure.rst:837 +#: using/configure.rst:922 msgid "C flags used for building the interpreter object files." msgstr "" -#: using/configure.rst:839 +#: using/configure.rst:924 msgid "" "Default: ``$(PY_CFLAGS) $(PY_CFLAGS_NODIST) $(PY_CPPFLAGS) " "$(CFLAGSFORSHARED)``." msgstr "" -#: using/configure.rst:845 +#: using/configure.rst:930 msgid "Default: ``$(PY_STDMODULE_CFLAGS) -DPy_BUILD_CORE``." msgstr "" -#: using/configure.rst:851 +#: using/configure.rst:936 msgid "" "Compiler flags to build a standard library extension module as a built-in " "module, like the :mod:`posix` module." msgstr "" -#: using/configure.rst:854 +#: using/configure.rst:939 msgid "Default: ``$(PY_STDMODULE_CFLAGS) -DPy_BUILD_CORE_BUILTIN``." msgstr "" -#: using/configure.rst:860 +#: using/configure.rst:945 msgid "Purify command. Purify is a memory debugger program." msgstr "" -#: using/configure.rst:862 +#: using/configure.rst:947 msgid "Default: empty string (not used)." msgstr "" -#: using/configure.rst:866 +#: using/configure.rst:951 msgid "Linker flags" msgstr "" -#: using/configure.rst:870 +#: using/configure.rst:955 msgid "" "Linker command used to build programs like ``python`` and ``_testembed``." msgstr "" -#: using/configure.rst:872 -msgid "Default: ``$(PURIFY) $(MAINCC)``." +#: using/configure.rst:957 +msgid "Default: ``$(PURIFY) $(CC)``." msgstr "" -#: using/configure.rst:876 +#: using/configure.rst:961 msgid "" "Value of :envvar:`LDFLAGS` variable passed to the ``./configure`` script." msgstr "" -#: using/configure.rst:878 +#: using/configure.rst:963 msgid "" "Avoid assigning :envvar:`CFLAGS`, :envvar:`LDFLAGS`, etc. so users can use " "them on the command line to append to these values without stomping the pre-" "set values." msgstr "" -#: using/configure.rst:886 +#: using/configure.rst:971 msgid "" ":envvar:`LDFLAGS_NODIST` is used in the same manner as :envvar:" -"`CFLAGS_NODIST`. Use it when a linker flag should *not* be part of the " -"distutils :envvar:`LDFLAGS` once Python is installed (:issue:`35257`)." +"`CFLAGS_NODIST`. Use it when a linker flag should *not* be part of :envvar:" +"`LDFLAGS` once Python is installed (:gh:`65320`)." msgstr "" -#: using/configure.rst:890 +#: using/configure.rst:975 msgid "In particular, :envvar:`LDFLAGS` should not contain:" msgstr "" -#: using/configure.rst:892 +#: using/configure.rst:977 msgid "" "the compiler flag ``-L`` (for setting the search path for libraries). The ``-" "L`` flags are processed from left to right, and any flags in :envvar:" "`LDFLAGS` would take precedence over user- and package-supplied ``-L`` flags." msgstr "" -#: using/configure.rst:899 +#: using/configure.rst:984 msgid "" "Value of :envvar:`LDFLAGS_NODIST` variable passed to the ``./configure`` " "script." msgstr "" -#: using/configure.rst:906 +#: using/configure.rst:991 msgid "" "Linker flags, e.g. ``-L`` if you have libraries in a nonstandard " "directory ````." msgstr "" -#: using/configure.rst:915 +#: using/configure.rst:1000 msgid "" "Linker flags to pass libraries to the linker when linking the Python " "executable." msgstr "" -#: using/configure.rst:918 +#: using/configure.rst:1003 msgid "Example: ``-lrt``." msgstr "" -#: using/configure.rst:922 +#: using/configure.rst:1007 msgid "Command to build a shared library." msgstr "" -#: using/configure.rst:924 +#: using/configure.rst:1009 msgid "Default: ``@LDSHARED@ $(PY_LDFLAGS)``." msgstr "" -#: using/configure.rst:928 +#: using/configure.rst:1013 msgid "Command to build ``libpython`` shared library." msgstr "" -#: using/configure.rst:930 +#: using/configure.rst:1015 msgid "Default: ``@BLDSHARED@ $(PY_CORE_LDFLAGS)``." msgstr "" -#: using/configure.rst:934 +#: using/configure.rst:1019 msgid "Default: ``$(CONFIGURE_LDFLAGS) $(LDFLAGS)``." msgstr "" -#: using/configure.rst:938 +#: using/configure.rst:1023 msgid "Default: ``$(CONFIGURE_LDFLAGS_NODIST) $(LDFLAGS_NODIST)``." msgstr "" -#: using/configure.rst:944 +#: using/configure.rst:1029 msgid "Linker flags used for building the interpreter object files." msgstr "" diff --git a/using/mac.po b/using/mac.po index 549ac5c71..8b5a3073a 100644 --- a/using/mac.po +++ b/using/mac.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -216,7 +216,7 @@ msgstr "" msgid "" "The standard Python GUI toolkit is :mod:`tkinter`, based on the cross-" "platform Tk toolkit (https://www.tcl.tk). An Aqua-native version of Tk is " -"bundled with OS X by Apple, and the latest version can be downloaded and " +"bundled with macOS by Apple, and the latest version can be downloaded and " "installed from https://www.activestate.com; it can also be built from source." msgstr "" diff --git a/using/unix.po b/using/unix.po index d76fe6f9c..4de31e602 100644 --- a/using/unix.po +++ b/using/unix.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -93,22 +93,11 @@ msgstr "" msgid "For example i386 users get the 2.5.1 version of Python using::" msgstr "" -#: using/unix.rst:58 -msgid "On OpenSolaris" -msgstr "" - #: using/unix.rst:60 -msgid "" -"You can get Python from `OpenCSW `_. Various " -"versions of Python are available and can be installed with e.g. ``pkgutil -i " -"python27``." -msgstr "" - -#: using/unix.rst:67 msgid "Building Python" msgstr "" -#: using/unix.rst:69 +#: using/unix.rst:62 msgid "" "If you want to compile CPython yourself, first thing you should do is get " "the `source `_. You can download " @@ -117,29 +106,29 @@ msgid "" "contribute patches, you will need a clone.)" msgstr "" -#: using/unix.rst:75 +#: using/unix.rst:68 msgid "The build process consists of the usual commands::" msgstr "" -#: using/unix.rst:81 +#: using/unix.rst:74 msgid "" ":ref:`Configuration options ` and caveats for specific " "Unix platforms are extensively documented in the :source:`README.rst` file " "in the root of the Python source tree." msgstr "" -#: using/unix.rst:87 +#: using/unix.rst:80 msgid "" "``make install`` can overwrite or masquerade the :file:`python3` binary. " "``make altinstall`` is therefore recommended instead of ``make install`` " "since it only installs :file:`{exec_prefix}/bin/python{version}`." msgstr "" -#: using/unix.rst:93 +#: using/unix.rst:86 msgid "Python-related paths and files" msgstr "" -#: using/unix.rst:95 +#: using/unix.rst:88 msgid "" "These are subject to difference depending on local installation " "conventions; :option:`prefix <--prefix>` and :option:`exec_prefix <--exec-" @@ -147,84 +136,84 @@ msgid "" "software; they may be the same." msgstr "" -#: using/unix.rst:100 +#: using/unix.rst:93 msgid "" "For example, on most Linux systems, the default for both is :file:`/usr`." msgstr "" -#: using/unix.rst:103 +#: using/unix.rst:96 msgid "File/directory" msgstr "" -#: using/unix.rst:103 +#: using/unix.rst:96 msgid "Meaning" msgstr "" -#: using/unix.rst:105 +#: using/unix.rst:98 msgid ":file:`{exec_prefix}/bin/python3`" msgstr "" -#: using/unix.rst:105 +#: using/unix.rst:98 msgid "Recommended location of the interpreter." msgstr "" -#: using/unix.rst:107 +#: using/unix.rst:100 msgid "" ":file:`{prefix}/lib/python{version}`, :file:`{exec_prefix}/lib/" "python{version}`" msgstr "" -#: using/unix.rst:107 +#: using/unix.rst:100 msgid "" "Recommended locations of the directories containing the standard modules." msgstr "" -#: using/unix.rst:110 +#: using/unix.rst:103 msgid "" ":file:`{prefix}/include/python{version}`, :file:`{exec_prefix}/include/" "python{version}`" msgstr "" -#: using/unix.rst:110 +#: using/unix.rst:103 msgid "" "Recommended locations of the directories containing the include files needed " "for developing Python extensions and embedding the interpreter." msgstr "" -#: using/unix.rst:118 +#: using/unix.rst:111 msgid "Miscellaneous" msgstr "" -#: using/unix.rst:120 +#: using/unix.rst:113 msgid "" "To easily use Python scripts on Unix, you need to make them executable, e.g. " "with" msgstr "" -#: using/unix.rst:127 +#: using/unix.rst:120 msgid "" "and put an appropriate Shebang line at the top of the script. A good choice " "is usually ::" msgstr "" -#: using/unix.rst:132 +#: using/unix.rst:125 msgid "" "which searches for the Python interpreter in the whole :envvar:`PATH`. " "However, some Unices may not have the :program:`env` command, so you may " "need to hardcode ``/usr/bin/python3`` as the interpreter path." msgstr "" -#: using/unix.rst:136 +#: using/unix.rst:129 msgid "" "To use shell commands in your Python scripts, look at the :mod:`subprocess` " "module." msgstr "" -#: using/unix.rst:141 +#: using/unix.rst:134 msgid "Custom OpenSSL" msgstr "" -#: using/unix.rst:143 +#: using/unix.rst:136 msgid "" "To use your vendor's OpenSSL configuration and system trust store, locate " "the directory with ``openssl.cnf`` file or symlink in ``/etc``. On most " @@ -233,19 +222,19 @@ msgid "" "directory." msgstr "" -#: using/unix.rst:154 +#: using/unix.rst:147 msgid "" "Download, build, and install OpenSSL. Make sure you use ``install_sw`` and " "not ``install``. The ``install_sw`` target does not override ``openssl.cnf``." msgstr "" -#: using/unix.rst:172 +#: using/unix.rst:165 msgid "" "Build Python with custom OpenSSL (see the configure ``--with-openssl`` and " "``--with-openssl-rpath`` options)" msgstr "" -#: using/unix.rst:187 +#: using/unix.rst:180 msgid "" "Patch releases of OpenSSL have a backwards compatible ABI. You don't need to " "recompile Python to update OpenSSL. It's sufficient to replace the custom " diff --git a/using/windows.po b/using/windows.po index 462f3308a..ab01ec62f 100644 --- a/using/windows.po +++ b/using/windows.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -225,297 +225,342 @@ msgstr "" #: using/windows.rst:129 msgid "" -"To completely hide the installer UI and install Python silently, pass the ``/" -"quiet`` option. To skip past the user interaction but still display progress " -"and errors, pass the ``/passive`` option. The ``/uninstall`` option may be " -"passed to immediately begin removing Python - no confirmation prompt will be " -"displayed." +"The following options (found by executing the installer with ``/?``) can be " +"passed into the installer:" +msgstr "" + +#: using/windows.rst:153 using/windows.rst:1082 +msgid "Name" +msgstr "" + +#: using/windows.rst:153 using/windows.rst:1082 +msgid "Description" msgstr "" #: using/windows.rst:135 -msgid "" -"All other options are passed as ``name=value``, where the value is usually " -"``0`` to disable a feature, ``1`` to enable a feature, or a path. The full " -"list of available options is shown below." +msgid "/passive" msgstr "" -#: using/windows.rst:1069 -msgid "Name" +#: using/windows.rst:135 +msgid "to display progress without requiring user interaction" msgstr "" -#: using/windows.rst:1069 -msgid "Description" +#: using/windows.rst:137 +msgid "/quiet" +msgstr "" + +#: using/windows.rst:137 +msgid "to install/uninstall without displaying any UI" +msgstr "" + +#: using/windows.rst:139 +msgid "/simple" +msgstr "" + +#: using/windows.rst:139 +msgid "to prevent user customization" +msgstr "" + +#: using/windows.rst:141 +msgid "/uninstall" +msgstr "" + +#: using/windows.rst:141 +msgid "to remove Python (without confirmation)" +msgstr "" + +#: using/windows.rst:143 +msgid "/layout [directory]" +msgstr "" + +#: using/windows.rst:143 +msgid "to pre-download all components" +msgstr "" + +#: using/windows.rst:145 +msgid "/log [filename]" +msgstr "" + +#: using/windows.rst:145 +msgid "to specify log files location" +msgstr "" + +#: using/windows.rst:148 +msgid "" +"All other options are passed as ``name=value``, where the value is usually " +"``0`` to disable a feature, ``1`` to enable a feature, or a path. The full " +"list of available options is shown below." msgstr "" -#: using/windows.rst:140 +#: using/windows.rst:153 msgid "Default" msgstr "" -#: using/windows.rst:142 +#: using/windows.rst:155 msgid "InstallAllUsers" msgstr "" -#: using/windows.rst:142 +#: using/windows.rst:155 msgid "Perform a system-wide installation." msgstr "" -#: using/windows.rst:168 using/windows.rst:175 using/windows.rst:206 -#: using/windows.rst:217 +#: using/windows.rst:181 using/windows.rst:188 using/windows.rst:219 +#: using/windows.rst:230 msgid "0" msgstr "" -#: using/windows.rst:144 +#: using/windows.rst:157 msgid "TargetDir" msgstr "" -#: using/windows.rst:144 +#: using/windows.rst:157 msgid "The installation directory" msgstr "" -#: using/windows.rst:144 +#: using/windows.rst:157 msgid "Selected based on InstallAllUsers" msgstr "" -#: using/windows.rst:147 +#: using/windows.rst:160 msgid "DefaultAllUsersTargetDir" msgstr "" -#: using/windows.rst:147 +#: using/windows.rst:160 msgid "The default installation directory for all-user installs" msgstr "" -#: using/windows.rst:147 +#: using/windows.rst:160 msgid "" ":file:`%ProgramFiles%\\\\\\ Python X.Y` or :file:`\\ %ProgramFiles(x86)%\\\\" "\\ Python X.Y`" msgstr "" -#: using/windows.rst:152 +#: using/windows.rst:165 msgid "DefaultJustForMeTargetDir" msgstr "" -#: using/windows.rst:152 +#: using/windows.rst:165 msgid "The default install directory for just-for-me installs" msgstr "" -#: using/windows.rst:152 +#: using/windows.rst:165 msgid "" ":file:`%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY` or :file:" "`%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY-32` or :file:" "`%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY-64`" msgstr "" -#: using/windows.rst:162 +#: using/windows.rst:175 msgid "DefaultCustomTargetDir" msgstr "" -#: using/windows.rst:162 +#: using/windows.rst:175 msgid "The default custom install directory displayed in the UI" msgstr "" -#: using/windows.rst:219 +#: using/windows.rst:232 msgid "(empty)" msgstr "" -#: using/windows.rst:165 +#: using/windows.rst:178 msgid "AssociateFiles" msgstr "" -#: using/windows.rst:165 +#: using/windows.rst:178 msgid "Create file associations if the launcher is also installed." msgstr "" -#: using/windows.rst:179 using/windows.rst:186 using/windows.rst:194 -#: using/windows.rst:200 using/windows.rst:208 using/windows.rst:212 +#: using/windows.rst:192 using/windows.rst:199 using/windows.rst:207 +#: using/windows.rst:213 using/windows.rst:221 using/windows.rst:225 msgid "1" msgstr "" -#: using/windows.rst:168 +#: using/windows.rst:181 msgid "CompileAll" msgstr "" -#: using/windows.rst:168 +#: using/windows.rst:181 msgid "Compile all ``.py`` files to ``.pyc``." msgstr "" -#: using/windows.rst:171 +#: using/windows.rst:184 msgid "PrependPath" msgstr "" -#: using/windows.rst:171 +#: using/windows.rst:184 msgid "" "Prepend install and Scripts directories to :envvar:`PATH` and add ``.PY`` " "to :envvar:`PATHEXT`" msgstr "" -#: using/windows.rst:175 +#: using/windows.rst:188 msgid "AppendPath" msgstr "" -#: using/windows.rst:175 +#: using/windows.rst:188 msgid "" "Append install and Scripts directories to :envvar:`PATH` and add ``.PY`` " "to :envvar:`PATHEXT`" msgstr "" -#: using/windows.rst:179 +#: using/windows.rst:192 msgid "Shortcuts" msgstr "" -#: using/windows.rst:179 +#: using/windows.rst:192 msgid "" "Create shortcuts for the interpreter, documentation and IDLE if installed." msgstr "" -#: using/windows.rst:182 +#: using/windows.rst:195 msgid "Include_doc" msgstr "" -#: using/windows.rst:182 +#: using/windows.rst:195 msgid "Install Python manual" msgstr "" -#: using/windows.rst:184 +#: using/windows.rst:197 msgid "Include_debug" msgstr "" -#: using/windows.rst:184 +#: using/windows.rst:197 msgid "Install debug binaries" msgstr "" -#: using/windows.rst:186 +#: using/windows.rst:199 msgid "Include_dev" msgstr "" -#: using/windows.rst:186 +#: using/windows.rst:199 msgid "" "Install developer headers and libraries. Omitting this may lead to an " "unusable installation." msgstr "" -#: using/windows.rst:190 +#: using/windows.rst:203 msgid "Include_exe" msgstr "" -#: using/windows.rst:190 +#: using/windows.rst:203 msgid "" "Install :file:`python.exe` and related files. Omitting this may lead to an " "unusable installation." msgstr "" -#: using/windows.rst:194 +#: using/windows.rst:207 msgid "Include_launcher" msgstr "" -#: using/windows.rst:194 +#: using/windows.rst:207 msgid "Install :ref:`launcher`." msgstr "" -#: using/windows.rst:196 +#: using/windows.rst:209 msgid "InstallLauncherAllUsers" msgstr "" -#: using/windows.rst:196 +#: using/windows.rst:209 msgid "" "Installs the launcher for all users. Also requires ``Include_launcher`` to " "be set to 1" msgstr "" -#: using/windows.rst:200 +#: using/windows.rst:213 msgid "Include_lib" msgstr "" -#: using/windows.rst:200 +#: using/windows.rst:213 msgid "" "Install standard library and extension modules. Omitting this may lead to an " "unusable installation." msgstr "" -#: using/windows.rst:204 +#: using/windows.rst:217 msgid "Include_pip" msgstr "" -#: using/windows.rst:204 +#: using/windows.rst:217 msgid "Install bundled pip and setuptools" msgstr "" -#: using/windows.rst:206 +#: using/windows.rst:219 msgid "Include_symbols" msgstr "" -#: using/windows.rst:206 +#: using/windows.rst:219 msgid "Install debugging symbols (``*.pdb``)" msgstr "" -#: using/windows.rst:208 +#: using/windows.rst:221 msgid "Include_tcltk" msgstr "" -#: using/windows.rst:208 +#: using/windows.rst:221 msgid "Install Tcl/Tk support and IDLE" msgstr "" -#: using/windows.rst:210 +#: using/windows.rst:223 msgid "Include_test" msgstr "" -#: using/windows.rst:210 +#: using/windows.rst:223 msgid "Install standard library test suite" msgstr "" -#: using/windows.rst:212 +#: using/windows.rst:225 msgid "Include_tools" msgstr "" -#: using/windows.rst:212 +#: using/windows.rst:225 msgid "Install utility scripts" msgstr "" -#: using/windows.rst:214 +#: using/windows.rst:227 msgid "LauncherOnly" msgstr "" -#: using/windows.rst:214 +#: using/windows.rst:227 msgid "Only installs the launcher. This will override most other options." msgstr "" -#: using/windows.rst:217 +#: using/windows.rst:230 msgid "SimpleInstall" msgstr "" -#: using/windows.rst:217 +#: using/windows.rst:230 msgid "Disable most install UI" msgstr "" -#: using/windows.rst:219 +#: using/windows.rst:232 msgid "SimpleInstallDescription" msgstr "" -#: using/windows.rst:219 +#: using/windows.rst:232 msgid "A custom message to display when the simplified install UI is used." msgstr "" -#: using/windows.rst:223 +#: using/windows.rst:236 msgid "" "For example, to silently install a default, system-wide Python installation, " "you could use the following command (from an elevated command prompt)::" msgstr "" -#: using/windows.rst:228 +#: using/windows.rst:241 msgid "" "To allow users to easily install a personal copy of Python without the test " "suite, you could provide a shortcut with the following command. This will " "display a simplified initial page and disallow customization::" msgstr "" -#: using/windows.rst:235 +#: using/windows.rst:248 msgid "" "(Note that omitting the launcher also omits file associations, and is only " "recommended for per-user installs when there is also a system-wide " "installation that included the launcher.)" msgstr "" -#: using/windows.rst:239 +#: using/windows.rst:252 msgid "" "The options listed above can also be provided in a file named ``unattend." "xml`` alongside the executable. This file specifies a list of options and " @@ -524,11 +569,11 @@ msgid "" "strings. This example file sets the same options as the previous example:" msgstr "" -#: using/windows.rst:258 +#: using/windows.rst:271 msgid "Installing Without Downloading" msgstr "" -#: using/windows.rst:260 +#: using/windows.rst:273 msgid "" "As some features of Python are not included in the initial installer " "download, selecting those features may require an internet connection. To " @@ -539,7 +584,7 @@ msgid "" "to be performed it is very useful to have a locally cached copy." msgstr "" -#: using/windows.rst:268 +#: using/windows.rst:281 msgid "" "Execute the following command from Command Prompt to download all possible " "required files. Remember to substitute ``python-3.9.0.exe`` for the actual " @@ -547,23 +592,23 @@ msgid "" "avoid collisions between files with the same name." msgstr "" -#: using/windows.rst:277 +#: using/windows.rst:290 msgid "" "You may also specify the ``/quiet`` option to hide the progress display." msgstr "" -#: using/windows.rst:280 +#: using/windows.rst:293 msgid "Modifying an install" msgstr "" -#: using/windows.rst:282 +#: using/windows.rst:295 msgid "" "Once Python has been installed, you can add or remove features through the " "Programs and Features tool that is part of Windows. Select the Python entry " "and choose \"Uninstall/Change\" to open the installer in maintenance mode." msgstr "" -#: using/windows.rst:286 +#: using/windows.rst:299 msgid "" "\"Modify\" allows you to add or remove features by modifying the checkboxes " "- unchanged checkboxes will not install or remove anything. Some options " @@ -571,42 +616,42 @@ msgid "" "these, you will need to remove and then reinstall Python completely." msgstr "" -#: using/windows.rst:291 +#: using/windows.rst:304 msgid "" "\"Repair\" will verify all the files that should be installed using the " "current settings and replace any that have been removed or modified." msgstr "" -#: using/windows.rst:294 +#: using/windows.rst:307 msgid "" "\"Uninstall\" will remove Python entirely, with the exception of the :ref:" "`launcher`, which has its own entry in Programs and Features." msgstr "" -#: using/windows.rst:301 +#: using/windows.rst:314 msgid "The Microsoft Store package" msgstr "" -#: using/windows.rst:305 +#: using/windows.rst:318 msgid "" "The Microsoft Store package is an easily installable Python interpreter that " "is intended mainly for interactive use, for example, by students." msgstr "" -#: using/windows.rst:308 +#: using/windows.rst:321 msgid "" "To install the package, ensure you have the latest Windows 10 updates and " "search the Microsoft Store app for \"Python |version|\". Ensure that the app " "you select is published by the Python Software Foundation, and install it." msgstr "" -#: using/windows.rst:313 +#: using/windows.rst:326 msgid "" "Python will always be available for free on the Microsoft Store. If you are " "asked to pay for it, you have not selected the correct package." msgstr "" -#: using/windows.rst:316 +#: using/windows.rst:329 msgid "" "After installation, Python may be launched by finding it in Start. " "Alternatively, it will be available from any Command Prompt or PowerShell " @@ -614,7 +659,7 @@ msgid "" "``pip`` or ``idle``. IDLE can also be found in Start." msgstr "" -#: using/windows.rst:321 +#: using/windows.rst:334 msgid "" "All three commands are also available with version number suffixes, for " "example, as ``python3.exe`` and ``python3.x.exe`` as well as ``python.exe`` " @@ -625,13 +670,13 @@ msgid "" "of ``python`` is selected." msgstr "" -#: using/windows.rst:329 +#: using/windows.rst:342 msgid "" "Virtual environments can be created with ``python -m venv`` and activated " "and used as normal." msgstr "" -#: using/windows.rst:332 +#: using/windows.rst:345 msgid "" "If you have installed another version of Python and added it to your " "``PATH`` variable, it will be available as ``python.exe`` rather than the " @@ -639,13 +684,13 @@ msgid "" "exe`` or ``python3.x.exe``." msgstr "" -#: using/windows.rst:337 +#: using/windows.rst:350 msgid "" "The ``py.exe`` launcher will detect this Python installation, but will " "prefer installations from the traditional installer." msgstr "" -#: using/windows.rst:340 +#: using/windows.rst:353 msgid "" "To remove Python, open Settings and use Apps and Features, or else find " "Python in Start and right-click to select Uninstall. Uninstalling will " @@ -653,15 +698,15 @@ msgid "" "but will not remove any virtual environments" msgstr "" -#: using/windows.rst:346 +#: using/windows.rst:359 msgid "Known issues" msgstr "" -#: using/windows.rst:349 +#: using/windows.rst:362 msgid "Redirection of local data, registry, and temporary paths" msgstr "" -#: using/windows.rst:351 +#: using/windows.rst:364 msgid "" "Because of restrictions on Microsoft Store apps, Python scripts may not have " "full write access to shared locations such as :envvar:`TEMP` and the " @@ -669,7 +714,7 @@ msgid "" "modify the shared locations, you will need to install the full installer." msgstr "" -#: using/windows.rst:356 +#: using/windows.rst:369 msgid "" "At runtime, Python will use a private copy of well-known Windows folders and " "the registry. For example, if the environment variable :envvar:`%APPDATA%` " @@ -680,7 +725,7 @@ msgid "" "\\`." msgstr "" -#: using/windows.rst:361 +#: using/windows.rst:374 msgid "" "When reading files, Windows will return the file from the private folder, or " "if that does not exist, the real Windows directory. For example reading :" @@ -689,36 +734,36 @@ msgid "" "\\WindowsApps\\\\package_name\\\\VFS\\\\SystemX86`." msgstr "" -#: using/windows.rst:365 +#: using/windows.rst:378 msgid "" "You can find the real path of any existing file using :func:`os.path." "realpath`:" msgstr "" -#: using/windows.rst:374 +#: using/windows.rst:387 msgid "When writing to the Windows Registry, the following behaviors exist:" msgstr "" -#: using/windows.rst:376 +#: using/windows.rst:389 msgid "" "Reading from ``HKLM\\\\Software`` is allowed and results are merged with " "the :file:`registry.dat` file in the package." msgstr "" -#: using/windows.rst:377 +#: using/windows.rst:390 msgid "" "Writing to ``HKLM\\\\Software`` is not allowed if the corresponding key/" "value exists, i.e. modifying existing keys." msgstr "" -#: using/windows.rst:378 +#: using/windows.rst:391 msgid "" "Writing to ``HKLM\\\\Software`` is allowed as long as a corresponding key/" "value does not exist in the package and the user has the correct access " "permissions." msgstr "" -#: using/windows.rst:381 +#: using/windows.rst:394 msgid "" "For more detail on the technical basis for these limitations, please consult " "Microsoft's documentation on packaged full-trust apps, currently available " @@ -727,11 +772,11 @@ msgid "" "behind-the-scenes>`_" msgstr "" -#: using/windows.rst:390 +#: using/windows.rst:403 msgid "The nuget.org packages" msgstr "" -#: using/windows.rst:394 +#: using/windows.rst:407 msgid "" "The nuget.org package is a reduced size Python environment intended for use " "on continuous integration and build systems that do not have a system-wide " @@ -739,14 +784,14 @@ msgid "" "works perfectly fine for packages containing build-time tools." msgstr "" -#: using/windows.rst:399 +#: using/windows.rst:412 msgid "" "Visit `nuget.org `_ for the most up-to-date " "information on using nuget. What follows is a summary that is sufficient for " "Python developers." msgstr "" -#: using/windows.rst:403 +#: using/windows.rst:416 msgid "" "The ``nuget.exe`` command line tool may be downloaded directly from " "``https://aka.ms/nugetclidl``, for example, using curl or PowerShell. With " @@ -754,7 +799,7 @@ msgid "" "installed using::" msgstr "" -#: using/windows.rst:411 +#: using/windows.rst:424 msgid "" "To select a particular version, add a ``-Version 3.x.y``. The output " "directory may be changed from ``.``, and the package will be installed into " @@ -764,7 +809,7 @@ msgid "" "directory that contains the Python installation:" msgstr "" -#: using/windows.rst:428 +#: using/windows.rst:441 msgid "" "In general, nuget packages are not upgradeable, and newer versions should be " "installed side-by-side and referenced using the full path. Alternatively, " @@ -772,7 +817,7 @@ msgid "" "will do this automatically if they do not preserve files between builds." msgstr "" -#: using/windows.rst:433 +#: using/windows.rst:446 msgid "" "Alongside the ``tools`` directory is a ``build\\native`` directory. This " "contains a MSBuild properties file ``python.props`` that can be used in a C+" @@ -780,7 +825,7 @@ msgid "" "automatically use the headers and import libraries in your build." msgstr "" -#: using/windows.rst:438 +#: using/windows.rst:451 msgid "" "The package information pages on nuget.org are `www.nuget.org/packages/" "python `_ for the 64-bit version and " @@ -788,18 +833,18 @@ msgid "" "pythonx86>`_ for the 32-bit version." msgstr "" -#: using/windows.rst:447 +#: using/windows.rst:460 msgid "The embeddable package" msgstr "" -#: using/windows.rst:451 +#: using/windows.rst:464 msgid "" "The embedded distribution is a ZIP file containing a minimal Python " "environment. It is intended for acting as part of another application, " "rather than being directly accessed by end-users." msgstr "" -#: using/windows.rst:455 +#: using/windows.rst:468 msgid "" "When extracted, the embedded distribution is (almost) fully isolated from " "the user's system, including environment variables, system registry " @@ -810,7 +855,7 @@ msgid "" "documentation are not included." msgstr "" -#: using/windows.rst:464 +#: using/windows.rst:477 msgid "" "The embedded distribution does not include the `Microsoft C Runtime `_" msgstr "" -#: using/windows.rst:532 +#: using/windows.rst:545 msgid "Installer with multi-platform compatibility, documentation, PyWin32" msgstr "" -#: using/windows.rst:536 +#: using/windows.rst:549 msgid "`Anaconda `_" msgstr "" -#: using/windows.rst:535 +#: using/windows.rst:548 msgid "" "Popular scientific modules (such as numpy, scipy and pandas) and the " "``conda`` package manager." msgstr "" -#: using/windows.rst:542 +#: using/windows.rst:555 msgid "`Enthought Deployment Manager `_" msgstr "" -#: using/windows.rst:539 +#: using/windows.rst:552 msgid "\"The Next Generation Python Environment and Package Manager\"." msgstr "" -#: using/windows.rst:541 +#: using/windows.rst:554 msgid "" "Previously Enthought provided Canopy, but it `reached end of life in 2016 " "`_." msgstr "" -#: using/windows.rst:546 +#: using/windows.rst:559 msgid "`WinPython `_" msgstr "" -#: using/windows.rst:545 +#: using/windows.rst:558 msgid "" "Windows-specific distribution with prebuilt scientific packages and tools " "for building packages." msgstr "" -#: using/windows.rst:548 +#: using/windows.rst:561 msgid "" "Note that these packages may not include the latest versions of Python or " "other libraries, and are not maintained or supported by the core Python team." msgstr "" -#: using/windows.rst:554 +#: using/windows.rst:567 msgid "Configuring Python" msgstr "" -#: using/windows.rst:556 +#: using/windows.rst:569 msgid "" "To run Python conveniently from a command prompt, you might consider " "changing some default environment variables in Windows. While the installer " @@ -975,29 +1020,29 @@ msgid "" "use multiple versions of Python, consider using the :ref:`launcher`." msgstr "" -#: using/windows.rst:566 +#: using/windows.rst:579 msgid "Excursus: Setting environment variables" msgstr "" -#: using/windows.rst:568 +#: using/windows.rst:581 msgid "" "Windows allows environment variables to be configured permanently at both " "the User level and the System level, or temporarily in a command prompt." msgstr "" -#: using/windows.rst:571 +#: using/windows.rst:584 msgid "" "To temporarily set environment variables, open Command Prompt and use the :" "command:`set` command:" msgstr "" -#: using/windows.rst:580 +#: using/windows.rst:593 msgid "" "These changes will apply to any further commands executed in that console, " "and will be inherited by any applications started from the console." msgstr "" -#: using/windows.rst:583 +#: using/windows.rst:596 msgid "" "Including the variable name within percent signs will expand to the existing " "value, allowing you to add your new value at either the start or the end. " @@ -1006,7 +1051,7 @@ msgid "" "launched." msgstr "" -#: using/windows.rst:589 +#: using/windows.rst:602 msgid "" "To permanently modify the default environment variables, click Start and " "search for 'edit environment variables', or open System properties, :" @@ -1016,61 +1061,61 @@ msgid "" "your machine (i.e. Administrator rights)." msgstr "" -#: using/windows.rst:598 +#: using/windows.rst:611 msgid "" "Windows will concatenate User variables *after* System variables, which may " "cause unexpected results when modifying :envvar:`PATH`." msgstr "" -#: using/windows.rst:601 +#: using/windows.rst:614 msgid "" "The :envvar:`PYTHONPATH` variable is used by all versions of Python, so you " "should not permanently configure it unless the listed paths only include " "code that is compatible with all of your installed Python versions." msgstr "" -#: using/windows.rst:609 +#: using/windows.rst:622 msgid "" "https://docs.microsoft.com/en-us/windows/win32/procthread/environment-" "variables" msgstr "" -#: using/windows.rst:609 +#: using/windows.rst:622 msgid "Overview of environment variables on Windows" msgstr "" -#: using/windows.rst:612 +#: using/windows.rst:625 msgid "" "https://docs.microsoft.com/en-us/windows-server/administration/windows-" "commands/set_1" msgstr "" -#: using/windows.rst:612 +#: using/windows.rst:625 msgid "The ``set`` command, for temporarily modifying environment variables" msgstr "" -#: using/windows.rst:614 +#: using/windows.rst:627 msgid "" "https://docs.microsoft.com/en-us/windows-server/administration/windows-" "commands/setx" msgstr "" -#: using/windows.rst:615 +#: using/windows.rst:628 msgid "The ``setx`` command, for permanently modifying environment variables" msgstr "" -#: using/windows.rst:621 +#: using/windows.rst:634 msgid "Finding the Python executable" msgstr "" -#: using/windows.rst:625 +#: using/windows.rst:638 msgid "" "Besides using the automatically created start menu entry for the Python " "interpreter, you might want to start Python in the command prompt. The " "installer has an option to set that up for you." msgstr "" -#: using/windows.rst:629 +#: using/windows.rst:642 msgid "" "On the first page of the installer, an option labelled \"Add Python to " "PATH\" may be selected to have the installer add the install location into " @@ -1081,7 +1126,7 @@ msgid "" "documentation." msgstr "" -#: using/windows.rst:636 +#: using/windows.rst:649 msgid "" "If you don't enable this option at install time, you can always re-run the " "installer, select Modify, and enable it. Alternatively, you can manually " @@ -1092,24 +1137,24 @@ msgid "" "entries already existed)::" msgstr "" -#: using/windows.rst:649 +#: using/windows.rst:662 msgid "UTF-8 mode" msgstr "" -#: using/windows.rst:653 +#: using/windows.rst:666 msgid "" "Windows still uses legacy encodings for the system encoding (the ANSI Code " "Page). Python uses it for the default encoding of text files (e.g. :func:" "`locale.getencoding`)." msgstr "" -#: using/windows.rst:657 +#: using/windows.rst:670 msgid "" "This may cause issues because UTF-8 is widely used on the internet and most " "Unix systems, including WSL (Windows Subsystem for Linux)." msgstr "" -#: using/windows.rst:660 +#: using/windows.rst:673 msgid "" "You can use the :ref:`Python UTF-8 Mode ` to change the default " "text encoding to UTF-8. You can enable the :ref:`Python UTF-8 Mode ` is enabled, you can still use " "the system encoding (the ANSI Code Page) via the \"mbcs\" codec." msgstr "" -#: using/windows.rst:669 +#: using/windows.rst:682 msgid "" "Note that adding ``PYTHONUTF8=1`` to the default environment variables will " "affect all Python 3.7+ applications on your system. If you have any Python " @@ -1133,27 +1178,27 @@ msgid "" "utf8`` command line option." msgstr "" -#: using/windows.rst:676 +#: using/windows.rst:689 msgid "" "Even when UTF-8 mode is disabled, Python uses UTF-8 by default on Windows " "for:" msgstr "" -#: using/windows.rst:679 +#: using/windows.rst:692 msgid "Console I/O including standard I/O (see :pep:`528` for details)." msgstr "" -#: using/windows.rst:680 +#: using/windows.rst:693 msgid "" "The :term:`filesystem encoding ` " "(see :pep:`529` for details)." msgstr "" -#: using/windows.rst:687 +#: using/windows.rst:700 msgid "Python Launcher for Windows" msgstr "" -#: using/windows.rst:691 +#: using/windows.rst:704 msgid "" "The Python launcher for Windows is a utility which aids in locating and " "executing of different Python versions. It allows scripts (or the command-" @@ -1161,7 +1206,7 @@ msgid "" "locate and execute that version." msgstr "" -#: using/windows.rst:696 +#: using/windows.rst:709 msgid "" "Unlike the :envvar:`PATH` variable, the launcher will correctly select the " "most appropriate version of Python. It will prefer per-user installations " @@ -1169,19 +1214,19 @@ msgid "" "most recently installed version." msgstr "" -#: using/windows.rst:701 +#: using/windows.rst:714 msgid "The launcher was originally specified in :pep:`397`." msgstr "" -#: using/windows.rst:704 +#: using/windows.rst:717 msgid "Getting started" msgstr "" -#: using/windows.rst:707 +#: using/windows.rst:720 msgid "From the command-line" msgstr "" -#: using/windows.rst:711 +#: using/windows.rst:724 msgid "" "System-wide installations of Python 3.3 and later will put the launcher on " "your :envvar:`PATH`. The launcher is compatible with all available versions " @@ -1189,40 +1234,40 @@ msgid "" "the launcher is available, execute the following command in Command Prompt::" msgstr "" -#: using/windows.rst:718 +#: using/windows.rst:731 msgid "" "You should find that the latest version of Python you have installed is " "started - it can be exited as normal, and any additional command-line " "arguments specified will be sent directly to Python." msgstr "" -#: using/windows.rst:722 +#: using/windows.rst:735 msgid "" "If you have multiple versions of Python installed (e.g., 3.7 and |version|) " "you will have noticed that Python |version| was started - to launch Python " "3.7, try the command::" msgstr "" -#: using/windows.rst:728 +#: using/windows.rst:741 msgid "" "If you want the latest version of Python 2 you have installed, try the " "command::" msgstr "" -#: using/windows.rst:733 +#: using/windows.rst:746 msgid "" "If you see the following error, you do not have the launcher installed::" msgstr "" -#: using/windows.rst:738 +#: using/windows.rst:751 msgid "The command::" msgstr "" -#: using/windows.rst:742 +#: using/windows.rst:755 msgid "displays the currently installed version(s) of Python." msgstr "" -#: using/windows.rst:744 +#: using/windows.rst:757 msgid "" "The ``-x.y`` argument is the short form of the ``-V:Company/Tag`` argument, " "which allows selecting a specific Python runtime, including those that may " @@ -1231,21 +1276,21 @@ msgid "" "available runtimes using the ``-V:`` format." msgstr "" -#: using/windows.rst:750 +#: using/windows.rst:763 msgid "" "When using the ``-V:`` argument, specifying the Company will limit selection " "to runtimes from that provider, while specifying only the Tag will select " "from all providers. Note that omitting the slash implies a tag::" msgstr "" -#: using/windows.rst:763 +#: using/windows.rst:776 msgid "" "The short form of the argument (``-3``) only ever selects from core Python " "releases, and not other distributions. However, the longer form (``-V:3``) " "will select from any." msgstr "" -#: using/windows.rst:767 +#: using/windows.rst:780 msgid "" "The Company is matched on the full string, case-insenitive. The Tag is " "matched oneither the full string, or a prefix, provided the next character " @@ -1254,11 +1299,11 @@ msgid "" "``3.1``), but are compared using text (``-V:3.01`` does not match ``3.1``)." msgstr "" -#: using/windows.rst:775 +#: using/windows.rst:788 msgid "Virtual environments" msgstr "" -#: using/windows.rst:779 +#: using/windows.rst:792 msgid "" "If the launcher is run with no explicit Python version specification, and a " "virtual environment (created with the standard library :mod:`venv` module or " @@ -1268,27 +1313,27 @@ msgid "" "specify the global Python version." msgstr "" -#: using/windows.rst:787 +#: using/windows.rst:800 msgid "From a script" msgstr "" -#: using/windows.rst:789 +#: using/windows.rst:802 msgid "" "Let's create a test Python script - create a file called ``hello.py`` with " "the following contents" msgstr "" -#: using/windows.rst:798 +#: using/windows.rst:811 msgid "From the directory in which hello.py lives, execute the command::" msgstr "" -#: using/windows.rst:802 +#: using/windows.rst:815 msgid "" "You should notice the version number of your latest Python 2.x installation " "is printed. Now try changing the first line to be:" msgstr "" -#: using/windows.rst:809 +#: using/windows.rst:822 msgid "" "Re-executing the command should now print the latest Python 3.x information. " "As with the above command-line examples, you can specify a more explicit " @@ -1297,7 +1342,7 @@ msgid "" "information printed." msgstr "" -#: using/windows.rst:815 +#: using/windows.rst:828 msgid "" "Note that unlike interactive use, a bare \"python\" will use the latest " "version of Python 2.x that you have installed. This is for backward " @@ -1305,11 +1350,11 @@ msgid "" "typically refers to Python 2." msgstr "" -#: using/windows.rst:821 +#: using/windows.rst:834 msgid "From file associations" msgstr "" -#: using/windows.rst:823 +#: using/windows.rst:836 msgid "" "The launcher should have been associated with Python files (i.e. ``.py``, ``." "pyw``, ``.pyc`` files) when it was installed. This means that when you " @@ -1318,17 +1363,17 @@ msgid "" "have the script specify the version which should be used." msgstr "" -#: using/windows.rst:829 +#: using/windows.rst:842 msgid "" "The key benefit of this is that a single launcher can support multiple " "Python versions at the same time depending on the contents of the first line." msgstr "" -#: using/windows.rst:833 +#: using/windows.rst:846 msgid "Shebang Lines" msgstr "" -#: using/windows.rst:835 +#: using/windows.rst:848 msgid "" "If the first line of a script file starts with ``#!``, it is known as a " "\"shebang\" line. Linux and other Unix like operating systems have native " @@ -1338,34 +1383,34 @@ msgid "" "demonstrate their use." msgstr "" -#: using/windows.rst:842 +#: using/windows.rst:855 msgid "" "To allow shebang lines in Python scripts to be portable between Unix and " "Windows, this launcher supports a number of 'virtual' commands to specify " "which interpreter to use. The supported virtual commands are:" msgstr "" -#: using/windows.rst:846 +#: using/windows.rst:859 msgid "``/usr/bin/env``" msgstr "" -#: using/windows.rst:847 +#: using/windows.rst:860 msgid "``/usr/bin/python``" msgstr "" -#: using/windows.rst:848 +#: using/windows.rst:861 msgid "``/usr/local/bin/python``" msgstr "" -#: using/windows.rst:849 +#: using/windows.rst:862 msgid "``python``" msgstr "" -#: using/windows.rst:851 +#: using/windows.rst:864 msgid "For example, if the first line of your script starts with" msgstr "" -#: using/windows.rst:857 +#: using/windows.rst:870 msgid "" "The default Python will be located and used. As many Python scripts written " "to work on Unix will already have this line, you should find these scripts " @@ -1374,7 +1419,7 @@ msgid "" "of the shebang lines starting with ``/usr``." msgstr "" -#: using/windows.rst:863 +#: using/windows.rst:876 msgid "" "Any of the above virtual commands can be suffixed with an explicit version " "(either just the major version, or the major and minor version). Furthermore " @@ -1383,21 +1428,21 @@ msgid "" "python 3.7." msgstr "" -#: using/windows.rst:871 +#: using/windows.rst:884 msgid "" "Beginning with python launcher 3.7 it is possible to request 64-bit version " "by the \"-64\" suffix. Furthermore it is possible to specify a major and " "architecture without minor (i.e. ``/usr/bin/python3-64``)." msgstr "" -#: using/windows.rst:877 +#: using/windows.rst:890 msgid "" "The \"-64\" suffix is deprecated, and now implies \"any architecture that is " "not provably i386/32-bit\". To request a specific environment, use the new " "``-V:`` argument with the complete tag." msgstr "" -#: using/windows.rst:881 +#: using/windows.rst:894 msgid "" "The ``/usr/bin/env`` form of shebang line has one further special property. " "Before looking for installed Python interpreters, this form will search the " @@ -1411,7 +1456,7 @@ msgid "" "of :envvar:`PATH`." msgstr "" -#: using/windows.rst:892 +#: using/windows.rst:905 msgid "" "Shebang lines that do not match any of these patterns are looked up in the " "``[commands]`` section of the launcher's :ref:`.INI file `. " @@ -1422,7 +1467,7 @@ msgid "" "part of the filename)." msgstr "" -#: using/windows.rst:905 +#: using/windows.rst:918 msgid "" "Any commands not found in the .INI file are treated as **Windows** " "executable paths that are absolute or relative to the directory containing " @@ -1433,29 +1478,29 @@ msgid "" "will be appended." msgstr "" -#: using/windows.rst:914 +#: using/windows.rst:927 msgid "Arguments in shebang lines" msgstr "" -#: using/windows.rst:916 +#: using/windows.rst:929 msgid "" "The shebang lines can also specify additional options to be passed to the " "Python interpreter. For example, if you have a shebang line:" msgstr "" -#: using/windows.rst:923 +#: using/windows.rst:936 msgid "Then Python will be started with the ``-v`` option" msgstr "" -#: using/windows.rst:926 +#: using/windows.rst:939 msgid "Customization" msgstr "" -#: using/windows.rst:931 +#: using/windows.rst:944 msgid "Customization via INI files" msgstr "" -#: using/windows.rst:933 +#: using/windows.rst:946 msgid "" "Two .ini files will be searched by the launcher - ``py.ini`` in the current " "user's application data directory (``%LOCALAPPDATA%`` or ``$env:" @@ -1464,7 +1509,7 @@ msgid "" "e. py.exe) and for the 'windows' version (i.e. pyw.exe)." msgstr "" -#: using/windows.rst:939 +#: using/windows.rst:952 msgid "" "Customization specified in the \"application directory\" will have " "precedence over the one next to the executable, so a user, who may not have " @@ -1472,11 +1517,11 @@ msgid "" "that global .ini file." msgstr "" -#: using/windows.rst:944 +#: using/windows.rst:957 msgid "Customizing default Python versions" msgstr "" -#: using/windows.rst:946 +#: using/windows.rst:959 msgid "" "In some cases, a version qualifier can be included in a command to dictate " "which version of Python will be used by the command. A version qualifier " @@ -1486,13 +1531,13 @@ msgid "" "\"-32\" or \"-64\"." msgstr "" -#: using/windows.rst:952 +#: using/windows.rst:965 msgid "" "For example, a shebang line of ``#!python`` has no version qualifier, while " "``#!python3`` has a version qualifier which specifies only a major version." msgstr "" -#: using/windows.rst:955 +#: using/windows.rst:968 msgid "" "If no version qualifiers are found in a command, the environment variable :" "envvar:`PY_PYTHON` can be set to specify the default version qualifier. If " @@ -1502,7 +1547,7 @@ msgid "" "launcher included with Python 3.7 or newer.)" msgstr "" -#: using/windows.rst:962 +#: using/windows.rst:975 msgid "" "If no minor version qualifiers are found, the environment variable " "``PY_PYTHON{major}`` (where ``{major}`` is the current major version " @@ -1513,7 +1558,7 @@ msgid "" "version in that family." msgstr "" -#: using/windows.rst:970 +#: using/windows.rst:983 msgid "" "On 64-bit Windows with both 32-bit and 64-bit implementations of the same " "(major.minor) Python version installed, the 64-bit version will always be " @@ -1527,30 +1572,30 @@ msgid "" "suffix can be used on a version specifier to change this behaviour." msgstr "" -#: using/windows.rst:981 +#: using/windows.rst:994 msgid "Examples:" msgstr "" -#: using/windows.rst:983 +#: using/windows.rst:996 msgid "" "If no relevant options are set, the commands ``python`` and ``python2`` will " "use the latest Python 2.x version installed and the command ``python3`` will " "use the latest Python 3.x installed." msgstr "" -#: using/windows.rst:987 +#: using/windows.rst:1000 msgid "" "The command ``python3.7`` will not consult any options at all as the " "versions are fully specified." msgstr "" -#: using/windows.rst:990 +#: using/windows.rst:1003 msgid "" "If ``PY_PYTHON=3``, the commands ``python`` and ``python3`` will both use " "the latest installed Python 3 version." msgstr "" -#: using/windows.rst:993 +#: using/windows.rst:1006 msgid "" "If ``PY_PYTHON=3.7-32``, the command ``python`` will use the 32-bit " "implementation of 3.7 whereas the command ``python3`` will use the latest " @@ -1558,13 +1603,13 @@ msgid "" "specified.)" msgstr "" -#: using/windows.rst:998 +#: using/windows.rst:1011 msgid "" "If ``PY_PYTHON=3`` and ``PY_PYTHON3=3.7``, the commands ``python`` and " "``python3`` will both use specifically 3.7" msgstr "" -#: using/windows.rst:1001 +#: using/windows.rst:1014 msgid "" "In addition to environment variables, the same settings can be configured in " "the .INI file used by the launcher. The section in the INI file is called " @@ -1574,25 +1619,25 @@ msgid "" "will override things specified in the INI file." msgstr "" -#: using/windows.rst:1008 +#: using/windows.rst:1021 msgid "For example:" msgstr "" -#: using/windows.rst:1010 +#: using/windows.rst:1023 msgid "Setting ``PY_PYTHON=3.7`` is equivalent to the INI file containing:" msgstr "" -#: using/windows.rst:1017 +#: using/windows.rst:1030 msgid "" "Setting ``PY_PYTHON=3`` and ``PY_PYTHON3=3.7`` is equivalent to the INI file " "containing:" msgstr "" -#: using/windows.rst:1027 +#: using/windows.rst:1040 msgid "Diagnostics" msgstr "" -#: using/windows.rst:1029 +#: using/windows.rst:1042 msgid "" "If an environment variable :envvar:`PYLAUNCHER_DEBUG` is set (to any value), " "the launcher will print diagnostic information to stderr (i.e. to the " @@ -1602,11 +1647,11 @@ msgid "" "the target Python. It is primarily intended for testing and debugging." msgstr "" -#: using/windows.rst:1037 +#: using/windows.rst:1050 msgid "Dry Run" msgstr "" -#: using/windows.rst:1039 +#: using/windows.rst:1052 msgid "" "If an environment variable :envvar:`PYLAUNCHER_DRYRUN` is set (to any " "value), the launcher will output the command it would have run, but will not " @@ -1616,11 +1661,11 @@ msgid "" "correctly in the console." msgstr "" -#: using/windows.rst:1047 +#: using/windows.rst:1060 msgid "Install on demand" msgstr "" -#: using/windows.rst:1049 +#: using/windows.rst:1062 msgid "" "If an environment variable :envvar:`PYLAUNCHER_ALLOW_INSTALL` is set (to any " "value), and the requested Python version is not installed but is available " @@ -1629,7 +1674,7 @@ msgid "" "again." msgstr "" -#: using/windows.rst:1054 +#: using/windows.rst:1067 msgid "" "An additional :envvar:`PYLAUNCHER_ALWAYS_INSTALL` variable causes the " "launcher to always try to install Python, even if it is detected. This is " @@ -1637,137 +1682,137 @@ msgid "" "`PYLAUNCHER_DRYRUN`)." msgstr "" -#: using/windows.rst:1059 +#: using/windows.rst:1072 msgid "Return codes" msgstr "" -#: using/windows.rst:1061 +#: using/windows.rst:1074 msgid "" "The following exit codes may be returned by the Python launcher. " "Unfortunately, there is no way to distinguish these from the exit code of " "Python itself." msgstr "" -#: using/windows.rst:1064 +#: using/windows.rst:1077 msgid "" "The names of codes are as used in the sources, and are only for reference. " "There is no way to access or resolve them apart from reading this page. " "Entries are listed in alphabetical order of names." msgstr "" -#: using/windows.rst:1069 +#: using/windows.rst:1082 msgid "Value" msgstr "" -#: using/windows.rst:1071 +#: using/windows.rst:1084 msgid "RC_BAD_VENV_CFG" msgstr "" -#: using/windows.rst:1071 +#: using/windows.rst:1084 msgid "107" msgstr "" -#: using/windows.rst:1071 +#: using/windows.rst:1084 msgid "A :file:`pyvenv.cfg` was found but is corrupt." msgstr "" -#: using/windows.rst:1073 +#: using/windows.rst:1086 msgid "RC_CREATE_PROCESS" msgstr "" -#: using/windows.rst:1073 +#: using/windows.rst:1086 msgid "101" msgstr "" -#: using/windows.rst:1073 +#: using/windows.rst:1086 msgid "Failed to launch Python." msgstr "" -#: using/windows.rst:1075 +#: using/windows.rst:1088 msgid "RC_INSTALLING" msgstr "" -#: using/windows.rst:1075 +#: using/windows.rst:1088 msgid "111" msgstr "" -#: using/windows.rst:1075 +#: using/windows.rst:1088 msgid "" "An install was started, but the command will need to be re-run after it " "completes." msgstr "" -#: using/windows.rst:1078 +#: using/windows.rst:1091 msgid "RC_INTERNAL_ERROR" msgstr "" -#: using/windows.rst:1078 +#: using/windows.rst:1091 msgid "109" msgstr "" -#: using/windows.rst:1078 +#: using/windows.rst:1091 msgid "Unexpected error. Please report a bug." msgstr "" -#: using/windows.rst:1080 +#: using/windows.rst:1093 msgid "RC_NO_COMMANDLINE" msgstr "" -#: using/windows.rst:1080 +#: using/windows.rst:1093 msgid "108" msgstr "" -#: using/windows.rst:1080 +#: using/windows.rst:1093 msgid "Unable to obtain command line from the operating system." msgstr "" -#: using/windows.rst:1083 +#: using/windows.rst:1096 msgid "RC_NO_PYTHON" msgstr "" -#: using/windows.rst:1083 +#: using/windows.rst:1096 msgid "103" msgstr "" -#: using/windows.rst:1083 +#: using/windows.rst:1096 msgid "Unable to locate the requested version." msgstr "" -#: using/windows.rst:1085 +#: using/windows.rst:1098 msgid "RC_NO_VENV_CFG" msgstr "" -#: using/windows.rst:1085 +#: using/windows.rst:1098 msgid "106" msgstr "" -#: using/windows.rst:1085 +#: using/windows.rst:1098 msgid "A :file:`pyvenv.cfg` was required but not found." msgstr "" -#: using/windows.rst:1093 +#: using/windows.rst:1106 msgid "Finding modules" msgstr "" -#: using/windows.rst:1095 +#: using/windows.rst:1108 msgid "" "These notes supplement the description at :ref:`sys-path-init` with detailed " "Windows notes." msgstr "" -#: using/windows.rst:1098 +#: using/windows.rst:1111 msgid "" "When no ``._pth`` file is found, this is how :data:`sys.path` is populated " "on Windows:" msgstr "" -#: using/windows.rst:1101 +#: using/windows.rst:1114 msgid "" "An empty entry is added at the start, which corresponds to the current " "directory." msgstr "" -#: using/windows.rst:1104 +#: using/windows.rst:1117 msgid "" "If the environment variable :envvar:`PYTHONPATH` exists, as described in :" "ref:`using-on-envvars`, its entries are added next. Note that on Windows, " @@ -1775,7 +1820,7 @@ msgid "" "from the colon used in drive identifiers (``C:\\`` etc.)." msgstr "" -#: using/windows.rst:1109 +#: using/windows.rst:1122 msgid "" "Additional \"application paths\" can be added in the registry as subkeys of :" "samp:`\\\\SOFTWARE\\\\Python\\\\PythonCore\\\\{version}\\\\PythonPath` under " @@ -1785,7 +1830,7 @@ msgid "" "installers only use HKLM, so HKCU is typically empty.)" msgstr "" -#: using/windows.rst:1116 +#: using/windows.rst:1129 msgid "" "If the environment variable :envvar:`PYTHONHOME` is set, it is assumed as " "\"Python Home\". Otherwise, the path of the main Python executable is used " @@ -1796,31 +1841,31 @@ msgid "" "PythonPath stored in the registry." msgstr "" -#: using/windows.rst:1124 +#: using/windows.rst:1137 msgid "" "If the Python Home cannot be located, no :envvar:`PYTHONPATH` is specified " "in the environment, and no registry entries can be found, a default path " "with relative entries is used (e.g. ``.\\Lib;.\\plat-win``, etc)." msgstr "" -#: using/windows.rst:1128 +#: using/windows.rst:1141 msgid "" "If a ``pyvenv.cfg`` file is found alongside the main executable or in the " "directory one level above the executable, the following variations apply:" msgstr "" -#: using/windows.rst:1131 +#: using/windows.rst:1144 msgid "" "If ``home`` is an absolute path and :envvar:`PYTHONHOME` is not set, this " "path is used instead of the path to the main executable when deducing the " "home location." msgstr "" -#: using/windows.rst:1135 +#: using/windows.rst:1148 msgid "The end result of all this is:" msgstr "" -#: using/windows.rst:1137 +#: using/windows.rst:1150 msgid "" "When running :file:`python.exe`, or any other .exe in the main Python " "directory (either an installed version, or directly from the PCbuild " @@ -1828,7 +1873,7 @@ msgid "" "ignored. Other \"application paths\" in the registry are always read." msgstr "" -#: using/windows.rst:1142 +#: using/windows.rst:1155 msgid "" "When Python is hosted in another .exe (different directory, embedded via " "COM, etc), the \"Python Home\" will not be deduced, so the core path from " @@ -1836,20 +1881,20 @@ msgid "" "always read." msgstr "" -#: using/windows.rst:1146 +#: using/windows.rst:1159 msgid "" "If Python can't find its home and there are no registry value (frozen .exe, " "some very strange installation setup) you get a path with some default, but " "relative, paths." msgstr "" -#: using/windows.rst:1150 +#: using/windows.rst:1163 msgid "" "For those who want to bundle Python into their application or distribution, " "the following advice will prevent conflicts with other installations:" msgstr "" -#: using/windows.rst:1153 +#: using/windows.rst:1166 msgid "" "Include a ``._pth`` file alongside your executable containing the " "directories to include. This will ignore paths listed in the registry and " @@ -1857,20 +1902,20 @@ msgid "" "listed." msgstr "" -#: using/windows.rst:1158 +#: using/windows.rst:1171 msgid "" "If you are loading :file:`python3.dll` or :file:`python37.dll` in your own " "executable, explicitly call :c:func:`Py_SetPath` or (at least) :c:func:" "`Py_SetProgramName` before :c:func:`Py_Initialize`." msgstr "" -#: using/windows.rst:1162 +#: using/windows.rst:1175 msgid "" "Clear and/or overwrite :envvar:`PYTHONPATH` and set :envvar:`PYTHONHOME` " "before launching :file:`python.exe` from your application." msgstr "" -#: using/windows.rst:1165 +#: using/windows.rst:1178 msgid "" "If you cannot use the previous suggestions (for example, you are a " "distribution that allows people to run :file:`python.exe` directly), ensure " @@ -1879,7 +1924,7 @@ msgid "" "correctly named ZIP file will be detected instead.)" msgstr "" -#: using/windows.rst:1171 +#: using/windows.rst:1184 msgid "" "These will ensure that the files in a system-wide installation will not take " "precedence over the copy of the standard library bundled with your " @@ -1889,19 +1934,19 @@ msgid "" "packages." msgstr "" -#: using/windows.rst:1180 +#: using/windows.rst:1193 msgid "" "Adds ``._pth`` file support and removes ``applocal`` option from ``pyvenv." "cfg``." msgstr "" -#: using/windows.rst:1182 +#: using/windows.rst:1195 msgid "" "Adds ``pythonXX.zip`` as a potential landmark when directly adjacent to the " "executable." msgstr "" -#: using/windows.rst:1188 +#: using/windows.rst:1201 msgid "" "Modules specified in the registry under ``Modules`` (not ``PythonPath``) may " "be imported by :class:`importlib.machinery.WindowsRegistryFinder`. This " @@ -1909,87 +1954,87 @@ msgid "" "explicitly added to :data:`sys.meta_path` in the future." msgstr "" -#: using/windows.rst:1194 +#: using/windows.rst:1207 msgid "Additional modules" msgstr "" -#: using/windows.rst:1196 +#: using/windows.rst:1209 msgid "" "Even though Python aims to be portable among all platforms, there are " "features that are unique to Windows. A couple of modules, both in the " "standard library and external, and snippets exist to use these features." msgstr "" -#: using/windows.rst:1200 +#: using/windows.rst:1213 msgid "" "The Windows-specific standard modules are documented in :ref:`mswin-specific-" "services`." msgstr "" -#: using/windows.rst:1204 +#: using/windows.rst:1217 msgid "PyWin32" msgstr "" -#: using/windows.rst:1206 +#: using/windows.rst:1219 msgid "" "The `PyWin32 `_ module by Mark Hammond is " "a collection of modules for advanced Windows-specific support. This " "includes utilities for:" msgstr "" -#: using/windows.rst:1210 +#: using/windows.rst:1223 msgid "" "`Component Object Model `_ (COM)" msgstr "" -#: using/windows.rst:1213 +#: using/windows.rst:1226 msgid "Win32 API calls" msgstr "" -#: using/windows.rst:1214 +#: using/windows.rst:1227 msgid "Registry" msgstr "" -#: using/windows.rst:1215 +#: using/windows.rst:1228 msgid "Event log" msgstr "" -#: using/windows.rst:1216 +#: using/windows.rst:1229 msgid "" "`Microsoft Foundation Classes `_ (MFC) user interfaces" msgstr "" -#: using/windows.rst:1220 +#: using/windows.rst:1233 msgid "" "`PythonWin `_ is a sample MFC application shipped with PyWin32. " "It is an embeddable IDE with a built-in debugger." msgstr "" -#: using/windows.rst:1227 +#: using/windows.rst:1240 msgid "" "`Win32 How Do I...? `_" msgstr "" -#: using/windows.rst:1227 +#: using/windows.rst:1240 msgid "by Tim Golden" msgstr "" -#: using/windows.rst:1229 +#: using/windows.rst:1242 msgid "`Python and COM `_" msgstr "" -#: using/windows.rst:1230 +#: using/windows.rst:1243 msgid "by David and Paul Boddie" msgstr "" -#: using/windows.rst:1234 +#: using/windows.rst:1247 msgid "cx_Freeze" msgstr "" -#: using/windows.rst:1236 +#: using/windows.rst:1249 msgid "" "`cx_Freeze `_ wraps Python " "scripts into executable Windows programs (:file:`{*}.exe` files). When you " @@ -1997,11 +2042,11 @@ msgid "" "users to install Python." msgstr "" -#: using/windows.rst:1243 +#: using/windows.rst:1256 msgid "Compiling Python on Windows" msgstr "" -#: using/windows.rst:1245 +#: using/windows.rst:1258 msgid "" "If you want to compile CPython yourself, first thing you should do is get " "the `source `_. You can download " @@ -2009,48 +2054,48 @@ msgid "" "devguide.python.org/setup/#get-the-source-code>`_." msgstr "" -#: using/windows.rst:1250 +#: using/windows.rst:1263 msgid "" "The source tree contains a build solution and project files for Microsoft " "Visual Studio, which is the compiler used to build the official Python " "releases. These files are in the :file:`PCbuild` directory." msgstr "" -#: using/windows.rst:1254 +#: using/windows.rst:1267 msgid "" "Check :file:`PCbuild/readme.txt` for general information on the build " "process." msgstr "" -#: using/windows.rst:1256 +#: using/windows.rst:1269 msgid "For extension modules, consult :ref:`building-on-windows`." msgstr "" -#: using/windows.rst:1260 +#: using/windows.rst:1273 msgid "Other Platforms" msgstr "" -#: using/windows.rst:1262 +#: using/windows.rst:1275 msgid "" "With ongoing development of Python, some platforms that used to be supported " "earlier are no longer supported (due to the lack of users or developers). " "Check :pep:`11` for details on all unsupported platforms." msgstr "" -#: using/windows.rst:1266 +#: using/windows.rst:1279 msgid "" "`Windows CE `_ is `no longer supported " "`__ since Python 3 (if it " "ever was)." msgstr "" -#: using/windows.rst:1269 +#: using/windows.rst:1282 msgid "" "The `Cygwin `_ installer offers to install the `Python " "interpreter `__ as well" msgstr "" -#: using/windows.rst:1273 +#: using/windows.rst:1286 msgid "" "See `Python for Windows `_ for " "detailed information about platforms with pre-compiled installers." diff --git a/whatsnew/2.0.po b/whatsnew/2.0.po index 0e26ab751..242e870d7 100644 --- a/whatsnew/2.0.po +++ b/whatsnew/2.0.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1028,10 +1028,10 @@ msgstr "" #: whatsnew/2.0.rst:821 msgid "" "The SIG for distribution utilities, shepherded by Greg Ward, has created the " -"Distutils, a system to make package installation much easier. They form " -"the :mod:`distutils` package, a new part of Python's standard library. In " -"the best case, installing a Python module from source will require the same " -"steps: first you simply mean unpack the tarball or zip archive, and the run " +"Distutils, a system to make package installation much easier. They form the " +"``distutils`` package, a new part of Python's standard library. In the best " +"case, installing a Python module from source will require the same steps: " +"first you simply mean unpack the tarball or zip archive, and the run " "\"``python setup.py install``\". The platform will be automatically " "detected, the compiler will be recognized, C extension modules will be " "compiled, and the distribution installed into the proper directory. " diff --git a/whatsnew/2.3.po b/whatsnew/2.3.po index 8d3b85400..f7c5c27d5 100644 --- a/whatsnew/2.3.po +++ b/whatsnew/2.3.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -774,9 +774,9 @@ msgstr "" msgid "" "Importer objects must have a single method, ``find_module(fullname, " "path=None)``. *fullname* will be a module or package name, e.g. ``string`` " -"or ``distutils.core``. :meth:`find_module` must return a loader object that " -"has a single method, ``load_module(fullname)``, that creates and returns the " -"corresponding module object." +"or ``distutils.core``. :meth:`!find_module` must return a loader object " +"that has a single method, ``load_module(fullname)``, that creates and " +"returns the corresponding module object." msgstr "" #: whatsnew/2.3.rst:735 diff --git a/whatsnew/2.7.po b/whatsnew/2.7.po index 6343d7c4d..98fc90341 100644 --- a/whatsnew/2.7.po +++ b/whatsnew/2.7.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -876,7 +876,7 @@ msgid "" "after a suggestion by George Sakkis; :issue:`5982`.)" msgstr "" -#: whatsnew/2.7.rst:2462 +#: whatsnew/2.7.rst:2463 msgid "" "When a restricted set of attributes were set using ``__slots__``, deleting " "an unset attribute would not raise :exc:`AttributeError` as you would " @@ -1439,11 +1439,11 @@ msgid "" "dictionary mapping argument names to their values. For example::" msgstr "" -#: whatsnew/2.7.rst:1343 +#: whatsnew/2.7.rst:1344 msgid "Contributed by George Sakkis; :issue:`3135`." msgstr "" -#: whatsnew/2.7.rst:1345 +#: whatsnew/2.7.rst:1346 msgid "" "Updated module: The :mod:`io` library has been upgraded to the version " "shipped with Python 3.1. For 3.1, the I/O library was entirely rewritten in " @@ -1451,14 +1451,14 @@ msgid "" "original Python version was renamed to the :mod:`_pyio` module." msgstr "" -#: whatsnew/2.7.rst:1350 +#: whatsnew/2.7.rst:1351 msgid "" "One minor resulting change: the :class:`io.TextIOBase` class now has an :" "attr:`errors` attribute giving the error setting used for encoding and " "decoding errors (one of ``'strict'``, ``'replace'``, ``'ignore'``)." msgstr "" -#: whatsnew/2.7.rst:1355 +#: whatsnew/2.7.rst:1356 msgid "" "The :class:`io.FileIO` class now raises an :exc:`OSError` when passed an " "invalid file descriptor. (Implemented by Benjamin Peterson; :issue:" @@ -1467,14 +1467,14 @@ msgid "" "file. (Fixed by Pascal Chambon; :issue:`6939`.)" msgstr "" -#: whatsnew/2.7.rst:1361 +#: whatsnew/2.7.rst:1362 msgid "" "New function: ``itertools.compress(data, selectors)`` takes two iterators. " "Elements of *data* are returned if the corresponding value in *selectors* is " "true::" msgstr "" -#: whatsnew/2.7.rst:1370 +#: whatsnew/2.7.rst:1371 msgid "" "New function: ``itertools.combinations_with_replacement(iter, r)`` returns " "all the possible *r*-length combinations of elements from the iterable " @@ -1482,13 +1482,13 @@ msgid "" "repeated in the generated combinations::" msgstr "" -#: whatsnew/2.7.rst:1379 +#: whatsnew/2.7.rst:1380 msgid "" "Note that elements are treated as unique depending on their position in the " "input, not their actual values." msgstr "" -#: whatsnew/2.7.rst:1382 +#: whatsnew/2.7.rst:1383 msgid "" "The :func:`itertools.count` function now has a *step* argument that allows " "incrementing by values other than 1. :func:`~itertools.count` also now " @@ -1497,7 +1497,7 @@ msgid "" "issue:`5032`.)" msgstr "" -#: whatsnew/2.7.rst:1388 +#: whatsnew/2.7.rst:1389 msgid "" ":func:`itertools.combinations` and :func:`itertools.product` previously " "raised :exc:`ValueError` for values of *r* larger than the input iterable. " @@ -1505,14 +1505,14 @@ msgid "" "iterator. (Fixed by Raymond Hettinger; :issue:`4816`.)" msgstr "" -#: whatsnew/2.7.rst:1393 +#: whatsnew/2.7.rst:1394 msgid "" "Updated module: The :mod:`json` module was upgraded to version 2.0.9 of the " "simplejson package, which includes a C extension that makes encoding and " "decoding faster. (Contributed by Bob Ippolito; :issue:`4136`.)" msgstr "" -#: whatsnew/2.7.rst:1398 +#: whatsnew/2.7.rst:1399 msgid "" "To support the new :class:`collections.OrderedDict` type, :func:`json.load` " "now has an optional *object_pairs_hook* parameter that will be called with " @@ -1520,7 +1520,7 @@ msgid "" "Hettinger; :issue:`5381`.)" msgstr "" -#: whatsnew/2.7.rst:1403 +#: whatsnew/2.7.rst:1404 msgid "" "The :mod:`mailbox` module's :class:`~mailbox.Maildir` class now records the " "timestamp on the directories it reads, and only re-reads them if the " @@ -1529,7 +1529,7 @@ msgid "" "Pitrou; :issue:`1607951`, :issue:`6896`.)" msgstr "" -#: whatsnew/2.7.rst:1409 +#: whatsnew/2.7.rst:1410 msgid "" "New functions: the :mod:`math` module gained :func:`~math.erf` and :func:" "`~math.erfc` for the error function and the complementary error function, :" @@ -1540,7 +1540,7 @@ msgid "" "`3366`.)" msgstr "" -#: whatsnew/2.7.rst:1417 +#: whatsnew/2.7.rst:1418 msgid "" "The :mod:`multiprocessing` module's :class:`Manager*` classes can now be " "passed a callable that will be called whenever a subprocess is started, " @@ -1548,7 +1548,7 @@ msgid "" "(Contributed by lekma; :issue:`5585`.)" msgstr "" -#: whatsnew/2.7.rst:1423 +#: whatsnew/2.7.rst:1424 msgid "" "The :class:`~multiprocessing.Pool` class, which controls a pool of worker " "processes, now has an optional *maxtasksperchild* parameter. Worker " @@ -1558,13 +1558,13 @@ msgid "" "worker to become very large. (Contributed by Charles Cazabon; :issue:`6963`.)" msgstr "" -#: whatsnew/2.7.rst:1431 +#: whatsnew/2.7.rst:1432 msgid "" "The :mod:`nntplib` module now supports IPv6 addresses. (Contributed by Derek " "Morr; :issue:`1664`.)" msgstr "" -#: whatsnew/2.7.rst:1434 +#: whatsnew/2.7.rst:1435 msgid "" "New functions: the :mod:`os` module wraps the following POSIX system calls: :" "func:`~os.getresgid` and :func:`~os.getresuid`, which return the real, " @@ -1575,14 +1575,14 @@ msgid "" "`6508`. Support for initgroups added by Jean-Paul Calderone; :issue:`7333`.)" msgstr "" -#: whatsnew/2.7.rst:1444 +#: whatsnew/2.7.rst:1445 msgid "" "The :func:`os.fork` function now re-initializes the import lock in the child " "process; this fixes problems on Solaris when :func:`~os.fork` is called from " "a thread. (Fixed by Zsolt Cserna; :issue:`7242`.)" msgstr "" -#: whatsnew/2.7.rst:1448 +#: whatsnew/2.7.rst:1449 msgid "" "In the :mod:`os.path` module, the :func:`~os.path.normpath` and :func:`~os." "path.abspath` functions now preserve Unicode; if their input path is a " @@ -1591,21 +1591,21 @@ msgid "" "fixed by Ezio Melotti in :issue:`3426`.)" msgstr "" -#: whatsnew/2.7.rst:1454 +#: whatsnew/2.7.rst:1455 msgid "" "The :mod:`pydoc` module now has help for the various symbols that Python " "uses. You can now do ``help('<<')`` or ``help('@')``, for example. " "(Contributed by David Laban; :issue:`4739`.)" msgstr "" -#: whatsnew/2.7.rst:1458 +#: whatsnew/2.7.rst:1459 msgid "" "The :mod:`re` module's :func:`~re.split`, :func:`~re.sub`, and :func:`~re." "subn` now accept an optional *flags* argument, for consistency with the " "other functions in the module. (Added by Gregory P. Smith.)" msgstr "" -#: whatsnew/2.7.rst:1462 +#: whatsnew/2.7.rst:1463 msgid "" "New function: :func:`~runpy.run_path` in the :mod:`runpy` module will " "execute the code at a provided *path* argument. *path* can be the path of a " @@ -1620,7 +1620,7 @@ msgid "" "processes an explicit path name. (Added by Nick Coghlan; :issue:`6816`.)" msgstr "" -#: whatsnew/2.7.rst:1476 +#: whatsnew/2.7.rst:1477 msgid "" "New function: in the :mod:`shutil` module, :func:`~shutil.make_archive` " "takes a filename, archive type (zip or tar-format), and a directory path, " @@ -1628,7 +1628,7 @@ msgid "" "Ziadé.)" msgstr "" -#: whatsnew/2.7.rst:1481 +#: whatsnew/2.7.rst:1482 msgid "" ":mod:`shutil`'s :func:`~shutil.copyfile` and :func:`~shutil.copytree` " "functions now raise a :exc:`~shutil.SpecialFileError` exception when asked " @@ -1637,7 +1637,7 @@ msgid "" "indefinitely. (Fixed by Antoine Pitrou; :issue:`3002`.)" msgstr "" -#: whatsnew/2.7.rst:1487 +#: whatsnew/2.7.rst:1488 msgid "" "The :mod:`signal` module no longer re-installs the signal handler unless " "this is truly necessary, which fixes a bug that could make it impossible to " @@ -1645,7 +1645,7 @@ msgid "" "`8354`.)" msgstr "" -#: whatsnew/2.7.rst:1492 +#: whatsnew/2.7.rst:1493 msgid "" "New functions: in the :mod:`site` module, three new functions return various " "site- and user-specific paths. :func:`~site.getsitepackages` returns a list " @@ -1656,7 +1656,7 @@ msgid "" "store data. (Contributed by Tarek Ziadé; :issue:`6693`.)" msgstr "" -#: whatsnew/2.7.rst:1503 +#: whatsnew/2.7.rst:1504 msgid "" "The :mod:`site` module now reports exceptions occurring when the :mod:" "`sitecustomize` module is imported, and will no longer catch and swallow " @@ -1664,14 +1664,14 @@ msgid "" "`3137`.)" msgstr "" -#: whatsnew/2.7.rst:1508 +#: whatsnew/2.7.rst:1509 msgid "" "The :func:`~socket.create_connection` function gained a *source_address* " "parameter, a ``(host, port)`` 2-tuple giving the source address that will be " "used for the connection. (Contributed by Eldon Ziegler; :issue:`3972`.)" msgstr "" -#: whatsnew/2.7.rst:1513 +#: whatsnew/2.7.rst:1514 msgid "" "The :meth:`~socket.socket.recv_into` and :meth:`~socket.socket." "recvfrom_into` methods will now write into objects that support the buffer " @@ -1679,7 +1679,7 @@ msgid "" "(Implemented by Antoine Pitrou; :issue:`8104`.)" msgstr "" -#: whatsnew/2.7.rst:1518 +#: whatsnew/2.7.rst:1519 msgid "" "The :mod:`SocketServer` module's :class:`~SocketServer.TCPServer` class now " "supports socket timeouts and disabling the Nagle algorithm. The :attr:" @@ -1694,7 +1694,7 @@ msgid "" "Jónsson; :issue:`6192` and :issue:`6267`.)" msgstr "" -#: whatsnew/2.7.rst:1530 +#: whatsnew/2.7.rst:1531 msgid "" "Updated module: the :mod:`sqlite3` module has been updated to version 2.6.0 " "of the `pysqlite package `__. Version " @@ -1705,7 +1705,7 @@ msgid "" "Häring.)" msgstr "" -#: whatsnew/2.7.rst:1537 +#: whatsnew/2.7.rst:1538 msgid "" "The :mod:`ssl` module's :class:`~ssl.SSLSocket` objects now support the " "buffer API, which fixed a test suite failure (fix by Antoine Pitrou; :issue:" @@ -1714,7 +1714,7 @@ msgid "" "that trigger an SSL renegotiation (fix by Antoine Pitrou; :issue:`8222`)." msgstr "" -#: whatsnew/2.7.rst:1544 +#: whatsnew/2.7.rst:1545 msgid "" "The :func:`ssl.wrap_socket` constructor function now takes a *ciphers* " "argument that's a string listing the encryption algorithms to be allowed; " @@ -1723,7 +1723,7 @@ msgid "" "Pitrou; :issue:`8322`.)" msgstr "" -#: whatsnew/2.7.rst:1551 +#: whatsnew/2.7.rst:1552 msgid "" "Another change makes the extension load all of OpenSSL's ciphers and digest " "algorithms so that they're all available. Some SSL certificates couldn't be " @@ -1731,7 +1731,7 @@ msgid "" "Kosata, and fixed by Antoine Pitrou; :issue:`8484`.)" msgstr "" -#: whatsnew/2.7.rst:1557 +#: whatsnew/2.7.rst:1558 msgid "" "The version of OpenSSL being used is now available as the module attributes :" "const:`ssl.OPENSSL_VERSION` (a string), :const:`ssl.OPENSSL_VERSION_INFO` (a " @@ -1739,7 +1739,7 @@ msgid "" "Antoine Pitrou; :issue:`8321`.)" msgstr "" -#: whatsnew/2.7.rst:1563 +#: whatsnew/2.7.rst:1564 msgid "" "The :mod:`struct` module will no longer silently ignore overflow errors when " "a value is too large for a particular integer format code (one of " @@ -1750,7 +1750,7 @@ msgid "" "(Changed by Mark Dickinson; :issue:`8300`.)" msgstr "" -#: whatsnew/2.7.rst:1572 +#: whatsnew/2.7.rst:1573 msgid "" "New function: the :mod:`subprocess` module's :func:`~subprocess." "check_output` runs a command with a specified set of arguments and returns " @@ -1758,18 +1758,18 @@ msgid "" "raises a :exc:`~subprocess.CalledProcessError` exception otherwise." msgstr "" -#: whatsnew/2.7.rst:1587 +#: whatsnew/2.7.rst:1588 msgid "(Contributed by Gregory P. Smith.)" msgstr "" -#: whatsnew/2.7.rst:1589 +#: whatsnew/2.7.rst:1590 msgid "" "The :mod:`subprocess` module will now retry its internal system calls on " "receiving an :const:`EINTR` signal. (Reported by several people; final " "patch by Gregory P. Smith in :issue:`1068268`.)" msgstr "" -#: whatsnew/2.7.rst:1593 +#: whatsnew/2.7.rst:1594 msgid "" "New function: :func:`~symtable.Symbol.is_declared_global` in the :mod:" "`symtable` module returns true for variables that are explicitly declared to " @@ -1777,21 +1777,21 @@ msgid "" "Hylton.)" msgstr "" -#: whatsnew/2.7.rst:2496 +#: whatsnew/2.7.rst:2497 msgid "" "The :mod:`syslog` module will now use the value of ``sys.argv[0]`` as the " "identifier instead of the previous default value of ``'python'``. (Changed " "by Sean Reifschneider; :issue:`8451`.)" msgstr "" -#: whatsnew/2.7.rst:1602 +#: whatsnew/2.7.rst:1603 msgid "" "The ``sys.version_info`` value is now a named tuple, with attributes named :" "attr:`major`, :attr:`minor`, :attr:`micro`, :attr:`releaselevel`, and :attr:" "`serial`. (Contributed by Ross Light; :issue:`4285`.)" msgstr "" -#: whatsnew/2.7.rst:1607 +#: whatsnew/2.7.rst:1608 msgid "" ":func:`sys.getwindowsversion` also returns a named tuple, with attributes " "named :attr:`major`, :attr:`minor`, :attr:`build`, :attr:`platform`, :attr:" @@ -1800,7 +1800,7 @@ msgid "" "issue:`7766`.)" msgstr "" -#: whatsnew/2.7.rst:2500 +#: whatsnew/2.7.rst:2501 msgid "" "The :mod:`tarfile` module's default error handling has changed, to no longer " "suppress fatal errors. The default error level was previously 0, which " @@ -1810,7 +1810,7 @@ msgid "" "there's an error. (Changed by Lars Gustäbel; :issue:`7357`.)" msgstr "" -#: whatsnew/2.7.rst:1621 +#: whatsnew/2.7.rst:1622 msgid "" ":mod:`tarfile` now supports filtering the :class:`~tarfile.TarInfo` objects " "being added to a tar file. When you call :meth:`~tarfile.TarFile.add`, you " @@ -1824,7 +1824,7 @@ msgid "" "issue:`7232`.)" msgstr "" -#: whatsnew/2.7.rst:1633 +#: whatsnew/2.7.rst:1634 msgid "" "The :meth:`~threading.Event.wait` method of the :class:`threading.Event` " "class now returns the internal flag on exit. This means the method will " @@ -1834,7 +1834,7 @@ msgid "" "Tim Lesher; :issue:`1674032`.)" msgstr "" -#: whatsnew/2.7.rst:1640 +#: whatsnew/2.7.rst:1641 msgid "" "The Unicode database provided by the :mod:`unicodedata` module is now used " "internally to determine which characters are numeric, whitespace, or " @@ -1844,7 +1844,7 @@ msgid "" "Florent Xicluna; :issue:`8024`)." msgstr "" -#: whatsnew/2.7.rst:2508 +#: whatsnew/2.7.rst:2509 msgid "" "The :mod:`urlparse` module's :func:`~urlparse.urlsplit` now handles unknown " "URL schemes in a fashion compliant with :rfc:`3986`: if the URL is of the " @@ -1854,23 +1854,23 @@ msgid "" "For example, Python 2.6.4 or 2.5 will return the following:" msgstr "" -#: whatsnew/2.7.rst:2523 +#: whatsnew/2.7.rst:2524 msgid "Python 2.7 (and Python 2.6.5) will return:" msgstr "" -#: whatsnew/2.7.rst:2532 +#: whatsnew/2.7.rst:2533 msgid "" "(Python 2.7 actually produces slightly different output, since it returns a " "named tuple instead of a standard tuple.)" msgstr "" -#: whatsnew/2.7.rst:1675 +#: whatsnew/2.7.rst:1676 msgid "" "The :mod:`urlparse` module also supports IPv6 literal addresses as defined " "by :rfc:`2732` (contributed by Senthil Kumaran; :issue:`2987`)." msgstr "" -#: whatsnew/2.7.rst:1685 +#: whatsnew/2.7.rst:1686 msgid "" "New class: the :class:`~weakref.WeakSet` class in the :mod:`weakref` module " "is a set that only holds weak references to its elements; elements will be " @@ -1879,7 +1879,7 @@ msgid "" "Michael Foord.)" msgstr "" -#: whatsnew/2.7.rst:2486 +#: whatsnew/2.7.rst:2487 msgid "" "The ElementTree library, :mod:`xml.etree`, no longer escapes ampersands and " "angle brackets when outputting an XML processing instruction (which looks " @@ -1887,7 +1887,7 @@ msgid "" "````). (Patch by Neil Muller; :issue:`2746`.)" msgstr "" -#: whatsnew/2.7.rst:1697 +#: whatsnew/2.7.rst:1698 msgid "" "The XML-RPC client and server, provided by the :mod:`xmlrpclib` and :mod:" "`SimpleXMLRPCServer` modules, have improved performance by supporting " @@ -1898,14 +1898,14 @@ msgid "" "(Contributed by Kristján Valur Jónsson; :issue:`6267`.)" msgstr "" -#: whatsnew/2.7.rst:1706 +#: whatsnew/2.7.rst:1707 msgid "" "The :mod:`zipfile` module's :class:`~zipfile.ZipFile` now supports the " "context management protocol, so you can write ``with zipfile.ZipFile(...) as " "f:``. (Contributed by Brian Curtin; :issue:`5511`.)" msgstr "" -#: whatsnew/2.7.rst:1710 +#: whatsnew/2.7.rst:1711 msgid "" ":mod:`zipfile` now also supports archiving empty directories and extracts " "them correctly. (Fixed by Kuba Wieczorek; :issue:`4710`.) Reading files out " @@ -1914,14 +1914,14 @@ msgid "" "Aides; :issue:`7610`.)" msgstr "" -#: whatsnew/2.7.rst:1716 +#: whatsnew/2.7.rst:1717 msgid "" "The :func:`~zipfile.is_zipfile` function now accepts a file object, in " "addition to the path names accepted in earlier versions. (Contributed by " "Gabriel Genellina; :issue:`4756`.)" msgstr "" -#: whatsnew/2.7.rst:1720 +#: whatsnew/2.7.rst:1721 msgid "" "The :meth:`~zipfile.ZipFile.writestr` method now has an optional " "*compress_type* parameter that lets you override the default compression " @@ -1929,11 +1929,11 @@ msgid "" "by Ronald Oussoren; :issue:`6003`.)" msgstr "" -#: whatsnew/2.7.rst:1733 +#: whatsnew/2.7.rst:1734 msgid "New module: importlib" msgstr "" -#: whatsnew/2.7.rst:1735 +#: whatsnew/2.7.rst:1736 msgid "" "Python 3.1 includes the :mod:`importlib` package, a re-implementation of the " "logic underlying Python's :keyword:`import` statement. :mod:`importlib` is " @@ -1944,7 +1944,7 @@ msgid "" "import_module`." msgstr "" -#: whatsnew/2.7.rst:1743 +#: whatsnew/2.7.rst:1744 msgid "" "``import_module(name, package=None)`` imports a module. *name* is a string " "containing the module or package's name. It's possible to do relative " @@ -1955,21 +1955,21 @@ msgid "" "imported module into ``sys.modules`` and returns the module object." msgstr "" -#: whatsnew/2.7.rst:1752 +#: whatsnew/2.7.rst:1753 msgid "Here are some examples::" msgstr "" -#: whatsnew/2.7.rst:1763 +#: whatsnew/2.7.rst:1764 msgid "" ":mod:`importlib` was implemented by Brett Cannon and introduced in Python " "3.1." msgstr "" -#: whatsnew/2.7.rst:1768 +#: whatsnew/2.7.rst:1769 msgid "New module: sysconfig" msgstr "" -#: whatsnew/2.7.rst:1770 +#: whatsnew/2.7.rst:1771 msgid "" "The :mod:`sysconfig` module has been pulled out of the Distutils package, " "becoming a new top-level module in its own right. :mod:`sysconfig` provides " @@ -1978,42 +1978,42 @@ msgid "" "running from its source directory." msgstr "" -#: whatsnew/2.7.rst:1777 +#: whatsnew/2.7.rst:1778 msgid "Some of the functions in the module are:" msgstr "" -#: whatsnew/2.7.rst:1779 +#: whatsnew/2.7.rst:1780 msgid "" ":func:`~sysconfig.get_config_var` returns variables from Python's Makefile " "and the :file:`pyconfig.h` file." msgstr "" -#: whatsnew/2.7.rst:1781 +#: whatsnew/2.7.rst:1782 msgid "" ":func:`~sysconfig.get_config_vars` returns a dictionary containing all of " "the configuration variables." msgstr "" -#: whatsnew/2.7.rst:1783 +#: whatsnew/2.7.rst:1784 msgid "" ":func:`~sysconfig.get_path` returns the configured path for a particular " "type of module: the standard library, site-specific modules, platform-" "specific modules, etc." msgstr "" -#: whatsnew/2.7.rst:1786 +#: whatsnew/2.7.rst:1787 msgid "" ":func:`~sysconfig.is_python_build` returns true if you're running a binary " "from a Python source tree, and false otherwise." msgstr "" -#: whatsnew/2.7.rst:1789 +#: whatsnew/2.7.rst:1790 msgid "" "Consult the :mod:`sysconfig` documentation for more details and for a " "complete list of functions." msgstr "" -#: whatsnew/2.7.rst:1792 +#: whatsnew/2.7.rst:1793 msgid "" "The Distutils package and :mod:`sysconfig` are now maintained by Tarek " "Ziadé, who has also started a Distutils2 package (source repository at " @@ -2021,11 +2021,11 @@ msgid "" "of Distutils." msgstr "" -#: whatsnew/2.7.rst:1799 +#: whatsnew/2.7.rst:1800 msgid "ttk: Themed Widgets for Tk" msgstr "" -#: whatsnew/2.7.rst:1801 +#: whatsnew/2.7.rst:1802 msgid "" "Tcl/Tk 8.5 includes a set of themed widgets that re-implement basic Tk " "widgets but have a more customizable appearance and can therefore more " @@ -2034,7 +2034,7 @@ msgid "" "added to Tcl/Tck release 8.5." msgstr "" -#: whatsnew/2.7.rst:1807 +#: whatsnew/2.7.rst:1808 msgid "" "To learn more, read the :mod:`ttk` module documentation. You may also wish " "to read the Tcl/Tk manual page describing the Ttk theme engine, available at " @@ -2043,7 +2043,7 @@ msgid "" "wikis/Screenshots.wiki." msgstr "" -#: whatsnew/2.7.rst:1814 +#: whatsnew/2.7.rst:1815 msgid "" "The :mod:`ttk` module was written by Guilherme Polo and added in :issue:" "`2983`. An alternate version called ``Tile.py``, written by Martin Franklin " @@ -2051,11 +2051,11 @@ msgid "" "but the authors argued that Guilherme Polo's work was more comprehensive." msgstr "" -#: whatsnew/2.7.rst:1824 +#: whatsnew/2.7.rst:1825 msgid "Updated module: unittest" msgstr "" -#: whatsnew/2.7.rst:1826 +#: whatsnew/2.7.rst:1827 msgid "" "The :mod:`unittest` module was greatly enhanced; many new features were " "added. Most of these features were implemented by Michael Foord, unless " @@ -2064,7 +2064,7 @@ msgid "" "`unittest2` package, from https://pypi.org/project/unittest2." msgstr "" -#: whatsnew/2.7.rst:1833 +#: whatsnew/2.7.rst:1834 msgid "" "When used from the command line, the module can automatically discover " "tests. It's not as fancy as `py.test `__ or `nose " @@ -2074,17 +2074,17 @@ msgid "" "files named ``test*.py``::" msgstr "" -#: whatsnew/2.7.rst:1842 +#: whatsnew/2.7.rst:1843 msgid "" "Consult the :mod:`unittest` module documentation for more details. " "(Developed in :issue:`6001`.)" msgstr "" -#: whatsnew/2.7.rst:1845 +#: whatsnew/2.7.rst:1846 msgid "The :func:`~unittest.main` function supports some other new options:" msgstr "" -#: whatsnew/2.7.rst:1847 +#: whatsnew/2.7.rst:1848 msgid "" ":option:`-b ` or :option:`!--buffer` will buffer the standard " "output and standard error streams during each test. If the test passes, any " @@ -2092,7 +2092,7 @@ msgid "" "displayed." msgstr "" -#: whatsnew/2.7.rst:1852 +#: whatsnew/2.7.rst:1853 msgid "" ":option:`-c ` or :option:`!--catch` will cause the control-C " "interrupt to be handled more gracefully. Instead of interrupting the test " @@ -2101,7 +2101,7 @@ msgid "" "impatient, a second press of control-C will cause an immediate interruption." msgstr "" -#: whatsnew/2.7.rst:1859 +#: whatsnew/2.7.rst:1860 msgid "" "This control-C handler tries to avoid causing problems when the code being " "tested or the tests being run have defined a signal handler of their own, by " @@ -2111,7 +2111,7 @@ msgid "" "disabled." msgstr "" -#: whatsnew/2.7.rst:1866 +#: whatsnew/2.7.rst:1867 msgid "" ":option:`-f ` or :option:`!--failfast` makes test execution " "stop immediately when a test fails instead of continuing to execute further " @@ -2119,20 +2119,20 @@ msgid "" "`8074`.)" msgstr "" -#: whatsnew/2.7.rst:1871 +#: whatsnew/2.7.rst:1872 msgid "" "The progress messages now show 'x' for expected failures and 'u' for " "unexpected successes when run in verbose mode. (Contributed by Benjamin " "Peterson.)" msgstr "" -#: whatsnew/2.7.rst:1875 +#: whatsnew/2.7.rst:1876 msgid "" "Test cases can raise the :exc:`~unittest.SkipTest` exception to skip a test " "(:issue:`1034053`)." msgstr "" -#: whatsnew/2.7.rst:1878 +#: whatsnew/2.7.rst:1879 msgid "" "The error messages for :meth:`~unittest.TestCase.assertEqual`, :meth:" "`~unittest.TestCase.assertTrue`, and :meth:`~unittest.TestCase.assertFalse` " @@ -2143,18 +2143,18 @@ msgid "" "`5663`.)" msgstr "" -#: whatsnew/2.7.rst:1885 +#: whatsnew/2.7.rst:1886 msgid "" "The :meth:`~unittest.TestCase.assertRaises` method now returns a context " "handler when called without providing a callable object to run. For " "example, you can write this::" msgstr "" -#: whatsnew/2.7.rst:1892 +#: whatsnew/2.7.rst:1893 msgid "(Implemented by Antoine Pitrou; :issue:`4444`.)" msgstr "" -#: whatsnew/2.7.rst:1896 +#: whatsnew/2.7.rst:1897 msgid "" "Module- and class-level setup and teardown fixtures are now supported. " "Modules can contain :func:`~unittest.setUpModule` and :func:`~unittest." @@ -2165,7 +2165,7 @@ msgid "" "case in a different module or class." msgstr "" -#: whatsnew/2.7.rst:1904 +#: whatsnew/2.7.rst:1905 msgid "" "The methods :meth:`~unittest.TestCase.addCleanup` and :meth:`~unittest." "TestCase.doCleanups` were added. :meth:`~unittest.TestCase.addCleanup` lets " @@ -2175,7 +2175,7 @@ msgid "" "simpler resource allocation and deallocation during tests (:issue:`5679`)." msgstr "" -#: whatsnew/2.7.rst:1912 +#: whatsnew/2.7.rst:1913 msgid "" "A number of new methods were added that provide more specialized tests. " "Many of these methods were written by Google engineers for use in their test " @@ -2183,21 +2183,21 @@ msgid "" "Python's version of :mod:`unittest`." msgstr "" -#: whatsnew/2.7.rst:1917 +#: whatsnew/2.7.rst:1918 msgid "" ":meth:`~unittest.TestCase.assertIsNone` and :meth:`~unittest.TestCase." "assertIsNotNone` take one expression and verify that the result is or is not " "``None``." msgstr "" -#: whatsnew/2.7.rst:1920 +#: whatsnew/2.7.rst:1921 msgid "" ":meth:`~unittest.TestCase.assertIs` and :meth:`~unittest.TestCase." "assertIsNot` take two values and check whether the two values evaluate to " "the same object or not. (Added by Michael Foord; :issue:`2578`.)" msgstr "" -#: whatsnew/2.7.rst:1924 +#: whatsnew/2.7.rst:1925 msgid "" ":meth:`~unittest.TestCase.assertIsInstance` and :meth:`~unittest.TestCase." "assertNotIsInstance` check whether the resulting object is an instance of a " @@ -2205,14 +2205,14 @@ msgid "" "issue:`7031`.)" msgstr "" -#: whatsnew/2.7.rst:1929 +#: whatsnew/2.7.rst:1930 msgid "" ":meth:`~unittest.TestCase.assertGreater`, :meth:`~unittest.TestCase." "assertGreaterEqual`, :meth:`~unittest.TestCase.assertLess`, and :meth:" "`~unittest.TestCase.assertLessEqual` compare two quantities." msgstr "" -#: whatsnew/2.7.rst:1933 +#: whatsnew/2.7.rst:1934 msgid "" ":meth:`~unittest.TestCase.assertMultiLineEqual` compares two strings, and if " "they're not equal, displays a helpful comparison that highlights the " @@ -2220,7 +2220,7 @@ msgid "" "Unicode strings are compared with :meth:`~unittest.TestCase.assertEqual`." msgstr "" -#: whatsnew/2.7.rst:1938 +#: whatsnew/2.7.rst:1939 msgid "" ":meth:`~unittest.TestCase.assertRegexpMatches` and :meth:`~unittest.TestCase." "assertNotRegexpMatches` checks whether the first argument is a string " @@ -2228,32 +2228,32 @@ msgid "" "argument (:issue:`8038`)." msgstr "" -#: whatsnew/2.7.rst:1943 +#: whatsnew/2.7.rst:1944 msgid "" ":meth:`~unittest.TestCase.assertRaisesRegexp` checks whether a particular " "exception is raised, and then also checks that the string representation of " "the exception matches the provided regular expression." msgstr "" -#: whatsnew/2.7.rst:1947 +#: whatsnew/2.7.rst:1948 msgid "" ":meth:`~unittest.TestCase.assertIn` and :meth:`~unittest.TestCase." "assertNotIn` tests whether *first* is or is not in *second*." msgstr "" -#: whatsnew/2.7.rst:1950 +#: whatsnew/2.7.rst:1951 msgid "" ":meth:`~unittest.TestCase.assertItemsEqual` tests whether two provided " "sequences contain the same elements." msgstr "" -#: whatsnew/2.7.rst:1953 +#: whatsnew/2.7.rst:1954 msgid "" ":meth:`~unittest.TestCase.assertSetEqual` compares whether two sets are " "equal, and only reports the differences between the sets in case of error." msgstr "" -#: whatsnew/2.7.rst:1956 +#: whatsnew/2.7.rst:1957 msgid "" "Similarly, :meth:`~unittest.TestCase.assertListEqual` and :meth:`~unittest." "TestCase.assertTupleEqual` compare the specified types and explain any " @@ -2264,7 +2264,7 @@ msgid "" "both sequences are of a particular type." msgstr "" -#: whatsnew/2.7.rst:1964 +#: whatsnew/2.7.rst:1965 msgid "" ":meth:`~unittest.TestCase.assertDictEqual` compares two dictionaries and " "reports the differences; it's now used by default when you compare two " @@ -2273,7 +2273,7 @@ msgid "" "in *first* are found in *second*." msgstr "" -#: whatsnew/2.7.rst:1969 +#: whatsnew/2.7.rst:1970 msgid "" ":meth:`~unittest.TestCase.assertAlmostEqual` and :meth:`~unittest.TestCase." "assertNotAlmostEqual` test whether *first* and *second* are approximately " @@ -2282,14 +2282,14 @@ msgid "" "require the difference to be smaller than a supplied *delta* value." msgstr "" -#: whatsnew/2.7.rst:1975 +#: whatsnew/2.7.rst:1976 msgid "" ":meth:`~unittest.TestLoader.loadTestsFromName` properly honors the :attr:" "`~unittest.TestLoader.suiteClass` attribute of the :class:`~unittest." "TestLoader`. (Fixed by Mark Roddy; :issue:`6866`.)" msgstr "" -#: whatsnew/2.7.rst:1979 +#: whatsnew/2.7.rst:1980 msgid "" "A new hook lets you extend the :meth:`~unittest.TestCase.assertEqual` method " "to handle new data types. The :meth:`~unittest.TestCase." @@ -2301,7 +2301,7 @@ msgid "" "sequence comparison methods do." msgstr "" -#: whatsnew/2.7.rst:1988 +#: whatsnew/2.7.rst:1989 msgid "" ":func:`unittest.main` now takes an optional ``exit`` argument. If false, :" "func:`~unittest.main` doesn't call :func:`sys.exit`, allowing :func:" @@ -2309,7 +2309,7 @@ msgid "" "by J. Pablo Fernández; :issue:`3379`.)" msgstr "" -#: whatsnew/2.7.rst:1993 +#: whatsnew/2.7.rst:1994 msgid "" ":class:`~unittest.TestResult` has new :meth:`~unittest.TestResult." "startTestRun` and :meth:`~unittest.TestResult.stopTestRun` methods that are " @@ -2317,7 +2317,7 @@ msgid "" "Collins; :issue:`5728`.)" msgstr "" -#: whatsnew/2.7.rst:1997 +#: whatsnew/2.7.rst:1998 msgid "" "With all these changes, the :file:`unittest.py` was becoming awkwardly " "large, so the module was turned into a package and the code split into " @@ -2325,43 +2325,43 @@ msgid "" "imported or used." msgstr "" -#: whatsnew/2.7.rst:2005 +#: whatsnew/2.7.rst:2006 msgid "" "https://web.archive.org/web/20210619163128/http://www.voidspace.org.uk/" "python/articles/unittest2.shtml" msgstr "" -#: whatsnew/2.7.rst:2005 +#: whatsnew/2.7.rst:2006 msgid "" "Describes the new features, how to use them, and the rationale for various " "design decisions. (By Michael Foord.)" msgstr "" -#: whatsnew/2.7.rst:2011 +#: whatsnew/2.7.rst:2012 msgid "Updated module: ElementTree 1.3" msgstr "" -#: whatsnew/2.7.rst:2013 +#: whatsnew/2.7.rst:2014 msgid "" "The version of the ElementTree library included with Python was updated to " "version 1.3. Some of the new features are:" msgstr "" -#: whatsnew/2.7.rst:2016 +#: whatsnew/2.7.rst:2017 msgid "" "The various parsing functions now take a *parser* keyword argument giving " "an :class:`~xml.etree.ElementTree.XMLParser` instance that will be used. " "This makes it possible to override the file's internal encoding::" msgstr "" -#: whatsnew/2.7.rst:2023 +#: whatsnew/2.7.rst:2024 msgid "" "Errors in parsing XML now raise a :exc:`ParseError` exception, whose " "instances have a :attr:`position` attribute containing a (*line*, *column*) " "tuple giving the location of the problem." msgstr "" -#: whatsnew/2.7.rst:2027 +#: whatsnew/2.7.rst:2028 msgid "" "ElementTree's code for converting trees to a string has been significantly " "reworked, making it roughly twice as fast in many cases. The :meth:" @@ -2375,7 +2375,7 @@ msgid "" "to do more extensive rearrangement to remove a single element." msgstr "" -#: whatsnew/2.7.rst:2039 +#: whatsnew/2.7.rst:2040 msgid "" "Namespace handling has also been improved. All ``xmlns:`` " "declarations are now output on the root element, not scattered throughout " @@ -2385,7 +2385,7 @@ msgid "" "the true/false *xml_declaration* parameter to suppress the XML declaration." msgstr "" -#: whatsnew/2.7.rst:2047 +#: whatsnew/2.7.rst:2048 msgid "" "New :class:`~xml.etree.ElementTree.Element` method: :meth:`~xml.etree." "ElementTree.Element.extend` appends the items from a sequence to the " @@ -2393,7 +2393,7 @@ msgid "" "to move children from one element to another::" msgstr "" -#: whatsnew/2.7.rst:2064 +#: whatsnew/2.7.rst:2065 msgid "" "New :class:`Element` method: :meth:`~xml.etree.ElementTree.Element.iter` " "yields the children of the element as a generator. It's also possible to " @@ -2402,13 +2402,13 @@ msgid "" "`getchildren` which constructs and returns a list of children." msgstr "" -#: whatsnew/2.7.rst:2071 +#: whatsnew/2.7.rst:2072 msgid "" "New :class:`Element` method: :meth:`~xml.etree.ElementTree.Element.itertext` " "yields all chunks of text that are descendants of the element. For example::" msgstr "" -#: whatsnew/2.7.rst:2082 +#: whatsnew/2.7.rst:2083 msgid "" "Deprecated: using an element as a Boolean (i.e., ``if elem:``) would return " "true if the element had any children, or false if there were no children. " @@ -2418,7 +2418,7 @@ msgid "" "number of children, or ``elem is not None``." msgstr "" -#: whatsnew/2.7.rst:2090 +#: whatsnew/2.7.rst:2091 msgid "" "Fredrik Lundh develops ElementTree and produced the 1.3 version; you can " "read his article describing 1.3 at https://web.archive.org/" @@ -2427,15 +2427,15 @@ msgid "" "python-dev and in :issue:`6472`.)" msgstr "" -#: whatsnew/2.7.rst:2100 +#: whatsnew/2.7.rst:2101 msgid "Build and C API Changes" msgstr "" -#: whatsnew/2.7.rst:2102 +#: whatsnew/2.7.rst:2103 msgid "Changes to Python's build process and to the C API include:" msgstr "" -#: whatsnew/2.7.rst:2104 +#: whatsnew/2.7.rst:2105 msgid "" "The latest release of the GNU Debugger, GDB 7, can be `scripted using Python " "`_; discussed in :issue:`5753`, and fixed by " "Antoine Pitrou." msgstr "" -#: whatsnew/2.7.rst:2179 +#: whatsnew/2.7.rst:2180 msgid "" "New macros: the Python header files now define the following macros: :c:" "macro:`Py_ISALNUM`, :c:macro:`Py_ISALPHA`, :c:macro:`Py_ISDIGIT`, :c:macro:" @@ -2554,7 +2554,7 @@ msgid "" "Eric Smith; :issue:`5793`.)" msgstr "" -#: whatsnew/2.7.rst:2197 +#: whatsnew/2.7.rst:2198 msgid "" "Removed function: :c:func:`!PyEval_CallObject` is now only available as a " "macro. A function version was being kept around to preserve ABI linking " @@ -2562,7 +2562,7 @@ msgid "" "(Removed by Antoine Pitrou; :issue:`8276`.)" msgstr "" -#: whatsnew/2.7.rst:2202 +#: whatsnew/2.7.rst:2203 msgid "" "New format codes: the :c:func:`!PyString_FromFormat`, :c:func:`!" "PyString_FromFormatV`, and :c:func:`PyErr_Format` functions now accept " @@ -2570,7 +2570,7 @@ msgid "" "types. (Contributed by Mark Dickinson; :issue:`7228`.)" msgstr "" -#: whatsnew/2.7.rst:2208 +#: whatsnew/2.7.rst:2209 msgid "" "The complicated interaction between threads and process forking has been " "changed. Previously, the child process created by :func:`os.fork` might " @@ -2582,7 +2582,7 @@ msgid "" "replicated, and the child process would no longer be able to perform imports." msgstr "" -#: whatsnew/2.7.rst:2218 +#: whatsnew/2.7.rst:2219 msgid "" "Python 2.7 acquires the import lock before performing an :func:`os.fork`, " "and will also clean up any locks created using the :mod:`threading` module. " @@ -2590,38 +2590,38 @@ msgid "" "themselves, will not benefit from this clean-up." msgstr "" -#: whatsnew/2.7.rst:2224 +#: whatsnew/2.7.rst:2225 msgid "(Fixed by Thomas Wouters; :issue:`1590864`.)" msgstr "" -#: whatsnew/2.7.rst:2226 +#: whatsnew/2.7.rst:2227 msgid "" "The :c:func:`Py_Finalize` function now calls the internal :func:`threading." "_shutdown` function; this prevents some exceptions from being raised when an " "interpreter shuts down. (Patch by Adam Olsen; :issue:`1722344`.)" msgstr "" -#: whatsnew/2.7.rst:2231 +#: whatsnew/2.7.rst:2232 msgid "" "When using the :c:type:`PyMemberDef` structure to define attributes of a " "type, Python will no longer let you try to delete or set a :c:macro:" "`T_STRING_INPLACE` attribute." msgstr "" -#: whatsnew/2.7.rst:2237 +#: whatsnew/2.7.rst:2238 msgid "" "Global symbols defined by the :mod:`ctypes` module are now prefixed with " "``Py``, or with ``_ctypes``. (Implemented by Thomas Heller; :issue:`3102`.)" msgstr "" -#: whatsnew/2.7.rst:2241 +#: whatsnew/2.7.rst:2242 msgid "" "New configure option: the :option:`!--with-system-expat` switch allows " "building the :mod:`pyexpat` module to use the system Expat library. " "(Contributed by Arfrever Frehtes Taifersar Arahesis; :issue:`7609`.)" msgstr "" -#: whatsnew/2.7.rst:2245 +#: whatsnew/2.7.rst:2246 msgid "" "New configure option: the :option:`!--with-valgrind` option will now disable " "the pymalloc allocator, which is difficult for the Valgrind memory-error " @@ -2630,14 +2630,14 @@ msgid "" "issue:`2422`.)" msgstr "" -#: whatsnew/2.7.rst:2252 +#: whatsnew/2.7.rst:2253 msgid "" "New configure option: you can now supply an empty string to :option:`!--with-" "dbmliborder=` in order to disable all of the various DBM modules. (Added by " "Arfrever Frehtes Taifersar Arahesis; :issue:`6491`.)" msgstr "" -#: whatsnew/2.7.rst:2257 +#: whatsnew/2.7.rst:2258 msgid "" "The :program:`configure` script now checks for floating-point rounding bugs " "on certain 32-bit Intel chips and defines a :c:macro:`X87_DOUBLE_ROUNDING` " @@ -2646,30 +2646,30 @@ msgid "" "`2937`.)" msgstr "" -#: whatsnew/2.7.rst:2263 +#: whatsnew/2.7.rst:2264 msgid "" ":program:`configure` also now sets a :envvar:`LDCXXSHARED` Makefile variable " "for supporting C++ linking. (Contributed by Arfrever Frehtes Taifersar " "Arahesis; :issue:`1222585`.)" msgstr "" -#: whatsnew/2.7.rst:2267 +#: whatsnew/2.7.rst:2268 msgid "" "The build process now creates the necessary files for pkg-config support. " "(Contributed by Clinton Roy; :issue:`3585`.)" msgstr "" -#: whatsnew/2.7.rst:2270 +#: whatsnew/2.7.rst:2271 msgid "" "The build process now supports Subversion 1.7. (Contributed by Arfrever " "Frehtes Taifersar Arahesis; :issue:`6094`.)" msgstr "" -#: whatsnew/2.7.rst:2277 +#: whatsnew/2.7.rst:2278 msgid "Capsules" msgstr "" -#: whatsnew/2.7.rst:2279 +#: whatsnew/2.7.rst:2280 msgid "" "Python 3.1 adds a new C datatype, :c:type:`PyCapsule`, for providing a C API " "to an extension module. A capsule is essentially the holder of a C ``void " @@ -2681,7 +2681,7 @@ msgid "" "module's various API functions." msgstr "" -#: whatsnew/2.7.rst:2288 +#: whatsnew/2.7.rst:2289 msgid "" "There is an existing data type already used for this, :c:type:`!PyCObject`, " "but it doesn't provide type safety. Evil code written in pure Python could " @@ -2691,7 +2691,7 @@ msgid "" "name:" msgstr "" -#: whatsnew/2.7.rst:2306 +#: whatsnew/2.7.rst:2307 msgid "" "You are assured that ``vtable`` points to whatever you're expecting. If a " "different capsule was passed in, :c:func:`PyCapsule_IsValid` would detect " @@ -2699,7 +2699,7 @@ msgid "" "more information on using these objects." msgstr "" -#: whatsnew/2.7.rst:2311 +#: whatsnew/2.7.rst:2312 msgid "" "Python 2.7 now uses capsules internally to provide various extension-module " "APIs, but the :c:func:`!PyCObject_AsVoidPtr` was modified to handle " @@ -2708,17 +2708,17 @@ msgid "" "exc:`PendingDeprecationWarning`, which is silent by default." msgstr "" -#: whatsnew/2.7.rst:2318 +#: whatsnew/2.7.rst:2319 msgid "" "Implemented in Python 3.1 and backported to 2.7 by Larry Hastings; discussed " "in :issue:`5630`." msgstr "" -#: whatsnew/2.7.rst:2325 +#: whatsnew/2.7.rst:2326 msgid "Port-Specific Changes: Windows" msgstr "" -#: whatsnew/2.7.rst:2327 +#: whatsnew/2.7.rst:2328 msgid "" "The :mod:`msvcrt` module now contains some constants from the :file:" "`crtassem.h` header file: :data:`CRT_ASSEMBLY_VERSION`, :data:" @@ -2726,7 +2726,7 @@ msgid "" "(Contributed by David Cournapeau; :issue:`4365`.)" msgstr "" -#: whatsnew/2.7.rst:2334 +#: whatsnew/2.7.rst:2335 msgid "" "The :mod:`_winreg` module for accessing the registry now implements the :" "func:`~_winreg.CreateKeyEx` and :func:`~_winreg.DeleteKeyEx` functions, " @@ -2736,14 +2736,14 @@ msgid "" "tested and documented. (Implemented by Brian Curtin: :issue:`7347`.)" msgstr "" -#: whatsnew/2.7.rst:2342 +#: whatsnew/2.7.rst:2343 msgid "" "The new :c:func:`_beginthreadex` API is used to start threads, and the " "native thread-local storage functions are now used. (Contributed by Kristján " "Valur Jónsson; :issue:`3582`.)" msgstr "" -#: whatsnew/2.7.rst:2346 +#: whatsnew/2.7.rst:2347 msgid "" "The :func:`os.kill` function now works on Windows. The signal value can be " "the constants :const:`CTRL_C_EVENT`, :const:`CTRL_BREAK_EVENT`, or any " @@ -2753,23 +2753,23 @@ msgid "" "`1220212`.)" msgstr "" -#: whatsnew/2.7.rst:2353 +#: whatsnew/2.7.rst:2354 msgid "" "The :func:`os.listdir` function now correctly fails for an empty path. " "(Fixed by Hirokazu Yamamoto; :issue:`5913`.)" msgstr "" -#: whatsnew/2.7.rst:2356 +#: whatsnew/2.7.rst:2357 msgid "" "The :mod:`mimelib` module will now read the MIME database from the Windows " "registry when initializing. (Patch by Gabriel Genellina; :issue:`4969`.)" msgstr "" -#: whatsnew/2.7.rst:2363 +#: whatsnew/2.7.rst:2364 msgid "Port-Specific Changes: Mac OS X" msgstr "" -#: whatsnew/2.7.rst:2365 +#: whatsnew/2.7.rst:2366 msgid "" "The path ``/Library/Python/2.7/site-packages`` is now appended to ``sys." "path``, in order to share added packages between the system installation and " @@ -2777,7 +2777,7 @@ msgid "" "issue:`4865`.)" msgstr "" -#: whatsnew/2.7.rst:2372 +#: whatsnew/2.7.rst:2373 msgid "" "As of 2.7.13, this change was removed. ``/Library/Python/2.7/site-" "packages``, the site-packages directory used by the Apple-supplied system " @@ -2789,11 +2789,11 @@ msgid "" "Pythons. (:issue:`28440`)" msgstr "" -#: whatsnew/2.7.rst:2383 +#: whatsnew/2.7.rst:2384 msgid "Port-Specific Changes: FreeBSD" msgstr "" -#: whatsnew/2.7.rst:2385 +#: whatsnew/2.7.rst:2386 msgid "" "FreeBSD 7.1's :const:`SO_SETFIB` constant, used with :func:`~socket." "getsockopt`/:func:`~socket.setsockopt` to select an alternate routing table, " @@ -2801,11 +2801,11 @@ msgid "" "issue:`8235`.)" msgstr "" -#: whatsnew/2.7.rst:2391 +#: whatsnew/2.7.rst:2392 msgid "Other Changes and Fixes" msgstr "" -#: whatsnew/2.7.rst:2393 +#: whatsnew/2.7.rst:2394 msgid "" "Two benchmark scripts, :file:`iobench` and :file:`ccbench`, were added to " "the :file:`Tools` directory. :file:`iobench` measures the speed of the " @@ -2815,13 +2815,13 @@ msgid "" "bandwidth when performing several tasks using a varying number of threads." msgstr "" -#: whatsnew/2.7.rst:2401 +#: whatsnew/2.7.rst:2402 msgid "" "The :file:`Tools/i18n/msgfmt.py` script now understands plural forms in :" "file:`.po` files. (Fixed by Martin von Löwis; :issue:`5464`.)" msgstr "" -#: whatsnew/2.7.rst:2405 +#: whatsnew/2.7.rst:2406 msgid "" "When importing a module from a :file:`.pyc` or :file:`.pyo` file with an " "existing :file:`.py` counterpart, the :attr:`co_filename` attributes of the " @@ -2831,7 +2831,7 @@ msgid "" "Calderone; :issue:`1180193`.)" msgstr "" -#: whatsnew/2.7.rst:2412 +#: whatsnew/2.7.rst:2413 msgid "" "The :file:`regrtest.py` script now takes a :option:`!--randseed=` switch " "that takes an integer that will be used as the random seed for the :option:" @@ -2839,7 +2839,7 @@ msgid "" "also reports the seed that was used (Added by Collin Winter.)" msgstr "" -#: whatsnew/2.7.rst:2418 +#: whatsnew/2.7.rst:2419 msgid "" "Another :file:`regrtest.py` switch is :option:`!-j`, which takes an integer " "specifying how many tests run in parallel. This allows reducing the total " @@ -2850,31 +2850,31 @@ msgid "" "they fail. (Added by Antoine Pitrou; :issue:`7312`.)" msgstr "" -#: whatsnew/2.7.rst:2427 +#: whatsnew/2.7.rst:2428 msgid "" "When executed as a script, the :file:`py_compile.py` module now accepts " "``'-'`` as an argument, which will read standard input for the list of " "filenames to be compiled. (Contributed by Piotr Ożarowski; :issue:`8233`.)" msgstr "" -#: whatsnew/2.7.rst:2435 +#: whatsnew/2.7.rst:2436 msgid "Porting to Python 2.7" msgstr "" -#: whatsnew/2.7.rst:2437 +#: whatsnew/2.7.rst:2438 msgid "" "This section lists previously described changes and other bugfixes that may " "require changes to your code:" msgstr "" -#: whatsnew/2.7.rst:2440 +#: whatsnew/2.7.rst:2441 msgid "" "The :func:`range` function processes its arguments more consistently; it " "will now call :meth:`__int__` on non-float, non-integer arguments that are " "supplied to it. (Fixed by Alexander Belopolsky; :issue:`1533`.)" msgstr "" -#: whatsnew/2.7.rst:2445 +#: whatsnew/2.7.rst:2446 msgid "" "The string :meth:`format` method changed the default precision used for " "floating-point and complex numbers from 6 decimal places to 12, which " @@ -2882,7 +2882,7 @@ msgid "" "`5920`.)" msgstr "" -#: whatsnew/2.7.rst:2450 +#: whatsnew/2.7.rst:2451 msgid "" "Because of an optimization for the :keyword:`with` statement, the special " "methods :meth:`__enter__` and :meth:`__exit__` must belong to the object's " @@ -2891,7 +2891,7 @@ msgid "" "types. (:issue:`6101`.)" msgstr "" -#: whatsnew/2.7.rst:2456 +#: whatsnew/2.7.rst:2457 msgid "" "Due to a bug in Python 2.6, the *exc_value* parameter to :meth:`__exit__` " "methods was often the string representation of the exception, not an " @@ -2899,11 +2899,11 @@ msgid "" "expected. (Fixed by Florent Xicluna; :issue:`7853`.)" msgstr "" -#: whatsnew/2.7.rst:2466 +#: whatsnew/2.7.rst:2467 msgid "In the standard library:" msgstr "" -#: whatsnew/2.7.rst:2468 +#: whatsnew/2.7.rst:2469 msgid "" "Operations with :class:`~datetime.datetime` instances that resulted in a " "year falling outside the supported range didn't always raise :exc:" @@ -2912,7 +2912,7 @@ msgid "" "Alexander Belopolsky; :issue:`7150`.)" msgstr "" -#: whatsnew/2.7.rst:2474 +#: whatsnew/2.7.rst:2475 msgid "" "When using :class:`~decimal.Decimal` instances with a string's :meth:" "`format` method, the default alignment was previously left-alignment. This " @@ -2920,7 +2920,7 @@ msgid "" "programs. (Changed by Mark Dickinson; :issue:`6857`.)" msgstr "" -#: whatsnew/2.7.rst:2480 +#: whatsnew/2.7.rst:2481 msgid "" "Comparisons involving a signaling NaN value (or ``sNAN``) now signal :const:" "`~decimal.InvalidOperation` instead of silently returning a true or false " @@ -2928,36 +2928,36 @@ msgid "" "are now hashable. (Fixed by Mark Dickinson; :issue:`7279`.)" msgstr "" -#: whatsnew/2.7.rst:2492 +#: whatsnew/2.7.rst:2493 msgid "" "The :meth:`~StringIO.StringIO.readline` method of :class:`~StringIO." "StringIO` objects now does nothing when a negative length is requested, as " "other file-like objects do. (:issue:`7348`)." msgstr "" -#: whatsnew/2.7.rst:2535 +#: whatsnew/2.7.rst:2536 msgid "For C extensions:" msgstr "" -#: whatsnew/2.7.rst:2537 +#: whatsnew/2.7.rst:2538 msgid "" "C extensions that use integer format codes with the ``PyArg_Parse*`` family " "of functions will now raise a :exc:`TypeError` exception instead of " "triggering a :exc:`DeprecationWarning` (:issue:`5080`)." msgstr "" -#: whatsnew/2.7.rst:2541 +#: whatsnew/2.7.rst:2542 msgid "" "Use the new :c:func:`PyOS_string_to_double` function instead of the old :c:" "func:`!PyOS_ascii_strtod` and :c:func:`!PyOS_ascii_atof` functions, which " "are now deprecated." msgstr "" -#: whatsnew/2.7.rst:2545 +#: whatsnew/2.7.rst:2546 msgid "For applications that embed Python:" msgstr "" -#: whatsnew/2.7.rst:2547 +#: whatsnew/2.7.rst:2548 msgid "" "The :c:func:`PySys_SetArgvEx` function was added, letting applications close " "a security hole when the existing :c:func:`PySys_SetArgv` function was " @@ -2966,11 +2966,11 @@ msgid "" "with *updatepath* set to false." msgstr "" -#: whatsnew/2.7.rst:2560 +#: whatsnew/2.7.rst:2561 msgid "New Features Added to Python 2.7 Maintenance Releases" msgstr "" -#: whatsnew/2.7.rst:2562 +#: whatsnew/2.7.rst:2563 msgid "" "New features may be added to Python 2.7 maintenance releases when the " "situation genuinely calls for it. Any such additions must go through the " @@ -2979,25 +2979,25 @@ msgid "" "Python 3, or else by publishing it on the Python Package Index." msgstr "" -#: whatsnew/2.7.rst:2568 +#: whatsnew/2.7.rst:2569 msgid "" "In addition to the specific proposals listed below, there is a general " "exemption allowing new ``-3`` warnings to be added in any Python 2.7 " "maintenance release." msgstr "" -#: whatsnew/2.7.rst:2574 +#: whatsnew/2.7.rst:2575 msgid "Two new environment variables for debug mode" msgstr "" -#: whatsnew/2.7.rst:2576 +#: whatsnew/2.7.rst:2577 msgid "" "In debug mode, the ``[xxx refs]`` statistic is not written by default, the :" "envvar:`PYTHONSHOWREFCOUNT` environment variable now must also be set. " "(Contributed by Victor Stinner; :issue:`31733`.)" msgstr "" -#: whatsnew/2.7.rst:2580 +#: whatsnew/2.7.rst:2581 msgid "" "When Python is compiled with ``COUNT_ALLOC`` defined, allocation counts are " "no longer dumped by default anymore: the :envvar:`PYTHONSHOWALLOCCOUNT` " @@ -3006,11 +3006,11 @@ msgid "" "issue:`31692`.)" msgstr "" -#: whatsnew/2.7.rst:2589 +#: whatsnew/2.7.rst:2590 msgid "PEP 434: IDLE Enhancement Exception for All Branches" msgstr "" -#: whatsnew/2.7.rst:2591 +#: whatsnew/2.7.rst:2592 msgid "" ":pep:`434` describes a general exemption for changes made to the IDLE " "development environment shipped along with Python. This exemption makes it " @@ -3018,62 +3018,62 @@ msgid "" "experience across all supported versions of Python 2 and 3." msgstr "" -#: whatsnew/2.7.rst:2596 +#: whatsnew/2.7.rst:2597 msgid "" "For details of any IDLE changes, refer to the NEWS file for the specific " "release." msgstr "" -#: whatsnew/2.7.rst:2601 +#: whatsnew/2.7.rst:2602 msgid "PEP 466: Network Security Enhancements for Python 2.7" msgstr "" -#: whatsnew/2.7.rst:2603 +#: whatsnew/2.7.rst:2604 msgid "" ":pep:`466` describes a number of network security enhancement proposals that " "have been approved for inclusion in Python 2.7 maintenance releases, with " "the first of those changes appearing in the Python 2.7.7 release." msgstr "" -#: whatsnew/2.7.rst:2607 +#: whatsnew/2.7.rst:2608 msgid ":pep:`466` related features added in Python 2.7.7:" msgstr "" -#: whatsnew/2.7.rst:2609 +#: whatsnew/2.7.rst:2610 msgid "" ":func:`hmac.compare_digest` was backported from Python 3 to make a timing " "attack resistant comparison operation available to Python 2 applications. " "(Contributed by Alex Gaynor; :issue:`21306`.)" msgstr "" -#: whatsnew/2.7.rst:2613 +#: whatsnew/2.7.rst:2614 msgid "" "OpenSSL 1.0.1g was upgraded in the official Windows installers published on " "python.org. (Contributed by Zachary Ware; :issue:`21462`.)" msgstr "" -#: whatsnew/2.7.rst:2616 +#: whatsnew/2.7.rst:2617 msgid ":pep:`466` related features added in Python 2.7.8:" msgstr "" -#: whatsnew/2.7.rst:2618 +#: whatsnew/2.7.rst:2619 msgid "" ":func:`hashlib.pbkdf2_hmac` was backported from Python 3 to make a hashing " "algorithm suitable for secure password storage broadly available to Python 2 " "applications. (Contributed by Alex Gaynor; :issue:`21304`.)" msgstr "" -#: whatsnew/2.7.rst:2622 +#: whatsnew/2.7.rst:2623 msgid "" "OpenSSL 1.0.1h was upgraded for the official Windows installers published on " "python.org. (contributed by Zachary Ware in :issue:`21671` for CVE-2014-0224)" msgstr "" -#: whatsnew/2.7.rst:2625 +#: whatsnew/2.7.rst:2626 msgid ":pep:`466` related features added in Python 2.7.9:" msgstr "" -#: whatsnew/2.7.rst:2627 +#: whatsnew/2.7.rst:2628 msgid "" "Most of Python 3.4's :mod:`ssl` module was backported. This means :mod:`ssl` " "now supports Server Name Indication, TLS1.x settings, access to the platform " @@ -3081,20 +3081,20 @@ msgid "" "(Contributed by Alex Gaynor and David Reid; :issue:`21308`.)" msgstr "" -#: whatsnew/2.7.rst:2632 +#: whatsnew/2.7.rst:2633 msgid "" "Refer to the \"Version added: 2.7.9\" notes in the module documentation for " "specific details." msgstr "" -#: whatsnew/2.7.rst:2635 +#: whatsnew/2.7.rst:2636 msgid "" ":func:`os.urandom` was changed to cache a file descriptor to ``/dev/" "urandom`` instead of reopening ``/dev/urandom`` on every call. (Contributed " "by Alex Gaynor; :issue:`21305`.)" msgstr "" -#: whatsnew/2.7.rst:2639 +#: whatsnew/2.7.rst:2640 msgid "" ":data:`hashlib.algorithms_guaranteed` and :data:`hashlib." "algorithms_available` were backported from Python 3 to make it easier for " @@ -3102,22 +3102,22 @@ msgid "" "(Contributed by Alex Gaynor in :issue:`21307`)" msgstr "" -#: whatsnew/2.7.rst:2646 +#: whatsnew/2.7.rst:2647 msgid "PEP 477: Backport ensurepip (PEP 453) to Python 2.7" msgstr "" -#: whatsnew/2.7.rst:2648 +#: whatsnew/2.7.rst:2649 msgid "" ":pep:`477` approves the inclusion of the :pep:`453` ensurepip module and the " "improved documentation that was enabled by it in the Python 2.7 maintenance " "releases, appearing first in the Python 2.7.9 release." msgstr "" -#: whatsnew/2.7.rst:2654 +#: whatsnew/2.7.rst:2655 msgid "Bootstrapping pip By Default" msgstr "" -#: whatsnew/2.7.rst:2656 +#: whatsnew/2.7.rst:2657 msgid "" "The new :mod:`ensurepip` module (defined in :pep:`453`) provides a standard " "cross-platform mechanism to bootstrap the pip installer into Python " @@ -3127,14 +3127,14 @@ msgid "" "the release candidate." msgstr "" -#: whatsnew/2.7.rst:2663 +#: whatsnew/2.7.rst:2664 msgid "" "By default, the commands ``pip``, ``pipX`` and ``pipX.Y`` will be installed " "on all platforms (where X.Y stands for the version of the Python " "installation), along with the ``pip`` Python package and its dependencies." msgstr "" -#: whatsnew/2.7.rst:2667 +#: whatsnew/2.7.rst:2668 msgid "" "For CPython :ref:`source builds on POSIX systems `, " "the ``make install`` and ``make altinstall`` commands do not bootstrap " @@ -3142,7 +3142,7 @@ msgid "" "options, and overridden through Makefile options." msgstr "" -#: whatsnew/2.7.rst:2672 +#: whatsnew/2.7.rst:2673 msgid "" "On Windows and Mac OS X, the CPython installers now default to installing " "``pip`` along with CPython itself (users may opt out of installing it during " @@ -3152,7 +3152,7 @@ msgid "" "Windows as ``py -m pip``." msgstr "" -#: whatsnew/2.7.rst:2679 +#: whatsnew/2.7.rst:2680 msgid "" "As `discussed in the PEP`__, platform packagers may choose not to install " "these commands by default, as long as, when invoked, they provide clear and " @@ -3160,11 +3160,11 @@ msgid "" "system package manager)." msgstr "" -#: whatsnew/2.7.rst:2688 +#: whatsnew/2.7.rst:2689 msgid "Documentation Changes" msgstr "" -#: whatsnew/2.7.rst:2690 +#: whatsnew/2.7.rst:2691 msgid "" "As part of this change, the :ref:`installing-index` and :ref:`distributing-" "index` sections of the documentation have been completely redesigned as " @@ -3174,29 +3174,29 @@ msgid "" "of the individual projects." msgstr "" -#: whatsnew/2.7.rst:2698 +#: whatsnew/2.7.rst:2699 msgid "" "However, as this migration is currently still incomplete, the legacy " "versions of those guides remaining available as :ref:`install-index` and :" -"ref:`distutils-index`." +"ref:`setuptools-index`." msgstr "" -#: whatsnew/2.7.rst:2705 +#: whatsnew/2.7.rst:2706 msgid ":pep:`453` -- Explicit bootstrapping of pip in Python installations" msgstr "" -#: whatsnew/2.7.rst:2705 +#: whatsnew/2.7.rst:2706 msgid "" "PEP written by Donald Stufft and Nick Coghlan, implemented by Donald Stufft, " "Nick Coghlan, Martin von Löwis and Ned Deily." msgstr "" -#: whatsnew/2.7.rst:2709 +#: whatsnew/2.7.rst:2710 msgid "" "PEP 476: Enabling certificate verification by default for stdlib http clients" msgstr "" -#: whatsnew/2.7.rst:2711 +#: whatsnew/2.7.rst:2712 msgid "" ":pep:`476` updated :mod:`httplib` and modules which use it, such as :mod:" "`urllib2` and :mod:`xmlrpclib`, to now verify that the server presents a " @@ -3206,17 +3206,17 @@ msgid "" "in the Python 2.7.9 release." msgstr "" -#: whatsnew/2.7.rst:2718 +#: whatsnew/2.7.rst:2719 msgid "" "For applications which require the old previous behavior, they can pass an " "alternate context::" msgstr "" -#: whatsnew/2.7.rst:2735 +#: whatsnew/2.7.rst:2736 msgid "PEP 493: HTTPS verification migration tools for Python 2.7" msgstr "" -#: whatsnew/2.7.rst:2737 +#: whatsnew/2.7.rst:2738 msgid "" ":pep:`493` provides additional migration tools to support a more incremental " "infrastructure upgrade process for environments containing applications and " @@ -3225,14 +3225,14 @@ msgid "" "were made in the Python 2.7.12 release." msgstr "" -#: whatsnew/2.7.rst:2743 +#: whatsnew/2.7.rst:2744 msgid "" "These tools are intended for use in cases where affected applications and " "services can't be modified to explicitly pass a more permissive SSL context " "when establishing the connection." msgstr "" -#: whatsnew/2.7.rst:2747 +#: whatsnew/2.7.rst:2748 msgid "" "For applications and services which can't be modified at all, the new " "``PYTHONHTTPSVERIFY`` environment variable may be set to ``0`` to revert an " @@ -3240,18 +3240,18 @@ msgid "" "2.7.8 and earlier." msgstr "" -#: whatsnew/2.7.rst:2752 +#: whatsnew/2.7.rst:2753 msgid "" "For cases where the connection establishment code can't be modified, but the " "overall application can be, the new :func:`ssl._https_verify_certificates` " "function can be used to adjust the default behaviour at runtime." msgstr "" -#: whatsnew/2.7.rst:2758 +#: whatsnew/2.7.rst:2759 msgid "New ``make regen-all`` build target" msgstr "" -#: whatsnew/2.7.rst:2760 +#: whatsnew/2.7.rst:2761 msgid "" "To simplify cross-compilation, and to ensure that CPython can reliably be " "compiled without requiring an existing version of Python to already be " @@ -3259,43 +3259,43 @@ msgid "" "recompile generated files based on file modification times." msgstr "" -#: whatsnew/2.7.rst:2765 +#: whatsnew/2.7.rst:2766 msgid "" "Instead, a new ``make regen-all`` command has been added to force " "regeneration of these files when desired (e.g. after an initial version of " "Python has already been built based on the pregenerated versions)." msgstr "" -#: whatsnew/2.7.rst:2769 +#: whatsnew/2.7.rst:2770 msgid "" "More selective regeneration targets are also defined - see :source:`Makefile." "pre.in` for details." msgstr "" -#: whatsnew/2.7.rst:2785 +#: whatsnew/2.7.rst:2786 msgid "(Contributed by Victor Stinner in :issue:`23404`.)" msgstr "" -#: whatsnew/2.7.rst:2778 +#: whatsnew/2.7.rst:2779 msgid "Removal of ``make touch`` build target" msgstr "" -#: whatsnew/2.7.rst:2780 +#: whatsnew/2.7.rst:2781 msgid "" "The ``make touch`` build target previously used to request implicit " "regeneration of generated files by updating their modification times has " "been removed." msgstr "" -#: whatsnew/2.7.rst:2783 +#: whatsnew/2.7.rst:2784 msgid "It has been replaced by the new ``make regen-all`` target." msgstr "" -#: whatsnew/2.7.rst:2794 +#: whatsnew/2.7.rst:2795 msgid "Acknowledgements" msgstr "" -#: whatsnew/2.7.rst:2796 +#: whatsnew/2.7.rst:2797 msgid "" "The author would like to thank the following people for offering " "suggestions, corrections and assistance with various drafts of this article: " diff --git a/whatsnew/3.0.po b/whatsnew/3.0.po index 68fabeb27..9cd851a4b 100644 --- a/whatsnew/3.0.po +++ b/whatsnew/3.0.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1194,7 +1194,7 @@ msgid "" msgstr "" #: whatsnew/3.0.rst:843 -msgid "Removed :func:`reload`. Use :func:`imp.reload`." +msgid "Removed :func:`reload`. Use :func:`!imp.reload`." msgstr "" #: whatsnew/3.0.rst:845 diff --git a/whatsnew/3.10.po b/whatsnew/3.10.po index 0b10e6a2c..63cdcf94c 100644 --- a/whatsnew/3.10.po +++ b/whatsnew/3.10.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -122,7 +122,7 @@ msgstr "" msgid ":pep:`597`, Add optional EncodingWarning" msgstr "" -#: whatsnew/3.10.rst:2041 +#: whatsnew/3.10.rst:2042 msgid "New Features" msgstr "" @@ -636,17 +636,17 @@ msgid "" "variable::" msgstr "" -#: whatsnew/3.10.rst:679 +#: whatsnew/3.10.rst:680 msgid "" "For the full specification see :pep:`634`. Motivation and rationale are in :" "pep:`635`, and a longer tutorial is in :pep:`636`." msgstr "" -#: whatsnew/3.10.rst:686 +#: whatsnew/3.10.rst:687 msgid "Optional ``EncodingWarning`` and ``encoding=\"locale\"`` option" msgstr "" -#: whatsnew/3.10.rst:688 +#: whatsnew/3.10.rst:689 msgid "" "The default encoding of :class:`TextIOWrapper` and :func:`open` is platform " "and locale dependent. Since UTF-8 is used on most Unix platforms, omitting " @@ -654,81 +654,81 @@ msgid "" "Markdown) is a very common bug. For example::" msgstr "" -#: whatsnew/3.10.rst:697 +#: whatsnew/3.10.rst:698 msgid "" "To find this type of bug, an optional ``EncodingWarning`` is added. It is " "emitted when :data:`sys.flags.warn_default_encoding ` is true and " "locale-specific default encoding is used." msgstr "" -#: whatsnew/3.10.rst:701 +#: whatsnew/3.10.rst:702 msgid "" "``-X warn_default_encoding`` option and :envvar:`PYTHONWARNDEFAULTENCODING` " "are added to enable the warning." msgstr "" -#: whatsnew/3.10.rst:704 +#: whatsnew/3.10.rst:705 msgid "See :ref:`io-text-encoding` for more information." msgstr "" -#: whatsnew/3.10.rst:709 +#: whatsnew/3.10.rst:710 msgid "New Features Related to Type Hints" msgstr "" -#: whatsnew/3.10.rst:711 +#: whatsnew/3.10.rst:712 msgid "" "This section covers major changes affecting :pep:`484` type hints and the :" "mod:`typing` module." msgstr "" -#: whatsnew/3.10.rst:716 +#: whatsnew/3.10.rst:717 msgid "PEP 604: New Type Union Operator" msgstr "" -#: whatsnew/3.10.rst:718 +#: whatsnew/3.10.rst:719 msgid "" "A new type union operator was introduced which enables the syntax ``X | Y``. " "This provides a cleaner way of expressing 'either type X or type Y' instead " "of using :data:`typing.Union`, especially in type hints." msgstr "" -#: whatsnew/3.10.rst:722 +#: whatsnew/3.10.rst:723 msgid "" "In previous versions of Python, to apply a type hint for functions accepting " "arguments of multiple types, :data:`typing.Union` was used::" msgstr "" -#: whatsnew/3.10.rst:729 +#: whatsnew/3.10.rst:730 msgid "Type hints can now be written in a more succinct manner::" msgstr "" -#: whatsnew/3.10.rst:735 +#: whatsnew/3.10.rst:736 msgid "" "This new syntax is also accepted as the second argument to :func:" "`isinstance` and :func:`issubclass`::" msgstr "" -#: whatsnew/3.10.rst:741 +#: whatsnew/3.10.rst:742 msgid "See :ref:`types-union` and :pep:`604` for more details." msgstr "" -#: whatsnew/3.10.rst:743 +#: whatsnew/3.10.rst:744 msgid "" "(Contributed by Maggie Moss and Philippe Prados in :issue:`41428`, with " "additions by Yurii Karabas and Serhiy Storchaka in :issue:`44490`.)" msgstr "" -#: whatsnew/3.10.rst:748 +#: whatsnew/3.10.rst:749 msgid "PEP 612: Parameter Specification Variables" msgstr "" -#: whatsnew/3.10.rst:750 +#: whatsnew/3.10.rst:751 msgid "" "Two new options to improve the information provided to static type checkers " "for :pep:`484`\\ 's ``Callable`` have been added to the :mod:`typing` module." msgstr "" -#: whatsnew/3.10.rst:753 +#: whatsnew/3.10.rst:754 msgid "" "The first is the parameter specification variable. They are used to forward " "the parameter types of one callable to another callable -- a pattern " @@ -737,7 +737,7 @@ msgid "" "to type annotate dependency of parameter types in such a precise manner." msgstr "" -#: whatsnew/3.10.rst:759 +#: whatsnew/3.10.rst:760 msgid "" "The second option is the new ``Concatenate`` operator. It's used in " "conjunction with parameter specification variables to type annotate a higher " @@ -745,24 +745,24 @@ msgid "" "Examples of usage can be found in :class:`typing.Concatenate`." msgstr "" -#: whatsnew/3.10.rst:764 +#: whatsnew/3.10.rst:765 msgid "" "See :class:`typing.Callable`, :class:`typing.ParamSpec`, :class:`typing." "Concatenate`, :class:`typing.ParamSpecArgs`, :class:`typing." "ParamSpecKwargs`, and :pep:`612` for more details." msgstr "" -#: whatsnew/3.10.rst:768 +#: whatsnew/3.10.rst:769 msgid "" "(Contributed by Ken Jin in :issue:`41559`, with minor enhancements by Jelle " "Zijlstra in :issue:`43783`. PEP written by Mark Mendoza.)" msgstr "" -#: whatsnew/3.10.rst:773 +#: whatsnew/3.10.rst:774 msgid "PEP 613: TypeAlias" msgstr "" -#: whatsnew/3.10.rst:775 +#: whatsnew/3.10.rst:776 msgid "" ":pep:`484` introduced the concept of type aliases, only requiring them to be " "top-level unannotated assignments. This simplicity sometimes made it " @@ -771,25 +771,25 @@ msgid "" "involved. Compare::" msgstr "" -#: whatsnew/3.10.rst:783 +#: whatsnew/3.10.rst:784 msgid "" "Now the :mod:`typing` module has a special value :data:`TypeAlias` which " "lets you declare type aliases more explicitly::" msgstr "" -#: whatsnew/3.10.rst:789 +#: whatsnew/3.10.rst:790 msgid "See :pep:`613` for more details." msgstr "" -#: whatsnew/3.10.rst:791 +#: whatsnew/3.10.rst:792 msgid "(Contributed by Mikhail Golubev in :issue:`41923`.)" msgstr "" -#: whatsnew/3.10.rst:794 +#: whatsnew/3.10.rst:795 msgid "PEP 647: User-Defined Type Guards" msgstr "" -#: whatsnew/3.10.rst:796 +#: whatsnew/3.10.rst:797 msgid "" ":data:`TypeGuard` has been added to the :mod:`typing` module to annotate " "type guard functions and improve information provided to static type " @@ -797,24 +797,24 @@ msgid "" "`TypeGuard`\\ 's documentation, and :pep:`647`." msgstr "" -#: whatsnew/3.10.rst:801 +#: whatsnew/3.10.rst:802 msgid "" "(Contributed by Ken Jin and Guido van Rossum in :issue:`43766`. PEP written " "by Eric Traut.)" msgstr "" -#: whatsnew/3.10.rst:805 +#: whatsnew/3.10.rst:806 msgid "Other Language Changes" msgstr "" -#: whatsnew/3.10.rst:807 +#: whatsnew/3.10.rst:808 msgid "" "The :class:`int` type has a new method :meth:`int.bit_count`, returning the " "number of ones in the binary expansion of a given integer, also known as the " "population count. (Contributed by Niklas Fiekas in :issue:`29882`.)" msgstr "" -#: whatsnew/3.10.rst:811 +#: whatsnew/3.10.rst:812 msgid "" "The views returned by :meth:`dict.keys`, :meth:`dict.values` and :meth:`dict." "items` now all have a ``mapping`` attribute that gives a :class:`types." @@ -822,13 +822,13 @@ msgid "" "Dennis Sweeney in :issue:`40890`.)" msgstr "" -#: whatsnew/3.10.rst:816 +#: whatsnew/3.10.rst:817 msgid "" ":pep:`618`: The :func:`zip` function now has an optional ``strict`` flag, " "used to require that all the iterables have an equal length." msgstr "" -#: whatsnew/3.10.rst:819 +#: whatsnew/3.10.rst:820 msgid "" "Builtin and extension functions that take integer arguments no longer " "accept :class:`~decimal.Decimal`\\ s, :class:`~fractions.Fraction`\\ s and " @@ -837,20 +837,20 @@ msgid "" "__index__` method). (Contributed by Serhiy Storchaka in :issue:`37999`.)" msgstr "" -#: whatsnew/3.10.rst:826 +#: whatsnew/3.10.rst:827 msgid "" "If :func:`object.__ipow__` returns :const:`NotImplemented`, the operator " "will correctly fall back to :func:`object.__pow__` and :func:`object." "__rpow__` as expected. (Contributed by Alex Shkop in :issue:`38302`.)" msgstr "" -#: whatsnew/3.10.rst:830 +#: whatsnew/3.10.rst:831 msgid "" "Assignment expressions can now be used unparenthesized within set literals " "and set comprehensions, as well as in sequence indexes (but not slices)." msgstr "" -#: whatsnew/3.10.rst:833 +#: whatsnew/3.10.rst:834 msgid "" "Functions have a new ``__builtins__`` attribute which is used to look for " "builtin symbols when a function is executed, instead of looking into " @@ -859,7 +859,7 @@ msgid "" "builtins. (Contributed by Mark Shannon in :issue:`42990`.)" msgstr "" -#: whatsnew/3.10.rst:839 +#: whatsnew/3.10.rst:840 msgid "" "Two new builtin functions -- :func:`aiter` and :func:`anext` have been added " "to provide asynchronous counterparts to :func:`iter` and :func:`next`, " @@ -867,7 +867,7 @@ msgid "" "in :issue:`31861`.)" msgstr "" -#: whatsnew/3.10.rst:844 +#: whatsnew/3.10.rst:845 msgid "" "Static methods (:func:`@staticmethod `) and class methods (:" "func:`@classmethod `) now inherit the method attributes " @@ -877,7 +877,7 @@ msgid "" "Stinner in :issue:`43682`.)" msgstr "" -#: whatsnew/3.10.rst:851 +#: whatsnew/3.10.rst:852 msgid "" "Annotations for complex targets (everything beside ``simple name`` targets " "defined by :pep:`526`) no longer cause any runtime effects with ``from " @@ -885,7 +885,7 @@ msgid "" "`42737`.)" msgstr "" -#: whatsnew/3.10.rst:855 +#: whatsnew/3.10.rst:856 msgid "" "Class and module objects now lazy-create empty annotations dicts on demand. " "The annotations dicts are stored in the object’s ``__dict__`` for backwards " @@ -894,7 +894,7 @@ msgid "" "howto`. (Contributed by Larry Hastings in :issue:`43901`.)" msgstr "" -#: whatsnew/3.10.rst:862 +#: whatsnew/3.10.rst:863 msgid "" "Annotations consist of ``yield``, ``yield from``, ``await`` or named " "expressions are now forbidden under ``from __future__ import annotations`` " @@ -902,7 +902,7 @@ msgid "" "`42725`.)" msgstr "" -#: whatsnew/3.10.rst:867 +#: whatsnew/3.10.rst:868 msgid "" "Usage of unbound variables, ``super()`` and other expressions that might " "alter the processing of symbol table as annotations are now rendered " @@ -910,7 +910,7 @@ msgid "" "Batuhan Taskaya in :issue:`42725`.)" msgstr "" -#: whatsnew/3.10.rst:872 +#: whatsnew/3.10.rst:873 msgid "" "Hashes of NaN values of both :class:`float` type and :class:`decimal." "Decimal` type now depend on object identity. Formerly, they always hashed to " @@ -920,121 +920,121 @@ msgid "" "Raymond Hettinger in :issue:`43475`.)" msgstr "" -#: whatsnew/3.10.rst:879 +#: whatsnew/3.10.rst:880 msgid "" "A :exc:`SyntaxError` (instead of a :exc:`NameError`) will be raised when " "deleting the :const:`__debug__` constant. (Contributed by Dong-hee Na in :" "issue:`45000`.)" msgstr "" -#: whatsnew/3.10.rst:882 +#: whatsnew/3.10.rst:883 msgid "" ":exc:`SyntaxError` exceptions now have ``end_lineno`` and ``end_offset`` " "attributes. They will be ``None`` if not determined. (Contributed by Pablo " "Galindo in :issue:`43914`.)" msgstr "" -#: whatsnew/3.10.rst:887 +#: whatsnew/3.10.rst:888 msgid "New Modules" msgstr "" -#: whatsnew/3.10.rst:889 +#: whatsnew/3.10.rst:890 msgid "None." msgstr "" -#: whatsnew/3.10.rst:893 +#: whatsnew/3.10.rst:894 msgid "Improved Modules" msgstr "" -#: whatsnew/3.10.rst:896 +#: whatsnew/3.10.rst:897 msgid "asyncio" msgstr "" -#: whatsnew/3.10.rst:898 +#: whatsnew/3.10.rst:899 msgid "" "Add missing :meth:`~asyncio.events.AbstractEventLoop." "connect_accepted_socket` method. (Contributed by Alex Grönholm in :issue:" "`41332`.)" msgstr "" -#: whatsnew/3.10.rst:903 +#: whatsnew/3.10.rst:904 msgid "argparse" msgstr "" -#: whatsnew/3.10.rst:905 +#: whatsnew/3.10.rst:906 msgid "" "Misleading phrase \"optional arguments\" was replaced with \"options\" in " "argparse help. Some tests might require adaptation if they rely on exact " "output match. (Contributed by Raymond Hettinger in :issue:`9694`.)" msgstr "" -#: whatsnew/3.10.rst:909 +#: whatsnew/3.10.rst:910 msgid "array" msgstr "" -#: whatsnew/3.10.rst:911 +#: whatsnew/3.10.rst:912 msgid "" "The :meth:`~array.array.index` method of :class:`array.array` now has " "optional *start* and *stop* parameters. (Contributed by Anders Lorentsen and " "Zackery Spytz in :issue:`31956`.)" msgstr "" -#: whatsnew/3.10.rst:916 +#: whatsnew/3.10.rst:917 msgid "asynchat, asyncore, smtpd" msgstr "" -#: whatsnew/3.10.rst:917 +#: whatsnew/3.10.rst:918 msgid "" "These modules have been marked as deprecated in their module documentation " "since Python 3.6. An import-time :class:`DeprecationWarning` has now been " "added to all three of these modules." msgstr "" -#: whatsnew/3.10.rst:922 +#: whatsnew/3.10.rst:923 msgid "base64" msgstr "" -#: whatsnew/3.10.rst:924 +#: whatsnew/3.10.rst:925 msgid "" "Add :func:`base64.b32hexencode` and :func:`base64.b32hexdecode` to support " "the Base32 Encoding with Extended Hex Alphabet." msgstr "" -#: whatsnew/3.10.rst:928 +#: whatsnew/3.10.rst:929 msgid "bdb" msgstr "" -#: whatsnew/3.10.rst:930 +#: whatsnew/3.10.rst:931 msgid "" "Add :meth:`~bdb.Breakpoint.clearBreakpoints` to reset all set breakpoints. " "(Contributed by Irit Katriel in :issue:`24160`.)" msgstr "" -#: whatsnew/3.10.rst:934 +#: whatsnew/3.10.rst:935 msgid "bisect" msgstr "" -#: whatsnew/3.10.rst:936 +#: whatsnew/3.10.rst:937 msgid "" "Added the possibility of providing a *key* function to the APIs in the :mod:" "`bisect` module. (Contributed by Raymond Hettinger in :issue:`4356`.)" msgstr "" -#: whatsnew/3.10.rst:940 +#: whatsnew/3.10.rst:941 msgid "codecs" msgstr "" -#: whatsnew/3.10.rst:942 +#: whatsnew/3.10.rst:943 msgid "" "Add a :func:`codecs.unregister` function to unregister a codec search " "function. (Contributed by Hai Shi in :issue:`41842`.)" msgstr "" -#: whatsnew/3.10.rst:946 +#: whatsnew/3.10.rst:947 msgid "collections.abc" msgstr "" -#: whatsnew/3.10.rst:948 +#: whatsnew/3.10.rst:949 msgid "" "The ``__args__`` of the :ref:`parameterized generic ` " "for :class:`collections.abc.Callable` are now consistent with :data:`typing." @@ -1050,34 +1050,34 @@ msgid "" "`42195`.)" msgstr "" -#: whatsnew/3.10.rst:961 +#: whatsnew/3.10.rst:962 msgid "contextlib" msgstr "" -#: whatsnew/3.10.rst:963 +#: whatsnew/3.10.rst:964 msgid "" "Add a :func:`contextlib.aclosing` context manager to safely close async " "generators and objects representing asynchronously released resources. " "(Contributed by Joongi Kim and John Belmonte in :issue:`41229`.)" msgstr "" -#: whatsnew/3.10.rst:967 +#: whatsnew/3.10.rst:968 msgid "" "Add asynchronous context manager support to :func:`contextlib.nullcontext`. " "(Contributed by Tom Gringauz in :issue:`41543`.)" msgstr "" -#: whatsnew/3.10.rst:970 +#: whatsnew/3.10.rst:971 msgid "" "Add :class:`AsyncContextDecorator`, for supporting usage of async context " "managers as decorators." msgstr "" -#: whatsnew/3.10.rst:974 +#: whatsnew/3.10.rst:975 msgid "curses" msgstr "" -#: whatsnew/3.10.rst:976 +#: whatsnew/3.10.rst:977 msgid "" "The extended color functions added in ncurses 6.1 will be used transparently " "by :func:`curses.color_content`, :func:`curses.init_color`, :func:`curses." @@ -1087,53 +1087,53 @@ msgid "" "Kintscher and Hans Petter Jansson in :issue:`36982`.)" msgstr "" -#: whatsnew/3.10.rst:983 +#: whatsnew/3.10.rst:984 msgid "" "The ``BUTTON5_*`` constants are now exposed in the :mod:`curses` module if " "they are provided by the underlying curses library. (Contributed by Zackery " "Spytz in :issue:`39273`.)" msgstr "" -#: whatsnew/3.10.rst:988 +#: whatsnew/3.10.rst:989 msgid "dataclasses" msgstr "" -#: whatsnew/3.10.rst:991 +#: whatsnew/3.10.rst:992 msgid "__slots__" msgstr "" -#: whatsnew/3.10.rst:993 +#: whatsnew/3.10.rst:994 msgid "" "Added ``slots`` parameter in :func:`dataclasses.dataclass` decorator. " "(Contributed by Yurii Karabas in :issue:`42269`)" msgstr "" -#: whatsnew/3.10.rst:997 +#: whatsnew/3.10.rst:998 msgid "Keyword-only fields" msgstr "" -#: whatsnew/3.10.rst:999 +#: whatsnew/3.10.rst:1000 msgid "" "dataclasses now supports fields that are keyword-only in the generated " "__init__ method. There are a number of ways of specifying keyword-only " "fields." msgstr "" -#: whatsnew/3.10.rst:1003 +#: whatsnew/3.10.rst:1004 msgid "You can say that every field is keyword-only:" msgstr "" -#: whatsnew/3.10.rst:1014 +#: whatsnew/3.10.rst:1015 msgid "" "Both ``name`` and ``birthday`` are keyword-only parameters to the generated " "__init__ method." msgstr "" -#: whatsnew/3.10.rst:1017 +#: whatsnew/3.10.rst:1018 msgid "You can specify keyword-only on a per-field basis:" msgstr "" -#: whatsnew/3.10.rst:1028 +#: whatsnew/3.10.rst:1029 msgid "" "Here only ``birthday`` is keyword-only. If you set ``kw_only`` on " "individual fields, be aware that there are rules about re-ordering fields " @@ -1141,23 +1141,23 @@ msgid "" "the full dataclasses documentation for details." msgstr "" -#: whatsnew/3.10.rst:1033 +#: whatsnew/3.10.rst:1034 msgid "" "You can also specify that all fields following a KW_ONLY marker are keyword-" "only. This will probably be the most common usage:" msgstr "" -#: whatsnew/3.10.rst:1048 +#: whatsnew/3.10.rst:1049 msgid "" "Here, ``z`` and ``t`` are keyword-only parameters, while ``x`` and ``y`` are " "not. (Contributed by Eric V. Smith in :issue:`43532`.)" msgstr "" -#: whatsnew/3.10.rst:1055 +#: whatsnew/3.10.rst:1056 msgid "distutils" msgstr "" -#: whatsnew/3.10.rst:1057 +#: whatsnew/3.10.rst:1058 msgid "" "The entire ``distutils`` package is deprecated, to be removed in Python " "3.12. Its functionality for specifying package builds has already been " @@ -1170,38 +1170,38 @@ msgid "" "`632` for discussion." msgstr "" -#: whatsnew/3.10.rst:1067 +#: whatsnew/3.10.rst:1068 msgid "" "The ``bdist_wininst`` command deprecated in Python 3.8 has been removed. The " "``bdist_wheel`` command is now recommended to distribute binary packages on " "Windows. (Contributed by Victor Stinner in :issue:`42802`.)" msgstr "" -#: whatsnew/3.10.rst:1073 +#: whatsnew/3.10.rst:1074 msgid "doctest" msgstr "" -#: whatsnew/3.10.rst:1210 whatsnew/3.10.rst:1336 +#: whatsnew/3.10.rst:1211 whatsnew/3.10.rst:1337 msgid "" "When a module does not define ``__loader__``, fall back to ``__spec__." "loader``. (Contributed by Brett Cannon in :issue:`42133`.)" msgstr "" -#: whatsnew/3.10.rst:1079 +#: whatsnew/3.10.rst:1080 msgid "encodings" msgstr "" -#: whatsnew/3.10.rst:1081 +#: whatsnew/3.10.rst:1082 msgid "" ":func:`encodings.normalize_encoding` now ignores non-ASCII characters. " "(Contributed by Hai Shi in :issue:`39337`.)" msgstr "" -#: whatsnew/3.10.rst:1085 +#: whatsnew/3.10.rst:1086 msgid "enum" msgstr "" -#: whatsnew/3.10.rst:1087 +#: whatsnew/3.10.rst:1088 msgid "" ":class:`Enum` :func:`__repr__` now returns ``enum_name.member_name`` and :" "func:`__str__` now returns ``member_name``. Stdlib enums available as " @@ -1209,106 +1209,106 @@ msgid "" "(Contributed by Ethan Furman in :issue:`40066`.)" msgstr "" -#: whatsnew/3.10.rst:1092 +#: whatsnew/3.10.rst:1093 msgid "" "Add :class:`enum.StrEnum` for enums where all members are strings. " "(Contributed by Ethan Furman in :issue:`41816`.)" msgstr "" -#: whatsnew/3.10.rst:1096 +#: whatsnew/3.10.rst:1097 msgid "fileinput" msgstr "" -#: whatsnew/3.10.rst:1098 +#: whatsnew/3.10.rst:1099 msgid "" "Add *encoding* and *errors* parameters in :func:`fileinput.input` and :class:" "`fileinput.FileInput`. (Contributed by Inada Naoki in :issue:`43712`.)" msgstr "" -#: whatsnew/3.10.rst:1102 +#: whatsnew/3.10.rst:1103 msgid "" ":func:`fileinput.hook_compressed` now returns :class:`TextIOWrapper` object " "when *mode* is \"r\" and file is compressed, like uncompressed files. " "(Contributed by Inada Naoki in :issue:`5758`.)" msgstr "" -#: whatsnew/3.10.rst:1107 +#: whatsnew/3.10.rst:1108 msgid "faulthandler" msgstr "" -#: whatsnew/3.10.rst:1109 +#: whatsnew/3.10.rst:1110 msgid "" "The :mod:`faulthandler` module now detects if a fatal error occurs during a " "garbage collector collection. (Contributed by Victor Stinner in :issue:" "`44466`.)" msgstr "" -#: whatsnew/3.10.rst:1114 +#: whatsnew/3.10.rst:1115 msgid "gc" msgstr "" -#: whatsnew/3.10.rst:1116 +#: whatsnew/3.10.rst:1117 msgid "" "Add audit hooks for :func:`gc.get_objects`, :func:`gc.get_referrers` and :" "func:`gc.get_referents`. (Contributed by Pablo Galindo in :issue:`43439`.)" msgstr "" -#: whatsnew/3.10.rst:1120 +#: whatsnew/3.10.rst:1121 msgid "glob" msgstr "" -#: whatsnew/3.10.rst:1122 +#: whatsnew/3.10.rst:1123 msgid "" "Add the *root_dir* and *dir_fd* parameters in :func:`~glob.glob` and :func:" "`~glob.iglob` which allow to specify the root directory for searching. " "(Contributed by Serhiy Storchaka in :issue:`38144`.)" msgstr "" -#: whatsnew/3.10.rst:1127 +#: whatsnew/3.10.rst:1128 msgid "hashlib" msgstr "" -#: whatsnew/3.10.rst:1129 +#: whatsnew/3.10.rst:1130 msgid "" "The hashlib module requires OpenSSL 1.1.1 or newer. (Contributed by " "Christian Heimes in :pep:`644` and :issue:`43669`.)" msgstr "" -#: whatsnew/3.10.rst:1132 +#: whatsnew/3.10.rst:1133 msgid "" "The hashlib module has preliminary support for OpenSSL 3.0.0. (Contributed " "by Christian Heimes in :issue:`38820` and other issues.)" msgstr "" -#: whatsnew/3.10.rst:1135 +#: whatsnew/3.10.rst:1136 msgid "" "The pure-Python fallback of :func:`~hashlib.pbkdf2_hmac` is deprecated. In " "the future PBKDF2-HMAC will only be available when Python has been built " "with OpenSSL support. (Contributed by Christian Heimes in :issue:`43880`.)" msgstr "" -#: whatsnew/3.10.rst:1141 +#: whatsnew/3.10.rst:1142 msgid "hmac" msgstr "" -#: whatsnew/3.10.rst:1143 +#: whatsnew/3.10.rst:1144 msgid "" "The hmac module now uses OpenSSL's HMAC implementation internally. " "(Contributed by Christian Heimes in :issue:`40645`.)" msgstr "" -#: whatsnew/3.10.rst:1147 +#: whatsnew/3.10.rst:1148 msgid "IDLE and idlelib" msgstr "" -#: whatsnew/3.10.rst:1149 +#: whatsnew/3.10.rst:1150 msgid "" "Make IDLE invoke :func:`sys.excepthook` (when started without '-n'). User " "hooks were previously ignored. (Contributed by Ken Hilton in :issue:" "`43008`.)" msgstr "" -#: whatsnew/3.10.rst:1153 +#: whatsnew/3.10.rst:1154 msgid "" "Rearrange the settings dialog. Split the General tab into Windows and Shell/" "Ed tabs. Move help sources, which extend the Help menu, to the Extensions " @@ -1319,11 +1319,11 @@ msgid "" "`33962`.)" msgstr "" -#: whatsnew/3.10.rst:1161 +#: whatsnew/3.10.rst:1162 msgid "The changes above were backported to a 3.9 maintenance release." msgstr "" -#: whatsnew/3.10.rst:1163 +#: whatsnew/3.10.rst:1164 msgid "" "Add a Shell sidebar. Move the primary prompt ('>>>') to the sidebar. Add " "secondary prompts ('...') to the sidebar. Left click and optional drag " @@ -1334,7 +1334,7 @@ msgid "" "text. (Contributed by Tal Einat in :issue:`37903`.)" msgstr "" -#: whatsnew/3.10.rst:1172 +#: whatsnew/3.10.rst:1173 msgid "" "Use spaces instead of tabs to indent interactive code. This makes " "interactive code entries 'look right'. Making this feasible was a major " @@ -1342,7 +1342,7 @@ msgid "" "in :issue:`37892`.)" msgstr "" -#: whatsnew/3.10.rst:1177 +#: whatsnew/3.10.rst:1178 msgid "" "Highlight the new :ref:`soft keywords ` :keyword:`match`, :" "keyword:`case `, and :keyword:`_ ` in pattern-" @@ -1351,33 +1351,33 @@ msgid "" "(Contributed by Tal Einat in :issue:`44010`.)" msgstr "" -#: whatsnew/3.10.rst:1183 +#: whatsnew/3.10.rst:1184 msgid "New in 3.10 maintenance releases." msgstr "" -#: whatsnew/3.10.rst:1185 +#: whatsnew/3.10.rst:1186 msgid "" "Apply syntax highlighting to ``.pyi`` files. (Contributed by Alex Waygood " "and Terry Jan Reedy in :issue:`45447`.)" msgstr "" -#: whatsnew/3.10.rst:1188 +#: whatsnew/3.10.rst:1189 msgid "" "Include prompts when saving Shell with inputs and outputs. (Contributed by " "Terry Jan Reedy in :gh:`95191`.)" msgstr "" -#: whatsnew/3.10.rst:1192 +#: whatsnew/3.10.rst:1193 msgid "importlib.metadata" msgstr "" -#: whatsnew/3.10.rst:1194 +#: whatsnew/3.10.rst:1195 msgid "" "Feature parity with ``importlib_metadata`` 4.6 (`history `_)." msgstr "" -#: whatsnew/3.10.rst:1197 +#: whatsnew/3.10.rst:1198 msgid "" ":ref:`importlib.metadata entry points ` now provide a nicer " "experience for selecting entry points by group and name through a new :class:" @@ -1385,18 +1385,18 @@ msgid "" "docs for more info on the deprecation and usage." msgstr "" -#: whatsnew/3.10.rst:1203 +#: whatsnew/3.10.rst:1204 msgid "" "Added :func:`importlib.metadata.packages_distributions` for resolving top-" "level Python modules and packages to their :class:`importlib.metadata." "Distribution`." msgstr "" -#: whatsnew/3.10.rst:1208 +#: whatsnew/3.10.rst:1209 msgid "inspect" msgstr "" -#: whatsnew/3.10.rst:1213 +#: whatsnew/3.10.rst:1214 msgid "" "Add :func:`inspect.get_annotations`, which safely computes the annotations " "defined on an object. It works around the quirks of accessing the " @@ -1414,38 +1414,38 @@ msgid "" "`43817`.)" msgstr "" -#: whatsnew/3.10.rst:1229 +#: whatsnew/3.10.rst:1230 msgid "itertools" msgstr "" -#: whatsnew/3.10.rst:1231 +#: whatsnew/3.10.rst:1232 msgid "" "Add :func:`itertools.pairwise()`. (Contributed by Raymond Hettinger in :" "issue:`38200`.)" msgstr "" -#: whatsnew/3.10.rst:1235 +#: whatsnew/3.10.rst:1236 msgid "linecache" msgstr "" -#: whatsnew/3.10.rst:1241 +#: whatsnew/3.10.rst:1242 msgid "os" msgstr "" -#: whatsnew/3.10.rst:1243 +#: whatsnew/3.10.rst:1244 msgid "" "Add :func:`os.cpu_count()` support for VxWorks RTOS. (Contributed by Peixing " "Xin in :issue:`41440`.)" msgstr "" -#: whatsnew/3.10.rst:1246 +#: whatsnew/3.10.rst:1247 msgid "" "Add a new function :func:`os.eventfd` and related helpers to wrap the " "``eventfd2`` syscall on Linux. (Contributed by Christian Heimes in :issue:" "`41001`.)" msgstr "" -#: whatsnew/3.10.rst:1250 +#: whatsnew/3.10.rst:1251 msgid "" "Add :func:`os.splice()` that allows to move data between two file " "descriptors without copying between kernel address space and user address " @@ -1453,41 +1453,41 @@ msgid "" "by Pablo Galindo in :issue:`41625`.)" msgstr "" -#: whatsnew/3.10.rst:1255 +#: whatsnew/3.10.rst:1256 msgid "" "Add :const:`~os.O_EVTONLY`, :const:`~os.O_FSYNC`, :const:`~os.O_SYMLINK` " "and :const:`~os.O_NOFOLLOW_ANY` for macOS. (Contributed by Dong-hee Na in :" "issue:`43106`.)" msgstr "" -#: whatsnew/3.10.rst:1260 +#: whatsnew/3.10.rst:1261 msgid "os.path" msgstr "" -#: whatsnew/3.10.rst:1262 +#: whatsnew/3.10.rst:1263 msgid "" ":func:`os.path.realpath` now accepts a *strict* keyword-only argument. When " "set to ``True``, :exc:`OSError` is raised if a path doesn't exist or a " "symlink loop is encountered. (Contributed by Barney Gale in :issue:`43757`.)" msgstr "" -#: whatsnew/3.10.rst:1268 +#: whatsnew/3.10.rst:1269 msgid "pathlib" msgstr "" -#: whatsnew/3.10.rst:1270 +#: whatsnew/3.10.rst:1271 msgid "" "Add slice support to :attr:`PurePath.parents `. " "(Contributed by Joshua Cannon in :issue:`35498`.)" msgstr "" -#: whatsnew/3.10.rst:1273 +#: whatsnew/3.10.rst:1274 msgid "" "Add negative indexing support to :attr:`PurePath.parents `. (Contributed by Yaroslav Pankovych in :issue:`21041`.)" msgstr "" -#: whatsnew/3.10.rst:1277 +#: whatsnew/3.10.rst:1278 msgid "" "Add :meth:`Path.hardlink_to ` method that " "supersedes :meth:`~pathlib.Path.link_to`. The new method has the same " @@ -1495,7 +1495,7 @@ msgid "" "Gale in :issue:`39950`.)" msgstr "" -#: whatsnew/3.10.rst:1282 +#: whatsnew/3.10.rst:1283 msgid "" ":meth:`pathlib.Path.stat` and :meth:`~pathlib.Path.chmod` now accept a " "*follow_symlinks* keyword-only argument for consistency with corresponding " @@ -1503,11 +1503,11 @@ msgid "" "`39906`.)" msgstr "" -#: whatsnew/3.10.rst:1288 +#: whatsnew/3.10.rst:1289 msgid "platform" msgstr "" -#: whatsnew/3.10.rst:1290 +#: whatsnew/3.10.rst:1291 msgid "" "Add :func:`platform.freedesktop_os_release()` to retrieve operation system " "identification from `freedesktop.org os-release ` section for " "more information." msgstr "" -#: whatsnew/3.10.rst:1628 +#: whatsnew/3.10.rst:1629 msgid "" "Non-integer arguments to :func:`random.randrange` are deprecated. The :exc:" "`ValueError` is deprecated in favor of a :exc:`TypeError`. (Contributed by " "Serhiy Storchaka and Raymond Hettinger in :issue:`37319`.)" msgstr "" -#: whatsnew/3.10.rst:1632 +#: whatsnew/3.10.rst:1633 msgid "" "The various ``load_module()`` methods of :mod:`importlib` have been " "documented as deprecated since Python 3.6, but will now also trigger a :exc:" @@ -2023,91 +2022,91 @@ msgid "" "(Contributed by Brett Cannon in :issue:`26131`.)" msgstr "" -#: whatsnew/3.10.rst:1638 +#: whatsnew/3.10.rst:1639 msgid "" ":meth:`zimport.zipimporter.load_module` has been deprecated in preference " "for :meth:`~zipimport.zipimporter.exec_module`. (Contributed by Brett Cannon " "in :issue:`26131`.)" msgstr "" -#: whatsnew/3.10.rst:1642 +#: whatsnew/3.10.rst:1643 msgid "" "The use of :meth:`~importlib.abc.Loader.load_module` by the import system " "now triggers an :exc:`ImportWarning` as :meth:`~importlib.abc.Loader." "exec_module` is preferred. (Contributed by Brett Cannon in :issue:`26131`.)" msgstr "" -#: whatsnew/3.10.rst:1647 +#: whatsnew/3.10.rst:1648 msgid "" -"The use of :meth:`importlib.abc.MetaPathFinder.find_module` and :meth:" -"`importlib.abc.PathEntryFinder.find_module` by the import system now trigger " +"The use of :meth:`!importlib.abc.MetaPathFinder.find_module` and :meth:`!" +"importlib.abc.PathEntryFinder.find_module` by the import system now trigger " "an :exc:`ImportWarning` as :meth:`importlib.abc.MetaPathFinder.find_spec` " "and :meth:`importlib.abc.PathEntryFinder.find_spec` are preferred, " "respectively. You can use :func:`importlib.util.spec_from_loader` to help in " "porting. (Contributed by Brett Cannon in :issue:`42134`.)" msgstr "" -#: whatsnew/3.10.rst:1656 +#: whatsnew/3.10.rst:1657 msgid "" -"The use of :meth:`importlib.abc.PathEntryFinder.find_loader` by the import " +"The use of :meth:`!importlib.abc.PathEntryFinder.find_loader` by the import " "system now triggers an :exc:`ImportWarning` as :meth:`importlib.abc." "PathEntryFinder.find_spec` is preferred. You can use :func:`importlib.util." "spec_from_loader` to help in porting. (Contributed by Brett Cannon in :issue:" "`43672`.)" msgstr "" -#: whatsnew/3.10.rst:1662 +#: whatsnew/3.10.rst:1663 msgid "" -"The various implementations of :meth:`importlib.abc.MetaPathFinder." -"find_module` ( :meth:`importlib.machinery.BuiltinImporter.find_module`, :" -"meth:`importlib.machinery.FrozenImporter.find_module`, :meth:`importlib." -"machinery.WindowsRegistryFinder.find_module`, :meth:`importlib.machinery." -"PathFinder.find_module`, :meth:`importlib.abc.MetaPathFinder." -"find_module` ), :meth:`importlib.abc.PathEntryFinder.find_module` ( :meth:" -"`importlib.machinery.FileFinder.find_module` ), and :meth:`importlib.abc." -"PathEntryFinder.find_loader` ( :meth:`importlib.machinery.FileFinder." +"The various implementations of :meth:`!importlib.abc.MetaPathFinder." +"find_module` ( :meth:`!importlib.machinery.BuiltinImporter.find_module`, :" +"meth:`!importlib.machinery.FrozenImporter.find_module`, :meth:`!importlib." +"machinery.WindowsRegistryFinder.find_module`, :meth:`!importlib.machinery." +"PathFinder.find_module`, :meth:`!importlib.abc.MetaPathFinder." +"find_module` ), :meth:`!importlib.abc.PathEntryFinder.find_module` ( :meth:`!" +"importlib.machinery.FileFinder.find_module` ), and :meth:`!importlib.abc." +"PathEntryFinder.find_loader` ( :meth:`!importlib.machinery.FileFinder." "find_loader` ) now raise :exc:`DeprecationWarning` and are slated for " "removal in Python 3.12 (previously they were documented as deprecated in " "Python 3.4). (Contributed by Brett Cannon in :issue:`42135`.)" msgstr "" -#: whatsnew/3.10.rst:1677 +#: whatsnew/3.10.rst:1678 msgid "" -":class:`importlib.abc.Finder` is deprecated (including its sole method, :" -"meth:`~importlib.abc.Finder.find_module`). Both :class:`importlib.abc." -"MetaPathFinder` and :class:`importlib.abc.PathEntryFinder` no longer inherit " -"from the class. Users should inherit from one of these two classes as " -"appropriate instead. (Contributed by Brett Cannon in :issue:`42135`.)" +":class:`!importlib.abc.Finder` is deprecated (including its sole method, :" +"meth:`!find_module`). Both :class:`importlib.abc.MetaPathFinder` and :class:" +"`importlib.abc.PathEntryFinder` no longer inherit from the class. Users " +"should inherit from one of these two classes as appropriate instead. " +"(Contributed by Brett Cannon in :issue:`42135`.)" msgstr "" -#: whatsnew/3.10.rst:1684 +#: whatsnew/3.10.rst:1685 msgid "" -"The deprecations of :mod:`imp`, :func:`importlib.find_loader`, :func:" -"`importlib.util.set_package_wrapper`, :func:`importlib.util." -"set_loader_wrapper`, :func:`importlib.util.module_for_loader`, :class:" -"`pkgutil.ImpImporter`, and :class:`pkgutil.ImpLoader` have all been updated " +"The deprecations of :mod:`!imp`, :func:`!importlib.find_loader`, :func:`!" +"importlib.util.set_package_wrapper`, :func:`!importlib.util." +"set_loader_wrapper`, :func:`!importlib.util.module_for_loader`, :class:`!" +"pkgutil.ImpImporter`, and :class:`!pkgutil.ImpLoader` have all been updated " "to list Python 3.12 as the slated version of removal (they began raising :" "exc:`DeprecationWarning` in previous versions of Python). (Contributed by " "Brett Cannon in :issue:`43720`.)" msgstr "" -#: whatsnew/3.10.rst:1694 +#: whatsnew/3.10.rst:1695 msgid "" "The import system now uses the ``__spec__`` attribute on modules before " -"falling back on :meth:`~importlib.abc.Loader.module_repr` for a module's " -"``__repr__()`` method. Removal of the use of ``module_repr()`` is scheduled " -"for Python 3.12. (Contributed by Brett Cannon in :issue:`42137`.)" +"falling back on :meth:`!module_repr` for a module's ``__repr__()`` method. " +"Removal of the use of ``module_repr()`` is scheduled for Python 3.12. " +"(Contributed by Brett Cannon in :issue:`42137`.)" msgstr "" -#: whatsnew/3.10.rst:1700 +#: whatsnew/3.10.rst:1701 msgid "" -":meth:`importlib.abc.Loader.module_repr`, :meth:`importlib.machinery." -"FrozenLoader.module_repr`, and :meth:`importlib.machinery.BuiltinLoader." +":meth:`!importlib.abc.Loader.module_repr`, :meth:`!importlib.machinery." +"FrozenLoader.module_repr`, and :meth:`!importlib.machinery.BuiltinLoader." "module_repr` are deprecated and slated for removal in Python 3.12. " "(Contributed by Brett Cannon in :issue:`42136`.)" msgstr "" -#: whatsnew/3.10.rst:1706 +#: whatsnew/3.10.rst:1707 msgid "" "``sqlite3.OptimizedUnicode`` has been undocumented and obsolete since Python " "3.3, when it was made an alias to :class:`str`. It is now deprecated, " @@ -2115,7 +2114,7 @@ msgid "" "issue:`42264`.)" msgstr "" -#: whatsnew/3.10.rst:1711 +#: whatsnew/3.10.rst:1712 msgid "" "The undocumented built-in function ``sqlite3.enable_shared_cache`` is now " "deprecated, scheduled for removal in Python 3.12. Its use is strongly " @@ -2125,67 +2124,67 @@ msgid "" "query parameter. (Contributed by Erlend E. Aasland in :issue:`24464`.)" msgstr "" -#: whatsnew/3.10.rst:1719 +#: whatsnew/3.10.rst:1720 msgid "The following ``threading`` methods are now deprecated:" msgstr "" -#: whatsnew/3.10.rst:1721 +#: whatsnew/3.10.rst:1722 msgid "``threading.currentThread`` => :func:`threading.current_thread`" msgstr "" -#: whatsnew/3.10.rst:1723 +#: whatsnew/3.10.rst:1724 msgid "``threading.activeCount`` => :func:`threading.active_count`" msgstr "" -#: whatsnew/3.10.rst:1725 +#: whatsnew/3.10.rst:1726 msgid "" "``threading.Condition.notifyAll`` => :meth:`threading.Condition.notify_all`" msgstr "" -#: whatsnew/3.10.rst:1728 +#: whatsnew/3.10.rst:1729 msgid "``threading.Event.isSet`` => :meth:`threading.Event.is_set`" msgstr "" -#: whatsnew/3.10.rst:1730 +#: whatsnew/3.10.rst:1731 msgid "``threading.Thread.setName`` => :attr:`threading.Thread.name`" msgstr "" -#: whatsnew/3.10.rst:1732 +#: whatsnew/3.10.rst:1733 msgid "``threading.thread.getName`` => :attr:`threading.Thread.name`" msgstr "" -#: whatsnew/3.10.rst:1734 +#: whatsnew/3.10.rst:1735 msgid "``threading.Thread.isDaemon`` => :attr:`threading.Thread.daemon`" msgstr "" -#: whatsnew/3.10.rst:1736 +#: whatsnew/3.10.rst:1737 msgid "``threading.Thread.setDaemon`` => :attr:`threading.Thread.daemon`" msgstr "" -#: whatsnew/3.10.rst:1738 +#: whatsnew/3.10.rst:1739 msgid "(Contributed by Jelle Zijlstra in :gh:`87889`.)" msgstr "" -#: whatsnew/3.10.rst:1740 +#: whatsnew/3.10.rst:1741 msgid "" ":meth:`pathlib.Path.link_to` is deprecated and slated for removal in Python " "3.12. Use :meth:`pathlib.Path.hardlink_to` instead. (Contributed by Barney " "Gale in :issue:`39950`.)" msgstr "" -#: whatsnew/3.10.rst:1744 +#: whatsnew/3.10.rst:1745 msgid "" "``cgi.log()`` is deprecated and slated for removal in Python 3.12. " "(Contributed by Inada Naoki in :issue:`41139`.)" msgstr "" -#: whatsnew/3.10.rst:1747 +#: whatsnew/3.10.rst:1748 msgid "" "The following :mod:`ssl` features have been deprecated since Python 3.6, " "Python 3.7, or OpenSSL 1.1.0 and will be removed in 3.11:" msgstr "" -#: whatsnew/3.10.rst:1750 +#: whatsnew/3.10.rst:1751 msgid "" ":data:`~ssl.OP_NO_SSLv2`, :data:`~ssl.OP_NO_SSLv3`, :data:`~ssl." "OP_NO_TLSv1`, :data:`~ssl.OP_NO_TLSv1_1`, :data:`~ssl.OP_NO_TLSv1_2`, and :" @@ -2193,7 +2192,7 @@ msgid "" "minimum_version` and :attr:`sslSSLContext.maximum_version`." msgstr "" -#: whatsnew/3.10.rst:1756 +#: whatsnew/3.10.rst:1757 msgid "" ":data:`~ssl.PROTOCOL_SSLv2`, :data:`~ssl.PROTOCOL_SSLv3`, :data:`~ssl." "PROTOCOL_SSLv23`, :data:`~ssl.PROTOCOL_TLSv1`, :data:`~ssl." @@ -2202,26 +2201,26 @@ msgid "" "and :const:`~ssl.PROTOCOL_TLS_SERVER`" msgstr "" -#: whatsnew/3.10.rst:1762 +#: whatsnew/3.10.rst:1763 msgid "" ":func:`~ssl.wrap_socket` is replaced by :meth:`ssl.SSLContext.wrap_socket`" msgstr "" -#: whatsnew/3.10.rst:1764 +#: whatsnew/3.10.rst:1765 msgid ":func:`~ssl.match_hostname`" msgstr "" -#: whatsnew/3.10.rst:1766 +#: whatsnew/3.10.rst:1767 msgid ":func:`~ssl.RAND_pseudo_bytes`, :func:`~ssl.RAND_egd`" msgstr "" -#: whatsnew/3.10.rst:1768 +#: whatsnew/3.10.rst:1769 msgid "" "NPN features like :meth:`ssl.SSLSocket.selected_npn_protocol` and :meth:`ssl." "SSLContext.set_npn_protocols` are replaced by ALPN." msgstr "" -#: whatsnew/3.10.rst:1771 +#: whatsnew/3.10.rst:1772 msgid "" "The threading debug (:envvar:`PYTHONTHREADDEBUG` environment variable) is " "deprecated in Python 3.10 and will be removed in Python 3.12. This feature " @@ -2229,7 +2228,7 @@ msgid "" "Victor Stinner in :issue:`44584`.)" msgstr "" -#: whatsnew/3.10.rst:1776 +#: whatsnew/3.10.rst:1777 msgid "" "Importing from the ``typing.io`` and ``typing.re`` submodules will now emit :" "exc:`DeprecationWarning`. These submodules will be removed in a future " @@ -2238,11 +2237,11 @@ msgid "" "Rittau in :issue:`38291`.)" msgstr "" -#: whatsnew/3.10.rst:2208 +#: whatsnew/3.10.rst:2209 msgid "Removed" msgstr "" -#: whatsnew/3.10.rst:1787 +#: whatsnew/3.10.rst:1788 msgid "" "Removed special methods ``__int__``, ``__float__``, ``__floordiv__``, " "``__mod__``, ``__divmod__``, ``__rfloordiv__``, ``__rmod__`` and " @@ -2250,7 +2249,7 @@ msgid "" "`TypeError`. (Contributed by Serhiy Storchaka in :issue:`41974`.)" msgstr "" -#: whatsnew/3.10.rst:1793 +#: whatsnew/3.10.rst:1794 msgid "" "The ``ParserBase.error()`` method from the private and undocumented " "``_markupbase`` module has been removed. :class:`html.parser.HTMLParser` is " @@ -2259,7 +2258,7 @@ msgid "" "`31844`.)" msgstr "" -#: whatsnew/3.10.rst:1799 +#: whatsnew/3.10.rst:1800 msgid "" "Removed the ``unicodedata.ucnhash_CAPI`` attribute which was an internal " "PyCapsule object. The related private ``_PyUnicode_Name_CAPI`` structure was " @@ -2267,7 +2266,7 @@ msgid "" "`42157`.)" msgstr "" -#: whatsnew/3.10.rst:1804 +#: whatsnew/3.10.rst:1805 msgid "" "Removed the ``parser`` module, which was deprecated in 3.9 due to the switch " "to the new PEG parser, as well as all the C source and header files that " @@ -2275,7 +2274,7 @@ msgid "" "``graminit.h`` and ``grammar.h``." msgstr "" -#: whatsnew/3.10.rst:1809 +#: whatsnew/3.10.rst:1810 msgid "" "Removed the Public C API functions ``PyParser_SimpleParseStringFlags``, " "``PyParser_SimpleParseStringFlagsFilename``, " @@ -2283,7 +2282,7 @@ msgid "" "deprecated in 3.9 due to the switch to the new PEG parser." msgstr "" -#: whatsnew/3.10.rst:1814 +#: whatsnew/3.10.rst:1815 msgid "" "Removed the ``formatter`` module, which was deprecated in Python 3.4. It is " "somewhat obsolete, little used, and not tested. It was originally scheduled " @@ -2293,71 +2292,71 @@ msgid "" "`42299`.)" msgstr "" -#: whatsnew/3.10.rst:1821 +#: whatsnew/3.10.rst:1822 msgid "" "Removed the :c:func:`!PyModule_GetWarningsModule` function that was useless " "now due to the :mod:`!_warnings` module was converted to a builtin module in " "2.6. (Contributed by Hai Shi in :issue:`42599`.)" msgstr "" -#: whatsnew/3.10.rst:1825 +#: whatsnew/3.10.rst:1826 msgid "" "Remove deprecated aliases to :ref:`collections-abstract-base-classes` from " "the :mod:`collections` module. (Contributed by Victor Stinner in :issue:" "`37324`.)" msgstr "" -#: whatsnew/3.10.rst:1829 +#: whatsnew/3.10.rst:1830 msgid "" "The ``loop`` parameter has been removed from most of :mod:`asyncio`\\ 's :" "doc:`high-level API <../library/asyncio-api-index>` following deprecation in " "Python 3.8. The motivation behind this change is multifold:" msgstr "" -#: whatsnew/3.10.rst:1833 +#: whatsnew/3.10.rst:1834 msgid "This simplifies the high-level API." msgstr "" -#: whatsnew/3.10.rst:1834 +#: whatsnew/3.10.rst:1835 msgid "" "The functions in the high-level API have been implicitly getting the current " "thread's running event loop since Python 3.7. There isn't a need to pass " "the event loop to the API in most normal use cases." msgstr "" -#: whatsnew/3.10.rst:1837 +#: whatsnew/3.10.rst:1838 msgid "" "Event loop passing is error-prone especially when dealing with loops running " "in different threads." msgstr "" -#: whatsnew/3.10.rst:1840 +#: whatsnew/3.10.rst:1841 msgid "" "Note that the low-level API will still accept ``loop``. See :ref:`changes-" "python-api` for examples of how to replace existing code." msgstr "" -#: whatsnew/3.10.rst:1915 +#: whatsnew/3.10.rst:1916 msgid "" "(Contributed by Yurii Karabas, Andrew Svetlov, Yury Selivanov and Kyle " "Stanley in :issue:`42392`.)" msgstr "" -#: whatsnew/3.10.rst:2135 +#: whatsnew/3.10.rst:2136 msgid "Porting to Python 3.10" msgstr "" -#: whatsnew/3.10.rst:1850 +#: whatsnew/3.10.rst:1851 msgid "" "This section lists previously described changes and other bugfixes that may " "require changes to your code." msgstr "" -#: whatsnew/3.10.rst:1855 +#: whatsnew/3.10.rst:1856 msgid "Changes in the Python syntax" msgstr "" -#: whatsnew/3.10.rst:1857 +#: whatsnew/3.10.rst:1858 msgid "" "Deprecation warning is now emitted when compiling previously valid syntax if " "the numeric literal is immediately followed by a keyword (like in ``0in " @@ -2367,11 +2366,11 @@ msgid "" "following keyword. (Contributed by Serhiy Storchaka in :issue:`43833`.)" msgstr "" -#: whatsnew/3.10.rst:1868 +#: whatsnew/3.10.rst:1869 msgid "Changes in the Python API" msgstr "" -#: whatsnew/3.10.rst:1870 +#: whatsnew/3.10.rst:1871 msgid "" "The *etype* parameters of the :func:`~traceback.format_exception`, :func:" "`~traceback.format_exception_only`, and :func:`~traceback.print_exception` " @@ -2379,7 +2378,7 @@ msgid "" "(Contributed by Zackery Spytz and Matthias Bussonnier in :issue:`26389`.)" msgstr "" -#: whatsnew/3.10.rst:1876 +#: whatsnew/3.10.rst:1877 msgid "" ":mod:`atexit`: At Python exit, if a callback registered with :func:`atexit." "register` fails, its exception is now logged. Previously, only some " @@ -2387,7 +2386,7 @@ msgid "" "(Contributed by Victor Stinner in :issue:`42639`.)" msgstr "" -#: whatsnew/3.10.rst:1882 +#: whatsnew/3.10.rst:1883 msgid "" ":class:`collections.abc.Callable` generic now flattens type parameters, " "similar to what :data:`typing.Callable` currently does. This means that " @@ -2400,7 +2399,7 @@ msgid "" "`42195`.)" msgstr "" -#: whatsnew/3.10.rst:1892 +#: whatsnew/3.10.rst:1893 msgid "" ":meth:`socket.htons` and :meth:`socket.ntohs` now raise :exc:`OverflowError` " "instead of :exc:`DeprecationWarning` if the given parameter will not fit in " @@ -2408,29 +2407,29 @@ msgid "" "`42393`.)" msgstr "" -#: whatsnew/3.10.rst:1897 +#: whatsnew/3.10.rst:1898 msgid "" "The ``loop`` parameter has been removed from most of :mod:`asyncio`\\ 's :" "doc:`high-level API <../library/asyncio-api-index>` following deprecation in " "Python 3.8." msgstr "" -#: whatsnew/3.10.rst:1901 +#: whatsnew/3.10.rst:1902 msgid "A coroutine that currently looks like this::" msgstr "" -#: whatsnew/3.10.rst:1906 +#: whatsnew/3.10.rst:1907 msgid "Should be replaced with this::" msgstr "" -#: whatsnew/3.10.rst:1911 +#: whatsnew/3.10.rst:1912 msgid "" "If ``foo()`` was specifically designed *not* to run in the current thread's " "running event loop (e.g. running in another thread's event loop), consider " "using :func:`asyncio.run_coroutine_threadsafe` instead." msgstr "" -#: whatsnew/3.10.rst:1918 +#: whatsnew/3.10.rst:1919 msgid "" "The :data:`types.FunctionType` constructor now inherits the current builtins " "if the *globals* dictionary has no ``\"__builtins__\"`` key, rather than " @@ -2441,11 +2440,11 @@ msgid "" "`42990`.)" msgstr "" -#: whatsnew/3.10.rst:1927 +#: whatsnew/3.10.rst:1928 msgid "Changes in the C API" msgstr "" -#: whatsnew/3.10.rst:1929 +#: whatsnew/3.10.rst:1930 msgid "" "The C API functions ``PyParser_SimpleParseStringFlags``, " "``PyParser_SimpleParseStringFlagsFilename``, " @@ -2454,31 +2453,31 @@ msgid "" "PEG parser." msgstr "" -#: whatsnew/3.10.rst:1935 +#: whatsnew/3.10.rst:1936 msgid "" "Source should be now be compiled directly to a code object using, for " "example, :c:func:`Py_CompileString`. The resulting code object can then be " "evaluated using, for example, :c:func:`PyEval_EvalCode`." msgstr "" -#: whatsnew/3.10.rst:1939 +#: whatsnew/3.10.rst:1940 msgid "Specifically:" msgstr "" -#: whatsnew/3.10.rst:1941 +#: whatsnew/3.10.rst:1942 msgid "" "A call to ``PyParser_SimpleParseStringFlags`` followed by ``PyNode_Compile`` " "can be replaced by calling :c:func:`Py_CompileString`." msgstr "" -#: whatsnew/3.10.rst:1944 +#: whatsnew/3.10.rst:1945 msgid "" "There is no direct replacement for ``PyParser_SimpleParseFileFlags``. To " "compile code from a ``FILE *`` argument, you will need to read the file in C " "and pass the resulting buffer to :c:func:`Py_CompileString`." msgstr "" -#: whatsnew/3.10.rst:1948 +#: whatsnew/3.10.rst:1949 msgid "" "To compile a file given a ``char *`` filename, explicitly open the file, " "read it and compile the result. One way to do this is using the :py:mod:`io` " @@ -2487,7 +2486,7 @@ msgid "" "(Declarations and error handling are omitted.) ::" msgstr "" -#: whatsnew/3.10.rst:1961 +#: whatsnew/3.10.rst:1962 msgid "" "For ``FrameObject`` objects, the ``f_lasti`` member now represents a " "wordcode offset instead of a simple offset into the bytecode string. This " @@ -2497,53 +2496,53 @@ msgid "" "considered stable: please use :c:func:`PyFrame_GetLineNumber` instead." msgstr "" -#: whatsnew/3.10.rst:1969 +#: whatsnew/3.10.rst:1970 msgid "CPython bytecode changes" msgstr "" -#: whatsnew/3.10.rst:1971 +#: whatsnew/3.10.rst:1972 msgid "" "The ``MAKE_FUNCTION`` instruction now accepts either a dict or a tuple of " "strings as the function's annotations. (Contributed by Yurii Karabas and " "Inada Naoki in :issue:`42202`.)" msgstr "" -#: whatsnew/3.10.rst:1976 +#: whatsnew/3.10.rst:1977 msgid "Build Changes" msgstr "" -#: whatsnew/3.10.rst:1978 +#: whatsnew/3.10.rst:1979 msgid "" ":pep:`644`: Python now requires OpenSSL 1.1.1 or newer. OpenSSL 1.0.2 is no " "longer supported. (Contributed by Christian Heimes in :issue:`43669`.)" msgstr "" -#: whatsnew/3.10.rst:1982 +#: whatsnew/3.10.rst:1983 msgid "" "The C99 functions :c:func:`snprintf` and :c:func:`vsnprintf` are now " "required to build Python. (Contributed by Victor Stinner in :issue:`36020`.)" msgstr "" -#: whatsnew/3.10.rst:1986 +#: whatsnew/3.10.rst:1987 msgid "" ":mod:`sqlite3` requires SQLite 3.7.15 or higher. (Contributed by Sergey " "Fedoseev and Erlend E. Aasland in :issue:`40744` and :issue:`40810`.)" msgstr "" -#: whatsnew/3.10.rst:1989 +#: whatsnew/3.10.rst:1990 msgid "" "The :mod:`atexit` module must now always be built as a built-in module. " "(Contributed by Victor Stinner in :issue:`42639`.)" msgstr "" -#: whatsnew/3.10.rst:1992 +#: whatsnew/3.10.rst:1993 msgid "" "Add :option:`--disable-test-modules` option to the ``configure`` script: " "don't build nor install test modules. (Contributed by Xavier de Gaye, Thomas " "Petazzoni and Peixing Xin in :issue:`27640`.)" msgstr "" -#: whatsnew/3.10.rst:1996 +#: whatsnew/3.10.rst:1997 msgid "" "Add :option:`--with-wheel-pkg-dir=PATH option <--with-wheel-pkg-dir>` to the " "``./configure`` script. If specified, the :mod:`ensurepip` module looks for " @@ -2552,7 +2551,7 @@ msgid "" "packages." msgstr "" -#: whatsnew/3.10.rst:2002 +#: whatsnew/3.10.rst:2003 msgid "" "Some Linux distribution packaging policies recommend against bundling " "dependencies. For example, Fedora installs wheel packages in the ``/usr/" @@ -2560,22 +2559,22 @@ msgid "" "_bundled`` package." msgstr "" -#: whatsnew/3.10.rst:2007 +#: whatsnew/3.10.rst:2008 msgid "(Contributed by Victor Stinner in :issue:`42856`.)" msgstr "" -#: whatsnew/3.10.rst:2009 +#: whatsnew/3.10.rst:2010 msgid "" "Add a new :option:`configure --without-static-libpython option <--without-" "static-libpython>` to not build the ``libpythonMAJOR.MINOR.a`` static " "library and not install the ``python.o`` object file." msgstr "" -#: whatsnew/3.10.rst:2013 +#: whatsnew/3.10.rst:2014 msgid "(Contributed by Victor Stinner in :issue:`43103`.)" msgstr "" -#: whatsnew/3.10.rst:2015 +#: whatsnew/3.10.rst:2016 msgid "" "The ``configure`` script now uses the ``pkg-config`` utility, if available, " "to detect the location of Tcl/Tk headers and libraries. As before, those " @@ -2584,7 +2583,7 @@ msgid "" "Stamatogiannakis in :issue:`42603`.)" msgstr "" -#: whatsnew/3.10.rst:2021 +#: whatsnew/3.10.rst:2022 msgid "" "Add :option:`--with-openssl-rpath` option to ``configure`` script. The " "option simplifies building Python with a custom OpenSSL installation, e.g. " @@ -2592,15 +2591,15 @@ msgid "" "(Contributed by Christian Heimes in :issue:`43466`.)" msgstr "" -#: whatsnew/3.10.rst:2028 +#: whatsnew/3.10.rst:2029 msgid "C API Changes" msgstr "" -#: whatsnew/3.10.rst:2031 +#: whatsnew/3.10.rst:2032 msgid "PEP 652: Maintaining the Stable ABI" msgstr "" -#: whatsnew/3.10.rst:2033 +#: whatsnew/3.10.rst:2034 msgid "" "The Stable ABI (Application Binary Interface) for extension modules or " "embedding Python is now explicitly defined. :ref:`stable` describes C API " @@ -2608,25 +2607,25 @@ msgid "" "ABI." msgstr "" -#: whatsnew/3.10.rst:2038 +#: whatsnew/3.10.rst:2039 msgid "(Contributed by Petr Viktorin in :pep:`652` and :issue:`43795`.)" msgstr "" -#: whatsnew/3.10.rst:2043 +#: whatsnew/3.10.rst:2044 msgid "" "The result of :c:func:`PyNumber_Index` now always has exact type :class:" "`int`. Previously, the result could have been an instance of a subclass of " "``int``. (Contributed by Serhiy Storchaka in :issue:`40792`.)" msgstr "" -#: whatsnew/3.10.rst:2047 +#: whatsnew/3.10.rst:2048 msgid "" "Add a new :c:member:`~PyConfig.orig_argv` member to the :c:type:`PyConfig` " "structure: the list of the original command line arguments passed to the " "Python executable. (Contributed by Victor Stinner in :issue:`23427`.)" msgstr "" -#: whatsnew/3.10.rst:2052 +#: whatsnew/3.10.rst:2053 msgid "" "The :c:func:`PyDateTime_DATE_GET_TZINFO` and :c:func:" "`PyDateTime_TIME_GET_TZINFO` macros have been added for accessing the " @@ -2634,72 +2633,72 @@ msgid "" "time` objects. (Contributed by Zackery Spytz in :issue:`30155`.)" msgstr "" -#: whatsnew/3.10.rst:2058 +#: whatsnew/3.10.rst:2059 msgid "" "Add a :c:func:`PyCodec_Unregister` function to unregister a codec search " "function. (Contributed by Hai Shi in :issue:`41842`.)" msgstr "" -#: whatsnew/3.10.rst:2062 +#: whatsnew/3.10.rst:2063 msgid "" "The :c:func:`PyIter_Send` function was added to allow sending value into " "iterator without raising ``StopIteration`` exception. (Contributed by " "Vladimir Matveev in :issue:`41756`.)" msgstr "" -#: whatsnew/3.10.rst:2066 +#: whatsnew/3.10.rst:2067 msgid "" "Add :c:func:`PyUnicode_AsUTF8AndSize` to the limited C API. (Contributed by " "Alex Gaynor in :issue:`41784`.)" msgstr "" -#: whatsnew/3.10.rst:2069 +#: whatsnew/3.10.rst:2070 msgid "" "Add :c:func:`PyModule_AddObjectRef` function: similar to :c:func:" "`PyModule_AddObject` but don't steal a reference to the value on success. " "(Contributed by Victor Stinner in :issue:`1635741`.)" msgstr "" -#: whatsnew/3.10.rst:2074 +#: whatsnew/3.10.rst:2075 msgid "" "Add :c:func:`Py_NewRef` and :c:func:`Py_XNewRef` functions to increment the " "reference count of an object and return the object. (Contributed by Victor " "Stinner in :issue:`42262`.)" msgstr "" -#: whatsnew/3.10.rst:2078 +#: whatsnew/3.10.rst:2079 msgid "" "The :c:func:`PyType_FromSpecWithBases` and :c:func:" "`PyType_FromModuleAndSpec` functions now accept a single class as the " "*bases* argument. (Contributed by Serhiy Storchaka in :issue:`42423`.)" msgstr "" -#: whatsnew/3.10.rst:2082 +#: whatsnew/3.10.rst:2083 msgid "" "The :c:func:`PyType_FromModuleAndSpec` function now accepts NULL ``tp_doc`` " "slot. (Contributed by Hai Shi in :issue:`41832`.)" msgstr "" -#: whatsnew/3.10.rst:2086 +#: whatsnew/3.10.rst:2087 msgid "" "The :c:func:`PyType_GetSlot` function can accept :ref:`static types `. (Contributed by Hai Shi and Petr Viktorin in :issue:`41073`.)" msgstr "" -#: whatsnew/3.10.rst:2090 +#: whatsnew/3.10.rst:2091 msgid "" "Add a new :c:func:`PySet_CheckExact` function to the C-API to check if an " "object is an instance of :class:`set` but not an instance of a subtype. " "(Contributed by Pablo Galindo in :issue:`43277`.)" msgstr "" -#: whatsnew/3.10.rst:2094 +#: whatsnew/3.10.rst:2095 msgid "" "Add :c:func:`PyErr_SetInterruptEx` which allows passing a signal number to " "simulate. (Contributed by Antoine Pitrou in :issue:`43356`.)" msgstr "" -#: whatsnew/3.10.rst:2098 +#: whatsnew/3.10.rst:2099 msgid "" "The limited C API is now supported if :ref:`Python is built in debug mode " "` (if the ``Py_DEBUG`` macro is defined). In the limited C API, " @@ -2712,14 +2711,14 @@ msgid "" "`36465`)." msgstr "" -#: whatsnew/3.10.rst:2108 +#: whatsnew/3.10.rst:2109 msgid "" "The limited C API is still not supported in the :option:`--with-trace-refs` " "special build (``Py_TRACE_REFS`` macro). (Contributed by Victor Stinner in :" "issue:`43688`.)" msgstr "" -#: whatsnew/3.10.rst:2112 +#: whatsnew/3.10.rst:2113 msgid "" "Add the :c:func:`Py_Is(x, y) ` function to test if the *x* object is " "the *y* object, the same as ``x is y`` in Python. Add also the :c:func:" @@ -2729,7 +2728,7 @@ msgid "" "`43753`.)" msgstr "" -#: whatsnew/3.10.rst:2119 +#: whatsnew/3.10.rst:2120 msgid "" "Add new functions to control the garbage collector from C code: :c:func:" "`PyGC_Enable()`, :c:func:`PyGC_Disable()`, :c:func:`PyGC_IsEnabled()`. These " @@ -2737,20 +2736,20 @@ msgid "" "collector from C code without having to import the :mod:`gc` module." msgstr "" -#: whatsnew/3.10.rst:2126 +#: whatsnew/3.10.rst:2127 msgid "" "Add a new :c:macro:`Py_TPFLAGS_DISALLOW_INSTANTIATION` type flag to disallow " "creating type instances. (Contributed by Victor Stinner in :issue:`43916`.)" msgstr "" -#: whatsnew/3.10.rst:2130 +#: whatsnew/3.10.rst:2131 msgid "" "Add a new :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` type flag for creating " "immutable type objects: type attributes cannot be set nor deleted. " "(Contributed by Victor Stinner and Erlend E. Aasland in :issue:`43908`.)" msgstr "" -#: whatsnew/3.10.rst:2137 +#: whatsnew/3.10.rst:2138 msgid "" "The ``PY_SSIZE_T_CLEAN`` macro must now be defined to use :c:func:" "`PyArg_ParseTuple` and :c:func:`Py_BuildValue` formats which use ``#``: " @@ -2759,7 +2758,7 @@ msgid "" "`40943`.)" msgstr "" -#: whatsnew/3.10.rst:2143 +#: whatsnew/3.10.rst:2144 msgid "" "Since :c:func:`Py_REFCNT()` is changed to the inline static function, " "``Py_REFCNT(obj) = new_refcnt`` must be replaced with ``Py_SET_REFCNT(obj, " @@ -2767,18 +2766,18 @@ msgid "" "For backward compatibility, this macro can be used::" msgstr "" -#: whatsnew/3.10.rst:2152 +#: whatsnew/3.10.rst:2153 msgid "(Contributed by Victor Stinner in :issue:`39573`.)" msgstr "" -#: whatsnew/3.10.rst:2154 +#: whatsnew/3.10.rst:2155 msgid "" "Calling :c:func:`PyDict_GetItem` without :term:`GIL` held had been allowed " "for historical reason. It is no longer allowed. (Contributed by Victor " "Stinner in :issue:`40839`.)" msgstr "" -#: whatsnew/3.10.rst:2158 +#: whatsnew/3.10.rst:2159 msgid "" "``PyUnicode_FromUnicode(NULL, size)`` and " "``PyUnicode_FromStringAndSize(NULL, size)`` raise ``DeprecationWarning`` " @@ -2786,14 +2785,14 @@ msgid "" "data. (Contributed by Inada Naoki in :issue:`36346`.)" msgstr "" -#: whatsnew/3.10.rst:2163 +#: whatsnew/3.10.rst:2164 msgid "" "The private ``_PyUnicode_Name_CAPI`` structure of the PyCapsule API " "``unicodedata.ucnhash_CAPI`` has been moved to the internal C API. " "(Contributed by Victor Stinner in :issue:`42157`.)" msgstr "" -#: whatsnew/3.10.rst:2167 +#: whatsnew/3.10.rst:2168 msgid "" ":c:func:`Py_GetPath`, :c:func:`Py_GetPrefix`, :c:func:`Py_GetExecPrefix`, :c:" "func:`Py_GetProgramFullPath`, :c:func:`Py_GetPythonHome` and :c:func:" @@ -2803,7 +2802,7 @@ msgid "" "Stinner in :issue:`42260`.)" msgstr "" -#: whatsnew/3.10.rst:2174 +#: whatsnew/3.10.rst:2175 msgid "" ":c:func:`PyList_SET_ITEM`, :c:func:`PyTuple_SET_ITEM` and :c:func:" "`PyCell_SET` macros can no longer be used as l-value or r-value. For " @@ -2813,7 +2812,7 @@ msgid "" "and Victor Stinner in :issue:`30459`.)" msgstr "" -#: whatsnew/3.10.rst:2181 +#: whatsnew/3.10.rst:2182 msgid "" "The non-limited API files ``odictobject.h``, ``parser_interface.h``, " "``picklebufobject.h``, ``pyarena.h``, ``pyctype.h``, ``pydebug.h``, ``pyfpe." @@ -2824,7 +2823,7 @@ msgid "" "issue:`35134`.)" msgstr "" -#: whatsnew/3.10.rst:2189 +#: whatsnew/3.10.rst:2190 msgid "" "Use the :c:macro:`Py_TPFLAGS_IMMUTABLETYPE` type flag to create immutable " "type objects. Do not rely on :c:macro:`Py_TPFLAGS_HEAPTYPE` to decide if a " @@ -2833,85 +2832,85 @@ msgid "" "issue:`43908`.)" msgstr "" -#: whatsnew/3.10.rst:2195 +#: whatsnew/3.10.rst:2196 msgid "" "The undocumented function ``Py_FrozenMain`` has been removed from the " "limited API. The function is mainly useful for custom builds of Python. " "(Contributed by Petr Viktorin in :issue:`26241`.)" msgstr "" -#: whatsnew/3.10.rst:2202 +#: whatsnew/3.10.rst:2203 msgid "" "The ``PyUnicode_InternImmortal()`` function is now deprecated and will be " "removed in Python 3.12: use :c:func:`PyUnicode_InternInPlace` instead. " "(Contributed by Victor Stinner in :issue:`41692`.)" msgstr "" -#: whatsnew/3.10.rst:2210 +#: whatsnew/3.10.rst:2211 msgid "" "Removed ``Py_UNICODE_str*`` functions manipulating ``Py_UNICODE*`` strings. " "(Contributed by Inada Naoki in :issue:`41123`.)" msgstr "" -#: whatsnew/3.10.rst:2213 +#: whatsnew/3.10.rst:2214 msgid "" "``Py_UNICODE_strlen``: use :c:func:`PyUnicode_GetLength` or :c:macro:" "`PyUnicode_GET_LENGTH`" msgstr "" -#: whatsnew/3.10.rst:2215 +#: whatsnew/3.10.rst:2216 msgid "" "``Py_UNICODE_strcat``: use :c:func:`PyUnicode_CopyCharacters` or :c:func:" "`PyUnicode_FromFormat`" msgstr "" -#: whatsnew/3.10.rst:2217 +#: whatsnew/3.10.rst:2218 msgid "" "``Py_UNICODE_strcpy``, ``Py_UNICODE_strncpy``: use :c:func:" "`PyUnicode_CopyCharacters` or :c:func:`PyUnicode_Substring`" msgstr "" -#: whatsnew/3.10.rst:2219 +#: whatsnew/3.10.rst:2220 msgid "``Py_UNICODE_strcmp``: use :c:func:`PyUnicode_Compare`" msgstr "" -#: whatsnew/3.10.rst:2220 +#: whatsnew/3.10.rst:2221 msgid "``Py_UNICODE_strncmp``: use :c:func:`PyUnicode_Tailmatch`" msgstr "" -#: whatsnew/3.10.rst:2221 +#: whatsnew/3.10.rst:2222 msgid "" "``Py_UNICODE_strchr``, ``Py_UNICODE_strrchr``: use :c:func:" "`PyUnicode_FindChar`" msgstr "" -#: whatsnew/3.10.rst:2224 +#: whatsnew/3.10.rst:2225 msgid "" "Removed ``PyUnicode_GetMax()``. Please migrate to new (:pep:`393`) APIs. " "(Contributed by Inada Naoki in :issue:`41103`.)" msgstr "" -#: whatsnew/3.10.rst:2227 +#: whatsnew/3.10.rst:2228 msgid "" "Removed ``PyLong_FromUnicode()``. Please migrate to :c:func:" "`PyLong_FromUnicodeObject`. (Contributed by Inada Naoki in :issue:`41103`.)" msgstr "" -#: whatsnew/3.10.rst:2230 +#: whatsnew/3.10.rst:2231 msgid "" "Removed ``PyUnicode_AsUnicodeCopy()``. Please use :c:func:" "`PyUnicode_AsUCS4Copy` or :c:func:`PyUnicode_AsWideCharString` (Contributed " "by Inada Naoki in :issue:`41103`.)" msgstr "" -#: whatsnew/3.10.rst:2234 +#: whatsnew/3.10.rst:2235 msgid "" "Removed ``_Py_CheckRecursionLimit`` variable: it has been replaced by " "``ceval.recursion_limit`` of the :c:type:`PyInterpreterState` structure. " "(Contributed by Victor Stinner in :issue:`41834`.)" msgstr "" -#: whatsnew/3.10.rst:2238 +#: whatsnew/3.10.rst:2239 msgid "" "Removed undocumented macros ``Py_ALLOW_RECURSION`` and " "``Py_END_ALLOW_RECURSION`` and the ``recursion_critical`` field of the :c:" @@ -2919,14 +2918,14 @@ msgid "" "issue:`41936`.)" msgstr "" -#: whatsnew/3.10.rst:2243 +#: whatsnew/3.10.rst:2244 msgid "" "Removed the undocumented ``PyOS_InitInterrupts()`` function. Initializing " "Python already implicitly installs signal handlers: see :c:member:`PyConfig." "install_signal_handlers`. (Contributed by Victor Stinner in :issue:`41713`.)" msgstr "" -#: whatsnew/3.10.rst:2248 +#: whatsnew/3.10.rst:2249 msgid "" "Remove the ``PyAST_Validate()`` function. It is no longer possible to build " "a AST object (``mod_ty`` type) with the public C API. The function was " @@ -2934,48 +2933,48 @@ msgid "" "Stinner in :issue:`43244`.)" msgstr "" -#: whatsnew/3.10.rst:2253 +#: whatsnew/3.10.rst:2254 msgid "Remove the ``symtable.h`` header file and the undocumented functions:" msgstr "" -#: whatsnew/3.10.rst:2255 +#: whatsnew/3.10.rst:2256 msgid "``PyST_GetScope()``" msgstr "" -#: whatsnew/3.10.rst:2256 +#: whatsnew/3.10.rst:2257 msgid "``PySymtable_Build()``" msgstr "" -#: whatsnew/3.10.rst:2257 +#: whatsnew/3.10.rst:2258 msgid "``PySymtable_BuildObject()``" msgstr "" -#: whatsnew/3.10.rst:2258 +#: whatsnew/3.10.rst:2259 msgid "``PySymtable_Free()``" msgstr "" -#: whatsnew/3.10.rst:2259 +#: whatsnew/3.10.rst:2260 msgid "``Py_SymtableString()``" msgstr "" -#: whatsnew/3.10.rst:2260 +#: whatsnew/3.10.rst:2261 msgid "``Py_SymtableStringObject()``" msgstr "" -#: whatsnew/3.10.rst:2262 +#: whatsnew/3.10.rst:2263 msgid "" "The ``Py_SymtableString()`` function was part the stable ABI by mistake but " "it could not be used, because the ``symtable.h`` header file was excluded " "from the limited C API." msgstr "" -#: whatsnew/3.10.rst:2266 +#: whatsnew/3.10.rst:2267 msgid "" "Use Python :mod:`symtable` module instead. (Contributed by Victor Stinner " "in :issue:`43244`.)" msgstr "" -#: whatsnew/3.10.rst:2269 +#: whatsnew/3.10.rst:2270 msgid "" "Remove :c:func:`PyOS_ReadlineFunctionPointer` from the limited C API headers " "and from ``python3.dll``, the library that provides the stable ABI on " @@ -2983,7 +2982,7 @@ msgid "" "cannot be guaranteed. (Contributed by Petr Viktorin in :issue:`43868`.)" msgstr "" -#: whatsnew/3.10.rst:2275 +#: whatsnew/3.10.rst:2276 msgid "" "Remove ``ast.h``, ``asdl.h``, and ``Python-ast.h`` header files. These " "functions were undocumented and excluded from the limited C API. Most names " @@ -2994,86 +2993,86 @@ msgid "" "(Contributed by Victor Stinner in :issue:`43244`.)" msgstr "" -#: whatsnew/3.10.rst:2283 +#: whatsnew/3.10.rst:2284 msgid "" "Remove the compiler and parser functions using ``struct _mod`` type, because " "the public AST C API was removed:" msgstr "" -#: whatsnew/3.10.rst:2286 +#: whatsnew/3.10.rst:2287 msgid "``PyAST_Compile()``" msgstr "" -#: whatsnew/3.10.rst:2287 +#: whatsnew/3.10.rst:2288 msgid "``PyAST_CompileEx()``" msgstr "" -#: whatsnew/3.10.rst:2288 +#: whatsnew/3.10.rst:2289 msgid "``PyAST_CompileObject()``" msgstr "" -#: whatsnew/3.10.rst:2289 +#: whatsnew/3.10.rst:2290 msgid "``PyFuture_FromAST()``" msgstr "" -#: whatsnew/3.10.rst:2290 +#: whatsnew/3.10.rst:2291 msgid "``PyFuture_FromASTObject()``" msgstr "" -#: whatsnew/3.10.rst:2291 +#: whatsnew/3.10.rst:2292 msgid "``PyParser_ASTFromFile()``" msgstr "" -#: whatsnew/3.10.rst:2292 +#: whatsnew/3.10.rst:2293 msgid "``PyParser_ASTFromFileObject()``" msgstr "" -#: whatsnew/3.10.rst:2293 +#: whatsnew/3.10.rst:2294 msgid "``PyParser_ASTFromFilename()``" msgstr "" -#: whatsnew/3.10.rst:2294 +#: whatsnew/3.10.rst:2295 msgid "``PyParser_ASTFromString()``" msgstr "" -#: whatsnew/3.10.rst:2295 +#: whatsnew/3.10.rst:2296 msgid "``PyParser_ASTFromStringObject()``" msgstr "" -#: whatsnew/3.10.rst:2297 +#: whatsnew/3.10.rst:2298 msgid "" "These functions were undocumented and excluded from the limited C API. " "(Contributed by Victor Stinner in :issue:`43244`.)" msgstr "" -#: whatsnew/3.10.rst:2300 +#: whatsnew/3.10.rst:2301 msgid "Remove the ``pyarena.h`` header file with functions:" msgstr "" -#: whatsnew/3.10.rst:2302 +#: whatsnew/3.10.rst:2303 msgid "``PyArena_New()``" msgstr "" -#: whatsnew/3.10.rst:2303 +#: whatsnew/3.10.rst:2304 msgid "``PyArena_Free()``" msgstr "" -#: whatsnew/3.10.rst:2304 +#: whatsnew/3.10.rst:2305 msgid "``PyArena_Malloc()``" msgstr "" -#: whatsnew/3.10.rst:2305 +#: whatsnew/3.10.rst:2306 msgid "``PyArena_AddPyObject()``" msgstr "" -#: whatsnew/3.10.rst:2307 +#: whatsnew/3.10.rst:2308 msgid "" "These functions were undocumented, excluded from the limited C API, and were " "only used internally by the compiler. (Contributed by Victor Stinner in :" "issue:`43244`.)" msgstr "" -#: whatsnew/3.10.rst:2311 +#: whatsnew/3.10.rst:2312 msgid "" "The ``PyThreadState.use_tracing`` member has been removed to optimize " "Python. (Contributed by Mark Shannon in :issue:`43760`.)" diff --git a/whatsnew/3.11.po b/whatsnew/3.11.po index 5edd6f971..dadab9a41 100644 --- a/whatsnew/3.11.po +++ b/whatsnew/3.11.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -2711,7 +2711,7 @@ msgid "The :ref:`entire distutils package `" msgstr "" #: whatsnew/3.11.rst:1883 -msgid "The :mod:`imp` module" +msgid "The :mod:`!imp` module" msgstr "" #: whatsnew/3.11.rst:1884 @@ -2727,23 +2727,23 @@ msgid ":func:`!cgi.log`" msgstr "" #: whatsnew/3.11.rst:1887 -msgid ":func:`importlib.find_loader`" +msgid ":func:`!importlib.find_loader`" msgstr "" #: whatsnew/3.11.rst:1888 -msgid ":meth:`importlib.abc.Loader.module_repr`" +msgid ":meth:`!importlib.abc.Loader.module_repr`" msgstr "" #: whatsnew/3.11.rst:1889 -msgid ":meth:`importlib.abc.MetaPathFinder.find_module`" +msgid ":meth:`!importlib.abc.MetaPathFinder.find_module`" msgstr "" #: whatsnew/3.11.rst:1890 -msgid ":meth:`importlib.abc.PathEntryFinder.find_loader`" +msgid ":meth:`!importlib.abc.PathEntryFinder.find_loader`" msgstr "" #: whatsnew/3.11.rst:1891 -msgid ":meth:`importlib.abc.PathEntryFinder.find_module`" +msgid ":meth:`!importlib.abc.PathEntryFinder.find_module`" msgstr "" #: whatsnew/3.11.rst:1892 @@ -2771,7 +2771,7 @@ msgid ":meth:`!importlib.machinery.FrozenLoader.module_repr`" msgstr "" #: whatsnew/3.11.rst:1898 -msgid ":meth:`importlib.machinery.PathFinder.find_module`" +msgid ":meth:`!importlib.machinery.PathFinder.find_module`" msgstr "" #: whatsnew/3.11.rst:1899 @@ -2779,7 +2779,7 @@ msgid ":meth:`!importlib.machinery.WindowsRegistryFinder.find_module`" msgstr "" #: whatsnew/3.11.rst:1900 -msgid ":func:`importlib.util.module_for_loader`" +msgid ":func:`!importlib.util.module_for_loader`" msgstr "" #: whatsnew/3.11.rst:1901 @@ -2791,11 +2791,11 @@ msgid ":func:`!importlib.util.set_package_wrapper`" msgstr "" #: whatsnew/3.11.rst:1903 -msgid ":class:`pkgutil.ImpImporter`" +msgid ":class:`!pkgutil.ImpImporter`" msgstr "" #: whatsnew/3.11.rst:1904 -msgid ":class:`pkgutil.ImpLoader`" +msgid ":class:`!pkgutil.ImpLoader`" msgstr "" #: whatsnew/3.11.rst:1905 @@ -3286,7 +3286,7 @@ msgstr "" #: whatsnew/3.11.rst:2156 msgid "" "Freelists for object structs can now be disabled. A new :program:`configure` " -"option :option:`!--without-freelists` can be used to disable all freelists " +"option :option:`--without-freelists` can be used to disable all freelists " "except empty tuple singleton. (Contributed by Christian Heimes in :issue:" "`45522`.)" msgstr "" @@ -4073,7 +4073,7 @@ msgid "the ``Py_MARSHAL_VERSION`` macro" msgstr "" #: whatsnew/3.11.rst:2657 -msgid "These are not part of the :ref:`limited API `." +msgid "These are not part of the :ref:`limited API `." msgstr "" #: whatsnew/3.11.rst:2659 @@ -4169,35 +4169,3 @@ msgid "" "See :pep:`624` for details and :pep:`migration guidance <624#alternative-" "apis>`. (Contributed by Inada Naoki in :issue:`44029`.)" msgstr "" - -#: whatsnew/3.11.rst:2704 -msgid "Notable Changes in 3.11.4" -msgstr "" - -#: whatsnew/3.11.rst:2707 -msgid "tarfile" -msgstr "" - -#: whatsnew/3.11.rst:2709 -msgid "" -"The extraction methods in :mod:`tarfile`, and :func:`shutil.unpack_archive`, " -"have a new a *filter* argument that allows limiting tar features than may be " -"surprising or dangerous, such as creating files outside the destination " -"directory. See :ref:`tarfile-extraction-filter` for details. In Python 3.12, " -"use without the *filter* argument will show a :exc:`DeprecationWarning`. In " -"Python 3.14, the default will switch to ``'data'``. (Contributed by Petr " -"Viktorin in :pep:`706`.)" -msgstr "" - -#: whatsnew/3.11.rst:2721 -msgid "Notable Changes in 3.11.5" -msgstr "" - -#: whatsnew/3.11.rst:2724 -msgid "OpenSSL" -msgstr "" - -#: whatsnew/3.11.rst:2726 -msgid "" -"Windows builds and macOS installers from python.org now use OpenSSL 3.0." -msgstr "" diff --git a/whatsnew/3.12.po b/whatsnew/3.12.po new file mode 100644 index 000000000..6e36dca21 --- /dev/null +++ b/whatsnew/3.12.po @@ -0,0 +1,3441 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2001-2023, Python Software Foundation +# This file is distributed under the same license as the Python package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Python 3.12\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: whatsnew/3.12.rst:4 +msgid "What's New In Python 3.12" +msgstr "" + +#: whatsnew/3.12.rst:0 +msgid "Release" +msgstr "" + +#: whatsnew/3.12.rst:6 +msgid "|release|" +msgstr "" + +#: whatsnew/3.12.rst:0 +msgid "Date" +msgstr "" + +#: whatsnew/3.12.rst:7 +msgid "|today|" +msgstr "" + +#: whatsnew/3.12.rst:49 +msgid "" +"This article explains the new features in Python 3.12, compared to 3.11." +msgstr "" + +#: whatsnew/3.12.rst:51 +msgid "For full details, see the :ref:`changelog `." +msgstr "" + +#: whatsnew/3.12.rst:55 +msgid "" +"Prerelease users should be aware that this document is currently in draft " +"form. It will be updated substantially as Python 3.12 moves towards release, " +"so it's worth checking back even after reading earlier versions." +msgstr "" + +#: whatsnew/3.12.rst:61 +msgid "Summary -- Release highlights" +msgstr "" + +#: whatsnew/3.12.rst:69 +msgid "New grammar features:" +msgstr "" + +#: whatsnew/3.12.rst:71 +msgid ":ref:`whatsnew312-pep701`" +msgstr "" + +#: whatsnew/3.12.rst:73 +msgid "Interpreter improvements:" +msgstr "" + +#: whatsnew/3.12.rst:75 +msgid ":ref:`whatsnew312-pep684`" +msgstr "" + +#: whatsnew/3.12.rst:77 +msgid ":ref:`whatsnew312-pep669`" +msgstr "" + +#: whatsnew/3.12.rst:79 +msgid "New typing features:" +msgstr "" + +#: whatsnew/3.12.rst:81 +msgid ":ref:`whatsnew312-pep688`" +msgstr "" + +#: whatsnew/3.12.rst:83 +msgid ":ref:`whatsnew312-pep692`" +msgstr "" + +#: whatsnew/3.12.rst:85 +msgid ":ref:`whatsnew312-pep695`" +msgstr "" + +#: whatsnew/3.12.rst:87 +msgid ":ref:`whatsnew312-pep698`" +msgstr "" + +#: whatsnew/3.12.rst:89 +msgid "Important deprecations, removals or restrictions:" +msgstr "" + +#: whatsnew/3.12.rst:91 +msgid ":pep:`623`: Remove wstr from Unicode" +msgstr "" + +#: whatsnew/3.12.rst:93 +msgid "" +":pep:`632`: Remove the ``distutils`` package. See `the migration guide " +"`_ for advice on its " +"replacement." +msgstr "" + +#: whatsnew/3.12.rst:98 +msgid "Improved Error Messages" +msgstr "" + +#: whatsnew/3.12.rst:100 +msgid "" +"Modules from the standard library are now potentially suggested as part of " +"the error messages displayed by the interpreter when a :exc:`NameError` is " +"raised to the top level. Contributed by Pablo Galindo in :gh:`98254`." +msgstr "" + +#: whatsnew/3.12.rst:109 +msgid "" +"Improve the error suggestion for :exc:`NameError` exceptions for instances. " +"Now if a :exc:`NameError` is raised in a method and the instance has an " +"attribute that's exactly equal to the name in the exception, the suggestion " +"will include ``self.`` instead of the closest match in the method " +"scope. Contributed by Pablo Galindo in :gh:`99139`." +msgstr "" + +#: whatsnew/3.12.rst:130 +msgid "" +"Improve the :exc:`SyntaxError` error message when the user types ``import x " +"from y`` instead of ``from y import x``. Contributed by Pablo Galindo in :gh:" +"`98931`." +msgstr "" + +#: whatsnew/3.12.rst:140 +msgid "" +":exc:`ImportError` exceptions raised from failed ``from import " +"`` statements now include suggestions for the value of ```` " +"based on the available names in ````. Contributed by Pablo Galindo " +"in :gh:`91058`." +msgstr "" + +#: whatsnew/3.12.rst:1739 +msgid "New Features" +msgstr "" + +#: whatsnew/3.12.rst:156 +msgid "PEP 701: Syntactic formalization of f-strings" +msgstr "" + +#: whatsnew/3.12.rst:158 +msgid "" +":pep:`701` lifts some restrictions on the usage of f-strings. Expression " +"components inside f-strings can now be any valid Python expression including " +"backslashes, unicode escaped sequences, multi-line expressions, comments and " +"strings reusing the same quote as the containing f-string. Let's cover these " +"in detail:" +msgstr "" + +#: whatsnew/3.12.rst:163 +msgid "" +"Quote reuse: in Python 3.11, reusing the same quotes as the containing f-" +"string raises a :exc:`SyntaxError`, forcing the user to either use other " +"available quotes (like using double quotes or triple quotes if the f-string " +"uses single quotes). In Python 3.12, you can now do things like this:" +msgstr "" + +#: whatsnew/3.12.rst:172 +msgid "" +"Note that before this change there was no explicit limit in how f-strings " +"can be nested, but the fact that string quotes cannot be reused inside the " +"expression component of f-strings made it impossible to nest f-strings " +"arbitrarily. In fact, this is the most nested f-string that could be written:" +msgstr "" + +#: whatsnew/3.12.rst:180 +msgid "" +"As now f-strings can contain any valid Python expression inside expression " +"components, it is now possible to nest f-strings arbitrarily:" +msgstr "" + +#: whatsnew/3.12.rst:186 +msgid "" +"Multi-line expressions and comments: In Python 3.11, f-strings expressions " +"must be defined in a single line even if outside f-strings expressions could " +"span multiple lines (like literal lists being defined over multiple lines), " +"making them harder to read. In Python 3.12 you can now define expressions " +"spanning multiple lines and include comments on them:" +msgstr "" + +#: whatsnew/3.12.rst:199 +msgid "" +"Backslashes and unicode characters: before Python 3.12 f-string expressions " +"couldn't contain any ``\\`` character. This also affected unicode escaped " +"sequences (such as ``\\N{snowman}``) as these contain the ``\\N`` part that " +"previously could not be part of expression components of f-strings. Now, you " +"can define expressions like this:" +msgstr "" + +#: whatsnew/3.12.rst:212 +msgid "See :pep:`701` for more details." +msgstr "" + +#: whatsnew/3.12.rst:214 +msgid "" +"As a positive side-effect of how this feature has been implemented (by " +"parsing f-strings with the PEG parser (see :pep:`617`), now error messages " +"for f-strings are more precise and include the exact location of the error. " +"For example, in Python 3.11, the following f-string raises a :exc:" +"`SyntaxError`:" +msgstr "" + +#: whatsnew/3.12.rst:227 +msgid "" +"but the error message doesn't include the exact location of the error within " +"the line and also has the expression artificially surrounded by parentheses. " +"In Python 3.12, as f-strings are parsed with the PEG parser, error messages " +"can be more precise and show the entire line:" +msgstr "" + +#: whatsnew/3.12.rst:239 +msgid "" +"(Contributed by Pablo Galindo, Batuhan Taskaya, Lysandros Nikolaou, Cristián " +"Maureira-Fredes and Marta Gómez in :gh:`102856`. PEP written by Pablo " +"Galindo, Batuhan Taskaya, Lysandros Nikolaou and Marta Gómez)." +msgstr "" + +#: whatsnew/3.12.rst:246 +msgid "PEP 709: Comprehension inlining" +msgstr "" + +#: whatsnew/3.12.rst:248 +msgid "" +"Dictionary, list, and set comprehensions are now inlined, rather than " +"creating a new single-use function object for each execution of the " +"comprehension. This speeds up execution of a comprehension by up to 2x." +msgstr "" + +#: whatsnew/3.12.rst:252 +msgid "" +"Comprehension iteration variables remain isolated; they don't overwrite a " +"variable of the same name in the outer scope, nor are they visible after the " +"comprehension. This isolation is now maintained via stack/locals " +"manipulation, not via separate function scope." +msgstr "" + +#: whatsnew/3.12.rst:257 +msgid "Inlining does result in a few visible behavior changes:" +msgstr "" + +#: whatsnew/3.12.rst:259 +msgid "" +"There is no longer a separate frame for the comprehension in tracebacks, and " +"tracing/profiling no longer shows the comprehension as a function call." +msgstr "" + +#: whatsnew/3.12.rst:261 +msgid "" +"The :mod:`symtable` module will no longer produce child symbol tables for " +"each comprehension; instead, the comprehension's locals will be included in " +"the parent function's symbol table." +msgstr "" + +#: whatsnew/3.12.rst:264 +msgid "" +"Calling :func:`locals` inside a comprehension now includes variables from " +"outside the comprehension, and no longer includes the synthetic ``.0`` " +"variable for the comprehension \"argument\"." +msgstr "" + +#: whatsnew/3.12.rst:267 +msgid "" +"A comprehension iterating directly over ``locals()`` (e.g. ``[k for k in " +"locals()]``) may see \"RuntimeError: dictionary changed size during " +"iteration\" when run under tracing (e.g. code coverage measurement). This is " +"the same behavior already seen in e.g. ``for k in locals():``. To avoid the " +"error, first create a list of keys to iterate over: ``keys = list(locals()); " +"[k for k in keys]``." +msgstr "" + +#: whatsnew/3.12.rst:274 +msgid "Contributed by Carl Meyer and Vladimir Matveev in :pep:`709`." +msgstr "" + +#: whatsnew/3.12.rst:279 +msgid "PEP 688: Making the buffer protocol accessible in Python" +msgstr "" + +#: whatsnew/3.12.rst:281 +msgid "" +":pep:`688` introduces a way to use the :ref:`buffer protocol " +"` from Python code. Classes that implement the :meth:`~object." +"__buffer__` method are now usable as buffer types." +msgstr "" + +#: whatsnew/3.12.rst:285 +msgid "" +"The new :class:`collections.abc.Buffer` ABC provides a standard way to " +"represent buffer objects, for example in type annotations. The new :class:" +"`inspect.BufferFlags` enum represents the flags that can be used to " +"customize buffer creation. (Contributed by Jelle Zijlstra in :gh:`102500`.)" +msgstr "" + +#: whatsnew/3.12.rst:294 +msgid "PEP 684: A Per-Interpreter GIL" +msgstr "" + +#: whatsnew/3.12.rst:296 +msgid "" +"Sub-interpreters may now be created with a unique GIL per interpreter. This " +"allows Python programs to take full advantage of multiple CPU cores." +msgstr "" + +#: whatsnew/3.12.rst:300 +msgid "" +"Use the new :c:func:`Py_NewInterpreterFromConfig` function to create an " +"interpreter with its own GIL::" +msgstr "" + +#: whatsnew/3.12.rst:314 +msgid "" +"For further examples how to use the C-API for sub-interpreters with a per-" +"interpreter GIL, see :source:`Modules/_xxsubinterpretersmodule.c`." +msgstr "" + +#: whatsnew/3.12.rst:317 +msgid "A Python API is anticipated for 3.13. (See :pep:`554`.)" +msgstr "" + +#: whatsnew/3.12.rst:319 +msgid "(Contributed by Eric Snow in :gh:`104210`, etc.)" +msgstr "" + +#: whatsnew/3.12.rst:324 +msgid "PEP 669: Low impact monitoring for CPython" +msgstr "" + +#: whatsnew/3.12.rst:326 +msgid "" +"CPython 3.12 now supports the ability to monitor calls, returns, lines, " +"exceptions and other events using instrumentation. This means that you only " +"pay for what you use, providing support for near-zero overhead debuggers and " +"coverage tools." +msgstr "" + +#: whatsnew/3.12.rst:331 +msgid "See :mod:`sys.monitoring` for details." +msgstr "" + +#: whatsnew/3.12.rst:335 +msgid "New Features Related to Type Hints" +msgstr "" + +#: whatsnew/3.12.rst:337 +msgid "" +"This section covers major changes affecting :pep:`484` type hints and the :" +"mod:`typing` module." +msgstr "" + +#: whatsnew/3.12.rst:343 +msgid "PEP 692: Using ``TypedDict`` for more precise ``**kwargs`` typing" +msgstr "" + +#: whatsnew/3.12.rst:345 +msgid "" +"Typing ``**kwargs`` in a function signature as introduced by :pep:`484` " +"allowed for valid annotations only in cases where all of the ``**kwargs`` " +"were of the same type." +msgstr "" + +#: whatsnew/3.12.rst:349 +msgid "" +"This PEP specifies a more precise way of typing ``**kwargs`` by relying on " +"typed dictionaries::" +msgstr "" + +#: whatsnew/3.12.rst:360 +msgid "See :pep:`692` for more details." +msgstr "" + +#: whatsnew/3.12.rst:362 +msgid "(Contributed by Franek Magiera in :gh:`103629`.)" +msgstr "" + +#: whatsnew/3.12.rst:367 +msgid "PEP 698: Override Decorator for Static Typing" +msgstr "" + +#: whatsnew/3.12.rst:369 +msgid "" +"A new decorator :func:`typing.override` has been added to the :mod:`typing` " +"module. It indicates to type checkers that the method is intended to " +"override a method in a superclass. This allows type checkers to catch " +"mistakes where a method that is intended to override something in a base " +"class does not in fact do so." +msgstr "" + +#: whatsnew/3.12.rst:375 +msgid "Example::" +msgstr "" + +#: whatsnew/3.12.rst:393 +msgid "(Contributed by Steven Troxler in :gh:`101561`.)" +msgstr "" + +#: whatsnew/3.12.rst:398 +msgid "PEP 695: Type Parameter Syntax" +msgstr "" + +#: whatsnew/3.12.rst:400 +msgid "" +"Generic classes and functions under :pep:`484` were declared using a verbose " +"syntax that left the scope of type parameters unclear and required explicit " +"declarations of variance." +msgstr "" + +#: whatsnew/3.12.rst:404 +msgid "" +":pep:`695` introduces a new, more compact and explicit way to create :ref:" +"`generic classes ` and :ref:`functions `::" +msgstr "" + +#: whatsnew/3.12.rst:417 +msgid "" +"In addition, the PEP introduces a new way to declare :ref:`type aliases " +"` using the :keyword:`type` statement, which creates an " +"instance of :class:`~typing.TypeAliasType`::" +msgstr "" + +#: whatsnew/3.12.rst:423 +msgid "Type aliases can also be :ref:`generic `::" +msgstr "" + +#: whatsnew/3.12.rst:427 +msgid "" +"The new syntax allows declaring :class:`~typing.TypeVarTuple` and :class:" +"`~typing.ParamSpec` parameters, as well as :class:`~typing.TypeVar` " +"parameters with bounds or constraints::" +msgstr "" + +#: whatsnew/3.12.rst:436 +msgid "" +"The value of type aliases and the bound and constraints of type variables " +"created through this syntax are evaluated only on demand (see :ref:`lazy-" +"evaluation`). This means type aliases are able to refer to other types " +"defined later in the file." +msgstr "" + +#: whatsnew/3.12.rst:441 +msgid "" +"Type parameters declared through a type parameter list are visible within " +"the scope of the declaration and any nested scopes, but not in the outer " +"scope. For example, they can be used in the type annotations for the methods " +"of a generic class or in the class body. However, they cannot be used in the " +"module scope after the class is defined. See :ref:`type-params` for a " +"detailed description of the runtime semantics of type parameters." +msgstr "" + +#: whatsnew/3.12.rst:448 +msgid "" +"In order to support these scoping semantics, a new kind of scope is " +"introduced, the :ref:`annotation scope `. Annotation " +"scopes behave for the most part like function scopes, but interact " +"differently with enclosing class scopes. In Python 3.13, :term:`annotations " +"` will also be evaluated in annotation scopes." +msgstr "" + +#: whatsnew/3.12.rst:454 +msgid "See :pep:`695` for more details." +msgstr "" + +#: whatsnew/3.12.rst:456 +msgid "" +"(PEP written by Eric Traut. Implementation by Jelle Zijlstra, Eric Traut, " +"and others in :gh:`103764`.)" +msgstr "" + +#: whatsnew/3.12.rst:460 +msgid "Other Language Changes" +msgstr "" + +#: whatsnew/3.12.rst:462 +msgid "" +"Add :ref:`perf_profiling` through the new environment variable :envvar:" +"`PYTHONPERFSUPPORT`, the new command-line option :option:`-X perf <-X>`, as " +"well as the new :func:`sys.activate_stack_trampoline`, :func:`sys." +"deactivate_stack_trampoline`, and :func:`sys.is_stack_trampoline_active` " +"APIs. (Design by Pablo Galindo. Contributed by Pablo Galindo and Christian " +"Heimes with contributions from Gregory P. Smith [Google] and Mark Shannon " +"in :gh:`96123`.)" +msgstr "" + +#: whatsnew/3.12.rst:472 +msgid "" +"The extraction methods in :mod:`tarfile`, and :func:`shutil.unpack_archive`, " +"have a new a *filter* argument that allows limiting tar features than may be " +"surprising or dangerous, such as creating files outside the destination " +"directory. See :ref:`tarfile-extraction-filter` for details. In Python 3.14, " +"the default will switch to ``'data'``. (Contributed by Petr Viktorin in :pep:" +"`706`.)" +msgstr "" + +#: whatsnew/3.12.rst:480 +msgid "" +":class:`types.MappingProxyType` instances are now hashable if the underlying " +"mapping is hashable. (Contributed by Serhiy Storchaka in :gh:`87995`.)" +msgstr "" + +#: whatsnew/3.12.rst:484 +msgid "" +":class:`memoryview` now supports the half-float type (the \"e\" format " +"code). (Contributed by Dong-hee Na and Antoine Pitrou in :gh:`90751`.)" +msgstr "" + +#: whatsnew/3.12.rst:487 +msgid "" +"The parser now raises :exc:`SyntaxError` when parsing source code containing " +"null bytes. (Contributed by Pablo Galindo in :gh:`96670`.)" +msgstr "" + +#: whatsnew/3.12.rst:490 +msgid "" +":func:`ast.parse` now raises :exc:`SyntaxError` instead of :exc:`ValueError` " +"when parsing source code containing null bytes. (Contributed by Pablo " +"Galindo in :gh:`96670`.)" +msgstr "" + +#: whatsnew/3.12.rst:494 +msgid "" +"The Garbage Collector now runs only on the eval breaker mechanism of the " +"Python bytecode evaluation loop instead of object allocations. The GC can " +"also run when :c:func:`PyErr_CheckSignals` is called so C extensions that " +"need to run for a long time without executing any Python code also have a " +"chance to execute the GC periodically. (Contributed by Pablo Galindo in :gh:" +"`97922`.)" +msgstr "" + +#: whatsnew/3.12.rst:501 +msgid "" +"A backslash-character pair that is not a valid escape sequence now generates " +"a :exc:`SyntaxWarning`, instead of :exc:`DeprecationWarning`. For example, " +"``re.compile(\"\\d+\\.\\d+\")`` now emits a :exc:`SyntaxWarning` " +"(``\"\\d\"`` is an invalid escape sequence), use raw strings for regular " +"expression: ``re.compile(r\"\\d+\\.\\d+\")``. In a future Python version, :" +"exc:`SyntaxError` will eventually be raised, instead of :exc:" +"`SyntaxWarning`. (Contributed by Victor Stinner in :gh:`98401`.)" +msgstr "" + +#: whatsnew/3.12.rst:510 +msgid "" +"Octal escapes with value larger than ``0o377`` (ex: ``\"\\477\"``), " +"deprecated in Python 3.11, now produce a :exc:`SyntaxWarning`, instead of :" +"exc:`DeprecationWarning`. In a future Python version they will be eventually " +"a :exc:`SyntaxError`. (Contributed by Victor Stinner in :gh:`98401`.)" +msgstr "" + +#: whatsnew/3.12.rst:516 +msgid "" +"All builtin and extension callables expecting boolean parameters now accept " +"arguments of any type instead of just :class:`bool` and :class:`int`. " +"(Contributed by Serhiy Storchaka in :gh:`60203`.)" +msgstr "" + +#: whatsnew/3.12.rst:520 +msgid "" +"Variables used in the target part of comprehensions that are not stored to " +"can now be used in assignment expressions (``:=``). For example, in ``[(b := " +"1) for a, b.prop in some_iter]``, the assignment to ``b`` is now allowed. " +"Note that assigning to variables stored to in the target part of " +"comprehensions (like ``a``) is still disallowed, as per :pep:`572`. " +"(Contributed by Nikita Sobolev in :gh:`100581`.)" +msgstr "" + +#: whatsnew/3.12.rst:527 +msgid "" +":class:`slice` objects are now hashable, allowing them to be used as dict " +"keys and set items. (Contributed by Will Bradshaw, Furkan Onder, and Raymond " +"Hettinger in :gh:`101264`.)" +msgstr "" + +#: whatsnew/3.12.rst:530 +msgid "" +":func:`sum` now uses Neumaier summation to improve accuracy when summing " +"floats or mixed ints and floats. (Contributed by Raymond Hettinger in :gh:" +"`100425`.)" +msgstr "" + +#: whatsnew/3.12.rst:534 +msgid "" +"Exceptions raised in a typeobject's ``__set_name__`` method are no longer " +"wrapped by a :exc:`RuntimeError`. Context information is added to the " +"exception as a :pep:`678` note. (Contributed by Irit Katriel in :gh:`77757`.)" +msgstr "" + +#: whatsnew/3.12.rst:538 +msgid "" +"When a ``try-except*`` construct handles the entire :exc:`ExceptionGroup` " +"and raises one other exception, that exception is no longer wrapped in an :" +"exc:`ExceptionGroup`. Also changed in version 3.11.4. (Contributed by Irit " +"Katriel in :gh:`103590`.)" +msgstr "" + +#: whatsnew/3.12.rst:545 +msgid "New Modules" +msgstr "" + +#: whatsnew/3.12.rst:547 +msgid "None." +msgstr "" + +#: whatsnew/3.12.rst:551 +msgid "Improved Modules" +msgstr "" + +#: whatsnew/3.12.rst:554 +msgid "array" +msgstr "" + +#: whatsnew/3.12.rst:556 +msgid "" +"The :class:`array.array` class now supports subscripting, making it a :term:" +"`generic type`. (Contributed by Jelle Zijlstra in :gh:`98658`.)" +msgstr "" + +#: whatsnew/3.12.rst:560 +msgid "asyncio" +msgstr "" + +#: whatsnew/3.12.rst:562 +msgid "" +"The performance of writing to sockets in :mod:`asyncio` has been " +"significantly improved. ``asyncio`` now avoids unnecessary copying when " +"writing to sockets and uses :meth:`~socket.socket.sendmsg` if the platform " +"supports it. (Contributed by Kumar Aditya in :gh:`91166`.)" +msgstr "" + +#: whatsnew/3.12.rst:567 +msgid "" +"Added :func:`asyncio.eager_task_factory` and :func:`asyncio." +"create_eager_task_factory` functions to allow opting an event loop in to " +"eager task execution, making some use-cases 2x to 5x faster. (Contributed by " +"Jacob Bower & Itamar O in :gh:`102853`, :gh:`104140`, and :gh:`104138`)" +msgstr "" + +#: whatsnew/3.12.rst:572 +msgid "" +"On Linux, :mod:`asyncio` uses :class:`~asyncio.PidfdChildWatcher` by default " +"if :func:`os.pidfd_open` is available and functional instead of :class:" +"`~asyncio.ThreadedChildWatcher`. (Contributed by Kumar Aditya in :gh:" +"`98024`.)" +msgstr "" + +#: whatsnew/3.12.rst:577 +msgid "" +"The child watcher classes :class:`~asyncio.MultiLoopChildWatcher`, :class:" +"`~asyncio.FastChildWatcher`, :class:`~asyncio.AbstractChildWatcher` and :" +"class:`~asyncio.SafeChildWatcher` are deprecated and will be removed in " +"Python 3.14. It is recommended to not manually configure a child watcher as " +"the event loop now uses the best available child watcher for each platform (:" +"class:`~asyncio.PidfdChildWatcher` if supported and :class:`~asyncio." +"ThreadedChildWatcher` otherwise). (Contributed by Kumar Aditya in :gh:" +"`94597`.)" +msgstr "" + +#: whatsnew/3.12.rst:586 +msgid "" +":func:`asyncio.set_child_watcher`, :func:`asyncio.get_child_watcher`, :meth:" +"`asyncio.AbstractEventLoopPolicy.set_child_watcher` and :meth:`asyncio." +"AbstractEventLoopPolicy.get_child_watcher` are deprecated and will be " +"removed in Python 3.14. (Contributed by Kumar Aditya in :gh:`94597`.)" +msgstr "" + +#: whatsnew/3.12.rst:592 +msgid "" +"Add *loop_factory* parameter to :func:`asyncio.run` to allow specifying a " +"custom event loop factory. (Contributed by Kumar Aditya in :gh:`99388`.)" +msgstr "" + +#: whatsnew/3.12.rst:596 +msgid "" +"Add C implementation of :func:`asyncio.current_task` for 4x-6x speedup. " +"(Contributed by Itamar Ostricher and Pranav Thulasiram Bhat in :gh:`100344`.)" +msgstr "" + +#: whatsnew/3.12.rst:599 +msgid "" +":func:`asyncio.iscoroutine` now returns ``False`` for generators as :mod:" +"`asyncio` does not support legacy generator-based coroutines. (Contributed " +"by Kumar Aditya in :gh:`102748`.)" +msgstr "" + +#: whatsnew/3.12.rst:603 +msgid "" +":func:`asyncio.wait` and :func:`asyncio.as_completed` now accepts generators " +"yielding tasks. (Contributed by Kumar Aditya in :gh:`78530`.)" +msgstr "" + +#: whatsnew/3.12.rst:608 +msgid "calendar" +msgstr "" + +#: whatsnew/3.12.rst:610 +msgid "" +"Add enums :data:`~calendar.Month` and :data:`~calendar.Day`. (Contributed by " +"Prince Roshan in :gh:`103636`.)" +msgstr "" + +#: whatsnew/3.12.rst:614 +msgid "csv" +msgstr "" + +#: whatsnew/3.12.rst:616 +msgid "" +"Add :const:`~csv.QUOTE_NOTNULL` and :const:`~csv.QUOTE_STRINGS` flags to " +"provide finer grained control of ``None`` and empty strings by :class:`~csv." +"writer` objects." +msgstr "" + +#: whatsnew/3.12.rst:621 +msgid "dis" +msgstr "" + +#: whatsnew/3.12.rst:623 +msgid "" +"Pseudo instruction opcodes (which are used by the compiler but do not appear " +"in executable bytecode) are now exposed in the :mod:`dis` module. :opcode:" +"`HAVE_ARGUMENT` is still relevant to real opcodes, but it is not useful for " +"pseudo instructions. Use the new :data:`~dis.hasarg` collection instead. " +"(Contributed by Irit Katriel in :gh:`94216`.)" +msgstr "" + +#: whatsnew/3.12.rst:632 +msgid "fractions" +msgstr "" + +#: whatsnew/3.12.rst:634 +msgid "" +"Objects of type :class:`fractions.Fraction` now support float-style " +"formatting. (Contributed by Mark Dickinson in :gh:`100161`.)" +msgstr "" + +#: whatsnew/3.12.rst:638 +msgid "importlib.resources" +msgstr "" + +#: whatsnew/3.12.rst:640 +msgid "" +":func:`importlib.resources.as_file` now supports resource directories. " +"(Contributed by Jason R. Coombs in :gh:`97930`.)" +msgstr "" + +#: whatsnew/3.12.rst:644 +msgid "inspect" +msgstr "" + +#: whatsnew/3.12.rst:646 +msgid "" +"Add :func:`inspect.markcoroutinefunction` to mark sync functions that return " +"a :term:`coroutine` for use with :func:`inspect.iscoroutinefunction`. " +"(Contributed Carlton Gibson in :gh:`99247`.)" +msgstr "" + +#: whatsnew/3.12.rst:650 +msgid "" +"Add :func:`inspect.getasyncgenstate` and :func:`inspect.getasyncgenlocals` " +"for determining the current state of asynchronous generators. (Contributed " +"by Thomas Krennwallner in :issue:`35759`.)" +msgstr "" + +#: whatsnew/3.12.rst:654 +msgid "" +"The performance of :func:`inspect.getattr_static` has been considerably " +"improved. Most calls to the function should be at least 2x faster than they " +"were in Python 3.11, and some may be 6x faster or more. (Contributed by Alex " +"Waygood in :gh:`103193`.)" +msgstr "" + +#: whatsnew/3.12.rst:660 +msgid "itertools" +msgstr "" + +#: whatsnew/3.12.rst:662 +msgid "" +"Added :class:`itertools.batched()` for collecting into even-sized tuples " +"where the last batch may be shorter than the rest. (Contributed by Raymond " +"Hettinger in :gh:`98363`.)" +msgstr "" + +#: whatsnew/3.12.rst:667 +msgid "math" +msgstr "" + +#: whatsnew/3.12.rst:669 +msgid "" +"Added :func:`math.sumprod` for computing a sum of products. (Contributed by " +"Raymond Hettinger in :gh:`100485`.)" +msgstr "" + +#: whatsnew/3.12.rst:672 +msgid "" +"Extended :func:`math.nextafter` to include a *steps* argument for moving up " +"or down multiple steps at a time. (By Matthias Goergens, Mark Dickinson, and " +"Raymond Hettinger in :gh:`94906`.)" +msgstr "" + +#: whatsnew/3.12.rst:677 +msgid "os" +msgstr "" + +#: whatsnew/3.12.rst:679 +msgid "" +"Add :const:`os.PIDFD_NONBLOCK` to open a file descriptor for a process with :" +"func:`os.pidfd_open` in non-blocking mode. (Contributed by Kumar Aditya in :" +"gh:`93312`.)" +msgstr "" + +#: whatsnew/3.12.rst:683 +msgid "" +":class:`os.DirEntry` now includes an :meth:`os.DirEntry.is_junction` method " +"to check if the entry is a junction. (Contributed by Charles Machalow in :gh:" +"`99547`.)" +msgstr "" + +#: whatsnew/3.12.rst:687 +msgid "" +"Add :func:`os.listdrives`, :func:`os.listvolumes` and :func:`os.listmounts` " +"functions on Windows for enumerating drives, volumes and mount points. " +"(Contributed by Steve Dower in :gh:`102519`.)" +msgstr "" + +#: whatsnew/3.12.rst:691 +msgid "" +":func:`os.stat` and :func:`os.lstat` are now more accurate on Windows. The " +"``st_birthtime`` field will now be filled with the creation time of the " +"file, and ``st_ctime`` is deprecated but still contains the creation time " +"(but in the future will return the last metadata change, for consistency " +"with other platforms). ``st_dev`` may be up to 64 bits and ``st_ino`` up to " +"128 bits depending on your file system, and ``st_rdev`` is always set to " +"zero rather than incorrect values. Both functions may be significantly " +"faster on newer releases of Windows. (Contributed by Steve Dower in :gh:" +"`99726`.)" +msgstr "" + +#: whatsnew/3.12.rst:702 +msgid "os.path" +msgstr "" + +#: whatsnew/3.12.rst:704 +msgid "" +"Add :func:`os.path.isjunction` to check if a given path is a junction. " +"(Contributed by Charles Machalow in :gh:`99547`.)" +msgstr "" + +#: whatsnew/3.12.rst:707 +msgid "" +"Add :func:`os.path.splitroot` to split a path into a triad ``(drive, root, " +"tail)``. (Contributed by Barney Gale in :gh:`101000`.)" +msgstr "" + +#: whatsnew/3.12.rst:711 +msgid "pathlib" +msgstr "" + +#: whatsnew/3.12.rst:713 +msgid "" +"Add support for subclassing :class:`pathlib.PurePath` and :class:`~pathlib." +"Path`, plus their Posix- and Windows-specific variants. Subclasses may " +"override the :meth:`~pathlib.PurePath.with_segments` method to pass " +"information between path instances." +msgstr "" + +#: whatsnew/3.12.rst:718 +msgid "" +"Add :meth:`~pathlib.Path.walk` for walking the directory trees and " +"generating all file or directory names within them, similar to :func:`os." +"walk`. (Contributed by Stanislav Zmiev in :gh:`90385`.)" +msgstr "" + +#: whatsnew/3.12.rst:722 +msgid "" +"Add *walk_up* optional parameter to :meth:`pathlib.PurePath.relative_to` to " +"allow the insertion of ``..`` entries in the result; this behavior is more " +"consistent with :func:`os.path.relpath`. (Contributed by Domenico Ragusa in :" +"issue:`40358`.)" +msgstr "" + +#: whatsnew/3.12.rst:727 +msgid "" +"Add :meth:`pathlib.Path.is_junction` as a proxy to :func:`os.path." +"isjunction`. (Contributed by Charles Machalow in :gh:`99547`.)" +msgstr "" + +#: whatsnew/3.12.rst:730 +msgid "" +"Add *case_sensitive* optional parameter to :meth:`pathlib.Path.glob`, :meth:" +"`pathlib.Path.rglob` and :meth:`pathlib.PurePath.match` for matching the " +"path's case sensitivity, allowing for more precise control over the matching " +"process." +msgstr "" + +#: whatsnew/3.12.rst:735 +msgid "pdb" +msgstr "" + +#: whatsnew/3.12.rst:737 +msgid "" +"Add convenience variables to hold values temporarily for debug session and " +"provide quick access to values like the current frame or the return value. " +"(Contributed by Tian Gao in :gh:`103693`.)" +msgstr "" + +#: whatsnew/3.12.rst:743 +msgid "random" +msgstr "" + +#: whatsnew/3.12.rst:745 +msgid "" +"Added :func:`random.binomialvariate`. (Contributed by Raymond Hettinger in :" +"gh:`81620`.)" +msgstr "" + +#: whatsnew/3.12.rst:748 +msgid "" +"Added a default of ``lamb=1.0`` to :func:`random.expovariate`. (Contributed " +"by Raymond Hettinger in :gh:`100234`.)" +msgstr "" + +#: whatsnew/3.12.rst:752 +msgid "shutil" +msgstr "" + +#: whatsnew/3.12.rst:754 +msgid "" +":func:`shutil.make_archive` now passes the *root_dir* argument to custom " +"archivers which support it. In this case it no longer temporarily changes " +"the current working directory of the process to *root_dir* to perform " +"archiving. (Contributed by Serhiy Storchaka in :gh:`74696`.)" +msgstr "" + +#: whatsnew/3.12.rst:760 +msgid "" +":func:`shutil.rmtree` now accepts a new argument *onexc* which is an error " +"handler like *onerror* but which expects an exception instance rather than a " +"*(typ, val, tb)* triplet. *onerror* is deprecated and will be removed in " +"Python 3.14. (Contributed by Irit Katriel in :gh:`102828`.)" +msgstr "" + +#: whatsnew/3.12.rst:766 +msgid "" +":func:`shutil.which` now consults the *PATHEXT* environment variable to find " +"matches within *PATH* on Windows even when the given *cmd* includes a " +"directory component. (Contributed by Charles Machalow in :gh:`103179`.)" +msgstr "" + +#: whatsnew/3.12.rst:771 +msgid "" +":func:`shutil.which` will call ``NeedCurrentDirectoryForExePathW`` when " +"querying for executables on Windows to determine if the current working " +"directory should be prepended to the search path. (Contributed by Charles " +"Machalow in :gh:`103179`.)" +msgstr "" + +#: whatsnew/3.12.rst:776 +msgid "" +":func:`shutil.which` will return a path matching the *cmd* with a component " +"from ``PATHEXT`` prior to a direct match elsewhere in the search path on " +"Windows. (Contributed by Charles Machalow in :gh:`103179`.)" +msgstr "" + +#: whatsnew/3.12.rst:1461 +msgid "sqlite3" +msgstr "" + +#: whatsnew/3.12.rst:784 +msgid "" +"Add a :ref:`command-line interface `. (Contributed by Erlend E. " +"Aasland in :gh:`77617`.)" +msgstr "" + +#: whatsnew/3.12.rst:787 +msgid "" +"Add the :attr:`~sqlite3.Connection.autocommit` attribute to :class:`~sqlite3." +"Connection` and the *autocommit* parameter to :func:`~sqlite3.connect` to " +"control :pep:`249`-compliant :ref:`transaction handling `. (Contributed by Erlend E. Aasland in :gh:`83638`.)" +msgstr "" + +#: whatsnew/3.12.rst:794 +msgid "" +"Add *entrypoint* keyword-only parameter to :meth:`~sqlite3.Connection." +"load_extension`, for overriding the SQLite extension entry point. " +"(Contributed by Erlend E. Aasland in :gh:`103015`.)" +msgstr "" + +#: whatsnew/3.12.rst:799 +msgid "" +"Add :meth:`~sqlite3.Connection.getconfig` and :meth:`~sqlite3.Connection." +"setconfig` to :class:`~sqlite3.Connection` to make configuration changes to " +"a database connection. (Contributed by Erlend E. Aasland in :gh:`103489`.)" +msgstr "" + +#: whatsnew/3.12.rst:805 +msgid "statistics" +msgstr "" + +#: whatsnew/3.12.rst:807 +msgid "" +"Extended :func:`statistics.correlation` to include as a ``ranked`` method " +"for computing the Spearman correlation of ranked data. (Contributed by " +"Raymond Hettinger in :gh:`95861`.)" +msgstr "" + +#: whatsnew/3.12.rst:812 +msgid "sys" +msgstr "" + +#: whatsnew/3.12.rst:814 +msgid "" +"Add :func:`sys.activate_stack_trampoline` and :func:`sys." +"deactivate_stack_trampoline` for activating and deactivating stack profiler " +"trampolines, and :func:`sys.is_stack_trampoline_active` for querying if " +"stack profiler trampolines are active. (Contributed by Pablo Galindo and " +"Christian Heimes with contributions from Gregory P. Smith [Google] and Mark " +"Shannon in :gh:`96123`.)" +msgstr "" + +#: whatsnew/3.12.rst:823 +msgid "" +"Add :data:`sys.last_exc` which holds the last unhandled exception that was " +"raised (for post-mortem debugging use cases). Deprecate the three fields " +"that have the same information in its legacy form: :data:`sys.last_type`, :" +"data:`sys.last_value` and :data:`sys.last_traceback`. (Contributed by Irit " +"Katriel in :gh:`102778`.)" +msgstr "" + +#: whatsnew/3.12.rst:1647 +msgid "" +":func:`sys._current_exceptions` now returns a mapping from thread-id to an " +"exception instance, rather than to a ``(typ, exc, tb)`` tuple. (Contributed " +"by Irit Katriel in :gh:`103176`.)" +msgstr "" + +#: whatsnew/3.12.rst:833 +msgid "" +":func:`sys.setrecursionlimit` and :func:`sys.getrecursionlimit`. The " +"recursion limit now applies only to Python code. Builtin functions do not " +"use the recursion limit, but are protected by a different mechanism that " +"prevents recursion from causing a virtual machine crash." +msgstr "" + +#: whatsnew/3.12.rst:839 +msgid "tempfile" +msgstr "" + +#: whatsnew/3.12.rst:841 +msgid "" +"The :class:`tempfile.NamedTemporaryFile` function has a new optional " +"parameter *delete_on_close* (Contributed by Evgeny Zorin in :gh:`58451`.)" +msgstr "" + +#: whatsnew/3.12.rst:843 +msgid "" +":func:`tempfile.mkdtemp` now always returns an absolute path, even if the " +"argument provided to the *dir* parameter is a relative path." +msgstr "" + +#: whatsnew/3.12.rst:849 +msgid "threading" +msgstr "" + +#: whatsnew/3.12.rst:851 +msgid "" +"Add :func:`threading.settrace_all_threads` and :func:`threading." +"setprofile_all_threads` that allow to set tracing and profiling functions in " +"all running threads in addition to the calling one. (Contributed by Pablo " +"Galindo in :gh:`93503`.)" +msgstr "" + +#: whatsnew/3.12.rst:857 +msgid "tkinter" +msgstr "" + +#: whatsnew/3.12.rst:859 +msgid "" +"``tkinter.Canvas.coords()`` now flattens its arguments. It now accepts not " +"only coordinates as separate arguments (``x1, y1, x2, y2, ...``) and a " +"sequence of coordinates (``[x1, y1, x2, y2, ...]``), but also coordinates " +"grouped in pairs (``(x1, y1), (x2, y2), ...`` and ``[(x1, y1), (x2, " +"y2), ...]``), like ``create_*()`` methods. (Contributed by Serhiy Storchaka " +"in :gh:`94473`.)" +msgstr "" + +#: whatsnew/3.12.rst:868 +msgid "tokenize" +msgstr "" + +#: whatsnew/3.12.rst:870 +msgid "" +"The :mod:`tokenize` module includes the changes introduced in :pep:`701`. " +"( Contributed by Marta Gómez Macías and Pablo Galindo in :gh:`102856`.) See :" +"ref:`whatsnew312-porting-to-python312` for more information on the changes " +"to the :mod:`tokenize` module." +msgstr "" + +#: whatsnew/3.12.rst:876 +msgid "types" +msgstr "" + +#: whatsnew/3.12.rst:878 +msgid "" +"Add :func:`types.get_original_bases` to allow for further introspection of :" +"ref:`user-defined-generics` when subclassed. (Contributed by James Hilton-" +"Balfe and Alex Waygood in :gh:`101827`.)" +msgstr "" + +#: whatsnew/3.12.rst:883 +msgid "typing" +msgstr "" + +#: whatsnew/3.12.rst:885 +msgid "" +":func:`isinstance` checks against :func:`runtime-checkable protocols ` now use :func:`inspect.getattr_static` rather than :func:" +"`hasattr` to lookup whether attributes exist. This means that descriptors " +"and :meth:`~object.__getattr__` methods are no longer unexpectedly evaluated " +"during ``isinstance()`` checks against runtime-checkable protocols. However, " +"it may also mean that some objects which used to be considered instances of " +"a runtime-checkable protocol may no longer be considered instances of that " +"protocol on Python 3.12+, and vice versa. Most users are unlikely to be " +"affected by this change. (Contributed by Alex Waygood in :gh:`102433`.)" +msgstr "" + +#: whatsnew/3.12.rst:896 +msgid "" +"The members of a runtime-checkable protocol are now considered \"frozen\" at " +"runtime as soon as the class has been created. Monkey-patching attributes " +"onto a runtime-checkable protocol will still work, but will have no impact " +"on :func:`isinstance` checks comparing objects to the protocol. For example::" +msgstr "" + +#: whatsnew/3.12.rst:918 +msgid "" +"This change was made in order to speed up ``isinstance()`` checks against " +"runtime-checkable protocols." +msgstr "" + +#: whatsnew/3.12.rst:921 +msgid "" +"The performance profile of :func:`isinstance` checks against :func:`runtime-" +"checkable protocols ` has changed significantly. " +"Most ``isinstance()`` checks against protocols with only a few members " +"should be at least 2x faster than in 3.11, and some may be 20x faster or " +"more. However, ``isinstance()`` checks against protocols with fourteen or " +"more members may be slower than in Python 3.11. (Contributed by Alex Waygood " +"in :gh:`74690` and :gh:`103193`.)" +msgstr "" + +#: whatsnew/3.12.rst:929 +msgid "" +"All :data:`typing.TypedDict` and :data:`typing.NamedTuple` classes now have " +"the ``__orig_bases__`` attribute. (Contributed by Adrian Garcia Badaracco " +"in :gh:`103699`.)" +msgstr "" + +#: whatsnew/3.12.rst:933 +msgid "" +"Add ``frozen_default`` parameter to :func:`typing.dataclass_transform`. " +"(Contributed by Erik De Bonte in :gh:`99957`.)" +msgstr "" + +#: whatsnew/3.12.rst:937 +msgid "unicodedata" +msgstr "" + +#: whatsnew/3.12.rst:939 +msgid "" +"The Unicode database has been updated to version 15.0.0. (Contributed by " +"Benjamin Peterson in :gh:`96734`)." +msgstr "" + +#: whatsnew/3.12.rst:1502 +msgid "unittest" +msgstr "" + +#: whatsnew/3.12.rst:945 +msgid "" +"Added ``--durations`` command line option, showing the N slowest test cases::" +msgstr "" + +#: whatsnew/3.12.rst:961 +msgid "(Contributed by Giampaolo Rodola in :issue:`4080`)" +msgstr "" + +#: whatsnew/3.12.rst:964 +msgid "uuid" +msgstr "" + +#: whatsnew/3.12.rst:966 +msgid "" +"Add a :ref:`command-line interface `. (Contributed by Adam Chhina " +"in :gh:`88597`.)" +msgstr "" + +#: whatsnew/3.12.rst:971 +msgid "Optimizations" +msgstr "" + +#: whatsnew/3.12.rst:973 +msgid "" +"Removed ``wstr`` and ``wstr_length`` members from Unicode objects. It " +"reduces object size by 8 or 16 bytes on 64bit platform. (:pep:`623`) " +"(Contributed by Inada Naoki in :gh:`92536`.)" +msgstr "" + +#: whatsnew/3.12.rst:977 +msgid "" +"Added experimental support for using the BOLT binary optimizer in the build " +"process, which improves performance by 1-5%. (Contributed by Kevin " +"Modzelewski in :gh:`90536` and tuned by Dong-hee Na in :gh:`101525`)" +msgstr "" + +#: whatsnew/3.12.rst:981 +msgid "" +"Speed up the regular expression substitution (functions :func:`re.sub` and :" +"func:`re.subn` and corresponding :class:`!re.Pattern` methods) for " +"replacement strings containing group references by 2--3 times. (Contributed " +"by Serhiy Storchaka in :gh:`91524`.)" +msgstr "" + +#: whatsnew/3.12.rst:986 +msgid "" +"Speed up :class:`asyncio.Task` creation by deferring expensive string " +"formatting. (Contributed by Itamar O in :gh:`103793`.)" +msgstr "" + +#: whatsnew/3.12.rst:989 +msgid "" +"The :func:`tokenize.tokenize` and :func:`tokenize.generate_tokens` functions " +"are up to 64% faster as a side effect of the changes required to cover :pep:" +"`701` in the :mod:`tokenize` module. (Contributed by Marta Gómez Macías and " +"Pablo Galindo in :gh:`102856`.)" +msgstr "" + +#: whatsnew/3.12.rst:994 +msgid "" +"Speed up :func:`super` method calls and attribute loads via the new :opcode:" +"`LOAD_SUPER_ATTR` instruction. (Contributed by Carl Meyer and Vladimir " +"Matveev in :gh:`103497`.)" +msgstr "" + +#: whatsnew/3.12.rst:1000 +msgid "CPython bytecode changes" +msgstr "" + +#: whatsnew/3.12.rst:1002 +msgid "" +"Remove the :opcode:`LOAD_METHOD` instruction. It has been merged into :" +"opcode:`LOAD_ATTR`. :opcode:`LOAD_ATTR` will now behave like the old :opcode:" +"`LOAD_METHOD` instruction if the low bit of its oparg is set. (Contributed " +"by Ken Jin in :gh:`93429`.)" +msgstr "" + +#: whatsnew/3.12.rst:1007 +msgid "" +"Remove the :opcode:`!JUMP_IF_FALSE_OR_POP` and :opcode:`!" +"JUMP_IF_TRUE_OR_POP` instructions. (Contributed by Irit Katriel in :gh:" +"`102859`.)" +msgstr "" + +#: whatsnew/3.12.rst:1010 +msgid "" +"Removed the :opcode:`!PRECALL` instruction. (Contributed by Mark Shannon in :" +"gh:`92925`.)" +msgstr "" + +#: whatsnew/3.12.rst:1013 +msgid "" +"Add the :opcode:`LOAD_FAST_AND_CLEAR` instruction as part of the " +"implementation of :pep:`709`. (Contributed by Carl Meyer in :gh:`101441`.)" +msgstr "" + +#: whatsnew/3.12.rst:1016 +msgid "" +"Add the :opcode:`LOAD_FROM_DICT_OR_DEREF`, :opcode:" +"`LOAD_FROM_DICT_OR_GLOBALS`, and :opcode:`LOAD_LOCALS` opcodes as part of " +"the implementation of :pep:`695`. Remove the :opcode:`!LOAD_CLASSDEREF` " +"opcode, which can be replaced with :opcode:`LOAD_LOCALS` plus :opcode:" +"`LOAD_FROM_DICT_OR_DEREF`. (Contributed by Jelle Zijlstra in :gh:`103764`.)" +msgstr "" + +#: whatsnew/3.12.rst:1022 +msgid "" +"Add the :opcode:`LOAD_SUPER_ATTR` instruction. (Contributed by Carl Meyer " +"and Vladimir Matveev in :gh:`103497`.)" +msgstr "" + +#: whatsnew/3.12.rst:1026 +msgid "Demos and Tools" +msgstr "" + +#: whatsnew/3.12.rst:1028 +msgid "" +"Remove the ``Tools/demo/`` directory which contained old demo scripts. A " +"copy can be found in the `old-demos project `_. (Contributed by Victor Stinner in :gh:`97681`.)" +msgstr "" + +#: whatsnew/3.12.rst:1033 +msgid "" +"Remove outdated example scripts of the ``Tools/scripts/`` directory. A copy " +"can be found in the `old-demos project `_. (Contributed by Victor Stinner in :gh:`97669`.)" +msgstr "" + +#: whatsnew/3.12.rst:2038 +msgid "Deprecated" +msgstr "" + +#: whatsnew/3.12.rst:1042 +msgid "" +":mod:`asyncio`: The :meth:`~asyncio.get_event_loop` method of the default " +"event loop policy now emits a :exc:`DeprecationWarning` if there is no " +"current event loop set and it decides to create one. (Contributed by Serhiy " +"Storchaka and Guido van Rossum in :gh:`100160`.)" +msgstr "" + +#: whatsnew/3.12.rst:1047 +msgid "" +":mod:`calendar`: ``calendar.January`` and ``calendar.February`` constants " +"are deprecated and replaced by :data:`calendar.JANUARY` and :data:`calendar." +"FEBRUARY`. (Contributed by Prince Roshan in :gh:`103636`.)" +msgstr "" + +#: whatsnew/3.12.rst:1051 +msgid "" +":mod:`datetime`: :class:`datetime.datetime`'s :meth:`~datetime.datetime." +"utcnow` and :meth:`~datetime.datetime.utcfromtimestamp` are deprecated and " +"will be removed in a future version. Instead, use timezone-aware objects to " +"represent datetimes in UTC: respectively, call :meth:`~datetime.datetime." +"now` and :meth:`~datetime.datetime.fromtimestamp` with the *tz* parameter " +"set to :const:`datetime.UTC`. (Contributed by Paul Ganssle in :gh:`103857`.)" +msgstr "" + +#: whatsnew/3.12.rst:1059 +msgid "" +":mod:`os`: The ``st_ctime`` fields return by :func:`os.stat` and :func:`os." +"lstat` on Windows are deprecated. In a future release, they will contain the " +"last metadata change time, consistent with other platforms. For now, they " +"still contain the creation time, which is also available in the new " +"``st_birthtime`` field. (Contributed by Steve Dower in :gh:`99726`.)" +msgstr "" + +#: whatsnew/3.12.rst:1065 +msgid "" +":mod:`shutil`: The *onerror* argument of :func:`shutil.rmtree` is deprecated " +"as will be removed in Python 3.14. Use *onexc* instead. (Contributed by Irit " +"Katriel in :gh:`102828`.)" +msgstr "" + +#: whatsnew/3.12.rst:1080 +msgid ":mod:`sqlite3`:" +msgstr "" + +#: whatsnew/3.12.rst:1069 +msgid "" +":ref:`default adapters and converters ` are now " +"deprecated. Instead, use the :ref:`sqlite3-adapter-converter-recipes` and " +"tailor them to your needs. (Contributed by Erlend E. Aasland in :gh:`90016`.)" +msgstr "" + +#: whatsnew/3.12.rst:1075 +msgid "" +"In :meth:`~sqlite3.Cursor.execute`, :exc:`DeprecationWarning` is now emitted " +"when :ref:`named placeholders ` are used together with " +"parameters supplied as a :term:`sequence` instead of as a :class:`dict`. " +"Starting from Python 3.14, using named placeholders with parameters supplied " +"as a sequence will raise a :exc:`~sqlite3.ProgrammingError`. (Contributed by " +"Erlend E. Aasland in :gh:`101698`.)" +msgstr "" + +#: whatsnew/3.12.rst:1082 +msgid "" +":mod:`sys`: The :data:`sys.last_type`, :data:`sys.last_value` and :data:`sys." +"last_traceback` fields are deprecated. Use :data:`sys.last_exc` instead. " +"(Contributed by Irit Katriel in :gh:`102778`.)" +msgstr "" + +#: whatsnew/3.12.rst:1086 +msgid "" +":mod:`tarfile`: Extracting tar archives without specifying *filter* is " +"deprecated until Python 3.14, when ``'data'`` filter will become the " +"default. See :ref:`tarfile-extraction-filter` for details." +msgstr "" + +#: whatsnew/3.12.rst:1090 +msgid "" +":mod:`typing`: :class:`typing.Hashable` and :class:`typing.Sized` aliases " +"for :class:`collections.abc.Hashable` and :class:`collections.abc.Sized`. (:" +"gh:`94309`.)" +msgstr "" + +#: whatsnew/3.12.rst:1093 +msgid "" +":mod:`xml.etree.ElementTree`: The module now emits :exc:`DeprecationWarning` " +"when testing the truth value of an :class:`xml.etree.ElementTree.Element`. " +"Before, the Python implementation emitted :exc:`FutureWarning`, and the C " +"implementation emitted nothing." +msgstr "" + +#: whatsnew/3.12.rst:1098 +msgid "" +"The 3-arg signatures (type, value, traceback) of :meth:`~coroutine.throw`, :" +"meth:`~generator.throw` and :meth:`~agen.athrow` are deprecated and may be " +"removed in a future version of Python. Use the single-arg versions of these " +"functions instead. (Contributed by Ofey Chan in :gh:`89874`.)" +msgstr "" + +#: whatsnew/3.12.rst:1103 +msgid "" +":exc:`DeprecationWarning` is now raised when ``__package__`` on a module " +"differs from ``__spec__.parent`` (previously it was :exc:`ImportWarning`). " +"(Contributed by Brett Cannon in :gh:`65961`.)" +msgstr "" + +#: whatsnew/3.12.rst:1108 +msgid "" +"In accordance with :pep:`699`, the ``ma_version_tag`` field in :c:type:" +"`PyDictObject` is deprecated for extension modules. Accessing this field " +"will generate a compiler warning at compile time. This field will be removed " +"in Python 3.14. (Contributed by Ramvikrams and Kumar Aditya in :gh:`101193`. " +"PEP by Ken Jin.)" +msgstr "" + +#: whatsnew/3.12.rst:1113 +msgid "" +"The bitwise inversion operator (``~``) on bool is deprecated. It will throw " +"an error in Python 3.14. Use ``not`` for logical negation of bools instead. " +"In the rare case that you really need the bitwise inversion of the " +"underlying ``int``, convert to int explicitly with ``~int(x)``. (Contributed " +"by Tim Hoffmann in :gh:`103487`.)" +msgstr "" + +#: whatsnew/3.12.rst:1120 +msgid "Pending Removal in Python 3.13" +msgstr "" + +#: whatsnew/3.12.rst:1122 +msgid "" +"The following modules and APIs have been deprecated in earlier Python " +"releases, and will be removed in Python 3.13." +msgstr "" + +#: whatsnew/3.12.rst:1125 +msgid "Modules (see :pep:`594`):" +msgstr "" + +#: whatsnew/3.12.rst:1127 +msgid ":mod:`aifc`" +msgstr "" + +#: whatsnew/3.12.rst:1128 +msgid ":mod:`audioop`" +msgstr "" + +#: whatsnew/3.12.rst:1129 +msgid ":mod:`cgi`" +msgstr "" + +#: whatsnew/3.12.rst:1130 +msgid ":mod:`cgitb`" +msgstr "" + +#: whatsnew/3.12.rst:1131 +msgid ":mod:`chunk`" +msgstr "" + +#: whatsnew/3.12.rst:1132 +msgid ":mod:`crypt`" +msgstr "" + +#: whatsnew/3.12.rst:1133 +msgid ":mod:`imghdr`" +msgstr "" + +#: whatsnew/3.12.rst:1134 +msgid ":mod:`mailcap`" +msgstr "" + +#: whatsnew/3.12.rst:1135 +msgid ":mod:`msilib`" +msgstr "" + +#: whatsnew/3.12.rst:1136 +msgid ":mod:`nis`" +msgstr "" + +#: whatsnew/3.12.rst:1137 +msgid ":mod:`nntplib`" +msgstr "" + +#: whatsnew/3.12.rst:1138 +msgid ":mod:`ossaudiodev`" +msgstr "" + +#: whatsnew/3.12.rst:1139 +msgid ":mod:`pipes`" +msgstr "" + +#: whatsnew/3.12.rst:1140 +msgid ":mod:`sndhdr`" +msgstr "" + +#: whatsnew/3.12.rst:1141 +msgid ":mod:`spwd`" +msgstr "" + +#: whatsnew/3.12.rst:1142 +msgid ":mod:`sunau`" +msgstr "" + +#: whatsnew/3.12.rst:1143 +msgid ":mod:`telnetlib`" +msgstr "" + +#: whatsnew/3.12.rst:1144 +msgid ":mod:`uu`" +msgstr "" + +#: whatsnew/3.12.rst:1145 +msgid ":mod:`xdrlib`" +msgstr "" + +#: whatsnew/3.12.rst:1147 +msgid "Other modules:" +msgstr "" + +#: whatsnew/3.12.rst:1149 +msgid ":mod:`!lib2to3`, and the :program:`2to3` program (:gh:`84540`)" +msgstr "" + +#: whatsnew/3.12.rst:1151 +msgid "APIs:" +msgstr "" + +#: whatsnew/3.12.rst:1153 +msgid ":class:`!configparser.LegacyInterpolation` (:gh:`90765`)" +msgstr "" + +#: whatsnew/3.12.rst:1154 +msgid ":func:`locale.getdefaultlocale` (:gh:`90817`)" +msgstr "" + +#: whatsnew/3.12.rst:1155 +msgid ":meth:`!turtle.RawTurtle.settiltangle` (:gh:`50096`)" +msgstr "" + +#: whatsnew/3.12.rst:1156 +msgid ":func:`!unittest.findTestCases` (:gh:`50096`)" +msgstr "" + +#: whatsnew/3.12.rst:1157 +msgid ":func:`!unittest.getTestCaseNames` (:gh:`50096`)" +msgstr "" + +#: whatsnew/3.12.rst:1158 +msgid ":func:`!unittest.makeSuite` (:gh:`50096`)" +msgstr "" + +#: whatsnew/3.12.rst:1159 +msgid ":meth:`!unittest.TestProgram.usageExit` (:gh:`67048`)" +msgstr "" + +#: whatsnew/3.12.rst:1160 +msgid ":class:`!webbrowser.MacOSX` (:gh:`86421`)" +msgstr "" + +#: whatsnew/3.12.rst:1161 +msgid ":class:`classmethod` descriptor chaining (:gh:`89519`)" +msgstr "" + +#: whatsnew/3.12.rst:1164 +msgid "Pending Removal in Python 3.14" +msgstr "" + +#: whatsnew/3.12.rst:1166 +msgid "" +":mod:`argparse`: The *type*, *choices*, and *metavar* parameters of :class:`!" +"argparse.BooleanOptionalAction` are deprecated and will be removed in 3.14. " +"(Contributed by Nikita Sobolev in :gh:`92248`.)" +msgstr "" + +#: whatsnew/3.12.rst:1171 +msgid "" +":mod:`ast`: The following :mod:`ast` features have been deprecated in " +"documentation since Python 3.8, now cause a :exc:`DeprecationWarning` to be " +"emitted at runtime when they are accessed or used, and will be removed in " +"Python 3.14:" +msgstr "" + +#: whatsnew/3.12.rst:1175 +msgid ":class:`!ast.Num`" +msgstr "" + +#: whatsnew/3.12.rst:1176 +msgid ":class:`!ast.Str`" +msgstr "" + +#: whatsnew/3.12.rst:1177 +msgid ":class:`!ast.Bytes`" +msgstr "" + +#: whatsnew/3.12.rst:1178 +msgid ":class:`!ast.NameConstant`" +msgstr "" + +#: whatsnew/3.12.rst:1179 +msgid ":class:`!ast.Ellipsis`" +msgstr "" + +#: whatsnew/3.12.rst:1181 +msgid "" +"Use :class:`ast.Constant` instead. (Contributed by Serhiy Storchaka in :gh:" +"`90953`.)" +msgstr "" + +#: whatsnew/3.12.rst:1184 +msgid "" +":mod:`asyncio`: the *msg* parameter of both :meth:`asyncio.Future.cancel` " +"and :meth:`asyncio.Task.cancel` (:gh:`90985`)" +msgstr "" + +#: whatsnew/3.12.rst:1188 +msgid "" +":mod:`collections.abc`: Deprecated :class:`collections.abc.ByteString`. " +"Prefer :class:`Sequence` or :class:`collections.abc.Buffer`. For use in " +"typing, prefer a union, like ``bytes | bytearray``, or :class:`collections." +"abc.Buffer`. (Contributed by Shantanu Jain in :gh:`91896`.)" +msgstr "" + +#: whatsnew/3.12.rst:1193 +msgid "" +":mod:`email`: Deprecated the *isdst* parameter in :func:`email.utils." +"localtime`. (Contributed by Alan Williams in :gh:`72346`.)" +msgstr "" + +#: whatsnew/3.12.rst:1196 +msgid "" +":mod:`importlib.abc`: Deprecated the following classes, scheduled for " +"removal in Python 3.14:" +msgstr "" + +#: whatsnew/3.12.rst:1199 +msgid ":class:`!importlib.abc.ResourceReader`" +msgstr "" + +#: whatsnew/3.12.rst:1200 +msgid ":class:`!importlib.abc.Traversable`" +msgstr "" + +#: whatsnew/3.12.rst:1201 +msgid ":class:`!importlib.abc.TraversableResources`" +msgstr "" + +#: whatsnew/3.12.rst:1203 +msgid "Use :mod:`importlib.resources.abc` classes instead:" +msgstr "" + +#: whatsnew/3.12.rst:1205 +msgid ":class:`importlib.resources.abc.Traversable`" +msgstr "" + +#: whatsnew/3.12.rst:1206 +msgid ":class:`importlib.resources.abc.TraversableResources`" +msgstr "" + +#: whatsnew/3.12.rst:1208 +msgid "(Contributed by Jason R. Coombs and Hugo van Kemenade in :gh:`93963`.)" +msgstr "" + +#: whatsnew/3.12.rst:1210 +msgid "" +":mod:`itertools`: The module had undocumented, inefficient, historically " +"buggy, and inconsistent support for copy, deepcopy, and pickle operations. " +"This will be removed in 3.14 for a significant reduction in code volume and " +"maintenance burden. (Contributed by Raymond Hettinger in :gh:`101588`.)" +msgstr "" + +#: whatsnew/3.12.rst:1216 +msgid "" +":mod:`multiprocessing`: The default :mod:`multiprocessing` start method will " +"change to a safer one on Linux, BSDs, and other non-macOS POSIX platforms " +"where ``'fork'`` is currently the default (:gh:`84559`). Adding a runtime " +"warning about this was deemed too disruptive as the majority of code is not " +"expected to care. Use the :func:`~multiprocessing.get_context` or :func:" +"`~multiprocessing.set_start_method` APIs to explicitly specify when your " +"code *requires* ``'fork'``. See :ref:`multiprocessing-start-methods`." +msgstr "" + +#: whatsnew/3.12.rst:1224 +msgid "" +":mod:`pkgutil`: :func:`pkgutil.find_loader` and :func:`pkgutil.get_loader` " +"now raise :exc:`DeprecationWarning`; use :func:`importlib.util.find_spec` " +"instead. (Contributed by Nikita Sobolev in :gh:`97850`.)" +msgstr "" + +#: whatsnew/3.12.rst:1229 +msgid "" +":mod:`pty`: The module has two undocumented ``master_open()`` and " +"``slave_open()`` functions that have been deprecated since Python 2 but only " +"gained a proper :exc:`DeprecationWarning` in 3.12. Remove them in 3.14." +msgstr "" + +#: whatsnew/3.12.rst:1233 +msgid "" +":mod:`shutil`: The *onerror* argument of :func:`shutil.rmtree` is deprecated " +"in 3.12, and will be removed in 3.14." +msgstr "" + +#: whatsnew/3.12.rst:1236 +msgid "" +":mod:`typing`: :class:`typing.ByteString`, deprecated since Python 3.9, now " +"causes a :exc:`DeprecationWarning` to be emitted when it is used." +msgstr "" + +#: whatsnew/3.12.rst:1239 +msgid "" +":mod:`xml.etree.ElementTree`: Testing the truth value of an :class:`xml." +"etree.ElementTree.Element` is deprecated and will raise an exception in " +"Python 3.14." +msgstr "" + +#: whatsnew/3.12.rst:1242 +msgid "" +"Creating immutable types (:c:macro:`Py_TPFLAGS_IMMUTABLETYPE`) with mutable " +"bases using the C API (:gh:`95388`)." +msgstr "" + +#: whatsnew/3.12.rst:1245 +msgid "" +"``__package__`` and ``__cached__`` will cease to be set or taken into " +"consideration by the import system (:gh:`97879`)." +msgstr "" + +#: whatsnew/3.12.rst:1248 +msgid "" +"Accessing ``co_lnotab`` was deprecated in :pep:`626` since 3.10 and was " +"planned to be removed in 3.12 but it only got a proper :exc:" +"`DeprecationWarning` in 3.12. May be removed in 3.14. (Contributed by Nikita " +"Sobolev in :gh:`101866`.)" +msgstr "" + +#: whatsnew/3.12.rst:1254 +msgid "" +"Creating :c:data:`immutable types ` with mutable " +"bases using the C API (:gh:`95388`)" +msgstr "" + +#: whatsnew/3.12.rst:1258 +msgid "Pending Removal in Future Versions" +msgstr "" + +#: whatsnew/3.12.rst:1260 +msgid "" +"The following APIs were deprecated in earlier Python versions and will be " +"removed, although there is currently no date scheduled for their removal." +msgstr "" + +#: whatsnew/3.12.rst:1263 +msgid ":mod:`array`'s ``'u'`` format code (:gh:`57281`)" +msgstr "" + +#: whatsnew/3.12.rst:1265 +msgid ":class:`typing.Text` (:gh:`92332`)" +msgstr "" + +#: whatsnew/3.12.rst:1267 +msgid "" +"Currently Python accepts numeric literals immediately followed by keywords, " +"for example ``0in x``, ``1or x``, ``0if 1else 2``. It allows confusing and " +"ambiguous expressions like ``[0x1for x in y]`` (which can be interpreted as " +"``[0x1 for x in y]`` or ``[0x1f or x in y]``). A syntax warning is raised if " +"the numeric literal is immediately followed by one of keywords :keyword:" +"`and`, :keyword:`else`, :keyword:`for`, :keyword:`if`, :keyword:`in`, :" +"keyword:`is` and :keyword:`or`. In a future release it will be changed to a " +"syntax error. (:gh:`87999`)" +msgstr "" + +#: whatsnew/3.12.rst:2120 +msgid "Removed" +msgstr "" + +#: whatsnew/3.12.rst:1281 +msgid "asynchat and asyncore" +msgstr "" + +#: whatsnew/3.12.rst:1283 +msgid "" +"These two modules have been removed according to the schedule in :pep:`594`, " +"having been deprecated in Python 3.6. Use :mod:`asyncio` instead. " +"(Contributed by Nikita Sobolev in :gh:`96580`.)" +msgstr "" + +#: whatsnew/3.12.rst:1290 +msgid "configparser" +msgstr "" + +#: whatsnew/3.12.rst:1292 +msgid "" +"Several names deprecated in the :mod:`configparser` way back in 3.2 have " +"been removed per :gh:`89336`:" +msgstr "" + +#: whatsnew/3.12.rst:1295 +msgid "" +":class:`configparser.ParsingError` no longer has a ``filename`` attribute or " +"argument. Use the ``source`` attribute and argument instead." +msgstr "" + +#: whatsnew/3.12.rst:1297 +msgid "" +":mod:`configparser` no longer has a ``SafeConfigParser`` class. Use the " +"shorter :class:`~configparser.ConfigParser` name instead." +msgstr "" + +#: whatsnew/3.12.rst:1299 +msgid "" +":class:`configparser.ConfigParser` no longer has a ``readfp`` method. Use :" +"meth:`~configparser.ConfigParser.read_file` instead." +msgstr "" + +#: whatsnew/3.12.rst:1303 +msgid "distutils" +msgstr "" + +#: whatsnew/3.12.rst:1305 +msgid "" +"Remove the :py:mod:`!distutils` package. It was deprecated in Python 3.10 " +"by :pep:`632` \"Deprecate distutils module\". For projects still using " +"``distutils`` and cannot be updated to something else, the ``setuptools`` " +"project can be installed: it still provides ``distutils``. (Contributed by " +"Victor Stinner in :gh:`92584`.)" +msgstr "" + +#: whatsnew/3.12.rst:1312 +msgid "ensurepip" +msgstr "" + +#: whatsnew/3.12.rst:1314 +msgid "" +"Remove the bundled setuptools wheel from :mod:`ensurepip`, and stop " +"installing setuptools in environments created by :mod:`venv`." +msgstr "" + +#: whatsnew/3.12.rst:1317 +msgid "" +"``pip (>= 22.1)`` does not require setuptools to be installed in the " +"environment. ``setuptools``-based (and ``distutils``-based) packages can " +"still be used with ``pip install``, since pip will provide ``setuptools`` in " +"the build environment it uses for building a package." +msgstr "" + +#: whatsnew/3.12.rst:1323 +msgid "" +"``easy_install``, ``pkg_resources``, ``setuptools`` and ``distutils`` are no " +"longer provided by default in environments created with ``venv`` or " +"bootstrapped with ``ensurepip``, since they are part of the ``setuptools`` " +"package. For projects relying on these at runtime, the ``setuptools`` " +"project should be declared as a dependency and installed separately " +"(typically, using pip)." +msgstr "" + +#: whatsnew/3.12.rst:1330 +msgid "(Contributed by Pradyun Gedam in :gh:`95299`.)" +msgstr "" + +#: whatsnew/3.12.rst:1333 +msgid "enum" +msgstr "" + +#: whatsnew/3.12.rst:1335 +msgid "" +"Remove :mod:`enum`'s ``EnumMeta.__getattr__``, which is no longer needed for " +"enum attribute access. (Contributed by Ethan Furman in :gh:`95083`.)" +msgstr "" + +#: whatsnew/3.12.rst:1340 +msgid "ftplib" +msgstr "" + +#: whatsnew/3.12.rst:1342 +msgid "" +"Remove :mod:`ftplib`'s ``FTP_TLS.ssl_version`` class attribute: use the " +"*context* parameter instead. (Contributed by Victor Stinner in :gh:`94172`.)" +msgstr "" + +#: whatsnew/3.12.rst:1347 +msgid "gzip" +msgstr "" + +#: whatsnew/3.12.rst:1349 +msgid "" +"Remove the ``filename`` attribute of :mod:`gzip`'s :class:`gzip.GzipFile`, " +"deprecated since Python 2.6, use the :attr:`~gzip.GzipFile.name` attribute " +"instead. In write mode, the ``filename`` attribute added ``'.gz'`` file " +"extension if it was not present. (Contributed by Victor Stinner in :gh:" +"`94196`.)" +msgstr "" + +#: whatsnew/3.12.rst:1356 +msgid "hashlib" +msgstr "" + +#: whatsnew/3.12.rst:1358 +msgid "" +"Remove the pure Python implementation of :mod:`hashlib`'s :func:`hashlib." +"pbkdf2_hmac()`, deprecated in Python 3.10. Python 3.10 and newer requires " +"OpenSSL 1.1.1 (:pep:`644`): this OpenSSL version provides a C implementation " +"of :func:`~hashlib.pbkdf2_hmac()` which is faster. (Contributed by Victor " +"Stinner in :gh:`94199`.)" +msgstr "" + +#: whatsnew/3.12.rst:1392 +msgid "importlib" +msgstr "" + +#: whatsnew/3.12.rst:1367 +msgid "" +"Many previously deprecated cleanups in :mod:`importlib` have now been " +"completed:" +msgstr "" + +#: whatsnew/3.12.rst:1370 +msgid "" +"References to, and support for :meth:`!module_repr()` has been removed. " +"(Contributed by Barry Warsaw in :gh:`97850`.)" +msgstr "" + +#: whatsnew/3.12.rst:1373 +msgid "" +"``importlib.util.set_package``, ``importlib.util.set_loader`` and " +"``importlib.util.module_for_loader`` have all been removed. (Contributed by " +"Brett Cannon and Nikita Sobolev in :gh:`65961` and :gh:`97850`.)" +msgstr "" + +#: whatsnew/3.12.rst:1377 +msgid "" +"Support for ``find_loader()`` and ``find_module()`` APIs have been removed. " +"(Contributed by Barry Warsaw in :gh:`98040`.)" +msgstr "" + +#: whatsnew/3.12.rst:1380 +msgid "" +"``importlib.abc.Finder``, ``pkgutil.ImpImporter``, and ``pkgutil.ImpLoader`` " +"have been removed. (Contributed by Barry Warsaw in :gh:`98040`.)" +msgstr "" + +#: whatsnew/3.12.rst:1392 +msgid "imp" +msgstr "" + +#: whatsnew/3.12.rst:1386 +msgid "" +"The :mod:`!imp` module has been removed. (Contributed by Barry Warsaw in :" +"gh:`98040`.)" +msgstr "" + +#: whatsnew/3.12.rst:1389 +msgid "Replace removed :mod:`!imp` functions with :mod:`importlib` functions:" +msgstr "" + +#: whatsnew/3.12.rst:1394 +msgid "``imp.NullImporter``" +msgstr "" + +#: whatsnew/3.12.rst:1394 +msgid "Insert ``None`` into ``sys.path_importer_cache``" +msgstr "" + +#: whatsnew/3.12.rst:1395 +msgid "``imp.cache_from_source()``" +msgstr "" + +#: whatsnew/3.12.rst:1395 +msgid ":func:`importlib.util.cache_from_source`" +msgstr "" + +#: whatsnew/3.12.rst:1396 +msgid "``imp.find_module()``" +msgstr "" + +#: whatsnew/3.12.rst:1396 +msgid ":func:`importlib.util.find_spec`" +msgstr "" + +#: whatsnew/3.12.rst:1397 +msgid "``imp.get_magic()``" +msgstr "" + +#: whatsnew/3.12.rst:1397 +msgid ":attr:`importlib.util.MAGIC_NUMBER`" +msgstr "" + +#: whatsnew/3.12.rst:1398 +msgid "``imp.get_suffixes()``" +msgstr "" + +#: whatsnew/3.12.rst:1398 +msgid "" +":attr:`importlib.machinery.SOURCE_SUFFIXES`, :attr:`importlib.machinery." +"EXTENSION_SUFFIXES`, and :attr:`importlib.machinery.BYTECODE_SUFFIXES`" +msgstr "" + +#: whatsnew/3.12.rst:1399 +msgid "``imp.get_tag()``" +msgstr "" + +#: whatsnew/3.12.rst:1399 +msgid ":attr:`sys.implementation.cache_tag `" +msgstr "" + +#: whatsnew/3.12.rst:1400 +msgid "``imp.load_module()``" +msgstr "" + +#: whatsnew/3.12.rst:1400 +msgid ":func:`importlib.import_module`" +msgstr "" + +#: whatsnew/3.12.rst:1401 +msgid "``imp.new_module(name)``" +msgstr "" + +#: whatsnew/3.12.rst:1401 +msgid "``types.ModuleType(name)``" +msgstr "" + +#: whatsnew/3.12.rst:1402 +msgid "``imp.reload()``" +msgstr "" + +#: whatsnew/3.12.rst:1402 +msgid ":func:`importlib.reload`" +msgstr "" + +#: whatsnew/3.12.rst:1403 +msgid "``imp.source_from_cache()``" +msgstr "" + +#: whatsnew/3.12.rst:1403 +msgid ":func:`importlib.util.source_from_cache`" +msgstr "" + +#: whatsnew/3.12.rst:1406 +msgid "Replace ``imp.load_source()`` with::" +msgstr "" + +#: whatsnew/3.12.rst:1421 +msgid "Removed :mod:`!imp` functions and attributes with no replacements:" +msgstr "" + +#: whatsnew/3.12.rst:1423 +msgid "undocumented functions:" +msgstr "" + +#: whatsnew/3.12.rst:1425 +msgid "``imp.init_builtin()``" +msgstr "" + +#: whatsnew/3.12.rst:1426 +msgid "``imp.load_compiled()``" +msgstr "" + +#: whatsnew/3.12.rst:1427 +msgid "``imp.load_dynamic()``" +msgstr "" + +#: whatsnew/3.12.rst:1428 +msgid "``imp.load_package()``" +msgstr "" + +#: whatsnew/3.12.rst:1430 +msgid "" +"``imp.lock_held()``, ``imp.acquire_lock()``, ``imp.release_lock()``: the " +"locking scheme has changed in Python 3.3 to per-module locks." +msgstr "" + +#: whatsnew/3.12.rst:1432 +msgid "" +"``imp.find_module()`` constants: ``SEARCH_ERROR``, ``PY_SOURCE``, " +"``PY_COMPILED``, ``C_EXTENSION``, ``PY_RESOURCE``, ``PKG_DIRECTORY``, " +"``C_BUILTIN``, ``PY_FROZEN``, ``PY_CODERESOURCE``, ``IMP_HOOK``." +msgstr "" + +#: whatsnew/3.12.rst:1437 +msgid "io" +msgstr "" + +#: whatsnew/3.12.rst:1439 +msgid "" +"Remove :mod:`io`'s ``io.OpenWrapper`` and ``_pyio.OpenWrapper``, deprecated " +"in Python 3.10: just use :func:`open` instead. The :func:`open` (:func:`io." +"open`) function is a built-in function. Since Python 3.10, :func:`!_pyio." +"open` is also a static method. (Contributed by Victor Stinner in :gh:" +"`94169`.)" +msgstr "" + +#: whatsnew/3.12.rst:1446 +msgid "locale" +msgstr "" + +#: whatsnew/3.12.rst:1448 +msgid "" +"Remove :mod:`locale`'s :func:`!locale.format` function, deprecated in Python " +"3.7: use :func:`locale.format_string` instead. (Contributed by Victor " +"Stinner in :gh:`94226`.)" +msgstr "" + +#: whatsnew/3.12.rst:1452 +msgid "" +"``smtpd``: The module has been removed according to the schedule in :pep:" +"`594`, having been deprecated in Python 3.4.7 and 3.5.4. Use aiosmtpd_ PyPI " +"module or any other :mod:`asyncio`-based server instead. (Contributed by " +"Oleg Iarygin in :gh:`93243`.)" +msgstr "" + +#: whatsnew/3.12.rst:1463 +msgid "" +"The following undocumented :mod:`sqlite3` features, deprecated in Python " +"3.10, are now removed:" +msgstr "" + +#: whatsnew/3.12.rst:1466 +msgid "``sqlite3.enable_shared_cache()``" +msgstr "" + +#: whatsnew/3.12.rst:1467 +msgid "``sqlite3.OptimizedUnicode``" +msgstr "" + +#: whatsnew/3.12.rst:1469 +msgid "" +"If a shared cache must be used, open the database in URI mode using the " +"``cache=shared`` query parameter." +msgstr "" + +#: whatsnew/3.12.rst:1472 +msgid "" +"The ``sqlite3.OptimizedUnicode`` text factory has been an alias for :class:" +"`str` since Python 3.3. Code that previously set the text factory to " +"``OptimizedUnicode`` can either use ``str`` explicitly, or rely on the " +"default value which is also ``str``." +msgstr "" + +#: whatsnew/3.12.rst:1477 +msgid "(Contributed by Erlend E. Aasland in :gh:`92548`.)" +msgstr "" + +#: whatsnew/3.12.rst:1480 +msgid "ssl" +msgstr "" + +#: whatsnew/3.12.rst:1482 +msgid "" +"Remove :mod:`ssl`'s :func:`!ssl.RAND_pseudo_bytes` function, deprecated in " +"Python 3.6: use :func:`os.urandom` or :func:`ssl.RAND_bytes` instead. " +"(Contributed by Victor Stinner in :gh:`94199`.)" +msgstr "" + +#: whatsnew/3.12.rst:1486 +msgid "" +"Remove the :func:`!ssl.match_hostname` function. It was deprecated in Python " +"3.7. OpenSSL performs hostname matching since Python 3.7, Python no longer " +"uses the :func:`!ssl.match_hostname` function. (Contributed by Victor " +"Stinner in :gh:`94199`.)" +msgstr "" + +#: whatsnew/3.12.rst:1492 +msgid "" +"Remove the :func:`!ssl.wrap_socket` function, deprecated in Python 3.7: " +"instead, create a :class:`ssl.SSLContext` object and call its :class:`ssl." +"SSLContext.wrap_socket` method. Any package that still uses :func:`!ssl." +"wrap_socket` is broken and insecure. The function neither sends a SNI TLS " +"extension nor validates server hostname. Code is subject to `CWE-295 " +"`_: Improper Certificate " +"Validation. (Contributed by Victor Stinner in :gh:`94199`.)" +msgstr "" + +#: whatsnew/3.12.rst:1504 +msgid "Removed many old deprecated :mod:`unittest` features:" +msgstr "" + +#: whatsnew/3.12.rst:1506 +msgid "A number of :class:`~unittest.TestCase` method aliases:" +msgstr "" + +#: whatsnew/3.12.rst:1509 +msgid "Deprecated alias" +msgstr "" + +#: whatsnew/3.12.rst:1509 +msgid "Method Name" +msgstr "" + +#: whatsnew/3.12.rst:1509 +msgid "Deprecated in" +msgstr "" + +#: whatsnew/3.12.rst:1511 +msgid "``failUnless``" +msgstr "" + +#: whatsnew/3.12.rst:1518 +msgid ":meth:`.assertTrue`" +msgstr "" + +#: whatsnew/3.12.rst:1512 whatsnew/3.12.rst:1514 whatsnew/3.12.rst:1516 +#: whatsnew/3.12.rst:1517 +msgid "3.1" +msgstr "" + +#: whatsnew/3.12.rst:1512 +msgid "``failIf``" +msgstr "" + +#: whatsnew/3.12.rst:1512 +msgid ":meth:`.assertFalse`" +msgstr "" + +#: whatsnew/3.12.rst:1513 +msgid "``failUnlessEqual``" +msgstr "" + +#: whatsnew/3.12.rst:1519 +msgid ":meth:`.assertEqual`" +msgstr "" + +#: whatsnew/3.12.rst:1514 +msgid "``failIfEqual``" +msgstr "" + +#: whatsnew/3.12.rst:1520 +msgid ":meth:`.assertNotEqual`" +msgstr "" + +#: whatsnew/3.12.rst:1515 +msgid "``failUnlessAlmostEqual``" +msgstr "" + +#: whatsnew/3.12.rst:1521 +msgid ":meth:`.assertAlmostEqual`" +msgstr "" + +#: whatsnew/3.12.rst:1516 +msgid "``failIfAlmostEqual``" +msgstr "" + +#: whatsnew/3.12.rst:1522 +msgid ":meth:`.assertNotAlmostEqual`" +msgstr "" + +#: whatsnew/3.12.rst:1517 +msgid "``failUnlessRaises``" +msgstr "" + +#: whatsnew/3.12.rst:1517 +msgid ":meth:`.assertRaises`" +msgstr "" + +#: whatsnew/3.12.rst:1518 +msgid "``assert_``" +msgstr "" + +#: whatsnew/3.12.rst:1519 whatsnew/3.12.rst:1521 whatsnew/3.12.rst:1523 +#: whatsnew/3.12.rst:1524 +msgid "3.2" +msgstr "" + +#: whatsnew/3.12.rst:1519 +msgid "``assertEquals``" +msgstr "" + +#: whatsnew/3.12.rst:1520 +msgid "``assertNotEquals``" +msgstr "" + +#: whatsnew/3.12.rst:1521 +msgid "``assertAlmostEquals``" +msgstr "" + +#: whatsnew/3.12.rst:1522 +msgid "``assertNotAlmostEquals``" +msgstr "" + +#: whatsnew/3.12.rst:1523 +msgid "``assertRegexpMatches``" +msgstr "" + +#: whatsnew/3.12.rst:1523 +msgid ":meth:`.assertRegex`" +msgstr "" + +#: whatsnew/3.12.rst:1524 +msgid "``assertRaisesRegexp``" +msgstr "" + +#: whatsnew/3.12.rst:1524 +msgid ":meth:`.assertRaisesRegex`" +msgstr "" + +#: whatsnew/3.12.rst:1525 +msgid "``assertNotRegexpMatches``" +msgstr "" + +#: whatsnew/3.12.rst:1525 +msgid ":meth:`.assertNotRegex`" +msgstr "" + +#: whatsnew/3.12.rst:1525 +msgid "3.5" +msgstr "" + +#: whatsnew/3.12.rst:1528 +msgid "" +"You can use https://github.com/isidentical/teyit to automatically modernise " +"your unit tests." +msgstr "" + +#: whatsnew/3.12.rst:1531 +msgid "" +"Undocumented and broken :class:`~unittest.TestCase` method " +"``assertDictContainsSubset`` (deprecated in Python 3.2)." +msgstr "" + +#: whatsnew/3.12.rst:1534 +msgid "" +"Undocumented :meth:`TestLoader.loadTestsFromModule ` parameter *use_load_tests* (deprecated and ignored " +"since Python 3.2)." +msgstr "" + +#: whatsnew/3.12.rst:1538 +msgid "" +"An alias of the :class:`~unittest.TextTestResult` class: ``_TextTestResult`` " +"(deprecated in Python 3.2)." +msgstr "" + +#: whatsnew/3.12.rst:1541 +msgid "(Contributed by Serhiy Storchaka in :issue:`45162`.)" +msgstr "" + +#: whatsnew/3.12.rst:1544 +msgid "webbrowser" +msgstr "" + +#: whatsnew/3.12.rst:1546 +msgid "" +"Remove support for obsolete browsers from :mod:`webbrowser`. Removed " +"browsers include: Grail, Mosaic, Netscape, Galeon, Skipstone, Iceape, " +"Firebird, and Firefox versions 35 and below (:gh:`102871`)." +msgstr "" + +#: whatsnew/3.12.rst:1551 +msgid "xml.etree.ElementTree" +msgstr "" + +#: whatsnew/3.12.rst:1553 +msgid "" +"Remove the ``ElementTree.Element.copy()`` method of the pure Python " +"implementation, deprecated in Python 3.10, use the :func:`copy.copy` " +"function instead. The C implementation of :mod:`xml.etree.ElementTree` has " +"no ``copy()`` method, only a ``__copy__()`` method. (Contributed by Victor " +"Stinner in :gh:`94383`.)" +msgstr "" + +#: whatsnew/3.12.rst:1560 +msgid "zipimport" +msgstr "" + +#: whatsnew/3.12.rst:1562 +msgid "" +"Remove :mod:`zipimport`'s ``find_loader()`` and ``find_module()`` methods, " +"deprecated in Python 3.10: use the ``find_spec()`` method instead. See :pep:" +"`451` for the rationale. (Contributed by Victor Stinner in :gh:`94379`.)" +msgstr "" + +#: whatsnew/3.12.rst:1568 +msgid "Others" +msgstr "" + +#: whatsnew/3.12.rst:1570 +msgid "" +"Removed the ``suspicious`` rule from the documentation Makefile, and removed " +"``Doc/tools/rstlint.py``, both in favor of `sphinx-lint `_. (Contributed by Julien Palard in :gh:`98179`.)" +msgstr "" + +#: whatsnew/3.12.rst:1575 +msgid "" +"Remove the *keyfile* and *certfile* parameters from the :mod:`ftplib`, :mod:" +"`imaplib`, :mod:`poplib` and :mod:`smtplib` modules, and the *key_file*, " +"*cert_file* and *check_hostname* parameters from the :mod:`http.client` " +"module, all deprecated since Python 3.6. Use the *context* parameter " +"(*ssl_context* in :mod:`imaplib`) instead. (Contributed by Victor Stinner " +"in :gh:`94172`.)" +msgstr "" + +#: whatsnew/3.12.rst:1898 +msgid "Porting to Python 3.12" +msgstr "" + +#: whatsnew/3.12.rst:1588 +msgid "" +"This section lists previously described changes and other bugfixes that may " +"require changes to your code." +msgstr "" + +#: whatsnew/3.12.rst:1592 +msgid "Changes in the Python API" +msgstr "" + +#: whatsnew/3.12.rst:1594 +msgid "" +"More strict rules are now applied for numerical group references and group " +"names in regular expressions. Only sequence of ASCII digits is now accepted " +"as a numerical reference. The group name in bytes patterns and replacement " +"strings can now only contain ASCII letters and digits and underscore. " +"(Contributed by Serhiy Storchaka in :gh:`91760`.)" +msgstr "" + +#: whatsnew/3.12.rst:1601 +msgid "" +"Removed ``randrange()`` functionality deprecated since Python 3.10. " +"Formerly, ``randrange(10.0)`` losslessly converted to ``randrange(10)``. " +"Now, it raises a :exc:`TypeError`. Also, the exception raised for non-" +"integer values such as ``randrange(10.5)`` or ``randrange('10')`` has been " +"changed from :exc:`ValueError` to :exc:`TypeError`. This also prevents bugs " +"where ``randrange(1e25)`` would silently select from a larger range than " +"``randrange(10**25)``. (Originally suggested by Serhiy Storchaka :gh:" +"`86388`.)" +msgstr "" + +#: whatsnew/3.12.rst:1609 +msgid "" +":class:`argparse.ArgumentParser` changed encoding and error handler for " +"reading arguments from file (e.g. ``fromfile_prefix_chars`` option) from " +"default text encoding (e.g. :func:`locale.getpreferredencoding(False) " +"`) to :term:`filesystem encoding and error " +"handler`. Argument files should be encoded in UTF-8 instead of ANSI Codepage " +"on Windows." +msgstr "" + +#: whatsnew/3.12.rst:1615 +msgid "" +"Removed the ``asyncore``-based ``smtpd`` module deprecated in Python 3.4.7 " +"and 3.5.4. A recommended replacement is the :mod:`asyncio`-based aiosmtpd_ " +"PyPI module." +msgstr "" + +#: whatsnew/3.12.rst:1619 +msgid "" +":func:`shlex.split`: Passing ``None`` for *s* argument now raises an " +"exception, rather than reading :data:`sys.stdin`. The feature was deprecated " +"in Python 3.9. (Contributed by Victor Stinner in :gh:`94352`.)" +msgstr "" + +#: whatsnew/3.12.rst:1624 +msgid "" +"The :mod:`os` module no longer accepts bytes-like paths, like :class:" +"`bytearray` and :class:`memoryview` types: only the exact :class:`bytes` " +"type is accepted for bytes strings. (Contributed by Victor Stinner in :gh:" +"`98393`.)" +msgstr "" + +#: whatsnew/3.12.rst:1629 +msgid "" +":func:`syslog.openlog` and :func:`syslog.closelog` now fail if used in " +"subinterpreters. :func:`syslog.syslog` may still be used in subinterpreters, " +"but now only if :func:`syslog.openlog` has already been called in the main " +"interpreter. These new restrictions do not apply to the main interpreter, so " +"only a very small set of users might be affected. This change helps with " +"interpreter isolation. Furthermore, :mod:`syslog` is a wrapper around " +"process-global resources, which are best managed from the main interpreter. " +"(Contributed by Dong-hee Na in :gh:`99127`.)" +msgstr "" + +#: whatsnew/3.12.rst:1638 +msgid "" +"The undocumented locking behavior of :func:`~functools.cached_property` is " +"removed, because it locked across all instances of the class, leading to " +"high lock contention. This means that a cached property getter function " +"could now run more than once for a single instance, if two threads race. For " +"most simple cached properties (e.g. those that are idempotent and simply " +"calculate a value based on other attributes of the instance) this will be " +"fine. If synchronization is needed, implement locking within the cached " +"property getter function or around multi-threaded access points." +msgstr "" + +#: whatsnew/3.12.rst:1651 +msgid "" +"When extracting tar files using :mod:`tarfile` or :func:`shutil." +"unpack_archive`, pass the *filter* argument to limit features that may be " +"surprising or dangerous. See :ref:`tarfile-extraction-filter` for details." +msgstr "" + +#: whatsnew/3.12.rst:1656 +msgid "" +"The output of the :func:`tokenize.tokenize` and :func:`tokenize." +"generate_tokens` functions is now changed due to the changes introduced in :" +"pep:`701`. This means that ``STRING`` tokens are not emitted any more for f-" +"strings and the tokens described in :pep:`701` are now produced instead: " +"``FSTRING_START``, ``FSTRING_MIDDLE`` and ``FSTRING_END`` are now emitted " +"for f-string \"string\" parts in addition to the appropriate tokens for the " +"tokenization in the expression components. For example for the f-string " +"``f\"start {1+1} end\"`` the old version of the tokenizer emitted::" +msgstr "" + +#: whatsnew/3.12.rst:1667 +msgid "while the new version emits::" +msgstr "" + +#: whatsnew/3.12.rst:1679 +msgid "" +"Additionally, there may be some minor behavioral changes as a consequence of " +"the changes required to support :pep:`701`. Some of these changes include:" +msgstr "" + +#: whatsnew/3.12.rst:1682 +msgid "" +"The ``type`` attribute of the tokens emitted when tokenizing some invalid " +"Python characters such as ``!`` has changed from ``ERRORTOKEN`` to ``OP``." +msgstr "" + +#: whatsnew/3.12.rst:1685 +msgid "" +"Incomplete single-line strings now also raise :exc:`tokenize.TokenError` as " +"incomplete multiline strings do." +msgstr "" + +#: whatsnew/3.12.rst:1688 +msgid "" +"Some incomplete or invalid Python code now raises :exc:`tokenize.TokenError` " +"instead of returning arbitrary ``ERRORTOKEN`` tokens when tokenizing it." +msgstr "" + +#: whatsnew/3.12.rst:1691 +msgid "" +"Mixing tabs and spaces as indentation in the same file is not supported " +"anymore and will raise a :exc:`TabError`." +msgstr "" + +#: whatsnew/3.12.rst:1695 +msgid "Build Changes" +msgstr "" + +#: whatsnew/3.12.rst:1697 +msgid "" +"Python no longer uses ``setup.py`` to build shared C extension modules. " +"Build parameters like headers and libraries are detected in ``configure`` " +"script. Extensions are built by ``Makefile``. Most extensions use ``pkg-" +"config`` and fall back to manual detection. (Contributed by Christian Heimes " +"in :gh:`93939`.)" +msgstr "" + +#: whatsnew/3.12.rst:1703 +msgid "" +"``va_start()`` with two parameters, like ``va_start(args, format),`` is now " +"required to build Python. ``va_start()`` is no longer called with a single " +"parameter. (Contributed by Kumar Aditya in :gh:`93207`.)" +msgstr "" + +#: whatsnew/3.12.rst:1708 +msgid "" +"CPython now uses the ThinLTO option as the default link time optimization " +"policy if the Clang compiler accepts the flag. (Contributed by Dong-hee Na " +"in :gh:`89536`.)" +msgstr "" + +#: whatsnew/3.12.rst:1712 +msgid "" +"Add ``COMPILEALL_OPTS`` variable in Makefile to override :mod:`compileall` " +"options (default: ``-j0``) in ``make install``. Also merged the 3 " +"``compileall`` commands into a single command to build .pyc files for all " +"optimization levels (0, 1, 2) at once. (Contributed by Victor Stinner in :gh:" +"`99289`.)" +msgstr "" + +#: whatsnew/3.12.rst:1718 +msgid "Add platform triplets for 64-bit LoongArch:" +msgstr "" + +#: whatsnew/3.12.rst:1720 +msgid "loongarch64-linux-gnusf" +msgstr "" + +#: whatsnew/3.12.rst:1721 +msgid "loongarch64-linux-gnuf32" +msgstr "" + +#: whatsnew/3.12.rst:1722 +msgid "loongarch64-linux-gnu" +msgstr "" + +#: whatsnew/3.12.rst:1724 +msgid "(Contributed by Zhang Na in :gh:`90656`.)" +msgstr "" + +#: whatsnew/3.12.rst:1726 +msgid "``PYTHON_FOR_REGEN`` now require Python 3.10 or newer." +msgstr "" + +#: whatsnew/3.12.rst:1728 +msgid "" +"Autoconf 2.71 and aclocal 1.16.4 is now required to regenerate :file:`!" +"configure`. (Contributed by Christian Heimes in :gh:`89886`.)" +msgstr "" + +#: whatsnew/3.12.rst:1732 +msgid "" +"Windows builds and macOS installers from python.org now use OpenSSL 3.0." +msgstr "" + +#: whatsnew/3.12.rst:1736 +msgid "C API Changes" +msgstr "" + +#: whatsnew/3.12.rst:1742 +msgid "" +":pep:`697`: Introduced the :ref:`Unstable C API tier `, " +"intended for low-level tools like debuggers and JIT compilers. This API may " +"change in each minor release of CPython without deprecation warnings. Its " +"contents are marked by the ``PyUnstable_`` prefix in names." +msgstr "" + +#: whatsnew/3.12.rst:1748 +msgid "Code object constructors:" +msgstr "" + +#: whatsnew/3.12.rst:1750 +msgid "``PyUnstable_Code_New()`` (renamed from ``PyCode_New``)" +msgstr "" + +#: whatsnew/3.12.rst:1751 +msgid "" +"``PyUnstable_Code_NewWithPosOnlyArgs()`` (renamed from " +"``PyCode_NewWithPosOnlyArgs``)" +msgstr "" + +#: whatsnew/3.12.rst:1753 +msgid "Extra storage for code objects (:pep:`523`):" +msgstr "" + +#: whatsnew/3.12.rst:1755 +msgid "" +"``PyUnstable_Eval_RequestCodeExtraIndex()`` (renamed from " +"``_PyEval_RequestCodeExtraIndex``)" +msgstr "" + +#: whatsnew/3.12.rst:1756 +msgid "``PyUnstable_Code_GetExtra()`` (renamed from ``_PyCode_GetExtra``)" +msgstr "" + +#: whatsnew/3.12.rst:1757 +msgid "``PyUnstable_Code_SetExtra()`` (renamed from ``_PyCode_SetExtra``)" +msgstr "" + +#: whatsnew/3.12.rst:1759 +msgid "" +"The original names will continue to be available until the respective API " +"changes." +msgstr "" + +#: whatsnew/3.12.rst:1762 +msgid "(Contributed by Petr Viktorin in :gh:`101101`.)" +msgstr "" + +#: whatsnew/3.12.rst:1764 +msgid "" +":pep:`697`: Added API for extending types whose instance memory layout is " +"opaque:" +msgstr "" + +#: whatsnew/3.12.rst:1767 +msgid "" +":c:member:`PyType_Spec.basicsize` can be zero or negative to specify " +"inheriting or extending the base class size." +msgstr "" + +#: whatsnew/3.12.rst:1769 +msgid "" +":c:func:`PyObject_GetTypeData` and :c:func:`PyType_GetTypeDataSize` added to " +"allow access to subclass-specific instance data." +msgstr "" + +#: whatsnew/3.12.rst:1771 +msgid "" +":c:macro:`Py_TPFLAGS_ITEMS_AT_END` and :c:func:`PyObject_GetItemData` added " +"to allow safely extending certain variable-sized types, including :c:var:" +"`PyType_Type`." +msgstr "" + +#: whatsnew/3.12.rst:1774 +msgid "" +":c:macro:`Py_RELATIVE_OFFSET` added to allow defining :c:type:`members " +"` in terms of a subclass-specific struct." +msgstr "" + +#: whatsnew/3.12.rst:1777 +msgid "(Contributed by Petr Viktorin in :gh:`103509`.)" +msgstr "" + +#: whatsnew/3.12.rst:1779 +msgid "" +"Added the new :ref:`limited C API ` function :c:func:" +"`PyType_FromMetaclass`, which generalizes the existing :c:func:" +"`PyType_FromModuleAndSpec` using an additional metaclass argument. " +"(Contributed by Wenzel Jakob in :gh:`93012`.)" +msgstr "" + +#: whatsnew/3.12.rst:1784 +msgid "" +"API for creating objects that can be called using :ref:`the vectorcall " +"protocol ` was added to the :ref:`Limited API `:" +msgstr "" + +#: whatsnew/3.12.rst:1788 +msgid ":c:macro:`Py_TPFLAGS_HAVE_VECTORCALL`" +msgstr "" + +#: whatsnew/3.12.rst:1789 +msgid ":c:func:`PyVectorcall_NARGS`" +msgstr "" + +#: whatsnew/3.12.rst:1790 +msgid ":c:func:`PyVectorcall_Call`" +msgstr "" + +#: whatsnew/3.12.rst:1791 +msgid ":c:type:`vectorcallfunc`" +msgstr "" + +#: whatsnew/3.12.rst:1793 +msgid "" +"The :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag is now removed from a class " +"when the class's :py:meth:`~object.__call__` method is reassigned. This " +"makes vectorcall safe to use with mutable types (i.e. heap types without the " +"immutable flag, :c:macro:`Py_TPFLAGS_IMMUTABLETYPE`). Mutable types that do " +"not override :c:member:`~PyTypeObject.tp_call` now inherit the " +"``Py_TPFLAGS_HAVE_VECTORCALL`` flag. (Contributed by Petr Viktorin in :gh:" +"`93274`.)" +msgstr "" + +#: whatsnew/3.12.rst:1801 +msgid "" +"The :c:macro:`Py_TPFLAGS_MANAGED_DICT` and :c:macro:" +"`Py_TPFLAGS_MANAGED_WEAKREF` flags have been added. This allows extensions " +"classes to support object ``__dict__`` and weakrefs with less bookkeeping, " +"using less memory and with faster access." +msgstr "" + +#: whatsnew/3.12.rst:1806 +msgid "" +"API for performing calls using :ref:`the vectorcall protocol ` " +"was added to the :ref:`Limited API `:" +msgstr "" + +#: whatsnew/3.12.rst:1810 +msgid ":c:func:`PyObject_Vectorcall`" +msgstr "" + +#: whatsnew/3.12.rst:1811 +msgid ":c:func:`PyObject_VectorcallMethod`" +msgstr "" + +#: whatsnew/3.12.rst:1812 +msgid ":c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET`" +msgstr "" + +#: whatsnew/3.12.rst:1814 +msgid "" +"This means that both the incoming and outgoing ends of the vector call " +"protocol are now available in the :ref:`Limited API `. (Contributed " +"by Wenzel Jakob in :gh:`98586`.)" +msgstr "" + +#: whatsnew/3.12.rst:1818 +msgid "" +"Added two new public functions, :c:func:`PyEval_SetProfileAllThreads` and :c:" +"func:`PyEval_SetTraceAllThreads`, that allow to set tracing and profiling " +"functions in all running threads in addition to the calling one. " +"(Contributed by Pablo Galindo in :gh:`93503`.)" +msgstr "" + +#: whatsnew/3.12.rst:1824 +msgid "" +"Added new function :c:func:`PyFunction_SetVectorcall` to the C API which " +"sets the vectorcall field of a given :c:type:`PyFunctionObject`. " +"(Contributed by Andrew Frost in :gh:`92257`.)" +msgstr "" + +#: whatsnew/3.12.rst:1828 +msgid "" +"The C API now permits registering callbacks via :c:func:" +"`PyDict_AddWatcher`, :c:func:`PyDict_Watch` and related APIs to be called " +"whenever a dictionary is modified. This is intended for use by optimizing " +"interpreters, JIT compilers, or debuggers. (Contributed by Carl Meyer in :gh:" +"`91052`.)" +msgstr "" + +#: whatsnew/3.12.rst:1834 +msgid "" +"Added :c:func:`PyType_AddWatcher` and :c:func:`PyType_Watch` API to register " +"callbacks to receive notification on changes to a type. (Contributed by Carl " +"Meyer in :gh:`91051`.)" +msgstr "" + +#: whatsnew/3.12.rst:1838 +msgid "" +"Added :c:func:`PyCode_AddWatcher` and :c:func:`PyCode_ClearWatcher` APIs to " +"register callbacks to receive notification on creation and destruction of " +"code objects. (Contributed by Itamar Ostricher in :gh:`91054`.)" +msgstr "" + +#: whatsnew/3.12.rst:1843 +msgid "" +"Add :c:func:`PyFrame_GetVar` and :c:func:`PyFrame_GetVarString` functions to " +"get a frame variable by its name. (Contributed by Victor Stinner in :gh:" +"`91248`.)" +msgstr "" + +#: whatsnew/3.12.rst:1847 +msgid "" +"Add :c:func:`PyErr_GetRaisedException` and :c:func:" +"`PyErr_SetRaisedException` for saving and restoring the current exception. " +"These functions return and accept a single exception object, rather than the " +"triple arguments of the now-deprecated :c:func:`PyErr_Fetch` and :c:func:" +"`PyErr_Restore`. This is less error prone and a bit more efficient. " +"(Contributed by Mark Shannon in :gh:`101578`.)" +msgstr "" + +#: whatsnew/3.12.rst:1855 +msgid "" +"Add ``_PyErr_ChainExceptions1``, which takes an exception instance, to " +"replace the legacy-API ``_PyErr_ChainExceptions``, which is now deprecated. " +"(Contributed by Mark Shannon in :gh:`101578`.)" +msgstr "" + +#: whatsnew/3.12.rst:1859 +msgid "" +"Add :c:func:`PyException_GetArgs` and :c:func:`PyException_SetArgs` as " +"convenience functions for retrieving and modifying the :attr:`~BaseException." +"args` passed to the exception's constructor. (Contributed by Mark Shannon " +"in :gh:`101578`.)" +msgstr "" + +#: whatsnew/3.12.rst:1864 +msgid "" +"Add :c:func:`PyErr_DisplayException`, which takes an exception instance, to " +"replace the legacy-api :c:func:`!PyErr_Display`. (Contributed by Irit " +"Katriel in :gh:`102755`)." +msgstr "" + +#: whatsnew/3.12.rst:1868 +msgid "" +":pep:`683`: Introduced Immortal Objects to Python which allows objects to " +"bypass reference counts and introduced changes to the C-API:" +msgstr "" + +#: whatsnew/3.12.rst:1871 +msgid "``_Py_IMMORTAL_REFCNT``: The reference count that defines an object" +msgstr "" + +#: whatsnew/3.12.rst:1872 +msgid "as immortal." +msgstr "" + +#: whatsnew/3.12.rst:1873 +msgid "" +"``_Py_IsImmortal`` Checks if an object has the immortal reference count." +msgstr "" + +#: whatsnew/3.12.rst:1874 +msgid "``PyObject_HEAD_INIT`` This will now initialize reference count to" +msgstr "" + +#: whatsnew/3.12.rst:1875 +msgid "``_Py_IMMORTAL_REFCNT`` when used with ``Py_BUILD_CORE``." +msgstr "" + +#: whatsnew/3.12.rst:1876 +msgid "``SSTATE_INTERNED_IMMORTAL`` An identifier for interned unicode objects" +msgstr "" + +#: whatsnew/3.12.rst:1877 +msgid "that are immortal." +msgstr "" + +#: whatsnew/3.12.rst:1878 +msgid "``SSTATE_INTERNED_IMMORTAL_STATIC`` An identifier for interned unicode" +msgstr "" + +#: whatsnew/3.12.rst:1879 +msgid "objects that are immortal and static" +msgstr "" + +#: whatsnew/3.12.rst:1882 +msgid "``sys.getunicodeinternedsize`` This returns the total number of unicode" +msgstr "" + +#: whatsnew/3.12.rst:1881 +msgid "" +"objects that have been interned. This is now needed for refleak.py to " +"correctly track reference counts and allocated blocks" +msgstr "" + +#: whatsnew/3.12.rst:1884 +msgid "(Contributed by Eddie Elizondo in :gh:`84436`.)" +msgstr "" + +#: whatsnew/3.12.rst:1886 +msgid "" +":pep:`684`: Added the new :c:func:`Py_NewInterpreterFromConfig` function " +"and :c:type:`PyInterpreterConfig`, which may be used to create sub-" +"interpreters with their own GILs. (See :ref:`whatsnew312-pep684` for more " +"info.) (Contributed by Eric Snow in :gh:`104110`.)" +msgstr "" + +#: whatsnew/3.12.rst:1892 +msgid "" +"In the limited C API version 3.12, :c:func:`Py_INCREF` and :c:func:" +"`Py_DECREF` functions are now implemented as opaque function calls to hide " +"implementation details. (Contributed by Victor Stinner in :gh:`105387`.)" +msgstr "" + +#: whatsnew/3.12.rst:1900 +msgid "" +"Legacy Unicode APIs based on ``Py_UNICODE*`` representation has been " +"removed. Please migrate to APIs based on UTF-8 or ``wchar_t*``." +msgstr "" + +#: whatsnew/3.12.rst:1903 +msgid "" +"Argument parsing functions like :c:func:`PyArg_ParseTuple` doesn't support " +"``Py_UNICODE*`` based format (e.g. ``u``, ``Z``) anymore. Please migrate to " +"other formats for Unicode like ``s``, ``z``, ``es``, and ``U``." +msgstr "" + +#: whatsnew/3.12.rst:1907 +msgid "" +"``tp_weaklist`` for all static builtin types is always ``NULL``. This is an " +"internal-only field on ``PyTypeObject`` but we're pointing out the change in " +"case someone happens to be accessing the field directly anyway. To avoid " +"breakage, consider using the existing public C-API instead, or, if " +"necessary, the (internal-only) ``_PyObject_GET_WEAKREFS_LISTPTR()`` macro." +msgstr "" + +#: whatsnew/3.12.rst:1914 +msgid "" +"This internal-only :c:member:`PyTypeObject.tp_subclasses` may now not be a " +"valid object pointer. Its type was changed to :c:expr:`void *` to reflect " +"this. We mention this in case someone happens to be accessing the internal-" +"only field directly." +msgstr "" + +#: whatsnew/3.12.rst:1919 +msgid "" +"To get a list of subclasses, call the Python method :py:meth:`~class." +"__subclasses__` (using :c:func:`PyObject_CallMethod`, for example)." +msgstr "" + +#: whatsnew/3.12.rst:1923 +msgid "" +"Add support of more formatting options (left aligning, octals, uppercase " +"hexadecimals, :c:type:`intmax_t`, :c:type:`ptrdiff_t`, :c:type:`wchar_t` C " +"strings, variable width and precision) in :c:func:`PyUnicode_FromFormat` " +"and :c:func:`PyUnicode_FromFormatV`. (Contributed by Serhiy Storchaka in :gh:" +"`98836`.)" +msgstr "" + +#: whatsnew/3.12.rst:1929 +msgid "" +"An unrecognized format character in :c:func:`PyUnicode_FromFormat` and :c:" +"func:`PyUnicode_FromFormatV` now sets a :exc:`SystemError`. In previous " +"versions it caused all the rest of the format string to be copied as-is to " +"the result string, and any extra arguments discarded. (Contributed by Serhiy " +"Storchaka in :gh:`95781`.)" +msgstr "" + +#: whatsnew/3.12.rst:1935 +msgid "" +"Fixed wrong sign placement in :c:func:`PyUnicode_FromFormat` and :c:func:" +"`PyUnicode_FromFormatV`. (Contributed by Philip Georgi in :gh:`95504`.)" +msgstr "" + +#: whatsnew/3.12.rst:1939 +msgid "" +"Extension classes wanting to add a ``__dict__`` or weak reference slot " +"should use :c:macro:`Py_TPFLAGS_MANAGED_DICT` and :c:macro:" +"`Py_TPFLAGS_MANAGED_WEAKREF` instead of ``tp_dictoffset`` and " +"``tp_weaklistoffset``, respectively. The use of ``tp_dictoffset`` and " +"``tp_weaklistoffset`` is still supported, but does not fully support " +"multiple inheritance (:gh:`95589`), and performance may be worse. Classes " +"declaring :c:macro:`Py_TPFLAGS_MANAGED_DICT` should call :c:func:`!" +"_PyObject_VisitManagedDict` and :c:func:`!_PyObject_ClearManagedDict` to " +"traverse and clear their instance's dictionaries. To clear weakrefs, call :c:" +"func:`PyObject_ClearWeakRefs`, as before." +msgstr "" + +#: whatsnew/3.12.rst:1951 +msgid "" +"The :c:func:`PyUnicode_FSDecoder` function no longer accepts bytes-like " +"paths, like :class:`bytearray` and :class:`memoryview` types: only the " +"exact :class:`bytes` type is accepted for bytes strings. (Contributed by " +"Victor Stinner in :gh:`98393`.)" +msgstr "" + +#: whatsnew/3.12.rst:1956 +msgid "" +"The :c:macro:`Py_CLEAR`, :c:macro:`Py_SETREF` and :c:macro:`Py_XSETREF` " +"macros now only evaluate their arguments once. If an argument has side " +"effects, these side effects are no longer duplicated. (Contributed by Victor " +"Stinner in :gh:`98724`.)" +msgstr "" + +#: whatsnew/3.12.rst:1961 +msgid "" +"The interpreter's error indicator is now always normalized. This means that :" +"c:func:`PyErr_SetObject`, :c:func:`PyErr_SetString` and the other functions " +"that set the error indicator now normalize the exception before storing it. " +"(Contributed by Mark Shannon in :gh:`101578`.)" +msgstr "" + +#: whatsnew/3.12.rst:1966 +msgid "" +"``_Py_RefTotal`` is no longer authoritative and only kept around for ABI " +"compatibility. Note that it is an internal global and only available on " +"debug builds. If you happen to be using it then you'll need to start using " +"``_Py_GetGlobalRefTotal()``." +msgstr "" + +#: whatsnew/3.12.rst:1971 +msgid "" +"The following functions now select an appropriate metaclass for the newly " +"created type:" +msgstr "" + +#: whatsnew/3.12.rst:1974 +msgid ":c:func:`PyType_FromSpec`" +msgstr "" + +#: whatsnew/3.12.rst:1975 +msgid ":c:func:`PyType_FromSpecWithBases`" +msgstr "" + +#: whatsnew/3.12.rst:1976 +msgid ":c:func:`PyType_FromModuleAndSpec`" +msgstr "" + +#: whatsnew/3.12.rst:1978 +msgid "" +"Creating classes whose metaclass overrides :c:member:`~PyTypeObject.tp_new` " +"is deprecated, and in Python 3.14+ it will be disallowed. Note that these " +"functions ignore ``tp_new`` of the metaclass, possibly allowing incomplete " +"initialization." +msgstr "" + +#: whatsnew/3.12.rst:1983 +msgid "" +"Note that :c:func:`PyType_FromMetaclass` (added in Python 3.12) already " +"disallows creating classes whose metaclass overrides ``tp_new`` (:meth:" +"`~object.__new__` in Python)." +msgstr "" + +#: whatsnew/3.12.rst:1987 +msgid "" +"Since ``tp_new`` overrides almost everything ``PyType_From*`` functions do, " +"the two are incompatible with each other. The existing behavior -- ignoring " +"the metaclass for several steps of type creation -- is unsafe in general, " +"since (meta)classes assume that ``tp_new`` was called. There is no simple " +"general workaround. One of the following may work for you:" +msgstr "" + +#: whatsnew/3.12.rst:1994 +msgid "If you control the metaclass, avoid using ``tp_new`` in it:" +msgstr "" + +#: whatsnew/3.12.rst:1996 +msgid "" +"If initialization can be skipped, it can be done in :c:member:`~PyTypeObject." +"tp_init` instead." +msgstr "" + +#: whatsnew/3.12.rst:1998 +msgid "" +"If the metaclass doesn't need to be instantiated from Python, set its " +"``tp_new`` to ``NULL`` using the :c:macro:" +"`Py_TPFLAGS_DISALLOW_INSTANTIATION` flag. This makes it acceptable for " +"``PyType_From*`` functions." +msgstr "" + +#: whatsnew/3.12.rst:2003 +msgid "" +"Avoid ``PyType_From*`` functions: if you don't need C-specific features " +"(slots or setting the instance size), create types by :ref:`calling ` " +"the metaclass." +msgstr "" + +#: whatsnew/3.12.rst:2007 +msgid "" +"If you *know* the ``tp_new`` can be skipped safely, filter the deprecation " +"warning out using :func:`warnings.catch_warnings` from Python." +msgstr "" + +#: whatsnew/3.12.rst:2010 +msgid "" +":c:var:`PyOS_InputHook` and :c:var:`PyOS_ReadlineFunctionPointer` are no " +"longer called in :ref:`subinterpreters `. This is " +"because clients generally rely on process-wide global state (since these " +"callbacks have no way of recovering extension module state)." +msgstr "" + +#: whatsnew/3.12.rst:2015 +msgid "" +"This also avoids situations where extensions may find themselves running in " +"a subinterpreter that they don't support (or haven't yet been loaded in). " +"See :gh:`104668` for more info." +msgstr "" + +#: whatsnew/3.12.rst:2019 +msgid "" +":c:struct:`PyLongObject` has had its internals changed for better " +"performance. Although the internals of :c:struct:`PyLongObject` are private, " +"they are used by some extension modules. The internal fields should no " +"longer be accessed directly, instead the API functions beginning ``PyLong_..." +"`` should be used instead. Two new *unstable* API functions are provided for " +"efficient access to the value of :c:struct:`PyLongObject`\\s which fit into " +"a single machine word:" +msgstr "" + +#: whatsnew/3.12.rst:2027 +msgid ":c:func:`PyUnstable_Long_IsCompact`" +msgstr "" + +#: whatsnew/3.12.rst:2028 +msgid ":c:func:`PyUnstable_Long_CompactValue`" +msgstr "" + +#: whatsnew/3.12.rst:2030 +msgid "" +"Custom allocators, set via :c:func:`PyMem_SetAllocator`, are now required to " +"be thread-safe, regardless of memory domain. Allocators that don't have " +"their own state, including \"hooks\", are not affected. If your custom " +"allocator is not already thread-safe and you need guidance then please " +"create a new GitHub issue and CC ``@ericsnowcurrently``." +msgstr "" + +#: whatsnew/3.12.rst:2040 +msgid "Deprecate global configuration variable:" +msgstr "" + +#: whatsnew/3.12.rst:2042 +msgid ":c:var:`Py_DebugFlag`: use :c:member:`PyConfig.parser_debug`" +msgstr "" + +#: whatsnew/3.12.rst:2043 +msgid ":c:var:`Py_VerboseFlag`: use :c:member:`PyConfig.verbose`" +msgstr "" + +#: whatsnew/3.12.rst:2044 +msgid ":c:var:`Py_QuietFlag`: use :c:member:`PyConfig.quiet`" +msgstr "" + +#: whatsnew/3.12.rst:2045 +msgid ":c:var:`Py_InteractiveFlag`: use :c:member:`PyConfig.interactive`" +msgstr "" + +#: whatsnew/3.12.rst:2046 +msgid ":c:var:`Py_InspectFlag`: use :c:member:`PyConfig.inspect`" +msgstr "" + +#: whatsnew/3.12.rst:2047 +msgid ":c:var:`Py_OptimizeFlag`: use :c:member:`PyConfig.optimization_level`" +msgstr "" + +#: whatsnew/3.12.rst:2048 +msgid ":c:var:`Py_NoSiteFlag`: use :c:member:`PyConfig.site_import`" +msgstr "" + +#: whatsnew/3.12.rst:2049 +msgid ":c:var:`Py_BytesWarningFlag`: use :c:member:`PyConfig.bytes_warning`" +msgstr "" + +#: whatsnew/3.12.rst:2050 +msgid ":c:var:`Py_FrozenFlag`: use :c:member:`PyConfig.pathconfig_warnings`" +msgstr "" + +#: whatsnew/3.12.rst:2051 +msgid "" +":c:var:`Py_IgnoreEnvironmentFlag`: use :c:member:`PyConfig.use_environment`" +msgstr "" + +#: whatsnew/3.12.rst:2052 +msgid "" +":c:var:`Py_DontWriteBytecodeFlag`: use :c:member:`PyConfig.write_bytecode`" +msgstr "" + +#: whatsnew/3.12.rst:2053 +msgid "" +":c:var:`Py_NoUserSiteDirectory`: use :c:member:`PyConfig.user_site_directory`" +msgstr "" + +#: whatsnew/3.12.rst:2054 +msgid "" +":c:var:`Py_UnbufferedStdioFlag`: use :c:member:`PyConfig.buffered_stdio`" +msgstr "" + +#: whatsnew/3.12.rst:2055 +msgid "" +":c:var:`Py_HashRandomizationFlag`: use :c:member:`PyConfig.use_hash_seed` " +"and :c:member:`PyConfig.hash_seed`" +msgstr "" + +#: whatsnew/3.12.rst:2057 +msgid ":c:var:`Py_IsolatedFlag`: use :c:member:`PyConfig.isolated`" +msgstr "" + +#: whatsnew/3.12.rst:2058 +msgid "" +":c:var:`Py_LegacyWindowsFSEncodingFlag`: use :c:member:`PyPreConfig." +"legacy_windows_fs_encoding`" +msgstr "" + +#: whatsnew/3.12.rst:2059 +msgid "" +":c:var:`Py_LegacyWindowsStdioFlag`: use :c:member:`PyConfig." +"legacy_windows_stdio`" +msgstr "" + +#: whatsnew/3.12.rst:2060 +msgid "" +":c:var:`!Py_FileSystemDefaultEncoding`: use :c:member:`PyConfig." +"filesystem_encoding`" +msgstr "" + +#: whatsnew/3.12.rst:2061 +msgid "" +":c:var:`!Py_HasFileSystemDefaultEncoding`: use :c:member:`PyConfig." +"filesystem_encoding`" +msgstr "" + +#: whatsnew/3.12.rst:2062 +msgid "" +":c:var:`!Py_FileSystemDefaultEncodeErrors`: use :c:member:`PyConfig." +"filesystem_errors`" +msgstr "" + +#: whatsnew/3.12.rst:2063 +msgid "" +":c:var:`!Py_UTF8Mode`: use :c:member:`PyPreConfig.utf8_mode` (see :c:func:" +"`Py_PreInitialize`)" +msgstr "" + +#: whatsnew/3.12.rst:2065 +msgid "" +"The :c:func:`Py_InitializeFromConfig` API should be used with :c:type:" +"`PyConfig` instead. (Contributed by Victor Stinner in :gh:`77782`.)" +msgstr "" + +#: whatsnew/3.12.rst:2069 +msgid "" +"Creating immutable types (:c:macro:`Py_TPFLAGS_IMMUTABLETYPE`) with mutable " +"bases is deprecated and will be disabled in Python 3.14." +msgstr "" + +#: whatsnew/3.12.rst:2072 +msgid "" +"The ``structmember.h`` header is deprecated, though it continues to be " +"available and there are no plans to remove it." +msgstr "" + +#: whatsnew/3.12.rst:2075 +msgid "" +"Its contents are now available just by including ``Python.h``, with a ``Py`` " +"prefix added if it was missing:" +msgstr "" + +#: whatsnew/3.12.rst:2078 +msgid "" +":c:struct:`PyMemberDef`, :c:func:`PyMember_GetOne` and :c:func:" +"`PyMember_SetOne`" +msgstr "" + +#: whatsnew/3.12.rst:2080 +msgid "" +"Type macros like :c:macro:`Py_T_INT`, :c:macro:`Py_T_DOUBLE`, etc. " +"(previously ``T_INT``, ``T_DOUBLE``, etc.)" +msgstr "" + +#: whatsnew/3.12.rst:2082 +msgid "" +"The flags :c:macro:`Py_READONLY` (previously ``READONLY``) and :c:macro:" +"`Py_AUDIT_READ` (previously all uppercase)" +msgstr "" + +#: whatsnew/3.12.rst:2085 +msgid "Several items are not exposed from ``Python.h``:" +msgstr "" + +#: whatsnew/3.12.rst:2087 +msgid ":c:macro:`T_OBJECT` (use :c:macro:`Py_T_OBJECT_EX`)" +msgstr "" + +#: whatsnew/3.12.rst:2088 +msgid ":c:macro:`T_NONE` (previously undocumented, and pretty quirky)" +msgstr "" + +#: whatsnew/3.12.rst:2089 +msgid "The macro ``WRITE_RESTRICTED`` which does nothing." +msgstr "" + +#: whatsnew/3.12.rst:2090 +msgid "" +"The macros ``RESTRICTED`` and ``READ_RESTRICTED``, equivalents of :c:macro:" +"`Py_AUDIT_READ`." +msgstr "" + +#: whatsnew/3.12.rst:2092 +msgid "" +"In some configurations, ```` is not included from ``Python.h``. It " +"should be included manually when using ``offsetof()``." +msgstr "" + +#: whatsnew/3.12.rst:2095 +msgid "" +"The deprecated header continues to provide its original contents under the " +"original names. Your old code can stay unchanged, unless the extra include " +"and non-namespaced macros bother you greatly." +msgstr "" + +#: whatsnew/3.12.rst:2100 +msgid "" +"(Contributed in :gh:`47146` by Petr Viktorin, based on earlier work by " +"Alexander Belopolsky and Matthias Braun.)" +msgstr "" + +#: whatsnew/3.12.rst:2103 +msgid "" +":c:func:`PyErr_Fetch` and :c:func:`PyErr_Restore` are deprecated. Use :c:" +"func:`PyErr_GetRaisedException` and :c:func:`PyErr_SetRaisedException` " +"instead. (Contributed by Mark Shannon in :gh:`101578`.)" +msgstr "" + +#: whatsnew/3.12.rst:2108 +msgid "" +":c:func:`!PyErr_Display` is deprecated. Use :c:func:`PyErr_DisplayException` " +"instead. (Contributed by Irit Katriel in :gh:`102755`)." +msgstr "" + +#: whatsnew/3.12.rst:2111 +msgid "" +"``_PyErr_ChainExceptions`` is deprecated. Use ``_PyErr_ChainExceptions1`` " +"instead. (Contributed by Irit Katriel in :gh:`102192`.)" +msgstr "" + +#: whatsnew/3.12.rst:2114 +msgid "" +"Using :c:func:`PyType_FromSpec`, :c:func:`PyType_FromSpecWithBases` or :c:" +"func:`PyType_FromModuleAndSpec` to create a class whose metaclass overrides :" +"c:member:`~PyTypeObject.tp_new` is deprecated. Call the metaclass instead." +msgstr "" + +#: whatsnew/3.12.rst:2122 +msgid "" +"Remove the ``token.h`` header file. There was never any public tokenizer C " +"API. The ``token.h`` header file was only designed to be used by Python " +"internals. (Contributed by Victor Stinner in :gh:`92651`.)" +msgstr "" + +#: whatsnew/3.12.rst:2127 +msgid "Legacy Unicode APIs have been removed. See :pep:`623` for detail." +msgstr "" + +#: whatsnew/3.12.rst:2129 +msgid ":c:macro:`!PyUnicode_WCHAR_KIND`" +msgstr "" + +#: whatsnew/3.12.rst:2130 +msgid ":c:func:`!PyUnicode_AS_UNICODE`" +msgstr "" + +#: whatsnew/3.12.rst:2131 +msgid ":c:func:`!PyUnicode_AsUnicode`" +msgstr "" + +#: whatsnew/3.12.rst:2132 +msgid ":c:func:`!PyUnicode_AsUnicodeAndSize`" +msgstr "" + +#: whatsnew/3.12.rst:2133 +msgid ":c:func:`!PyUnicode_AS_DATA`" +msgstr "" + +#: whatsnew/3.12.rst:2134 +msgid ":c:func:`!PyUnicode_FromUnicode`" +msgstr "" + +#: whatsnew/3.12.rst:2135 +msgid ":c:func:`!PyUnicode_GET_SIZE`" +msgstr "" + +#: whatsnew/3.12.rst:2136 +msgid ":c:func:`!PyUnicode_GetSize`" +msgstr "" + +#: whatsnew/3.12.rst:2137 +msgid ":c:func:`!PyUnicode_GET_DATA_SIZE`" +msgstr "" + +#: whatsnew/3.12.rst:2139 +msgid "" +"Remove the ``PyUnicode_InternImmortal()`` function macro. (Contributed by " +"Victor Stinner in :gh:`85858`.)" +msgstr "" + +#: whatsnew/3.12.rst:2142 +msgid "" +"Remove ``Jython`` compatibility hacks from several stdlib modules and tests. " +"(Contributed by Nikita Sobolev in :gh:`99482`.)" +msgstr "" + +#: whatsnew/3.12.rst:2145 +msgid "" +"Remove ``_use_broken_old_ctypes_structure_semantics_`` flag from :mod:" +"`ctypes` module. (Contributed by Nikita Sobolev in :gh:`99285`.)" +msgstr "" diff --git a/whatsnew/3.2.po b/whatsnew/3.2.po index 851319a9b..cc6de193b 100644 --- a/whatsnew/3.2.po +++ b/whatsnew/3.2.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -292,15 +292,15 @@ msgstr "" #: whatsnew/3.2.rst:322 msgid "" -"The tag that is unique to each interpreter is accessible from the :mod:`imp` " -"module:" +"The tag that is unique to each interpreter is accessible from the :mod:`!" +"imp` module:" msgstr "" #: whatsnew/3.2.rst:329 msgid "" "Scripts that try to deduce source filename from the imported file now need " "to be smarter. It is no longer sufficient to simply strip the \"c\" from a " -"\".pyc\" filename. Instead, use the new functions in the :mod:`imp` module:" +"\".pyc\" filename. Instead, use the new functions in the :mod:`!imp` module:" msgstr "" #: whatsnew/3.2.rst:338 @@ -470,13 +470,13 @@ msgid "" "meth:`__missing__` method for unknown keys::" msgstr "" -#: whatsnew/3.2.rst:481 +#: whatsnew/3.2.rst:483 msgid "" "(Suggested by Raymond Hettinger and implemented by Eric Smith in :issue:" "`6081`.)" msgstr "" -#: whatsnew/3.2.rst:484 +#: whatsnew/3.2.rst:486 msgid "" "The interpreter can now be started with a quiet option, ``-q``, to prevent " "the copyright and version information from being displayed in the " @@ -484,11 +484,11 @@ msgid "" "flags` attribute:" msgstr "" -#: whatsnew/3.2.rst:496 +#: whatsnew/3.2.rst:498 msgid "(Contributed by Marcin Wojdyr in :issue:`1772833`)." msgstr "" -#: whatsnew/3.2.rst:498 +#: whatsnew/3.2.rst:500 msgid "" "The :func:`hasattr` function works by calling :func:`getattr` and detecting " "whether an exception is raised. This technique allows it to detect methods " @@ -499,12 +499,12 @@ msgid "" "exceptions pass through::" msgstr "" -#: whatsnew/3.2.rst:517 +#: whatsnew/3.2.rst:519 msgid "" "(Discovered by Yury Selivanov and fixed by Benjamin Peterson; :issue:`9666`.)" msgstr "" -#: whatsnew/3.2.rst:519 +#: whatsnew/3.2.rst:521 msgid "" "The :func:`str` of a float or complex number is now the same as its :func:" "`repr`. Previously, the :func:`str` form was shorter but that just caused " @@ -512,11 +512,11 @@ msgid "" "`repr` is displayed by default:" msgstr "" -#: whatsnew/3.2.rst:530 +#: whatsnew/3.2.rst:532 msgid "(Proposed and implemented by Mark Dickinson; :issue:`9337`.)" msgstr "" -#: whatsnew/3.2.rst:532 +#: whatsnew/3.2.rst:534 msgid "" ":class:`memoryview` objects now have a :meth:`~memoryview.release()` method " "and they also now support the context management protocol. This allows " @@ -524,28 +524,28 @@ msgid "" "from the original object." msgstr "" -#: whatsnew/3.2.rst:541 +#: whatsnew/3.2.rst:543 msgid "(Added by Antoine Pitrou; :issue:`9757`.)" msgstr "" -#: whatsnew/3.2.rst:543 +#: whatsnew/3.2.rst:545 msgid "" "Previously it was illegal to delete a name from the local namespace if it " "occurs as a free variable in a nested block::" msgstr "" -#: whatsnew/3.2.rst:552 +#: whatsnew/3.2.rst:554 msgid "" "This is now allowed. Remember that the target of an :keyword:`except` " "clause is cleared, so this code which used to work with Python 2.6, raised " "a :exc:`SyntaxError` with Python 3.1 and now works again::" msgstr "" -#: whatsnew/3.2.rst:565 +#: whatsnew/3.2.rst:567 msgid "(See :issue:`4617`.)" msgstr "" -#: whatsnew/3.2.rst:567 +#: whatsnew/3.2.rst:569 msgid "" ":ref:`Struct sequence types ` are now subclasses of " "tuple. This means that C structures like those returned by :func:`os.stat`, :" @@ -555,25 +555,25 @@ msgid "" "flexible as their pure Python counterparts:" msgstr "" -#: whatsnew/3.2.rst:580 +#: whatsnew/3.2.rst:582 msgid "" "(Suggested by Arfrever Frehtes Taifersar Arahesis and implemented by " "Benjamin Peterson in :issue:`8413`.)" msgstr "" -#: whatsnew/3.2.rst:583 +#: whatsnew/3.2.rst:585 msgid "" "Warnings are now easier to control using the :envvar:`PYTHONWARNINGS` " "environment variable as an alternative to using ``-W`` at the command line:" msgstr "" -#: whatsnew/3.2.rst:590 +#: whatsnew/3.2.rst:592 msgid "" "(Suggested by Barry Warsaw and implemented by Philip Jenvey in :issue:" "`7301`.)" msgstr "" -#: whatsnew/3.2.rst:592 +#: whatsnew/3.2.rst:594 msgid "" "A new warning category, :exc:`ResourceWarning`, has been added. It is " "emitted when potential issues with resource consumption or cleanup are " @@ -582,7 +582,7 @@ msgid "" "command line." msgstr "" -#: whatsnew/3.2.rst:598 +#: whatsnew/3.2.rst:600 msgid "" "A :exc:`ResourceWarning` is issued at interpreter shutdown if the :data:`gc." "garbage` list isn't empty, and if :const:`gc.DEBUG_UNCOLLECTABLE` is set, " @@ -590,7 +590,7 @@ msgid "" "aware that their code contains object finalization issues." msgstr "" -#: whatsnew/3.2.rst:603 +#: whatsnew/3.2.rst:605 msgid "" "A :exc:`ResourceWarning` is also issued when a :term:`file object` is " "destroyed without having been explicitly closed. While the deallocator for " @@ -600,13 +600,13 @@ msgid "" "enabling the warning from the command line:" msgstr "" -#: whatsnew/3.2.rst:617 +#: whatsnew/3.2.rst:619 msgid "" "(Added by Antoine Pitrou and Georg Brandl in :issue:`10093` and :issue:" "`477863`.)" msgstr "" -#: whatsnew/3.2.rst:619 +#: whatsnew/3.2.rst:621 msgid "" ":class:`range` objects now support *index* and *count* methods. This is part " "of an effort to make more objects fully implement the :class:`collections." @@ -616,45 +616,45 @@ msgid "" "This makes *range* more interoperable with lists::" msgstr "" -#: whatsnew/3.2.rst:635 +#: whatsnew/3.2.rst:637 msgid "" "(Contributed by Daniel Stutzbach in :issue:`9213`, by Alexander Belopolsky " "in :issue:`2690`, and by Nick Coghlan in :issue:`10889`.)" msgstr "" -#: whatsnew/3.2.rst:638 +#: whatsnew/3.2.rst:640 msgid "" "The :func:`callable` builtin function from Py2.x was resurrected. It " "provides a concise, readable alternative to using an :term:`abstract base " "class` in an expression like ``isinstance(x, collections.Callable)``:" msgstr "" -#: whatsnew/3.2.rst:647 +#: whatsnew/3.2.rst:649 msgid "(See :issue:`10518`.)" msgstr "" -#: whatsnew/3.2.rst:649 +#: whatsnew/3.2.rst:651 msgid "" "Python's import mechanism can now load modules installed in directories with " "non-ASCII characters in the path name. This solved an aggravating problem " "with home directories for users with non-ASCII characters in their usernames." msgstr "" -#: whatsnew/3.2.rst:653 +#: whatsnew/3.2.rst:655 msgid "(Required extensive work by Victor Stinner in :issue:`9425`.)" msgstr "" -#: whatsnew/3.2.rst:657 +#: whatsnew/3.2.rst:659 msgid "New, Improved, and Deprecated Modules" msgstr "" -#: whatsnew/3.2.rst:659 +#: whatsnew/3.2.rst:661 msgid "" "Python's standard library has undergone significant maintenance efforts and " "quality improvements." msgstr "" -#: whatsnew/3.2.rst:662 +#: whatsnew/3.2.rst:664 msgid "" "The biggest news for Python 3.2 is that the :mod:`email` package, :mod:" "`mailbox` module, and :mod:`nntplib` modules now work correctly with the " @@ -662,7 +662,7 @@ msgid "" "of messages with mixed encodings." msgstr "" -#: whatsnew/3.2.rst:667 +#: whatsnew/3.2.rst:669 msgid "" "Throughout the standard library, there has been more careful attention to " "encodings and text versus bytes issues. In particular, interactions with " @@ -670,23 +670,23 @@ msgid "" "the Windows MBCS encoding, locale-aware encodings, or UTF-8." msgstr "" -#: whatsnew/3.2.rst:672 +#: whatsnew/3.2.rst:674 msgid "" "Another significant win is the addition of substantially better support for " "*SSL* connections and security certificates." msgstr "" -#: whatsnew/3.2.rst:675 +#: whatsnew/3.2.rst:677 msgid "" "In addition, more classes now implement a :term:`context manager` to support " "convenient and reliable resource clean-up using a :keyword:`with` statement." msgstr "" -#: whatsnew/3.2.rst:679 +#: whatsnew/3.2.rst:681 msgid "email" msgstr "" -#: whatsnew/3.2.rst:681 +#: whatsnew/3.2.rst:683 msgid "" "The usability of the :mod:`email` package in Python 3 has been mostly fixed " "by the extensive efforts of R. David Murray. The problem was that emails " @@ -696,7 +696,7 @@ msgid "" "messages in bytes format." msgstr "" -#: whatsnew/3.2.rst:688 +#: whatsnew/3.2.rst:690 msgid "" "New functions :func:`~email.message_from_bytes` and :func:`~email." "message_from_binary_file`, and new classes :class:`~email.parser." @@ -704,7 +704,7 @@ msgid "" "data to be parsed into model objects." msgstr "" -#: whatsnew/3.2.rst:693 +#: whatsnew/3.2.rst:695 msgid "" "Given bytes input to the model, :meth:`~email.message.Message.get_payload` " "will by default decode a message body that has a :mailheader:`Content-" @@ -712,20 +712,20 @@ msgid "" "and return the resulting string." msgstr "" -#: whatsnew/3.2.rst:698 +#: whatsnew/3.2.rst:700 msgid "" "Given bytes input to the model, :class:`~email.generator.Generator` will " "convert message bodies that have a :mailheader:`Content-Transfer-Encoding` " "of *8bit* to instead have a *7bit* :mailheader:`Content-Transfer-Encoding`." msgstr "" -#: whatsnew/3.2.rst:702 +#: whatsnew/3.2.rst:704 msgid "" "Headers with unencoded non-ASCII bytes are deemed to be :rfc:`2047`\\ -" "encoded using the *unknown-8bit* character set." msgstr "" -#: whatsnew/3.2.rst:705 +#: whatsnew/3.2.rst:707 msgid "" "A new class :class:`~email.generator.BytesGenerator` produces bytes as " "output, preserving any unchanged non-ASCII data that was present in the " @@ -733,7 +733,7 @@ msgid "" "`Content-Transfer-Encoding` of *8bit*." msgstr "" -#: whatsnew/3.2.rst:710 +#: whatsnew/3.2.rst:712 msgid "" "The :mod:`smtplib` :class:`~smtplib.SMTP` class now accepts a byte string " "for the *msg* argument to the :meth:`~smtplib.SMTP.sendmail` method, and a " @@ -742,126 +742,126 @@ msgid "" "*to_addrs* addresses directly from the object." msgstr "" -#: whatsnew/3.2.rst:716 +#: whatsnew/3.2.rst:718 msgid "" "(Proposed and implemented by R. David Murray, :issue:`4661` and :issue:" "`10321`.)" msgstr "" -#: whatsnew/3.2.rst:719 +#: whatsnew/3.2.rst:721 msgid "elementtree" msgstr "" -#: whatsnew/3.2.rst:721 +#: whatsnew/3.2.rst:723 msgid "" "The :mod:`xml.etree.ElementTree` package and its :mod:`xml.etree." "cElementTree` counterpart have been updated to version 1.3." msgstr "" -#: whatsnew/3.2.rst:724 +#: whatsnew/3.2.rst:726 msgid "Several new and useful functions and methods have been added:" msgstr "" -#: whatsnew/3.2.rst:726 +#: whatsnew/3.2.rst:728 msgid "" ":func:`xml.etree.ElementTree.fromstringlist` which builds an XML document " "from a sequence of fragments" msgstr "" -#: whatsnew/3.2.rst:728 +#: whatsnew/3.2.rst:730 msgid "" ":func:`xml.etree.ElementTree.register_namespace` for registering a global " "namespace prefix" msgstr "" -#: whatsnew/3.2.rst:730 +#: whatsnew/3.2.rst:732 msgid "" ":func:`xml.etree.ElementTree.tostringlist` for string representation " "including all sublists" msgstr "" -#: whatsnew/3.2.rst:732 +#: whatsnew/3.2.rst:734 msgid "" ":meth:`xml.etree.ElementTree.Element.extend` for appending a sequence of " "zero or more elements" msgstr "" -#: whatsnew/3.2.rst:734 +#: whatsnew/3.2.rst:736 msgid "" ":meth:`xml.etree.ElementTree.Element.iterfind` searches an element and " "subelements" msgstr "" -#: whatsnew/3.2.rst:736 +#: whatsnew/3.2.rst:738 msgid "" ":meth:`xml.etree.ElementTree.Element.itertext` creates a text iterator over " "an element and its subelements" msgstr "" -#: whatsnew/3.2.rst:738 +#: whatsnew/3.2.rst:740 msgid "" ":meth:`xml.etree.ElementTree.TreeBuilder.end` closes the current element" msgstr "" -#: whatsnew/3.2.rst:739 +#: whatsnew/3.2.rst:741 msgid "" ":meth:`xml.etree.ElementTree.TreeBuilder.doctype` handles a doctype " "declaration" msgstr "" -#: whatsnew/3.2.rst:742 +#: whatsnew/3.2.rst:744 msgid "Two methods have been deprecated:" msgstr "" -#: whatsnew/3.2.rst:744 +#: whatsnew/3.2.rst:746 msgid ":meth:`xml.etree.ElementTree.getchildren` use ``list(elem)`` instead." msgstr "" -#: whatsnew/3.2.rst:745 +#: whatsnew/3.2.rst:747 msgid ":meth:`xml.etree.ElementTree.getiterator` use ``Element.iter`` instead." msgstr "" -#: whatsnew/3.2.rst:747 +#: whatsnew/3.2.rst:749 msgid "" "For details of the update, see `Introducing ElementTree `_ on " "Fredrik Lundh's website." msgstr "" -#: whatsnew/3.2.rst:751 +#: whatsnew/3.2.rst:753 msgid "(Contributed by Florent Xicluna and Fredrik Lundh, :issue:`6472`.)" msgstr "" -#: whatsnew/3.2.rst:754 +#: whatsnew/3.2.rst:756 msgid "functools" msgstr "" -#: whatsnew/3.2.rst:756 +#: whatsnew/3.2.rst:758 msgid "" "The :mod:`functools` module includes a new decorator for caching function " "calls. :func:`functools.lru_cache` can save repeated queries to an external " "resource whenever the results are expected to be the same." msgstr "" -#: whatsnew/3.2.rst:760 +#: whatsnew/3.2.rst:762 msgid "" "For example, adding a caching decorator to a database query function can " "save database accesses for popular searches:" msgstr "" -#: whatsnew/3.2.rst:773 +#: whatsnew/3.2.rst:775 msgid "" "To help with choosing an effective cache size, the wrapped function is " "instrumented for tracking cache statistics:" msgstr "" -#: whatsnew/3.2.rst:779 +#: whatsnew/3.2.rst:781 msgid "" "If the phonelist table gets updated, the outdated contents of the cache can " "be cleared with:" msgstr "" -#: whatsnew/3.2.rst:784 +#: whatsnew/3.2.rst:786 msgid "" "(Contributed by Raymond Hettinger and incorporating design ideas from Jim " "Baker, Miki Tebeka, and Nick Coghlan; see `recipe 498245 `_\\, :issue:`10586`, and :issue:`10593`.)" msgstr "" -#: whatsnew/3.2.rst:790 +#: whatsnew/3.2.rst:792 msgid "" "The :func:`functools.wraps` decorator now adds a :attr:`__wrapped__` " "attribute pointing to the original callable function. This allows wrapped " @@ -878,82 +878,82 @@ msgid "" "attr:`__doc__` which might not be defined for the wrapped callable." msgstr "" -#: whatsnew/3.2.rst:796 +#: whatsnew/3.2.rst:798 msgid "" "In the above example, the cache can be removed by recovering the original " "function:" msgstr "" -#: whatsnew/3.2.rst:801 +#: whatsnew/3.2.rst:803 msgid "" "(By Nick Coghlan and Terrence Cole; :issue:`9567`, :issue:`3445`, and :issue:" "`8814`.)" msgstr "" -#: whatsnew/3.2.rst:804 +#: whatsnew/3.2.rst:806 msgid "" "To help write classes with rich comparison methods, a new decorator :func:" "`functools.total_ordering` will use existing equality and inequality methods " "to fill in the remaining methods." msgstr "" -#: whatsnew/3.2.rst:808 +#: whatsnew/3.2.rst:810 msgid "" "For example, supplying *__eq__* and *__lt__* will enable :func:`~functools." "total_ordering` to fill-in *__le__*, *__gt__* and *__ge__*::" msgstr "" -#: whatsnew/3.2.rst:821 +#: whatsnew/3.2.rst:823 msgid "" "With the *total_ordering* decorator, the remaining comparison methods are " "filled in automatically." msgstr "" -#: whatsnew/3.2.rst:836 whatsnew/3.2.rst:901 whatsnew/3.2.rst:1785 -#: whatsnew/3.2.rst:1830 +#: whatsnew/3.2.rst:838 whatsnew/3.2.rst:903 whatsnew/3.2.rst:1787 +#: whatsnew/3.2.rst:1831 msgid "(Contributed by Raymond Hettinger.)" msgstr "" -#: whatsnew/3.2.rst:826 +#: whatsnew/3.2.rst:828 msgid "" "To aid in porting programs from Python 2, the :func:`functools.cmp_to_key` " "function converts an old-style comparison function to modern :term:`key " "function`:" msgstr "" -#: whatsnew/3.2.rst:833 +#: whatsnew/3.2.rst:835 msgid "" "For sorting examples and a brief sorting tutorial, see the `Sorting HowTo " "`_ tutorial." msgstr "" -#: whatsnew/3.2.rst:839 +#: whatsnew/3.2.rst:841 msgid "itertools" msgstr "" -#: whatsnew/3.2.rst:841 +#: whatsnew/3.2.rst:843 msgid "" "The :mod:`itertools` module has a new :func:`~itertools.accumulate` function " "modeled on APL's *scan* operator and Numpy's *accumulate* function:" msgstr "" -#: whatsnew/3.2.rst:852 +#: whatsnew/3.2.rst:854 msgid "" "For an example using :func:`~itertools.accumulate`, see the :ref:`examples " "for the random module `." msgstr "" -#: whatsnew/3.2.rst:855 +#: whatsnew/3.2.rst:857 msgid "" "(Contributed by Raymond Hettinger and incorporating design suggestions from " "Mark Dickinson.)" msgstr "" -#: whatsnew/3.2.rst:859 +#: whatsnew/3.2.rst:861 msgid "collections" msgstr "" -#: whatsnew/3.2.rst:861 +#: whatsnew/3.2.rst:863 msgid "" "The :class:`collections.Counter` class now has two forms of in-place " "subtraction, the existing *-=* operator for `saturating subtraction `_ which is defined for only two threads." msgstr "" -#: whatsnew/3.2.rst:930 +#: whatsnew/3.2.rst:932 msgid "" "Implemented as a two-phase cyclic barrier, :class:`~threading.Barrier` " "objects are suitable for use in loops. The separate *filling* and " @@ -1020,11 +1020,11 @@ msgid "" "resets after each cycle." msgstr "" -#: whatsnew/3.2.rst:935 +#: whatsnew/3.2.rst:937 msgid "Example of using barriers::" msgstr "" -#: whatsnew/3.2.rst:949 +#: whatsnew/3.2.rst:951 msgid "" "In this example, the barrier enforces a rule that votes cannot be counted at " "any polling site until all polls are closed. Notice how a solution with a " @@ -1033,7 +1033,7 @@ msgid "" "barrier point is crossed." msgstr "" -#: whatsnew/3.2.rst:955 +#: whatsnew/3.2.rst:957 msgid "" "If any of the predecessor tasks can hang or be delayed, a barrier can be " "created with an optional *timeout* parameter. Then if the timeout period " @@ -1042,14 +1042,14 @@ msgid "" "exception is raised::" msgstr "" -#: whatsnew/3.2.rst:971 +#: whatsnew/3.2.rst:973 msgid "" "In this example, the barrier enforces a more robust rule. If some election " "sites do not finish before midnight, the barrier times-out and the ballots " "are sealed and deposited in a queue for later handling." msgstr "" -#: whatsnew/3.2.rst:975 +#: whatsnew/3.2.rst:977 msgid "" "See `Barrier Synchronization Patterns `_ for more examples " @@ -1059,17 +1059,17 @@ msgid "" "*section 3.6*." msgstr "" -#: whatsnew/3.2.rst:981 +#: whatsnew/3.2.rst:983 msgid "" "(Contributed by Kristján Valur Jónsson with an API review by Jeffrey Yasskin " "in :issue:`8777`.)" msgstr "" -#: whatsnew/3.2.rst:985 +#: whatsnew/3.2.rst:987 msgid "datetime and time" msgstr "" -#: whatsnew/3.2.rst:987 +#: whatsnew/3.2.rst:989 msgid "" "The :mod:`datetime` module has a new type :class:`~datetime.timezone` that " "implements the :class:`~datetime.tzinfo` interface by returning a fixed UTC " @@ -1077,20 +1077,20 @@ msgid "" "datetime objects::" msgstr "" -#: whatsnew/3.2.rst:1000 +#: whatsnew/3.2.rst:1002 msgid "" "Also, :class:`~datetime.timedelta` objects can now be multiplied by :class:" "`float` and divided by :class:`float` and :class:`int` objects. And :class:" "`~datetime.timedelta` objects can now divide one another." msgstr "" -#: whatsnew/3.2.rst:1004 +#: whatsnew/3.2.rst:1006 msgid "" "The :meth:`datetime.date.strftime` method is no longer restricted to years " "after 1900. The new supported year range is from 1000 to 9999 inclusive." msgstr "" -#: whatsnew/3.2.rst:1007 +#: whatsnew/3.2.rst:1009 msgid "" "Whenever a two-digit year is used in a time tuple, the interpretation has " "been governed by :data:`time.accept2dyear`. The default is ``True`` which " @@ -1098,7 +1098,7 @@ msgid "" "POSIX rules governing the ``%y`` strptime format." msgstr "" -#: whatsnew/3.2.rst:1012 +#: whatsnew/3.2.rst:1014 msgid "" "Starting with Py3.2, use of the century guessing heuristic will emit a :exc:" "`DeprecationWarning`. Instead, it is recommended that :data:`time." @@ -1106,7 +1106,7 @@ msgid "" "without guesswork::" msgstr "" -#: whatsnew/3.2.rst:1031 +#: whatsnew/3.2.rst:1033 msgid "" "Several functions now have significantly expanded date ranges. When :data:" "`time.accept2dyear` is false, the :func:`time.asctime` function will accept " @@ -1115,45 +1115,45 @@ msgid "" "corresponding operating system functions." msgstr "" -#: whatsnew/3.2.rst:1037 +#: whatsnew/3.2.rst:1039 msgid "" "(Contributed by Alexander Belopolsky and Victor Stinner in :issue:" "`1289118`, :issue:`5094`, :issue:`6641`, :issue:`2706`, :issue:`1777412`, :" "issue:`8013`, and :issue:`10827`.)" msgstr "" -#: whatsnew/3.2.rst:1044 +#: whatsnew/3.2.rst:1046 msgid "math" msgstr "" -#: whatsnew/3.2.rst:1046 +#: whatsnew/3.2.rst:1048 msgid "" "The :mod:`math` module has been updated with six new functions inspired by " "the C99 standard." msgstr "" -#: whatsnew/3.2.rst:1049 +#: whatsnew/3.2.rst:1051 msgid "" "The :func:`~math.isfinite` function provides a reliable and fast way to " "detect special values. It returns ``True`` for regular numbers and " "``False`` for *Nan* or *Infinity*:" msgstr "" -#: whatsnew/3.2.rst:1057 +#: whatsnew/3.2.rst:1059 msgid "" "The :func:`~math.expm1` function computes ``e**x-1`` for small values of *x* " "without incurring the loss of precision that usually accompanies the " "subtraction of nearly equal quantities:" msgstr "" -#: whatsnew/3.2.rst:1065 +#: whatsnew/3.2.rst:1067 msgid "" "The :func:`~math.erf` function computes a probability integral or `Gaussian " "error function `_. The " "complementary error function, :func:`~math.erfc`, is ``1 - erf(x)``:" msgstr "" -#: whatsnew/3.2.rst:1080 +#: whatsnew/3.2.rst:1082 msgid "" "The :func:`~math.gamma` function is a continuous extension of the factorial " "function. See https://en.wikipedia.org/wiki/Gamma_function for details. " @@ -1162,36 +1162,36 @@ msgid "" "computing the natural logarithm of the gamma function:" msgstr "" -#: whatsnew/3.2.rst:1092 +#: whatsnew/3.2.rst:1094 msgid "(Contributed by Mark Dickinson.)" msgstr "" -#: whatsnew/3.2.rst:1095 +#: whatsnew/3.2.rst:1097 msgid "abc" msgstr "" -#: whatsnew/3.2.rst:1097 +#: whatsnew/3.2.rst:1099 msgid "" "The :mod:`abc` module now supports :func:`~abc.abstractclassmethod` and :" "func:`~abc.abstractstaticmethod`." msgstr "" -#: whatsnew/3.2.rst:1100 +#: whatsnew/3.2.rst:1102 msgid "" "These tools make it possible to define an :term:`abstract base class` that " "requires a particular :func:`classmethod` or :func:`staticmethod` to be " "implemented::" msgstr "" -#: whatsnew/3.2.rst:1112 +#: whatsnew/3.2.rst:1114 msgid "(Patch submitted by Daniel Urban; :issue:`5867`.)" msgstr "" -#: whatsnew/3.2.rst:1115 +#: whatsnew/3.2.rst:1117 msgid "io" msgstr "" -#: whatsnew/3.2.rst:1117 +#: whatsnew/3.2.rst:1119 msgid "" "The :class:`io.BytesIO` has a new method, :meth:`~io.BytesIO.getbuffer`, " "which provides functionality similar to :func:`memoryview`. It creates an " @@ -1199,15 +1199,15 @@ msgid "" "and support for slice notation are well-suited to in-place editing::" msgstr "" -#: whatsnew/3.2.rst:1143 +#: whatsnew/3.2.rst:1145 msgid "(Contributed by Antoine Pitrou in :issue:`5506`.)" msgstr "" -#: whatsnew/3.2.rst:1146 +#: whatsnew/3.2.rst:1148 msgid "reprlib" msgstr "" -#: whatsnew/3.2.rst:1148 +#: whatsnew/3.2.rst:1150 msgid "" "When writing a :meth:`__repr__` method for a custom container, it is easy to " "forget to handle the case where a member refers back to the container " @@ -1216,28 +1216,28 @@ msgid "" "representation string." msgstr "" -#: whatsnew/3.2.rst:1154 +#: whatsnew/3.2.rst:1156 msgid "" "To help write such :meth:`__repr__` methods, the :mod:`reprlib` module has a " "new decorator, :func:`~reprlib.recursive_repr`, for detecting recursive " "calls to :meth:`__repr__` and substituting a placeholder string instead::" msgstr "" -#: whatsnew/3.2.rst:1169 +#: whatsnew/3.2.rst:1171 msgid "(Contributed by Raymond Hettinger in :issue:`9826` and :issue:`9840`.)" msgstr "" -#: whatsnew/3.2.rst:1172 +#: whatsnew/3.2.rst:1174 msgid "logging" msgstr "" -#: whatsnew/3.2.rst:1174 +#: whatsnew/3.2.rst:1176 msgid "" "In addition to dictionary-based configuration described above, the :mod:" "`logging` package has many other improvements." msgstr "" -#: whatsnew/3.2.rst:1177 +#: whatsnew/3.2.rst:1179 msgid "" "The logging documentation has been augmented by a :ref:`basic tutorial " "`\\, an :ref:`advanced tutorial ` for zipfiles, uncompressed tarfiles, " @@ -1662,7 +1662,7 @@ msgid "" "tarfiles or custom formats)." msgstr "" -#: whatsnew/3.2.rst:1558 +#: whatsnew/3.2.rst:1560 msgid "" "The principal functions are :func:`~shutil.make_archive` and :func:`~shutil." "unpack_archive`. By default, both operate on the current directory (which " @@ -1671,23 +1671,23 @@ msgid "" "non-destructive (the original files are left unchanged)." msgstr "" -#: whatsnew/3.2.rst:1592 +#: whatsnew/3.2.rst:1594 msgid "sqlite3" msgstr "" -#: whatsnew/3.2.rst:1594 +#: whatsnew/3.2.rst:1596 msgid "" "The :mod:`sqlite3` module was updated to pysqlite version 2.6.0. It has two " "new capabilities." msgstr "" -#: whatsnew/3.2.rst:1596 +#: whatsnew/3.2.rst:1598 msgid "" "The :attr:`sqlite3.Connection.in_transit` attribute is true if there is an " "active transaction for uncommitted changes." msgstr "" -#: whatsnew/3.2.rst:1599 +#: whatsnew/3.2.rst:1601 msgid "" "The :meth:`sqlite3.Connection.enable_load_extension` and :meth:`sqlite3." "Connection.load_extension` methods allows you to load SQLite extensions from " @@ -1695,30 +1695,30 @@ msgid "" "distributed with SQLite." msgstr "" -#: whatsnew/3.2.rst:1604 +#: whatsnew/3.2.rst:1606 msgid "(Contributed by R. David Murray and Shashwat Anand; :issue:`8845`.)" msgstr "" -#: whatsnew/3.2.rst:1607 +#: whatsnew/3.2.rst:1609 msgid "html" msgstr "" -#: whatsnew/3.2.rst:1609 +#: whatsnew/3.2.rst:1611 msgid "" "A new :mod:`html` module was introduced with only a single function, :func:" "`~html.escape`, which is used for escaping reserved characters from HTML " "markup:" msgstr "" -#: whatsnew/3.2.rst:1618 +#: whatsnew/3.2.rst:1620 msgid "socket" msgstr "" -#: whatsnew/3.2.rst:1620 +#: whatsnew/3.2.rst:1622 msgid "The :mod:`socket` module has two new improvements." msgstr "" -#: whatsnew/3.2.rst:1622 +#: whatsnew/3.2.rst:1624 msgid "" "Socket objects now have a :meth:`~socket.socket.detach()` method which puts " "the socket into closed state without actually closing the underlying file " @@ -1726,24 +1726,24 @@ msgid "" "Antoine Pitrou; :issue:`8524`.)" msgstr "" -#: whatsnew/3.2.rst:1627 +#: whatsnew/3.2.rst:1629 msgid "" ":func:`socket.create_connection` now supports the context management " "protocol to unconditionally consume :exc:`socket.error` exceptions and to " "close the socket when done. (Contributed by Giampaolo Rodolà; :issue:`9794`.)" msgstr "" -#: whatsnew/3.2.rst:1633 +#: whatsnew/3.2.rst:1635 msgid "ssl" msgstr "" -#: whatsnew/3.2.rst:1635 +#: whatsnew/3.2.rst:1637 msgid "" "The :mod:`ssl` module added a number of features to satisfy common " "requirements for secure (encrypted, authenticated) internet connections:" msgstr "" -#: whatsnew/3.2.rst:1638 +#: whatsnew/3.2.rst:1640 msgid "" "A new class, :class:`~ssl.SSLContext`, serves as a container for persistent " "SSL data, such as protocol settings, certificates, private keys, and various " @@ -1751,14 +1751,14 @@ msgid "" "creating an SSL socket from an SSL context." msgstr "" -#: whatsnew/3.2.rst:1643 +#: whatsnew/3.2.rst:1645 msgid "" "A new function, :func:`ssl.match_hostname`, supports server identity " "verification for higher-level protocols by implementing the rules of HTTPS " "(from :rfc:`2818`) which are also suitable for other protocols." msgstr "" -#: whatsnew/3.2.rst:1647 +#: whatsnew/3.2.rst:1649 msgid "" "The :func:`ssl.wrap_socket` constructor function now takes a *ciphers* " "argument. The *ciphers* string lists the allowed encryption algorithms " @@ -1766,7 +1766,7 @@ msgid "" "openssl.org/docs/man1.0.2/man1/ciphers.html#CIPHER-LIST-FORMAT>`__." msgstr "" -#: whatsnew/3.2.rst:1652 +#: whatsnew/3.2.rst:1654 msgid "" "When linked against recent versions of OpenSSL, the :mod:`ssl` module now " "supports the Server Name Indication extension to the TLS protocol, allowing " @@ -1775,20 +1775,20 @@ msgid "" "the *server_hostname* argument to :meth:`ssl.SSLContext.wrap_socket`." msgstr "" -#: whatsnew/3.2.rst:1658 +#: whatsnew/3.2.rst:1660 msgid "" "Various options have been added to the :mod:`ssl` module, such as :data:" "`~ssl.OP_NO_SSLv2` which disables the insecure and obsolete SSLv2 protocol." msgstr "" -#: whatsnew/3.2.rst:1662 +#: whatsnew/3.2.rst:1664 msgid "" "The extension now loads all the OpenSSL ciphers and digest algorithms. If " "some SSL certificates cannot be verified, they are reported as an \"unknown " "algorithm\" error." msgstr "" -#: whatsnew/3.2.rst:1666 +#: whatsnew/3.2.rst:1668 msgid "" "The version of OpenSSL being used is now accessible using the module " "attributes :const:`ssl.OPENSSL_VERSION` (a string), :const:`ssl." @@ -1796,17 +1796,17 @@ msgid "" "(an integer)." msgstr "" -#: whatsnew/3.2.rst:1671 +#: whatsnew/3.2.rst:1673 msgid "" "(Contributed by Antoine Pitrou in :issue:`8850`, :issue:`1589`, :issue:" "`8322`, :issue:`5639`, :issue:`4870`, :issue:`8484`, and :issue:`8321`.)" msgstr "" -#: whatsnew/3.2.rst:1675 +#: whatsnew/3.2.rst:1677 msgid "nntp" msgstr "" -#: whatsnew/3.2.rst:1677 +#: whatsnew/3.2.rst:1679 msgid "" "The :mod:`nntplib` module has a revamped implementation with better bytes " "and text semantics as well as more practical APIs. These improvements break " @@ -1814,24 +1814,24 @@ msgid "" "dysfunctional in itself." msgstr "" -#: whatsnew/3.2.rst:1682 +#: whatsnew/3.2.rst:1684 msgid "" "Support for secure connections through both implicit (using :class:`nntplib." "NNTP_SSL`) and explicit (using :meth:`nntplib.NNTP.starttls`) TLS has also " "been added." msgstr "" -#: whatsnew/3.2.rst:1686 +#: whatsnew/3.2.rst:1688 msgid "" "(Contributed by Antoine Pitrou in :issue:`9360` and Andrew Vant in :issue:" "`1926`.)" msgstr "" -#: whatsnew/3.2.rst:1689 +#: whatsnew/3.2.rst:1691 msgid "certificates" msgstr "" -#: whatsnew/3.2.rst:1691 +#: whatsnew/3.2.rst:1693 msgid "" ":class:`http.client.HTTPSConnection`, :class:`urllib.request.HTTPSHandler` " "and :func:`urllib.request.urlopen` now take optional arguments to allow for " @@ -1839,49 +1839,49 @@ msgid "" "recommended in public uses of HTTPS." msgstr "" -#: whatsnew/3.2.rst:1696 +#: whatsnew/3.2.rst:1698 msgid "(Added by Antoine Pitrou, :issue:`9003`.)" msgstr "" -#: whatsnew/3.2.rst:1699 +#: whatsnew/3.2.rst:1701 msgid "imaplib" msgstr "" -#: whatsnew/3.2.rst:1701 +#: whatsnew/3.2.rst:1703 msgid "" "Support for explicit TLS on standard IMAP4 connections has been added " "through the new :mod:`imaplib.IMAP4.starttls` method." msgstr "" -#: whatsnew/3.2.rst:1704 +#: whatsnew/3.2.rst:1706 msgid "(Contributed by Lorenzo M. Catucci and Antoine Pitrou, :issue:`4471`.)" msgstr "" -#: whatsnew/3.2.rst:1707 +#: whatsnew/3.2.rst:1709 msgid "http.client" msgstr "" -#: whatsnew/3.2.rst:1709 +#: whatsnew/3.2.rst:1711 msgid "" "There were a number of small API improvements in the :mod:`http.client` " "module. The old-style HTTP 0.9 simple responses are no longer supported and " "the *strict* parameter is deprecated in all classes." msgstr "" -#: whatsnew/3.2.rst:1713 +#: whatsnew/3.2.rst:1715 msgid "" "The :class:`~http.client.HTTPConnection` and :class:`~http.client." "HTTPSConnection` classes now have a *source_address* parameter for a (host, " "port) tuple indicating where the HTTP connection is made from." msgstr "" -#: whatsnew/3.2.rst:1718 +#: whatsnew/3.2.rst:1720 msgid "" "Support for certificate checking and HTTPS virtual hosts were added to :" "class:`~http.client.HTTPSConnection`." msgstr "" -#: whatsnew/3.2.rst:1721 +#: whatsnew/3.2.rst:1723 msgid "" "The :meth:`~http.client.HTTPConnection.request` method on connection objects " "allowed an optional *body* argument so that a :term:`file object` could be " @@ -1891,14 +1891,14 @@ msgid "" "flexible than before." msgstr "" -#: whatsnew/3.2.rst:1728 +#: whatsnew/3.2.rst:1730 msgid "" "To establish an HTTPS connection through a proxy server, there is a new :" "meth:`~http.client.HTTPConnection.set_tunnel` method that sets the host and " "port for HTTP Connect tunneling." msgstr "" -#: whatsnew/3.2.rst:1732 +#: whatsnew/3.2.rst:1734 msgid "" "To match the behavior of :mod:`http.server`, the HTTP client library now " "also encodes headers with ISO-8859-1 (Latin-1) encoding. It was already " @@ -1907,11 +1907,11 @@ msgid "" "`10980`.)" msgstr "" -#: whatsnew/3.2.rst:1738 +#: whatsnew/3.2.rst:1740 msgid "unittest" msgstr "" -#: whatsnew/3.2.rst:1740 +#: whatsnew/3.2.rst:1742 msgid "" "The unittest module has a number of improvements supporting test discovery " "for packages, easier experimentation at the interactive prompt, new testcase " @@ -1919,7 +1919,7 @@ msgid "" "names." msgstr "" -#: whatsnew/3.2.rst:1745 +#: whatsnew/3.2.rst:1747 msgid "" "The command-line call ``python -m unittest`` can now accept file paths " "instead of module names for running specific tests (:issue:`10620`). The " @@ -1929,28 +1929,28 @@ msgid "" "and a directory to start discovery with ``-s``:" msgstr "" -#: whatsnew/3.2.rst:1765 whatsnew/3.2.rst:1921 +#: whatsnew/3.2.rst:1767 whatsnew/3.2.rst:1923 msgid "(Contributed by Michael Foord.)" msgstr "" -#: whatsnew/3.2.rst:1758 +#: whatsnew/3.2.rst:1760 msgid "" "Experimentation at the interactive prompt is now easier because the :class:" "`unittest.case.TestCase` class can now be instantiated without arguments:" msgstr "" -#: whatsnew/3.2.rst:1767 +#: whatsnew/3.2.rst:1769 msgid "" "The :mod:`unittest` module has two new methods, :meth:`~unittest.TestCase." "assertWarns` and :meth:`~unittest.TestCase.assertWarnsRegex` to verify that " "a given warning type is triggered by the code under test::" msgstr "" -#: whatsnew/3.2.rst:1775 +#: whatsnew/3.2.rst:1777 msgid "(Contributed by Antoine Pitrou, :issue:`9754`.)" msgstr "" -#: whatsnew/3.2.rst:1777 +#: whatsnew/3.2.rst:1779 msgid "" "Another new method, :meth:`~unittest.TestCase.assertCountEqual` is used to " "compare two iterables to determine if their element counts are equal " @@ -1958,7 +1958,7 @@ msgid "" "regardless of order)::" msgstr "" -#: whatsnew/3.2.rst:1787 +#: whatsnew/3.2.rst:1789 msgid "" "A principal feature of the unittest module is an effort to produce " "meaningful diagnostics when a test fails. When possible, the failure is " @@ -1968,13 +1968,13 @@ msgid "" "that sets maximum length of diffs displayed." msgstr "" -#: whatsnew/3.2.rst:1794 +#: whatsnew/3.2.rst:1796 msgid "" "In addition, the method names in the module have undergone a number of clean-" "ups." msgstr "" -#: whatsnew/3.2.rst:1796 +#: whatsnew/3.2.rst:1798 msgid "" "For example, :meth:`~unittest.TestCase.assertRegex` is the new name for :" "meth:`~unittest.TestCase.assertRegexpMatches` which was misnamed because the " @@ -1985,76 +1985,75 @@ msgid "" "has unambiguous camel-casing." msgstr "" -#: whatsnew/3.2.rst:1804 +#: whatsnew/3.2.rst:1806 msgid "(Contributed by Raymond Hettinger and implemented by Ezio Melotti.)" msgstr "" -#: whatsnew/3.2.rst:1806 +#: whatsnew/3.2.rst:1808 msgid "" "To improve consistency, some long-standing method aliases are being " "deprecated in favor of the preferred names:" msgstr "" -#: whatsnew/3.2.rst:1810 +#: whatsnew/3.2.rst:1812 msgid "Old Name" msgstr "" -#: whatsnew/3.2.rst:1810 +#: whatsnew/3.2.rst:1812 msgid "Preferred Name" msgstr "" -#: whatsnew/3.2.rst:1812 +#: whatsnew/3.2.rst:1814 msgid ":meth:`assert_`" msgstr "" -#: whatsnew/3.2.rst:1812 +#: whatsnew/3.2.rst:1814 msgid ":meth:`.assertTrue`" msgstr "" -#: whatsnew/3.2.rst:1813 +#: whatsnew/3.2.rst:1815 msgid ":meth:`assertEquals`" msgstr "" -#: whatsnew/3.2.rst:1813 +#: whatsnew/3.2.rst:1815 msgid ":meth:`.assertEqual`" msgstr "" -#: whatsnew/3.2.rst:1814 +#: whatsnew/3.2.rst:1816 msgid ":meth:`assertNotEquals`" msgstr "" -#: whatsnew/3.2.rst:1814 +#: whatsnew/3.2.rst:1816 msgid ":meth:`.assertNotEqual`" msgstr "" -#: whatsnew/3.2.rst:1815 +#: whatsnew/3.2.rst:1817 msgid ":meth:`assertAlmostEquals`" msgstr "" -#: whatsnew/3.2.rst:1815 +#: whatsnew/3.2.rst:1817 msgid ":meth:`.assertAlmostEqual`" msgstr "" -#: whatsnew/3.2.rst:1816 +#: whatsnew/3.2.rst:1818 msgid ":meth:`assertNotAlmostEquals`" msgstr "" -#: whatsnew/3.2.rst:1816 +#: whatsnew/3.2.rst:1818 msgid ":meth:`.assertNotAlmostEqual`" msgstr "" -#: whatsnew/3.2.rst:1819 +#: whatsnew/3.2.rst:1821 msgid "" "Likewise, the ``TestCase.fail*`` methods deprecated in Python 3.1 are " -"expected to be removed in Python 3.3. Also see the :ref:`deprecated-" -"aliases` section in the :mod:`unittest` documentation." +"expected to be removed in Python 3.3." msgstr "" -#: whatsnew/3.2.rst:1823 +#: whatsnew/3.2.rst:1824 msgid "(Contributed by Ezio Melotti; :issue:`9424`.)" msgstr "" -#: whatsnew/3.2.rst:1825 +#: whatsnew/3.2.rst:1826 msgid "" "The :meth:`~unittest.TestCase.assertDictContainsSubset` method was " "deprecated because it was misimplemented with the arguments in the wrong " @@ -2062,11 +2061,11 @@ msgid "" "``TestCase().assertDictContainsSubset({'a':1, 'b':2}, {'a':1})`` would fail." msgstr "" -#: whatsnew/3.2.rst:1833 +#: whatsnew/3.2.rst:1834 msgid "random" msgstr "" -#: whatsnew/3.2.rst:1835 +#: whatsnew/3.2.rst:1836 msgid "" "The integer methods in the :mod:`random` module now do a better job of " "producing uniform distributions. Previously, they computed selections with " @@ -2078,15 +2077,15 @@ msgid "" "func:`~random.sample`." msgstr "" -#: whatsnew/3.2.rst:1844 +#: whatsnew/3.2.rst:1845 msgid "(Contributed by Raymond Hettinger; :issue:`9025`.)" msgstr "" -#: whatsnew/3.2.rst:1847 +#: whatsnew/3.2.rst:1848 msgid "poplib" msgstr "" -#: whatsnew/3.2.rst:1849 +#: whatsnew/3.2.rst:1850 msgid "" ":class:`~poplib.POP3_SSL` class now accepts a *context* parameter, which is " "a :class:`ssl.SSLContext` object allowing bundling SSL configuration " @@ -2094,15 +2093,15 @@ msgid "" "lived) structure." msgstr "" -#: whatsnew/3.2.rst:1854 +#: whatsnew/3.2.rst:1855 msgid "(Contributed by Giampaolo Rodolà; :issue:`8807`.)" msgstr "" -#: whatsnew/3.2.rst:1857 +#: whatsnew/3.2.rst:1858 msgid "asyncore" msgstr "" -#: whatsnew/3.2.rst:1859 +#: whatsnew/3.2.rst:1860 msgid "" ":class:`asyncore.dispatcher` now provides a :meth:`~asyncore.dispatcher." "handle_accepted()` method returning a ``(sock, addr)`` pair which is called " @@ -2112,41 +2111,41 @@ msgid "" "dispatcher.accept()` directly." msgstr "" -#: whatsnew/3.2.rst:1866 +#: whatsnew/3.2.rst:1867 msgid "(Contributed by Giampaolo Rodolà; :issue:`6706`.)" msgstr "" -#: whatsnew/3.2.rst:1869 +#: whatsnew/3.2.rst:1870 msgid "tempfile" msgstr "" -#: whatsnew/3.2.rst:1871 +#: whatsnew/3.2.rst:1872 msgid "" "The :mod:`tempfile` module has a new context manager, :class:`~tempfile." "TemporaryDirectory` which provides easy deterministic cleanup of temporary " "directories::" msgstr "" -#: whatsnew/3.2.rst:1878 +#: whatsnew/3.2.rst:1879 msgid "(Contributed by Neil Schemenauer and Nick Coghlan; :issue:`5178`.)" msgstr "" -#: whatsnew/3.2.rst:1881 +#: whatsnew/3.2.rst:1882 msgid "inspect" msgstr "" -#: whatsnew/3.2.rst:1883 +#: whatsnew/3.2.rst:1884 msgid "" "The :mod:`inspect` module has a new function :func:`~inspect." "getgeneratorstate` to easily identify the current state of a generator-" "iterator::" msgstr "" -#: whatsnew/3.2.rst:1901 +#: whatsnew/3.2.rst:1903 msgid "(Contributed by Rodolpho Eckhardt and Nick Coghlan, :issue:`10220`.)" msgstr "" -#: whatsnew/3.2.rst:1903 +#: whatsnew/3.2.rst:1905 msgid "" "To support lookups without the possibility of activating a dynamic " "attribute, the :mod:`inspect` module has a new function, :func:`~inspect." @@ -2154,26 +2153,26 @@ msgid "" "guaranteed not to change state while it is searching::" msgstr "" -#: whatsnew/3.2.rst:1924 +#: whatsnew/3.2.rst:1926 msgid "pydoc" msgstr "" -#: whatsnew/3.2.rst:1926 +#: whatsnew/3.2.rst:1928 msgid "" "The :mod:`pydoc` module now provides a much-improved web server interface, " "as well as a new command-line option ``-b`` to automatically open a browser " "window to display that server:" msgstr "" -#: whatsnew/3.2.rst:1934 +#: whatsnew/3.2.rst:1936 msgid "(Contributed by Ron Adam; :issue:`2001`.)" msgstr "" -#: whatsnew/3.2.rst:1937 +#: whatsnew/3.2.rst:1939 msgid "dis" msgstr "" -#: whatsnew/3.2.rst:1939 +#: whatsnew/3.2.rst:1941 msgid "" "The :mod:`dis` module gained two new functions for inspecting code, :func:" "`~dis.code_info` and :func:`~dis.show_code`. Both provide detailed code " @@ -2181,197 +2180,197 @@ msgid "" "code object. The former returns a string and the latter prints it::" msgstr "" -#: whatsnew/3.2.rst:1966 +#: whatsnew/3.2.rst:1968 msgid "" "In addition, the :func:`~dis.dis` function now accepts string arguments so " "that the common idiom ``dis(compile(s, '', 'eval'))`` can be shortened to " "``dis(s)``::" msgstr "" -#: whatsnew/3.2.rst:1988 +#: whatsnew/3.2.rst:1990 msgid "" "Taken together, these improvements make it easier to explore how CPython is " "implemented and to see for yourself what the language syntax does under-the-" "hood." msgstr "" -#: whatsnew/3.2.rst:1992 +#: whatsnew/3.2.rst:1994 msgid "(Contributed by Nick Coghlan in :issue:`9147`.)" msgstr "" -#: whatsnew/3.2.rst:1995 +#: whatsnew/3.2.rst:1997 msgid "dbm" msgstr "" -#: whatsnew/3.2.rst:1997 +#: whatsnew/3.2.rst:1999 msgid "" "All database modules now support the :meth:`get` and :meth:`setdefault` " "methods." msgstr "" -#: whatsnew/3.2.rst:1999 +#: whatsnew/3.2.rst:2001 msgid "(Suggested by Ray Allen in :issue:`9523`.)" msgstr "" -#: whatsnew/3.2.rst:2002 +#: whatsnew/3.2.rst:2004 msgid "ctypes" msgstr "" -#: whatsnew/3.2.rst:2004 +#: whatsnew/3.2.rst:2006 msgid "" "A new type, :class:`ctypes.c_ssize_t` represents the C :c:type:`ssize_t` " "datatype." msgstr "" -#: whatsnew/3.2.rst:2007 +#: whatsnew/3.2.rst:2009 msgid "site" msgstr "" -#: whatsnew/3.2.rst:2009 +#: whatsnew/3.2.rst:2011 msgid "" "The :mod:`site` module has three new functions useful for reporting on the " "details of a given Python installation." msgstr "" -#: whatsnew/3.2.rst:2012 +#: whatsnew/3.2.rst:2014 msgid "" ":func:`~site.getsitepackages` lists all global site-packages directories." msgstr "" -#: whatsnew/3.2.rst:2014 +#: whatsnew/3.2.rst:2016 msgid "" ":func:`~site.getuserbase` reports on the user's base directory where data " "can be stored." msgstr "" -#: whatsnew/3.2.rst:2017 +#: whatsnew/3.2.rst:2019 msgid "" ":func:`~site.getusersitepackages` reveals the user-specific site-packages " "directory path." msgstr "" -#: whatsnew/3.2.rst:2032 +#: whatsnew/3.2.rst:2034 msgid "" "Conveniently, some of site's functionality is accessible directly from the " "command-line:" msgstr "" -#: whatsnew/3.2.rst:2042 +#: whatsnew/3.2.rst:2044 msgid "(Contributed by Tarek Ziadé in :issue:`6693`.)" msgstr "" -#: whatsnew/3.2.rst:2045 +#: whatsnew/3.2.rst:2047 msgid "sysconfig" msgstr "" -#: whatsnew/3.2.rst:2047 +#: whatsnew/3.2.rst:2049 msgid "" "The new :mod:`sysconfig` module makes it straightforward to discover " "installation paths and configuration variables that vary across platforms " "and installations." msgstr "" -#: whatsnew/3.2.rst:2051 +#: whatsnew/3.2.rst:2053 msgid "" "The module offers access simple access functions for platform and version " "information:" msgstr "" -#: whatsnew/3.2.rst:2054 +#: whatsnew/3.2.rst:2056 msgid "" ":func:`~sysconfig.get_platform` returning values like *linux-i586* or " "*macosx-10.6-ppc*." msgstr "" -#: whatsnew/3.2.rst:2056 +#: whatsnew/3.2.rst:2058 msgid "" ":func:`~sysconfig.get_python_version` returns a Python version string such " "as \"3.2\"." msgstr "" -#: whatsnew/3.2.rst:2059 +#: whatsnew/3.2.rst:2061 msgid "" "It also provides access to the paths and variables corresponding to one of " -"seven named schemes used by :mod:`distutils`. Those include *posix_prefix*, " +"seven named schemes used by ``distutils``. Those include *posix_prefix*, " "*posix_home*, *posix_user*, *nt*, *nt_user*, *os2*, *os2_home*:" msgstr "" -#: whatsnew/3.2.rst:2063 +#: whatsnew/3.2.rst:2065 msgid "" ":func:`~sysconfig.get_paths` makes a dictionary containing installation " "paths for the current installation scheme." msgstr "" -#: whatsnew/3.2.rst:2065 +#: whatsnew/3.2.rst:2067 msgid "" ":func:`~sysconfig.get_config_vars` returns a dictionary of platform specific " "variables." msgstr "" -#: whatsnew/3.2.rst:2068 +#: whatsnew/3.2.rst:2070 msgid "There is also a convenient command-line interface:" msgstr "" -#: whatsnew/3.2.rst:2107 +#: whatsnew/3.2.rst:2109 msgid "(Moved out of Distutils by Tarek Ziadé.)" msgstr "" -#: whatsnew/3.2.rst:2110 +#: whatsnew/3.2.rst:2112 msgid "pdb" msgstr "" -#: whatsnew/3.2.rst:2112 +#: whatsnew/3.2.rst:2114 msgid "" "The :mod:`pdb` debugger module gained a number of usability improvements:" msgstr "" -#: whatsnew/3.2.rst:2114 +#: whatsnew/3.2.rst:2116 msgid "" ":file:`pdb.py` now has a ``-c`` option that executes commands as given in a :" "file:`.pdbrc` script file." msgstr "" -#: whatsnew/3.2.rst:2116 +#: whatsnew/3.2.rst:2118 msgid "" "A :file:`.pdbrc` script file can contain ``continue`` and ``next`` commands " "that continue debugging." msgstr "" -#: whatsnew/3.2.rst:2118 +#: whatsnew/3.2.rst:2120 msgid "The :class:`Pdb` class constructor now accepts a *nosigint* argument." msgstr "" -#: whatsnew/3.2.rst:2119 +#: whatsnew/3.2.rst:2121 msgid "" "New commands: ``l(list)``, ``ll(long list)`` and ``source`` for listing " "source code." msgstr "" -#: whatsnew/3.2.rst:2121 +#: whatsnew/3.2.rst:2123 msgid "" "New commands: ``display`` and ``undisplay`` for showing or hiding the value " "of an expression if it has changed." msgstr "" -#: whatsnew/3.2.rst:2123 +#: whatsnew/3.2.rst:2125 msgid "" "New command: ``interact`` for starting an interactive interpreter containing " "the global and local names found in the current scope." msgstr "" -#: whatsnew/3.2.rst:2125 +#: whatsnew/3.2.rst:2127 msgid "Breakpoints can be cleared by breakpoint number." msgstr "" -#: whatsnew/3.2.rst:2127 +#: whatsnew/3.2.rst:2129 msgid "(Contributed by Georg Brandl, Antonio Cuni and Ilya Sandler.)" msgstr "" -#: whatsnew/3.2.rst:2130 +#: whatsnew/3.2.rst:2132 msgid "configparser" msgstr "" -#: whatsnew/3.2.rst:2132 +#: whatsnew/3.2.rst:2134 msgid "" "The :mod:`configparser` module was modified to improve usability and " "predictability of the default parser and its supported INI syntax. The old :" @@ -2381,63 +2380,63 @@ msgid "" "option duplicates are not allowed in a single configuration source." msgstr "" -#: whatsnew/3.2.rst:2139 +#: whatsnew/3.2.rst:2141 msgid "Config parsers gained a new API based on the mapping protocol::" msgstr "" -#: whatsnew/3.2.rst:2167 +#: whatsnew/3.2.rst:2169 msgid "" "The new API is implemented on top of the classical API, so custom parser " "subclasses should be able to use it without modifications." msgstr "" -#: whatsnew/3.2.rst:2170 +#: whatsnew/3.2.rst:2172 msgid "" "The INI file structure accepted by config parsers can now be customized. " "Users can specify alternative option/value delimiters and comment prefixes, " "change the name of the *DEFAULT* section or switch the interpolation syntax." msgstr "" -#: whatsnew/3.2.rst:2174 +#: whatsnew/3.2.rst:2176 msgid "" "There is support for pluggable interpolation including an additional " "interpolation handler :class:`~configparser.ExtendedInterpolation`::" msgstr "" -#: whatsnew/3.2.rst:2207 +#: whatsnew/3.2.rst:2209 msgid "" "A number of smaller features were also introduced, like support for " "specifying encoding in read operations, specifying fallback values for get-" "functions, or reading directly from dictionaries and strings." msgstr "" -#: whatsnew/3.2.rst:2211 +#: whatsnew/3.2.rst:2213 msgid "(All changes contributed by Łukasz Langa.)" msgstr "" -#: whatsnew/3.2.rst:2216 +#: whatsnew/3.2.rst:2218 msgid "urllib.parse" msgstr "" -#: whatsnew/3.2.rst:2218 +#: whatsnew/3.2.rst:2220 msgid "" "A number of usability improvements were made for the :mod:`urllib.parse` " "module." msgstr "" -#: whatsnew/3.2.rst:2220 +#: whatsnew/3.2.rst:2222 msgid "" "The :func:`~urllib.parse.urlparse` function now supports `IPv6 `_ addresses as described in :rfc:`2732`:" msgstr "" -#: whatsnew/3.2.rst:2232 +#: whatsnew/3.2.rst:2234 msgid "" "The :func:`~urllib.parse.urldefrag` function now returns a :term:`named " "tuple`::" msgstr "" -#: whatsnew/3.2.rst:2242 +#: whatsnew/3.2.rst:2244 msgid "" "And, the :func:`~urllib.parse.urlencode` function is now much more flexible, " "accepting either a string or bytes type for the *query* argument. If it is " @@ -2445,7 +2444,7 @@ msgid "" "func:`~urllib.parse.quote_plus` for encoding::" msgstr "" -#: whatsnew/3.2.rst:2253 +#: whatsnew/3.2.rst:2255 msgid "" "As detailed in :ref:`parsing-ascii-encoded-bytes`, all the :mod:`urllib." "parse` functions now accept ASCII-encoded byte strings as input, so long as " @@ -2454,17 +2453,17 @@ msgid "" "strings:" msgstr "" -#: whatsnew/3.2.rst:2262 +#: whatsnew/3.2.rst:2264 msgid "" "(Work by Nick Coghlan, Dan Mahn, and Senthil Kumaran in :issue:`2987`, :" "issue:`5468`, and :issue:`9873`.)" msgstr "" -#: whatsnew/3.2.rst:2266 +#: whatsnew/3.2.rst:2268 msgid "mailbox" msgstr "" -#: whatsnew/3.2.rst:2268 +#: whatsnew/3.2.rst:2270 msgid "" "Thanks to a concerted effort by R. David Murray, the :mod:`mailbox` module " "has been fixed for Python 3.2. The challenge was that mailbox had been " @@ -2473,27 +2472,27 @@ msgid "" "different encodings." msgstr "" -#: whatsnew/3.2.rst:2273 +#: whatsnew/3.2.rst:2275 msgid "" "The solution harnessed the :mod:`email` package's binary support for parsing " "arbitrary email messages. In addition, the solution required a number of " "API changes." msgstr "" -#: whatsnew/3.2.rst:2277 +#: whatsnew/3.2.rst:2279 msgid "" "As expected, the :meth:`~mailbox.Mailbox.add` method for :class:`mailbox." "Mailbox` objects now accepts binary input." msgstr "" -#: whatsnew/3.2.rst:2280 +#: whatsnew/3.2.rst:2282 msgid "" ":class:`~io.StringIO` and text file input are deprecated. Also, string " "input will fail early if non-ASCII characters are used. Previously it would " "fail when the email was processed in a later step." msgstr "" -#: whatsnew/3.2.rst:2284 +#: whatsnew/3.2.rst:2286 msgid "" "There is also support for binary output. The :meth:`~mailbox.Mailbox." "get_file` method now returns a file in the binary mode (where it used to " @@ -2502,7 +2501,7 @@ msgid "" "message corresponding to a given *key*." msgstr "" -#: whatsnew/3.2.rst:2290 +#: whatsnew/3.2.rst:2292 msgid "" "It is still possible to get non-binary output using the old API's :meth:" "`~mailbox.Mailbox.get_string` method, but that approach is not very useful. " @@ -2510,17 +2509,17 @@ msgid "" "object or to load them from binary input." msgstr "" -#: whatsnew/3.2.rst:2295 +#: whatsnew/3.2.rst:2297 msgid "" "(Contributed by R. David Murray, with efforts from Steffen Daode Nurpmeso " "and an initial patch by Victor Stinner in :issue:`9124`.)" msgstr "" -#: whatsnew/3.2.rst:2299 +#: whatsnew/3.2.rst:2301 msgid "turtledemo" msgstr "" -#: whatsnew/3.2.rst:2301 +#: whatsnew/3.2.rst:2303 msgid "" "The demonstration code for the :mod:`turtle` module was moved from the " "*Demo* directory to main library. It includes over a dozen sample scripts " @@ -2528,16 +2527,16 @@ msgid "" "from the command-line:" msgstr "" -#: whatsnew/3.2.rst:2310 +#: whatsnew/3.2.rst:2312 msgid "" "(Moved from the Demo directory by Alexander Belopolsky in :issue:`10199`.)" msgstr "" -#: whatsnew/3.2.rst:2313 +#: whatsnew/3.2.rst:2315 msgid "Multi-threading" msgstr "" -#: whatsnew/3.2.rst:2315 +#: whatsnew/3.2.rst:2317 msgid "" "The mechanism for serializing execution of concurrently running Python " "threads (generally known as the :term:`GIL` or Global Interpreter Lock) has " @@ -2549,7 +2548,7 @@ msgid "" "setswitchinterval()`. It currently defaults to 5 milliseconds." msgstr "" -#: whatsnew/3.2.rst:2324 +#: whatsnew/3.2.rst:2326 msgid "" "Additional details about the implementation can be read from a `python-dev " "mailing-list message `_ used in :" "meth:`list.sort` and :func:`sorted` now runs faster and uses less memory " @@ -2633,35 +2632,35 @@ msgid "" "saves time lost to delegating comparisons." msgstr "" -#: whatsnew/3.2.rst:2379 +#: whatsnew/3.2.rst:2381 msgid "(Patch by Daniel Stutzbach in :issue:`9915`.)" msgstr "" -#: whatsnew/3.2.rst:2381 +#: whatsnew/3.2.rst:2383 msgid "" "JSON decoding performance is improved and memory consumption is reduced " "whenever the same string is repeated for multiple keys. Also, JSON encoding " "now uses the C speedups when the ``sort_keys`` argument is true." msgstr "" -#: whatsnew/3.2.rst:2385 +#: whatsnew/3.2.rst:2387 msgid "" "(Contributed by Antoine Pitrou in :issue:`7451` and by Raymond Hettinger and " "Antoine Pitrou in :issue:`10314`.)" msgstr "" -#: whatsnew/3.2.rst:2388 +#: whatsnew/3.2.rst:2390 msgid "" "Recursive locks (created with the :func:`threading.RLock` API) now benefit " "from a C implementation which makes them as fast as regular locks, and " "between 10x and 15x faster than their previous pure Python implementation." msgstr "" -#: whatsnew/3.2.rst:2392 +#: whatsnew/3.2.rst:2394 msgid "(Contributed by Antoine Pitrou; :issue:`3001`.)" msgstr "" -#: whatsnew/3.2.rst:2394 +#: whatsnew/3.2.rst:2396 msgid "" "The fast-search algorithm in stringlib is now used by the :meth:`split`, :" "meth:`rsplit`, :meth:`splitlines` and :meth:`replace` methods on :class:" @@ -2670,21 +2669,21 @@ msgid "" "meth:`rpartition`." msgstr "" -#: whatsnew/3.2.rst:2400 +#: whatsnew/3.2.rst:2402 msgid "(Patch by Florent Xicluna in :issue:`7622` and :issue:`7462`.)" msgstr "" -#: whatsnew/3.2.rst:2403 +#: whatsnew/3.2.rst:2405 msgid "" "Integer to string conversions now work two \"digits\" at a time, reducing " "the number of division and modulo operations." msgstr "" -#: whatsnew/3.2.rst:2406 +#: whatsnew/3.2.rst:2408 msgid "(:issue:`6713` by Gawain Bolton, Mark Dickinson, and Victor Stinner.)" msgstr "" -#: whatsnew/3.2.rst:2408 +#: whatsnew/3.2.rst:2410 msgid "" "There were several other minor optimizations. Set differencing now runs " "faster when one operand is much larger than the other (patch by Andress " @@ -2696,11 +2695,11 @@ msgid "" "line arguments a bit faster (:issue:`7113` by Łukasz Langa)." msgstr "" -#: whatsnew/3.2.rst:2419 +#: whatsnew/3.2.rst:2421 msgid "Unicode" msgstr "" -#: whatsnew/3.2.rst:2421 +#: whatsnew/3.2.rst:2423 msgid "" "Python has been updated to `Unicode 6.0.0 `_. The update to the standard adds over 2,000 new characters " @@ -2708,7 +2707,7 @@ msgid "" "important for mobile phones." msgstr "" -#: whatsnew/3.2.rst:2426 +#: whatsnew/3.2.rst:2428 msgid "" "In addition, the updated standard has altered the character properties for " "two Kannada characters (U+0CF1, U+0CF2) and one New Tai Lue numeric " @@ -2718,15 +2717,15 @@ msgid "" "#Database_Changes>`_." msgstr "" -#: whatsnew/3.2.rst:2434 +#: whatsnew/3.2.rst:2436 msgid "Codecs" msgstr "" -#: whatsnew/3.2.rst:2436 +#: whatsnew/3.2.rst:2438 msgid "Support was added for *cp720* Arabic DOS encoding (:issue:`1616979`)." msgstr "" -#: whatsnew/3.2.rst:2438 +#: whatsnew/3.2.rst:2440 msgid "" "MBCS encoding no longer ignores the error handler argument. In the default " "strict mode, it raises an :exc:`UnicodeDecodeError` when it encounters an " @@ -2734,40 +2733,40 @@ msgid "" "unencodable character." msgstr "" -#: whatsnew/3.2.rst:2443 +#: whatsnew/3.2.rst:2445 msgid "" "The MBCS codec supports ``'strict'`` and ``'ignore'`` error handlers for " "decoding, and ``'strict'`` and ``'replace'`` for encoding." msgstr "" -#: whatsnew/3.2.rst:2446 +#: whatsnew/3.2.rst:2448 msgid "" "To emulate Python3.1 MBCS encoding, select the ``'ignore'`` handler for " "decoding and the ``'replace'`` handler for encoding." msgstr "" -#: whatsnew/3.2.rst:2449 +#: whatsnew/3.2.rst:2451 msgid "" "On Mac OS X, Python decodes command line arguments with ``'utf-8'`` rather " "than the locale encoding." msgstr "" -#: whatsnew/3.2.rst:2452 +#: whatsnew/3.2.rst:2454 msgid "" "By default, :mod:`tarfile` uses ``'utf-8'`` encoding on Windows (instead of " "``'mbcs'``) and the ``'surrogateescape'`` error handler on all operating " "systems." msgstr "" -#: whatsnew/3.2.rst:2458 +#: whatsnew/3.2.rst:2460 msgid "Documentation" msgstr "" -#: whatsnew/3.2.rst:2460 +#: whatsnew/3.2.rst:2462 msgid "The documentation continues to be improved." msgstr "" -#: whatsnew/3.2.rst:2462 +#: whatsnew/3.2.rst:2464 msgid "" "A table of quick links has been added to the top of lengthy sections such " "as :ref:`built-in-funcs`. In the case of :mod:`itertools`, the links are " @@ -2775,7 +2774,7 @@ msgid "" "and memory jog without having to read all of the docs." msgstr "" -#: whatsnew/3.2.rst:2467 +#: whatsnew/3.2.rst:2469 msgid "" "In some cases, the pure Python source code can be a helpful adjunct to the " "documentation, so now many modules now feature quick links to the latest " @@ -2783,80 +2782,80 @@ msgid "" "documentation has a quick link at the top labeled:" msgstr "" -#: whatsnew/3.2.rst:2472 +#: whatsnew/3.2.rst:2474 msgid "**Source code** :source:`Lib/functools.py`." msgstr "" -#: whatsnew/3.2.rst:2474 +#: whatsnew/3.2.rst:2476 msgid "" "(Contributed by Raymond Hettinger; see `rationale `_.)" msgstr "" -#: whatsnew/3.2.rst:2477 +#: whatsnew/3.2.rst:2479 msgid "" "The docs now contain more examples and recipes. In particular, :mod:`re` " "module has an extensive section, :ref:`re-examples`. Likewise, the :mod:" "`itertools` module continues to be updated with new :ref:`itertools-recipes`." msgstr "" -#: whatsnew/3.2.rst:2482 +#: whatsnew/3.2.rst:2484 msgid "" "The :mod:`datetime` module now has an auxiliary implementation in pure " "Python. No functionality was changed. This just provides an easier-to-read " "alternate implementation." msgstr "" -#: whatsnew/3.2.rst:2486 +#: whatsnew/3.2.rst:2488 msgid "(Contributed by Alexander Belopolsky in :issue:`9528`.)" msgstr "" -#: whatsnew/3.2.rst:2488 +#: whatsnew/3.2.rst:2490 msgid "" "The unmaintained :file:`Demo` directory has been removed. Some demos were " "integrated into the documentation, some were moved to the :file:`Tools/demo` " "directory, and others were removed altogether." msgstr "" -#: whatsnew/3.2.rst:2492 +#: whatsnew/3.2.rst:2494 msgid "(Contributed by Georg Brandl in :issue:`7962`.)" msgstr "" -#: whatsnew/3.2.rst:2496 +#: whatsnew/3.2.rst:2498 msgid "IDLE" msgstr "" -#: whatsnew/3.2.rst:2498 +#: whatsnew/3.2.rst:2500 msgid "" "The format menu now has an option to clean source files by stripping " "trailing whitespace." msgstr "" -#: whatsnew/3.2.rst:2501 +#: whatsnew/3.2.rst:2503 msgid "(Contributed by Raymond Hettinger; :issue:`5150`.)" msgstr "" -#: whatsnew/3.2.rst:2503 +#: whatsnew/3.2.rst:2505 msgid "IDLE on Mac OS X now works with both Carbon AquaTk and Cocoa AquaTk." msgstr "" -#: whatsnew/3.2.rst:2505 +#: whatsnew/3.2.rst:2507 msgid "" "(Contributed by Kevin Walzer, Ned Deily, and Ronald Oussoren; :issue:`6075`.)" msgstr "" -#: whatsnew/3.2.rst:2508 +#: whatsnew/3.2.rst:2510 msgid "Code Repository" msgstr "" -#: whatsnew/3.2.rst:2510 +#: whatsnew/3.2.rst:2512 msgid "" "In addition to the existing Subversion code repository at https://svn.python." "org there is now a `Mercurial `_ repository " "at https://hg.python.org/\\ ." msgstr "" -#: whatsnew/3.2.rst:2514 +#: whatsnew/3.2.rst:2516 msgid "" "After the 3.2 release, there are plans to switch to Mercurial as the primary " "repository. This distributed version control system should make it easier " @@ -2864,28 +2863,28 @@ msgid "" "pep:`385` for details." msgstr "" -#: whatsnew/3.2.rst:2519 +#: whatsnew/3.2.rst:2521 msgid "" "To learn to use the new version control system, see the `Quick Start " "`_ or the `Guide to Mercurial " "Workflows `_." msgstr "" -#: whatsnew/3.2.rst:2525 +#: whatsnew/3.2.rst:2527 msgid "Build and C API Changes" msgstr "" -#: whatsnew/3.2.rst:2527 +#: whatsnew/3.2.rst:2529 msgid "Changes to Python's build process and to the C API include:" msgstr "" -#: whatsnew/3.2.rst:2529 +#: whatsnew/3.2.rst:2531 msgid "" "The *idle*, *pydoc* and *2to3* scripts are now installed with a version-" "specific suffix on ``make altinstall`` (:issue:`10679`)." msgstr "" -#: whatsnew/3.2.rst:2532 +#: whatsnew/3.2.rst:2534 msgid "" "The C functions that access the Unicode Database now accept and return " "characters from the full Unicode range, even on narrow unicode builds " @@ -2895,33 +2894,33 @@ msgid "" "characters as printable." msgstr "" -#: whatsnew/3.2.rst:2539 +#: whatsnew/3.2.rst:2541 msgid "" "(Reported by Bupjoe Lee and fixed by Amaury Forgeot D'Arc; :issue:`5127`.)" msgstr "" -#: whatsnew/3.2.rst:2541 +#: whatsnew/3.2.rst:2543 msgid "" "Computed gotos are now enabled by default on supported compilers (which are " "detected by the configure script). They can still be disabled selectively " "by specifying ``--without-computed-gotos``." msgstr "" -#: whatsnew/3.2.rst:2545 +#: whatsnew/3.2.rst:2547 msgid "(Contributed by Antoine Pitrou; :issue:`9203`.)" msgstr "" -#: whatsnew/3.2.rst:2547 +#: whatsnew/3.2.rst:2549 msgid "" "The option ``--with-wctype-functions`` was removed. The built-in unicode " "database is now used for all functions." msgstr "" -#: whatsnew/3.2.rst:2550 +#: whatsnew/3.2.rst:2552 msgid "(Contributed by Amaury Forgeot D'Arc; :issue:`9210`.)" msgstr "" -#: whatsnew/3.2.rst:2552 +#: whatsnew/3.2.rst:2554 msgid "" "Hash values are now values of a new type, :c:type:`Py_hash_t`, which is " "defined to be the same size as a pointer. Previously they were of type " @@ -2931,34 +2930,34 @@ msgid "" "grow to that size but their performance degraded catastrophically)." msgstr "" -#: whatsnew/3.2.rst:2559 +#: whatsnew/3.2.rst:2561 msgid "" "(Suggested by Raymond Hettinger and implemented by Benjamin Peterson; :issue:" "`9778`.)" msgstr "" -#: whatsnew/3.2.rst:2562 +#: whatsnew/3.2.rst:2564 msgid "" "A new macro :c:macro:`Py_VA_COPY` copies the state of the variable argument " "list. It is equivalent to C99 *va_copy* but available on all Python " "platforms (:issue:`2443`)." msgstr "" -#: whatsnew/3.2.rst:2566 +#: whatsnew/3.2.rst:2568 msgid "" "A new C API function :c:func:`PySys_SetArgvEx` allows an embedded " "interpreter to set :data:`sys.argv` without also modifying :data:`sys.path` " "(:issue:`5753`)." msgstr "" -#: whatsnew/3.2.rst:2570 +#: whatsnew/3.2.rst:2572 msgid "" ":c:func:`!PyEval_CallObject` is now only available in macro form. The " "function declaration, which was kept for backwards compatibility reasons, is " "now removed -- the macro was introduced in 1997 (:issue:`8276`)." msgstr "" -#: whatsnew/3.2.rst:2574 +#: whatsnew/3.2.rst:2576 msgid "" "There is a new function :c:func:`PyLong_AsLongLongAndOverflow` which is " "analogous to :c:func:`PyLong_AsLongAndOverflow`. They both serve to convert " @@ -2966,13 +2965,13 @@ msgid "" "of cases where the conversion won't fit (:issue:`7767`)." msgstr "" -#: whatsnew/3.2.rst:2579 +#: whatsnew/3.2.rst:2581 msgid "" "The :c:func:`PyUnicode_CompareWithASCIIString` function now returns *not " "equal* if the Python string is *NUL* terminated." msgstr "" -#: whatsnew/3.2.rst:2582 +#: whatsnew/3.2.rst:2584 msgid "" "There is a new function :c:func:`PyErr_NewExceptionWithDoc` that is like :c:" "func:`PyErr_NewException` but allows a docstring to be specified. This lets " @@ -2980,7 +2979,7 @@ msgid "" "Python counterparts (:issue:`7033`)." msgstr "" -#: whatsnew/3.2.rst:2587 +#: whatsnew/3.2.rst:2589 msgid "" "When compiled with the ``--with-valgrind`` option, the pymalloc allocator " "will be automatically disabled when running under Valgrind. This gives " @@ -2988,20 +2987,20 @@ msgid "" "advantage of pymalloc at other times (:issue:`2422`)." msgstr "" -#: whatsnew/3.2.rst:2592 +#: whatsnew/3.2.rst:2594 msgid "" "Removed the ``O?`` format from the *PyArg_Parse* functions. The format is " "no longer used and it had never been documented (:issue:`8837`)." msgstr "" -#: whatsnew/3.2.rst:2595 +#: whatsnew/3.2.rst:2597 msgid "" "There were a number of other small changes to the C-API. See the `Misc/NEWS " "`__ file for a " "complete list." msgstr "" -#: whatsnew/3.2.rst:2599 +#: whatsnew/3.2.rst:2601 msgid "" "Also, there were a number of updates to the Mac OS X build, see `Mac/" "BuildScript/README.txt `_.)" msgstr "" -#: whatsnew/3.2.rst:2696 +#: whatsnew/3.2.rst:2698 msgid "" ":func:`struct.pack` now only allows bytes for the ``s`` string pack code. " "Formerly, it would accept text arguments and implicitly encode them to bytes " @@ -3164,32 +3163,32 @@ msgid "" "writing to fixed length segment of a structure." msgstr "" -#: whatsnew/3.2.rst:2702 +#: whatsnew/3.2.rst:2704 msgid "" "Code such as ``struct.pack('<6sHHBBB', 'GIF87a', x, y)`` should be rewritten " "with to use bytes instead of text, ``struct.pack('<6sHHBBB', b'GIF87a', x, " "y)``." msgstr "" -#: whatsnew/3.2.rst:2705 +#: whatsnew/3.2.rst:2707 msgid "" "(Discovered by David Beazley and fixed by Victor Stinner; :issue:`10783`.)" msgstr "" -#: whatsnew/3.2.rst:2707 +#: whatsnew/3.2.rst:2709 msgid "" "The :class:`xml.etree.ElementTree` class now raises an :exc:`xml.etree." "ElementTree.ParseError` when a parse fails. Previously it raised an :exc:" "`xml.parsers.expat.ExpatError`." msgstr "" -#: whatsnew/3.2.rst:2711 +#: whatsnew/3.2.rst:2713 msgid "" "The new, longer :func:`str` value on floats may break doctests which rely on " "the old output format." msgstr "" -#: whatsnew/3.2.rst:2714 +#: whatsnew/3.2.rst:2716 msgid "" "In :class:`subprocess.Popen`, the default value for *close_fds* is now " "``True`` under Unix; under Windows, it is ``True`` if the three standard " @@ -3198,28 +3197,28 @@ msgid "" "race conditions when open file descriptors would leak into the child process." msgstr "" -#: whatsnew/3.2.rst:2721 +#: whatsnew/3.2.rst:2723 msgid "" "Support for legacy HTTP 0.9 has been removed from :mod:`urllib.request` and :" "mod:`http.client`. Such support is still present on the server side (in :" "mod:`http.server`)." msgstr "" -#: whatsnew/3.2.rst:2725 +#: whatsnew/3.2.rst:2727 msgid "(Contributed by Antoine Pitrou, :issue:`10711`.)" msgstr "" -#: whatsnew/3.2.rst:2727 +#: whatsnew/3.2.rst:2729 msgid "" "SSL sockets in timeout mode now raise :exc:`socket.timeout` when a timeout " "occurs, rather than a generic :exc:`~ssl.SSLError`." msgstr "" -#: whatsnew/3.2.rst:2730 +#: whatsnew/3.2.rst:2732 msgid "(Contributed by Antoine Pitrou, :issue:`10272`.)" msgstr "" -#: whatsnew/3.2.rst:2732 +#: whatsnew/3.2.rst:2734 msgid "" "The misleading functions :c:func:`!PyEval_AcquireLock` and :c:func:`!" "PyEval_ReleaseLock` have been officially deprecated. The thread-state aware " @@ -3227,18 +3226,18 @@ msgid "" "`PyEval_RestoreThread`) should be used instead." msgstr "" -#: whatsnew/3.2.rst:2737 +#: whatsnew/3.2.rst:2739 msgid "" "Due to security risks, :func:`asyncore.handle_accept` has been deprecated, " "and a new function, :func:`asyncore.handle_accepted`, was added to replace " "it." msgstr "" -#: whatsnew/3.2.rst:2740 +#: whatsnew/3.2.rst:2742 msgid "(Contributed by Giampaolo Rodola in :issue:`6706`.)" msgstr "" -#: whatsnew/3.2.rst:2742 +#: whatsnew/3.2.rst:2744 msgid "" "Due to the new :term:`GIL` implementation, :c:func:`!PyEval_InitThreads` " "cannot be called before :c:func:`Py_Initialize` anymore." diff --git a/whatsnew/3.3.po b/whatsnew/3.3.po index b1729cf40..4c419ba48 100644 --- a/whatsnew/3.3.po +++ b/whatsnew/3.3.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -215,7 +215,7 @@ msgid "" "dimensional NumPy-style arrays is explained." msgstr "" -#: whatsnew/3.3.rst:1122 +#: whatsnew/3.3.rst:1123 msgid "Features" msgstr "" @@ -252,7 +252,7 @@ msgid "" "now possible to reverse a memoryview in O(1) by using a negative step." msgstr "" -#: whatsnew/3.3.rst:1132 +#: whatsnew/3.3.rst:1133 msgid "API changes" msgstr "" @@ -717,33 +717,33 @@ msgstr "" msgid "Example with (non-bound) methods::" msgstr "" -#: whatsnew/3.3.rst:568 +#: whatsnew/3.3.rst:569 msgid "Example with nested classes::" msgstr "" -#: whatsnew/3.3.rst:584 +#: whatsnew/3.3.rst:585 msgid "Example with nested functions::" msgstr "" -#: whatsnew/3.3.rst:596 +#: whatsnew/3.3.rst:597 msgid "" "The string representation of those objects is also changed to include the " "new, more precise information::" msgstr "" -#: whatsnew/3.3.rst:606 +#: whatsnew/3.3.rst:607 msgid ":pep:`3155` - Qualified name for classes and functions" msgstr "" -#: whatsnew/3.3.rst:607 +#: whatsnew/3.3.rst:608 msgid "PEP written and implemented by Antoine Pitrou." msgstr "" -#: whatsnew/3.3.rst:613 +#: whatsnew/3.3.rst:614 msgid "PEP 412: Key-Sharing Dictionary" msgstr "" -#: whatsnew/3.3.rst:615 +#: whatsnew/3.3.rst:616 msgid "" "Dictionaries used for the storage of objects' attributes are now able to " "share part of their internal storage between each other (namely, the part " @@ -751,19 +751,19 @@ msgid "" "consumption of programs creating many instances of non-builtin types." msgstr "" -#: whatsnew/3.3.rst:622 +#: whatsnew/3.3.rst:623 msgid ":pep:`412` - Key-Sharing Dictionary" msgstr "" -#: whatsnew/3.3.rst:623 +#: whatsnew/3.3.rst:624 msgid "PEP written and implemented by Mark Shannon." msgstr "" -#: whatsnew/3.3.rst:627 +#: whatsnew/3.3.rst:628 msgid "PEP 362: Function Signature Object" msgstr "" -#: whatsnew/3.3.rst:629 +#: whatsnew/3.3.rst:630 msgid "" "A new function :func:`inspect.signature` makes introspection of python " "callables easy and straightforward. A broad range of callables is " @@ -775,21 +775,21 @@ msgid "" "code that validates or amends calling signatures or arguments." msgstr "" -#: whatsnew/3.3.rst:641 +#: whatsnew/3.3.rst:642 msgid ":pep:`362`: - Function Signature Object" msgstr "" -#: whatsnew/3.3.rst:641 +#: whatsnew/3.3.rst:642 msgid "" "PEP written by Brett Cannon, Yury Selivanov, Larry Hastings, Jiwon Seo; " "implemented by Yury Selivanov." msgstr "" -#: whatsnew/3.3.rst:646 +#: whatsnew/3.3.rst:647 msgid "PEP 421: Adding sys.implementation" msgstr "" -#: whatsnew/3.3.rst:648 +#: whatsnew/3.3.rst:649 msgid "" "A new attribute on the :mod:`sys` module exposes details specific to the " "implementation of the currently running interpreter. The initial set of " @@ -797,7 +797,7 @@ msgid "" "``hexversion``, and ``cache_tag``." msgstr "" -#: whatsnew/3.3.rst:653 +#: whatsnew/3.3.rst:654 msgid "" "The intention of ``sys.implementation`` is to consolidate into one namespace " "the implementation-specific data used by the standard library. This allows " @@ -807,7 +807,7 @@ msgid "" "ratio will shift in order to make the standard library more portable." msgstr "" -#: whatsnew/3.3.rst:660 +#: whatsnew/3.3.rst:661 msgid "" "One example of improved standard library portability is ``cache_tag``. As " "of Python 3.3, ``sys.implementation.cache_tag`` is used by :mod:`importlib` " @@ -816,11 +816,11 @@ msgid "" "control the caching behavior for modules." msgstr "" -#: whatsnew/3.3.rst:667 +#: whatsnew/3.3.rst:668 msgid "SimpleNamespace" msgstr "" -#: whatsnew/3.3.rst:669 +#: whatsnew/3.3.rst:670 msgid "" "The implementation of ``sys.implementation`` also introduces a new type to " "Python: :class:`types.SimpleNamespace`. In contrast to a mapping-based " @@ -830,27 +830,27 @@ msgid "" "through normal attribute access." msgstr "" -#: whatsnew/3.3.rst:678 +#: whatsnew/3.3.rst:679 msgid ":pep:`421` - Adding sys.implementation" msgstr "" -#: whatsnew/3.3.rst:679 +#: whatsnew/3.3.rst:680 msgid "PEP written and implemented by Eric Snow." msgstr "" -#: whatsnew/3.3.rst:685 +#: whatsnew/3.3.rst:686 msgid "Using importlib as the Implementation of Import" msgstr "" -#: whatsnew/3.3.rst:686 +#: whatsnew/3.3.rst:687 msgid "" ":issue:`2377` - Replace __import__ w/ importlib.__import__ :issue:`13959` - " -"Re-implement parts of :mod:`imp` in pure Python :issue:`14605` - Make import " -"machinery explicit :issue:`14646` - Require loaders set __loader__ and " -"__package__" +"Re-implement parts of :mod:`!imp` in pure Python :issue:`14605` - Make " +"import machinery explicit :issue:`14646` - Require loaders set __loader__ " +"and __package__" msgstr "" -#: whatsnew/3.3.rst:691 +#: whatsnew/3.3.rst:692 msgid "" "The :func:`__import__` function is now powered by :func:`importlib." "__import__`. This work leads to the completion of \"phase 2\" of :pep:`302`. " @@ -862,7 +862,7 @@ msgid "" "import, allowing for future growth to occur." msgstr "" -#: whatsnew/3.3.rst:700 +#: whatsnew/3.3.rst:701 msgid "" "For the common user, there should be no visible change in semantics. For " "those whose code currently manipulates import or calls import " @@ -870,36 +870,36 @@ msgid "" "covered in the `Porting Python code`_ section of this document." msgstr "" -#: whatsnew/3.3.rst:706 +#: whatsnew/3.3.rst:707 msgid "New APIs" msgstr "" -#: whatsnew/3.3.rst:707 +#: whatsnew/3.3.rst:708 msgid "" "One of the large benefits of this work is the exposure of what goes into " "making the import statement work. That means the various importers that were " "once implicit are now fully exposed as part of the :mod:`importlib` package." msgstr "" -#: whatsnew/3.3.rst:711 +#: whatsnew/3.3.rst:712 msgid "" "The abstract base classes defined in :mod:`importlib.abc` have been expanded " "to properly delineate between :term:`meta path finders ` " "and :term:`path entry finders ` by introducing :class:" "`importlib.abc.MetaPathFinder` and :class:`importlib.abc.PathEntryFinder`, " -"respectively. The old ABC of :class:`importlib.abc.Finder` is now only " +"respectively. The old ABC of :class:`!importlib.abc.Finder` is now only " "provided for backwards-compatibility and does not enforce any method " "requirements." msgstr "" -#: whatsnew/3.3.rst:719 +#: whatsnew/3.3.rst:720 msgid "" "In terms of finders, :class:`importlib.machinery.FileFinder` exposes the " "mechanism used to search for source and bytecode files of a module. " "Previously this class was an implicit member of :data:`sys.path_hooks`." msgstr "" -#: whatsnew/3.3.rst:723 +#: whatsnew/3.3.rst:724 msgid "" "For loaders, the new abstract base class :class:`importlib.abc.FileLoader` " "helps write a loader that uses the file system as the storage mechanism for " @@ -909,7 +909,7 @@ msgid "" "ExtensionFileLoader`) are now available for direct use." msgstr "" -#: whatsnew/3.3.rst:731 +#: whatsnew/3.3.rst:732 msgid "" ":exc:`ImportError` now has ``name`` and ``path`` attributes which are set " "when there is relevant data to provide. The message for failed imports will " @@ -917,24 +917,24 @@ msgid "" "the module's name." msgstr "" -#: whatsnew/3.3.rst:736 +#: whatsnew/3.3.rst:737 msgid "" "The :func:`importlib.invalidate_caches` function will now call the method " "with the same name on all finders cached in :data:`sys.path_importer_cache` " "to help clean up any stored state as necessary." msgstr "" -#: whatsnew/3.3.rst:741 +#: whatsnew/3.3.rst:742 msgid "Visible Changes" msgstr "" -#: whatsnew/3.3.rst:743 +#: whatsnew/3.3.rst:744 msgid "" "For potential required changes to code, see the `Porting Python code`_ " "section." msgstr "" -#: whatsnew/3.3.rst:746 +#: whatsnew/3.3.rst:747 msgid "" "Beyond the expanse of what :mod:`importlib` now exposes, there are other " "visible changes to import. The biggest is that :data:`sys.meta_path` and :" @@ -945,7 +945,7 @@ msgid "" "fit one's needs." msgstr "" -#: whatsnew/3.3.rst:753 +#: whatsnew/3.3.rst:754 msgid "" "Another change is that all modules have a ``__loader__`` attribute, storing " "the loader used to create the module. :pep:`302` has been updated to make " @@ -955,81 +955,81 @@ msgid "" "load." msgstr "" -#: whatsnew/3.3.rst:759 +#: whatsnew/3.3.rst:760 msgid "" "Loaders are also now expected to set the ``__package__`` attribute from :pep:" "`366`. Once again, import itself is already setting this on all loaders " "from :mod:`importlib` and import itself is setting the attribute post-load." msgstr "" -#: whatsnew/3.3.rst:763 +#: whatsnew/3.3.rst:764 msgid "" "``None`` is now inserted into :data:`sys.path_importer_cache` when no finder " -"can be found on :data:`sys.path_hooks`. Since :class:`imp.NullImporter` is " +"can be found on :data:`sys.path_hooks`. Since :class:`!imp.NullImporter` is " "not directly exposed on :data:`sys.path_hooks` it could no longer be relied " "upon to always be available to use as a value representing no finder found." msgstr "" -#: whatsnew/3.3.rst:768 +#: whatsnew/3.3.rst:769 msgid "" "All other changes relate to semantic changes which should be taken into " "consideration when updating code for Python 3.3, and thus should be read " "about in the `Porting Python code`_ section of this document." msgstr "" -#: whatsnew/3.3.rst:772 +#: whatsnew/3.3.rst:773 msgid "(Implementation by Brett Cannon)" msgstr "" -#: whatsnew/3.3.rst:776 +#: whatsnew/3.3.rst:777 msgid "Other Language Changes" msgstr "" -#: whatsnew/3.3.rst:778 +#: whatsnew/3.3.rst:779 msgid "Some smaller changes made to the core Python language are:" msgstr "" -#: whatsnew/3.3.rst:780 +#: whatsnew/3.3.rst:781 msgid "" "Added support for Unicode name aliases and named sequences. Both :func:" "`unicodedata.lookup()` and ``'\\N{...}'`` now resolve name aliases, and :" "func:`unicodedata.lookup()` resolves named sequences too." msgstr "" -#: whatsnew/3.3.rst:784 +#: whatsnew/3.3.rst:785 msgid "(Contributed by Ezio Melotti in :issue:`12753`.)" msgstr "" -#: whatsnew/3.3.rst:786 +#: whatsnew/3.3.rst:787 msgid "Unicode database updated to UCD version 6.1.0" msgstr "" -#: whatsnew/3.3.rst:788 +#: whatsnew/3.3.rst:789 msgid "" "Equality comparisons on :func:`range` objects now return a result reflecting " "the equality of the underlying sequences generated by those range objects. (:" "issue:`13201`)" msgstr "" -#: whatsnew/3.3.rst:792 +#: whatsnew/3.3.rst:793 msgid "" "The ``count()``, ``find()``, ``rfind()``, ``index()`` and ``rindex()`` " "methods of :class:`bytes` and :class:`bytearray` objects now accept an " "integer between 0 and 255 as their first argument." msgstr "" -#: whatsnew/3.3.rst:796 +#: whatsnew/3.3.rst:797 msgid "(Contributed by Petri Lehtinen in :issue:`12170`.)" msgstr "" -#: whatsnew/3.3.rst:798 +#: whatsnew/3.3.rst:799 msgid "" "The ``rjust()``, ``ljust()``, and ``center()`` methods of :class:`bytes` " "and :class:`bytearray` now accept a :class:`bytearray` for the ``fill`` " "argument. (Contributed by Petri Lehtinen in :issue:`12380`.)" msgstr "" -#: whatsnew/3.3.rst:802 +#: whatsnew/3.3.rst:803 msgid "" "New methods have been added to :class:`list` and :class:`bytearray`: " "``copy()`` and ``clear()`` (:issue:`10516`). Consequently, :class:" @@ -1037,40 +1037,40 @@ msgid "" "abc.MutableSequence.clear` method (:issue:`11388`)." msgstr "" -#: whatsnew/3.3.rst:807 +#: whatsnew/3.3.rst:808 msgid "" "Raw bytes literals can now be written ``rb\"...\"`` as well as ``br\"...\"``." msgstr "" -#: whatsnew/3.3.rst:809 +#: whatsnew/3.3.rst:810 msgid "(Contributed by Antoine Pitrou in :issue:`13748`.)" msgstr "" -#: whatsnew/3.3.rst:811 +#: whatsnew/3.3.rst:812 msgid "" ":meth:`dict.setdefault` now does only one lookup for the given key, making " "it atomic when used with built-in types." msgstr "" -#: whatsnew/3.3.rst:814 +#: whatsnew/3.3.rst:815 msgid "(Contributed by Filip Gruszczyński in :issue:`13521`.)" msgstr "" -#: whatsnew/3.3.rst:816 +#: whatsnew/3.3.rst:817 msgid "" "The error messages produced when a function call does not match the function " "signature have been significantly improved." msgstr "" -#: whatsnew/3.3.rst:819 +#: whatsnew/3.3.rst:820 msgid "(Contributed by Benjamin Peterson.)" msgstr "" -#: whatsnew/3.3.rst:823 +#: whatsnew/3.3.rst:824 msgid "A Finer-Grained Import Lock" msgstr "" -#: whatsnew/3.3.rst:825 +#: whatsnew/3.3.rst:826 msgid "" "Previous versions of CPython have always relied on a global import lock. " "This led to unexpected annoyances, such as deadlocks when importing a module " @@ -1079,7 +1079,7 @@ msgid "" "`PyImport_ImportModuleNoBlock` C API function." msgstr "" -#: whatsnew/3.3.rst:831 +#: whatsnew/3.3.rst:832 msgid "" "In Python 3.3, importing a module takes a per-module lock. This correctly " "serializes importation of a given module from multiple threads (preventing " @@ -1087,15 +1087,15 @@ msgid "" "aforementioned annoyances." msgstr "" -#: whatsnew/3.3.rst:836 +#: whatsnew/3.3.rst:837 msgid "(Contributed by Antoine Pitrou in :issue:`9260`.)" msgstr "" -#: whatsnew/3.3.rst:840 +#: whatsnew/3.3.rst:841 msgid "Builtin functions and types" msgstr "" -#: whatsnew/3.3.rst:842 +#: whatsnew/3.3.rst:843 msgid "" ":func:`open` gets a new *opener* parameter: the underlying file descriptor " "for the file object is then obtained by calling *opener* with (*file*, " @@ -1104,26 +1104,26 @@ msgid "" "the file already exists." msgstr "" -#: whatsnew/3.3.rst:847 +#: whatsnew/3.3.rst:848 msgid "" ":func:`print`: added the *flush* keyword argument. If the *flush* keyword " "argument is true, the stream is forcibly flushed." msgstr "" -#: whatsnew/3.3.rst:849 +#: whatsnew/3.3.rst:850 msgid "" ":func:`hash`: hash randomization is enabled by default, see :meth:`object." "__hash__` and :envvar:`PYTHONHASHSEED`." msgstr "" -#: whatsnew/3.3.rst:851 +#: whatsnew/3.3.rst:852 msgid "" "The :class:`str` type gets a new :meth:`~str.casefold` method: return a " "casefolded copy of the string, casefolded strings may be used for caseless " "matching. For example, ``'ß'.casefold()`` returns ``'ss'``." msgstr "" -#: whatsnew/3.3.rst:854 +#: whatsnew/3.3.rst:855 msgid "" "The sequence documentation has been substantially rewritten to better " "explain the binary/text sequence distinction and to provide specific " @@ -1131,15 +1131,15 @@ msgid "" "`4966`)." msgstr "" -#: whatsnew/3.3.rst:861 +#: whatsnew/3.3.rst:862 msgid "New Modules" msgstr "" -#: whatsnew/3.3.rst:864 +#: whatsnew/3.3.rst:865 msgid "faulthandler" msgstr "" -#: whatsnew/3.3.rst:866 +#: whatsnew/3.3.rst:867 msgid "" "This new debug module :mod:`faulthandler` contains functions to dump Python " "tracebacks explicitly, on a fault (a crash like a segmentation fault), after " @@ -1150,49 +1150,49 @@ msgid "" "by using :option:`-X` ``faulthandler`` command line option." msgstr "" -#: whatsnew/3.3.rst:874 +#: whatsnew/3.3.rst:875 msgid "Example of a segmentation fault on Linux:" msgstr "" -#: whatsnew/3.3.rst:890 +#: whatsnew/3.3.rst:891 msgid "ipaddress" msgstr "" -#: whatsnew/3.3.rst:892 +#: whatsnew/3.3.rst:893 msgid "" "The new :mod:`ipaddress` module provides tools for creating and manipulating " "objects representing IPv4 and IPv6 addresses, networks and interfaces (i.e. " "an IP address associated with a specific IP subnet)." msgstr "" -#: whatsnew/3.3.rst:896 +#: whatsnew/3.3.rst:897 msgid "(Contributed by Google and Peter Moody in :pep:`3144`.)" msgstr "" -#: whatsnew/3.3.rst:899 +#: whatsnew/3.3.rst:900 msgid "lzma" msgstr "" -#: whatsnew/3.3.rst:901 +#: whatsnew/3.3.rst:902 msgid "" "The newly added :mod:`lzma` module provides data compression and " "decompression using the LZMA algorithm, including support for the ``.xz`` " "and ``.lzma`` file formats." msgstr "" -#: whatsnew/3.3.rst:905 +#: whatsnew/3.3.rst:906 msgid "(Contributed by Nadeem Vawda and Per Øyvind Karlsen in :issue:`6715`.)" msgstr "" -#: whatsnew/3.3.rst:909 +#: whatsnew/3.3.rst:910 msgid "Improved Modules" msgstr "" -#: whatsnew/3.3.rst:912 +#: whatsnew/3.3.rst:913 msgid "abc" msgstr "" -#: whatsnew/3.3.rst:914 +#: whatsnew/3.3.rst:915 msgid "" "Improved support for abstract base classes containing descriptors composed " "with abstract methods. The recommended approach to declaring abstract " @@ -1200,53 +1200,53 @@ msgid "" "updated property. The built-in descriptors have been updated accordingly." msgstr "" -#: whatsnew/3.3.rst:2245 +#: whatsnew/3.3.rst:2246 msgid "" ":class:`abc.abstractproperty` has been deprecated, use :class:`property` " "with :func:`abc.abstractmethod` instead." msgstr "" -#: whatsnew/3.3.rst:2247 +#: whatsnew/3.3.rst:2248 msgid "" ":class:`abc.abstractclassmethod` has been deprecated, use :class:" "`classmethod` with :func:`abc.abstractmethod` instead." msgstr "" -#: whatsnew/3.3.rst:2249 +#: whatsnew/3.3.rst:2250 msgid "" ":class:`abc.abstractstaticmethod` has been deprecated, use :class:" "`staticmethod` with :func:`abc.abstractmethod` instead." msgstr "" -#: whatsnew/3.3.rst:926 +#: whatsnew/3.3.rst:927 msgid "(Contributed by Darren Dale in :issue:`11610`.)" msgstr "" -#: whatsnew/3.3.rst:928 +#: whatsnew/3.3.rst:929 msgid "" ":meth:`abc.ABCMeta.register` now returns the registered subclass, which " "means it can now be used as a class decorator (:issue:`10868`)." msgstr "" -#: whatsnew/3.3.rst:933 +#: whatsnew/3.3.rst:934 msgid "array" msgstr "" -#: whatsnew/3.3.rst:935 +#: whatsnew/3.3.rst:936 msgid "" "The :mod:`array` module supports the :c:expr:`long long` type using ``q`` " "and ``Q`` type codes." msgstr "" -#: whatsnew/3.3.rst:938 +#: whatsnew/3.3.rst:939 msgid "(Contributed by Oren Tirosh and Hirokazu Yamamoto in :issue:`1172711`.)" msgstr "" -#: whatsnew/3.3.rst:942 +#: whatsnew/3.3.rst:943 msgid "base64" msgstr "" -#: whatsnew/3.3.rst:944 +#: whatsnew/3.3.rst:945 msgid "" "ASCII-only Unicode strings are now accepted by the decoding functions of " "the :mod:`base64` modern interface. For example, ``base64." @@ -1254,44 +1254,44 @@ msgid "" "issue:`13641`.)" msgstr "" -#: whatsnew/3.3.rst:950 +#: whatsnew/3.3.rst:951 msgid "binascii" msgstr "" -#: whatsnew/3.3.rst:952 +#: whatsnew/3.3.rst:953 msgid "" "In addition to the binary objects they normally accept, the ``a2b_`` " "functions now all also accept ASCII-only strings as input. (Contributed by " "Antoine Pitrou in :issue:`13637`.)" msgstr "" -#: whatsnew/3.3.rst:958 +#: whatsnew/3.3.rst:959 msgid "bz2" msgstr "" -#: whatsnew/3.3.rst:960 +#: whatsnew/3.3.rst:961 msgid "" "The :mod:`bz2` module has been rewritten from scratch. In the process, " "several new features have been added:" msgstr "" -#: whatsnew/3.3.rst:963 +#: whatsnew/3.3.rst:964 msgid "" "New :func:`bz2.open` function: open a bzip2-compressed file in binary or " "text mode." msgstr "" -#: whatsnew/3.3.rst:966 +#: whatsnew/3.3.rst:967 msgid "" ":class:`bz2.BZ2File` can now read from and write to arbitrary file-like " "objects, by means of its constructor's *fileobj* argument." msgstr "" -#: whatsnew/3.3.rst:969 +#: whatsnew/3.3.rst:970 msgid "(Contributed by Nadeem Vawda in :issue:`5863`.)" msgstr "" -#: whatsnew/3.3.rst:971 +#: whatsnew/3.3.rst:972 msgid "" ":class:`bz2.BZ2File` and :func:`bz2.decompress` can now decompress multi-" "stream inputs (such as those produced by the :program:`pbzip2` tool). :class:" @@ -1299,21 +1299,21 @@ msgid "" "``'a'`` (append) mode." msgstr "" -#: whatsnew/3.3.rst:976 +#: whatsnew/3.3.rst:977 msgid "(Contributed by Nir Aides in :issue:`1625`.)" msgstr "" -#: whatsnew/3.3.rst:978 +#: whatsnew/3.3.rst:979 msgid "" ":class:`bz2.BZ2File` now implements all of the :class:`io.BufferedIOBase` " "API, except for the :meth:`detach` and :meth:`truncate` methods." msgstr "" -#: whatsnew/3.3.rst:983 +#: whatsnew/3.3.rst:984 msgid "codecs" msgstr "" -#: whatsnew/3.3.rst:985 +#: whatsnew/3.3.rst:986 msgid "" "The :mod:`~encodings.mbcs` codec has been rewritten to handle correctly " "``replace`` and ``ignore`` error handlers on all Windows versions. The :mod:" @@ -1321,7 +1321,7 @@ msgid "" "``replace`` to encode and ``ignore`` to decode." msgstr "" -#: whatsnew/3.3.rst:990 +#: whatsnew/3.3.rst:991 msgid "" "A new Windows-only codec has been added: ``cp65001`` (:issue:`13216`). It is " "the Windows code page 65001 (Windows UTF-8, ``CP_UTF8``). For example, it " @@ -1329,7 +1329,7 @@ msgid "" "(e.g., using ``chcp 65001`` command)." msgstr "" -#: whatsnew/3.3.rst:995 +#: whatsnew/3.3.rst:996 msgid "" "Multibyte CJK decoders now resynchronize faster. They only ignore the first " "byte of an invalid byte sequence. For example, ``b'\\xff\\n'." @@ -1337,42 +1337,42 @@ msgid "" "character." msgstr "" -#: whatsnew/3.3.rst:999 +#: whatsnew/3.3.rst:1000 msgid "(:issue:`12016`)" msgstr "" -#: whatsnew/3.3.rst:1001 +#: whatsnew/3.3.rst:1002 msgid "" "Incremental CJK codec encoders are no longer reset at each call to their " "encode() methods. For example::" msgstr "" -#: whatsnew/3.3.rst:1009 +#: whatsnew/3.3.rst:1010 msgid "" "This example gives ``b'~{Np~}~{J)~}~{l6~}~{HK~}~{!#~} Bye.'`` with older " "Python versions." msgstr "" -#: whatsnew/3.3.rst:1012 +#: whatsnew/3.3.rst:1013 msgid "(:issue:`12100`)" msgstr "" -#: whatsnew/3.3.rst:1014 +#: whatsnew/3.3.rst:1015 msgid "The ``unicode_internal`` codec has been deprecated." msgstr "" -#: whatsnew/3.3.rst:1018 +#: whatsnew/3.3.rst:1019 msgid "collections" msgstr "" -#: whatsnew/3.3.rst:1020 +#: whatsnew/3.3.rst:1021 msgid "" "Addition of a new :class:`~collections.ChainMap` class to allow treating a " "number of mappings as a single unit. (Written by Raymond Hettinger for :" "issue:`11089`, made public in :issue:`11297`.)" msgstr "" -#: whatsnew/3.3.rst:1024 +#: whatsnew/3.3.rst:1025 msgid "" "The abstract base classes have been moved in a new :mod:`collections.abc` " "module, to better differentiate between the abstract and the concrete " @@ -1380,18 +1380,18 @@ msgid "" "`collections` module to preserve existing imports. (:issue:`11085`)" msgstr "" -#: whatsnew/3.3.rst:1031 +#: whatsnew/3.3.rst:1032 msgid "" "The :class:`~collections.Counter` class now supports the unary ``+`` and ``-" "`` operators, as well as the in-place operators ``+=``, ``-=``, ``|=``, and " "``&=``. (Contributed by Raymond Hettinger in :issue:`13121`.)" msgstr "" -#: whatsnew/3.3.rst:1037 +#: whatsnew/3.3.rst:1038 msgid "contextlib" msgstr "" -#: whatsnew/3.3.rst:1039 +#: whatsnew/3.3.rst:1040 msgid "" ":class:`~contextlib.ExitStack` now provides a solid foundation for " "programmatic manipulation of context managers and similar cleanup " @@ -1403,103 +1403,103 @@ msgid "" "module)." msgstr "" -#: whatsnew/3.3.rst:1048 +#: whatsnew/3.3.rst:1049 msgid "(:issue:`13585`)" msgstr "" -#: whatsnew/3.3.rst:1052 +#: whatsnew/3.3.rst:1053 msgid "crypt" msgstr "" -#: whatsnew/3.3.rst:1054 +#: whatsnew/3.3.rst:1055 msgid "" "Addition of salt and modular crypt format (hashing method) and the :func:" "`~crypt.mksalt` function to the :mod:`crypt` module." msgstr "" -#: whatsnew/3.3.rst:1057 +#: whatsnew/3.3.rst:1058 msgid "(:issue:`10924`)" msgstr "" -#: whatsnew/3.3.rst:1060 +#: whatsnew/3.3.rst:1061 msgid "curses" msgstr "" -#: whatsnew/3.3.rst:1062 +#: whatsnew/3.3.rst:1063 msgid "" "If the :mod:`curses` module is linked to the ncursesw library, use Unicode " "functions when Unicode strings or characters are passed (e.g. :c:func:" "`waddwstr`), and bytes functions otherwise (e.g. :c:func:`waddstr`)." msgstr "" -#: whatsnew/3.3.rst:1065 +#: whatsnew/3.3.rst:1066 msgid "Use the locale encoding instead of ``utf-8`` to encode Unicode strings." msgstr "" -#: whatsnew/3.3.rst:1066 +#: whatsnew/3.3.rst:1067 msgid "" ":class:`curses.window` has a new :attr:`curses.window.encoding` attribute." msgstr "" -#: whatsnew/3.3.rst:1067 +#: whatsnew/3.3.rst:1068 msgid "" "The :class:`curses.window` class has a new :meth:`~curses.window.get_wch` " "method to get a wide character" msgstr "" -#: whatsnew/3.3.rst:1069 +#: whatsnew/3.3.rst:1070 msgid "" "The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to " "push a wide character so the next :meth:`~curses.window.get_wch` will return " "it" msgstr "" -#: whatsnew/3.3.rst:1073 +#: whatsnew/3.3.rst:1074 msgid "(Contributed by Iñigo Serna in :issue:`6755`.)" msgstr "" -#: whatsnew/3.3.rst:1076 +#: whatsnew/3.3.rst:1077 msgid "datetime" msgstr "" -#: whatsnew/3.3.rst:1078 +#: whatsnew/3.3.rst:1079 msgid "" "Equality comparisons between naive and aware :class:`~datetime.datetime` " "instances now return :const:`False` instead of raising :exc:`TypeError` (:" "issue:`15006`)." msgstr "" -#: whatsnew/3.3.rst:1081 +#: whatsnew/3.3.rst:1082 msgid "" "New :meth:`datetime.datetime.timestamp` method: Return POSIX timestamp " "corresponding to the :class:`~datetime.datetime` instance." msgstr "" -#: whatsnew/3.3.rst:1083 +#: whatsnew/3.3.rst:1084 msgid "" "The :meth:`datetime.datetime.strftime` method supports formatting years " "older than 1000." msgstr "" -#: whatsnew/3.3.rst:1085 +#: whatsnew/3.3.rst:1086 msgid "" "The :meth:`datetime.datetime.astimezone` method can now be called without " "arguments to convert datetime instance to the system timezone." msgstr "" -#: whatsnew/3.3.rst:1093 +#: whatsnew/3.3.rst:1094 msgid "decimal" msgstr "" -#: whatsnew/3.3.rst:1096 +#: whatsnew/3.3.rst:1097 msgid ":issue:`7652` - integrate fast native decimal arithmetic." msgstr "" -#: whatsnew/3.3.rst:1096 +#: whatsnew/3.3.rst:1097 msgid "C-module and libmpdec written by Stefan Krah." msgstr "" -#: whatsnew/3.3.rst:1098 +#: whatsnew/3.3.rst:1099 msgid "" "The new C version of the decimal module integrates the high speed libmpdec " "library for arbitrary precision correctly rounded decimal floating point " @@ -1507,7 +1507,7 @@ msgid "" "Specification." msgstr "" -#: whatsnew/3.3.rst:1102 +#: whatsnew/3.3.rst:1103 msgid "" "Performance gains range from 10x for database applications to 100x for " "numerically intensive applications. These numbers are expected gains for " @@ -1516,128 +1516,128 @@ msgid "" "integer bignum arithmetic the differences can be significantly higher." msgstr "" -#: whatsnew/3.3.rst:1108 +#: whatsnew/3.3.rst:1109 msgid "" "The following table is meant as an illustration. Benchmarks are available at " "https://www.bytereef.org/mpdecimal/quickstart.html." msgstr "" -#: whatsnew/3.3.rst:1112 +#: whatsnew/3.3.rst:1113 msgid "decimal.py" msgstr "" -#: whatsnew/3.3.rst:1112 +#: whatsnew/3.3.rst:1113 msgid "_decimal" msgstr "" -#: whatsnew/3.3.rst:1112 +#: whatsnew/3.3.rst:1113 msgid "speedup" msgstr "" -#: whatsnew/3.3.rst:1114 +#: whatsnew/3.3.rst:1115 msgid "pi" msgstr "" -#: whatsnew/3.3.rst:1114 +#: whatsnew/3.3.rst:1115 msgid "42.02s" msgstr "" -#: whatsnew/3.3.rst:1114 +#: whatsnew/3.3.rst:1115 msgid "0.345s" msgstr "" -#: whatsnew/3.3.rst:1114 +#: whatsnew/3.3.rst:1115 msgid "120x" msgstr "" -#: whatsnew/3.3.rst:1116 +#: whatsnew/3.3.rst:1117 msgid "telco" msgstr "" -#: whatsnew/3.3.rst:1116 +#: whatsnew/3.3.rst:1117 msgid "172.19s" msgstr "" -#: whatsnew/3.3.rst:1116 +#: whatsnew/3.3.rst:1117 msgid "5.68s" msgstr "" -#: whatsnew/3.3.rst:1116 +#: whatsnew/3.3.rst:1117 msgid "30x" msgstr "" -#: whatsnew/3.3.rst:1118 +#: whatsnew/3.3.rst:1119 msgid "psycopg" msgstr "" -#: whatsnew/3.3.rst:1118 +#: whatsnew/3.3.rst:1119 msgid "3.57s" msgstr "" -#: whatsnew/3.3.rst:1118 +#: whatsnew/3.3.rst:1119 msgid "0.29s" msgstr "" -#: whatsnew/3.3.rst:1118 +#: whatsnew/3.3.rst:1119 msgid "12x" msgstr "" -#: whatsnew/3.3.rst:1124 +#: whatsnew/3.3.rst:1125 msgid "" "The :exc:`~decimal.FloatOperation` signal optionally enables stricter " "semantics for mixing floats and Decimals." msgstr "" -#: whatsnew/3.3.rst:1127 +#: whatsnew/3.3.rst:1128 msgid "" "If Python is compiled without threads, the C version automatically disables " "the expensive thread local context machinery. In this case, the variable :" "const:`~decimal.HAVE_THREADS` is set to ``False``." msgstr "" -#: whatsnew/3.3.rst:1134 +#: whatsnew/3.3.rst:1135 msgid "" "The C module has the following context limits, depending on the machine " "architecture:" msgstr "" -#: whatsnew/3.3.rst:1138 +#: whatsnew/3.3.rst:1139 msgid "32-bit" msgstr "" -#: whatsnew/3.3.rst:1138 +#: whatsnew/3.3.rst:1139 msgid "64-bit" msgstr "" -#: whatsnew/3.3.rst:1140 +#: whatsnew/3.3.rst:1141 msgid ":const:`MAX_PREC`" msgstr "" -#: whatsnew/3.3.rst:1142 +#: whatsnew/3.3.rst:1143 msgid "``425000000``" msgstr "" -#: whatsnew/3.3.rst:1142 +#: whatsnew/3.3.rst:1143 msgid "``999999999999999999``" msgstr "" -#: whatsnew/3.3.rst:1142 +#: whatsnew/3.3.rst:1143 msgid ":const:`MAX_EMAX`" msgstr "" -#: whatsnew/3.3.rst:1144 +#: whatsnew/3.3.rst:1145 msgid ":const:`MIN_EMIN`" msgstr "" -#: whatsnew/3.3.rst:1144 +#: whatsnew/3.3.rst:1145 msgid "``-425000000``" msgstr "" -#: whatsnew/3.3.rst:1144 +#: whatsnew/3.3.rst:1145 msgid "``-999999999999999999``" msgstr "" -#: whatsnew/3.3.rst:1147 +#: whatsnew/3.3.rst:1148 msgid "" "In the context templates (:class:`~decimal.DefaultContext`, :class:`~decimal." "BasicContext` and :class:`~decimal.ExtendedContext`) the magnitude of :attr:" @@ -1645,7 +1645,7 @@ msgid "" "``999999``." msgstr "" -#: whatsnew/3.3.rst:1152 +#: whatsnew/3.3.rst:1153 msgid "" "The :class:`~decimal.Decimal` constructor in decimal.py does not observe the " "context limits and converts values with arbitrary exponents or precision " @@ -1656,7 +1656,7 @@ msgid "" "obtain a rounded or inexact value." msgstr "" -#: whatsnew/3.3.rst:1161 +#: whatsnew/3.3.rst:1162 msgid "" "The power function in decimal.py is always correctly rounded. In the C " "version, it is defined in terms of the correctly rounded :meth:`~decimal." @@ -1664,7 +1664,7 @@ msgid "" "is only \"almost always correctly rounded\"." msgstr "" -#: whatsnew/3.3.rst:1167 +#: whatsnew/3.3.rst:1168 msgid "" "In the C version, the context dictionary containing the signals is a :class:" "`~collections.abc.MutableMapping`. For speed reasons, :attr:`~decimal." @@ -1675,33 +1675,33 @@ msgid "" "do not reference the RHS dictionary." msgstr "" -#: whatsnew/3.3.rst:1177 +#: whatsnew/3.3.rst:1178 msgid "" "Pickling a :class:`~decimal.Context` produces a different output in order to " "have a common interchange format for the Python and C versions." msgstr "" -#: whatsnew/3.3.rst:1181 +#: whatsnew/3.3.rst:1182 msgid "" "The order of arguments in the :class:`~decimal.Context` constructor has been " "changed to match the order displayed by :func:`repr`." msgstr "" -#: whatsnew/3.3.rst:1185 +#: whatsnew/3.3.rst:1186 msgid "" "The ``watchexp`` parameter in the :meth:`~decimal.Decimal.quantize` method " "is deprecated." msgstr "" -#: whatsnew/3.3.rst:1192 +#: whatsnew/3.3.rst:1193 msgid "email" msgstr "" -#: whatsnew/3.3.rst:1195 +#: whatsnew/3.3.rst:1196 msgid "Policy Framework" msgstr "" -#: whatsnew/3.3.rst:1197 +#: whatsnew/3.3.rst:1198 msgid "" "The email package now has a :mod:`~email.policy` framework. A :class:" "`~email.policy.Policy` is an object with several methods and properties that " @@ -1717,52 +1717,52 @@ msgid "" "data:`~email.policy.compat32`." msgstr "" -#: whatsnew/3.3.rst:1210 +#: whatsnew/3.3.rst:1211 msgid "The minimum set of controls implemented by all ``policy`` objects are:" msgstr "" -#: whatsnew/3.3.rst:1215 +#: whatsnew/3.3.rst:1216 msgid "max_line_length" msgstr "" -#: whatsnew/3.3.rst:1215 +#: whatsnew/3.3.rst:1216 msgid "" "The maximum length, excluding the linesep character(s), individual lines may " "have when a ``Message`` is serialized. Defaults to 78." msgstr "" -#: whatsnew/3.3.rst:1219 +#: whatsnew/3.3.rst:1220 msgid "linesep" msgstr "" -#: whatsnew/3.3.rst:1219 +#: whatsnew/3.3.rst:1220 msgid "" "The character used to separate individual lines when a ``Message`` is " "serialized. Defaults to ``\\n``." msgstr "" -#: whatsnew/3.3.rst:1222 +#: whatsnew/3.3.rst:1223 msgid "cte_type" msgstr "" -#: whatsnew/3.3.rst:1222 +#: whatsnew/3.3.rst:1223 msgid "" "``7bit`` or ``8bit``. ``8bit`` applies only to a ``Bytes`` ``generator``, " "and means that non-ASCII may be used where allowed by the protocol (or where " "it exists in the original input)." msgstr "" -#: whatsnew/3.3.rst:1227 +#: whatsnew/3.3.rst:1228 msgid "raise_on_defect" msgstr "" -#: whatsnew/3.3.rst:1227 +#: whatsnew/3.3.rst:1228 msgid "" "Causes a ``parser`` to raise error when defects are encountered instead of " "adding them to the ``Message`` object's ``defects`` list." msgstr "" -#: whatsnew/3.3.rst:1232 +#: whatsnew/3.3.rst:1233 msgid "" "A new policy instance, with new settings, is created using the :meth:`~email." "policy.Policy.clone` method of policy objects. ``clone`` takes any of the " @@ -1771,7 +1771,7 @@ msgid "" "``\\r\\n`` linesep characters like this::" msgstr "" -#: whatsnew/3.3.rst:1240 +#: whatsnew/3.3.rst:1241 msgid "" "Policies can be used to make the generation of messages in the format needed " "by your application simpler. Instead of having to remember to specify " @@ -1784,11 +1784,11 @@ msgid "" "when you create the ``generator``." msgstr "" -#: whatsnew/3.3.rst:1252 +#: whatsnew/3.3.rst:1253 msgid "Provisional Policy with New Header API" msgstr "" -#: whatsnew/3.3.rst:1254 +#: whatsnew/3.3.rst:1255 msgid "" "While the policy framework is worthwhile all by itself, the main motivation " "for introducing it is to allow the creation of new policies that implement " @@ -1800,17 +1800,17 @@ msgid "" "the core developers." msgstr "" -#: whatsnew/3.3.rst:1262 +#: whatsnew/3.3.rst:1263 msgid "" "The new policies are instances of :class:`~email.policy.EmailPolicy`, and " "add the following additional controls:" msgstr "" -#: whatsnew/3.3.rst:1268 +#: whatsnew/3.3.rst:1269 msgid "refold_source" msgstr "" -#: whatsnew/3.3.rst:1268 +#: whatsnew/3.3.rst:1269 msgid "" "Controls whether or not headers parsed by a :mod:`~email.parser` are " "refolded by the :mod:`~email.generator`. It can be ``none``, ``long``, or " @@ -1819,17 +1819,17 @@ msgid "" "get refolded, and ``all`` means that all lines get refolded." msgstr "" -#: whatsnew/3.3.rst:1277 +#: whatsnew/3.3.rst:1278 msgid "header_factory" msgstr "" -#: whatsnew/3.3.rst:1277 +#: whatsnew/3.3.rst:1278 msgid "" "A callable that take a ``name`` and ``value`` and produces a custom header " "object." msgstr "" -#: whatsnew/3.3.rst:1281 +#: whatsnew/3.3.rst:1282 msgid "" "The ``header_factory`` is the key to the new features provided by the new " "policies. When one of the new policies is used, any header retrieved from a " @@ -1841,7 +1841,7 @@ msgid "" "now do things like this::" msgstr "" -#: whatsnew/3.3.rst:1309 +#: whatsnew/3.3.rst:1310 msgid "" "You will note that the unicode display name is automatically encoded as " "``utf-8`` when the message is serialized, but that when the header is " @@ -1850,22 +1850,22 @@ msgid "" "meth:`~email.header.make_header` functions." msgstr "" -#: whatsnew/3.3.rst:1315 +#: whatsnew/3.3.rst:1316 msgid "You can also create addresses from parts::" msgstr "" -#: whatsnew/3.3.rst:1325 +#: whatsnew/3.3.rst:1326 msgid "Decoding to unicode is done automatically::" msgstr "" -#: whatsnew/3.3.rst:1331 +#: whatsnew/3.3.rst:1332 msgid "" "When you parse a message, you can use the ``addresses`` and ``groups`` " "attributes of the header objects to access the groups and individual " "addresses::" msgstr "" -#: whatsnew/3.3.rst:1340 +#: whatsnew/3.3.rst:1341 msgid "" "In summary, if you use one of the new policies, header manipulation works " "the way it ought to: your application works with unicode strings, and the " @@ -1873,35 +1873,35 @@ msgid "" "RFC standard Content Transfer Encodings." msgstr "" -#: whatsnew/3.3.rst:1346 +#: whatsnew/3.3.rst:1347 msgid "Other API Changes" msgstr "" -#: whatsnew/3.3.rst:1348 +#: whatsnew/3.3.rst:1349 msgid "" "New :class:`~email.parser.BytesHeaderParser`, added to the :mod:`~email." "parser` module to complement :class:`~email.parser.HeaderParser` and " "complete the Bytes API." msgstr "" -#: whatsnew/3.3.rst:1352 +#: whatsnew/3.3.rst:1353 msgid "New utility functions:" msgstr "" -#: whatsnew/3.3.rst:1354 +#: whatsnew/3.3.rst:1355 msgid "" ":func:`~email.utils.format_datetime`: given a :class:`~datetime.datetime`, " "produce a string formatted for use in an email header." msgstr "" -#: whatsnew/3.3.rst:1357 +#: whatsnew/3.3.rst:1358 msgid "" ":func:`~email.utils.parsedate_to_datetime`: given a date string from an " "email header, convert it into an aware :class:`~datetime.datetime`, or a " "naive :class:`~datetime.datetime` if the offset is ``-0000``." msgstr "" -#: whatsnew/3.3.rst:1361 +#: whatsnew/3.3.rst:1362 msgid "" ":func:`~email.utils.localtime`: With no argument, returns the current local " "time as an aware :class:`~datetime.datetime` using the local :class:" @@ -1910,11 +1910,11 @@ msgid "" "`~datetime.timezone`." msgstr "" -#: whatsnew/3.3.rst:1369 +#: whatsnew/3.3.rst:1370 msgid "ftplib" msgstr "" -#: whatsnew/3.3.rst:1371 +#: whatsnew/3.3.rst:1372 msgid "" ":class:`ftplib.FTP` now accepts a ``source_address`` keyword argument to " "specify the ``(host, port)`` to use as the source address in the bind call " @@ -1922,7 +1922,7 @@ msgid "" "issue:`8594`.)" msgstr "" -#: whatsnew/3.3.rst:1376 +#: whatsnew/3.3.rst:1377 msgid "" "The :class:`~ftplib.FTP_TLS` class now provides a new :func:`~ftplib.FTP_TLS." "ccc` function to revert control channel back to plaintext. This can be " @@ -1931,18 +1931,18 @@ msgid "" "in :issue:`12139`.)" msgstr "" -#: whatsnew/3.3.rst:1382 +#: whatsnew/3.3.rst:1383 msgid "" "Added :meth:`ftplib.FTP.mlsd` method which provides a parsable directory " "listing format and deprecates :meth:`ftplib.FTP.nlst` and :meth:`ftplib.FTP." "dir`. (Contributed by Giampaolo Rodolà in :issue:`11072`.)" msgstr "" -#: whatsnew/3.3.rst:1388 +#: whatsnew/3.3.rst:1389 msgid "functools" msgstr "" -#: whatsnew/3.3.rst:1390 +#: whatsnew/3.3.rst:1391 msgid "" "The :func:`functools.lru_cache` decorator now accepts a ``typed`` keyword " "argument (that defaults to ``False`` to ensure that it caches values of " @@ -1950,32 +1950,32 @@ msgid "" "Raymond Hettinger in :issue:`13227`.)" msgstr "" -#: whatsnew/3.3.rst:1397 +#: whatsnew/3.3.rst:1398 msgid "gc" msgstr "" -#: whatsnew/3.3.rst:1399 +#: whatsnew/3.3.rst:1400 msgid "" "It is now possible to register callbacks invoked by the garbage collector " "before and after collection using the new :data:`~gc.callbacks` list." msgstr "" -#: whatsnew/3.3.rst:1404 +#: whatsnew/3.3.rst:1405 msgid "hmac" msgstr "" -#: whatsnew/3.3.rst:1406 +#: whatsnew/3.3.rst:1407 msgid "" "A new :func:`~hmac.compare_digest` function has been added to prevent side " "channel attacks on digests through timing analysis. (Contributed by Nick " "Coghlan and Christian Heimes in :issue:`15061`.)" msgstr "" -#: whatsnew/3.3.rst:1412 +#: whatsnew/3.3.rst:1413 msgid "http" msgstr "" -#: whatsnew/3.3.rst:1414 +#: whatsnew/3.3.rst:1415 msgid "" ":class:`http.server.BaseHTTPRequestHandler` now buffers the headers and " "writes them all at once when :meth:`~http.server.BaseHTTPRequestHandler." @@ -1985,24 +1985,24 @@ msgid "" "`3709`.)" msgstr "" -#: whatsnew/3.3.rst:1420 +#: whatsnew/3.3.rst:1421 msgid "" ":class:`http.server` now produces valid ``HTML 4.01 strict`` output. " "(Contributed by Ezio Melotti in :issue:`13295`.)" msgstr "" -#: whatsnew/3.3.rst:1423 +#: whatsnew/3.3.rst:1424 msgid "" ":class:`http.client.HTTPResponse` now has a :meth:`~http.client.HTTPResponse." "readinto` method, which means it can be used as an :class:`io.RawIOBase` " "class. (Contributed by John Kuhn in :issue:`13464`.)" msgstr "" -#: whatsnew/3.3.rst:1430 +#: whatsnew/3.3.rst:1431 msgid "html" msgstr "" -#: whatsnew/3.3.rst:1432 +#: whatsnew/3.3.rst:1433 msgid "" ":class:`html.parser.HTMLParser` is now able to parse broken markup without " "raising errors, therefore the *strict* argument of the constructor and the :" @@ -2015,7 +2015,7 @@ msgid "" "`12888`, :issue:`7311`.)" msgstr "" -#: whatsnew/3.3.rst:1442 +#: whatsnew/3.3.rst:1443 msgid "" "A new :data:`~html.entities.html5` dictionary that maps HTML5 named " "character references to the equivalent Unicode character(s) (e.g. " @@ -2024,25 +2024,25 @@ msgid "" "(Contributed by Ezio Melotti in :issue:`11113` and :issue:`15156`.)" msgstr "" -#: whatsnew/3.3.rst:1450 +#: whatsnew/3.3.rst:1451 msgid "imaplib" msgstr "" -#: whatsnew/3.3.rst:1452 +#: whatsnew/3.3.rst:1453 msgid "" "The :class:`~imaplib.IMAP4_SSL` constructor now accepts an SSLContext " "parameter to control parameters of the secure channel." msgstr "" -#: whatsnew/3.3.rst:1455 +#: whatsnew/3.3.rst:1456 msgid "(Contributed by Sijin Joseph in :issue:`8808`.)" msgstr "" -#: whatsnew/3.3.rst:1459 +#: whatsnew/3.3.rst:1460 msgid "inspect" msgstr "" -#: whatsnew/3.3.rst:1461 +#: whatsnew/3.3.rst:1462 msgid "" "A new :func:`~inspect.getclosurevars` function has been added. This function " "reports the current binding of all names referenced from the function body " @@ -2050,11 +2050,11 @@ msgid "" "internal state when testing code that relies on stateful closures." msgstr "" -#: whatsnew/3.3.rst:1466 +#: whatsnew/3.3.rst:1467 msgid "(Contributed by Meador Inge and Nick Coghlan in :issue:`13062`.)" msgstr "" -#: whatsnew/3.3.rst:1468 +#: whatsnew/3.3.rst:1469 msgid "" "A new :func:`~inspect.getgeneratorlocals` function has been added. This " "function reports the current binding of local variables in the generator's " @@ -2062,26 +2062,26 @@ msgid "" "generators." msgstr "" -#: whatsnew/3.3.rst:1473 +#: whatsnew/3.3.rst:1474 msgid "(Contributed by Meador Inge in :issue:`15153`.)" msgstr "" -#: whatsnew/3.3.rst:1476 +#: whatsnew/3.3.rst:1477 msgid "io" msgstr "" -#: whatsnew/3.3.rst:1478 +#: whatsnew/3.3.rst:1479 msgid "" "The :func:`~io.open` function has a new ``'x'`` mode that can be used to " "exclusively create a new file, and raise a :exc:`FileExistsError` if the " "file already exists. It is based on the C11 'x' mode to fopen()." msgstr "" -#: whatsnew/3.3.rst:1482 +#: whatsnew/3.3.rst:1483 msgid "(Contributed by David Townshend in :issue:`12760`.)" msgstr "" -#: whatsnew/3.3.rst:1484 +#: whatsnew/3.3.rst:1485 msgid "" "The constructor of the :class:`~io.TextIOWrapper` class has a new " "*write_through* optional argument. If *write_through* is ``True``, calls to :" @@ -2090,28 +2090,28 @@ msgid "" "its underlying binary buffer." msgstr "" -#: whatsnew/3.3.rst:1492 +#: whatsnew/3.3.rst:1493 msgid "itertools" msgstr "" -#: whatsnew/3.3.rst:1494 +#: whatsnew/3.3.rst:1495 msgid "" ":func:`~itertools.accumulate` now takes an optional ``func`` argument for " "providing a user-supplied binary function." msgstr "" -#: whatsnew/3.3.rst:1499 +#: whatsnew/3.3.rst:1500 msgid "logging" msgstr "" -#: whatsnew/3.3.rst:1501 +#: whatsnew/3.3.rst:1502 msgid "" "The :func:`~logging.basicConfig` function now supports an optional " "``handlers`` argument taking an iterable of handlers to be added to the root " "logger." msgstr "" -#: whatsnew/3.3.rst:1504 +#: whatsnew/3.3.rst:1505 msgid "" "A class level attribute :attr:`~logging.handlers.SysLogHandler.append_nul` " "has been added to :class:`~logging.handlers.SysLogHandler` to allow control " @@ -2120,25 +2120,25 @@ msgid "" "log." msgstr "" -#: whatsnew/3.3.rst:1512 +#: whatsnew/3.3.rst:1513 msgid "math" msgstr "" -#: whatsnew/3.3.rst:1514 +#: whatsnew/3.3.rst:1515 msgid "" "The :mod:`math` module has a new function, :func:`~math.log2`, which " "returns the base-2 logarithm of *x*." msgstr "" -#: whatsnew/3.3.rst:1517 +#: whatsnew/3.3.rst:1518 msgid "(Written by Mark Dickinson in :issue:`11888`.)" msgstr "" -#: whatsnew/3.3.rst:1521 +#: whatsnew/3.3.rst:1522 msgid "mmap" msgstr "" -#: whatsnew/3.3.rst:1523 +#: whatsnew/3.3.rst:1524 msgid "" "The :meth:`~mmap.mmap.read` method is now more compatible with other file-" "like objects: if the argument is omitted or specified as ``None``, it " @@ -2146,39 +2146,39 @@ msgid "" "(Contributed by Petri Lehtinen in :issue:`12021`.)" msgstr "" -#: whatsnew/3.3.rst:1530 +#: whatsnew/3.3.rst:1531 msgid "multiprocessing" msgstr "" -#: whatsnew/3.3.rst:1532 +#: whatsnew/3.3.rst:1533 msgid "" "The new :func:`multiprocessing.connection.wait` function allows polling " "multiple objects (such as connections, sockets and pipes) with a timeout. " "(Contributed by Richard Oudkerk in :issue:`12328`.)" msgstr "" -#: whatsnew/3.3.rst:1536 +#: whatsnew/3.3.rst:1537 msgid "" ":class:`multiprocessing.Connection` objects can now be transferred over " "multiprocessing connections. (Contributed by Richard Oudkerk in :issue:" "`4892`.)" msgstr "" -#: whatsnew/3.3.rst:1540 +#: whatsnew/3.3.rst:1541 msgid "" ":class:`multiprocessing.Process` now accepts a ``daemon`` keyword argument " "to override the default behavior of inheriting the ``daemon`` flag from the " "parent process (:issue:`6064`)." msgstr "" -#: whatsnew/3.3.rst:1544 +#: whatsnew/3.3.rst:1545 msgid "" "New attribute :data:`multiprocessing.Process.sentinel` allows a program to " "wait on multiple :class:`~multiprocessing.Process` objects at one time using " "the appropriate OS primitives (for example, :mod:`select` on posix systems)." msgstr "" -#: whatsnew/3.3.rst:1549 +#: whatsnew/3.3.rst:1550 msgid "" "New methods :meth:`multiprocessing.pool.Pool.starmap` and :meth:" "`~multiprocessing.pool.Pool.starmap_async` provide :func:`itertools.starmap` " @@ -2187,26 +2187,26 @@ msgid "" "Schlawack in :issue:`12708`.)" msgstr "" -#: whatsnew/3.3.rst:1558 +#: whatsnew/3.3.rst:1559 msgid "nntplib" msgstr "" -#: whatsnew/3.3.rst:1560 +#: whatsnew/3.3.rst:1561 msgid "" "The :class:`nntplib.NNTP` class now supports the context management protocol " "to unconditionally consume :exc:`socket.error` exceptions and to close the " "NNTP connection when done::" msgstr "" -#: whatsnew/3.3.rst:1571 +#: whatsnew/3.3.rst:1572 msgid "(Contributed by Giampaolo Rodolà in :issue:`9795`.)" msgstr "" -#: whatsnew/3.3.rst:1575 +#: whatsnew/3.3.rst:1576 msgid "os" msgstr "" -#: whatsnew/3.3.rst:1577 +#: whatsnew/3.3.rst:1578 msgid "" "The :mod:`os` module has a new :func:`~os.pipe2` function that makes it " "possible to create a pipe with :const:`~os.O_CLOEXEC` or :const:`~os." @@ -2214,7 +2214,7 @@ msgid "" "conditions in multi-threaded programs." msgstr "" -#: whatsnew/3.3.rst:1582 +#: whatsnew/3.3.rst:1583 msgid "" "The :mod:`os` module has a new :func:`~os.sendfile` function which provides " "an efficient \"zero-copy\" way for copying data from one file (or socket) " @@ -2225,12 +2225,12 @@ msgid "" "socket, e.g. for downloading a file." msgstr "" -#: whatsnew/3.3.rst:1590 +#: whatsnew/3.3.rst:1591 msgid "" "(Patch submitted by Ross Lagerwall and Giampaolo Rodolà in :issue:`10882`.)" msgstr "" -#: whatsnew/3.3.rst:1592 +#: whatsnew/3.3.rst:1593 msgid "" "To avoid race conditions like symlink attacks and issues with temporary " "files and directories, it is more reliable (and also faster) to manipulate " @@ -2239,14 +2239,14 @@ msgid "" "`4761`, :issue:`10755` and :issue:`14626`)." msgstr "" -#: whatsnew/3.3.rst:1598 +#: whatsnew/3.3.rst:1599 msgid "" "The :mod:`os` module has a new :func:`~os.fwalk` function similar to :func:" "`~os.walk` except that it also yields file descriptors referring to the " "directories visited. This is especially useful to avoid symlink races." msgstr "" -#: whatsnew/3.3.rst:1602 +#: whatsnew/3.3.rst:1603 msgid "" "The following functions get new optional *dir_fd* (:ref:`paths relative to " "directory descriptors `) and/or *follow_symlinks* (:ref:`not " @@ -2260,7 +2260,7 @@ msgid "" "`os.supports_follows_symlinks`." msgstr "" -#: whatsnew/3.3.rst:1613 +#: whatsnew/3.3.rst:1614 msgid "" "The following functions now support a file descriptor for their path " "argument: :func:`~os.chdir`, :func:`~os.chmod`, :func:`~os.chown`, :func:" @@ -2269,7 +2269,7 @@ msgid "" "support for this can be checked via the :data:`os.supports_fd` set." msgstr "" -#: whatsnew/3.3.rst:1619 +#: whatsnew/3.3.rst:1620 msgid "" ":func:`~os.access` accepts an ``effective_ids`` keyword argument to turn on " "using the effective uid/gid rather than the real uid/gid in the access " @@ -2277,7 +2277,7 @@ msgid "" "supports_effective_ids` set." msgstr "" -#: whatsnew/3.3.rst:1624 +#: whatsnew/3.3.rst:1625 msgid "" "The :mod:`os` module has two new functions: :func:`~os.getpriority` and :" "func:`~os.setpriority`. They can be used to get or set process niceness/" @@ -2285,11 +2285,11 @@ msgid "" "processes instead of just the current one." msgstr "" -#: whatsnew/3.3.rst:1629 +#: whatsnew/3.3.rst:1630 msgid "(Patch submitted by Giampaolo Rodolà in :issue:`10784`.)" msgstr "" -#: whatsnew/3.3.rst:1631 +#: whatsnew/3.3.rst:1632 msgid "" "The new :func:`os.replace` function allows cross-platform renaming of a file " "with overwriting the destination. With :func:`os.rename`, an existing " @@ -2297,7 +2297,7 @@ msgid "" "Windows. (Contributed by Antoine Pitrou in :issue:`8828`.)" msgstr "" -#: whatsnew/3.3.rst:1637 +#: whatsnew/3.3.rst:1638 msgid "" "The stat family of functions (:func:`~os.stat`, :func:`~os.fstat`, and :func:" "`~os.lstat`) now support reading a file's timestamps with nanosecond " @@ -2306,7 +2306,7 @@ msgid "" "`14127`.)" msgstr "" -#: whatsnew/3.3.rst:1643 +#: whatsnew/3.3.rst:1644 msgid "" "The new :func:`os.get_terminal_size` function queries the size of the " "terminal attached to a file descriptor. See also :func:`shutil." @@ -2314,14 +2314,14 @@ msgid "" "`13609`.)" msgstr "" -#: whatsnew/3.3.rst:1650 +#: whatsnew/3.3.rst:1651 msgid "" "New functions to support Linux extended attributes (:issue:`12720`): :func:" "`~os.getxattr`, :func:`~os.listxattr`, :func:`~os.removexattr`, :func:`~os." "setxattr`." msgstr "" -#: whatsnew/3.3.rst:1654 +#: whatsnew/3.3.rst:1655 msgid "" "New interface to the scheduler. These functions control how a process is " "allocated CPU time by the operating system. New functions: :func:`~os." @@ -2332,90 +2332,90 @@ msgid "" "sched_setscheduler`, :func:`~os.sched_yield`," msgstr "" -#: whatsnew/3.3.rst:1663 +#: whatsnew/3.3.rst:1664 msgid "New functions to control the file system:" msgstr "" -#: whatsnew/3.3.rst:1665 +#: whatsnew/3.3.rst:1666 msgid "" ":func:`~os.posix_fadvise`: Announces an intention to access data in a " "specific pattern thus allowing the kernel to make optimizations." msgstr "" -#: whatsnew/3.3.rst:1667 +#: whatsnew/3.3.rst:1668 msgid "" ":func:`~os.posix_fallocate`: Ensures that enough disk space is allocated for " "a file." msgstr "" -#: whatsnew/3.3.rst:1669 +#: whatsnew/3.3.rst:1670 msgid ":func:`~os.sync`: Force write of everything to disk." msgstr "" -#: whatsnew/3.3.rst:1671 +#: whatsnew/3.3.rst:1672 msgid "Additional new posix functions:" msgstr "" -#: whatsnew/3.3.rst:1673 +#: whatsnew/3.3.rst:1674 msgid "" ":func:`~os.lockf`: Apply, test or remove a POSIX lock on an open file " "descriptor." msgstr "" -#: whatsnew/3.3.rst:1674 +#: whatsnew/3.3.rst:1675 msgid "" ":func:`~os.pread`: Read from a file descriptor at an offset, the file offset " "remains unchanged." msgstr "" -#: whatsnew/3.3.rst:1676 +#: whatsnew/3.3.rst:1677 msgid "" ":func:`~os.pwrite`: Write to a file descriptor from an offset, leaving the " "file offset unchanged." msgstr "" -#: whatsnew/3.3.rst:1678 +#: whatsnew/3.3.rst:1679 msgid "" ":func:`~os.readv`: Read from a file descriptor into a number of writable " "buffers." msgstr "" -#: whatsnew/3.3.rst:1679 +#: whatsnew/3.3.rst:1680 msgid "" ":func:`~os.truncate`: Truncate the file corresponding to *path*, so that it " "is at most *length* bytes in size." msgstr "" -#: whatsnew/3.3.rst:1681 +#: whatsnew/3.3.rst:1682 msgid "" ":func:`~os.waitid`: Wait for the completion of one or more child processes." msgstr "" -#: whatsnew/3.3.rst:1682 +#: whatsnew/3.3.rst:1683 msgid "" ":func:`~os.writev`: Write the contents of *buffers* to a file descriptor, " "where *buffers* is an arbitrary sequence of buffers." msgstr "" -#: whatsnew/3.3.rst:1684 +#: whatsnew/3.3.rst:1685 msgid "" ":func:`~os.getgrouplist` (:issue:`9344`): Return list of group ids that " "specified user belongs to." msgstr "" -#: whatsnew/3.3.rst:1687 +#: whatsnew/3.3.rst:1688 msgid "" ":func:`~os.times` and :func:`~os.uname`: Return type changed from a tuple to " "a tuple-like object with named attributes." msgstr "" -#: whatsnew/3.3.rst:1690 +#: whatsnew/3.3.rst:1691 msgid "" "Some platforms now support additional constants for the :func:`~os.lseek` " "function, such as ``os.SEEK_HOLE`` and ``os.SEEK_DATA``." msgstr "" -#: whatsnew/3.3.rst:1693 +#: whatsnew/3.3.rst:1694 msgid "" "New constants :const:`~os.RTLD_LAZY`, :const:`~os.RTLD_NOW`, :const:`~os." "RTLD_GLOBAL`, :const:`~os.RTLD_LOCAL`, :const:`~os.RTLD_NODELETE`, :const:" @@ -2425,70 +2425,70 @@ msgid "" "mod:`DLFCN`. (Contributed by Victor Stinner in :issue:`13226`.)" msgstr "" -#: whatsnew/3.3.rst:1701 +#: whatsnew/3.3.rst:1702 msgid "" ":func:`os.symlink` now accepts (and ignores) the ``target_is_directory`` " "keyword argument on non-Windows platforms, to ease cross-platform support." msgstr "" -#: whatsnew/3.3.rst:1706 +#: whatsnew/3.3.rst:1707 msgid "pdb" msgstr "" -#: whatsnew/3.3.rst:1708 +#: whatsnew/3.3.rst:1709 msgid "" "Tab-completion is now available not only for command names, but also their " "arguments. For example, for the ``break`` command, function and file names " "are completed." msgstr "" -#: whatsnew/3.3.rst:1712 +#: whatsnew/3.3.rst:1713 msgid "(Contributed by Georg Brandl in :issue:`14210`)" msgstr "" -#: whatsnew/3.3.rst:1716 +#: whatsnew/3.3.rst:1717 msgid "pickle" msgstr "" -#: whatsnew/3.3.rst:1718 +#: whatsnew/3.3.rst:1719 msgid "" ":class:`pickle.Pickler` objects now have an optional :attr:`~pickle.Pickler." "dispatch_table` attribute allowing per-pickler reduction functions to be set." msgstr "" -#: whatsnew/3.3.rst:1722 +#: whatsnew/3.3.rst:1723 msgid "(Contributed by Richard Oudkerk in :issue:`14166`.)" msgstr "" -#: whatsnew/3.3.rst:1726 +#: whatsnew/3.3.rst:1727 msgid "pydoc" msgstr "" -#: whatsnew/3.3.rst:1728 +#: whatsnew/3.3.rst:1729 msgid "" "The Tk GUI and the :func:`~pydoc.serve` function have been removed from the :" "mod:`pydoc` module: ``pydoc -g`` and :func:`~pydoc.serve` have been " "deprecated in Python 3.2." msgstr "" -#: whatsnew/3.3.rst:1734 +#: whatsnew/3.3.rst:1735 msgid "re" msgstr "" -#: whatsnew/3.3.rst:1736 +#: whatsnew/3.3.rst:1737 msgid "" ":class:`str` regular expressions now support ``\\u`` and ``\\U`` escapes." msgstr "" -#: whatsnew/3.3.rst:1738 +#: whatsnew/3.3.rst:1739 msgid "(Contributed by Serhiy Storchaka in :issue:`3665`.)" msgstr "" -#: whatsnew/3.3.rst:1742 +#: whatsnew/3.3.rst:1743 msgid "sched" msgstr "" -#: whatsnew/3.3.rst:1744 +#: whatsnew/3.3.rst:1745 msgid "" ":meth:`~sched.scheduler.run` now accepts a *blocking* parameter which when " "set to false makes the method execute the scheduled events due to expire " @@ -2497,49 +2497,49 @@ msgid "" "(Contributed by Giampaolo Rodolà in :issue:`13449`.)" msgstr "" -#: whatsnew/3.3.rst:1750 +#: whatsnew/3.3.rst:1751 msgid "" ":class:`~sched.scheduler` class can now be safely used in multi-threaded " "environments. (Contributed by Josiah Carlson and Giampaolo Rodolà in :issue:" "`8684`.)" msgstr "" -#: whatsnew/3.3.rst:1754 +#: whatsnew/3.3.rst:1755 msgid "" "*timefunc* and *delayfunct* parameters of :class:`~sched.scheduler` class " "constructor are now optional and defaults to :func:`time.time` and :func:" "`time.sleep` respectively. (Contributed by Chris Clark in :issue:`13245`.)" msgstr "" -#: whatsnew/3.3.rst:1759 +#: whatsnew/3.3.rst:1760 msgid "" ":meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs` " "*argument* parameter is now optional. (Contributed by Chris Clark in :issue:" "`13245`.)" msgstr "" -#: whatsnew/3.3.rst:1763 +#: whatsnew/3.3.rst:1764 msgid "" ":meth:`~sched.scheduler.enter` and :meth:`~sched.scheduler.enterabs` now " "accept a *kwargs* parameter. (Contributed by Chris Clark in :issue:`13245`.)" msgstr "" -#: whatsnew/3.3.rst:1769 +#: whatsnew/3.3.rst:1770 msgid "select" msgstr "" -#: whatsnew/3.3.rst:1771 +#: whatsnew/3.3.rst:1772 msgid "" "Solaris and derivative platforms have a new class :class:`select.devpoll` " "for high performance asynchronous sockets via :file:`/dev/poll`. " "(Contributed by Jesús Cea Avión in :issue:`6397`.)" msgstr "" -#: whatsnew/3.3.rst:1777 +#: whatsnew/3.3.rst:1778 msgid "shlex" msgstr "" -#: whatsnew/3.3.rst:1779 +#: whatsnew/3.3.rst:1780 msgid "" "The previously undocumented helper function ``quote`` from the :mod:`pipes` " "modules has been moved to the :mod:`shlex` module and documented. :func:" @@ -2547,35 +2547,35 @@ msgid "" "otherwise given special meaning by the shell." msgstr "" -#: whatsnew/3.3.rst:1786 +#: whatsnew/3.3.rst:1787 msgid "shutil" msgstr "" -#: whatsnew/3.3.rst:1788 +#: whatsnew/3.3.rst:1789 msgid "New functions:" msgstr "" -#: whatsnew/3.3.rst:1790 +#: whatsnew/3.3.rst:1791 msgid "" ":func:`~shutil.disk_usage`: provides total, used and free disk space " "statistics. (Contributed by Giampaolo Rodolà in :issue:`12442`.)" msgstr "" -#: whatsnew/3.3.rst:1792 +#: whatsnew/3.3.rst:1793 msgid "" ":func:`~shutil.chown`: allows one to change user and/or group of the given " "path also specifying the user/group names and not only their numeric ids. " "(Contributed by Sandro Tosi in :issue:`12191`.)" msgstr "" -#: whatsnew/3.3.rst:1795 +#: whatsnew/3.3.rst:1796 msgid "" ":func:`shutil.get_terminal_size`: returns the size of the terminal window to " "which the interpreter is attached. (Contributed by Zbigniew Jędrzejewski-" "Szmek in :issue:`13609`.)" msgstr "" -#: whatsnew/3.3.rst:1799 +#: whatsnew/3.3.rst:1800 msgid "" ":func:`~shutil.copy2` and :func:`~shutil.copystat` now preserve file " "timestamps with nanosecond precision on platforms that support it. They also " @@ -2583,7 +2583,7 @@ msgid "" "Hastings in :issue:`14127` and :issue:`15238`.)" msgstr "" -#: whatsnew/3.3.rst:1804 +#: whatsnew/3.3.rst:1805 msgid "" "Several functions now take an optional ``symlinks`` argument: when that " "parameter is true, symlinks aren't dereferenced and the operation instead " @@ -2591,7 +2591,7 @@ msgid "" "Hynek Schlawack in :issue:`12715`.)" msgstr "" -#: whatsnew/3.3.rst:1809 +#: whatsnew/3.3.rst:1810 msgid "" "When copying files to a different file system, :func:`~shutil.move` now " "handles symlinks the way the posix ``mv`` command does, recreating the " @@ -2600,7 +2600,7 @@ msgid "" "the ``dst`` argument as its result." msgstr "" -#: whatsnew/3.3.rst:1815 +#: whatsnew/3.3.rst:1816 msgid "" ":func:`~shutil.rmtree` is now resistant to symlink attacks on platforms " "which support the new ``dir_fd`` parameter in :func:`os.open` and :func:`os." @@ -2608,80 +2608,80 @@ msgid "" "`4489`.)" msgstr "" -#: whatsnew/3.3.rst:1822 +#: whatsnew/3.3.rst:1823 msgid "signal" msgstr "" -#: whatsnew/3.3.rst:1824 +#: whatsnew/3.3.rst:1825 msgid "The :mod:`signal` module has new functions:" msgstr "" -#: whatsnew/3.3.rst:1826 +#: whatsnew/3.3.rst:1827 msgid "" ":func:`~signal.pthread_sigmask`: fetch and/or change the signal mask of the " "calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`);" msgstr "" -#: whatsnew/3.3.rst:1828 +#: whatsnew/3.3.rst:1829 msgid ":func:`~signal.pthread_kill`: send a signal to a thread;" msgstr "" -#: whatsnew/3.3.rst:1829 +#: whatsnew/3.3.rst:1830 msgid ":func:`~signal.sigpending`: examine pending functions;" msgstr "" -#: whatsnew/3.3.rst:1830 +#: whatsnew/3.3.rst:1831 msgid ":func:`~signal.sigwait`: wait a signal;" msgstr "" -#: whatsnew/3.3.rst:1831 +#: whatsnew/3.3.rst:1832 msgid "" ":func:`~signal.sigwaitinfo`: wait for a signal, returning detailed " "information about it;" msgstr "" -#: whatsnew/3.3.rst:1833 +#: whatsnew/3.3.rst:1834 msgid "" ":func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a " "timeout." msgstr "" -#: whatsnew/3.3.rst:1836 +#: whatsnew/3.3.rst:1837 msgid "" "The signal handler writes the signal number as a single byte instead of a " "nul byte into the wakeup file descriptor. So it is possible to wait more " "than one signal and know which signals were raised." msgstr "" -#: whatsnew/3.3.rst:1840 +#: whatsnew/3.3.rst:1841 msgid "" ":func:`signal.signal` and :func:`signal.siginterrupt` raise an OSError, " "instead of a RuntimeError: OSError has an errno attribute." msgstr "" -#: whatsnew/3.3.rst:1845 +#: whatsnew/3.3.rst:1846 msgid "smtpd" msgstr "" -#: whatsnew/3.3.rst:1847 +#: whatsnew/3.3.rst:1848 msgid "" "The :mod:`smtpd` module now supports :rfc:`5321` (extended SMTP) and :rfc:" "`1870` (size extension). Per the standard, these extensions are enabled if " "and only if the client initiates the session with an ``EHLO`` command." msgstr "" -#: whatsnew/3.3.rst:1851 +#: whatsnew/3.3.rst:1852 msgid "" "(Initial ``ELHO`` support by Alberto Trevino. Size extension by Juhana " "Jauhiainen. Substantial additional work on the patch contributed by Michele " "Orrù and Dan Boswell. :issue:`8739`)" msgstr "" -#: whatsnew/3.3.rst:1857 +#: whatsnew/3.3.rst:1858 msgid "smtplib" msgstr "" -#: whatsnew/3.3.rst:1859 +#: whatsnew/3.3.rst:1860 msgid "" "The :class:`~smtplib.SMTP`, :class:`~smtplib.SMTP_SSL`, and :class:`~smtplib." "LMTP` classes now accept a ``source_address`` keyword argument to specify " @@ -2690,62 +2690,62 @@ msgid "" "`11281`.)" msgstr "" -#: whatsnew/3.3.rst:1865 +#: whatsnew/3.3.rst:1866 msgid "" ":class:`~smtplib.SMTP` now supports the context management protocol, " "allowing an ``SMTP`` instance to be used in a ``with`` statement. " "(Contributed by Giampaolo Rodolà in :issue:`11289`.)" msgstr "" -#: whatsnew/3.3.rst:1869 +#: whatsnew/3.3.rst:1870 msgid "" "The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP." "starttls` method now accept an SSLContext parameter to control parameters of " "the secure channel. (Contributed by Kasun Herath in :issue:`8809`.)" msgstr "" -#: whatsnew/3.3.rst:1875 +#: whatsnew/3.3.rst:1876 msgid "socket" msgstr "" -#: whatsnew/3.3.rst:1877 +#: whatsnew/3.3.rst:1878 msgid "" "The :class:`~socket.socket` class now exposes additional methods to process " "ancillary data when supported by the underlying platform:" msgstr "" -#: whatsnew/3.3.rst:1880 +#: whatsnew/3.3.rst:1881 msgid ":func:`~socket.socket.sendmsg`" msgstr "" -#: whatsnew/3.3.rst:1881 +#: whatsnew/3.3.rst:1882 msgid ":func:`~socket.socket.recvmsg`" msgstr "" -#: whatsnew/3.3.rst:1882 +#: whatsnew/3.3.rst:1883 msgid ":func:`~socket.socket.recvmsg_into`" msgstr "" -#: whatsnew/3.3.rst:1884 +#: whatsnew/3.3.rst:1885 msgid "" "(Contributed by David Watson in :issue:`6560`, based on an earlier patch by " "Heiko Wundram)" msgstr "" -#: whatsnew/3.3.rst:1887 +#: whatsnew/3.3.rst:1888 msgid "" "The :class:`~socket.socket` class now supports the PF_CAN protocol family " "(https://en.wikipedia.org/wiki/Socketcan), on Linux (https://lwn.net/" "Articles/253425)." msgstr "" -#: whatsnew/3.3.rst:1891 +#: whatsnew/3.3.rst:1892 msgid "" "(Contributed by Matthias Fuchs, updated by Tiago Gonçalves in :issue:" "`10141`.)" msgstr "" -#: whatsnew/3.3.rst:1893 +#: whatsnew/3.3.rst:1894 msgid "" "The :class:`~socket.socket` class now supports the PF_RDS protocol family " "(https://en.wikipedia.org/wiki/Reliable_Datagram_Sockets and `https://oss." @@ -2753,24 +2753,24 @@ msgid "" "oss.oracle.com/projects/rds/>`__)." msgstr "" -#: whatsnew/3.3.rst:1897 +#: whatsnew/3.3.rst:1898 msgid "" "The :class:`~socket.socket` class now supports the ``PF_SYSTEM`` protocol " "family on OS X. (Contributed by Michael Goderbauer in :issue:`13777`.)" msgstr "" -#: whatsnew/3.3.rst:1900 +#: whatsnew/3.3.rst:1901 msgid "" "New function :func:`~socket.sethostname` allows the hostname to be set on " "Unix systems if the calling process has sufficient privileges. (Contributed " "by Ross Lagerwall in :issue:`10866`.)" msgstr "" -#: whatsnew/3.3.rst:1906 +#: whatsnew/3.3.rst:1907 msgid "socketserver" msgstr "" -#: whatsnew/3.3.rst:1908 +#: whatsnew/3.3.rst:1909 msgid "" ":class:`~socketserver.BaseServer` now has an overridable method :meth:" "`~socketserver.BaseServer.service_actions` that is called by the :meth:" @@ -2779,54 +2779,54 @@ msgid "" "processes. (Contributed by Justin Warkentin in :issue:`11109`.)" msgstr "" -#: whatsnew/3.3.rst:1916 +#: whatsnew/3.3.rst:1917 msgid "sqlite3" msgstr "" -#: whatsnew/3.3.rst:1918 +#: whatsnew/3.3.rst:1919 msgid "" "New :class:`sqlite3.Connection` method :meth:`~sqlite3.Connection." "set_trace_callback` can be used to capture a trace of all sql commands " "processed by sqlite. (Contributed by Torsten Landschoff in :issue:`11688`.)" msgstr "" -#: whatsnew/3.3.rst:1925 +#: whatsnew/3.3.rst:1926 msgid "ssl" msgstr "" -#: whatsnew/3.3.rst:1927 +#: whatsnew/3.3.rst:1928 msgid "The :mod:`ssl` module has two new random generation functions:" msgstr "" -#: whatsnew/3.3.rst:1929 +#: whatsnew/3.3.rst:1930 msgid "" ":func:`~ssl.RAND_bytes`: generate cryptographically strong pseudo-random " "bytes." msgstr "" -#: whatsnew/3.3.rst:1931 +#: whatsnew/3.3.rst:1932 msgid ":func:`~ssl.RAND_pseudo_bytes`: generate pseudo-random bytes." msgstr "" -#: whatsnew/3.3.rst:1933 +#: whatsnew/3.3.rst:1934 msgid "(Contributed by Victor Stinner in :issue:`12049`.)" msgstr "" -#: whatsnew/3.3.rst:1935 +#: whatsnew/3.3.rst:1936 msgid "" "The :mod:`ssl` module now exposes a finer-grained exception hierarchy in " "order to make it easier to inspect the various kinds of errors. (Contributed " "by Antoine Pitrou in :issue:`11183`.)" msgstr "" -#: whatsnew/3.3.rst:1939 +#: whatsnew/3.3.rst:1940 msgid "" ":meth:`~ssl.SSLContext.load_cert_chain` now accepts a *password* argument to " "be used if the private key is encrypted. (Contributed by Adam Simpkins in :" "issue:`12803`.)" msgstr "" -#: whatsnew/3.3.rst:1943 +#: whatsnew/3.3.rst:1944 msgid "" "Diffie-Hellman key exchange, both regular and Elliptic Curve-based, is now " "supported through the :meth:`~ssl.SSLContext.load_dh_params` and :meth:`~ssl." @@ -2834,14 +2834,14 @@ msgid "" "`13626` and :issue:`13627`.)" msgstr "" -#: whatsnew/3.3.rst:1948 +#: whatsnew/3.3.rst:1949 msgid "" "SSL sockets have a new :meth:`~ssl.SSLSocket.get_channel_binding` method " "allowing the implementation of certain authentication mechanisms such as " "SCRAM-SHA-1-PLUS. (Contributed by Jacek Konieczny in :issue:`12551`.)" msgstr "" -#: whatsnew/3.3.rst:1952 +#: whatsnew/3.3.rst:1953 msgid "" "You can query the SSL compression algorithm used by an SSL socket, thanks to " "its new :meth:`~ssl.SSLSocket.compression` method. The new attribute :const:" @@ -2849,123 +2849,123 @@ msgid "" "Antoine Pitrou in :issue:`13634`.)" msgstr "" -#: whatsnew/3.3.rst:1957 +#: whatsnew/3.3.rst:1958 msgid "" "Support has been added for the Next Protocol Negotiation extension using " "the :meth:`ssl.SSLContext.set_npn_protocols` method. (Contributed by Colin " "Marc in :issue:`14204`.)" msgstr "" -#: whatsnew/3.3.rst:1961 +#: whatsnew/3.3.rst:1962 msgid "" "SSL errors can now be introspected more easily thanks to :attr:`~ssl." "SSLError.library` and :attr:`~ssl.SSLError.reason` attributes. (Contributed " "by Antoine Pitrou in :issue:`14837`.)" msgstr "" -#: whatsnew/3.3.rst:1965 +#: whatsnew/3.3.rst:1966 msgid "" "The :func:`~ssl.get_server_certificate` function now supports IPv6. " "(Contributed by Charles-François Natali in :issue:`11811`.)" msgstr "" -#: whatsnew/3.3.rst:1968 +#: whatsnew/3.3.rst:1969 msgid "" "New attribute :const:`~ssl.OP_CIPHER_SERVER_PREFERENCE` allows setting SSLv3 " "server sockets to use the server's cipher ordering preference rather than " "the client's (:issue:`13635`)." msgstr "" -#: whatsnew/3.3.rst:1974 +#: whatsnew/3.3.rst:1975 msgid "stat" msgstr "" -#: whatsnew/3.3.rst:1976 +#: whatsnew/3.3.rst:1977 msgid "" "The undocumented tarfile.filemode function has been moved to :func:`stat." "filemode`. It can be used to convert a file's mode to a string of the form '-" "rwxrwxrwx'." msgstr "" -#: whatsnew/3.3.rst:1980 +#: whatsnew/3.3.rst:1981 msgid "(Contributed by Giampaolo Rodolà in :issue:`14807`.)" msgstr "" -#: whatsnew/3.3.rst:1984 +#: whatsnew/3.3.rst:1985 msgid "struct" msgstr "" -#: whatsnew/3.3.rst:1986 +#: whatsnew/3.3.rst:1987 msgid "" "The :mod:`struct` module now supports :c:type:`ssize_t` and :c:type:`size_t` " "via the new codes ``n`` and ``N``, respectively. (Contributed by Antoine " "Pitrou in :issue:`3163`.)" msgstr "" -#: whatsnew/3.3.rst:1992 +#: whatsnew/3.3.rst:1993 msgid "subprocess" msgstr "" -#: whatsnew/3.3.rst:1994 +#: whatsnew/3.3.rst:1995 msgid "" "Command strings can now be bytes objects on posix platforms. (Contributed " "by Victor Stinner in :issue:`8513`.)" msgstr "" -#: whatsnew/3.3.rst:1997 +#: whatsnew/3.3.rst:1998 msgid "" "A new constant :const:`~subprocess.DEVNULL` allows suppressing output in a " "platform-independent fashion. (Contributed by Ross Lagerwall in :issue:" "`5870`.)" msgstr "" -#: whatsnew/3.3.rst:2003 +#: whatsnew/3.3.rst:2004 msgid "sys" msgstr "" -#: whatsnew/3.3.rst:2005 +#: whatsnew/3.3.rst:2006 msgid "" "The :mod:`sys` module has a new :data:`~sys.thread_info` :term:`named tuple` " "holding information about the thread implementation (:issue:`11223`)." msgstr "" -#: whatsnew/3.3.rst:2011 +#: whatsnew/3.3.rst:2012 msgid "tarfile" msgstr "" -#: whatsnew/3.3.rst:2013 +#: whatsnew/3.3.rst:2014 msgid "" ":mod:`tarfile` now supports ``lzma`` encoding via the :mod:`lzma` module. " "(Contributed by Lars Gustäbel in :issue:`5689`.)" msgstr "" -#: whatsnew/3.3.rst:2018 +#: whatsnew/3.3.rst:2019 msgid "tempfile" msgstr "" -#: whatsnew/3.3.rst:2020 +#: whatsnew/3.3.rst:2021 msgid "" ":class:`tempfile.SpooledTemporaryFile`\\'s :meth:`~tempfile." "SpooledTemporaryFile.truncate` method now accepts a ``size`` parameter. " "(Contributed by Ryan Kelly in :issue:`9957`.)" msgstr "" -#: whatsnew/3.3.rst:2026 +#: whatsnew/3.3.rst:2027 msgid "textwrap" msgstr "" -#: whatsnew/3.3.rst:2028 +#: whatsnew/3.3.rst:2029 msgid "" "The :mod:`textwrap` module has a new :func:`~textwrap.indent` that makes it " "straightforward to add a common prefix to selected lines in a block of text " "(:issue:`13857`)." msgstr "" -#: whatsnew/3.3.rst:2034 +#: whatsnew/3.3.rst:2035 msgid "threading" msgstr "" -#: whatsnew/3.3.rst:2036 +#: whatsnew/3.3.rst:2037 msgid "" ":class:`threading.Condition`, :class:`threading.Semaphore`, :class:" "`threading.BoundedSemaphore`, :class:`threading.Event`, and :class:" @@ -2974,14 +2974,14 @@ msgid "" "Araujo in :issue:`10968`.)" msgstr "" -#: whatsnew/3.3.rst:2042 +#: whatsnew/3.3.rst:2043 msgid "" "The :class:`threading.Thread` constructor now accepts a ``daemon`` keyword " "argument to override the default behavior of inheriting the ``daemon`` flag " "value from the parent thread (:issue:`6064`)." msgstr "" -#: whatsnew/3.3.rst:2046 +#: whatsnew/3.3.rst:2047 msgid "" "The formerly private function ``_thread.get_ident`` is now available as the " "public function :func:`threading.get_ident`. This eliminates several cases " @@ -2990,76 +2990,76 @@ msgid "" "public interface." msgstr "" -#: whatsnew/3.3.rst:2054 +#: whatsnew/3.3.rst:2055 msgid "time" msgstr "" -#: whatsnew/3.3.rst:2056 +#: whatsnew/3.3.rst:2057 msgid "The :pep:`418` added new functions to the :mod:`time` module:" msgstr "" -#: whatsnew/3.3.rst:2058 +#: whatsnew/3.3.rst:2059 msgid ":func:`~time.get_clock_info`: Get information on a clock." msgstr "" -#: whatsnew/3.3.rst:2059 +#: whatsnew/3.3.rst:2060 msgid "" ":func:`~time.monotonic`: Monotonic clock (cannot go backward), not affected " "by system clock updates." msgstr "" -#: whatsnew/3.3.rst:2061 +#: whatsnew/3.3.rst:2062 msgid "" ":func:`~time.perf_counter`: Performance counter with the highest available " "resolution to measure a short duration." msgstr "" -#: whatsnew/3.3.rst:2063 +#: whatsnew/3.3.rst:2064 msgid "" ":func:`~time.process_time`: Sum of the system and user CPU time of the " "current process." msgstr "" -#: whatsnew/3.3.rst:2066 +#: whatsnew/3.3.rst:2067 msgid "Other new functions:" msgstr "" -#: whatsnew/3.3.rst:2068 +#: whatsnew/3.3.rst:2069 msgid "" ":func:`~time.clock_getres`, :func:`~time.clock_gettime` and :func:`~time." "clock_settime` functions with ``CLOCK_xxx`` constants. (Contributed by " "Victor Stinner in :issue:`10278`.)" msgstr "" -#: whatsnew/3.3.rst:2072 +#: whatsnew/3.3.rst:2073 msgid "" "To improve cross platform consistency, :func:`~time.sleep` now raises a :exc:" "`ValueError` when passed a negative sleep value. Previously this was an " "error on posix, but produced an infinite sleep on Windows." msgstr "" -#: whatsnew/3.3.rst:2078 +#: whatsnew/3.3.rst:2079 msgid "types" msgstr "" -#: whatsnew/3.3.rst:2080 +#: whatsnew/3.3.rst:2081 msgid "" "Add a new :class:`types.MappingProxyType` class: Read-only proxy of a " "mapping. (:issue:`14386`)" msgstr "" -#: whatsnew/3.3.rst:2084 +#: whatsnew/3.3.rst:2085 msgid "" "The new functions :func:`types.new_class` and :func:`types.prepare_class` " "provide support for :pep:`3115` compliant dynamic type creation. (:issue:" "`14588`)" msgstr "" -#: whatsnew/3.3.rst:2089 +#: whatsnew/3.3.rst:2090 msgid "unittest" msgstr "" -#: whatsnew/3.3.rst:2091 +#: whatsnew/3.3.rst:2092 msgid "" ":meth:`.assertRaises`, :meth:`.assertRaisesRegex`, :meth:`.assertWarns`, " "and :meth:`.assertWarnsRegex` now accept a keyword argument *msg* when used " @@ -3067,32 +3067,32 @@ msgid "" "issue:`10775`.)" msgstr "" -#: whatsnew/3.3.rst:2096 +#: whatsnew/3.3.rst:2097 msgid "" ":meth:`unittest.TestCase.run` now returns the :class:`~unittest.TestResult` " "object." msgstr "" -#: whatsnew/3.3.rst:2101 +#: whatsnew/3.3.rst:2102 msgid "urllib" msgstr "" -#: whatsnew/3.3.rst:2103 +#: whatsnew/3.3.rst:2104 msgid "" "The :class:`~urllib.request.Request` class, now accepts a *method* argument " "used by :meth:`~urllib.request.Request.get_method` to determine what HTTP " "method should be used. For example, this will send a ``'HEAD'`` request::" msgstr "" -#: whatsnew/3.3.rst:2109 +#: whatsnew/3.3.rst:2110 msgid "(:issue:`1673007`)" msgstr "" -#: whatsnew/3.3.rst:2113 +#: whatsnew/3.3.rst:2114 msgid "webbrowser" msgstr "" -#: whatsnew/3.3.rst:2115 +#: whatsnew/3.3.rst:2116 msgid "" "The :mod:`webbrowser` module supports more \"browsers\": Google Chrome " "(named :program:`chrome`, :program:`chromium`, :program:`chrome-browser` or :" @@ -3103,11 +3103,11 @@ msgid "" "latter by Matthias Klose in :issue:`14493`.)" msgstr "" -#: whatsnew/3.3.rst:2125 +#: whatsnew/3.3.rst:2126 msgid "xml.etree.ElementTree" msgstr "" -#: whatsnew/3.3.rst:2127 +#: whatsnew/3.3.rst:2128 msgid "" "The :mod:`xml.etree.ElementTree` module now imports its C accelerator by " "default; there is no longer a need to explicitly import :mod:`xml.etree." @@ -3118,252 +3118,252 @@ msgid "" "detailed reference." msgstr "" -#: whatsnew/3.3.rst:2137 +#: whatsnew/3.3.rst:2138 msgid "zlib" msgstr "" -#: whatsnew/3.3.rst:2139 +#: whatsnew/3.3.rst:2140 msgid "" "New attribute :attr:`zlib.Decompress.eof` makes it possible to distinguish " "between a properly formed compressed stream and an incomplete or truncated " "one. (Contributed by Nadeem Vawda in :issue:`12646`.)" msgstr "" -#: whatsnew/3.3.rst:2143 +#: whatsnew/3.3.rst:2144 msgid "" "New attribute :const:`zlib.ZLIB_RUNTIME_VERSION` reports the version string " "of the underlying ``zlib`` library that is loaded at runtime. (Contributed " "by Torsten Landschoff in :issue:`12306`.)" msgstr "" -#: whatsnew/3.3.rst:2149 +#: whatsnew/3.3.rst:2150 msgid "Optimizations" msgstr "" -#: whatsnew/3.3.rst:2151 +#: whatsnew/3.3.rst:2152 msgid "Major performance enhancements have been added:" msgstr "" -#: whatsnew/3.3.rst:2153 +#: whatsnew/3.3.rst:2154 msgid "" "Thanks to :pep:`393`, some operations on Unicode strings have been optimized:" msgstr "" -#: whatsnew/3.3.rst:2155 +#: whatsnew/3.3.rst:2156 msgid "the memory footprint is divided by 2 to 4 depending on the text" msgstr "" -#: whatsnew/3.3.rst:2156 +#: whatsnew/3.3.rst:2157 msgid "" "encode an ASCII string to UTF-8 doesn't need to encode characters anymore, " "the UTF-8 representation is shared with the ASCII representation" msgstr "" -#: whatsnew/3.3.rst:2158 +#: whatsnew/3.3.rst:2159 msgid "the UTF-8 encoder has been optimized" msgstr "" -#: whatsnew/3.3.rst:2159 +#: whatsnew/3.3.rst:2160 msgid "" "repeating a single ASCII letter and getting a substring of an ASCII string " "is 4 times faster" msgstr "" -#: whatsnew/3.3.rst:2162 +#: whatsnew/3.3.rst:2163 msgid "UTF-8 is now 2x to 4x faster. UTF-16 encoding is now up to 10x faster." msgstr "" -#: whatsnew/3.3.rst:2164 +#: whatsnew/3.3.rst:2165 msgid "" "(Contributed by Serhiy Storchaka, :issue:`14624`, :issue:`14738` and :issue:" "`15026`.)" msgstr "" -#: whatsnew/3.3.rst:2169 +#: whatsnew/3.3.rst:2170 msgid "Build and C API Changes" msgstr "" -#: whatsnew/3.3.rst:2171 +#: whatsnew/3.3.rst:2172 msgid "Changes to Python's build process and to the C API include:" msgstr "" -#: whatsnew/3.3.rst:2173 +#: whatsnew/3.3.rst:2174 msgid "New :pep:`3118` related function:" msgstr "" -#: whatsnew/3.3.rst:2175 +#: whatsnew/3.3.rst:2176 msgid ":c:func:`PyMemoryView_FromMemory`" msgstr "" -#: whatsnew/3.3.rst:2177 +#: whatsnew/3.3.rst:2178 msgid ":pep:`393` added new Unicode types, macros and functions:" msgstr "" -#: whatsnew/3.3.rst:2179 +#: whatsnew/3.3.rst:2180 msgid "High-level API:" msgstr "" -#: whatsnew/3.3.rst:2181 +#: whatsnew/3.3.rst:2182 msgid ":c:func:`PyUnicode_CopyCharacters`" msgstr "" -#: whatsnew/3.3.rst:2182 +#: whatsnew/3.3.rst:2183 msgid ":c:func:`PyUnicode_FindChar`" msgstr "" -#: whatsnew/3.3.rst:2183 +#: whatsnew/3.3.rst:2184 msgid ":c:func:`PyUnicode_GetLength`, :c:macro:`PyUnicode_GET_LENGTH`" msgstr "" -#: whatsnew/3.3.rst:2184 +#: whatsnew/3.3.rst:2185 msgid ":c:func:`PyUnicode_New`" msgstr "" -#: whatsnew/3.3.rst:2185 +#: whatsnew/3.3.rst:2186 msgid ":c:func:`PyUnicode_Substring`" msgstr "" -#: whatsnew/3.3.rst:2186 +#: whatsnew/3.3.rst:2187 msgid ":c:func:`PyUnicode_ReadChar`, :c:func:`PyUnicode_WriteChar`" msgstr "" -#: whatsnew/3.3.rst:2188 +#: whatsnew/3.3.rst:2189 msgid "Low-level API:" msgstr "" -#: whatsnew/3.3.rst:2190 +#: whatsnew/3.3.rst:2191 msgid ":c:type:`Py_UCS1`, :c:type:`Py_UCS2`, :c:type:`Py_UCS4` types" msgstr "" -#: whatsnew/3.3.rst:2191 +#: whatsnew/3.3.rst:2192 msgid ":c:type:`PyASCIIObject` and :c:type:`PyCompactUnicodeObject` structures" msgstr "" -#: whatsnew/3.3.rst:2192 +#: whatsnew/3.3.rst:2193 msgid ":c:macro:`PyUnicode_READY`" msgstr "" -#: whatsnew/3.3.rst:2193 +#: whatsnew/3.3.rst:2194 msgid ":c:func:`PyUnicode_FromKindAndData`" msgstr "" -#: whatsnew/3.3.rst:2194 +#: whatsnew/3.3.rst:2195 msgid ":c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsUCS4Copy`" msgstr "" -#: whatsnew/3.3.rst:2195 +#: whatsnew/3.3.rst:2196 msgid "" ":c:macro:`PyUnicode_DATA`, :c:macro:`PyUnicode_1BYTE_DATA`, :c:macro:" "`PyUnicode_2BYTE_DATA`, :c:macro:`PyUnicode_4BYTE_DATA`" msgstr "" -#: whatsnew/3.3.rst:2197 +#: whatsnew/3.3.rst:2198 msgid "" ":c:macro:`PyUnicode_KIND` with :c:enum:`PyUnicode_Kind` enum: :c:data:`!" "PyUnicode_WCHAR_KIND`, :c:data:`PyUnicode_1BYTE_KIND`, :c:data:" "`PyUnicode_2BYTE_KIND`, :c:data:`PyUnicode_4BYTE_KIND`" msgstr "" -#: whatsnew/3.3.rst:2200 +#: whatsnew/3.3.rst:2201 msgid "" ":c:macro:`PyUnicode_READ`, :c:macro:`PyUnicode_READ_CHAR`, :c:macro:" "`PyUnicode_WRITE`" msgstr "" -#: whatsnew/3.3.rst:2201 +#: whatsnew/3.3.rst:2202 msgid ":c:macro:`PyUnicode_MAX_CHAR_VALUE`" msgstr "" -#: whatsnew/3.3.rst:2203 +#: whatsnew/3.3.rst:2204 msgid "" ":c:macro:`PyArg_ParseTuple` now accepts a :class:`bytearray` for the ``c`` " "format (:issue:`12380`)." msgstr "" -#: whatsnew/3.3.rst:2209 +#: whatsnew/3.3.rst:2210 msgid "Deprecated" msgstr "" -#: whatsnew/3.3.rst:2212 +#: whatsnew/3.3.rst:2213 msgid "Unsupported Operating Systems" msgstr "" -#: whatsnew/3.3.rst:2214 +#: whatsnew/3.3.rst:2215 msgid "OS/2 and VMS are no longer supported due to the lack of a maintainer." msgstr "" -#: whatsnew/3.3.rst:2216 +#: whatsnew/3.3.rst:2217 msgid "" "Windows 2000 and Windows platforms which set ``COMSPEC`` to ``command.com`` " "are no longer supported due to maintenance burden." msgstr "" -#: whatsnew/3.3.rst:2219 +#: whatsnew/3.3.rst:2220 msgid "OSF support, which was deprecated in 3.2, has been completely removed." msgstr "" -#: whatsnew/3.3.rst:2223 +#: whatsnew/3.3.rst:2224 msgid "Deprecated Python modules, functions and methods" msgstr "" -#: whatsnew/3.3.rst:2225 +#: whatsnew/3.3.rst:2226 msgid "" "Passing a non-empty string to ``object.__format__()`` is deprecated, and " "will produce a :exc:`TypeError` in Python 3.4 (:issue:`9856`)." msgstr "" -#: whatsnew/3.3.rst:2227 +#: whatsnew/3.3.rst:2228 msgid "" "The ``unicode_internal`` codec has been deprecated because of the :pep:" "`393`, use UTF-8, UTF-16 (``utf-16-le`` or ``utf-16-be``), or UTF-32 " "(``utf-32-le`` or ``utf-32-be``)" msgstr "" -#: whatsnew/3.3.rst:2230 +#: whatsnew/3.3.rst:2231 msgid "" ":meth:`ftplib.FTP.nlst` and :meth:`ftplib.FTP.dir`: use :meth:`ftplib.FTP." "mlsd`" msgstr "" -#: whatsnew/3.3.rst:2232 +#: whatsnew/3.3.rst:2233 msgid "" ":func:`platform.popen`: use the :mod:`subprocess` module. Check especially " "the :ref:`subprocess-replacements` section (:issue:`11377`)." msgstr "" -#: whatsnew/3.3.rst:2234 +#: whatsnew/3.3.rst:2235 msgid "" ":issue:`13374`: The Windows bytes API has been deprecated in the :mod:`os` " "module. Use Unicode filenames, instead of bytes filenames, to not depend on " "the ANSI code page anymore and to support any filename." msgstr "" -#: whatsnew/3.3.rst:2237 +#: whatsnew/3.3.rst:2238 msgid "" ":issue:`13988`: The :mod:`xml.etree.cElementTree` module is deprecated. The " "accelerator is used automatically whenever available." msgstr "" -#: whatsnew/3.3.rst:2239 +#: whatsnew/3.3.rst:2240 msgid "" "The behaviour of :func:`time.clock` depends on the platform: use the new :" "func:`time.perf_counter` or :func:`time.process_time` function instead, " "depending on your requirements, to have a well defined behaviour." msgstr "" -#: whatsnew/3.3.rst:2242 +#: whatsnew/3.3.rst:2243 msgid "The :func:`os.stat_float_times` function is deprecated." msgstr "" -#: whatsnew/3.3.rst:2243 +#: whatsnew/3.3.rst:2244 msgid ":mod:`abc` module:" msgstr "" -#: whatsnew/3.3.rst:2252 +#: whatsnew/3.3.rst:2253 msgid ":mod:`importlib` package:" msgstr "" -#: whatsnew/3.3.rst:2254 +#: whatsnew/3.3.rst:2255 msgid "" ":meth:`importlib.abc.SourceLoader.path_mtime` is now deprecated in favour " "of :meth:`importlib.abc.SourceLoader.path_stats` as bytecode files now store " @@ -3371,206 +3371,206 @@ msgid "" "compiled from." msgstr "" -#: whatsnew/3.3.rst:2264 +#: whatsnew/3.3.rst:2265 msgid "Deprecated functions and types of the C API" msgstr "" -#: whatsnew/3.3.rst:2266 +#: whatsnew/3.3.rst:2267 msgid "" "The :c:type:`Py_UNICODE` has been deprecated by :pep:`393` and will be " "removed in Python 4. All functions using this type are deprecated:" msgstr "" -#: whatsnew/3.3.rst:2269 +#: whatsnew/3.3.rst:2270 msgid "" "Unicode functions and methods using :c:type:`Py_UNICODE` and :c:expr:" "`Py_UNICODE*` types:" msgstr "" -#: whatsnew/3.3.rst:2272 +#: whatsnew/3.3.rst:2273 msgid "" ":c:macro:`!PyUnicode_FromUnicode`: use :c:func:`PyUnicode_FromWideChar` or :" "c:func:`PyUnicode_FromKindAndData`" msgstr "" -#: whatsnew/3.3.rst:2274 +#: whatsnew/3.3.rst:2275 msgid "" ":c:macro:`!PyUnicode_AS_UNICODE`, :c:func:`!PyUnicode_AsUnicode`, :c:func:`!" "PyUnicode_AsUnicodeAndSize`: use :c:func:`PyUnicode_AsWideCharString`" msgstr "" -#: whatsnew/3.3.rst:2276 +#: whatsnew/3.3.rst:2277 msgid "" ":c:macro:`!PyUnicode_AS_DATA`: use :c:macro:`PyUnicode_DATA` with :c:macro:" "`PyUnicode_READ` and :c:macro:`PyUnicode_WRITE`" msgstr "" -#: whatsnew/3.3.rst:2278 +#: whatsnew/3.3.rst:2279 msgid "" ":c:macro:`!PyUnicode_GET_SIZE`, :c:func:`!PyUnicode_GetSize`: use :c:macro:" "`PyUnicode_GET_LENGTH` or :c:func:`PyUnicode_GetLength`" msgstr "" -#: whatsnew/3.3.rst:2280 +#: whatsnew/3.3.rst:2281 msgid "" ":c:macro:`!PyUnicode_GET_DATA_SIZE`: use ``PyUnicode_GET_LENGTH(str) * " "PyUnicode_KIND(str)`` (only work on ready strings)" msgstr "" -#: whatsnew/3.3.rst:2283 +#: whatsnew/3.3.rst:2284 msgid "" ":c:func:`!PyUnicode_AsUnicodeCopy`: use :c:func:`PyUnicode_AsUCS4Copy` or :c:" "func:`PyUnicode_AsWideCharString`" msgstr "" -#: whatsnew/3.3.rst:2285 +#: whatsnew/3.3.rst:2286 msgid ":c:func:`!PyUnicode_GetMax`" msgstr "" -#: whatsnew/3.3.rst:2288 +#: whatsnew/3.3.rst:2289 msgid "Functions and macros manipulating Py_UNICODE* strings:" msgstr "" -#: whatsnew/3.3.rst:2290 +#: whatsnew/3.3.rst:2291 msgid "" ":c:macro:`!Py_UNICODE_strlen()`: use :c:func:`PyUnicode_GetLength` or :c:" "macro:`PyUnicode_GET_LENGTH`" msgstr "" -#: whatsnew/3.3.rst:2292 +#: whatsnew/3.3.rst:2293 msgid "" ":c:macro:`!Py_UNICODE_strcat()`: use :c:func:`PyUnicode_CopyCharacters` or :" "c:func:`PyUnicode_FromFormat`" msgstr "" -#: whatsnew/3.3.rst:2294 +#: whatsnew/3.3.rst:2295 msgid "" ":c:macro:`!Py_UNICODE_strcpy()`, :c:macro:`!Py_UNICODE_strncpy()`, :c:macro:" "`!Py_UNICODE_COPY()`: use :c:func:`PyUnicode_CopyCharacters` or :c:func:" "`PyUnicode_Substring`" msgstr "" -#: whatsnew/3.3.rst:2297 +#: whatsnew/3.3.rst:2298 msgid ":c:macro:`!Py_UNICODE_strcmp()`: use :c:func:`PyUnicode_Compare`" msgstr "" -#: whatsnew/3.3.rst:2298 +#: whatsnew/3.3.rst:2299 msgid ":c:macro:`!Py_UNICODE_strncmp()`: use :c:func:`PyUnicode_Tailmatch`" msgstr "" -#: whatsnew/3.3.rst:2299 +#: whatsnew/3.3.rst:2300 msgid "" ":c:macro:`!Py_UNICODE_strchr()`, :c:macro:`!Py_UNICODE_strrchr()`: use :c:" "func:`PyUnicode_FindChar`" msgstr "" -#: whatsnew/3.3.rst:2301 +#: whatsnew/3.3.rst:2302 msgid ":c:macro:`!Py_UNICODE_FILL()`: use :c:func:`PyUnicode_Fill`" msgstr "" -#: whatsnew/3.3.rst:2302 +#: whatsnew/3.3.rst:2303 msgid ":c:macro:`!Py_UNICODE_MATCH`" msgstr "" -#: whatsnew/3.3.rst:2304 +#: whatsnew/3.3.rst:2305 msgid "Encoders:" msgstr "" -#: whatsnew/3.3.rst:2306 +#: whatsnew/3.3.rst:2307 msgid ":c:func:`!PyUnicode_Encode`: use :c:func:`!PyUnicode_AsEncodedObject`" msgstr "" -#: whatsnew/3.3.rst:2307 +#: whatsnew/3.3.rst:2308 msgid ":c:func:`!PyUnicode_EncodeUTF7`" msgstr "" -#: whatsnew/3.3.rst:2308 +#: whatsnew/3.3.rst:2309 msgid "" ":c:func:`!PyUnicode_EncodeUTF8`: use :c:func:`PyUnicode_AsUTF8` or :c:func:" "`PyUnicode_AsUTF8String`" msgstr "" -#: whatsnew/3.3.rst:2310 +#: whatsnew/3.3.rst:2311 msgid ":c:func:`!PyUnicode_EncodeUTF32`" msgstr "" -#: whatsnew/3.3.rst:2311 +#: whatsnew/3.3.rst:2312 msgid ":c:func:`!PyUnicode_EncodeUTF16`" msgstr "" -#: whatsnew/3.3.rst:2312 +#: whatsnew/3.3.rst:2313 msgid "" ":c:func:`!PyUnicode_EncodeUnicodeEscape` use :c:func:" "`PyUnicode_AsUnicodeEscapeString`" msgstr "" -#: whatsnew/3.3.rst:2314 +#: whatsnew/3.3.rst:2315 msgid "" ":c:func:`!PyUnicode_EncodeRawUnicodeEscape` use :c:func:" "`PyUnicode_AsRawUnicodeEscapeString`" msgstr "" -#: whatsnew/3.3.rst:2316 +#: whatsnew/3.3.rst:2317 msgid "" ":c:func:`!PyUnicode_EncodeLatin1`: use :c:func:`PyUnicode_AsLatin1String`" msgstr "" -#: whatsnew/3.3.rst:2317 +#: whatsnew/3.3.rst:2318 msgid ":c:func:`!PyUnicode_EncodeASCII`: use :c:func:`PyUnicode_AsASCIIString`" msgstr "" -#: whatsnew/3.3.rst:2318 +#: whatsnew/3.3.rst:2319 msgid ":c:func:`!PyUnicode_EncodeCharmap`" msgstr "" -#: whatsnew/3.3.rst:2319 +#: whatsnew/3.3.rst:2320 msgid ":c:func:`!PyUnicode_TranslateCharmap`" msgstr "" -#: whatsnew/3.3.rst:2320 +#: whatsnew/3.3.rst:2321 msgid "" ":c:func:`!PyUnicode_EncodeMBCS`: use :c:func:`PyUnicode_AsMBCSString` or :c:" "func:`PyUnicode_EncodeCodePage` (with ``CP_ACP`` code_page)" msgstr "" -#: whatsnew/3.3.rst:2322 +#: whatsnew/3.3.rst:2323 msgid "" ":c:func:`!PyUnicode_EncodeDecimal`, :c:func:`!" "PyUnicode_TransformDecimalToASCII`" msgstr "" -#: whatsnew/3.3.rst:2327 +#: whatsnew/3.3.rst:2328 msgid "Deprecated features" msgstr "" -#: whatsnew/3.3.rst:2329 +#: whatsnew/3.3.rst:2330 msgid "" "The :mod:`array` module's ``'u'`` format code is now deprecated and will be " "removed in Python 4 together with the rest of the (:c:type:`Py_UNICODE`) API." msgstr "" -#: whatsnew/3.3.rst:2334 +#: whatsnew/3.3.rst:2335 msgid "Porting to Python 3.3" msgstr "" -#: whatsnew/3.3.rst:2336 +#: whatsnew/3.3.rst:2337 msgid "" "This section lists previously described changes and other bugfixes that may " "require changes to your code." msgstr "" -#: whatsnew/3.3.rst:2342 +#: whatsnew/3.3.rst:2343 msgid "Porting Python code" msgstr "" -#: whatsnew/3.3.rst:2344 +#: whatsnew/3.3.rst:2345 msgid "" "Hash randomization is enabled by default. Set the :envvar:`PYTHONHASHSEED` " "environment variable to ``0`` to disable hash randomization. See also the :" "meth:`object.__hash__` method." msgstr "" -#: whatsnew/3.3.rst:2348 +#: whatsnew/3.3.rst:2349 msgid "" ":issue:`12326`: On Linux, sys.platform doesn't contain the major version " "anymore. It is now always 'linux', instead of 'linux2' or 'linux3' depending " @@ -3579,7 +3579,7 @@ msgid "" "if you don't need to support older Python versions." msgstr "" -#: whatsnew/3.3.rst:2354 +#: whatsnew/3.3.rst:2355 msgid "" ":issue:`13847`, :issue:`14180`: :mod:`time` and :mod:`datetime`: :exc:" "`OverflowError` is now raised instead of :exc:`ValueError` if a timestamp is " @@ -3587,7 +3587,7 @@ msgid "" "or :c:func:`localtime` failed." msgstr "" -#: whatsnew/3.3.rst:2359 +#: whatsnew/3.3.rst:2360 msgid "" "The default finders used by import now utilize a cache of what is contained " "within a specific directory. If you create a Python source file or " @@ -3596,7 +3596,7 @@ msgid "" "file." msgstr "" -#: whatsnew/3.3.rst:2364 +#: whatsnew/3.3.rst:2365 msgid "" ":exc:`ImportError` now uses the full name of the module that was attempted " "to be imported. Doctests that check ImportErrors' message will need to be " @@ -3604,7 +3604,7 @@ msgid "" "name." msgstr "" -#: whatsnew/3.3.rst:2369 +#: whatsnew/3.3.rst:2370 msgid "" "The *index* argument to :func:`__import__` now defaults to 0 instead of -1 " "and no longer support negative values. It was an oversight when :pep:`328` " @@ -3615,40 +3615,40 @@ msgid "" "import_module` rather than call :func:`__import__` directly." msgstr "" -#: whatsnew/3.3.rst:2377 +#: whatsnew/3.3.rst:2378 msgid "" ":func:`__import__` no longer allows one to use an index value other than 0 " "for top-level modules. E.g. ``__import__('sys', level=1)`` is now an error." msgstr "" -#: whatsnew/3.3.rst:2380 +#: whatsnew/3.3.rst:2381 msgid "" "Because :data:`sys.meta_path` and :data:`sys.path_hooks` now have finders on " "them by default, you will most likely want to use :meth:`list.insert` " "instead of :meth:`list.append` to add to those lists." msgstr "" -#: whatsnew/3.3.rst:2384 +#: whatsnew/3.3.rst:2385 msgid "" "Because ``None`` is now inserted into :data:`sys.path_importer_cache`, if " "you are clearing out entries in the dictionary of paths that do not have a " "finder, you will need to remove keys paired with values of ``None`` **and** :" -"class:`imp.NullImporter` to be backwards-compatible. This will lead to extra " -"overhead on older versions of Python that re-insert ``None`` into :data:`sys." -"path_importer_cache` where it represents the use of implicit finders, but " -"semantically it should not change anything." +"class:`!imp.NullImporter` to be backwards-compatible. This will lead to " +"extra overhead on older versions of Python that re-insert ``None`` into :" +"data:`sys.path_importer_cache` where it represents the use of implicit " +"finders, but semantically it should not change anything." msgstr "" -#: whatsnew/3.3.rst:2392 +#: whatsnew/3.3.rst:2393 msgid "" -":class:`importlib.abc.Finder` no longer specifies a ``find_module()`` " +":class:`!importlib.abc.Finder` no longer specifies a ``find_module()`` " "abstract method that must be implemented. If you were relying on subclasses " "to implement that method, make sure to check for the method's existence " "first. You will probably want to check for ``find_loader()`` first, though, " "in the case of working with :term:`path entry finders `." msgstr "" -#: whatsnew/3.3.rst:2398 +#: whatsnew/3.3.rst:2399 msgid "" ":mod:`pkgutil` has been converted to use :mod:`importlib` internally. This " "eliminates many edge cases where the old behaviour of the :pep:`302` import " @@ -3659,7 +3659,7 @@ msgid "" "do not provide the non-standard ``iter_modules()`` method." msgstr "" -#: whatsnew/3.3.rst:2406 +#: whatsnew/3.3.rst:2407 msgid "" "A longstanding RFC-compliance bug (:issue:`1079`) in the parsing done by :" "func:`email.header.decode_header` has been fixed. Code that uses the " @@ -3673,7 +3673,7 @@ msgid "" "already present in the input strings." msgstr "" -#: whatsnew/3.3.rst:2417 +#: whatsnew/3.3.rst:2418 msgid "" ":func:`email.utils.formataddr` now does the correct content transfer " "encoding when passed non-``ASCII`` display names. Any code that depended on " @@ -3681,7 +3681,7 @@ msgid "" "formatted output string will need to be changed (:issue:`1690608`)." msgstr "" -#: whatsnew/3.3.rst:2422 +#: whatsnew/3.3.rst:2423 msgid "" ":meth:`poplib.POP3.quit` may now raise protocol errors like all other " "``poplib`` methods. Code that assumes ``quit`` does not raise :exc:`poplib." @@ -3689,57 +3689,57 @@ msgid "" "encountered by a particular application (:issue:`11291`)." msgstr "" -#: whatsnew/3.3.rst:2427 +#: whatsnew/3.3.rst:2428 msgid "" "The ``strict`` argument to :class:`email.parser.Parser`, deprecated since " "Python 2.4, has finally been removed." msgstr "" -#: whatsnew/3.3.rst:2430 +#: whatsnew/3.3.rst:2431 msgid "" "The deprecated method ``unittest.TestCase.assertSameElements`` has been " "removed." msgstr "" -#: whatsnew/3.3.rst:2433 +#: whatsnew/3.3.rst:2434 msgid "The deprecated variable ``time.accept2dyear`` has been removed." msgstr "" -#: whatsnew/3.3.rst:2435 +#: whatsnew/3.3.rst:2436 msgid "" "The deprecated ``Context._clamp`` attribute has been removed from the :mod:" "`decimal` module. It was previously replaced by the public attribute :attr:" "`~decimal.Context.clamp`. (See :issue:`8540`.)" msgstr "" -#: whatsnew/3.3.rst:2439 +#: whatsnew/3.3.rst:2440 msgid "" "The undocumented internal helper class ``SSLFakeFile`` has been removed " "from :mod:`smtplib`, since its functionality has long been provided directly " "by :meth:`socket.socket.makefile`." msgstr "" -#: whatsnew/3.3.rst:2443 +#: whatsnew/3.3.rst:2444 msgid "" "Passing a negative value to :func:`time.sleep` on Windows now raises an " "error instead of sleeping forever. It has always raised an error on posix." msgstr "" -#: whatsnew/3.3.rst:2446 +#: whatsnew/3.3.rst:2447 msgid "" "The ``ast.__version__`` constant has been removed. If you need to make " "decisions affected by the AST version, use :data:`sys.version_info` to make " "the decision." msgstr "" -#: whatsnew/3.3.rst:2450 +#: whatsnew/3.3.rst:2451 msgid "" "Code that used to work around the fact that the :mod:`threading` module used " "factory functions by subclassing the private classes will need to change to " "subclass the now-public classes." msgstr "" -#: whatsnew/3.3.rst:2454 +#: whatsnew/3.3.rst:2455 msgid "" "The undocumented debugging machinery in the threading module has been " "removed, simplifying the code. This should have no effect on production " @@ -3747,24 +3747,24 @@ msgid "" "interacting with it (:issue:`13550`)." msgstr "" -#: whatsnew/3.3.rst:2461 +#: whatsnew/3.3.rst:2462 msgid "Porting C code" msgstr "" -#: whatsnew/3.3.rst:2463 +#: whatsnew/3.3.rst:2464 msgid "" "In the course of changes to the buffer API the undocumented :c:member:`!" "smalltable` member of the :c:type:`Py_buffer` structure has been removed and " "the layout of the :c:type:`PyMemoryViewObject` has changed." msgstr "" -#: whatsnew/3.3.rst:2468 +#: whatsnew/3.3.rst:2469 msgid "" "All extensions relying on the relevant parts in ``memoryobject.h`` or " "``object.h`` must be rebuilt." msgstr "" -#: whatsnew/3.3.rst:2471 +#: whatsnew/3.3.rst:2472 msgid "" "Due to :ref:`PEP 393 `, the :c:type:`Py_UNICODE` type and all " "functions using this type are deprecated (but will stay available for at " @@ -3774,7 +3774,7 @@ msgid "" "doc:`Unicode API <../c-api/unicode>`." msgstr "" -#: whatsnew/3.3.rst:2478 +#: whatsnew/3.3.rst:2479 msgid "" "However, if you only have been using high-level functions such as :c:func:" "`PyUnicode_Concat()`, :c:func:`PyUnicode_Join` or :c:func:" @@ -3782,11 +3782,11 @@ msgid "" "new unicode representations." msgstr "" -#: whatsnew/3.3.rst:2483 +#: whatsnew/3.3.rst:2484 msgid ":c:func:`PyImport_GetMagicNumber` now returns ``-1`` upon failure." msgstr "" -#: whatsnew/3.3.rst:2485 +#: whatsnew/3.3.rst:2486 msgid "" "As a negative value for the *level* argument to :func:`__import__` is no " "longer valid, the same now holds for :c:func:`PyImport_ImportModuleLevel`. " @@ -3794,11 +3794,11 @@ msgid "" "`PyImport_ImportModuleEx` is now ``0`` instead of ``-1``." msgstr "" -#: whatsnew/3.3.rst:2492 +#: whatsnew/3.3.rst:2493 msgid "Building C extensions" msgstr "" -#: whatsnew/3.3.rst:2494 +#: whatsnew/3.3.rst:2495 msgid "" "The range of possible file names for C extensions has been narrowed. Very " "rarely used spellings have been suppressed: under POSIX, files named " @@ -3808,32 +3808,32 @@ msgid "" "remove the ``module`` string from the file names)." msgstr "" -#: whatsnew/3.3.rst:2502 +#: whatsnew/3.3.rst:2503 msgid "(implemented in :issue:`14040`.)" msgstr "" -#: whatsnew/3.3.rst:2506 +#: whatsnew/3.3.rst:2507 msgid "Command Line Switch Changes" msgstr "" -#: whatsnew/3.3.rst:2508 +#: whatsnew/3.3.rst:2509 msgid "" "The -Q command-line flag and related artifacts have been removed. Code " "checking sys.flags.division_warning will need updating." msgstr "" -#: whatsnew/3.3.rst:2511 +#: whatsnew/3.3.rst:2512 msgid "(:issue:`10998`, contributed by Éric Araujo.)" msgstr "" -#: whatsnew/3.3.rst:2513 +#: whatsnew/3.3.rst:2514 msgid "" "When :program:`python` is started with :option:`-S`, ``import site`` will no " "longer add site-specific paths to the module search paths. In previous " "versions, it did." msgstr "" -#: whatsnew/3.3.rst:2517 +#: whatsnew/3.3.rst:2518 msgid "" "(:issue:`11591`, contributed by Carl Meyer with editions by Éric Araujo.)" msgstr "" diff --git a/whatsnew/3.4.po b/whatsnew/3.4.po index a58e05f8c..db726ce92 100644 --- a/whatsnew/3.4.po +++ b/whatsnew/3.4.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -374,7 +374,7 @@ msgstr "" msgid "" "However, as this migration is currently still incomplete, the legacy " "versions of those guides remaining available as :ref:`install-index` and :" -"ref:`distutils-index`." +"ref:`setuptools-index`." msgstr "" #: whatsnew/3.4.rst:255 @@ -1328,8 +1328,8 @@ msgstr "" #: whatsnew/3.4.rst:994 msgid "" -"The :func:`~importlib.reload` function has been moved from :mod:`imp` to :" -"mod:`importlib` as part of the :mod:`imp` module deprecation. (Contributed " +"The :func:`~importlib.reload` function has been moved from :mod:`!imp` to :" +"mod:`importlib` as part of the :mod:`!imp` module deprecation. (Contributed " "by Berker Peksag in :issue:`18193`.)" msgstr "" @@ -1337,7 +1337,7 @@ msgstr "" msgid "" ":mod:`importlib.util` now has a :data:`~importlib.util.MAGIC_NUMBER` " "attribute providing access to the bytecode version number. This replaces " -"the :func:`~imp.get_magic` function in the deprecated :mod:`imp` module. " +"the :func:`!get_magic` function in the deprecated :mod:`!imp` module. " "(Contributed by Brett Cannon in :issue:`18192`.)" msgstr "" @@ -1345,7 +1345,7 @@ msgstr "" msgid "" "New :mod:`importlib.util` functions :func:`~importlib.util." "cache_from_source` and :func:`~importlib.util.source_from_cache` replace the " -"same-named functions in the deprecated :mod:`imp` module. (Contributed by " +"same-named functions in the deprecated :mod:`!imp` module. (Contributed by " "Brett Cannon in :issue:`18194`.)" msgstr "" @@ -2840,29 +2840,29 @@ msgstr "" #: whatsnew/3.4.rst:2079 msgid "" "As mentioned in :ref:`whatsnew-pep-451`, a number of :mod:`importlib` " -"methods and functions are deprecated: :meth:`importlib.find_loader` is " -"replaced by :func:`importlib.util.find_spec`; :meth:`importlib.machinery." +"methods and functions are deprecated: :meth:`!importlib.find_loader` is " +"replaced by :func:`importlib.util.find_spec`; :meth:`!importlib.machinery." "PathFinder.find_module` is replaced by :meth:`importlib.machinery.PathFinder." -"find_spec`; :meth:`importlib.abc.MetaPathFinder.find_module` is replaced by :" -"meth:`importlib.abc.MetaPathFinder.find_spec`; :meth:`importlib.abc." -"PathEntryFinder.find_loader` and :meth:`~importlib.abc.PathEntryFinder." -"find_module` are replaced by :meth:`importlib.abc.PathEntryFinder." -"find_spec`; all of the ``xxxLoader`` ABC ``load_module`` methods (:meth:" -"`importlib.abc.Loader.load_module`, :meth:`importlib.abc.InspectLoader." -"load_module`, :meth:`importlib.abc.FileLoader.load_module`, :meth:`importlib." -"abc.SourceLoader.load_module`) should no longer be implemented, instead " -"loaders should implement an ``exec_module`` method (:meth:`importlib.abc." -"Loader.exec_module`, :meth:`importlib.abc.InspectLoader.exec_module` :meth:" -"`importlib.abc.SourceLoader.exec_module`) and let the import system take " -"care of the rest; and :meth:`importlib.abc.Loader.module_repr`, :meth:" -"`importlib.util.module_for_loader`, :meth:`importlib.util.set_loader`, and :" -"meth:`importlib.util.set_package` are no longer needed because their " -"functions are now handled automatically by the import system." +"find_spec`; :meth:`!importlib.abc.MetaPathFinder.find_module` is replaced " +"by :meth:`importlib.abc.MetaPathFinder.find_spec`; :meth:`!importlib.abc." +"PathEntryFinder.find_loader` and :meth:`!find_module` are replaced by :meth:" +"`importlib.abc.PathEntryFinder.find_spec`; all of the ``xxxLoader`` ABC " +"``load_module`` methods (:meth:`!importlib.abc.Loader.load_module`, :meth:`!" +"importlib.abc.InspectLoader.load_module`, :meth:`!importlib.abc.FileLoader." +"load_module`, :meth:`!importlib.abc.SourceLoader.load_module`) should no " +"longer be implemented, instead loaders should implement an ``exec_module`` " +"method (:meth:`importlib.abc.Loader.exec_module`, :meth:`importlib.abc." +"InspectLoader.exec_module` :meth:`importlib.abc.SourceLoader.exec_module`) " +"and let the import system take care of the rest; and :meth:`!importlib.abc." +"Loader.module_repr`, :meth:`!importlib.util.module_for_loader`, :meth:`!" +"importlib.util.set_loader`, and :meth:`!importlib.util.set_package` are no " +"longer needed because their functions are now handled automatically by the " +"import system." msgstr "" #: whatsnew/3.4.rst:2104 msgid "" -"The :mod:`imp` module is pending deprecation. To keep compatibility with " +"The :mod:`!imp` module is pending deprecation. To keep compatibility with " "Python 2/3 code bases, the module's removal is currently not scheduled." msgstr "" @@ -3146,7 +3146,7 @@ msgstr "" #: whatsnew/3.4.rst:2280 msgid "" -":meth:`importlib.util.module_for_loader` now sets ``__loader__`` and " +":meth:`!importlib.util.module_for_loader` now sets ``__loader__`` and " "``__package__`` unconditionally to properly support reloading. If this is " "not desired then you will need to set these attributes manually. You can " "use :func:`importlib.util.module_to_load` for module management." @@ -3178,7 +3178,7 @@ msgid "" "code then you can see if the module's ``__spec__.location`` is set to " "``'frozen'``, check if the loader is a subclass of :class:`importlib." "machinery.FrozenImporter`, or if Python 2 compatibility is necessary you can " -"use :func:`imp.is_frozen`." +"use :func:`!imp.is_frozen`." msgstr "" #: whatsnew/3.4.rst:2305 diff --git a/whatsnew/3.5.po b/whatsnew/3.5.po index 6c9754c8f..f601f08b4 100644 --- a/whatsnew/3.5.po +++ b/whatsnew/3.5.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1297,9 +1297,9 @@ msgstr "" #: whatsnew/3.5.rst:1082 msgid "" -"The :mod:`distutils` module now supports ``xz`` compression, and can be " -"enabled by passing ``xztar`` as an argument to ``bdist --format``. " -"(Contributed by Serhiy Storchaka in :issue:`16314`.)" +"The ``distutils`` module now supports ``xz`` compression, and can be enabled " +"by passing ``xztar`` as an argument to ``bdist --format``. (Contributed by " +"Serhiy Storchaka in :issue:`16314`.)" msgstr "" #: whatsnew/3.5.rst:1088 diff --git a/whatsnew/3.6.po b/whatsnew/3.6.po index e5a42acb5..259bbec3b 100644 --- a/whatsnew/3.6.po +++ b/whatsnew/3.6.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1238,9 +1238,9 @@ msgstr "" #: whatsnew/3.6.rst:1014 msgid "" -"The ``default_format`` attribute has been removed from :class:`distutils." -"command.sdist.sdist` and the ``formats`` attribute defaults to " -"``['gztar']``. Although not anticipated, any code relying on the presence of " +"The ``default_format`` attribute has been removed from ``distutils.command." +"sdist.sdist`` and the ``formats`` attribute defaults to ``['gztar']``. " +"Although not anticipated, any code relying on the presence of " "``default_format`` may need to be adapted. See :issue:`27819` for more " "details." msgstr "" @@ -2592,10 +2592,10 @@ msgstr "" #: whatsnew/3.6.rst:1988 msgid "" -"The undocumented ``extra_path`` argument to the :class:`~distutils." -"Distribution` constructor is now considered deprecated and will raise a " -"warning if set. Support for this parameter will be removed in a future " -"Python release. See :issue:`27919` for details." +"The undocumented ``extra_path`` argument to the ``distutils.Distribution`` " +"constructor is now considered deprecated and will raise a warning if set. " +"Support for this parameter will be removed in a future Python release. See :" +"issue:`27919` for details." msgstr "" #: whatsnew/3.6.rst:1995 @@ -2855,8 +2855,8 @@ msgstr "" #: whatsnew/3.6.rst:2183 msgid "" -"The :mod:`imp` module now raises a :exc:`DeprecationWarning` instead of :exc:" -"`PendingDeprecationWarning`." +"The :mod:`!imp` module now raises a :exc:`DeprecationWarning` instead of :" +"exc:`PendingDeprecationWarning`." msgstr "" #: whatsnew/3.6.rst:2186 @@ -2948,10 +2948,10 @@ msgstr "" #: whatsnew/3.6.rst:2248 msgid "" -"In :class:`distutils.command.sdist.sdist`, the ``default_format`` attribute " -"has been removed and is no longer honored. Instead, the gzipped tarfile " -"format is the default on all platforms and no platform-specific selection is " -"made. In environments where distributions are built on Windows and zip " +"In ``distutils.command.sdist.sdist``, the ``default_format`` attribute has " +"been removed and is no longer honored. Instead, the gzipped tarfile format " +"is the default on all platforms and no platform-specific selection is made. " +"In environments where distributions are built on Windows and zip " "distributions are required, configure the project with a ``setup.cfg`` file " "containing the following:" msgstr "" diff --git a/whatsnew/3.7.po b/whatsnew/3.7.po index cab4e6a9e..1dbe9f81e 100644 --- a/whatsnew/3.7.po +++ b/whatsnew/3.7.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -2727,7 +2727,7 @@ msgstr "" #: whatsnew/3.7.rst:1909 msgid "" -"The :mod:`distutils` ``upload`` command no longer tries to change CR end-of-" +"The ``distutils`` ``upload`` command no longer tries to change CR end-of-" "line characters to CRLF. This fixes a corruption issue with sdists that " "ended with a byte equivalent to CR. (Contributed by Bo Bayles in :issue:" "`32304`.)" @@ -2830,10 +2830,10 @@ msgstr "" #: whatsnew/3.7.rst:2006 msgid "" -"Methods :meth:`MetaPathFinder.find_module() ` (replaced by :meth:`MetaPathFinder.find_spec() `) and :meth:`PathEntryFinder.find_loader() " -"` (replaced by :meth:" +"MetaPathFinder.find_spec>`) and :meth:`PathEntryFinder.find_loader() ` (replaced by :meth:" "`PathEntryFinder.find_spec() `) " "both deprecated in Python 3.4 now emit :exc:`DeprecationWarning`. " "(Contributed by Matthias Bussonnier in :issue:`29576`)" @@ -3076,7 +3076,7 @@ msgstr "" #: whatsnew/3.7.rst:2184 msgid "" -"The unused :mod:`distutils` ``install_misc`` command has been removed. " +"The unused ``distutils`` ``install_misc`` command has been removed. " "(Contributed by Eric N. Vander Weele in :issue:`29218`.)" msgstr "" diff --git a/whatsnew/3.8.po b/whatsnew/3.8.po index 73c302d8d..b4f86ca13 100644 --- a/whatsnew/3.8.po +++ b/whatsnew/3.8.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18 19:05+0000\n" +"POT-Creation-Date: 2023-09-18 22:33+0300\n" "PO-Revision-Date: 2023-02-03 17:30+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1012,7 +1012,7 @@ msgstr "" msgid "(Contributed by Yury Selivanov in :issue:`37028`.)" msgstr "(Yury Selivanov'un :issue:`37028` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1967 +#: whatsnew/3.8.rst:1970 msgid "" "The exception :class:`asyncio.CancelledError` now inherits from :class:" "`BaseException` rather than :class:`Exception` and no longer inherits from :" @@ -1717,7 +1717,7 @@ msgstr "" "`UnicodeDecodeError` yerine ``False`` döndürüyor. (Serhiy Storchaka'nın :" "issue:`33721` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1962 +#: whatsnew/3.8.rst:1965 msgid "" ":func:`~os.path.expanduser` on Windows now prefers the :envvar:`USERPROFILE` " "environment variable and does not use :envvar:`HOME`, which is not normally " @@ -1774,16 +1774,17 @@ msgstr "" #: whatsnew/3.8.rst:1089 msgid "" "Added :meth:`pathlib.Path.link_to()` which creates a hard link pointing to a " -"path. (Contributed by Joannah Nanjekye in :issue:`26978`)" +"path. (Contributed by Joannah Nanjekye in :issue:`26978`) Note that " +"``link_to`` was deprecated in 3.10 and removed in 3.12 in favor of a " +"``hardlink_to`` method added in 3.10 which matches the semantics of the " +"existing ``symlink_to`` method." msgstr "" -"Bir yola işaret eden sabit bir bağlantı oluşturan :meth:`pathlib.Path." -"link_to()` eklendi. (Joannah Nanjekye'nin :issue:`26978` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1095 +#: whatsnew/3.8.rst:1098 msgid "pickle" msgstr "pickle" -#: whatsnew/3.8.rst:1097 +#: whatsnew/3.8.rst:1100 msgid "" ":mod:`pickle` extensions subclassing the C-optimized :class:`~pickle." "Pickler` can now override the pickling logic of functions and classes by " @@ -1795,11 +1796,11 @@ msgstr "" "tanımlayarak fonksiyon ve sınıfların pickling mantığını geçersiz kılabilir. " "(Pierre Glaser ve Olivier Grisel'ın :issue:`35900` 'deki katkılarıyla.)" -#: whatsnew/3.8.rst:1104 +#: whatsnew/3.8.rst:1107 msgid "plistlib" msgstr "plistlib" -#: whatsnew/3.8.rst:1106 +#: whatsnew/3.8.rst:1109 msgid "" "Added new :class:`plistlib.UID` and enabled support for reading and writing " "NSKeyedArchiver-encoded binary plists. (Contributed by Jon Janzen in :issue:" @@ -1809,11 +1810,11 @@ msgstr "" "plistleri okuma ve yazma desteği etkinleştirildi. (Jon Janzen tarafından :" "issue:`26707` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1112 +#: whatsnew/3.8.rst:1115 msgid "pprint" msgstr "pprint" -#: whatsnew/3.8.rst:1114 +#: whatsnew/3.8.rst:1117 msgid "" "The :mod:`pprint` module added a *sort_dicts* parameter to several " "functions. By default, those functions continue to sort dictionaries before " @@ -1827,7 +1828,7 @@ msgstr "" "sözlükler anahtarların eklendiği sırayı korur. Bu, hata ayıklama sırasında " "JSON girdileriyle karşılaştırma yapmak için yararlı olabilir." -#: whatsnew/3.8.rst:1120 +#: whatsnew/3.8.rst:1123 msgid "" "In addition, there is a convenience new function, :func:`pprint.pp` that is " "like :func:`pprint.pprint` but with *sort_dicts* defaulting to ``False``::" @@ -1835,15 +1836,15 @@ msgstr "" "In addition, there is a convenience new function, :func:`pprint.pp` that is " "like :func:`pprint.pprint` but with *sort_dicts* defaulting to ``False``::" -#: whatsnew/3.8.rst:1134 +#: whatsnew/3.8.rst:1137 msgid "(Contributed by Rémi Lapeyre in :issue:`30670`.)" msgstr "(Rémi Lapeyre'nin :issue:`30670` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1138 +#: whatsnew/3.8.rst:1141 msgid "py_compile" msgstr "py_compile" -#: whatsnew/3.8.rst:1140 +#: whatsnew/3.8.rst:1143 msgid "" ":func:`py_compile.compile` now supports silent mode. (Contributed by Joannah " "Nanjekye in :issue:`22640`.)" @@ -1851,11 +1852,11 @@ msgstr "" ":func:`py_compile.compile` artık sessiz modu destekliyor. (Joannah " "Nanjekye'nin :issue:`22640` 'taki katkısıyla.)" -#: whatsnew/3.8.rst:1145 +#: whatsnew/3.8.rst:1148 msgid "shlex" msgstr "shlex" -#: whatsnew/3.8.rst:1147 +#: whatsnew/3.8.rst:1150 msgid "" "The new :func:`shlex.join` function acts as the inverse of :func:`shlex." "split`. (Contributed by Bo Bayles in :issue:`32102`.)" @@ -1863,11 +1864,11 @@ msgstr "" "Yeni :func:`shlex.join` fonksiyonu :func:`shlex.split` fonksiyonunun tersi " "gibi davranır. (Bo Bayles'in :issue:`32102` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1152 +#: whatsnew/3.8.rst:1155 msgid "shutil" msgstr "shutil" -#: whatsnew/3.8.rst:1154 +#: whatsnew/3.8.rst:1157 msgid "" ":func:`shutil.copytree` now accepts a new ``dirs_exist_ok`` keyword " "argument. (Contributed by Josh Bronson in :issue:`20849`.)" @@ -1875,7 +1876,7 @@ msgstr "" ":func:`shutil.copytree` artık yeni bir ``dirs_exist_ok`` anahtar kelime " "argümanını kabul ediyor. (Josh Bronson'ın :issue:`20849` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1157 +#: whatsnew/3.8.rst:1160 msgid "" ":func:`shutil.make_archive` now defaults to the modern pax (POSIX.1-2001) " "format for new archives to improve portability and standards conformance, " @@ -1888,7 +1889,7 @@ msgstr "" "değişiklikten miras alınmıştır. (C.A.M. Gerlach'ın :issue:`30661` 'deki " "katkısıyla.)" -#: whatsnew/3.8.rst:1162 +#: whatsnew/3.8.rst:1165 msgid "" ":func:`shutil.rmtree` on Windows now removes directory junctions without " "recursively removing their contents first. (Contributed by Steve Dower in :" @@ -1898,11 +1899,11 @@ msgstr "" "içeriklerini özyinelemeli olarak kaldırmadan kaldırıyor. (Steve Dower'ın :" "issue:`37834` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1168 +#: whatsnew/3.8.rst:1171 msgid "socket" msgstr "socket" -#: whatsnew/3.8.rst:1170 +#: whatsnew/3.8.rst:1173 msgid "" "Added :meth:`~socket.create_server()` and :meth:`~socket." "has_dualstack_ipv6()` convenience functions to automate the necessary tasks " @@ -1916,7 +1917,7 @@ msgstr "" "has_dualstack_ipv6()` kolaylık fonksiyonları eklendi. (Giampaolo " "Rodolà'nın :issue:`17561` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1175 +#: whatsnew/3.8.rst:1178 msgid "" "The :func:`socket.if_nameindex()`, :func:`socket.if_nametoindex()`, and :" "func:`socket.if_indextoname()` functions have been implemented on Windows. " @@ -1926,11 +1927,11 @@ msgstr "" "`socket.if_indextoname()` fonksiyonları Windows'ta uygulanmıştır. (Zackery " "Spytz'in :issue:`37007` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1181 +#: whatsnew/3.8.rst:1184 msgid "ssl" msgstr "ssl" -#: whatsnew/3.8.rst:1183 +#: whatsnew/3.8.rst:1186 msgid "" "Added :attr:`~ssl.SSLContext.post_handshake_auth` to enable and :meth:`~ssl." "SSLSocket.verify_client_post_handshake` to initiate TLS 1.3 post-handshake " @@ -1941,11 +1942,11 @@ msgstr "" "verify_client_post_handshake` eklendi. (Christian Heimes'in :issue:`34670` " "'teki katkısıyla.)" -#: whatsnew/3.8.rst:1190 +#: whatsnew/3.8.rst:1193 msgid "statistics" msgstr "statistics" -#: whatsnew/3.8.rst:1192 +#: whatsnew/3.8.rst:1195 msgid "" "Added :func:`statistics.fmean` as a faster, floating point variant of :func:" "`statistics.mean()`. (Contributed by Raymond Hettinger and Steven D'Aprano " @@ -1955,7 +1956,7 @@ msgstr "" "kayan noktalı bir çeşididir. (Raymond Hettinger ve Steven D'Aprano 'nun :" "issue:`35904` 'taki katkılarıyla.)" -#: whatsnew/3.8.rst:1196 +#: whatsnew/3.8.rst:1199 msgid "" "Added :func:`statistics.geometric_mean()` (Contributed by Raymond Hettinger " "in :issue:`27181`.)" @@ -1963,7 +1964,7 @@ msgstr "" ":func:`statistics.geometric_mean()` eklendi (Raymond Hettinger'ın :issue:" "`27181` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1199 +#: whatsnew/3.8.rst:1202 msgid "" "Added :func:`statistics.multimode` that returns a list of the most common " "values. (Contributed by Raymond Hettinger in :issue:`35892`.)" @@ -1971,7 +1972,7 @@ msgstr "" "En yaygın değerlerin bir listesini döndüren :func:`statistics.multimode` " "eklendi. (Raymond Hettinger'ın :issue:`35892` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1202 +#: whatsnew/3.8.rst:1205 msgid "" "Added :func:`statistics.quantiles` that divides data or a distribution in to " "equiprobable intervals (e.g. quartiles, deciles, or percentiles). " @@ -1981,7 +1982,7 @@ msgstr "" "ondalıklar veya yüzdelikler) bölen :func:`statistics.quantiles` eklendi. " "(Raymond Hettinger'ın :issue:`36546` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1206 +#: whatsnew/3.8.rst:1209 msgid "" "Added :class:`statistics.NormalDist`, a tool for creating and manipulating " "normal distributions of a random variable. (Contributed by Raymond Hettinger " @@ -1991,11 +1992,11 @@ msgstr "" "araç olan :class:`statistics.NormalDist` eklendi. (Raymond Hettinger'ın :" "issue:`36018` 'deki katkısıyla. )" -#: whatsnew/3.8.rst:1236 +#: whatsnew/3.8.rst:1239 msgid "sys" msgstr "sys" -#: whatsnew/3.8.rst:1238 +#: whatsnew/3.8.rst:1241 msgid "" "Add new :func:`sys.unraisablehook` function which can be overridden to " "control how \"unraisable exceptions\" are handled. It is called when an " @@ -2010,11 +2011,11 @@ msgstr "" "çıkardığında veya çöp toplama sırasında (:func:`gc.collect`). (Victor " "Stinner'ın :issue:`36829` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1247 +#: whatsnew/3.8.rst:1250 msgid "tarfile" msgstr "tarfile" -#: whatsnew/3.8.rst:1249 +#: whatsnew/3.8.rst:1252 msgid "" "The :mod:`tarfile` module now defaults to the modern pax (POSIX.1-2001) " "format for new archives, instead of the previous GNU-specific one. This " @@ -2028,11 +2029,11 @@ msgstr "" "(UTF-8) ile platformlar arası taşınabilirliği geliştirir ve başka avantajlar " "da sunar. (C.A.M. Gerlach'ın :issue:`36268` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1257 +#: whatsnew/3.8.rst:1260 msgid "threading" msgstr "threading" -#: whatsnew/3.8.rst:1259 +#: whatsnew/3.8.rst:1262 msgid "" "Add a new :func:`threading.excepthook` function which handles uncaught :meth:" "`threading.Thread.run` exception. It can be overridden to control how " @@ -2044,7 +2045,7 @@ msgstr "" "`threading.Thread.run` istisnalarının nasıl işleneceğini kontrol etmek için " "geçersiz kılınabilir. (Victor Stinner'ın :issue:`1230540` 'taki katkısıyla.)" -#: whatsnew/3.8.rst:1264 +#: whatsnew/3.8.rst:1267 msgid "" "Add a new :func:`threading.get_native_id` function and a :data:`~threading." "Thread.native_id` attribute to the :class:`threading.Thread` class. These " @@ -2061,11 +2062,11 @@ msgstr "" "get_native_id>` bölümüne bakın. (Jake Tesler'ın :issue:`36084` 'teki " "katkısıyla.)" -#: whatsnew/3.8.rst:1274 +#: whatsnew/3.8.rst:1277 msgid "tokenize" msgstr "tokenize" -#: whatsnew/3.8.rst:1276 +#: whatsnew/3.8.rst:1279 msgid "" "The :mod:`tokenize` module now implicitly emits a ``NEWLINE`` token when " "provided with input that does not have a trailing new line. This behavior " @@ -2077,11 +2078,11 @@ msgstr "" "artık C tokenizer'ın dahili olarak yaptığı ile eşleşiyor. (Ammar Askar'ın :" "issue:`33899` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1283 +#: whatsnew/3.8.rst:1286 msgid "tkinter" msgstr "tkinter" -#: whatsnew/3.8.rst:1285 +#: whatsnew/3.8.rst:1288 msgid "" "Added methods :meth:`~tkinter.Spinbox.selection_from`, :meth:`~tkinter." "Spinbox.selection_present`, :meth:`~tkinter.Spinbox.selection_range` and :" @@ -2093,7 +2094,7 @@ msgstr "" "selection_range` ve :meth:`~tkinter.Spinbox.selection_to` yöntemleri " "eklendi. (Juliette Monsel'ın :issue:`34829` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1292 +#: whatsnew/3.8.rst:1295 msgid "" "Added method :meth:`~tkinter.Canvas.moveto` in the :class:`tkinter.Canvas` " "class. (Contributed by Juliette Monsel in :issue:`23831`.)" @@ -2101,7 +2102,7 @@ msgstr "" ":class:`tkinter.Canvas` sınıfına :meth:`~tkinter.Canvas.moveto` metodu " "eklendi. (Juliette Monsel'ın :issue:`23831` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1296 +#: whatsnew/3.8.rst:1299 msgid "" "The :class:`tkinter.PhotoImage` class now has :meth:`~tkinter.PhotoImage." "transparency_get` and :meth:`~tkinter.PhotoImage.transparency_set` methods. " @@ -2111,11 +2112,11 @@ msgstr "" "transparency_get` ve :meth:`~tkinter.PhotoImage.transparency_set` " "yöntemlerine sahiptir. (Zackery Spytz'in :issue:`25451` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1303 +#: whatsnew/3.8.rst:1306 msgid "time" msgstr "time" -#: whatsnew/3.8.rst:1305 +#: whatsnew/3.8.rst:1308 #, fuzzy msgid "" "Added new clock :const:`~time.CLOCK_UPTIME_RAW` for macOS 10.12. " @@ -2124,15 +2125,15 @@ msgstr "" "macOS 10.12 için yeni saat :data:`~time.CLOCK_UPTIME_RAW` eklendi. (Joannah " "Nanjekye'nın :issue:`35702` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1310 +#: whatsnew/3.8.rst:1313 msgid "typing" msgstr "typing" -#: whatsnew/3.8.rst:1312 +#: whatsnew/3.8.rst:1315 msgid "The :mod:`typing` module incorporates several new features:" msgstr ":mod:`typing` modülü birkaç yeni özellik içerir:" -#: whatsnew/3.8.rst:1314 +#: whatsnew/3.8.rst:1317 msgid "" "A dictionary type with per-key types. See :pep:`589` and :class:`typing." "TypedDict`. TypedDict uses only string keys. By default, every key is " @@ -2144,7 +2145,7 @@ msgstr "" "Varsayılan olarak, her anahtarın mevcut olması gerekir. Anahtarların isteğe " "bağlı olmasına izin vermek için \"total=False\" belirtin::" -#: whatsnew/3.8.rst:1324 +#: whatsnew/3.8.rst:1327 msgid "" "Literal types. See :pep:`586` and :class:`typing.Literal`. Literal types " "indicate that a parameter or return value is constrained to one or more " @@ -2154,7 +2155,7 @@ msgstr "" "tipler, bir parametrenin veya dönüş değerinin bir veya daha fazla belirli " "değişmez değerle sınırlandırıldığını gösterir::" -#: whatsnew/3.8.rst:1331 +#: whatsnew/3.8.rst:1334 msgid "" "\"Final\" variables, functions, methods and classes. See :pep:`591`, :class:" "`typing.Final` and :func:`typing.final`. The final qualifier instructs a " @@ -2165,7 +2166,7 @@ msgstr "" "statik tip denetleyicisine alt sınıflamayı, geçersiz kılmayı veya yeniden " "atamayı kısıtlama talimatı verir::" -#: whatsnew/3.8.rst:1338 +#: whatsnew/3.8.rst:1341 msgid "" "Protocol definitions. See :pep:`544`, :class:`typing.Protocol` and :func:" "`typing.runtime_checkable`. Simple ABCs like :class:`typing.SupportsInt` " @@ -2175,20 +2176,20 @@ msgstr "" "`typing.runtime_checkable`. :class:`typing.SupportsInt` gibi basit ABC'ler " "artık ``Protocol`` alt sınıflarıdır." -#: whatsnew/3.8.rst:1342 +#: whatsnew/3.8.rst:1345 msgid "New protocol class :class:`typing.SupportsIndex`." msgstr "Yeni protokol sınıfı :class:`typing.SupportsIndex`." -#: whatsnew/3.8.rst:1344 +#: whatsnew/3.8.rst:1347 msgid "New functions :func:`typing.get_origin` and :func:`typing.get_args`." msgstr "" "Yeni fonksiyonlar :func:`typing.get_origin` ve :func:`typing.get_args`." -#: whatsnew/3.8.rst:1348 +#: whatsnew/3.8.rst:1351 msgid "unicodedata" msgstr "unicodedata" -#: whatsnew/3.8.rst:1350 +#: whatsnew/3.8.rst:1353 msgid "" "The :mod:`unicodedata` module has been upgraded to use the `Unicode 12.1.0 " "`_ release." @@ -2196,7 +2197,7 @@ msgstr "" ":mod:`unicodedata` modülü `Unicode 12.1.0 `_ sürümünü kullanacak şekilde yükseltildi." -#: whatsnew/3.8.rst:1353 +#: whatsnew/3.8.rst:1356 msgid "" "New function :func:`~unicodedata.is_normalized` can be used to verify a " "string is in a specific normal form, often much faster than by actually " @@ -2209,11 +2210,11 @@ msgstr "" "Euresti ve Greg Price'ın :issue:`32285` ve :issue:`37966` 'daki " "katkılarıyla)." -#: whatsnew/3.8.rst:1360 +#: whatsnew/3.8.rst:1363 msgid "unittest" msgstr "unittest" -#: whatsnew/3.8.rst:1362 +#: whatsnew/3.8.rst:1365 msgid "" "Added :class:`~unittest.mock.AsyncMock` to support an asynchronous version " "of :class:`~unittest.mock.Mock`. Appropriate new assert functions for " @@ -2225,7 +2226,7 @@ msgstr "" "fonksiyonları da eklenmiştir. (Lisa Roach'ın :issue:`26467` 'deki " "katkısıyla.)" -#: whatsnew/3.8.rst:1367 +#: whatsnew/3.8.rst:1370 msgid "" "Added :func:`~unittest.addModuleCleanup()` and :meth:`~unittest.TestCase." "addClassCleanup()` to unittest to support cleanups for :func:`~unittest." @@ -2237,7 +2238,7 @@ msgstr "" "addModuleCleanup()` ve :meth:`~unittest.TestCase.addClassCleanup()` eklendi. " "(Lisa Roach 'un :issue:`24412` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1373 +#: whatsnew/3.8.rst:1376 msgid "" "Several mock assert functions now also print a list of actual calls upon " "failure. (Contributed by Petter Strandmark in :issue:`35047`.)" @@ -2246,7 +2247,7 @@ msgstr "" "çağrıların bir listesini de yazdırıyor. (Petter Strandmark'ın :issue:`35047` " "'deki katkısıyla.)" -#: whatsnew/3.8.rst:1376 +#: whatsnew/3.8.rst:1379 msgid "" ":mod:`unittest` module gained support for coroutines to be used as test " "cases with :class:`unittest.IsolatedAsyncioTestCase`. (Contributed by Andrew " @@ -2256,15 +2257,15 @@ msgstr "" "durumları olarak kullanılacak korutinler için destek kazandı. (Andrew " "Svetlov'un :issue:`32972` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1380 +#: whatsnew/3.8.rst:1383 msgid "Example::" msgstr "Örnek:" -#: whatsnew/3.8.rst:1403 +#: whatsnew/3.8.rst:1406 msgid "venv" msgstr "venv" -#: whatsnew/3.8.rst:1405 +#: whatsnew/3.8.rst:1408 msgid "" ":mod:`venv` now includes an ``Activate.ps1`` script on all platforms for " "activating virtual environments under PowerShell Core 6.1. (Contributed by " @@ -2274,11 +2275,11 @@ msgstr "" "için tüm platformlarda bir ``Activate.ps1`` dizesi içeriyor (Brett " "Cannon'un :issue:`32718` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1411 +#: whatsnew/3.8.rst:1414 msgid "weakref" msgstr "weakref" -#: whatsnew/3.8.rst:1413 +#: whatsnew/3.8.rst:1416 msgid "" "The proxy objects returned by :func:`weakref.proxy` now support the matrix " "multiplication operators ``@`` and ``@=`` in addition to the other numeric " @@ -2288,11 +2289,11 @@ msgstr "" "sayısal operatörlere ek olarak ``@`` ve ``@=`` matris çarpma operatörlerini " "de desteklemektedir. (Mark Dickinson'ın :issue:`36669` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1419 +#: whatsnew/3.8.rst:1422 msgid "xml" msgstr "xml" -#: whatsnew/3.8.rst:1421 +#: whatsnew/3.8.rst:1424 msgid "" "As mitigation against DTD and external entity retrieval, the :mod:`xml.dom." "minidom` and :mod:`xml.sax` modules no longer process external entities by " @@ -2302,7 +2303,7 @@ msgstr "" "ve :mod:`xml.sax` modülleri artık varsayılan olarak harici varlıkları " "işlememektedir. (Christian Heimes'ın :issue:`17239` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1426 +#: whatsnew/3.8.rst:1429 msgid "" "The ``.find*()`` methods in the :mod:`xml.etree.ElementTree` module support " "wildcard searches like ``{*}tag`` which ignores the namespace and " @@ -2314,7 +2315,7 @@ msgstr "" "``{namespace}*`` gibi joker karakter aramalarını destekler. (Stefan " "Behnel'ın :issue:`28238` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1431 +#: whatsnew/3.8.rst:1434 msgid "" "The :mod:`xml.etree.ElementTree` module provides a new function :func:`–xml." "etree.ElementTree.canonicalize()` that implements C14N 2.0. (Contributed by " @@ -2324,7 +2325,7 @@ msgstr "" "xml.etree.ElementTree.canonicalize()` fonksiyonu sağlar. (Stefan Behnel'ın :" "issue:`13611` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1435 +#: whatsnew/3.8.rst:1438 msgid "" "The target object of :class:`xml.etree.ElementTree.XMLParser` can receive " "namespace declaration events through the new callback methods ``start_ns()`` " @@ -2340,11 +2341,11 @@ msgstr "" "için işleme talimatlarını işlemek üzere yapılandırılabilir. (Stefan " "Behnel'ın :issue:`36676` ve :issue:`36673` 'teki katkılarıyla.)" -#: whatsnew/3.8.rst:1445 +#: whatsnew/3.8.rst:1448 msgid "xmlrpc" msgstr "xmlrpc" -#: whatsnew/3.8.rst:1447 +#: whatsnew/3.8.rst:1450 msgid "" ":class:`xmlrpc.client.ServerProxy` now supports an optional *headers* " "keyword argument for a sequence of HTTP headers to be sent with each " @@ -2358,11 +2359,11 @@ msgstr "" "kimlik doğrulamasından daha hızlı oturum kimlik doğrulamasına yükseltmeyi " "mümkün kılar. (Cédric Krier'ın :issue:`35153` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1455 +#: whatsnew/3.8.rst:1458 msgid "Optimizations" msgstr "Optimizasyonlar" -#: whatsnew/3.8.rst:1457 +#: whatsnew/3.8.rst:1460 msgid "" "The :mod:`subprocess` module can now use the :func:`os.posix_spawn` function " "in some cases for better performance. Currently, it is only used on macOS " @@ -2373,11 +2374,11 @@ msgstr "" "Linux'ta (glibc 2.24 veya daha yenisini kullanan) tüm bu koşullar yerine " "getirilirse kullanılmaktadır:" -#: whatsnew/3.8.rst:1461 +#: whatsnew/3.8.rst:1464 msgid "*close_fds* is false;" msgstr "*close_fds* yanlıştır;" -#: whatsnew/3.8.rst:1462 +#: whatsnew/3.8.rst:1465 msgid "" "*preexec_fn*, *pass_fds*, *cwd* and *start_new_session* parameters are not " "set;" @@ -2385,16 +2386,16 @@ msgstr "" "*preexec_fn*, *pass_fds*, *cwd* ve *start_new_session* parametreleri " "ayarlanmamış;" -#: whatsnew/3.8.rst:1464 +#: whatsnew/3.8.rst:1467 msgid "the *executable* path contains a directory." msgstr "*yürütülebilir* yol bir dizin içerir." -#: whatsnew/3.8.rst:1466 +#: whatsnew/3.8.rst:1469 msgid "(Contributed by Joannah Nanjekye and Victor Stinner in :issue:`35537`.)" msgstr "" "(Victor Stinner ve Joannah Nanjekye'nin :issue:`35537` 'deki katkılarıyla.)" -#: whatsnew/3.8.rst:1468 +#: whatsnew/3.8.rst:1471 msgid "" ":func:`shutil.copyfile`, :func:`shutil.copy`, :func:`shutil.copy2`, :func:" "`shutil.copytree` and :func:`shutil.move` use platform-specific \"fast-" @@ -2423,7 +2424,7 @@ msgstr "" "ref:`shutil-platform-dependent-efficient-copy-operations` bölümü. (Giampaolo " "Rodolà'nın :issue:`33671` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1484 +#: whatsnew/3.8.rst:1487 msgid "" ":func:`shutil.copytree` uses :func:`os.scandir` function and all copy " "functions depending from it use cached :func:`os.stat` values. The speedup " @@ -2441,7 +2442,7 @@ msgstr "" "hızlı hale getirilmiştir. (Giampaolo Rodolà'nın :issue:`33695` 'teki " "katkısıyla.)" -#: whatsnew/3.8.rst:1491 +#: whatsnew/3.8.rst:1494 msgid "" "The default protocol in the :mod:`pickle` module is now Protocol 4, first " "introduced in Python 3.4. It offers better performance and smaller size " @@ -2451,7 +2452,7 @@ msgstr "" "tanıtılan Protokol 4'tür. Python 3.0'dan beri mevcut olan Protokol 3'e " "kıyasla daha iyi performans ve daha küçük boyut sunar." -#: whatsnew/3.8.rst:1495 +#: whatsnew/3.8.rst:1498 msgid "" "Removed one :c:type:`Py_ssize_t` member from ``PyGC_Head``. All GC tracked " "objects (e.g. tuple, list, dict) size is reduced 4 or 8 bytes. (Contributed " @@ -2461,7 +2462,7 @@ msgstr "" "izlenen nesnelerin (örn. tuple, list, dict) boyutu 4 veya 8 bayt azaltıldı. " "(Inada Naoki'nin :issue:`33597` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1499 +#: whatsnew/3.8.rst:1502 msgid "" ":class:`uuid.UUID` now uses ``__slots__`` to reduce its memory footprint. " "(Contributed by Wouter Bolsterlee and Tal Einat in :issue:`30977`)" @@ -2470,7 +2471,7 @@ msgstr "" "kullanıyor. (Wouter Bolsterlee ve Tal Einat'ın :issue:`30977` 'deki " "katkılarıyla.)" -#: whatsnew/3.8.rst:1502 +#: whatsnew/3.8.rst:1505 msgid "" "Improved performance of :func:`operator.itemgetter` by 33%. Optimized " "argument handling and added a fast path for the common case of a single non-" @@ -2483,7 +2484,7 @@ msgstr "" "(standart kütüphanedeki tipik kullanım durumu budur). (Raymond " "Hettinger'ın :issue:`35664` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1508 +#: whatsnew/3.8.rst:1511 msgid "" "Sped-up field lookups in :func:`collections.namedtuple`. They are now more " "than two times faster, making them the fastest form of instance variable " @@ -2495,7 +2496,7 @@ msgstr "" "arama biçimi haline getiriyor. (Raymond Hettinger, Pablo Galindo ve Joe " "Jevnik, Serhiy Storchaka'nın :issue:`32492` 'deki katkılarıyla.)" -#: whatsnew/3.8.rst:1513 +#: whatsnew/3.8.rst:1516 msgid "" "The :class:`list` constructor does not overallocate the internal item buffer " "if the input iterable has a known length (the input implements ``__len__``). " @@ -2507,7 +2508,7 @@ msgstr "" "Bu, oluşturulan listenin ortalama %12 daha küçük olmasını sağlar. (Raymond " "Hettinger ve Pablo Galindo'nun :issue:`33234` 'teki katkılarıyla.)" -#: whatsnew/3.8.rst:1518 +#: whatsnew/3.8.rst:1521 msgid "" "Doubled the speed of class variable writes. When a non-dunder attribute was " "updated, there was an unnecessary call to update slots. (Contributed by " @@ -2519,7 +2520,7 @@ msgstr "" "(Stefan Behnel, Pablo Galindo Salgado, Raymond Hettinger, Neil Schemenauer " "ve Serhiy Storchaka'nın :issue:`36012` 'deki katkılarıyla.)" -#: whatsnew/3.8.rst:1523 +#: whatsnew/3.8.rst:1526 msgid "" "Reduced an overhead of converting arguments passed to many builtin functions " "and methods. This sped up calling some simple builtin functions and methods " @@ -2531,7 +2532,7 @@ msgstr "" "çağrılmasını %20--50'ye kadar hızlandırdı. (Serhiy Storchaka'nın :issue:" "`23867`, :issue:`35582` ve :issue:`36127` 'deki katkılarıyla.)" -#: whatsnew/3.8.rst:1528 +#: whatsnew/3.8.rst:1531 msgid "" "``LOAD_GLOBAL`` instruction now uses new \"per opcode cache\" mechanism. It " "is about 40% faster now. (Contributed by Yury Selivanov and Inada Naoki in :" @@ -2541,11 +2542,11 @@ msgstr "" "mekanizmasını kullanıyor. Şimdi yaklaşık 40% daha hızlı. (Yury Selivanov ve " "Inada Naoki'nin :issue:`26219` 'daki katkılarıyla.)" -#: whatsnew/3.8.rst:1534 +#: whatsnew/3.8.rst:1537 msgid "Build and C API Changes" msgstr "Derleme ve C API Değişiklikleri" -#: whatsnew/3.8.rst:1536 +#: whatsnew/3.8.rst:1539 msgid "" "Default :data:`sys.abiflags` became an empty string: the ``m`` flag for " "pymalloc became useless (builds with and without pymalloc are ABI " @@ -2557,17 +2558,17 @@ msgstr "" "derlemeler ABI uyumludur) ve bu nedenle kaldırıldı. (Victor Stinner'ın :" "issue:`36707` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1540 +#: whatsnew/3.8.rst:1543 msgid "Example of changes:" msgstr "Değişikliklerin örneği:" -#: whatsnew/3.8.rst:1542 +#: whatsnew/3.8.rst:1545 msgid "" "Only ``python3.8`` program is installed, ``python3.8m`` program is gone." msgstr "" "Sadece ``python3.8`` programı kurulur, ``python3.8m`` programı kaldırılır." -#: whatsnew/3.8.rst:1543 +#: whatsnew/3.8.rst:1546 msgid "" "Only ``python3.8-config`` script is installed, ``python3.8m-config`` script " "is gone." @@ -2575,7 +2576,7 @@ msgstr "" "Yalnızca ``python3.8-config`` dizesi yüklendi, ``python3.8m-config`` dizesi " "gitti." -#: whatsnew/3.8.rst:1545 +#: whatsnew/3.8.rst:1548 msgid "" "The ``m`` flag has been removed from the suffix of dynamic library " "filenames: extension modules in the standard library as well as those " @@ -2589,7 +2590,7 @@ msgstr "" "Linux'ta Python 3.7 soneki ``.cpython-37m-x86_64-linux-gnu.so`` Python " "3.8'de ``.cpython-38-x86_64-linux-gnu.so`` oldu." -#: whatsnew/3.8.rst:1552 +#: whatsnew/3.8.rst:1555 msgid "" "The header files have been reorganized to better separate the different " "kinds of APIs:" @@ -2597,11 +2598,11 @@ msgstr "" "Başlık dosyaları, farklı API türlerini daha iyi ayırmak için yeniden " "düzenlenmiştir:" -#: whatsnew/3.8.rst:1555 +#: whatsnew/3.8.rst:1558 msgid "``Include/*.h`` should be the portable public stable C API." msgstr "``Include/*.h``, taşınabilir genel kararlı C API'si olmalıdır." -#: whatsnew/3.8.rst:1556 +#: whatsnew/3.8.rst:1559 msgid "" "``Include/cpython/*.h`` should be the unstable C API specific to CPython; " "public API, with some private API prefixed by ``_Py`` or ``_PY``." @@ -2609,7 +2610,7 @@ msgstr "" "``Include/cpython/*.h``, CPython'a özgü kararsız C API'si olmalıdır; ``_Py`` " "veya ``_PY`` ile ön eklenmiş bazı özel API ile genel API." -#: whatsnew/3.8.rst:1558 +#: whatsnew/3.8.rst:1561 msgid "" "``Include/internal/*.h`` is the private internal C API very specific to " "CPython. This API comes with no backward compatibility warranty and should " @@ -2623,7 +2624,7 @@ msgstr "" "CPython içlerine erişmek zorunda olan profiller gibi çok özel ihtiyaçlar " "için açığa çıkar. Bu API artık ``make install`` tarafından yüklenmektedir." -#: whatsnew/3.8.rst:1564 +#: whatsnew/3.8.rst:1567 msgid "" "(Contributed by Victor Stinner in :issue:`35134` and :issue:`35081`, work " "initiated by Eric Snow in Python 3.7.)" @@ -2631,7 +2632,7 @@ msgstr "" "(Eric Snow tarafından Python 3.7'de başlatılan çalışmaya :issue:`35134` ve :" "issue:`35081` 'de Victor Stinner tarafından katkı sağlanmıştır.)" -#: whatsnew/3.8.rst:1567 +#: whatsnew/3.8.rst:1570 msgid "" "Some macros have been converted to static inline functions: parameter types " "and return type are well defined, they don't have issues specific to macros, " @@ -2641,19 +2642,19 @@ msgstr "" "türleri ve dönüş türü iyi tanımlanmıştır, makrolara özgü sorunları yoktur, " "değişkenlerin yerel kapsamları vardır. Örnekler:" -#: whatsnew/3.8.rst:1571 +#: whatsnew/3.8.rst:1574 msgid ":c:func:`Py_INCREF`, :c:func:`Py_DECREF`" msgstr ":c:func:`Py_INCREF`, :c:func:`Py_DECREF`" -#: whatsnew/3.8.rst:1572 +#: whatsnew/3.8.rst:1575 msgid ":c:func:`Py_XINCREF`, :c:func:`Py_XDECREF`" msgstr ":c:func:`Py_XINCREF`, :c:func:`Py_XDECREF`" -#: whatsnew/3.8.rst:1573 +#: whatsnew/3.8.rst:1576 msgid ":c:func:`PyObject_INIT`, :c:func:`PyObject_INIT_VAR`" msgstr ":c:func:`PyObject_INIT`, :c:func:`PyObject_INIT_VAR`" -#: whatsnew/3.8.rst:1574 +#: whatsnew/3.8.rst:1577 #, fuzzy msgid "" "Private functions: :c:func:`!_PyObject_GC_TRACK`, :c:func:`!" @@ -2662,11 +2663,11 @@ msgstr "" "Özel fonksiyonlar: :c:func:`_PyObject_GC_TRACK`, :c:func:" "`_PyObject_GC_UNTRACK`, :c:func:`_Py_Dealloc`" -#: whatsnew/3.8.rst:1577 +#: whatsnew/3.8.rst:1580 msgid "(Contributed by Victor Stinner in :issue:`35059`.)" msgstr "(Victor Stinner'ın :issue:`35059` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1579 +#: whatsnew/3.8.rst:1582 #, fuzzy msgid "" "The :c:func:`!PyByteArray_Init` and :c:func:`!PyByteArray_Fini` functions " @@ -2679,7 +2680,7 @@ msgstr "" "sınırlı API'den (kararlı ABI) çıkarıldılar ve belgelenmediler. (Victor " "Stinner'ın :issue:`35713` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1584 +#: whatsnew/3.8.rst:1587 msgid "" "The result of :c:func:`PyExceptionClass_Name` is now of type ``const char " "*`` rather of ``char *``. (Contributed by Serhiy Storchaka in :issue:" @@ -2688,7 +2689,7 @@ msgstr "" ":c:func:`PyExceptionClass_Name` sonucu artık ``char *`` yerine ``const char " "*`` türündedir. (Serhiy Storchaka'nın :issue:`33818` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1588 +#: whatsnew/3.8.rst:1591 msgid "" "The duality of ``Modules/Setup.dist`` and ``Modules/Setup`` has been " "removed. Previously, when updating the CPython source tree, one had to " @@ -2707,7 +2708,7 @@ msgstr "" "fayda sağlıyordu, çünkü dosyayı kopyalamayı unutmak derleme hatalarına neden " "olabiliyordu." -#: whatsnew/3.8.rst:1596 +#: whatsnew/3.8.rst:1599 msgid "" "Now the build system always reads from ``Modules/Setup`` inside the source " "tree. People who want to customize that file are encouraged to maintain " @@ -2720,11 +2721,11 @@ msgstr "" "değişiklikler için yapacakları gibi yama dosyaları olarak sürdürmeleri " "teşvik edilir." -#: whatsnew/3.8.rst:1601 +#: whatsnew/3.8.rst:1604 msgid "(Contributed by Antoine Pitrou in :issue:`32430`.)" msgstr "(Antoine Pitrou'nun :issue:`32388` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1603 +#: whatsnew/3.8.rst:1606 msgid "" "Functions that convert Python number to C integer like :c:func:" "`PyLong_AsLong` and argument parsing functions like :c:func:" @@ -2752,7 +2753,7 @@ msgstr "" "``__index__()`` yöntemini de kullanmaktadır. (Serhiy Storchaka'nın :issue:" "`36048` ve :issue:`20092` 'deki katkılarıyla.)" -#: whatsnew/3.8.rst:1617 +#: whatsnew/3.8.rst:1620 msgid "" "Heap-allocated type objects will now increase their reference count in :c:" "func:`PyObject_Init` (and its parallel macro ``PyObject_INIT``) instead of " @@ -2766,7 +2767,7 @@ msgstr "" "bırakma işlemini değiştiren türlerin ayarlanması gerekebilir. (Eddie " "Elizondo'nun :issue:`35810` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1623 +#: whatsnew/3.8.rst:1626 msgid "" "The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to create code " "objects like :c:func:`PyCode_New`, but with an extra *posonlyargcount* " @@ -2778,7 +2779,7 @@ msgstr "" "değişkenlerin sayısını belirtmek için fazladan bir *posonlyargcount* " "parametresi içerir. (Pablo Galindo'nun :issue:`37221` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1628 +#: whatsnew/3.8.rst:1631 #, fuzzy msgid "" ":c:func:`!Py_SetPath` now sets :data:`sys.executable` to the program full " @@ -2790,11 +2791,11 @@ msgstr "" "`Py_GetProgramFullPath`) ayarlıyor. (Victor Stinner'ın :issue:`38234` 'teki " "katkısıyla.)" -#: whatsnew/3.8.rst:1635 +#: whatsnew/3.8.rst:1638 msgid "Deprecated" msgstr "Kullanımdan kaldırıldı" -#: whatsnew/3.8.rst:1637 +#: whatsnew/3.8.rst:1640 msgid "" "The distutils ``bdist_wininst`` command is now deprecated, use " "``bdist_wheel`` (wheel packages) instead. (Contributed by Victor Stinner in :" @@ -2804,7 +2805,7 @@ msgstr "" "yerine ``bdist_wheel`` (tekerlek paketleri) kullanın. (Victor Stinner'ın :" "issue:`37481` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1641 +#: whatsnew/3.8.rst:1644 msgid "" "Deprecated methods ``getchildren()`` and ``getiterator()`` in the :mod:`~xml." "etree.ElementTree` module now emit a :exc:`DeprecationWarning` instead of :" @@ -2817,7 +2818,7 @@ msgstr "" "Python 3.9'da kaldırılacaklar. (Serhiy Storchaka'nın :issue:`29209` 'daki " "katkısıyla.)" -#: whatsnew/3.8.rst:1647 +#: whatsnew/3.8.rst:1650 msgid "" "Passing an object that is not an instance of :class:`concurrent.futures." "ThreadPoolExecutor` to :meth:`loop.set_default_executor() `. (Contributed by Serhiy Storchaka in :issue:`36492`.)" @@ -3050,15 +3051,15 @@ msgstr "" "only_parameter>` olacaktır. (Serhiy Storchaka'nın :issue:`36492` 'deki " "katkısıyla.)" -#: whatsnew/3.8.rst:1748 +#: whatsnew/3.8.rst:1751 msgid "API and Feature Removals" msgstr "API ve Özellik Kaldırmaları" -#: whatsnew/3.8.rst:1750 +#: whatsnew/3.8.rst:1753 msgid "The following features and APIs have been removed from Python 3.8:" msgstr "Aşağıdaki özellikler ve API'ler Python 3.8'den kaldırılmıştır:" -#: whatsnew/3.8.rst:1752 +#: whatsnew/3.8.rst:1755 msgid "" "Starting with Python 3.3, importing ABCs from :mod:`collections` was " "deprecated, and importing should be done from :mod:`collections.abc`. Being " @@ -3070,7 +3071,7 @@ msgstr "" "yapılmalıdır. Koleksiyonlardan içe aktarabilmek 3.8'de kaldırılmak üzere " "işaretlenmişti, ancak 3.9'a ertelendi. (Bkz. :issue:`36952`.)" -#: whatsnew/3.8.rst:1757 +#: whatsnew/3.8.rst:1760 msgid "" "The :mod:`macpath` module, deprecated in Python 3.7, has been removed. " "(Contributed by Victor Stinner in :issue:`35471`.)" @@ -3078,7 +3079,7 @@ msgstr "" "Python 3.7'de kullanımdan kaldırılan :mod:`macpath` modülü kaldırıldı. " "(Victor Stinner'ın :issue:`35471` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1879 +#: whatsnew/3.8.rst:1882 msgid "" "The function :func:`platform.popen` has been removed, after having been " "deprecated since Python 3.3: use :func:`os.popen` instead. (Contributed by " @@ -3088,7 +3089,7 @@ msgstr "" "kaldırıldı: bunun yerine :func:`os.popen` kullanın. (Victor Stinner'ın :" "issue:`35345` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1764 +#: whatsnew/3.8.rst:1767 msgid "" "The function :func:`time.clock` has been removed, after having been " "deprecated since Python 3.3: use :func:`time.perf_counter` or :func:`time." @@ -3101,7 +3102,7 @@ msgstr "" "process_time` kullanın. (Matthias Bussonnier'ın :issue:`36895` 'teki " "katkısıyla.)" -#: whatsnew/3.8.rst:1770 +#: whatsnew/3.8.rst:1773 msgid "" "The ``pyvenv`` script has been removed in favor of ``python3.8 -m venv`` to " "help eliminate confusion as to what Python interpreter the ``pyvenv`` script " @@ -3112,7 +3113,7 @@ msgstr "" "``pyvenv`` betiği kaldırıldı. (Brett Cannon'ın :issue:`25427` 'deki " "katkısıyla.)" -#: whatsnew/3.8.rst:1774 +#: whatsnew/3.8.rst:1777 msgid "" "``parse_qs``, ``parse_qsl``, and ``escape`` are removed from the :mod:`cgi` " "module. They are deprecated in Python 3.2 or older. They should be imported " @@ -3123,7 +3124,7 @@ msgstr "" "kaldırılmışlardır. Bunun yerine ``urllib.parse`` ve ``html`` modüllerinden " "içe aktarılmalıdırlar." -#: whatsnew/3.8.rst:1778 +#: whatsnew/3.8.rst:1781 msgid "" "``filemode`` function is removed from the :mod:`tarfile` module. It is not " "documented and deprecated since Python 3.3." @@ -3131,7 +3132,7 @@ msgstr "" "``filemode`` fonksiyonu :mod:`tarfile` modülünden kaldırılmıştır. Python " "3.3'ten beri belgelenmemiştir ve kullanımdan kaldırılmıştır." -#: whatsnew/3.8.rst:1781 +#: whatsnew/3.8.rst:1784 msgid "" "The :class:`~xml.etree.ElementTree.XMLParser` constructor no longer accepts " "the *html* argument. It never had an effect and was deprecated in Python " @@ -3144,7 +3145,7 @@ msgstr "" "only_parameter>` şeklindedir. (Serhiy Storchaka'nın :issue:`29209` 'daki " "katkısıyla.)" -#: whatsnew/3.8.rst:1786 +#: whatsnew/3.8.rst:1789 msgid "" "Removed the ``doctype()`` method of :class:`~xml.etree.ElementTree." "XMLParser`. (Contributed by Serhiy Storchaka in :issue:`29209`.)" @@ -3152,7 +3153,7 @@ msgstr "" ":class:`~xml.etree.ElementTree.XMLParser` metodunun ``doctype()`` metodu " "kaldırıldı. (Serhiy Storchaka'nın :issue:`29209` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1789 +#: whatsnew/3.8.rst:1792 msgid "" "\"unicode_internal\" codec is removed. (Contributed by Inada Naoki in :issue:" "`36297`.)" @@ -3160,7 +3161,7 @@ msgstr "" "\"unicode_internal\" codec'i kaldırıldı. (Inada Naoki'nin :issue:`36297` " "'deki katkısıyla.)" -#: whatsnew/3.8.rst:1792 +#: whatsnew/3.8.rst:1795 msgid "" "The ``Cache`` and ``Statement`` objects of the :mod:`sqlite3` module are not " "exposed to the user. (Contributed by Aviv Palivoda in :issue:`30262`.)" @@ -3168,7 +3169,7 @@ msgstr "" ":mod:`sqlite3` modülünün ``Cache`` ve ``Statement`` nesneleri kullanıcıya " "açık değildir. (Aviv Palivoda'nın :issue:`30262` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1796 +#: whatsnew/3.8.rst:1799 msgid "" "The ``bufsize`` keyword argument of :func:`fileinput.input` and :func:" "`fileinput.FileInput` which was ignored and deprecated since Python 3.6 has " @@ -3178,7 +3179,7 @@ msgstr "" "`fileinput.input` ve :func:`fileinput.FileInput` anahtar kelime argümanı " "``bufsize`` kaldırıldı. :issue:`36952` (Matthias Bussonnier'ın katkısıyla.)" -#: whatsnew/3.8.rst:1800 +#: whatsnew/3.8.rst:1803 msgid "" "The functions :func:`sys.set_coroutine_wrapper` and :func:`sys." "get_coroutine_wrapper` deprecated in Python 3.7 have been removed; :issue:" @@ -3188,11 +3189,11 @@ msgstr "" "func:`sys.get_coroutine_wrapper` fonksiyonları kaldırıldı; :issue:`36933` " "(Matthias Bussonnier'ın katkısıyla.)" -#: whatsnew/3.8.rst:1806 +#: whatsnew/3.8.rst:1809 msgid "Porting to Python 3.8" msgstr "Python 3.8'e Taşıma" -#: whatsnew/3.8.rst:1808 +#: whatsnew/3.8.rst:1811 msgid "" "This section lists previously described changes and other bugfixes that may " "require changes to your code." @@ -3200,11 +3201,11 @@ msgstr "" "Bu bölüm, daha önce açıklanan değişiklikleri ve kodunuzda değişiklik " "gerektirebilecek diğer hata düzeltmelerini listeler." -#: whatsnew/3.8.rst:1813 +#: whatsnew/3.8.rst:1816 msgid "Changes in Python behavior" msgstr "Python davranışındaki değişiklikler" -#: whatsnew/3.8.rst:1815 +#: whatsnew/3.8.rst:1818 msgid "" "Yield expressions (both ``yield`` and ``yield from`` clauses) are now " "disallowed in comprehensions and generator expressions (aside from the " @@ -3216,7 +3217,7 @@ msgstr "" "cümlesindeki yinelenebilir ifadesi dışında) izin verilmemektedir. (Serhiy " "Storchaka'nın :issue:`10544` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1820 +#: whatsnew/3.8.rst:1823 msgid "" "The compiler now produces a :exc:`SyntaxWarning` when identity checks " "(``is`` and ``is not``) are used with certain types of literals (e.g. " @@ -3232,7 +3233,7 @@ msgstr "" "bunun yerine eşitlik testlerini (``==`` ve ``!=``) kullanmalarını önerir. " "(Serhiy Storchaka'nın :issue:`34850` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1827 +#: whatsnew/3.8.rst:1830 msgid "" "The CPython interpreter can swallow exceptions in some circumstances. In " "Python 3.8 this happens in fewer cases. In particular, exceptions raised " @@ -3244,7 +3245,7 @@ msgstr "" "alınırken ortaya çıkan istisnalar artık göz ardı edilmiyor. (Serhiy " "Storchaka'nın :issue:`35459` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1832 +#: whatsnew/3.8.rst:1835 msgid "" "Removed ``__str__`` implementations from builtin types :class:`bool`, :class:" "`int`, :class:`float`, :class:`complex` and few classes from the standard " @@ -3260,7 +3261,7 @@ msgstr "" "``__repr__()`` metodunu tanımlamak onların string gösterimlerini " "etkileyecektir. (Serhiy Storchaka'nın :issue:`36793` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1839 +#: whatsnew/3.8.rst:1842 #, fuzzy msgid "" "On AIX, :data:`sys.platform` doesn't contain the major version anymore. It " @@ -3275,7 +3276,7 @@ msgstr "" "startswith('aix')`` kullanılması önerilir. (M. Felt'in :issue:`36588` 'deki " "katkısıyla.)" -#: whatsnew/3.8.rst:1845 +#: whatsnew/3.8.rst:1848 #, fuzzy msgid "" ":c:func:`!PyEval_AcquireLock` and :c:func:`!PyEval_AcquireThread` now " @@ -3293,11 +3294,11 @@ msgstr "" "kontrolünü yaparak çağrıyı koruyun. (Joannah Nanjekye'nin :issue:`36475` " "'teki katkısıyla.)" -#: whatsnew/3.8.rst:1855 +#: whatsnew/3.8.rst:1858 msgid "Changes in the Python API" msgstr "Python API'sindeki değişiklikler" -#: whatsnew/3.8.rst:1857 +#: whatsnew/3.8.rst:1860 msgid "" "The :func:`os.getcwdb` function now uses the UTF-8 encoding on Windows, " "rather than the ANSI code page: see :pep:`529` for the rationale. The " @@ -3309,7 +3310,7 @@ msgstr "" "kullanımdan kaldırılmamıştır. (Victor Stinner'ın :issue:`37412` 'deki " "katkısıyla.)" -#: whatsnew/3.8.rst:1862 +#: whatsnew/3.8.rst:1865 msgid "" ":class:`subprocess.Popen` can now use :func:`os.posix_spawn` in some cases " "for better performance. On Windows Subsystem for Linux and QEMU User " @@ -3326,7 +3327,7 @@ msgstr "" "başarısız olur. (Joannah Nanjekye ve Victor Stinner'ın :issue:`35537` 'deki " "katkılarıyla.)" -#: whatsnew/3.8.rst:1869 +#: whatsnew/3.8.rst:1872 msgid "" "The *preexec_fn* argument of * :class:`subprocess.Popen` is no longer " "compatible with subinterpreters. The use of the parameter in a " @@ -3339,7 +3340,7 @@ msgstr "" "tarafından :issue:`34651` 'de katkıda bulunulmuş, Christian Heimes " "tarafından :issue:`37951` 'de değiştirilmiştir.)" -#: whatsnew/3.8.rst:1875 +#: whatsnew/3.8.rst:1878 msgid "" "The :meth:`imap.IMAP4.logout` method no longer silently ignores arbitrary " "exceptions. (Contributed by Victor Stinner in :issue:`36348`.)" @@ -3347,7 +3348,7 @@ msgstr "" ":meth:`imap.IMAP4.logout` yöntemi artık keyfi istisnaları sessizce yok " "saymaz. (Victor Stinner'ın :issue:`36348` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1883 +#: whatsnew/3.8.rst:1886 msgid "" "The :func:`statistics.mode` function no longer raises an exception when " "given multimodal data. Instead, it returns the first mode encountered in " @@ -3357,7 +3358,7 @@ msgstr "" "istisna oluşturmuyor. Bunun yerine, girdi verilerinde karşılaşılan ilk modu " "döndürür. (Raymond Hettinger'ın :issue:`35892` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1888 +#: whatsnew/3.8.rst:1891 msgid "" "The :meth:`~tkinter.ttk.Treeview.selection` method of the :class:`tkinter." "ttk.Treeview` class no longer takes arguments. Using it with arguments for " @@ -3371,7 +3372,7 @@ msgstr "" "değiştirmek için :meth:`~tkinter.ttk.Treeview.selection_set` gibi özel " "yöntemler kullanın. (Serhiy Storchaka'ın :issue:`31508` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1894 +#: whatsnew/3.8.rst:1897 msgid "" "The :meth:`writexml`, :meth:`toxml` and :meth:`toprettyxml` methods of :mod:" "`xml.dom.minidom`, and the :meth:`write` method of :mod:`xml.etree`, now " @@ -3383,7 +3384,7 @@ msgstr "" "artık kullanıcı tarafından belirtilen öznitelik sırasını korumaktadır. " "(Diego Rojas ve Raymond Hettinger'ın :issue:`34160` 'daki katkılarıyla.)" -#: whatsnew/3.8.rst:1899 +#: whatsnew/3.8.rst:1902 msgid "" "A :mod:`dbm.dumb` database opened with flags ``'r'`` is now read-only. :func:" "`dbm.dumb.open` with flags ``'r'`` and ``'w'`` no longer creates a database " @@ -3394,7 +3395,7 @@ msgstr "" "mevcut değilse bir veritabanı oluşturmaz. (Serhiy Storchaka'nın :issue:" "`32749` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1904 +#: whatsnew/3.8.rst:1907 msgid "" "The ``doctype()`` method defined in a subclass of :class:`~xml.etree." "ElementTree.XMLParser` will no longer be called and will emit a :exc:" @@ -3410,7 +3411,7 @@ msgstr "" "TreeBuilder.doctype>` yöntemini tanımlayın. (Serhiy Storchaka'nın :issue:" "`29209` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:1911 +#: whatsnew/3.8.rst:1914 msgid "" "A :exc:`RuntimeError` is now raised when the custom metaclass doesn't " "provide the ``__classcell__`` entry in the namespace passed to ``type." @@ -3422,7 +3423,7 @@ msgstr "" "exc:`DeprecationWarning` Python 3.6--3.7` 'de yayınlandı (Serhiy " "Storchaka'nın :issue:`23722` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1916 +#: whatsnew/3.8.rst:1919 msgid "" "The :class:`cProfile.Profile` class can now be used as a context manager. " "(Contributed by Scott Sanderson in :issue:`29235`.)" @@ -3430,7 +3431,7 @@ msgstr "" ":class:`cProfile.Profile` sınıfı artık bir bağlam yöneticisi olarak " "kullanılabilir. (Scott Sanderson'ın :issue:`29235` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1919 +#: whatsnew/3.8.rst:1922 msgid "" ":func:`shutil.copyfile`, :func:`shutil.copy`, :func:`shutil.copy2`, :func:" "`shutil.copytree` and :func:`shutil.move` use platform-specific \"fast-" @@ -3442,7 +3443,7 @@ msgstr "" "çağrılarını kullanır (bkz. :ref:`shutil-platform-dependent-efficient-copy-" "operations` bölümü)." -#: whatsnew/3.8.rst:1924 +#: whatsnew/3.8.rst:1927 msgid "" ":func:`shutil.copyfile` default buffer size on Windows was changed from 16 " "KiB to 1 MiB." @@ -3450,7 +3451,7 @@ msgstr "" ":func:`shutil.copyfile` Windows üzerindeki varsayılan tampon boyutu 16 " "KiB'den 1 MiB'ye değiştirildi." -#: whatsnew/3.8.rst:1927 +#: whatsnew/3.8.rst:1930 msgid "" "The ``PyGC_Head`` struct has changed completely. All code that touched the " "struct member should be rewritten. (See :issue:`33597`.)" @@ -3458,7 +3459,7 @@ msgstr "" "``PyGC_Head`` yapısı tamamen değişti. Bu yapı üyesine dokunan tüm kodlar " "yeniden yazılmalıdır. (Bkz :issue:`33597`.)" -#: whatsnew/3.8.rst:1930 +#: whatsnew/3.8.rst:1933 msgid "" "The :c:type:`PyInterpreterState` struct has been moved into the \"internal\" " "header files (specifically Include/internal/pycore_pystate.h). An opaque " @@ -3479,7 +3480,7 @@ msgstr "" "Ayarlama yapmanıza yardımcı olmak için çalışacağız (muhtemelen genel API'ye " "erişim fonksiyonları eklemek dahil). (Bkz. :issue:`35886`.)" -#: whatsnew/3.8.rst:1940 +#: whatsnew/3.8.rst:1943 msgid "" "The :meth:`mmap.flush() ` method now returns ``None`` on " "success and raises an exception on error under all platforms. Previously, " @@ -3496,7 +3497,7 @@ msgstr "" "değeri döndürülürken hata durumunda bir istisna ortaya çıkıyordu. (Berker " "Peksağ'ın :issue:`2122` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1947 +#: whatsnew/3.8.rst:1950 msgid "" ":mod:`xml.dom.minidom` and :mod:`xml.sax` modules no longer process external " "entities by default. (Contributed by Christian Heimes in :issue:`17239`.)" @@ -3505,7 +3506,7 @@ msgstr "" "harici varlıkları işlemiyor. (Christian Heimes'in :issue:`17239` 'daki " "katkısıyla.)" -#: whatsnew/3.8.rst:1951 +#: whatsnew/3.8.rst:1954 msgid "" "Deleting a key from a read-only :mod:`dbm` database (:mod:`dbm.dumb`, :mod:" "`dbm.gnu` or :mod:`dbm.ndbm`) raises :attr:`error` (:exc:`dbm.dumb.error`, :" @@ -3517,7 +3518,7 @@ msgstr "" "`error` (:exc:`dbm.dumb.error`, :exc:`dbm.gnu.error` veya :exc:`dbm.ndbm." "error`) ortaya çıkar. (Xiang Zhang'ın :issue:`33106` 'teki katkılarıyla.)" -#: whatsnew/3.8.rst:1956 +#: whatsnew/3.8.rst:1959 msgid "" "Simplified AST for literals. All constants will be represented as :class:" "`ast.Constant` instances. Instantiating old classes ``Num``, ``Str``, " @@ -3529,7 +3530,7 @@ msgstr "" "``NameConstant`` ve ``Ellipsis`` sınıflarını örneklemek bir ``Constant`` " "örneği döndürecektir. (Serhiy Storchaka'nın :issue:`32892` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1972 +#: whatsnew/3.8.rst:1975 msgid "" "The function :func:`asyncio.wait_for` now correctly waits for cancellation " "when using an instance of :class:`asyncio.Task`. Previously, upon reaching " @@ -3541,7 +3542,7 @@ msgstr "" "ulaşıldığında iptal ediliyor ve hemen geri dönüyordu. (Elvis " "Pranskevichus'un :issue:`32751` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1977 +#: whatsnew/3.8.rst:1980 msgid "" "The function :func:`asyncio.BaseTransport.get_extra_info` now returns a safe " "to use socket object when 'socket' is passed to the *name* parameter. " @@ -3551,11 +3552,11 @@ msgstr "" "parametresine 'socket' geçildiğinde kullanımı güvenli bir soket nesnesi " "döndürüyor. (Yury Selivanov'un :issue:`37027` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:1981 +#: whatsnew/3.8.rst:1984 msgid ":class:`asyncio.BufferedProtocol` has graduated to the stable API." msgstr ":class:`asyncio.BufferedProtocol` kararlı API'ye geçiş yaptı." -#: whatsnew/3.8.rst:1985 +#: whatsnew/3.8.rst:1988 msgid "" "DLL dependencies for extension modules and DLLs loaded with :mod:`ctypes` on " "Windows are now resolved more securely. Only the system paths, the directory " @@ -3582,7 +3583,7 @@ msgstr "" "gerektiğini unutmayın (bu aynı zamanda yükleyici tarafından da doğrulanır). " "(Steve Dower'ın :issue:`36085` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:1998 +#: whatsnew/3.8.rst:2001 msgid "" "The header files and functions related to pgen have been removed after its " "replacement by a pure Python implementation. (Contributed by Pablo Galindo " @@ -3592,7 +3593,7 @@ msgstr "" "uygulamasıyla değiştirildikten sonra kaldırılmıştır. (Pablo Galindo'nun :" "issue:`36623` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:2002 +#: whatsnew/3.8.rst:2005 msgid "" ":class:`types.CodeType` has a new parameter in the second position of the " "constructor (*posonlyargcount*) to support positional-only arguments defined " @@ -3608,7 +3609,7 @@ msgstr "" "temsil etmektedir. :class:`types.CodeType` 'ın yeni ``replace()`` yöntemi, " "kodu geleceğe hazır hale getirmek için kullanılabilir." -#: whatsnew/3.8.rst:2009 +#: whatsnew/3.8.rst:2012 msgid "" "The parameter ``digestmod`` for :func:`hmac.new` no longer uses the MD5 " "digest by default." @@ -3616,11 +3617,11 @@ msgstr "" ":func:`hmac.new` için ``digestmod`` parametresi artık varsayılan olarak MD5 " "özetini kullanmıyor." -#: whatsnew/3.8.rst:2013 +#: whatsnew/3.8.rst:2016 msgid "Changes in the C API" msgstr "C API'sindeki değişiklikler" -#: whatsnew/3.8.rst:2015 +#: whatsnew/3.8.rst:2018 msgid "" "The :c:struct:`PyCompilerFlags` structure got a new *cf_feature_version* " "field. It should be initialized to ``PY_MINOR_VERSION``. The field is " @@ -3633,7 +3634,7 @@ msgstr "" "``PyCF_ONLY_AST`` bayrağı ayarlanmışsa kullanılır. (Guido van Rossum'un :" "issue:`35766` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:2021 +#: whatsnew/3.8.rst:2024 #, fuzzy msgid "" "The :c:func:`!PyEval_ReInitThreads` function has been removed from the C " @@ -3644,7 +3645,7 @@ msgstr "" "çağrılmamalıdır: bunun yerine :c:func:`PyOS_AfterFork_Child` kullanın. " "(Victor Stinner'ın :issue:`36728` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:2026 +#: whatsnew/3.8.rst:2029 msgid "" "On Unix, C extensions are no longer linked to libpython except on Android " "and Cygwin. When Python is embedded, ``libpython`` must not be loaded with " @@ -3662,7 +3663,7 @@ msgstr "" "bağlantılı olmayan C uzantılarını yüklemek zaten mümkün değildi. (Victor " "Stinner'ın :issue:`21536` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:2034 +#: whatsnew/3.8.rst:2037 msgid "" "Use of ``#`` variants of formats in parsing or building value (e.g. :c:func:" "`PyArg_ParseTuple`, :c:func:`Py_BuildValue`, :c:func:" @@ -3677,7 +3678,7 @@ msgstr "" "Ayrıntılar için :ref:`arg-parsing` sayfasını okuyun. (Inada Naoki'nin :issue:" "`36381` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:2040 +#: whatsnew/3.8.rst:2043 msgid "" "Instances of heap-allocated types (such as those created with :c:func:" "`PyType_FromSpec`) hold a reference to their type object. Increasing the " @@ -3694,11 +3695,11 @@ msgstr "" "oluşturulan türlerin yönetilen koddaki diğer sınıflar gibi davranmasını " "sağlar." -#: whatsnew/3.8.rst:2048 +#: whatsnew/3.8.rst:2051 msgid ":ref:`Statically allocated types ` are not affected." msgstr ":ref:`Statically allocated types ` etkilenmez." -#: whatsnew/3.8.rst:2050 +#: whatsnew/3.8.rst:2053 msgid "" "For the vast majority of cases, there should be no side effect. However, " "types that manually increase the reference count after allocating an " @@ -3712,14 +3713,14 @@ msgstr "" "gelebilir. Bundan kaçınmak için, bu sınıfların örnek ayırma sırasında tür " "nesnesi üzerinde Py_DECREF'i çağırması gerekir." -#: whatsnew/3.8.rst:2056 +#: whatsnew/3.8.rst:2059 msgid "" "To correctly port these types into 3.8, please apply the following changes:" msgstr "" "Bu türleri 3.8 'e doğru bir şekilde taşımak için lütfen aşağıdaki " "değişiklikleri uygulayın:" -#: whatsnew/3.8.rst:2059 +#: whatsnew/3.8.rst:2062 #, fuzzy msgid "" "Remove :c:macro:`Py_INCREF` on the type object after allocating an instance " @@ -3734,11 +3735,11 @@ msgstr "" "veya :c:func:`PyObject_Init` veya :c:func:`PyObject_INIT` kullanan herhangi " "bir özel ayırıcı çağrıldıktan sonra gerçekleşebilir." -#: whatsnew/3.8.rst:2085 whatsnew/3.8.rst:2104 +#: whatsnew/3.8.rst:2088 whatsnew/3.8.rst:2107 msgid "Example:" msgstr "Örnek:" -#: whatsnew/3.8.rst:2082 +#: whatsnew/3.8.rst:2085 msgid "" "Ensure that all custom ``tp_dealloc`` functions of heap-allocated types " "decrease the type's reference count." @@ -3746,11 +3747,11 @@ msgstr "" "Yığın tahsisli türlerin tüm özel ``tp_dealloc`` fonksiyonlarının, türün " "referans sayısını azalttığından emin olun." -#: whatsnew/3.8.rst:2099 +#: whatsnew/3.8.rst:2102 msgid "(Contributed by Eddie Elizondo in :issue:`35810`.)" msgstr "(Eddie Elizondo'nun :issue:`35810` 'daki katkısıyla.)" -#: whatsnew/3.8.rst:2101 +#: whatsnew/3.8.rst:2104 msgid "" "The :c:macro:`Py_DEPRECATED()` macro has been implemented for MSVC. The " "macro now must be placed before the symbol name." @@ -3758,11 +3759,11 @@ msgstr "" ":c:macro:`Py_DEPRECATED()` makrosu MSVC için uygulanmıştır. Makro artık " "sembol adından önce yerleştirilmelidir." -#: whatsnew/3.8.rst:2110 +#: whatsnew/3.8.rst:2113 msgid "(Contributed by Zackery Spytz in :issue:`33407`.)" msgstr "(Zackery Spytz'in :issue:`33407` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:2112 +#: whatsnew/3.8.rst:2115 #, fuzzy msgid "" "The interpreter does not pretend to support binary compatibility of " @@ -3780,11 +3781,11 @@ msgstr "" "artık :c:member:`~PyTypeObject.tp_finalize` okunmadan önce kontrol " "edilmiyor)." -#: whatsnew/3.8.rst:2119 +#: whatsnew/3.8.rst:2122 msgid "(Contributed by Antoine Pitrou in :issue:`32388`.)" msgstr "(Antoine Pitrou'nun :issue:`32388` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:2121 +#: whatsnew/3.8.rst:2124 #, fuzzy msgid "" "The functions :c:func:`!PyNode_AddChild` and :c:func:`!PyParser_AddToken` " @@ -3794,7 +3795,7 @@ msgstr "" ":c:func:`PyNode_AddChild` ve :c:func:`PyParser_AddToken` fonksiyonları artık " "iki ek ``int`` argüman *end_lineno* ve *end_col_offset* kabul etmektedir." -#: whatsnew/3.8.rst:2124 +#: whatsnew/3.8.rst:2127 msgid "" "The :file:`libpython38.a` file to allow MinGW tools to link directly " "against :file:`python38.dll` is no longer included in the regular Windows " @@ -3807,7 +3808,7 @@ msgstr "" "değildir. Bu dosyaya ihtiyacınız varsa, MinGW binutils paketinin bir parçası " "olan ``gendef`` ve ``dlltool`` araçları ile oluşturulabilir:" -#: whatsnew/3.8.rst:2134 +#: whatsnew/3.8.rst:2137 msgid "" "The location of an installed :file:`pythonXY.dll` will depend on the " "installation options and the version and language of Windows. See :ref:" @@ -3821,15 +3822,15 @@ msgstr "" "kitaplık, genellikle Python kurulumunuzun altındaki :file:`libs` dizini " "olan :file:`pythonXY.lib` ile aynı dizine yerleştirilmelidir." -#: whatsnew/3.8.rst:2140 +#: whatsnew/3.8.rst:2143 msgid "(Contributed by Steve Dower in :issue:`37351`.)" msgstr "(Steve Dower'ın :issue:`37351` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:2144 +#: whatsnew/3.8.rst:2147 msgid "CPython bytecode changes" msgstr "CPython bayt kodu değişiklikleri" -#: whatsnew/3.8.rst:2146 +#: whatsnew/3.8.rst:2149 msgid "" "The interpreter loop has been simplified by moving the logic of unrolling " "the stack of blocks into the compiler. The compiler emits now explicit " @@ -3841,7 +3842,7 @@ msgstr "" "`break`, :keyword:`continue` ve :keyword:`return` için temizleme kodunu " "çağırmak için açık talimatlar yayınlar." -#: whatsnew/3.8.rst:2152 +#: whatsnew/3.8.rst:2155 msgid "" "Removed opcodes :opcode:`BREAK_LOOP`, :opcode:`CONTINUE_LOOP`, :opcode:" "`SETUP_LOOP` and :opcode:`SETUP_EXCEPT`. Added new opcodes :opcode:" @@ -3855,7 +3856,7 @@ msgstr "" "eklendi. :opcode:`END_FINALLY` ve :opcode:`WITH_CLEANUP_START` davranışları " "değiştirildi." -#: whatsnew/3.8.rst:2158 +#: whatsnew/3.8.rst:2161 msgid "" "(Contributed by Mark Shannon, Antoine Pitrou and Serhiy Storchaka in :issue:" "`17611`.)" @@ -3863,7 +3864,7 @@ msgstr "" "(Mark Shannon, Antoine Pitrou ve Serhiy Storchaka'nın :issue:`17611` 'deki " "katkılarıyla.)" -#: whatsnew/3.8.rst:2161 +#: whatsnew/3.8.rst:2164 msgid "" "Added new opcode :opcode:`END_ASYNC_FOR` for handling exceptions raised when " "awaiting a next item in an :keyword:`async for` loop. (Contributed by Serhiy " @@ -3873,7 +3874,7 @@ msgstr "" "istisnaları işlemek için yeni :opcode:`END_ASYNC_FOR` kodu eklendi. (Serhiy " "Storchaka'nın :issue:`33041` 'deki katkısıyla.)" -#: whatsnew/3.8.rst:2165 +#: whatsnew/3.8.rst:2168 msgid "" "The :opcode:`MAP_ADD` now expects the value as the first element in the " "stack and the key as the second element. This change was made so the key is " @@ -3886,11 +3887,11 @@ msgstr "" "değerlendirilmesi için yapılmıştır. (Jörn Heissler'ın :issue:`35224` 'teki " "katkısıyla.)" -#: whatsnew/3.8.rst:2172 +#: whatsnew/3.8.rst:2175 msgid "Demos and Tools" msgstr "Demolar ve Araçlar" -#: whatsnew/3.8.rst:2174 +#: whatsnew/3.8.rst:2177 msgid "" "Added a benchmark script for timing various ways to access variables: " "``Tools/scripts/var_access_benchmark.py``. (Contributed by Raymond Hettinger " @@ -3900,11 +3901,11 @@ msgstr "" "dizesi eklendi: ``Tools/scripts/var_access_benchmark.py``. (Raymond " "Hettinger'ın :issue:`35884` 'teki katkısıyla.)" -#: whatsnew/3.8.rst:2178 +#: whatsnew/3.8.rst:2181 msgid "Here's a summary of performance improvements since Python 3.3:" msgstr "İşte Python 3.3'ten bu yana performans iyileştirmelerinin bir özeti:" -#: whatsnew/3.8.rst:2225 +#: whatsnew/3.8.rst:2228 #, fuzzy msgid "" "The benchmarks were measured on an `Intel® Core™ i7-4960HQ processor " @@ -3920,11 +3921,11 @@ msgstr "" "html>`_ üzerinde ölçülmüştür. Kıyaslama betiği zamanlamaları nanosaniye " "cinsinden gösterir." -#: whatsnew/3.8.rst:2234 +#: whatsnew/3.8.rst:2237 msgid "Notable changes in Python 3.8.1" msgstr "Python 3.8.1'deki önemli değişiklikler" -#: whatsnew/3.8.rst:2236 +#: whatsnew/3.8.rst:2239 msgid "" "Due to significant security concerns, the *reuse_address* parameter of :meth:" "`asyncio.loop.create_datagram_endpoint` is no longer supported. This is " @@ -3940,11 +3941,11 @@ msgstr "" "create_datagram_endpoint()`` belgelerine bakın. (Kyle Stanley, Antoine " "Pitrou ve Yury Selivanov'un :issue:`37228` 'deki katkılarıyla.)" -#: whatsnew/3.8.rst:2244 +#: whatsnew/3.8.rst:2247 msgid "Notable changes in Python 3.8.8" msgstr "Python 3.8.8'deki önemli değişiklikler" -#: whatsnew/3.8.rst:2246 +#: whatsnew/3.8.rst:2249 msgid "" "Earlier Python versions allowed using both ``;`` and ``&`` as query " "parameter separators in :func:`urllib.parse.parse_qs` and :func:`urllib." @@ -3965,11 +3966,11 @@ msgstr "" "belgelere bakın. (Adam Goldschmidt, Senthil Kumaran ve Ken Jin'in :issue:" "`42967` 'deki katkılarıyla.)" -#: whatsnew/3.8.rst:2257 +#: whatsnew/3.8.rst:2260 msgid "Notable changes in Python 3.8.12" msgstr "Python 3.8.12'deki önemli değişiklikler" -#: whatsnew/3.8.rst:2259 +#: whatsnew/3.8.rst:2262 msgid "" "Starting with Python 3.8.12 the :mod:`ipaddress` module no longer accepts " "any leading zeros in IPv4 address strings. Leading zeros are ambiguous and " @@ -3985,10 +3986,18 @@ msgstr "" "sıfırları sekizli gösterim olarak ele alır. Modern :func:`~socket.inet_pton` " "glibc uygulaması baştaki sıfırları kabul etmez." -#: whatsnew/3.8.rst:2266 +#: whatsnew/3.8.rst:2269 msgid "" "(Originally contributed by Christian Heimes in :issue:`36384`, and " "backported to 3.8 by Achraf Merzouki.)" msgstr "" "(Aslen :issue:`36384` içinde Christian Heimes tarafından katkıda " "bulunulmuştur ve Achraf Merzouki tarafından 3.8'e geri aktarılmıştır.)" + +#~ msgid "" +#~ "Added :meth:`pathlib.Path.link_to()` which creates a hard link pointing " +#~ "to a path. (Contributed by Joannah Nanjekye in :issue:`26978`)" +#~ msgstr "" +#~ "Bir yola işaret eden sabit bir bağlantı oluşturan :meth:`pathlib.Path." +#~ "link_to()` eklendi. (Joannah Nanjekye'nin :issue:`26978` 'deki " +#~ "katkısıyla.)" diff --git a/whatsnew/index.po b/whatsnew/index.po index 0317383f7..1946b715d 100644 --- a/whatsnew/index.po +++ b/whatsnew/index.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-09-18 22:33+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -27,7 +27,7 @@ msgid "" "for anyone wishing to stay up-to-date after a new release." msgstr "" -#: whatsnew/index.rst:35 +#: whatsnew/index.rst:36 msgid "" "The \"Changelog\" is an HTML version of the `file built `_ from the contents of the :source:`Misc/NEWS.d` directory "